text
stringlengths 6
13.6M
| id
stringlengths 13
176
| metadata
dict | __index_level_0__
int64 0
1.69k
|
---|---|---|---|
// 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/src/screens/inspector/layout_explorer/ui/arrow.dart';
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import '../../../test_infra/matchers/matchers.dart';
void main() {
group('Arrow Golden Tests', () {
group('Unidirectional', () {
Widget buildUnidirectionalArrowWrapper(ArrowType type) => Directionality(
textDirection: TextDirection.ltr,
child: SizedBox(
width: 100,
height: 100,
child: ArrowWrapper.unidirectional(
type: type,
arrowColor: Colors.black,
arrowHeadSize: 8.0,
child: Container(
width: 10,
height: 10,
color: Colors.red,
),
),
),
);
testWidgets(
'left',
(WidgetTester tester) async {
final widget = buildUnidirectionalArrowWrapper(ArrowType.left);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_unidirectional_left.png'),
);
},
skip: kIsWeb,
);
testWidgets(
'up',
(WidgetTester tester) async {
final widget = buildUnidirectionalArrowWrapper(ArrowType.up);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_unidirectional_up.png'),
);
},
skip: kIsWeb,
);
testWidgets(
'right',
(WidgetTester tester) async {
final widget = buildUnidirectionalArrowWrapper(ArrowType.right);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_unidirectional_right.png'),
);
},
skip: kIsWeb,
);
testWidgets(
'down',
(WidgetTester tester) async {
final widget = buildUnidirectionalArrowWrapper(ArrowType.down);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_unidirectional_down.png'),
);
},
skip: kIsWeb,
);
});
group('Bidirectional', () {
Widget buildBidirectionalArrowWrapper(Axis direction) => Directionality(
textDirection: TextDirection.ltr,
child: SizedBox(
width: 100,
height: 100,
child: ArrowWrapper.bidirectional(
direction: direction,
arrowColor: Colors.black,
arrowHeadSize: 8.0,
child: Container(
width: 10,
height: 10,
color: Colors.red,
),
),
),
);
testWidgets(
'horizontal',
(WidgetTester tester) async {
final widget = buildBidirectionalArrowWrapper(Axis.horizontal);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_bidirectional_horizontal.png'),
);
},
skip: kIsWeb,
);
testWidgets(
'vertical',
(WidgetTester tester) async {
final widget = buildBidirectionalArrowWrapper(Axis.vertical);
await tester.pumpWidget(widget);
await expectLater(
find.byWidget(widget),
matchesDevToolsGolden('goldens/arrow_bidirectional_vertical.png'),
);
},
skip: kIsWeb,
);
});
});
}
| devtools/packages/devtools_app/test/inspector/layout_explorer/flex/arrow_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/inspector/layout_explorer/flex/arrow_test.dart",
"repo_id": "devtools",
"token_count": 2034
} | 112 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@TestOn('vm')
import 'dart:async';
import 'package:devtools_app/src/screens/memory/framework/connected/memory_controller.dart';
import 'package:devtools_app/src/screens/memory/framework/connected/memory_protocol.dart';
import 'package:devtools_app/src/screens/memory/shared/primitives/memory_timeline.dart';
import 'package:devtools_app/src/shared/globals.dart';
import 'package:devtools_shared/devtools_shared.dart';
import 'package:flutter_test/flutter_test.dart';
import '../test_infra/flutter_test_driver.dart' show FlutterRunConfiguration;
import '../test_infra/flutter_test_environment.dart';
late MemoryController memoryController;
// Track number of onMemory events received.
int memoryTrackersReceived = 0;
int previousTimestamp = 0;
bool firstSample = true;
void main() {
// TODO(https://github.com/flutter/devtools/issues/2053): rewrite.
// ignore: dead_code
if (false) {
final FlutterTestEnvironment env = FlutterTestEnvironment(
const FlutterRunConfiguration(withDebugger: true),
);
env.afterNewSetup = () async {
memoryController = MemoryController();
memoryController.startTimeline();
};
group('MemoryController', () {
tearDownAll(() {
unawaited(env.tearDownEnvironment(force: true));
});
test('heap info', () async {
await env.setupEnvironment();
memoryController.onMemory.listen((MemoryTracker? memoryTracker) {
if (!serviceConnection.serviceManager.hasConnection) {
// VM Service connection has stopped - unexpected.
fail('VM Service connection stoped unexpectantly.');
} else {
validateHeapInfo(memoryController.controllers.memoryTimeline);
}
});
await collectSamples(); // Collect some data.
expect(memoryTrackersReceived, equals(defaultSampleSize));
await env.tearDownEnvironment();
});
});
}
}
void validateHeapInfo(MemoryTimeline timeline) {
for (final HeapSample sample in timeline.data) {
expect(sample.timestamp, greaterThan(0));
expect(sample.timestamp, greaterThan(previousTimestamp));
expect(sample.used, greaterThan(0));
expect(sample.used, lessThan(sample.capacity));
expect(sample.external, greaterThan(0));
expect(sample.external, lessThan(sample.capacity));
// TODO(terry): Bug - VM's first HeapSample returns a null for the rss value.
// Subsequent samples the rss values are valid integers. This is
// a VM regression https://github.com/dart-lang/sdk/issues/40766.
// When fixed, remove below test rss != null and firstSample global.
if (firstSample) {
expect(sample.rss, greaterThan(0));
expect(sample.rss, greaterThan(sample.capacity));
firstSample = false;
}
expect(sample.capacity, greaterThan(0));
expect(sample.capacity, greaterThan(sample.used + sample.external));
previousTimestamp = sample.timestamp;
}
timeline.data.clear();
memoryTrackersReceived++;
}
const int defaultSampleSize = 5;
Future<void> collectSamples([int sampleCount = defaultSampleSize]) async {
// Keep memory profiler running for n samples of heap info from the VM.
for (var trackers = 0; trackers < sampleCount; trackers++) {
await memoryController.onMemory.first;
}
}
| devtools/packages/devtools_app/test/memory/memory_service_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/memory/memory_service_test.dart",
"repo_id": "devtools",
"token_count": 1216
} | 113 |
// 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/controls/enhance_tracing/enhance_tracing.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 FakeServiceExtensionManager fakeExtensionManager;
late MockServiceConnectionManager mockServiceConnection;
late MockServiceManager mockServiceManager;
setUp(() {
mockServiceConnection = createMockServiceConnectionWithDefaults();
mockServiceManager =
mockServiceConnection.serviceManager as MockServiceManager;
when(mockServiceManager.serviceExtensionManager)
.thenAnswer((realInvocation) => fakeExtensionManager);
setGlobal(ServiceConnectionManager, mockServiceConnection);
setGlobal(IdeTheme, getIdeTheme());
});
group('TrackWidgetBuildsSetting', () {
setUp(() async {
fakeExtensionManager = FakeServiceExtensionManager();
await fakeExtensionManager.fakeFrame();
await fakeExtensionManager
.fakeAddServiceExtension(profileWidgetBuilds.extension);
await fakeExtensionManager
.fakeAddServiceExtension(profileUserWidgetBuilds.extension);
});
testWidgets('builds successfully', (WidgetTester tester) async {
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
expect(find.byType(TrackWidgetBuildsSetting), findsOneWidget);
expect(find.byType(TrackWidgetBuildsCheckbox), findsOneWidget);
expect(find.byType(CheckboxSetting), findsOneWidget);
expect(find.byType(MoreInfoLink), findsOneWidget);
expect(find.byType(TrackWidgetBuildsScopeSelector), findsOneWidget);
expect(find.byType(Radio<TrackWidgetBuildsScope>), findsNWidgets(2));
final userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.value,
equals(TrackWidgetBuildsScope.userCreated),
);
final allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(allWidgetsRadio.value, equals(TrackWidgetBuildsScope.all));
});
testWidgets('builds with disabled state', (WidgetTester tester) async {
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: false,
);
final trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isFalse);
final userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(userCreatedWidgetsRadio.groupValue, isNull);
final allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(allWidgetsRadio.groupValue, isNull);
});
testWidgets(
'builds with profileWidgetBuilds enabled',
(WidgetTester tester) async {
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileWidgetBuilds.extension,
enabled: true,
value: true,
);
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: true,
trackUserCreatedWidgets: false,
);
final trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isTrue);
final userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.all),
);
final allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(
allWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.all),
);
},
);
testWidgets(
'builds with profileUserWidgetBuilds enabled',
(WidgetTester tester) async {
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileUserWidgetBuilds.extension,
enabled: true,
value: true,
);
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: true,
);
final trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isTrue);
final userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.userCreated),
);
final allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(
allWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.userCreated),
);
},
);
testWidgets(
'defaults to user created widgets when both service extensions are '
'enabled',
(WidgetTester tester) async {
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileWidgetBuilds.extension,
enabled: true,
value: true,
);
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileUserWidgetBuilds.extension,
enabled: true,
value: true,
);
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: true,
trackUserCreatedWidgets: true,
);
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: true,
);
final trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isTrue);
final userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.userCreated),
);
final allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(
allWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.userCreated),
);
},
);
testWidgets(
'checking "Track Widget Builds" enables profileUserWidgetBuilds',
(WidgetTester tester) async {
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: false,
);
var trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isFalse);
await tester.tap(find.byType(Checkbox));
await tester.pumpAndSettle();
trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isTrue);
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: true,
);
},
);
testWidgets(
'unchecking "Track Widget Builds" disables both service extensions',
(WidgetTester tester) async {
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileUserWidgetBuilds.extension,
enabled: true,
value: true,
);
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: true,
);
var trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isTrue);
await tester.tap(find.byType(Checkbox));
await tester.pumpAndSettle();
trackWidgetBuildsCheckbox =
tester.widget(find.byType(Checkbox)) as Checkbox;
expect(trackWidgetBuildsCheckbox.value, isFalse);
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: false,
);
},
);
testWidgets(
'can toggle track widget builds scope',
(WidgetTester tester) async {
await mockServiceManager.serviceExtensionManager
.setServiceExtensionState(
profileUserWidgetBuilds.extension,
enabled: true,
value: true,
);
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: true,
);
var userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.userCreated),
);
await tester.tap(find.byType(Radio<TrackWidgetBuildsScope>).at(1));
await tester.pumpAndSettle();
userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(
userCreatedWidgetsRadio.groupValue,
equals(TrackWidgetBuildsScope.all),
);
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: true,
trackUserCreatedWidgets: false,
);
},
);
testWidgets(
'cannot toggle scope when both service extensions are disabled',
(WidgetTester tester) async {
await tester.pumpWidget(wrap(const TrackWidgetBuildsSetting()));
await tester.pumpAndSettle();
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: false,
);
var userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(userCreatedWidgetsRadio.groupValue, isNull);
var allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(allWidgetsRadio.groupValue, isNull);
await tester.tap(find.byType(Radio<TrackWidgetBuildsScope>).first);
await tester.pumpAndSettle();
userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(userCreatedWidgetsRadio.groupValue, isNull);
allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(allWidgetsRadio.groupValue, isNull);
await tester.tap(find.byType(Radio<TrackWidgetBuildsScope>).at(1));
await tester.pumpAndSettle();
userCreatedWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).first)
as Radio<TrackWidgetBuildsScope>;
expect(userCreatedWidgetsRadio.groupValue, isNull);
allWidgetsRadio =
tester.widget(find.byType(Radio<TrackWidgetBuildsScope>).at(1))
as Radio<TrackWidgetBuildsScope>;
expect(allWidgetsRadio.groupValue, isNull);
verifyExtensionStates(
mockServiceManager: mockServiceManager,
trackAllWidgets: false,
trackUserCreatedWidgets: false,
);
},
);
});
group('TrackWidgetBuildsScope enum', () {
test('radioDisplay', () {
expect(
TrackWidgetBuildsScope.all.radioDisplay,
equals('within all code'),
);
expect(
TrackWidgetBuildsScope.userCreated.radioDisplay,
equals('within your code'),
);
});
test('opposite', () {
expect(
TrackWidgetBuildsScope.all.opposite,
equals(TrackWidgetBuildsScope.userCreated),
);
expect(
TrackWidgetBuildsScope.userCreated.opposite,
equals(TrackWidgetBuildsScope.all),
);
});
test('extensionForScope', () {
expect(
TrackWidgetBuildsScope.all.extensionForScope,
equals(profileWidgetBuilds),
);
expect(
TrackWidgetBuildsScope.userCreated.extensionForScope,
equals(profileUserWidgetBuilds),
);
});
});
}
void verifyExtensionStates({
required MockServiceManager mockServiceManager,
required bool trackAllWidgets,
required bool trackUserCreatedWidgets,
}) {
expect(
mockServiceManager.serviceExtensionManager
.getServiceExtensionState(profileWidgetBuilds.extension)
.value
.enabled,
equals(trackAllWidgets),
);
expect(
mockServiceManager.serviceExtensionManager
.getServiceExtensionState(profileUserWidgetBuilds.extension)
.value
.enabled,
equals(trackUserCreatedWidgets),
);
}
| devtools/packages/devtools_app/test/performance/controls/enhance_tracing_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/performance/controls/enhance_tracing_test.dart",
"repo_id": "devtools",
"token_count": 6409
} | 114 |
// 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/frame_analysis/frame_analysis.dart';
import 'package:devtools_app/src/screens/performance/panes/raster_stats/raster_stats.dart';
import 'package:devtools_app/src/screens/performance/panes/timeline_events/perfetto/perfetto.dart';
import 'package:devtools_app/src/screens/performance/panes/timeline_events/timeline_events_view.dart';
import 'package:devtools_app/src/screens/performance/tabbed_performance_view.dart';
import 'package:devtools_app/src/shared/ui/tab.dart';
import 'package:devtools_app_shared/service.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:devtools_test/helpers.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:mockito/mockito.dart';
import '../test_infra/test_data/performance/sample_performance_data.dart';
void main() {
late FakeServiceConnectionManager fakeServiceConnection;
late MockPerformanceController controller;
Future<void> setUpServiceManagerWithTimeline() async {
fakeServiceConnection = FakeServiceConnectionManager(
service: FakeServiceManager.createFakeService(
timelineData: perfettoVmTimeline,
),
);
final app = fakeServiceConnection.serviceManager.connectedApp!;
mockConnectedApp(
app,
isFlutterApp: true,
isProfileBuild: true,
isWebApp: false,
);
when(app.flutterVersionNow).thenReturn(
FlutterVersion.parse(
(await fakeServiceConnection.serviceManager.flutterVersion).json!,
),
);
setGlobal(ServiceConnectionManager, fakeServiceConnection);
setGlobal(OfflineModeController, OfflineModeController());
when(serviceConnection.serviceManager.connectedApp!.isDartWebApp)
.thenAnswer((_) => Future.value(false));
}
group('TabbedPerformanceView', () {
setUp(() async {
await setUpServiceManagerWithTimeline();
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(IdeTheme, IdeTheme());
setGlobal(PreferencesController, PreferencesController());
setGlobal(NotificationService, NotificationService());
controller = createMockPerformanceControllerWithDefaults();
final mockTimelineEventsController =
controller.timelineEventsController as MockTimelineEventsController;
when(mockTimelineEventsController.status).thenReturn(
const FixedValueListenable<EventsControllerStatus>(
EventsControllerStatus.ready,
),
);
when(mockTimelineEventsController.isActiveFeature).thenReturn(false);
final mockFlutterFramesController =
controller.flutterFramesController as MockFlutterFramesController;
when(mockFlutterFramesController.selectedFrame)
.thenReturn(const FixedValueListenable<FlutterFrame?>(null));
when(mockFlutterFramesController.isActiveFeature).thenReturn(false);
});
Future<void> pumpView(
WidgetTester tester, {
MockPerformanceController? performanceController,
bool runAsync = false,
}) async {
if (performanceController != null) {
controller = performanceController;
}
if (runAsync) {
// Await a small delay to allow the PerformanceController to complete
// initialization.
await Future.delayed(const Duration(seconds: 1));
}
await tester.pumpWidget(
wrapWithControllers(
const TabbedPerformanceView(),
performance: controller,
),
);
await tester.pumpAndSettle();
}
const windowSize = Size(2225.0, 1000.0);
testWidgetsWithWindowSize(
'builds content successfully',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
await pumpView(tester);
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsNWidgets(3));
expect(find.text('Timeline Events'), findsOneWidget);
expect(find.text('Frame Analysis'), findsOneWidget);
expect(find.text('Raster Stats'), findsOneWidget);
});
},
);
testWidgetsWithWindowSize(
'builds content for Frame Analysis tab with selected frame',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
final frame = FlutterFrame6.frame;
final framesController =
controller.flutterFramesController as MockFlutterFramesController;
when(framesController.selectedFrame)
.thenReturn(FixedValueListenable<FlutterFrame?>(frame));
await pumpView(tester, performanceController: controller);
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsNWidgets(3));
// The frame analysis tab should be selected by default.
expect(find.byType(FlutterFrameAnalysisView), findsOneWidget);
});
},
);
testWidgetsWithWindowSize(
'builds content for Frame Analysis tab without selected frame',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
await pumpView(tester);
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsNWidgets(3));
// The frame analysis tab should be selected by default.
expect(
find.text('Select a frame above to view analysis data.'),
findsOneWidget,
);
});
},
);
testWidgetsWithWindowSize(
'builds content for Raster Stats tab',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
await pumpView(tester);
await tester.pumpAndSettle();
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsNWidgets(3));
await tester.tap(find.text('Raster Stats'));
await tester.pumpAndSettle();
expect(find.byType(RasterStatsView), findsOneWidget);
expect(find.text('Take Snapshot'), findsOneWidget);
expect(find.byType(ClearButton), findsOneWidget);
});
},
);
testWidgetsWithWindowSize(
'builds content for Timeline Events tab',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
await pumpView(tester);
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsNWidgets(3));
await tester.tap(find.text('Timeline Events'));
await tester.pumpAndSettle();
expect(find.byType(TimelineSettingsButton), findsOneWidget);
expect(find.byType(RefreshTimelineEventsButton), findsOneWidget);
expect(find.byType(TimelineEventsTabView), findsOneWidget);
expect(find.byType(EmbeddedPerfetto), findsOneWidget);
});
},
);
testWidgetsWithWindowSize(
'only shows Timeline Events tab for non-flutter app',
windowSize,
(WidgetTester tester) async {
await tester.runAsync(() async {
await setUpServiceManagerWithTimeline();
final app = fakeServiceConnection.serviceManager.connectedApp!;
mockConnectedApp(
app,
isFlutterApp: false,
isProfileBuild: false,
isWebApp: false,
);
when(app.flutterVersionNow).thenReturn(null);
await pumpView(tester);
await tester.pumpAndSettle();
expect(find.byType(AnalyticsTabbedView), findsOneWidget);
expect(find.byType(DevToolsTab), findsOneWidget);
expect(find.text('Timeline Events'), findsOneWidget);
expect(find.text('Frame Analysis'), findsNothing);
expect(find.text('Raster Stats'), findsNothing);
});
},
);
});
}
| devtools/packages/devtools_app/test/performance/tabbed_performance_view_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/performance/tabbed_performance_view_test.dart",
"repo_id": "devtools",
"token_count": 3315
} | 115 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter_test/flutter_test.dart';
import '../test_infra/utils/variable_utils.dart';
void main() {
setUp(() {
resetRef();
resetRoot();
});
group('map instances', () {
test('entire map', () {
final map = buildMapVariable(length: 3);
expect(map.childCount, equals(3));
expect(map.isPartialObject, isFalse);
});
test('map grouping with offset', () {
final mapGrouping = buildMapGroupingVariable(
length: 10,
offset: 2,
count: 4,
);
expect(mapGrouping.childCount, equals(4));
expect(mapGrouping.isPartialObject, isTrue);
});
test('map grouping no offset', () {
final mapGrouping = buildMapGroupingVariable(
length: 10,
offset: 0,
count: 4,
);
expect(mapGrouping.childCount, equals(4));
expect(mapGrouping.isPartialObject, isTrue);
});
});
group('list instances', () {
test('entire list', () {
final list = buildListVariable(length: 3);
expect(list.childCount, equals(3));
expect(list.isPartialObject, isFalse);
});
test('list grouping with offset', () {
final listGrouping = buildListGroupingVariable(
length: 10,
offset: 2,
count: 4,
);
expect(listGrouping.childCount, equals(4));
expect(listGrouping.isPartialObject, isTrue);
});
test('list grouping no offset', () {
final listGrouping = buildListGroupingVariable(
length: 10,
offset: 0,
count: 4,
);
expect(listGrouping.childCount, equals(4));
expect(listGrouping.isPartialObject, isTrue);
});
});
group('set instances', () {
test('entire set', () {
final set = buildSetVariable(length: 3);
expect(set.childCount, equals(3));
expect(set.isPartialObject, isFalse);
});
test('set grouping with offset', () {
final setGrouping = buildSetGroupingVariable(
length: 10,
offset: 2,
count: 4,
);
expect(setGrouping.childCount, equals(4));
expect(setGrouping.isPartialObject, isTrue);
});
test('set grouping no offset', () {
final setGrouping = buildSetGroupingVariable(
length: 10,
offset: 0,
count: 4,
);
expect(setGrouping.childCount, equals(4));
expect(setGrouping.isPartialObject, isTrue);
});
});
test('booleans', () {
final boolean = buildBooleanVariable(true);
expect(boolean.childCount, equals(0));
expect(boolean.isPartialObject, isFalse);
});
test('strings', () {
final str = buildStringVariable('Hello there!');
expect(str.childCount, equals(0));
expect(str.isPartialObject, isFalse);
});
}
| devtools/packages/devtools_app/test/shared/dart_object_node_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/dart_object_node_test.dart",
"repo_id": "devtools",
"token_count": 1174
} | 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 'package:devtools_app/src/shared/ui/hover.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_test/flutter_test.dart';
const _textSpan = TextSpan(
children: [
TextSpan(text: 'hello', style: TextStyle(fontWeight: FontWeight.bold)),
TextSpan(text: ' '),
TextSpan(text: 'world'),
TextSpan(text: ' '),
TextSpan(text: 'foo', style: TextStyle(fontWeight: FontWeight.bold)),
TextSpan(text: '.'),
TextSpan(text: 'bar'),
TextSpan(text: '.'),
TextSpan(text: 'baz', style: TextStyle(fontWeight: FontWeight.w100)),
TextSpan(text: ' '),
TextSpan(text: 'blah'),
],
);
void main() {
test('wordForHover returns the correct word given the provided x offset', () {
expect(wordForHover(10, _textSpan), 'hello');
expect(wordForHover(100, _textSpan), 'world');
expect(wordForHover(5000, _textSpan), '');
});
test(
'wordForHover returns an empty string if there is no underlying word',
() {
expect(wordForHover(5000, _textSpan), '');
},
);
test('wordForHover merges words linked with `.`', () {
expect(wordForHover(200, _textSpan), 'foo');
expect(wordForHover(250, _textSpan), 'foo.bar');
expect(wordForHover(300, _textSpan), 'foo.bar.baz');
});
}
| devtools/packages/devtools_app/test/shared/hover_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/hover_test.dart",
"repo_id": "devtools",
"token_count": 547
} | 117 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// TODO(bkonyi): add integration tests for navigation state.
// See https://github.com/flutter/devtools/issues/4902.
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_app_shared/utils.dart';
import 'package:devtools_test/devtools_test.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
class TestController extends DisposableController with RouteStateHandlerMixin {
int count = 0;
@override
void onRouteStateUpdate(DevToolsNavigationState state) {
count++;
}
}
void main() {
late TestController controller;
late GlobalKey<NavigatorState> navKey;
late DevToolsRouterDelegate routerDelegate;
const page = 'Test';
const defaultArgs = <String, String>{};
const updatedArgs = <String, String>{
'arg': 'foo',
};
final originalState = DevToolsNavigationState(
kind: 'Test',
state: {
'state': '1',
},
);
late final duplicateOriginalState = DevToolsNavigationState(
kind: originalState.kind,
state: originalState.state,
);
final updatedState = DevToolsNavigationState(
kind: 'Test',
state: {
'state': '2',
},
);
setUp(() {
setGlobal(ServiceConnectionManager, FakeServiceConnectionManager());
setGlobal(IdeTheme, IdeTheme());
setGlobal(NotificationService, NotificationService());
controller = TestController();
navKey = GlobalKey<NavigatorState>();
routerDelegate = DevToolsRouterDelegate(
(p0, p1, p2, p3) => const MaterialPage(child: SizedBox.shrink()),
navKey,
);
controller.subscribeToRouterEvents(routerDelegate);
});
tearDown(() {
controller.dispose();
});
void expectConfigArgs([Map<String, String> args = defaultArgs]) {
expect(routerDelegate.currentConfiguration!.args, args);
}
group('Route state handler', () {
test('state objects', () {
expect(originalState.hasChanges(originalState), false);
expect(originalState.hasChanges(updatedState), true);
});
test('gets basic router updates with state change', () {
// Navigating with no state won't trigger the callback.
routerDelegate.navigate(page);
expect(controller.count, 0);
expectConfigArgs();
// Navigating to another page with state should result in the router
// event callback being invoked.
expect(controller.count, 0);
routerDelegate.navigate(page, defaultArgs, originalState);
expect(controller.count, 1);
expectConfigArgs();
// Navigating to the same page with identical state doesn't trigger the
// callback
controller.count = 0;
routerDelegate.navigateIfNotCurrent(page, defaultArgs, originalState);
expect(controller.count, 0);
expectConfigArgs();
// Navigating to the same page with updated state triggers callback.
routerDelegate.navigateIfNotCurrent(page, defaultArgs, updatedState);
expect(controller.count, 1);
expectConfigArgs();
});
test('gets basic router updates with arg change', () {
// Navigating with no args or state won't trigger the callback.
routerDelegate.navigate(page);
expect(controller.count, 0);
expectConfigArgs();
// Navigating to another page with args should result in the router
// event callback being invoked.
expect(controller.count, 0);
routerDelegate.navigate(page, defaultArgs, originalState);
expect(controller.count, 1);
expectConfigArgs();
// Navigating to the same page with identical args doesn't trigger the
// callback
controller.count = 0;
routerDelegate.navigateIfNotCurrent(page, defaultArgs, originalState);
expect(controller.count, 0);
expectConfigArgs();
// Navigating to the same page with updated args triggers callback.
routerDelegate.navigateIfNotCurrent(page, updatedArgs, originalState);
expect(controller.count, 1);
expectConfigArgs(updatedArgs);
});
testWidgets('replaces state', (tester) async {
WidgetsFlutterBinding.ensureInitialized();
expect(controller.count, 0);
routerDelegate.navigate(page, null, originalState);
expect(controller.count, 1);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(originalState),
false,
);
await routerDelegate.replaceState(updatedState);
expect(controller.count, 1);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(originalState),
true,
);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(updatedState),
false,
);
});
testWidgets('updates state if not current', (tester) async {
WidgetsFlutterBinding.ensureInitialized();
expect(controller.count, 0);
routerDelegate.navigate(page, null, originalState);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(originalState),
false,
);
expect(controller.count, 1);
// Try to update state to an identical copy of the original state.
routerDelegate.updateStateIfChanged(duplicateOriginalState);
expect(controller.count, 1);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(originalState),
false,
);
routerDelegate.updateStateIfChanged(updatedState);
expect(controller.count, 2);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(originalState),
true,
);
expect(
routerDelegate.currentConfiguration!.state!.hasChanges(updatedState),
false,
);
});
});
}
| devtools/packages/devtools_app/test/shared/routing_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/routing_test.dart",
"repo_id": "devtools",
"token_count": 2029
} | 118 |
// 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/src/shared/primitives/trees.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('TreeNode', () {
test('depth', () {
expect(testTreeNode.depth, equals(4));
expect(treeNode1.depth, equals(1));
expect(treeNode2.depth, equals(2));
expect(treeNode3.depth, equals(3));
});
test('isRoot', () {
expect(treeNode0.isRoot, isTrue);
expect(treeNode1.isRoot, isFalse);
expect(treeNode5.isRoot, isFalse);
});
test('root', () {
expect(treeNode2.root, equals(treeNode0));
expect(treeNode6.root, equals(treeNode0));
});
test('level', () {
expect(testTreeNode.level, equals(0));
expect(treeNode2.level, equals(1));
expect(treeNode6.level, equals(3));
});
test('expand and collapse', () {
expect(testTreeNode.isExpanded, isFalse);
testTreeNode.expand();
expect(testTreeNode.isExpanded, isTrue);
testTreeNode.collapse();
expect(testTreeNode.isExpanded, isFalse);
breadthFirstTraversal<TestTreeNode>(
testTreeNode,
action: (TreeNode node) {
expect(node.isExpanded, isFalse);
},
);
testTreeNode.expandCascading();
breadthFirstTraversal<TestTreeNode>(
testTreeNode,
action: (TreeNode node) {
expect(node.isExpanded, isTrue);
},
);
testTreeNode.collapseCascading();
breadthFirstTraversal<TestTreeNode>(
testTreeNode,
action: (TreeNode node) {
expect(node.isExpanded, isFalse);
},
);
});
test('shouldShow determines if each node is visible', () {
final childTreeNodes = [
treeNode1,
treeNode2,
treeNode3,
treeNode4,
treeNode5,
treeNode6,
];
void expectChildTreeNodesShouldShow(List<bool> expected) {
expect(
childTreeNodes.length,
expected.length,
reason: 'expected list of bool must have '
'${childTreeNodes.length} elements',
);
for (var i = 0; i < childTreeNodes.length; i++) {
expect(
childTreeNodes[i].shouldShow(),
expected[i],
reason: 'treeNode${i + 1}.shouldShow() did not match '
'the expected value.',
);
}
}
expect(treeNode0.shouldShow(), true);
expectChildTreeNodesShouldShow(
[false, false, false, false, false, false],
);
treeNode0.expandCascading();
treeNode5.collapse();
expectChildTreeNodesShouldShow([true, true, true, true, true, false]);
treeNode5.expand();
treeNode3.collapse();
expectChildTreeNodesShouldShow([true, true, true, false, false, false]);
testTreeNode.collapseCascading();
});
test('addChild', () {
final parent = TestTreeNode(0);
final child = TestTreeNode(1);
expect(parent.children, isEmpty);
expect(child.parent, isNull);
parent.addChild(child);
expect(parent.children, isNotEmpty);
expect(parent.children.first, equals(child));
expect(child.parent, equals(parent));
});
test('nodesWithCondition', () {
var nodes = testTreeNode.nodesWithCondition((TestTreeNode node) {
return node.id.isEven;
});
var nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([0, 2, 10, 12, 4, 6, 8]));
nodes = testTreeNode.nodesWithCondition((TestTreeNode node) {
return node.tag == 'test-tag';
});
nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([0, 3, 9]));
nodes = testTreeNode.nodesWithCondition((TestTreeNode node) {
return node.parent?.id == 5;
});
nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([6, 7, 8, 9]));
});
test('shallowNodesWithCondition', () {
var nodes = testTreeNode.shallowNodesWithCondition((TestTreeNode node) {
return node.id.isEven;
});
var nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([0]));
nodes = testTreeNode.shallowNodesWithCondition((TestTreeNode node) {
return node.id.isEven && node.id != 0;
});
nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([2, 4, 6, 8]));
nodes = testTreeNode.shallowNodesWithCondition((TestTreeNode node) {
return node.id.isOdd;
});
nodeIds = nodes.map((TestTreeNode node) => node.id).toList();
expect(nodeIds, equals([1, 11, 3]));
});
test('containsChildWithCondition', () {
expect(
treeNode0.subtreeHasNodeWithCondition((TestTreeNode node) {
return node == treeNode1;
}),
isTrue,
);
expect(
treeNode0.subtreeHasNodeWithCondition((TestTreeNode node) {
return node.children.length == 2;
}),
isTrue,
);
expect(
treeNode0.subtreeHasNodeWithCondition((TestTreeNode node) {
return node.isExpanded;
}),
isFalse,
);
});
test('firstSubNodeAtLevel', () {
expect(testTreeNode.firstChildNodeAtLevel(0), equals(treeNode0));
expect(testTreeNode.firstChildNodeAtLevel(1), equals(treeNode1));
expect(testTreeNode.firstChildNodeAtLevel(2), equals(treeNode10));
expect(testTreeNode.firstChildNodeAtLevel(3), equals(treeNode6));
expect(testTreeNode.firstChildNodeAtLevel(4), isNull);
expect(treeNode3.firstChildNodeAtLevel(0), equals(treeNode3));
expect(treeNode3.firstChildNodeAtLevel(1), equals(treeNode4));
expect(treeNode3.firstChildNodeAtLevel(2), equals(treeNode6));
expect(treeNode3.firstChildNodeAtLevel(3), isNull);
});
test('lastSubNodeAtLevel', () {
expect(testTreeNode.lastChildNodeAtLevel(0), equals(treeNode0));
expect(testTreeNode.lastChildNodeAtLevel(1), equals(treeNode3));
expect(testTreeNode.lastChildNodeAtLevel(2), equals(treeNode5));
expect(testTreeNode.lastChildNodeAtLevel(3), equals(treeNode9));
expect(testTreeNode.lastChildNodeAtLevel(4), isNull);
expect(treeNode3.lastChildNodeAtLevel(0), equals(treeNode3));
expect(treeNode3.lastChildNodeAtLevel(1), equals(treeNode5));
expect(treeNode3.lastChildNodeAtLevel(2), equals(treeNode9));
expect(treeNode3.lastChildNodeAtLevel(3), isNull);
});
test('filterTree', () {
final List<TestTreeNode> filteredTreeRoots =
testTreeNode.filterWhere((node) => node.id.isEven);
expect(filteredTreeRoots.length, equals(1));
final filteredTree = filteredTreeRoots.first;
expect(
filteredTree.toString(),
equals(
'''
0
2
10
12
4
6
8
''',
),
);
});
test('filterTree when root should be filtered out', () {
final List<TestTreeNode> filteredTreeRoots =
testTreeNode.filterWhere((node) => node.id.isOdd);
expect(filteredTreeRoots.length, equals(3));
final firstRoot = filteredTreeRoots[0];
final middleRoot = filteredTreeRoots[1];
final lastRoot = filteredTreeRoots[2];
expect(
firstRoot.toString(),
equals(
'''
1
''',
),
);
expect(
middleRoot.toString(),
equals(
'''
11
''',
),
);
expect(
lastRoot.toString(),
equals(
'''
3
5
7
9
''',
),
);
});
test('filterTree when zero nodes match', () {
final List<TestTreeNode> filteredTreeRoots =
testTreeNode.filterWhere((node) => node.id > 15);
expect(filteredTreeRoots, isEmpty);
});
test('filterTree when all nodes match', () {
final List<TestTreeNode> filteredTreeRoots =
testTreeNode.filterWhere((node) => node.id < 10);
expect(filteredTreeRoots.length, equals(1));
final filteredTree = filteredTreeRoots.first;
expect(
filteredTree.toString(),
equals(
'''
0
1
2
3
4
5
6
7
8
9
''',
),
);
});
group('Tree traversal', () {
late TraversalTestTreeNode treeNodeA;
late TraversalTestTreeNode treeNodeB;
late TraversalTestTreeNode treeNodeC;
late TraversalTestTreeNode treeNodeD;
late TraversalTestTreeNode treeNodeE;
late TraversalTestTreeNode treeNodeF;
late TraversalTestTreeNode treeNodeG;
late TraversalTestTreeNode treeNodeH;
late TraversalTestTreeNode treeNodeI;
late TraversalTestTreeNode treeNodeJ;
late TraversalTestTreeNode tree;
setUp(() {
/// Traversal test tree structure:
///
/// [level 0] A
/// / | \
/// [level 1] B C D
/// / \ |
/// [level 2] E F G
/// / / \
/// [level 3] H I J
///
/// BFS traversal order: A, B, C, D, E, F, G, H, I, J
/// DFS traversal order: A, B, E, H, F, C, D, G, I, J
treeNodeA = TraversalTestTreeNode('A');
treeNodeB = TraversalTestTreeNode('B');
treeNodeC = TraversalTestTreeNode('C');
treeNodeD = TraversalTestTreeNode('D');
treeNodeE = TraversalTestTreeNode('E');
treeNodeF = TraversalTestTreeNode('F');
treeNodeG = TraversalTestTreeNode('G');
treeNodeH = TraversalTestTreeNode('H');
treeNodeI = TraversalTestTreeNode('I');
treeNodeJ = TraversalTestTreeNode('J');
tree = treeNodeA
..addAllChildren(
[
treeNodeB
..addAllChildren(
[
treeNodeE
..addAllChildren([
treeNodeH,
]),
treeNodeF,
],
),
treeNodeC,
treeNodeD
..addAllChildren([
treeNodeG
..addAllChildren([
treeNodeI,
treeNodeJ,
]),
]),
],
);
});
group('BFS', () {
test('traverses tree in correct order', () {
var visitedCount = 0;
breadthFirstTraversal<TraversalTestTreeNode>(
tree,
action: (node) => node.setVisitedOrder(++visitedCount),
);
// BFS order: A, B, C, D, E, F, G, H, I, J
expect(treeNodeA.visitedOrder, equals(1));
expect(treeNodeB.visitedOrder, equals(2));
expect(treeNodeC.visitedOrder, equals(3));
expect(treeNodeD.visitedOrder, equals(4));
expect(treeNodeE.visitedOrder, equals(5));
expect(treeNodeF.visitedOrder, equals(6));
expect(treeNodeG.visitedOrder, equals(7));
expect(treeNodeH.visitedOrder, equals(8));
expect(treeNodeI.visitedOrder, equals(9));
expect(treeNodeJ.visitedOrder, equals(10));
});
test('finds the correct node', () {
final node = breadthFirstTraversal<TraversalTestTreeNode>(
tree,
returnCondition: (node) => node.id == 'H',
)!;
expect(node.id, equals('H'));
});
});
group('DFS', () {
test('traverses tree in correct order', () {
var visitedCount = 0;
depthFirstTraversal<TraversalTestTreeNode>(
tree,
action: (node) => node.setVisitedOrder(++visitedCount),
);
// DFS order: A, B, E, H, F, C, D, G, I, J
expect(treeNodeA.visitedOrder, equals(1));
expect(treeNodeB.visitedOrder, equals(2));
expect(treeNodeE.visitedOrder, equals(3));
expect(treeNodeH.visitedOrder, equals(4));
expect(treeNodeF.visitedOrder, equals(5));
expect(treeNodeC.visitedOrder, equals(6));
expect(treeNodeD.visitedOrder, equals(7));
expect(treeNodeG.visitedOrder, equals(8));
expect(treeNodeI.visitedOrder, equals(9));
expect(treeNodeJ.visitedOrder, equals(10));
});
test('finds the correct node', () {
final node = depthFirstTraversal<TraversalTestTreeNode>(
tree,
returnCondition: (node) => node.id == 'H',
)!;
expect(node.id, equals('H'));
});
test('explores correct children', () {
var visitedCount = 0;
depthFirstTraversal<TraversalTestTreeNode>(
tree,
action: (node) => node.setVisitedOrder(++visitedCount),
exploreChildrenCondition: (node) => node.id != 'B',
);
// DFS order: A, B, [skip] E, H, F, [end skip], C, D, G, I, J
expect(treeNodeA.visitedOrder, equals(1));
expect(treeNodeB.visitedOrder, equals(2));
expect(treeNodeE.visitedOrder, equals(-1));
expect(treeNodeH.visitedOrder, equals(-1));
expect(treeNodeF.visitedOrder, equals(-1));
expect(treeNodeC.visitedOrder, equals(3));
expect(treeNodeD.visitedOrder, equals(4));
expect(treeNodeG.visitedOrder, equals(5));
expect(treeNodeI.visitedOrder, equals(6));
expect(treeNodeJ.visitedOrder, equals(7));
});
});
});
});
}
final treeNode0 = TestTreeNode(0, tag: 'test-tag');
final treeNode1 = TestTreeNode(1);
final treeNode2 = TestTreeNode(2);
final treeNode3 = TestTreeNode(3, tag: 'test-tag');
final treeNode4 = TestTreeNode(4);
final treeNode5 = TestTreeNode(5);
final treeNode6 = TestTreeNode(6);
final treeNode7 = TestTreeNode(7);
final treeNode8 = TestTreeNode(8);
final treeNode9 = TestTreeNode(9, tag: 'test-tag');
final treeNode10 = TestTreeNode(10);
final treeNode11 = TestTreeNode(11);
final treeNode12 = TestTreeNode(12);
final TestTreeNode testTreeNode = treeNode0
..addAllChildren([
treeNode1,
treeNode2
..addAllChildren([
treeNode10,
treeNode11,
treeNode12,
]),
treeNode3
..addAllChildren([
treeNode4,
treeNode5
..addAllChildren([
treeNode6,
treeNode7,
treeNode8,
treeNode9,
]),
]),
]);
class TestTreeNode extends TreeNode<TestTreeNode> {
TestTreeNode(this.id, {this.tag});
final int id;
final String? tag;
@override
TestTreeNode shallowCopy() => TestTreeNode(id);
@override
String toString() {
final buf = StringBuffer();
void writeNode(TestTreeNode node) {
final indent = ' ' * node.level;
buf.writeln('$indent${node.id}');
node.children.forEach(writeNode);
}
writeNode(this);
return buf.toString();
}
}
class TraversalTestTreeNode extends TreeNode<TraversalTestTreeNode> {
TraversalTestTreeNode(this.id);
final String id;
int get visitedOrder => _visitedOrder;
int _visitedOrder = -1;
@override
TraversalTestTreeNode shallowCopy() => TraversalTestTreeNode(id);
void setVisitedOrder(int order) {
_visitedOrder = order;
}
}
| devtools/packages/devtools_app/test/shared/trees_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/shared/trees_test.dart",
"repo_id": "devtools",
"token_count": 7149
} | 119 |
>// 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
>
>void simplePrint() {
#^^^^ storage.type.primitive.dart
# ^^^^^^^^^^^ entity.name.function.dart
> print('hello world');
# ^^^^^ entity.name.function.dart
# ^^^^^^^^^^^^^ string.interpolated.single.dart
# ^ punctuation.terminator.dart
>}
>
>noReturnValue() {
#^^^^^^^^^^^^^ entity.name.function.dart
> print('hello world');
# ^^^^^ entity.name.function.dart
# ^^^^^^^^^^^^^ string.interpolated.single.dart
# ^ punctuation.terminator.dart
>}
>
>Future<void> asyncPrint() async {
#^^^^^^ support.class.dart
# ^ other.source.dart
# ^^^^ storage.type.primitive.dart
# ^ other.source.dart
# ^^^^^^^^^^ entity.name.function.dart
# ^^^^^ keyword.control.dart
> await Future.delayed(const Duration(seconds: 1));
# ^^^^^ keyword.control.dart
# ^^^^^^ support.class.dart
# ^ punctuation.dot.dart
# ^^^^^^^ entity.name.function.dart
# ^^^^^ storage.modifier.dart
# ^^^^^^^^ support.class.dart
# ^ keyword.operator.ternary.dart
# ^ constant.numeric.dart
# ^ punctuation.terminator.dart
> print('hello world');
# ^^^^^ entity.name.function.dart
# ^^^^^^^^^^^^^ string.interpolated.single.dart
# ^ punctuation.terminator.dart
>}
| devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/functions.dart.golden/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/goldens/syntax_highlighting/functions.dart.golden",
"repo_id": "devtools",
"token_count": 901
} | 120 |
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: avoid_print
import 'dart:io' as io;
import 'package:devtools_app/src/shared/diagnostics/diagnostics_node.dart';
import 'package:flutter_test/flutter_test.dart';
import '_golden_matcher_io.dart'
if (dart.library.js_interop) '_golden_matcher_web.dart' as golden_matcher;
RemoteDiagnosticsNode? findNodeMatching(
RemoteDiagnosticsNode node,
String text,
) {
if (node.name?.startsWith(text) == true ||
node.description?.startsWith(text) == true) {
return node;
}
for (var child in node.childrenNow) {
final match = findNodeMatching(child, text);
if (match != null) {
return match;
}
}
return null;
}
String treeToDebugString(RemoteDiagnosticsNode node) {
return node.toDiagnosticsNode().toStringDeep();
}
String treeToDebugStringTruncated(RemoteDiagnosticsNode node, int maxLines) {
List<String> lines = node.toDiagnosticsNode().toStringDeep().split('\n');
if (lines.length > maxLines) {
lines = lines.take(maxLines).toList()..add('...');
}
return lines.join('\n');
}
/// Asserts that a [path] matches a golden file after normalizing likely hash
/// codes.
///
/// Paths are assumed to reference files within the `test/goldens` directory.
///
/// To rebaseline all golden files run:
/// ```
/// tool/update_goldens.sh
/// ```
///
/// A `#` followed by 5 hexadecimal digits is assumed to be a short hash code
/// and is normalized to #00000.
///
/// See Also:
///
/// * [equalsIgnoringHashCodes], which does the same thing without the golden
/// file functionality.
Matcher equalsGoldenIgnoringHashCodes(String path) {
return _EqualsGoldenIgnoringHashCodes(path);
}
class _EqualsGoldenIgnoringHashCodes extends Matcher {
_EqualsGoldenIgnoringHashCodes(String pathWithinGoldenDirectory) {
path = 'test/test_infra/goldens/$pathWithinGoldenDirectory';
try {
_value = _normalize(io.File(path).readAsStringSync());
} catch (e) {
_value = 'Error reading $path: $e';
}
}
late String path;
late String _value;
static final Object _mismatchedValueKey = Object();
static bool get updateGoldens => autoUpdateGoldenFiles;
static String _normalize(String s) {
return s.replaceAll(RegExp(r'#[0-9a-f]{5}'), '#00000');
}
@override
bool matches(Object? object, Map<dynamic, dynamic> matchState) {
final String description = _normalize(object as String);
if (_value != description) {
if (updateGoldens) {
io.File(path).writeAsStringSync(description);
print('Updated golden file $path\nto\n$description');
// Act like the match succeeded so all goldens are updated instead of
// just the first failure.
return true;
}
matchState[_mismatchedValueKey] = description;
return false;
}
return true;
}
@override
Description describe(Description description) {
return description.add('multi line description equals $_value');
}
@override
Description describeMismatch(
Object? item,
Description mismatchDescription,
Map<dynamic, dynamic> matchState,
bool verbose,
) {
if (!matchState.containsKey(_mismatchedValueKey)) {
return mismatchDescription;
}
final String? actualValue = matchState[_mismatchedValueKey];
// Leading whitespace is added so that lines in the multi-line
// description returned by addDescriptionOf are all indented equally
// which makes the output easier to read for this case.
return mismatchDescription
.add('expected golden file \'$path\' with normalized value\n ')
.addDescriptionOf(_value)
.add('\nbut got\n ')
.addDescriptionOf(actualValue);
}
}
class AlwaysTrueMatcher extends Matcher {
const AlwaysTrueMatcher();
@override
bool matches(Object? object, Map<dynamic, dynamic> matchState) {
return true;
}
@override
Description describe(Description description) {
return description;
}
}
// TODO(https://github.com/flutter/devtools/issues/4060): add a check to the
// bots script that verifies we never use [matchesGoldenFile] directly.
/// A matcher for testing DevTools goldens which will always return true when
/// the platform is not MacOS.
///
/// This should always be used instead of [matchesGoldenFile] for testing
/// DevTools golden images.
Matcher matchesDevToolsGolden(Object key) {
return golden_matcher.matchesDevToolsGolden(key);
}
| devtools/packages/devtools_app/test/test_infra/matchers/matchers.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/matchers/matchers.dart",
"repo_id": "devtools",
"token_count": 1519
} | 121 |
// 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.
final precompilerTrace = {
'trace': [
'R',
'S',
0,
'S',
1,
0,
1,
2,
4,
5,
6,
7,
1,
8,
5,
9,
1,
10,
12,
13,
14,
7,
15,
16,
17,
7,
18,
19,
20,
1,
21,
22,
23,
1,
24,
0,
25,
26,
27,
28,
29,
30,
31,
32,
33,
34,
35,
36,
37,
38,
39,
40,
41,
42,
43,
44,
7,
45,
46,
47,
48,
7,
49,
50,
7,
51,
52,
53,
54,
7,
55,
1,
56,
7,
57,
56,
58,
59,
1,
60,
1,
61,
63,
64,
1,
1,
65,
66,
67,
68,
69,
70,
71,
72,
1,
73,
1,
74,
1,
75,
76,
22,
77,
1,
78,
77,
79,
59,
80,
20,
81,
59,
82,
6,
83,
6,
84,
85,
86,
87,
88,
7,
89,
1,
90,
92,
93,
7,
94,
95,
1,
96,
97,
1,
98,
1,
99,
100,
7,
101,
20,
102,
1,
103,
104,
105,
97,
106,
107,
1,
108,
59,
109,
110,
7,
111,
112,
1,
113,
114,
22,
115,
1,
116,
118,
119,
120,
121,
122,
123,
124,
125,
126,
127,
1,
128,
129,
1,
130,
131,
132,
133,
1,
134,
1,
135,
1,
136,
138,
139,
140,
141,
142,
143,
1,
144,
145,
146,
147,
148,
149,
1,
150,
151,
152,
153,
154,
1,
155,
157,
1,
158,
160,
161,
162,
163,
164,
159,
1,
165,
166,
167,
168,
169,
171,
172,
173,
175,
176,
177,
179,
180,
181,
183,
184,
186,
187,
188,
189,
190,
191,
1,
192,
193,
194,
195,
197,
198,
199,
200,
201,
203,
204,
205,
206,
207,
208,
1,
209,
210,
211,
212,
213,
1,
214,
215,
216,
217,
213,
218,
219,
220,
217,
221,
222,
216,
223,
224,
216,
225,
226,
216,
227,
228,
212,
229,
230,
216,
231,
224,
232,
1,
233,
234,
211,
235,
1,
236,
237,
238,
212,
239,
230,
240,
241,
220,
242,
219,
243,
1,
244,
245,
216,
246,
247,
216,
248,
249,
238,
250,
251,
211,
252,
253,
212,
254,
255,
216,
256,
257,
216,
258,
259,
212,
260,
261,
211,
262,
245,
263,
264,
211,
265,
247,
266,
267,
211,
268,
269,
211,
270,
1,
271,
226,
272,
273,
217,
274,
275,
211,
276,
241,
277,
273,
278,
255,
279,
280,
217,
281,
215,
282,
284,
285,
280,
286,
257,
287,
288,
217,
289,
288,
290,
291,
211,
292,
222,
293,
1,
294,
295,
296,
297,
1,
298,
296,
299,
296,
300,
296,
297,
301,
297,
302,
297,
303,
304,
297,
305,
306,
307,
308,
303,
309,
296,
310,
296,
311,
296,
312,
313,
297,
314,
296,
315,
313,
296,
316,
1,
317,
297,
313,
318,
297,
319,
296,
320,
1,
321,
1,
322,
1,
323,
325,
326,
1,
327,
1,
328,
1,
329,
330,
332,
333,
334,
335,
336,
337,
338,
339,
340,
341,
343,
344,
9,
346,
347,
1,
348,
9,
349,
350,
9,
351,
352,
9,
353,
354,
9,
355,
356,
9,
357,
358,
359,
360,
1,
361,
362,
363,
364,
365,
1,
366,
367,
1,
368,
369,
370,
1,
371,
372,
373,
375,
376,
377,
1,
378,
379,
380,
381,
382,
383,
384,
385,
386,
1,
387,
386,
388,
390,
391,
392,
393,
394,
395,
396,
397,
1,
398,
397,
399,
1,
400,
401,
1,
402,
403,
404,
1,
405,
406,
407,
377,
408,
409,
1,
410,
408,
411,
412,
409,
413,
377,
414,
409,
415,
417,
418,
419,
420,
421,
422,
423,
1,
424,
1,
425,
426,
1,
427,
425,
428,
426,
429,
428,
430,
426,
431,
430,
432,
426,
433,
432,
434,
435,
426,
436,
426,
437,
436,
438,
426,
439,
438,
440,
441,
1,
442,
426,
443,
442,
444,
445,
426,
446,
426,
447,
446,
448,
426,
449,
448,
450,
451,
426,
452,
453,
426,
454,
426,
455,
454,
456,
457,
426,
458,
459,
451,
460,
462,
463,
464,
465,
466,
467,
468,
469,
470,
471,
472,
473,
474,
475,
476,
477,
478,
479,
480,
481,
482,
483,
484,
485,
486,
487,
488,
489,
490,
491,
492,
493,
494,
495,
105,
497,
498,
81,
499,
500,
9,
501,
502,
9,
503,
504,
9,
505,
506,
507,
9,
508,
509,
9,
510,
511,
512,
9,
513,
514,
9,
515,
'C',
515,
'C',
513,
'C',
510,
'C',
508,
'C',
505,
'C',
503,
'C',
501,
'C',
499,
81,
'C',
497,
'C',
494,
0,
516,
'C',
516,
517,
81,
'C',
517,
'C',
493,
'C',
492,
0,
518,
'C',
518,
519,
'C',
519,
'T',
41,
520,
113,
'C',
520,
'C',
491,
'C',
490,
'C',
489,
'C',
488,
487,
81,
81,
81,
'C',
487,
0,
522,
'S',
2,
523,
'C',
523,
113,
'C',
522,
0,
0,
524,
525,
526,
113,
105,
105,
105,
105,
105,
'C',
526,
'T',
41,
'T',
41,
527,
81,
'C',
527,
'C',
525,
'S',
2,
523,
'S',
2,
528,
'S',
2,
529,
'C',
529,
'C',
528,
113,
'C',
524,
530,
532,
533,
533,
0,
534,
1,
535,
81,
81,
81,
530,
536,
113,
105,
105,
105,
105,
105,
81,
'C',
536,
'T',
12558,
537,
537,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
81,
'C',
537,
'T',
12874,
'T',
12875,
113,
'C',
535,
530,
'T',
12848,
'T',
12561,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
'C',
533,
6,
81,
'C',
532,
539,
540,
1,
'C',
486,
485,
'C',
485,
541,
542,
543,
541,
81,
'C',
543,
530,
'T',
12709,
81,
'C',
542,
544,
1,
545,
'C',
545,
0,
60,
546,
547,
1,
60,
60,
548,
1,
60,
60,
60,
60,
549,
1,
81,
550,
1,
105,
551,
'C',
551,
552,
81,
'C',
552,
'C',
484,
483,
81,
'C',
483,
541,
'T',
154,
'T',
13142,
553,
554,
1,
555,
556,
81,
81,
'C',
556,
530,
'T',
12707,
81,
'C',
555,
557,
81,
'C',
557,
558,
559,
558,
81,
'C',
559,
'C',
553,
557,
560,
81,
'C',
560,
81,
'C',
482,
481,
81,
'C',
481,
541,
561,
1,
556,
81,
81,
'C',
480,
479,
81,
81,
81,
'C',
479,
541,
562,
563,
77,
113,
105,
105,
564,
1,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
105,
564,
113,
105,
105,
105,
105,
105,
81,
'C',
563,
530,
'T',
12709,
0,
113,
565,
'C',
565,
'C',
562,
'T',
43,
81,
'C',
478,
477,
81,
'C',
477,
541,
566,
556,
81,
'C',
566,
553,
561,
567,
1,
555,
568,
1,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
113,
105,
569,
1,
81,
569,
81,
569,
81,
569,
81,
569,
81,
569,
81,
569,
81,
113,
105,
570,
1,
81,
570,
81,
570,
81,
570,
81,
570,
81,
113,
105,
571,
1,
81,
571,
81,
571,
81,
81,
113,
81,
'C',
476,
475,
81,
81,
81,
'C',
475,
572,
573,
541,
572,
541,
541,
'T',
43,
574,
0,
563,
0,
576,
104,
577,
578,
578,
81,
572,
579,
580,
81,
81,
81,
81,
81,
81,
'C',
580,
541,
578,
81,
'C',
579,
541,
578,
81,
'C',
578,
'C',
577,
581,
'C',
581,
'C',
576,
582,
583,
584,
585,
1,
586,
104,
577,
81,
81,
81,
81,
81,
'C',
586,
588,
589,
81,
'C',
589,
591,
'C',
591,
592,
81,
'C',
592,
593,
593,
'C',
593,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
4235,
'T',
4236,
'T',
4236,
'T',
4237,
5,
8,
5,
8,
81,
81,
81,
81,
81,
'C',
588,
594,
'C',
594,
595,
'C',
595,
597,
7,
81,
'C',
584,
598,
599,
600,
81,
81,
81,
'C',
600,
601,
584,
'C',
601,
602,
602,
'C',
602,
603,
584,
81,
81,
'C',
603,
81,
'C',
599,
'T',
43,
'C',
598,
'T',
212,
'C',
583,
587,
1,
605,
0,
606,
607,
'C',
607,
608,
81,
'C',
608,
81,
'C',
606,
'C',
605,
590,
609,
610,
611,
1,
612,
'C',
612,
613,
'C',
613,
'C',
582,
614,
'C',
614,
'T',
43,
598,
'C',
574,
'T',
5965,
'T',
154,
'T',
3253,
'T',
43,
'T',
3253,
'T',
3253,
615,
616,
618,
104,
619,
81,
81,
81,
81,
81,
81,
'C',
619,
621,
1,
'C',
618,
614,
583,
584,
622,
104,
520,
81,
81,
'C',
622,
588,
'C',
616,
623,
624,
625,
626,
6,
104,
5,
81,
81,
81,
81,
'C',
626,
627,
624,
628,
624,
624,
629,
629,
'C',
629,
630,
631,
632,
633,
632,
632,
630,
632,
634,
624,
634,
624,
635,
634,
624,
624,
624,
113,
105,
105,
105,
105,
96,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
630,
632,
113,
105,
105,
105,
113,
105,
105,
105,
81,
81,
81,
81,
81,
'C',
635,
632,
632,
632,
636,
637,
636,
96,
96,
'C',
637,
638,
6,
639,
81,
81,
81,
'C',
639,
'S',
3,
81,
'C',
636,
640,
641,
81,
'C',
641,
'T',
15154,
81,
'C',
640,
642,
95,
81,
'C',
642,
81,
'C',
634,
'T',
8390,
'T',
8390,
81,
81,
'C',
633,
643,
'C',
643,
81,
'C',
631,
645,
'C',
645,
81,
'C',
628,
'C',
627,
'C',
625,
630,
'T',
8390,
'T',
8390,
'C',
624,
107,
107,
104,
107,
'S',
2,
528,
81,
81,
81,
81,
'C',
623,
'C',
615,
646,
647,
648,
649,
650,
651,
1,
9,
'C',
648,
652,
81,
653,
654,
655,
1,
9,
653,
9,
'C',
652,
656,
1,
657,
'C',
657,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
658,
659,
334,
660,
661,
662,
107,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
662,
'T',
41,
663,
1,
664,
665,
665,
666,
667,
668,
665,
665,
665,
665,
665,
669,
81,
81,
81,
81,
'C',
669,
667,
670,
'C',
670,
671,
'C',
671,
81,
'C',
668,
672,
555,
555,
673,
'C',
673,
670,
674,
555,
'C',
674,
555,
675,
'C',
675,
557,
'C',
672,
560,
'C',
667,
676,
668,
'C',
676,
81,
'C',
666,
'T',
154,
658,
677,
678,
658,
679,
677,
680,
681,
6,
'C',
681,
81,
'C',
680,
81,
'C',
679,
'T',
3253,
6,
'C',
678,
'T',
154,
'T',
13130,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4236,
'T',
4237,
'T',
154,
'T',
154,
'T',
154,
658,
682,
684,
666,
553,
685,
555,
686,
0,
553,
677,
666,
5,
8,
5,
8,
5,
8,
6,
113,
105,
105,
105,
105,
105,
81,
105,
81,
113,
105,
105,
105,
105,
105,
687,
81,
'C',
687,
'T',
4236,
'T',
4237,
685,
5,
8,
81,
'C',
686,
81,
'C',
685,
688,
81,
'C',
688,
81,
'C',
684,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3251,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4236,
'T',
4237,
553,
553,
555,
686,
553,
555,
686,
81,
81,
81,
81,
'C',
682,
689,
690,
610,
683,
609,
691,
81,
'C',
691,
689,
689,
5,
8,
81,
81,
'C',
689,
5,
8,
'C',
677,
'T',
3253,
334,
'C',
665,
692,
692,
5,
8,
5,
8,
'C',
692,
693,
667,
'C',
693,
81,
'C',
664,
695,
'C',
695,
'T',
41,
667,
668,
'C',
661,
336,
'C',
660,
334,
'C',
659,
'T',
3253,
696,
698,
'S',
4,
'C',
698,
638,
639,
81,
'C',
696,
81,
'C',
658,
5,
8,
5,
8,
'C',
647,
699,
700,
701,
209,
81,
'C',
701,
5,
5,
5,
81,
'C',
700,
'T',
13710,
'C',
699,
'T',
13710,
'C',
646,
293,
'C',
573,
90,
575,
1,
113,
105,
'C',
474,
473,
81,
'C',
473,
541,
541,
550,
703,
543,
81,
'S',
5,
81,
'C',
703,
81,
'C',
472,
471,
81,
'C',
471,
541,
543,
81,
'C',
470,
469,
81,
'C',
469,
541,
81,
'C',
468,
467,
81,
'C',
467,
'T',
11479,
'T',
3849,
'T',
13709,
'T',
3849,
'T',
3849,
704,
706,
707,
708,
705,
651,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
708,
541,
541,
'T',
43,
543,
81,
549,
81,
81,
81,
'C',
707,
541,
81,
'C',
706,
541,
543,
81,
'C',
704,
709,
710,
654,
'C',
709,
711,
'C',
711,
553,
713,
714,
1,
715,
716,
1,
553,
717,
718,
'C',
718,
719,
720,
720,
720,
81,
81,
'C',
720,
107,
81,
81,
'C',
719,
721,
722,
723,
721,
725,
721,
720,
81,
81,
81,
'C',
725,
726,
727,
'C',
727,
729,
107,
81,
'C',
729,
628,
627,
730,
731,
'C',
731,
81,
'C',
730,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
732,
733,
625,
60,
60,
60,
60,
81,
60,
113,
105,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
'C',
733,
81,
'C',
732,
734,
735,
5,
8,
'C',
735,
'T',
8390,
'T',
8390,
736,
1,
5,
8,
81,
'C',
734,
'T',
8390,
'C',
726,
737,
'C',
737,
666,
'C',
723,
726,
738,
'C',
738,
740,
107,
'C',
740,
741,
742,
743,
81,
'C',
743,
729,
'C',
742,
625,
626,
6,
0,
744,
'C',
744,
'C',
741,
628,
627,
745,
'C',
745,
'T',
15425,
746,
'S',
5,
'S',
5,
'C',
746,
81,
'C',
722,
747,
748,
'C',
748,
'T',
8390,
'C',
747,
696,
749,
'C',
749,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
698,
751,
5,
8,
752,
752,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
752,
597,
81,
'C',
751,
'T',
154,
'T',
9226,
'T',
9226,
'T',
154,
753,
7,
81,
81,
'C',
750,
81,
'C',
721,
'C',
717,
'T',
8390,
'T',
13246,
'T',
13252,
'T',
13252,
'T',
13246,
754,
755,
555,
555,
553,
555,
555,
555,
90,
555,
756,
757,
758,
759,
759,
674,
759,
759,
674,
760,
107,
107,
107,
107,
107,
107,
107,
107,
107,
107,
107,
81,
'C',
760,
'T',
8390,
'T',
8390,
'T',
8390,
761,
762,
720,
720,
761,
762,
720,
761,
733,
761,
762,
720,
761,
733,
761,
762,
761,
762,
720,
761,
721,
721,
721,
721,
721,
721,
763,
721,
60,
60,
60,
60,
60,
81,
'C',
763,
764,
'C',
764,
81,
'C',
762,
'T',
8390,
'C',
761,
724,
1,
765,
748,
'C',
765,
696,
'C',
759,
674,
674,
81,
'C',
758,
766,
762,
762,
762,
720,
767,
81,
'C',
767,
'C',
766,
'T',
8390,
107,
'C',
757,
766,
762,
762,
762,
762,
720,
767,
81,
'C',
756,
766,
762,
762,
762,
720,
768,
81,
'C',
768,
'C',
755,
'T',
8390,
769,
770,
771,
772,
773,
769,
770,
774,
107,
81,
'C',
774,
'C',
773,
'C',
772,
775,
81,
'C',
775,
745,
5,
5,
5,
'C',
771,
'T',
8390,
770,
774,
770,
776,
773,
775,
695,
774,
777,
107,
81,
81,
'C',
777,
'T',
8390,
762,
778,
720,
720,
779,
774,
107,
81,
81,
'C',
779,
665,
81,
81,
'C',
778,
'C',
776,
'T',
41,
81,
'C',
770,
775,
695,
81,
'C',
769,
663,
664,
'C',
754,
780,
781,
782,
'C',
782,
'T',
8390,
783,
768,
767,
107,
113,
105,
81,
81,
81,
81,
'C',
783,
81,
'C',
781,
'T',
8390,
'T',
8390,
'T',
8390,
762,
762,
720,
720,
719,
720,
719,
762,
784,
719,
81,
'C',
784,
722,
'C',
780,
'T',
8390,
771,
777,
771,
778,
779,
771,
107,
81,
'C',
466,
465,
81,
'C',
465,
541,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
553,
785,
1,
555,
543,
81,
'C',
464,
0,
786,
'C',
786,
787,
'C',
787,
541,
541,
'T',
41,
788,
788,
81,
'C',
788,
789,
790,
'C',
790,
595,
'C',
789,
'C',
463,
'C',
462,
460,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
460,
541,
541,
546,
548,
548,
791,
791,
791,
791,
548,
791,
791,
791,
791,
548,
543,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
81,
'C',
791,
'C',
458,
792,
793,
6,
81,
81,
81,
'C',
793,
'C',
792,
'C',
456,
90,
553,
794,
'C',
794,
'C',
455,
795,
'C',
795,
'C',
452,
796,
'C',
796,
'C',
450,
'C',
449,
797,
'C',
797,
'C',
447,
'C',
444,
798,
6,
423,
60,
60,
60,
60,
81,
81,
'C',
798,
'C',
443,
'C',
440,
'C',
439,
'C',
437,
'C',
434,
553,
553,
555,
799,
800,
801,
81,
'C',
801,
'C',
800,
802,
'C',
802,
803,
803,
804,
804,
805,
81,
'C',
805,
806,
663,
664,
104,
695,
807,
104,
695,
669,
'C',
807,
562,
77,
113,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
806,
562,
77,
113,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
799,
'T',
154,
'T',
3253,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4236,
555,
555,
753,
753,
81,
81,
81,
'C',
433,
'C',
431,
'C',
429,
'C',
427,
'C',
422,
'C',
421,
'C',
420,
808,
810,
1,
'C',
808,
104,
6,
809,
1,
809,
809,
81,
'C',
419,
0,
811,
'C',
811,
813,
81,
'C',
813,
814,
815,
'T',
14103,
814,
81,
81,
'C',
815,
'C',
418,
'T',
3249,
816,
81,
'C',
816,
647,
'C',
417,
0,
817,
'C',
817,
818,
'C',
818,
819,
820,
822,
386,
81,
81,
'C',
822,
824,
825,
826,
'C',
826,
'T',
5965,
'T',
205,
'T',
5964,
'T',
5138,
732,
827,
827,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
827,
'T',
43,
828,
829,
830,
732,
831,
832,
732,
823,
1,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
832,
'T',
5965,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
43,
833,
553,
674,
555,
834,
555,
555,
835,
81,
'C',
835,
'T',
41,
103,
836,
671,
837,
671,
837,
'C',
837,
'T',
154,
'T',
154,
'T',
3253,
671,
334,
81,
'C',
836,
'T',
41,
'T',
41,
663,
664,
695,
667,
668,
667,
668,
669,
'C',
834,
838,
'C',
838,
'T',
8390,
'C',
833,
'T',
7609,
732,
81,
81,
'C',
831,
'T',
5965,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
43,
'T',
43,
833,
839,
553,
834,
674,
555,
834,
555,
840,
555,
839,
835,
595,
81,
'C',
840,
595,
'C',
839,
'T',
8390,
'T',
8390,
775,
775,
104,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
81,
'C',
830,
'T',
43,
'T',
448,
'T',
7606,
0,
841,
732,
842,
843,
6,
844,
81,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
844,
845,
81,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
845,
'T',
8390,
'T',
8390,
663,
664,
665,
846,
665,
665,
665,
665,
665,
669,
81,
'C',
846,
'T',
13363,
'T',
13368,
81,
'C',
843,
732,
831,
832,
'C',
842,
81,
'C',
841,
847,
775,
81,
'C',
847,
'T',
8390,
'T',
8390,
'T',
41,
'T',
41,
848,
834,
849,
663,
695,
775,
667,
668,
667,
668,
775,
695,
669,
850,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
81,
81,
81,
81,
'C',
850,
107,
'C',
849,
696,
696,
666,
'C',
848,
'T',
8390,
'T',
8390,
'T',
15453,
851,
775,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
81,
'C',
851,
334,
681,
681,
5,
8,
'C',
829,
'T',
8390,
'T',
8390,
'T',
14133,
'T',
8390,
850,
852,
732,
853,
854,
775,
842,
842,
852,
732,
853,
854,
775,
104,
842,
842,
856,
81,
81,
81,
81,
81,
'S',
5,
'C',
856,
'T',
8390,
'T',
14133,
'T',
41,
'T',
43,
'T',
41,
'T',
41,
'T',
8390,
'T',
14133,
'T',
41,
'T',
41,
'T',
14133,
848,
663,
695,
775,
667,
668,
775,
667,
668,
663,
695,
775,
667,
668,
775,
663,
695,
667,
668,
849,
667,
668,
775,
775,
695,
669,
107,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
854,
'T',
8390,
'T',
8390,
'T',
43,
0,
0,
553,
555,
555,
840,
555,
857,
555,
555,
696,
858,
859,
81,
81,
81,
81,
81,
81,
81,
'S',
5,
81,
'C',
859,
775,
616,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
858,
104,
107,
81,
81,
81,
'C',
857,
'T',
8390,
696,
775,
616,
775,
616,
107,
107,
107,
107,
107,
81,
81,
81,
81,
81,
81,
81,
'C',
853,
'T',
8390,
'T',
41,
'T',
43,
'T',
41,
'T',
41,
'T',
8390,
'T',
41,
'T',
41,
663,
664,
848,
775,
667,
668,
775,
667,
668,
775,
667,
668,
775,
667,
668,
849,
667,
668,
775,
695,
669,
107,
81,
'C',
852,
'T',
7609,
'C',
828,
'T',
8390,
'T',
8390,
'T',
14133,
850,
775,
860,
107,
81,
81,
'C',
860,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
81,
81,
81,
'C',
825,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
5965,
'T',
5964,
'T',
5138,
'T',
7609,
'T',
5965,
'T',
5964,
'T',
5138,
'T',
5965,
'T',
5964,
'T',
5138,
'T',
5965,
'T',
205,
'T',
5964,
'T',
5138,
732,
732,
861,
775,
862,
863,
864,
827,
732,
732,
775,
775,
775,
864,
827,
864,
827,
864,
827,
6,
6,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
'C',
864,
'T',
7635,
'T',
154,
'T',
9226,
'T',
7785,
865,
866,
753,
6,
81,
81,
81,
81,
'S',
5,
'C',
866,
868,
869,
868,
870,
871,
870,
868,
868,
870,
'T',
3849,
'T',
5277,
'T',
3850,
872,
873,
1,
874,
876,
877,
878,
1,
879,
880,
81,
81,
81,
868,
870,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
880,
881,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
881,
597,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
879,
882,
81,
'C',
882,
81,
81,
81,
'C',
877,
81,
'C',
876,
882,
'C',
874,
597,
81,
'C',
871,
875,
611,
'C',
869,
883,
'C',
883,
885,
886,
887,
1,
888,
81,
81,
'C',
888,
'C',
865,
'T',
154,
'T',
154,
'T',
154,
889,
1,
'C',
863,
851,
842,
6,
81,
'C',
862,
553,
890,
891,
893,
895,
890,
891,
893,
895,
555,
895,
896,
897,
81,
'C',
897,
81,
'C',
896,
'T',
8390,
'T',
8390,
334,
81,
81,
'C',
895,
555,
555,
555,
'C',
893,
'T',
7609,
736,
81,
'C',
891,
894,
1,
'C',
890,
892,
611,
5,
8,
'C',
861,
658,
334,
898,
898,
898,
553,
895,
555,
895,
897,
81,
'C',
898,
'T',
8390,
'C',
824,
899,
900,
899,
'C',
900,
901,
'C',
901,
81,
'C',
820,
'C',
819,
902,
'C',
902,
903,
903,
904,
413,
905,
'C',
905,
81,
'C',
904,
81,
'C',
415,
906,
908,
0,
909,
0,
911,
'C',
911,
912,
'C',
912,
81,
'C',
909,
913,
81,
81,
'C',
913,
'C',
414,
81,
'C',
411,
81,
'C',
410,
81,
'C',
406,
914,
915,
0,
916,
'C',
916,
'T',
14102,
732,
732,
732,
732,
732,
732,
917,
918,
919,
81,
81,
81,
81,
81,
81,
81,
'C',
919,
899,
825,
826,
'C',
918,
116,
116,
'C',
917,
920,
775,
921,
923,
775,
921,
923,
924,
924,
732,
732,
732,
732,
775,
842,
861,
732,
732,
861,
732,
732,
861,
775,
925,
1,
926,
81,
81,
81,
81,
81,
'C',
926,
828,
850,
927,
829,
775,
742,
928,
830,
929,
930,
823,
107,
81,
81,
'C',
930,
841,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
929,
841,
'C',
928,
931,
'C',
931,
'T',
43,
'T',
43,
'C',
927,
841,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
924,
932,
933,
'T',
8390,
'T',
3253,
932,
'C',
933,
934,
'C',
934,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
'T',
13146,
553,
696,
81,
81,
81,
81,
81,
81,
81,
'C',
923,
935,
'C',
935,
'T',
7609,
841,
841,
936,
823,
937,
'C',
937,
81,
'C',
921,
'T',
8390,
'T',
8390,
61,
555,
555,
840,
732,
555,
938,
939,
847,
861,
922,
1,
107,
107,
107,
81,
940,
651,
941,
654,
9,
81,
81,
'S',
5,
'S',
5,
'C',
939,
942,
944,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
41,
658,
663,
695,
775,
667,
668,
665,
775,
695,
945,
667,
668,
669,
861,
945,
861,
107,
107,
107,
942,
81,
81,
81,
81,
81,
'C',
945,
104,
107,
107,
107,
81,
81,
81,
81,
'C',
944,
61,
946,
'C',
946,
948,
949,
'C',
949,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
950,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
950,
638,
639,
81,
'C',
948,
81,
'C',
938,
'S',
4,
'C',
920,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
'T',
8390,
'C',
403,
951,
952,
1,
953,
'C',
953,
954,
955,
956,
81,
'C',
956,
'T',
5964,
'T',
3249,
'T',
3250,
647,
648,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
955,
'T',
5964,
957,
696,
749,
'C',
957,
958,
'C',
958,
'T',
154,
'C',
954,
533,
'C',
402,
959,
954,
951,
961,
'C',
961,
962,
955,
963,
654,
'C',
962,
'T',
8390,
658,
696,
964,
1,
696,
965,
966,
967,
'C',
967,
'T',
13713,
658,
749,
'C',
966,
'C',
965,
'T',
8390,
'T',
8390,
'T',
8390,
968,
966,
'C',
968,
966,
'C',
959,
530,
969,
970,
'T',
12873,
969,
81,
'C',
970,
1,
'C',
400,
971,
377,
'C',
398,
'C',
396,
'C',
395,
'C',
394,
'C',
393,
'C',
392,
'C',
387,
'C',
385,
'C',
384,
380,
380,
'C',
383,
378,
378,
'C',
381,
'C',
379,
'C',
375,
373,
'C',
373,
972,
972,
972,
972,
972,
972,
972,
81,
0,
974,
81,
81,
81,
81,
81,
81,
'C',
974,
975,
81,
81,
'C',
975,
530,
530,
530,
834,
976,
834,
977,
834,
978,
834,
980,
834,
981,
834,
982,
834,
983,
984,
1,
533,
196,
1,
985,
984,
104,
986,
196,
985,
984,
986,
196,
985,
81,
81,
81,
81,
'C',
986,
6,
81,
81,
'C',
985,
987,
988,
81,
81,
'C',
988,
'T',
12599,
989,
0,
990,
81,
'C',
990,
991,
'C',
991,
992,
993,
994,
81,
'C',
994,
530,
530,
530,
'T',
12281,
'T',
12847,
'T',
12281,
995,
994,
995,
0,
0,
0,
996,
997,
998,
996,
81,
999,
1000,
1001,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
1001,
1002,
1003,
1004,
1005,
1,
1006,
81,
81,
81,
81,
'C',
1006,
1007,
533,
81,
'C',
1007,
'T',
12784,
1008,
1,
81,
'C',
1004,
'T',
12558,
'T',
12553,
81,
81,
113,
105,
105,
105,
105,
105,
81,
81,
'C',
1003,
'C',
1002,
'T',
12553,
81,
'C',
1000,
1009,
1005,
1006,
'C',
1009,
'T',
12553,
81,
81,
'C',
999,
'T',
5781,
1010,
0,
1005,
1006,
81,
1011,
81,
81,
'C',
1011,
'C',
1010,
'T',
12561,
81,
'C',
998,
'T',
5781,
989,
0,
0,
0,
1012,
1013,
1014,
113,
105,
105,
105,
105,
105,
81,
105,
81,
1015,
'C',
1015,
1016,
'C',
1016,
992,
1017,
994,
'C',
1017,
1005,
1006,
1018,
'C',
1018,
'C',
1014,
1016,
81,
'C',
1013,
1019,
1020,
'C',
1020,
997,
998,
992,
993,
994,
81,
81,
'C',
1019,
'C',
1012,
530,
530,
'T',
12885,
'T',
12779,
'T',
12599,
1021,
1022,
1023,
1021,
81,
113,
105,
105,
105,
105,
105,
81,
'C',
1023,
1024,
'C',
1024,
1025,
1025,
538,
1,
'C',
1022,
'T',
12847,
'C',
1021,
'T',
12779,
'T',
12859,
1022,
1026,
81,
'C',
1026,
1027,
1027,
1028,
1029,
9,
1030,
1027,
1031,
1,
1032,
0,
1034,
'C',
1034,
1035,
'C',
1035,
1029,
1036,
1029,
1028,
1036,
1029,
1028,
1037,
1032,
1032,
'C',
1037,
1028,
1036,
1028,
1027,
1028,
'C',
1032,
1038,
56,
81,
'C',
1030,
'C',
997,
992,
1040,
994,
1041,
1042,
81,
81,
81,
'C',
1042,
'T',
12599,
1042,
1040,
996,
0,
81,
81,
1043,
81,
'C',
1043,
994,
'C',
1041,
'C',
1040,
'C',
996,
'C',
995,
81,
'C',
993,
81,
'C',
992,
996,
81,
'C',
989,
'C',
987,
'T',
12599,
989,
0,
997,
998,
81,
1044,
'C',
1044,
997,
'C',
983,
90,
1045,
81,
81,
81,
81,
'C',
1045,
1046,
1047,
654,
'C',
1046,
1048,
'C',
1048,
663,
664,
1050,
669,
'C',
1050,
1049,
1051,
1,
553,
1052,
0,
1053,
'C',
1053,
1054,
'C',
1054,
'S',
6,
'C',
1052,
1055,
1056,
1055,
674,
1057,
7,
669,
1058,
1057,
'C',
1058,
669,
'C',
1056,
555,
1059,
1057,
'C',
1055,
'T',
13418,
'T',
13419,
'T',
13420,
1060,
1061,
1061,
1061,
1061,
1062,
1061,
1056,
674,
1056,
674,
81,
'C',
1062,
'T',
8390,
'T',
8390,
'T',
8390,
775,
695,
665,
665,
665,
665,
665,
665,
775,
695,
665,
665,
665,
665,
665,
665,
665,
665,
665,
665,
665,
775,
695,
665,
665,
1061,
1063,
'C',
1063,
775,
695,
'C',
1061,
695,
'C',
1060,
'T',
41,
695,
'C',
982,
1064,
1065,
1066,
1067,
1064,
81,
'C',
1067,
90,
1045,
81,
'C',
1066,
1068,
602,
'C',
1068,
'C',
1065,
90,
'C',
981,
1067,
'C',
980,
1067,
'C',
978,
1064,
1069,
0,
1070,
1071,
90,
1045,
81,
81,
1072,
81,
'C',
1072,
'T',
14100,
81,
81,
'C',
1071,
1073,
'C',
1073,
684,
'C',
1070,
1074,
'C',
1074,
1076,
1075,
611,
1075,
'C',
1069,
1077,
611,
'C',
977,
'T',
3851,
'T',
3849,
'T',
14133,
'T',
43,
'T',
43,
834,
1078,
1067,
104,
81,
81,
81,
81,
81,
81,
81,
'C',
1078,
1080,
9,
1081,
'C',
1081,
'C',
976,
1080,
90,
1045,
81,
81,
'C',
972,
732,
1082,
1083,
6,
104,
6,
81,
81,
81,
81,
'C',
1083,
'C',
1082,
81,
'C',
372,
955,
956,
1084,
952,
'C',
371,
959,
1084,
961,
'C',
369,
821,
952,
1085,
'C',
1085,
1086,
955,
956,
'C',
1086,
533,
'C',
368,
959,
1086,
821,
961,
'C',
366,
1087,
'C',
1087,
903,
413,
905,
'C',
364,
'C',
363,
'C',
359,
358,
81,
'C',
358,
1088,
'C',
1088,
1089,
1091,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3253,
'T',
3253,
'T',
3253,
553,
1092,
704,
1090,
1,
1093,
1094,
555,
6,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
81,
81,
81,
1089,
81,
81,
81,
'C',
1094,
'T',
154,
'T',
9226,
'T',
43,
753,
104,
597,
81,
81,
81,
'S',
5,
81,
'C',
1093,
1095,
6,
81,
'C',
1095,
81,
'C',
1092,
81,
'C',
1091,
866,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
357,
'C',
355,
'C',
353,
'C',
351,
'C',
349,
'C',
346,
'C',
343,
'C',
340,
'C',
339,
'C',
338,
'C',
337,
'C',
336,
81,
'C',
335,
'C',
334,
81,
'C',
333,
330,
330,
'C',
332,
0,
1096,
'C',
1096,
1097,
81,
'C',
1097,
56,
81,
'C',
329,
'C',
325,
323,
81,
81,
'C',
323,
'T',
14134,
81,
'C',
308,
'C',
307,
305,
305,
'C',
306,
'C',
294,
293,
81,
'C',
284,
696,
701,
235,
'C',
282,
'T',
13710,
701,
235,
'C',
207,
1032,
'C',
206,
1038,
'C',
205,
'C',
204,
'C',
203,
'T',
12405,
81,
'C',
201,
1098,
'C',
1098,
'C',
200,
199,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
199,
530,
530,
'T',
12582,
196,
985,
196,
0,
1099,
0,
1099,
0,
0,
1101,
81,
1102,
81,
1103,
1104,
1105,
'C',
1105,
1106,
1016,
81,
81,
'C',
1106,
1108,
1109,
1110,
1112,
1108,
81,
'S',
5,
'C',
1112,
1113,
9,
1114,
1115,
1108,
1116,
1108,
1117,
105,
1118,
1119,
1120,
1119,
1121,
81,
'S',
5,
'C',
1121,
1116,
1116,
906,
1117,
1122,
'S',
2,
1123,
'C',
1123,
'C',
1122,
1124,
1116,
1117,
1125,
1127,
0,
1128,
'C',
1128,
1129,
'C',
1129,
1117,
1130,
1131,
1132,
1112,
'S',
5,
'C',
1132,
1108,
1115,
1133,
105,
1134,
1113,
908,
1133,
1133,
908,
1135,
1135,
1113,
1113,
1136,
1112,
1112,
'S',
7,
'S',
2,
529,
'S',
8,
81,
'S',
2,
528,
'S',
2,
529,
81,
'S',
9,
'S',
9,
'C',
1136,
1115,
1137,
1138,
1115,
1137,
1137,
1108,
1108,
1139,
1140,
1112,
1137,
81,
81,
'S',
5,
'C',
1140,
1141,
1142,
'C',
1142,
81,
81,
'S',
5,
'C',
1141,
1143,
1144,
593,
1143,
'C',
1144,
1107,
1,
'C',
1139,
1116,
1116,
1122,
128,
'C',
1138,
1143,
'C',
1134,
'C',
1131,
1115,
1108,
908,
1108,
1108,
553,
1110,
555,
1145,
1110,
555,
'S',
2,
529,
81,
81,
81,
'C',
1145,
1146,
1147,
'C',
1147,
'T',
2610,
'C',
1146,
'T',
15146,
'C',
1130,
1115,
1108,
1115,
1115,
553,
1110,
555,
555,
81,
81,
'C',
1127,
1148,
81,
'C',
1148,
'C',
1125,
1149,
1150,
'T',
3850,
1151,
1152,
1149,
81,
'C',
1152,
'C',
1151,
81,
'C',
1150,
1153,
'C',
1153,
885,
1154,
1154,
885,
'C',
1154,
'T',
212,
'T',
43,
1155,
81,
81,
81,
'C',
1155,
1156,
1,
1157,
81,
'C',
1157,
81,
81,
'C',
1120,
1116,
1117,
1124,
1124,
1158,
'C',
1158,
1149,
'T',
5277,
1159,
'C',
1159,
'C',
1119,
1116,
906,
1117,
'S',
2,
1123,
'C',
1118,
'C',
1114,
'C',
1110,
1143,
1143,
1142,
1160,
81,
'C',
1160,
81,
81,
81,
'C',
1109,
1111,
1,
1161,
'C',
1161,
1143,
'C',
1104,
1106,
991,
81,
'C',
1103,
'T',
12561,
1020,
1016,
'C',
1102,
1162,
1,
1016,
81,
'C',
1101,
530,
530,
'T',
12579,
1163,
196,
182,
1,
1164,
113,
105,
105,
105,
105,
105,
81,
'C',
1164,
'T',
12599,
1164,
1040,
0,
81,
81,
1165,
'C',
1165,
994,
'C',
1163,
'T',
12691,
'T',
12579,
6,
113,
105,
105,
105,
105,
105,
81,
81,
81,
'C',
1099,
530,
530,
530,
'T',
43,
'T',
12778,
'T',
12779,
'T',
12778,
81,
'C',
198,
'C',
197,
'C',
194,
81,
'C',
193,
'C',
190,
'C',
189,
'C',
188,
'C',
187,
'C',
183,
'C',
180,
179,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
179,
530,
530,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5781,
196,
0,
0,
196,
985,
1166,
1167,
1168,
113,
105,
'C',
1168,
684,
991,
0,
1169,
51,
51,
1016,
81,
81,
1170,
81,
'C',
1170,
'C',
1169,
530,
530,
'T',
12501,
196,
993,
196,
1171,
1171,
81,
81,
'C',
1171,
'T',
12599,
989,
0,
1172,
'C',
1172,
1016,
'C',
1167,
'T',
154,
'T',
3253,
0,
1169,
1016,
51,
51,
1016,
81,
1173,
'C',
1173,
'C',
1166,
530,
530,
'T',
12501,
533,
1007,
196,
1171,
'C',
177,
530,
196,
985,
81,
'C',
176,
'C',
175,
'C',
172,
'C',
171,
'C',
168,
167,
81,
'C',
167,
'C',
166,
165,
'C',
165,
985,
987,
991,
81,
81,
'C',
164,
530,
196,
'C',
163,
'C',
162,
'C',
161,
'C',
155,
'T',
154,
'T',
3253,
'S',
10,
'C',
142,
1174,
0,
1175,
'C',
1175,
1176,
81,
81,
81,
'C',
1176,
1177,
1178,
'C',
1178,
1179,
'C',
1179,
908,
1107,
1180,
1136,
'S',
2,
529,
81,
'C',
1180,
1133,
1133,
'C',
1177,
1179,
'C',
141,
1149,
1149,
'T',
3850,
'T',
3850,
0,
1152,
1148,
128,
1125,
0,
1152,
1148,
128,
1181,
81,
1182,
81,
81,
'C',
1182,
1158,
'S',
2,
523,
'S',
2,
528,
'S',
2,
529,
'S',
2,
528,
'C',
1181,
'C',
140,
0,
1183,
'C',
1183,
139,
81,
81,
'C',
139,
141,
'C',
138,
0,
1184,
'C',
1184,
1135,
81,
'C',
136,
1135,
1135,
'C',
132,
'C',
131,
136,
'S',
2,
528,
'C',
130,
1149,
'T',
3849,
'C',
128,
1185,
'C',
1185,
'C',
126,
'T',
15133,
'C',
125,
124,
81,
'C',
124,
1186,
1187,
7,
81,
'C',
1186,
81,
'C',
123,
122,
81,
'C',
122,
159,
164,
0,
1188,
1189,
167,
1190,
'C',
1190,
1191,
1192,
1191,
530,
'T',
12411,
1186,
1193,
614,
1194,
1195,
1,
196,
584,
1196,
1197,
0,
1198,
1197,
203,
1199,
1191,
1200,
81,
'S',
5,
'C',
1200,
1201,
81,
'C',
1201,
'C',
1199,
1007,
1016,
1171,
'C',
1198,
530,
196,
0,
1202,
1203,
'C',
1203,
1020,
1204,
'C',
1204,
530,
'T',
12501,
1007,
1016,
'C',
1202,
1099,
561,
'C',
1197,
530,
'T',
5781,
196,
993,
51,
51,
1205,
81,
'C',
1205,
530,
196,
182,
1164,
'C',
1196,
'C',
1193,
'C',
1192,
1206,
'C',
1206,
144,
1207,
'C',
1207,
603,
1208,
'C',
1208,
630,
1210,
'C',
1210,
'C',
1189,
530,
530,
'T',
43,
'T',
12691,
0,
1211,
81,
'C',
1211,
81,
'C',
1188,
530,
530,
'T',
43,
'T',
12579,
'C',
121,
120,
81,
81,
'C',
120,
1191,
1191,
'T',
12405,
'T',
12407,
614,
1212,
1213,
1,
'C',
1212,
'T',
43,
598,
81,
'C',
119,
116,
'C',
118,
0,
1214,
'C',
1214,
1215,
'C',
1215,
56,
81,
'C',
111,
'C',
109,
'C',
106,
'C',
104,
'T',
154,
'T',
3253,
'T',
41,
'T',
3251,
'T',
3253,
'T',
41,
'T',
3251,
671,
837,
'C',
103,
'T',
41,
'C',
99,
'C',
94,
'C',
92,
'C',
90,
'T',
154,
'T',
3253,
'T',
3253,
144,
1207,
584,
81,
81,
'C',
87,
'C',
86,
'C',
85,
'C',
83,
'C',
82,
'C',
78,
'C',
71,
'C',
70,
14,
'C',
69,
'C',
68,
'C',
67,
81,
'C',
66,
81,
'C',
65,
81,
'C',
63,
'C',
61,
'T',
5118,
'T',
154,
553,
560,
'C',
57,
'C',
53,
'C',
52,
51,
81,
'C',
51,
50,
'C',
49,
'C',
47,
'S',
2,
529,
'S',
2,
529,
'C',
46,
104,
1216,
81,
'C',
1216,
'C',
45,
1217,
'C',
1217,
'C',
43,
'C',
42,
'C',
41,
'C',
40,
'C',
39,
'C',
38,
'C',
37,
'C',
36,
'C',
35,
'C',
34,
'C',
33,
'C',
32,
'C',
31,
'C',
24,
555,
81,
'C',
18,
'C',
16,
'C',
15,
14,
13,
'C',
13,
'T',
154,
'T',
154,
'T',
13142,
1218,
1,
1219,
1220,
11,
1,
1221,
'C',
1221,
113,
105,
113,
105,
77,
113,
'C',
1220,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
144,
1207,
1218,
584,
81,
'C',
1219,
81,
'C',
12,
11,
'C',
10,
11,
'C',
8,
81,
'C',
4,
'C',
2,
1222,
'C',
1222,
1223,
1224,
1225,
1226,
1227,
1,
1228,
'C',
1228,
1230,
1232,
1234,
81,
'C',
1234,
1236,
0,
1202,
0,
1202,
0,
1238,
1240,
1,
81,
81,
1241,
1242,
1243,
'C',
1243,
159,
164,
0,
1188,
1189,
167,
1244,
'C',
1244,
1245,
1197,
1246,
203,
1199,
'C',
1246,
1247,
1248,
674,
1249,
597,
1247,
81,
'C',
1249,
1251,
1252,
103,
1253,
81,
81,
81,
'C',
1253,
'C',
1252,
'C',
1251,
'T',
154,
1045,
'C',
1248,
553,
'C',
1245,
530,
1254,
1194,
196,
0,
555,
1255,
81,
'C',
1255,
1256,
81,
'C',
1256,
985,
597,
81,
81,
'C',
1254,
1257,
1258,
1259,
1260,
81,
'C',
1260,
'C',
1259,
541,
'C',
1258,
541,
541,
0,
1261,
0,
1262,
1263,
1264,
'C',
1264,
1265,
'C',
1265,
1266,
'C',
1266,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
9226,
1246,
889,
684,
1267,
1268,
1246,
1268,
753,
1246,
1240,
81,
1240,
81,
'S',
5,
'C',
1268,
1269,
1270,
1271,
1272,
1,
1273,
1274,
1227,
1275,
81,
1277,
1,
81,
81,
'C',
1275,
1278,
1279,
1278,
'C',
1279,
0,
1280,
'C',
1280,
1281,
1282,
81,
1281,
'C',
1282,
0,
1283,
'C',
1283,
1284,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
1284,
1285,
105,
1286,
1287,
1289,
1287,
1285,
1285,
1290,
1291,
1292,
104,
1287,
1293,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
1292,
'T',
5965,
'T',
3253,
1294,
1295,
1296,
81,
81,
'C',
1296,
1271,
81,
81,
1297,
1,
'C',
1295,
745,
'C',
1294,
'T',
41,
'T',
43,
'T',
43,
'T',
7609,
'T',
41,
'T',
41,
1298,
775,
775,
775,
775,
104,
1291,
104,
104,
1291,
'S',
11,
81,
81,
81,
81,
81,
'C',
1298,
734,
735,
5,
8,
'C',
1291,
745,
'C',
1290,
1299,
1300,
1272,
81,
'C',
1289,
0,
1301,
'C',
1301,
1302,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
1302,
1303,
1304,
1303,
1305,
9,
1306,
'T',
5965,
'T',
7726,
61,
0,
1307,
1307,
1308,
1303,
1309,
81,
81,
'C',
1309,
1310,
81,
'C',
1310,
0,
1311,
1312,
611,
1313,
'C',
1313,
0,
1314,
'C',
1314,
1315,
1316,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1295,
746,
1317,
1318,
1320,
842,
746,
51,
746,
746,
775,
842,
775,
81,
81,
1315,
81,
1321,
1,
81,
1321,
81,
81,
1321,
81,
81,
81,
81,
81,
'S',
5,
'C',
1320,
334,
'C',
1318,
1322,
1323,
1324,
745,
5,
'S',
5,
'C',
1324,
'T',
3253,
'C',
1323,
'T',
3253,
'C',
1322,
81,
'C',
1317,
1325,
1319,
1,
6,
5,
8,
81,
'C',
1325,
81,
'C',
1316,
866,
81,
'C',
1308,
1305,
1326,
1327,
1326,
1326,
1328,
105,
1329,
1328,
1303,
1328,
1328,
1330,
1303,
1305,
1328,
1331,
530,
1331,
1326,
1331,
1331,
1332,
1334,
1335,
594,
1336,
1337,
1099,
1194,
196,
1338,
1256,
1326,
561,
0,
1339,
81,
81,
81,
'C',
1339,
1308,
'C',
1338,
1340,
'C',
1340,
81,
'C',
1337,
'T',
5118,
'C',
1336,
330,
'C',
1335,
1340,
'C',
1334,
1340,
'C',
1332,
1341,
561,
'C',
1341,
1342,
1343,
1342,
1344,
636,
1342,
81,
'C',
1344,
1340,
'C',
1343,
1345,
'C',
1345,
1346,
'C',
1346,
81,
'C',
1329,
'C',
1327,
1342,
1333,
1,
'C',
1307,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
1347,
593,
593,
593,
593,
591,
81,
'C',
1347,
1348,
'C',
1348,
593,
593,
593,
'C',
1306,
'C',
1304,
590,
612,
'C',
1286,
'C',
1273,
61,
'C',
1267,
674,
'C',
1263,
1349,
81,
'C',
1349,
1350,
'C',
1350,
1236,
1351,
1236,
90,
0,
1352,
1353,
81,
77,
113,
105,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
1240,
81,
1355,
1240,
81,
'C',
1355,
'T',
2448,
1268,
81,
81,
'C',
1353,
'C',
1352,
1356,
1357,
1069,
1357,
1358,
1358,
'C',
1358,
'T',
13010,
753,
'C',
1357,
1359,
1,
1360,
'C',
1360,
'T',
13009,
'C',
1356,
1077,
'C',
1351,
1361,
60,
1363,
1364,
1365,
1366,
561,
60,
'C',
1366,
81,
'C',
1365,
81,
'C',
1364,
561,
81,
'C',
1363,
'C',
1262,
530,
'C',
1261,
530,
'C',
1257,
'C',
1242,
1266,
1367,
1254,
'C',
1367,
1351,
'C',
1241,
1350,
'C',
1238,
'T',
7643,
1236,
0,
81,
1368,
81,
'C',
1368,
1246,
1369,
'C',
1369,
1370,
1372,
'C',
1372,
0,
1202,
1373,
'C',
1373,
1374,
'C',
1374,
1375,
1372,
'C',
1375,
1376,
1378,
1379,
1269,
1273,
1274,
1275,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
1379,
1256,
'C',
1378,
1381,
1382,
597,
'C',
1382,
81,
81,
81,
81,
'C',
1381,
'C',
1376,
597,
'C',
1370,
1383,
'C',
1383,
1384,
594,
1386,
1387,
1388,
'C',
1388,
'T',
4206,
'T',
4212,
1385,
1,
1389,
'C',
1389,
90,
'C',
1386,
1390,
1,
1391,
1392,
584,
1212,
614,
1394,
81,
'C',
1394,
0,
1395,
1397,
1398,
81,
'C',
1398,
1399,
1400,
81,
'C',
1400,
1402,
1390,
1391,
1403,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
1403,
'T',
444,
1402,
1404,
1,
1405,
81,
'C',
1405,
1406,
555,
81,
'C',
1406,
1407,
840,
'C',
1407,
'T',
154,
'T',
9226,
'T',
11233,
840,
1267,
555,
753,
81,
'S',
5,
'C',
1399,
81,
'C',
1397,
'T',
154,
'T',
9226,
'T',
4208,
'T',
4209,
'T',
4207,
1408,
889,
1269,
1273,
0,
1410,
1274,
1275,
1269,
1273,
0,
1410,
1275,
753,
81,
1411,
81,
81,
1412,
81,
81,
'S',
5,
'C',
1412,
0,
1311,
1413,
'C',
1413,
0,
1414,
'C',
1414,
'T',
4208,
1271,
1271,
81,
81,
81,
'C',
1411,
0,
1311,
1415,
'C',
1415,
0,
1416,
'C',
1416,
1271,
81,
81,
'C',
1408,
614,
1417,
1417,
1419,
1419,
'C',
1419,
0,
1352,
1420,
'C',
1420,
'T',
3851,
1421,
81,
81,
'C',
1421,
'T',
4209,
1269,
1273,
1274,
1275,
81,
'C',
1417,
'T',
9959,
144,
1207,
0,
1422,
81,
'C',
1422,
584,
81,
81,
'C',
1395,
1390,
1391,
614,
1423,
0,
1424,
570,
1425,
'C',
1425,
0,
1426,
1427,
'C',
1427,
144,
1207,
1428,
1,
584,
1212,
614,
1429,
90,
1430,
1431,
1432,
1433,
1,
1434,
81,
'C',
1434,
1436,
1438,
'C',
1438,
'T',
5114,
'T',
154,
'T',
5114,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
9226,
1440,
1441,
1227,
1442,
0,
1352,
1356,
0,
1443,
1071,
1444,
1441,
1445,
865,
1446,
1356,
1071,
614,
1448,
753,
1449,
1450,
81,
'S',
5,
81,
81,
'C',
1450,
1451,
81,
'C',
1451,
614,
'C',
1449,
1451,
614,
1452,
81,
81,
81,
'C',
1452,
1453,
1455,
1456,
1440,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
1456,
1455,
1457,
1455,
1457,
81,
'C',
1457,
1447,
547,
60,
60,
81,
'C',
1455,
1458,
1460,
1447,
60,
60,
'C',
1460,
'C',
1458,
1461,
1459,
1,
1463,
'C',
1463,
'C',
1461,
81,
'C',
1453,
'C',
1448,
1453,
1455,
1456,
1444,
81,
'C',
1446,
'T',
43,
'T',
43,
'C',
1445,
'C',
1443,
1464,
611,
'C',
1442,
'C',
1436,
1465,
'C',
1465,
'T',
43,
'T',
1980,
1212,
614,
1356,
1466,
150,
1467,
1468,
1469,
1470,
1,
584,
1471,
1472,
7,
1473,
1,
81,
1474,
1475,
1433,
81,
81,
81,
81,
'C',
1471,
90,
1476,
81,
81,
1477,
1478,
1,
81,
1479,
1,
1480,
1,
81,
'C',
1476,
159,
164,
0,
1188,
1189,
167,
1481,
'C',
1481,
1482,
203,
1199,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
1482,
159,
164,
0,
1188,
1189,
167,
81,
1483,
'C',
1483,
'T',
9937,
'T',
9941,
1484,
1485,
1,
1486,
1197,
203,
1199,
1488,
1,
104,
81,
81,
81,
'C',
1486,
1489,
1490,
614,
1491,
1489,
'C',
1491,
530,
541,
1194,
196,
0,
1492,
1493,
81,
'C',
1493,
1256,
1269,
1273,
1274,
1275,
81,
81,
81,
'C',
1492,
1494,
1495,
621,
'C',
1495,
81,
'C',
1494,
530,
0,
1496,
'C',
1496,
'T',
12707,
81,
'C',
1490,
90,
'C',
1484,
1497,
'C',
1497,
1499,
1501,
'C',
1501,
1503,
'C',
1468,
1504,
'C',
1504,
'T',
43,
1505,
'C',
1505,
'T',
212,
'C',
1467,
603,
1208,
'C',
1466,
0,
1070,
1506,
1508,
'C',
1508,
81,
81,
'C',
1506,
'T',
4236,
'T',
4237,
'T',
43,
1509,
1507,
1475,
'C',
1509,
'T',
4235,
1510,
1511,
1,
'C',
1431,
'C',
1430,
'T',
154,
'T',
9226,
'T',
4208,
'T',
4208,
90,
584,
753,
81,
81,
'S',
5,
'C',
1429,
'C',
1426,
'C',
1424,
1512,
1513,
1514,
'C',
1514,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4885,
684,
1516,
104,
1269,
1273,
0,
1274,
1275,
1517,
81,
1519,
81,
'C',
1519,
0,
1311,
1520,
'C',
1520,
0,
1521,
'C',
1521,
1516,
104,
1271,
81,
81,
81,
81,
'C',
1517,
'T',
2448,
1522,
1523,
1524,
1525,
'C',
1525,
1526,
'C',
1526,
1354,
1528,
1,
'C',
1523,
'T',
4235,
'T',
4236,
'T',
4237,
1529,
81,
'C',
1529,
'T',
212,
'T',
43,
126,
1530,
81,
81,
81,
81,
'C',
1530,
1531,
1,
1532,
81,
'C',
1532,
81,
81,
'C',
1522,
'T',
154,
'T',
3253,
'T',
43,
'T',
154,
753,
'C',
1516,
81,
'C',
1513,
'C',
1512,
'C',
1423,
1446,
'C',
1392,
1403,
1533,
81,
'C',
1533,
1404,
1405,
'C',
1391,
553,
1534,
61,
553,
'C',
1534,
1461,
1454,
1,
1535,
'C',
1535,
'C',
1384,
1069,
1357,
1358,
1536,
1066,
'C',
1536,
594,
1447,
60,
60,
'C',
1236,
1247,
1247,
533,
1538,
555,
1250,
1,
1539,
555,
1540,
81,
'C',
1540,
1251,
1252,
81,
'C',
1539,
'C',
1538,
'C',
1232,
0,
1202,
1541,
'C',
1541,
1542,
'C',
1542,
1543,
1544,
1225,
1545,
1546,
1547,
1,
1548,
81,
'C',
1548,
1549,
0,
1551,
0,
1553,
1554,
1555,
1557,
1558,
81,
81,
81,
'C',
1558,
1559,
81,
'C',
1559,
1561,
1563,
'C',
1563,
1564,
1566,
1567,
1568,
1269,
1273,
1274,
1275,
1568,
1,
81,
81,
1564,
81,
'C',
1568,
'T',
1542,
'T',
43,
'T',
43,
'T',
1542,
'T',
43,
'T',
1554,
1569,
1570,
1571,
1570,
1569,
1572,
1572,
'C',
1572,
'T',
1566,
'T',
1550,
1573,
1574,
1568,
81,
'C',
1574,
'T',
5263,
1575,
1576,
'C',
1576,
'T',
5273,
'T',
1544,
0,
1577,
'C',
1577,
1576,
81,
'C',
1575,
'T',
1544,
0,
1578,
'C',
1578,
1575,
81,
81,
'C',
1573,
'T',
1542,
'T',
1546,
1579,
1571,
1569,
1580,
81,
'C',
1580,
'T',
1220,
'C',
1579,
1582,
1583,
614,
1582,
'C',
1583,
90,
'C',
1571,
'T',
43,
65,
'C',
1570,
0,
1584,
'C',
1584,
'T',
5257,
'T',
1544,
81,
81,
'C',
1569,
'T',
5261,
1585,
81,
'C',
1585,
1586,
1529,
81,
'C',
1586,
'T',
5200,
'T',
1544,
81,
0,
1587,
'C',
1587,
1586,
81,
'C',
1567,
1588,
81,
'C',
1588,
81,
'C',
1566,
0,
1590,
'C',
1590,
1591,
81,
'C',
1591,
1565,
1592,
1544,
1593,
1594,
1547,
81,
'C',
1561,
1595,
'C',
1595,
'T',
1542,
'T',
206,
1596,
1597,
81,
'C',
1597,
'T',
1543,
'T',
1558,
1598,
1600,
81,
'C',
1600,
'T',
1543,
'T',
3945,
81,
'C',
1598,
1601,
81,
'C',
1601,
81,
'C',
1596,
'T',
1542,
'T',
5254,
1603,
'C',
1603,
1582,
584,
'C',
1557,
1604,
1605,
'C',
1605,
'C',
1604,
1560,
1562,
1589,
1556,
1226,
1606,
'C',
1606,
1607,
105,
1608,
1607,
1354,
'C',
1608,
'C',
1555,
1609,
81,
'C',
1609,
555,
'C',
1554,
1254,
'C',
1553,
'T',
154,
'T',
9226,
'T',
154,
'T',
9226,
1236,
1610,
1269,
1273,
0,
1611,
1610,
1613,
889,
1267,
1246,
889,
753,
753,
1267,
1246,
81,
0,
1614,
81,
1615,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'S',
5,
81,
'S',
5,
'C',
1615,
0,
1311,
1616,
'C',
1616,
0,
1617,
'C',
1617,
1618,
1,
1619,
1271,
104,
1620,
81,
1277,
81,
81,
81,
81,
81,
81,
'C',
1620,
1271,
'C',
1614,
1621,
81,
81,
'C',
1621,
81,
'C',
1613,
'T',
4188,
'C',
1611,
1274,
1275,
81,
'C',
1610,
1622,
0,
1624,
'C',
1624,
1626,
'C',
1626,
1627,
81,
81,
'C',
1627,
'T',
7435,
81,
'C',
1622,
'T',
154,
1629,
113,
105,
105,
105,
105,
105,
'C',
1629,
1630,
1631,
'C',
1631,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3251,
1629,
1629,
1629,
1629,
'S',
5,
'S',
5,
'S',
5,
'S',
5,
'S',
5,
'S',
5,
'S',
5,
'C',
1630,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'C',
1551,
'C',
1230,
1632,
1632,
1231,
1233,
1393,
1634,
1635,
1502,
1235,
1371,
1239,
1,
1636,
'C',
1636,
530,
553,
1194,
196,
1637,
'C',
1637,
150,
1467,
1638,
1639,
1,
1640,
'C',
1640,
553,
1377,
1,
90,
1354,
553,
553,
1641,
0,
1642,
0,
1643,
'C',
1643,
1644,
81,
81,
'C',
1644,
1645,
81,
'C',
1645,
1145,
1145,
733,
1646,
1366,
1147,
1647,
81,
105,
105,
'C',
1647,
'T',
15158,
81,
'C',
1646,
'T',
13708,
'T',
15161,
1648,
1649,
1650,
1651,
1366,
1645,
81,
81,
81,
'C',
1651,
'C',
1650,
'T',
13709,
1652,
'C',
1652,
81,
'C',
1649,
'T',
13709,
1653,
'C',
1653,
81,
'C',
1648,
'T',
2610,
'C',
1642,
1654,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
1654,
1655,
81,
'C',
1655,
'C',
1641,
590,
612,
1409,
1,
1656,
90,
1657,
1,
1658,
1,
90,
1659,
561,
'C',
1659,
1236,
1660,
1661,
90,
1662,
1246,
81,
81,
'C',
1662,
1045,
1663,
'C',
1663,
'C',
1661,
1664,
'C',
1664,
1665,
'C',
1665,
1666,
'C',
1666,
'C',
1660,
1632,
541,
541,
1667,
1668,
1669,
1552,
1,
1670,
0,
0,
1671,
0,
1672,
0,
1673,
555,
1674,
1675,
1676,
1677,
1477,
81,
1678,
1,
1667,
0,
1679,
81,
81,
81,
'C',
1679,
1681,
81,
'C',
1681,
0,
1311,
1682,
'C',
1682,
0,
1683,
'C',
1683,
'T',
4235,
'T',
4236,
'T',
4237,
553,
1684,
555,
81,
81,
81,
81,
81,
'C',
1684,
1685,
1686,
81,
81,
'C',
1686,
1687,
1689,
1269,
1273,
1691,
1271,
61,
553,
0,
1692,
81,
81,
81,
81,
1693,
81,
81,
'C',
1693,
81,
'C',
1692,
'C',
1689,
'C',
1687,
1694,
1695,
1694,
'C',
1695,
1690,
1,
1696,
'C',
1696,
553,
1697,
1,
90,
90,
1698,
1699,
1,
1700,
1699,
1700,
'C',
1700,
553,
553,
553,
'C',
1698,
1701,
1702,
1703,
1704,
1705,
154,
1467,
'C',
1685,
1706,
'C',
1706,
'C',
1677,
1707,
81,
'C',
1707,
530,
834,
1708,
834,
1709,
834,
1710,
196,
985,
81,
81,
81,
81,
81,
81,
'C',
1710,
159,
164,
0,
1188,
1189,
167,
1711,
'C',
1711,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3849,
'T',
3849,
'T',
3818,
684,
1712,
1,
1197,
203,
1199,
81,
81,
81,
81,
'C',
1709,
159,
164,
0,
1188,
1189,
167,
1713,
'C',
1713,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3845,
684,
1197,
203,
1199,
81,
'C',
1708,
159,
164,
0,
1188,
1189,
167,
1714,
'C',
1714,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3843,
684,
1197,
1715,
203,
1199,
81,
113,
'C',
1715,
159,
164,
0,
1188,
1189,
167,
1717,
'C',
1717,
1476,
1197,
203,
1199,
1477,
81,
1678,
81,
'C',
1676,
1718,
'C',
1718,
'T',
154,
'T',
9226,
'T',
3830,
1719,
753,
81,
'S',
5,
'C',
1719,
541,
81,
'C',
1675,
1720,
'C',
1720,
541,
1721,
81,
'C',
1721,
'T',
154,
'T',
9226,
'T',
3852,
753,
81,
'S',
5,
'C',
1674,
1722,
'C',
1722,
1554,
'C',
1673,
1723,
1725,
1499,
1726,
0,
1728,
1723,
1729,
81,
'C',
1729,
1730,
81,
'C',
1730,
159,
164,
0,
1188,
1189,
167,
1731,
'C',
1731,
'T',
9939,
'T',
9943,
'T',
9945,
'T',
41,
'T',
9945,
1197,
203,
1199,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
1728,
1732,
1733,
1732,
572,
1212,
584,
0,
1734,
1732,
1735,
81,
'C',
1735,
159,
164,
0,
1188,
1189,
167,
81,
81,
1736,
'C',
1736,
1737,
1197,
203,
1199,
'C',
1737,
159,
164,
0,
1188,
1189,
167,
1738,
'C',
1738,
1732,
572,
614,
1197,
576,
1269,
1273,
1274,
1275,
203,
1199,
81,
'C',
1734,
159,
164,
0,
1188,
1189,
167,
1739,
'C',
1739,
1740,
1741,
1197,
203,
1199,
'C',
1741,
614,
1742,
'C',
1742,
594,
'C',
1740,
614,
1743,
'C',
1743,
'C',
1733,
90,
'C',
1726,
1744,
1745,
1744,
1744,
'T',
15133,
1746,
1747,
1147,
1748,
1749,
1726,
'S',
12,
'S',
13,
1744,
'S',
12,
'C',
1749,
1726,
'S',
12,
'S',
14,
'S',
12,
'C',
1748,
1750,
'C',
1750,
81,
'C',
1747,
'C',
1746,
6,
81,
'C',
1745,
1750,
'C',
1725,
1727,
1,
'C',
1672,
530,
'C',
1671,
530,
'C',
1670,
1354,
1581,
1,
553,
1751,
1752,
1753,
1,
1754,
'C',
1754,
1755,
1757,
1758,
144,
1207,
1760,
611,
1761,
1762,
1752,
1763,
150,
1467,
1764,
0,
0,
1765,
1766,
1,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
1755,
1767,
1768,
81,
81,
'C',
1768,
1769,
81,
'C',
1769,
1770,
1771,
570,
570,
570,
1772,
1,
81,
570,
1772,
81,
81,
'C',
1771,
1773,
1774,
'C',
1774,
'T',
4235,
'T',
4236,
'T',
4237,
1775,
684,
104,
1269,
1273,
1274,
1275,
1776,
1773,
'C',
1776,
1451,
'C',
1775,
'C',
1773,
1632,
1777,
1779,
1,
81,
1779,
81,
1779,
81,
1779,
81,
1779,
81,
1779,
81,
81,
81,
'C',
1777,
1780,
'C',
1780,
1782,
1784,
1785,
1786,
1787,
1788,
1789,
1790,
1791,
1792,
1793,
1794,
1795,
104,
1796,
1782,
1785,
1787,
1789,
1791,
1793,
81,
81,
81,
'C',
1796,
'T',
5965,
'T',
4484,
'T',
7635,
'T',
154,
'T',
9226,
553,
1797,
1270,
1273,
555,
0,
1798,
865,
1276,
1799,
7,
555,
753,
81,
1277,
81,
1800,
'S',
5,
'C',
1800,
1269,
1273,
81,
'C',
1798,
1801,
609,
'C',
1795,
1802,
1803,
1802,
'C',
1803,
1804,
'C',
1804,
1805,
'C',
1805,
81,
'C',
1794,
1802,
'T',
43,
81,
'C',
1792,
1802,
'T',
43,
81,
'C',
1790,
1802,
'T',
43,
81,
'C',
1788,
1802,
'T',
43,
81,
'C',
1786,
1802,
'T',
43,
81,
'C',
1784,
1802,
'T',
43,
81,
'C',
1770,
1773,
'C',
1767,
1806,
81,
'C',
1806,
'T',
154,
'T',
154,
'T',
9226,
'T',
9226,
1771,
553,
555,
1807,
555,
753,
753,
81,
'S',
5,
'S',
5,
81,
'C',
1807,
553,
555,
'C',
1765,
584,
'C',
1764,
553,
1518,
611,
'C',
1763,
553,
1808,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
1808,
553,
1764,
81,
'C',
1757,
1756,
1,
1809,
'C',
1809,
553,
90,
0,
1810,
1812,
1811,
1,
81,
1813,
1,
'C',
1812,
1814,
'C',
1814,
159,
164,
0,
1188,
1189,
167,
1815,
'C',
1815,
'T',
10010,
'T',
10009,
'T',
4235,
'T',
4236,
'T',
4237,
1816,
703,
1818,
584,
1819,
1212,
1820,
684,
1522,
90,
203,
1199,
81,
81,
81,
'C',
1820,
1821,
1822,
1823,
1824,
1825,
1826,
'T',
4235,
'T',
4236,
'T',
4237,
1827,
90,
1356,
1357,
1358,
614,
1829,
1,
614,
614,
584,
1356,
1830,
1831,
1212,
1832,
1821,
1823,
1825,
1833,
1834,
1227,
81,
'C',
1832,
1356,
1357,
1358,
614,
584,
81,
81,
'C',
1831,
'T',
4235,
'T',
4236,
'T',
4237,
'C',
1830,
1835,
'C',
1835,
1212,
'C',
1827,
'T',
3253,
'T',
10004,
'T',
10006,
90,
584,
113,
105,
1836,
1,
81,
1836,
81,
1836,
81,
1836,
81,
1836,
81,
1836,
81,
1836,
81,
1836,
81,
1836,
81,
'C',
1826,
90,
1833,
1837,
1834,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
1833,
1837,
81,
'C',
1824,
1825,
'T',
4236,
'T',
4237,
90,
584,
1838,
1509,
584,
1837,
81,
81,
'C',
1838,
1356,
0,
1070,
1839,
'C',
1839,
614,
1840,
1,
81,
'C',
1822,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
150,
1467,
1841,
90,
1829,
1836,
1842,
1,
81,
1829,
1836,
1842,
81,
1829,
1836,
1842,
81,
1829,
1836,
1842,
81,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
1829,
1836,
1842,
'C',
1841,
'T',
43,
1505,
1843,
1841,
81,
'C',
1843,
1844,
1844,
'C',
1844,
603,
1841,
81,
'C',
1819,
'T',
10009,
'C',
1818,
'T',
10010,
'C',
1816,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
43,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
834,
1845,
1828,
1,
834,
1846,
1828,
834,
1847,
1828,
834,
1848,
1850,
1828,
834,
1851,
1828,
834,
1852,
1828,
834,
1853,
1817,
1227,
834,
1854,
1817,
104,
1796,
104,
1796,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
1848,
'T',
43,
'T',
43,
1855,
1856,
1,
1857,
1856,
104,
1796,
81,
81,
81,
'C',
1810,
1499,
1728,
1858,
0,
1728,
81,
1859,
'C',
1859,
159,
164,
0,
1188,
1189,
167,
81,
1860,
'C',
1860,
'T',
9931,
'T',
9929,
1197,
203,
1199,
81,
81,
'C',
1858,
1499,
'C',
1669,
1861,
541,
1863,
0,
0,
0,
1864,
1,
1865,
0,
1866,
0,
1867,
0,
1868,
0,
1869,
0,
1870,
1871,
1872,
0,
555,
1873,
1874,
1875,
1876,
1877,
1878,
1879,
1880,
1881,
1882,
81,
81,
'C',
1882,
1883,
81,
'C',
1883,
1884,
1885,
'C',
1885,
1549,
0,
555,
1886,
81,
81,
'C',
1886,
'T',
4392,
1887,
81,
81,
81,
'C',
1887,
0,
1426,
1888,
'C',
1888,
1069,
1357,
1358,
1889,
1451,
90,
1430,
1432,
1436,
1438,
81,
'C',
1889,
'C',
1884,
1549,
1549,
0,
1890,
1553,
1891,
1892,
1893,
1894,
81,
81,
81,
'C',
1894,
1549,
1893,
1256,
81,
'C',
1893,
541,
1895,
1896,
81,
'C',
1896,
530,
1897,
'C',
1895,
'T',
43,
1898,
'C',
1898,
674,
'C',
1892,
1236,
0,
1551,
1797,
1273,
1611,
1246,
1246,
81,
1899,
81,
'C',
1899,
1900,
'C',
1900,
'T',
5199,
'T',
5114,
1901,
1353,
0,
1902,
81,
1903,
'C',
1903,
1904,
81,
'C',
1904,
'T',
1544,
'T',
5196,
0,
1905,
81,
'C',
1905,
1904,
81,
'C',
1902,
'T',
154,
'T',
154,
'T',
154,
'T',
154,
'T',
9226,
'T',
9226,
'T',
9226,
'T',
154,
'T',
154,
'T',
154,
1906,
1907,
1908,
638,
639,
753,
81,
81,
'S',
5,
'C',
1908,
638,
639,
'C',
1907,
'T',
154,
'C',
1906,
'T',
154,
'C',
1901,
684,
'C',
1891,
1909,
1910,
1911,
1912,
1913,
81,
81,
81,
81,
81,
'C',
1913,
'T',
5199,
'T',
4235,
'T',
4236,
'T',
4237,
1914,
0,
1915,
1916,
1918,
1920,
81,
81,
81,
'C',
1920,
81,
81,
'C',
1918,
541,
'T',
5199,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
9226,
1921,
150,
1467,
553,
0,
1464,
684,
1921,
1844,
1844,
0,
799,
1922,
1841,
0,
1610,
1924,
1926,
1915,
1927,
1358,
1924,
1928,
1929,
1514,
1930,
753,
1931,
1933,
1934,
81,
1935,
81,
'S',
5,
81,
81,
'C',
1935,
81,
81,
'C',
1934,
81,
81,
'C',
1933,
1468,
81,
'C',
1931,
1936,
1937,
614,
1936,
'C',
1937,
90,
'C',
1930,
1938,
1939,
1940,
1941,
1942,
1943,
'T',
154,
'T',
3253,
'T',
3253,
'T',
205,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
1944,
1945,
1946,
1947,
1947,
1947,
1949,
1841,
1950,
60,
60,
60,
60,
1938,
1940,
1942,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
1950,
1951,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
1951,
'C',
1949,
638,
639,
81,
'C',
1947,
81,
'C',
1946,
'T',
154,
'T',
3253,
'T',
3253,
1952,
553,
553,
65,
1622,
799,
674,
1954,
1,
555,
1610,
799,
0,
1955,
1956,
81,
81,
1957,
81,
'C',
1957,
81,
81,
'C',
1956,
684,
'C',
1955,
1801,
'C',
1952,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
9226,
553,
1958,
1447,
1959,
1960,
1,
555,
1447,
1959,
1960,
555,
1610,
553,
1610,
0,
1961,
1071,
553,
1962,
1628,
1,
555,
555,
753,
1963,
81,
81,
'S',
5,
81,
'C',
1963,
1964,
81,
81,
'C',
1964,
'T',
154,
'T',
154,
'T',
7726,
'T',
9226,
'T',
9226,
553,
1610,
553,
1610,
1965,
1956,
0,
1071,
553,
1962,
555,
555,
1958,
1447,
1959,
1960,
555,
1447,
1959,
1960,
555,
753,
753,
1966,
1,
81,
1967,
'S',
5,
'S',
5,
'C',
1967,
1968,
81,
81,
'C',
1968,
'T',
154,
'T',
5114,
'T',
9226,
'T',
154,
'T',
9226,
'T',
43,
90,
90,
553,
150,
1467,
1969,
0,
1610,
0,
0,
1955,
1902,
0,
1955,
1956,
1956,
584,
1447,
1959,
614,
1447,
1959,
1970,
584,
753,
753,
60,
60,
60,
60,
60,
60,
1972,
1973,
1974,
1975,
1966,
81,
'S',
5,
81,
'S',
5,
'C',
1975,
614,
81,
'C',
1974,
81,
'C',
1973,
1468,
1841,
1451,
614,
555,
81,
'C',
1972,
1447,
1959,
1447,
1959,
1646,
1646,
81,
81,
81,
'C',
1970,
1976,
'C',
1976,
81,
'C',
1969,
560,
553,
'C',
1965,
1977,
609,
'C',
1961,
1978,
611,
'C',
1959,
1458,
1979,
1447,
60,
60,
81,
'C',
1979,
'C',
1958,
423,
60,
60,
60,
60,
'C',
1945,
'T',
205,
'C',
1944,
1980,
1981,
1982,
105,
1983,
1982,
1980,
1936,
'T',
5199,
1984,
150,
1467,
1356,
1357,
1358,
614,
584,
584,
1841,
0,
1986,
1914,
1987,
1227,
60,
1980,
1988,
'C',
1988,
1980,
1982,
1982,
1980,
1936,
'T',
43,
'T',
43,
'T',
43,
150,
1467,
1989,
1356,
1357,
1358,
614,
584,
584,
1841,
1990,
1990,
60,
60,
60,
81,
81,
'C',
1990,
104,
104,
104,
58,
58,
58,
'C',
1989,
'T',
4235,
'T',
4236,
'T',
4237,
1841,
81,
'C',
1986,
'T',
4235,
'T',
4236,
'T',
4237,
1986,
81,
'C',
1984,
'T',
4235,
'T',
4236,
'T',
4237,
150,
1467,
1841,
'C',
1983,
'C',
1981,
90,
'C',
1943,
1947,
'C',
1941,
1991,
'C',
1991,
1461,
1454,
1535,
'C',
1939,
1947,
'C',
1929,
'C',
1928,
432,
1992,
'C',
1992,
'C',
1927,
1359,
1360,
'C',
1926,
448,
797,
'C',
1924,
1993,
'C',
1922,
81,
'C',
1921,
'C',
1916,
'T',
9097,
1994,
1995,
60,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
1995,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4236,
595,
1996,
'C',
1996,
597,
81,
'C',
1994,
'T',
1482,
'T',
9102,
'T',
9104,
1997,
553,
150,
1467,
0,
61,
1998,
1999,
2000,
1,
1927,
1358,
553,
2001,
2000,
2002,
1999,
2003,
2004,
2005,
1999,
2006,
81,
2007,
81,
81,
'C',
2007,
'T',
9100,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
9103,
'T',
154,
'T',
9226,
'T',
9103,
'T',
9103,
'T',
9102,
1994,
1267,
1915,
0,
1311,
555,
555,
2008,
1841,
2010,
2008,
1841,
1841,
753,
81,
81,
2011,
81,
81,
81,
81,
81,
'S',
5,
81,
'C',
2011,
0,
2012,
'C',
2012,
81,
81,
'C',
2010,
658,
553,
560,
'C',
2008,
'C',
2006,
553,
61,
'C',
2004,
'C',
2003,
553,
61,
'C',
1997,
'T',
6962,
2009,
1,
2013,
'C',
2013,
90,
90,
'C',
1915,
1844,
'C',
1914,
684,
'C',
1912,
1236,
457,
456,
2014,
2016,
2017,
2018,
1246,
1246,
81,
81,
81,
'C',
2018,
'C',
2017,
'C',
2016,
2019,
2020,
1447,
2020,
2020,
1447,
2021,
1780,
2021,
2023,
1,
2024,
60,
60,
81,
81,
'C',
2024,
2026,
2026,
2027,
2026,
2028,
0,
1012,
2029,
'C',
2029,
2026,
2027,
2026,
2026,
2027,
2026,
'T',
43,
2030,
1476,
81,
'C',
2030,
90,
81,
81,
81,
81,
81,
81,
'C',
2028,
'T',
43,
1516,
703,
'C',
2021,
'T',
8740,
553,
2031,
1,
790,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
2020,
1447,
60,
60,
'C',
2019,
2032,
2033,
'C',
2033,
423,
60,
60,
81,
'C',
2032,
546,
60,
60,
'C',
2014,
'T',
8744,
2034,
2035,
'C',
2035,
425,
2036,
'C',
2036,
'C',
2034,
'T',
8734,
2037,
'C',
2037,
'T',
8732,
'C',
1911,
'T',
154,
'T',
9226,
553,
0,
1610,
2038,
2040,
753,
2041,
81,
'S',
5,
81,
81,
'C',
2041,
81,
81,
'C',
2040,
'T',
8038,
'C',
2038,
'T',
8290,
2042,
2015,
2022,
2043,
2044,
1,
2045,
2039,
2046,
1,
2047,
2048,
81,
'C',
2048,
2049,
2050,
81,
81,
'C',
2050,
2052,
'C',
2052,
'C',
2049,
438,
2053,
597,
81,
'C',
2053,
'C',
2047,
'T',
1496,
2054,
81,
'C',
2054,
104,
1269,
1273,
0,
1274,
1275,
81,
81,
2055,
81,
'C',
2055,
0,
1311,
2056,
'C',
2056,
0,
2057,
'C',
2057,
2058,
2058,
81,
81,
81,
81,
1293,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
2058,
2059,
81,
1293,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
2059,
2060,
1300,
'C',
2045,
'T',
8732,
2052,
2061,
'C',
2061,
'T',
1474,
'C',
1910,
'T',
154,
'T',
9226,
0,
1610,
1267,
2062,
753,
2063,
81,
'S',
5,
81,
'C',
2063,
81,
81,
'C',
2062,
'T',
1480,
'T',
8038,
'T',
9054,
0,
2064,
2065,
'C',
2065,
2062,
81,
81,
'C',
2064,
'T',
8038,
555,
2066,
2064,
2066,
81,
81,
81,
81,
81,
81,
'C',
2066,
'C',
1909,
'T',
154,
'T',
9226,
557,
560,
0,
1622,
2067,
753,
2068,
81,
'S',
5,
81,
'C',
2068,
81,
81,
'C',
2067,
'T',
210,
2069,
2054,
2064,
81,
'C',
2069,
'T',
6962,
1997,
2009,
2013,
2070,
1841,
2066,
81,
81,
81,
81,
81,
81,
81,
'C',
2070,
'T',
43,
1505,
81,
'C',
1890,
541,
555,
0,
1896,
81,
2071,
'C',
2071,
2072,
81,
'C',
2072,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1269,
1273,
1274,
1275,
1522,
81,
81,
'C',
1881,
2073,
81,
81,
81,
'C',
2073,
2074,
2075,
1480,
81,
'C',
2075,
2076,
614,
614,
564,
'C',
2076,
614,
2077,
0,
1986,
2077,
614,
2078,
'C',
2078,
2077,
81,
81,
'C',
2077,
1451,
'C',
2074,
2079,
1,
2080,
2081,
107,
81,
'C',
2081,
'C',
2080,
2082,
2083,
'C',
2083,
2084,
2085,
2086,
2087,
2088,
652,
2087,
2088,
2087,
2089,
2087,
2090,
2087,
2091,
2087,
2082,
2083,
2087,
90,
2082,
2083,
2082,
2083,
584,
60,
'C',
2091,
2092,
293,
2093,
'C',
2093,
700,
700,
701,
2094,
236,
'C',
2094,
104,
5,
81,
81,
81,
81,
'C',
2092,
'C',
2090,
2092,
293,
2095,
'C',
2095,
700,
700,
701,
2094,
266,
'C',
2089,
2092,
293,
2096,
'C',
2096,
700,
700,
701,
2094,
263,
'C',
2088,
293,
647,
'C',
2087,
2082,
2097,
2098,
'C',
2098,
5,
8,
'C',
2097,
5,
8,
'C',
2086,
2092,
5,
8,
'C',
2085,
5,
8,
'C',
2084,
5,
8,
'C',
2082,
638,
639,
'C',
1880,
1872,
'C',
1879,
2099,
'C',
2099,
'T',
154,
'T',
9226,
'T',
3824,
753,
81,
'S',
5,
'C',
1878,
2100,
'C',
2100,
'T',
154,
'T',
9226,
'T',
3822,
753,
81,
'S',
5,
'C',
1877,
2101,
'C',
2101,
'T',
154,
'T',
9226,
'T',
3820,
2102,
753,
81,
'S',
5,
'C',
2102,
2103,
2104,
2105,
81,
'C',
2105,
541,
1260,
'C',
2104,
2106,
2107,
2108,
'C',
2108,
'T',
43,
2109,
555,
2066,
81,
81,
'C',
2109,
'T',
3947,
81,
81,
'C',
2107,
'T',
1474,
2064,
81,
'C',
2106,
2110,
2112,
2042,
2113,
'C',
2113,
'T',
1472,
2114,
'C',
2114,
'C',
2110,
2115,
'C',
2115,
1461,
1454,
'C',
2103,
541,
2116,
2111,
1,
81,
'C',
2116,
546,
60,
60,
'C',
1876,
2117,
'C',
2117,
2118,
81,
'C',
2118,
'T',
1480,
0,
2119,
'C',
2119,
'T',
6968,
81,
'C',
1875,
2120,
'C',
2120,
2121,
81,
'C',
2121,
1841,
2066,
81,
81,
'C',
1874,
1554,
'C',
1873,
2122,
90,
2123,
1435,
1437,
1396,
1515,
1,
2124,
'C',
2124,
90,
553,
1518,
'C',
2122,
'C',
1872,
541,
2125,
81,
'C',
2125,
2126,
2127,
81,
'C',
2127,
2129,
2130,
81,
81,
'C',
2130,
2131,
81,
'C',
2131,
1915,
1066,
1915,
2122,
'C',
2129,
2132,
'C',
2132,
1353,
1895,
81,
'C',
2126,
1919,
1515,
2133,
2128,
1,
2134,
81,
'C',
2134,
2135,
81,
'C',
2135,
2136,
'C',
2136,
555,
81,
81,
'C',
2133,
150,
1467,
90,
150,
1467,
553,
1518,
'C',
1871,
541,
2103,
1401,
2137,
1917,
2043,
2138,
2139,
2140,
81,
'C',
2140,
2141,
2106,
2142,
'C',
2142,
555,
81,
81,
'C',
2141,
555,
81,
81,
'C',
2139,
2143,
81,
'C',
2143,
2144,
2145,
'C',
2145,
'T',
1472,
2146,
'C',
2146,
'T',
3947,
2114,
2147,
2064,
1997,
2069,
81,
'C',
2147,
'T',
8038,
'T',
8038,
2147,
555,
81,
81,
'C',
2144,
'T',
1474,
2148,
'C',
2148,
'C',
2138,
2149,
2150,
'C',
2150,
2151,
2152,
81,
'C',
2152,
'T',
2683,
'T',
3947,
2147,
2069,
2153,
'C',
2153,
'T',
1472,
2154,
81,
'C',
2154,
'T',
1476,
81,
'C',
2151,
'T',
8269,
'T',
3947,
2155,
2061,
2147,
2069,
81,
'C',
2155,
'T',
43,
'T',
1480,
0,
2156,
'C',
2156,
2157,
81,
'C',
2157,
2155,
'C',
2149,
'T',
8038,
'T',
9054,
'C',
1870,
530,
'C',
1869,
530,
'C',
1868,
530,
'C',
1867,
530,
'C',
1866,
530,
'C',
1865,
553,
553,
553,
150,
1467,
'C',
1863,
1993,
541,
2158,
'C',
2158,
2159,
2161,
2162,
2163,
2164,
2165,
2161,
'C',
2165,
159,
164,
0,
1188,
1189,
167,
2167,
'C',
2167,
453,
796,
445,
444,
2168,
1197,
2049,
2170,
1,
553,
2171,
2172,
2173,
1366,
2173,
1366,
2174,
1197,
2175,
203,
1199,
81,
60,
'C',
2175,
674,
2176,
597,
81,
81,
'C',
2176,
1251,
1252,
81,
'C',
2174,
0,
2178,
621,
2179,
81,
'C',
2179,
2180,
81,
'C',
2180,
81,
'C',
2178,
2181,
0,
621,
2183,
'C',
2183,
621,
2184,
2185,
81,
81,
'C',
2185,
1020,
597,
81,
'C',
2184,
530,
'T',
12501,
'T',
12538,
533,
1007,
597,
'C',
2181,
530,
2186,
1195,
196,
'C',
2173,
81,
'C',
2172,
2177,
1,
555,
90,
2187,
'C',
2187,
1251,
1252,
81,
'C',
2171,
81,
'C',
2168,
159,
164,
0,
1188,
1189,
167,
2188,
'C',
2188,
2189,
9,
2191,
'T',
154,
'T',
154,
'T',
9226,
'T',
154,
'T',
154,
'T',
9226,
454,
795,
2192,
454,
795,
423,
2193,
2194,
454,
795,
2195,
2196,
2197,
2195,
2196,
454,
795,
2195,
2198,
2198,
2198,
2198,
2197,
61,
2190,
1,
2199,
2200,
2201,
2190,
2199,
2200,
2201,
2190,
2199,
2200,
2201,
2202,
2190,
2199,
2200,
2201,
2202,
61,
2203,
889,
2204,
2205,
2206,
2205,
2203,
2207,
2205,
2207,
2204,
2205,
435,
2208,
1,
2209,
434,
2210,
1,
2211,
2212,
2213,
2214,
2215,
2216,
61,
889,
2205,
203,
2203,
2205,
2217,
1,
2218,
2219,
2190,
284,
2220,
2204,
2205,
1199,
753,
753,
2217,
60,
60,
60,
60,
1447,
60,
60,
60,
60,
60,
60,
2221,
1,
81,
2221,
81,
2222,
1,
441,
2223,
1,
60,
1447,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'S',
5,
81,
'S',
5,
'C',
2220,
'C',
2219,
'C',
2218,
61,
2224,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
2224,
'T',
154,
'T',
154,
2226,
2227,
'C',
2227,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13715,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
751,
5,
8,
752,
752,
60,
81,
81,
81,
'C',
2226,
81,
'C',
2216,
2228,
81,
'C',
2228,
'C',
2215,
2229,
'C',
2229,
'C',
2214,
428,
2230,
'C',
2230,
'C',
2213,
2231,
6,
'C',
2231,
81,
'C',
2212,
553,
555,
799,
284,
2232,
81,
'C',
2232,
'C',
2211,
2233,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
2233,
'T',
205,
1947,
81,
'C',
2209,
2234,
81,
81,
81,
81,
'C',
2234,
1947,
'C',
2207,
2235,
105,
'C',
2235,
'C',
2206,
'C',
2205,
'C',
2204,
'C',
2203,
'C',
2202,
5,
8,
'C',
2201,
5,
8,
'C',
2200,
5,
8,
'C',
2199,
2189,
284,
'C',
2198,
'C',
2197,
'C',
2196,
'C',
2195,
'C',
2194,
2236,
'C',
2236,
'C',
2193,
2237,
60,
'C',
2237,
60,
60,
60,
60,
'C',
2192,
2218,
2238,
'C',
2238,
'C',
2191,
'C',
2164,
2239,
1,
2240,
'C',
2240,
90,
90,
90,
'C',
2163,
1499,
541,
'T',
4325,
2241,
2242,
2243,
2244,
0,
1810,
0,
1810,
2245,
1487,
2246,
1,
81,
2247,
1811,
81,
1813,
2248,
1811,
81,
2249,
1,
81,
'C',
2248,
2250,
81,
'C',
2250,
159,
164,
0,
1188,
1189,
167,
2251,
'C',
2251,
834,
834,
834,
834,
2252,
203,
1199,
81,
2253,
1,
81,
81,
2253,
81,
81,
2253,
81,
81,
2253,
81,
'C',
2252,
'T',
154,
'T',
9226,
'T',
3826,
2254,
753,
81,
'S',
5,
'C',
2254,
2255,
2255,
'C',
2255,
1254,
'C',
2247,
2256,
'C',
2256,
159,
164,
0,
1188,
1189,
167,
2257,
'C',
2257,
'T',
3849,
2258,
1197,
834,
2259,
203,
1199,
81,
81,
81,
'C',
2259,
1927,
1358,
'C',
2258,
159,
164,
0,
1188,
1189,
167,
2260,
'C',
2260,
'T',
3849,
834,
2261,
203,
1199,
81,
81,
81,
'C',
2261,
'T',
154,
'T',
9226,
'T',
3828,
2262,
753,
81,
'S',
5,
'C',
2262,
2263,
'C',
2263,
1066,
1066,
'C',
2245,
541,
2264,
834,
834,
834,
834,
2252,
81,
'C',
2264,
2265,
'C',
2244,
0,
2266,
2268,
'C',
2268,
2269,
'C',
2269,
0,
1188,
1189,
191,
2270,
2271,
2272,
'C',
2272,
530,
530,
1194,
196,
0,
2273,
1197,
1194,
196,
0,
2273,
1197,
1197,
2274,
2276,
2277,
2277,
2278,
2277,
2277,
244,
2279,
2280,
1,
2281,
81,
81,
81,
'C',
2281,
159,
164,
0,
1188,
1189,
167,
2282,
'C',
2282,
2283,
2285,
1197,
1256,
203,
1199,
2283,
0,
2286,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
2286,
2287,
81,
'C',
2287,
'T',
5965,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
7609,
'T',
5965,
1320,
842,
842,
553,
775,
775,
555,
2288,
2289,
1,
555,
2288,
81,
'C',
2285,
0,
2290,
'C',
2290,
2292,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
2292,
159,
164,
0,
1188,
1189,
167,
2293,
'C',
2293,
530,
2294,
104,
1236,
2296,
2296,
2296,
1246,
0,
340,
2298,
1,
2299,
1148,
1148,
2301,
1197,
1194,
196,
0,
2303,
0,
2303,
0,
2303,
1197,
104,
2304,
1236,
2305,
2305,
2306,
1246,
203,
1199,
81,
0,
2307,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
2308,
2309,
2310,
81,
81,
'C',
2310,
2311,
1256,
81,
'C',
2311,
'C',
2309,
621,
2184,
81,
'C',
2308,
530,
'T',
12281,
621,
1008,
2184,
'S',
15,
'S',
15,
81,
'C',
2307,
2312,
81,
113,
105,
105,
105,
105,
105,
'C',
2312,
159,
164,
0,
1188,
1189,
167,
2313,
'C',
2313,
0,
2314,
2315,
1197,
104,
0,
2314,
2315,
203,
1199,
2316,
81,
2317,
81,
81,
'C',
2317,
128,
81,
'C',
2316,
159,
164,
0,
1188,
1189,
167,
2318,
'C',
2318,
2319,
1197,
1197,
203,
1199,
81,
'C',
2319,
'C',
2315,
1236,
1246,
1246,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
2314,
2295,
1,
'C',
2306,
2320,
'C',
2320,
'C',
2305,
1158,
2321,
'C',
2321,
2322,
2323,
2322,
2324,
'C',
2324,
597,
597,
81,
81,
'C',
2323,
2325,
2326,
2325,
2327,
2328,
2329,
2331,
1,
81,
81,
'C',
2329,
'T',
12742,
'C',
2328,
2330,
2332,
1,
2330,
81,
81,
81,
81,
'C',
2327,
2330,
2329,
2333,
81,
'C',
2333,
0,
1012,
81,
2334,
'C',
2334,
'T',
12736,
'C',
2326,
2335,
2327,
'C',
2335,
2336,
2337,
'T',
7643,
0,
2338,
2339,
2336,
'C',
2339,
'T',
12709,
'C',
2338,
'T',
12490,
2340,
'C',
2340,
'C',
2337,
196,
993,
'C',
2325,
81,
81,
'C',
2322,
2336,
530,
196,
'C',
2304,
2295,
'C',
2303,
2341,
2342,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
2342,
'T',
12666,
'C',
2341,
2344,
2343,
2275,
1,
'C',
2301,
159,
164,
0,
1188,
1189,
167,
81,
2345,
'C',
2345,
'T',
41,
2346,
1125,
1148,
2347,
2348,
1197,
203,
1158,
1166,
1197,
1199,
56,
2349,
'S',
16,
81,
81,
81,
'C',
2349,
56,
81,
'C',
2348,
1149,
'T',
3850,
2181,
0,
1152,
2350,
'C',
2350,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
1158,
2302,
1,
2185,
104,
133,
2184,
104,
133,
2184,
81,
81,
81,
81,
81,
81,
'C',
2347,
'C',
2346,
915,
914,
915,
'S',
2,
529,
'C',
2299,
1148,
81,
'C',
2296,
1125,
2300,
2275,
2351,
'C',
2351,
1149,
'T',
12498,
'T',
3850,
2352,
0,
1152,
113,
105,
105,
105,
105,
105,
81,
105,
2354,
'C',
2354,
2305,
'C',
2352,
2355,
185,
1,
2356,
185,
81,
81,
81,
81,
81,
'C',
2294,
2171,
2295,
'C',
2279,
159,
164,
0,
1188,
1189,
167,
2357,
'C',
2357,
2358,
2360,
2361,
1197,
1256,
203,
1199,
2358,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
2361,
2363,
'C',
2363,
159,
164,
0,
1188,
1189,
167,
2365,
'C',
2365,
2283,
2366,
1197,
293,
647,
648,
104,
203,
1199,
104,
1796,
81,
0,
2368,
81,
'C',
2368,
2369,
81,
'C',
2369,
293,
647,
648,
'C',
2366,
159,
164,
0,
1188,
1189,
167,
2370,
'C',
2370,
1499,
2371,
827,
962,
293,
2372,
1486,
1197,
203,
1199,
104,
1796,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
2372,
'T',
13710,
700,
701,
235,
'C',
2371,
845,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
2360,
2373,
'C',
2373,
2367,
2362,
2364,
1,
2374,
'C',
2374,
90,
90,
'C',
2278,
'T',
12434,
'T',
12441,
533,
1016,
81,
'C',
2277,
'T',
12444,
991,
'C',
2276,
'T',
12434,
'T',
12438,
2375,
0,
1101,
81,
113,
105,
105,
105,
105,
105,
81,
105,
2376,
'C',
2376,
2377,
'C',
2377,
'T',
12431,
0,
1012,
81,
2378,
'C',
2378,
2379,
'C',
2379,
'S',
2,
529,
'C',
2375,
'C',
2274,
0,
2380,
2343,
2381,
'C',
2381,
'T',
4235,
2382,
2332,
'C',
2273,
530,
1380,
1,
1194,
196,
2383,
1372,
'C',
2383,
2384,
81,
'C',
2384,
2385,
2386,
'C',
2386,
81,
81,
'C',
2385,
593,
'C',
2271,
'T',
12426,
81,
'C',
2270,
'T',
12416,
'T',
12419,
'T',
12422,
2352,
0,
0,
0,
2387,
81,
2388,
81,
2389,
81,
'C',
2389,
2390,
'C',
2390,
530,
'T',
12445,
196,
2377,
81,
'C',
2388,
2391,
'C',
2391,
2377,
'C',
2387,
2392,
'C',
2392,
2377,
'C',
2266,
2393,
2393,
553,
555,
81,
'C',
2243,
530,
'C',
2242,
2394,
1515,
2395,
'C',
2395,
150,
1467,
553,
1518,
'C',
2241,
1549,
2396,
'C',
2396,
1758,
541,
0,
2397,
2398,
81,
'C',
2398,
2399,
81,
'C',
2399,
541,
2400,
1307,
1383,
'C',
2400,
0,
1311,
2402,
'C',
2402,
0,
2403,
'C',
2403,
'T',
154,
'T',
154,
'T',
9226,
889,
1447,
2404,
1447,
2404,
2405,
1441,
2406,
1441,
2407,
2409,
1441,
2407,
2410,
1441,
2411,
1441,
2412,
1441,
2413,
1441,
1447,
2404,
2414,
2415,
1441,
753,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
244,
81,
571,
569,
81,
569,
81,
569,
81,
569,
81,
569,
81,
569,
81,
569,
81,
571,
81,
571,
'S',
5,
81,
'C',
2407,
'C',
2404,
1447,
60,
60,
'C',
2397,
530,
'C',
2162,
2169,
2166,
1,
546,
60,
60,
'C',
1668,
553,
'C',
1656,
90,
90,
'C',
2416,
'C',
2417,
2418,
2419,
1293,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
2418,
2060,
'C',
2420,
'C',
2421,
'C',
2422,
2423,
'C',
2423,
2424,
'C',
2424,
1383,
'C',
2425,
2426,
'C',
2426,
1386,
81,
'C',
2427,
1408,
2428,
2429,
2430,
'C',
2430,
1269,
1273,
1274,
1275,
81,
'C',
2429,
'T',
7318,
'T',
7310,
614,
1212,
790,
81,
81,
'C',
2428,
614,
2431,
'C',
2431,
0,
1012,
1212,
2432,
2433,
'C',
2433,
2434,
'C',
2434,
'T',
7318,
1451,
1212,
790,
'C',
2432,
'T',
154,
'T',
7318,
'T',
9226,
'T',
43,
'T',
7310,
1212,
753,
'S',
5,
'C',
2435,
'T',
4192,
2436,
81,
81,
'C',
2436,
81,
'C',
2437,
2438,
2439,
81,
'C',
2438,
2440,
1563,
81,
'C',
2441,
'C',
2442,
'C',
2443,
'C',
2444,
'C',
2445,
2446,
'C',
2446,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2447,
2449,
1,
'C',
2447,
'T',
212,
'C',
2450,
2030,
2451,
'C',
2452,
1836,
1842,
1842,
1842,
1836,
1836,
1836,
1836,
1836,
1836,
1836,
1836,
'C',
2453,
2454,
2454,
2454,
2454,
1842,
'C',
2454,
'C',
2455,
562,
2456,
2456,
2457,
2458,
2456,
1837,
562,
1837,
77,
113,
105,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
77,
113,
105,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
'C',
2458,
562,
77,
113,
105,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
105,
1837,
81,
'C',
2457,
'T',
8390,
'C',
2456,
851,
'C',
2459,
562,
77,
113,
105,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
1833,
'C',
2460,
2461,
1827,
104,
81,
81,
81,
81,
81,
81,
'C',
2461,
'T',
43,
81,
'C',
2462,
'C',
2463,
'C',
2464,
'T',
212,
562,
562,
1837,
77,
113,
105,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
77,
113,
105,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
81,
1837,
'C',
2465,
562,
77,
113,
105,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
81,
1833,
'C',
2466,
'C',
2467,
1827,
104,
81,
81,
81,
81,
81,
81,
81,
'C',
2468,
'C',
2469,
2470,
2470,
2470,
2470,
105,
'C',
2470,
'C',
2471,
'T',
8390,
'T',
8390,
562,
2457,
2472,
2458,
1837,
562,
703,
562,
2458,
562,
2473,
1837,
1837,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
77,
113,
105,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
'C',
2472,
'T',
8390,
'C',
2473,
562,
'C',
2474,
2475,
1827,
104,
81,
81,
81,
'C',
2475,
851,
'C',
2476,
'T',
10071,
'C',
2477,
'T',
10070,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
2478,
'T',
10068,
'T',
10069,
851,
851,
2457,
2458,
851,
1837,
1837,
'C',
2479,
562,
77,
113,
105,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
'C',
2480,
1827,
104,
81,
81,
81,
'C',
2481,
'C',
2482,
2483,
2483,
2483,
2483,
'C',
2483,
'C',
2484,
562,
77,
113,
105,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
'C',
2485,
2486,
1837,
562,
1837,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
2486,
851,
'C',
2487,
2488,
1827,
104,
81,
81,
81,
81,
'C',
2488,
851,
'C',
2489,
'C',
2490,
2491,
2491,
2491,
2491,
'C',
2491,
'C',
2492,
562,
2488,
2488,
2457,
2458,
2488,
1837,
562,
1837,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
2493,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
2494,
562,
562,
77,
113,
105,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
105,
1833,
1837,
1833,
1837,
1833,
1837,
1833,
1837,
1833,
'C',
2495,
'C',
2496,
'C',
2497,
2446,
'C',
2498,
1516,
703,
'C',
2499,
2079,
2082,
2080,
2080,
2080,
2080,
2080,
2500,
1,
81,
107,
81,
107,
81,
'C',
2501,
2502,
1,
2503,
2504,
2505,
2505,
2505,
2506,
81,
81,
'C',
2506,
2507,
2509,
2372,
'C',
2509,
'C',
2507,
293,
'C',
2505,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
9959,
2504,
2504,
2504,
2510,
2504,
2511,
2504,
2512,
2504,
962,
2513,
2514,
2504,
2513,
2514,
2504,
2513,
2515,
2504,
2513,
2516,
2504,
2513,
2517,
2504,
2513,
2505,
2504,
2513,
0,
6,
2518,
'C',
2518,
2505,
2505,
'C',
2517,
'T',
3249,
'T',
3250,
2519,
647,
2520,
'C',
2520,
2521,
5,
8,
81,
'C',
2521,
'T',
154,
'T',
4235,
'T',
3253,
2522,
2523,
597,
'C',
2523,
2524,
698,
'C',
2524,
2525,
749,
'C',
2525,
696,
'C',
2522,
'T',
154,
'T',
154,
2526,
749,
749,
597,
'C',
2526,
2525,
749,
'C',
2519,
2523,
'C',
2516,
'T',
3249,
'T',
3250,
2519,
647,
2520,
'C',
2515,
'T',
3249,
'T',
3250,
2519,
647,
2520,
'C',
2514,
2520,
'C',
2513,
2504,
2504,
2527,
2504,
2528,
'C',
2528,
2520,
5,
8,
2529,
'C',
2527,
2520,
5,
8,
'C',
2512,
2520,
5,
8,
'C',
2511,
2520,
5,
8,
'C',
2510,
2519,
2520,
5,
8,
'C',
2504,
2530,
'C',
2530,
2523,
81,
'C',
2503,
2531,
2532,
2508,
22,
2533,
284,
293,
647,
'C',
2533,
696,
'C',
2534,
2502,
2503,
2504,
2505,
2506,
'C',
2535,
2079,
2080,
2080,
1485,
107,
81,
'C',
2536,
2502,
2503,
2505,
2505,
2506,
'C',
2537,
962,
293,
2372,
81,
'C',
2538,
293,
647,
652,
'C',
2539,
2502,
2503,
2505,
2506,
'C',
2540,
61,
2541,
1813,
'C',
2542,
61,
2541,
'C',
2543,
'T',
154,
'T',
3253,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
2544,
104,
107,
2500,
2500,
104,
107,
81,
81,
81,
81,
81,
81,
81,
'C',
2545,
'T',
3849,
'T',
3849,
2544,
1485,
104,
107,
104,
107,
81,
81,
81,
'C',
2546,
90,
2541,
'C',
2544,
2538,
704,
2249,
'C',
2541,
1045,
2537,
'C',
2547,
104,
81,
81,
'C',
2548,
104,
81,
'C',
2549,
'C',
2550,
1516,
703,
'C',
2551,
'T',
212,
'C',
2552,
1516,
703,
'C',
2553,
'C',
2554,
2555,
'C',
2555,
1737,
81,
81,
81,
'C',
2556,
2557,
104,
'C',
2557,
2559,
104,
'C',
2559,
'T',
212,
'T',
5633,
2560,
81,
81,
81,
'C',
2560,
2561,
'C',
2561,
'T',
15078,
1146,
1147,
1210,
2562,
2563,
334,
81,
'C',
2563,
553,
555,
555,
334,
'C',
2562,
641,
'C',
2564,
2565,
81,
'C',
2565,
'C',
2566,
'C',
2567,
1366,
60,
81,
81,
'C',
2568,
2569,
81,
81,
'C',
2569,
2571,
81,
81,
'C',
2571,
1646,
60,
60,
'C',
2573,
2446,
2574,
2446,
60,
113,
'C',
2574,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
212,
'C',
2575,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
2576,
2578,
'S',
5,
'S',
5,
'C',
2578,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
43,
'C',
2576,
'T',
154,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
2448,
'C',
2579,
'C',
2580,
2557,
'C',
2581,
1366,
60,
81,
81,
'C',
2582,
2583,
81,
'C',
2583,
2584,
81,
'C',
2584,
2280,
81,
'C',
2585,
'C',
2586,
'C',
2587,
2588,
'C',
2588,
1400,
81,
'C',
2589,
2590,
'C',
2590,
'T',
8038,
2048,
2591,
2047,
81,
'C',
2591,
2592,
2593,
2594,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
2594,
2595,
2596,
81,
'C',
2596,
2597,
81,
'C',
2597,
'T',
8732,
2052,
2153,
'C',
2595,
2598,
2599,
'C',
2599,
2600,
'C',
2600,
'T',
8732,
2052,
2061,
'C',
2598,
81,
'C',
2593,
'T',
43,
2052,
'C',
2592,
2038,
81,
'C',
2601,
'C',
2602,
2603,
2604,
1,
2605,
'C',
2605,
'T',
1484,
'T',
43,
'T',
43,
'T',
43,
'T',
1480,
'T',
1484,
'T',
6173,
'T',
210,
2606,
2054,
2069,
2054,
2064,
81,
81,
81,
81,
81,
'C',
2606,
'C',
2607,
'C',
2608,
2154,
'C',
2609,
2610,
104,
81,
81,
'C',
2610,
2612,
'C',
2612,
2613,
2614,
5,
8,
81,
81,
'C',
2614,
81,
'C',
2615,
'C',
2616,
0,
1311,
81,
81,
2617,
'C',
2617,
0,
2618,
'C',
2618,
2619,
81,
81,
81,
'C',
2619,
790,
'C',
2620,
'C',
2621,
'C',
2622,
'T',
838,
81,
'C',
2623,
'C',
2624,
'T',
1480,
'C',
2625,
'C',
2626,
'C',
2627,
'C',
2628,
'C',
2629,
'C',
2630,
2631,
1,
81,
'C',
2632,
'T',
154,
'T',
9226,
'T',
9103,
'T',
9103,
555,
2633,
2634,
753,
'S',
5,
81,
81,
'C',
2634,
'T',
43,
'T',
43,
'T',
43,
1832,
1832,
2635,
1990,
1990,
81,
'C',
2635,
'C',
2633,
2009,
2013,
1832,
1832,
'C',
2636,
'C',
2637,
0,
1311,
81,
2638,
'C',
2638,
0,
2639,
'C',
2639,
'T',
6966,
'T',
6964,
'T',
154,
'T',
9226,
'T',
9097,
790,
889,
2640,
1,
2641,
2642,
790,
790,
1923,
2643,
2044,
2644,
790,
2645,
1650,
2646,
2647,
2648,
2649,
2646,
2650,
0,
1961,
1071,
790,
2651,
2010,
799,
753,
60,
60,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
2652,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
81,
81,
81,
81,
'S',
5,
81,
'C',
2652,
'T',
9097,
81,
81,
'C',
2651,
2653,
2654,
2655,
2656,
1417,
1417,
2657,
2658,
81,
81,
2653,
113,
105,
'C',
2658,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
3253,
'T',
3253,
2659,
2659,
2660,
2154,
2656,
81,
81,
81,
81,
81,
'S',
5,
'C',
2660,
'T',
4235,
'T',
4236,
'T',
4237,
2114,
584,
2070,
2656,
2660,
81,
81,
81,
'C',
2659,
'T',
4235,
'T',
4236,
'T',
4237,
1212,
1841,
2148,
2659,
2656,
81,
81,
81,
'C',
2657,
'C',
2656,
1841,
81,
'C',
2655,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'S',
5,
'C',
2654,
2009,
2013,
'C',
2650,
2661,
2662,
1,
'C',
2661,
'C',
2649,
2663,
2665,
2656,
'C',
2665,
'C',
2663,
2665,
2665,
'C',
2648,
'T',
43,
2656,
'C',
2647,
'T',
43,
'C',
2646,
2633,
'C',
2645,
2656,
'C',
2644,
2653,
2666,
105,
2667,
2666,
81,
423,
60,
60,
60,
60,
81,
'C',
2667,
'C',
2642,
'C',
2641,
2668,
2669,
2668,
2668,
'T',
6177,
'T',
4905,
'T',
4905,
1461,
1454,
1535,
2670,
2671,
2672,
2673,
2672,
2673,
790,
2670,
2670,
2668,
81,
81,
81,
81,
'C',
2673,
2665,
2674,
2675,
2676,
'C',
2676,
423,
423,
2677,
60,
60,
60,
60,
60,
60,
60,
60,
81,
'C',
2677,
2678,
2679,
2680,
2680,
2680,
2680,
423,
60,
60,
60,
60,
2678,
'C',
2680,
2678,
2678,
'C',
2679,
1461,
'C',
2675,
2681,
'C',
2681,
2682,
81,
'C',
2682,
'C',
2674,
1461,
1454,
2682,
'C',
2672,
'C',
2671,
'T',
43,
'T',
1502,
'T',
1502,
'T',
1502,
81,
81,
81,
81,
'C',
2670,
1651,
1651,
423,
60,
60,
60,
60,
'S',
5,
'S',
5,
'C',
2669,
1461,
1454,
'C',
2683,
799,
'C',
2684,
799,
'C',
2685,
'C',
2686,
'C',
2687,
0,
1311,
2688,
'C',
2688,
0,
2689,
'C',
2689,
'T',
6966,
'T',
4905,
790,
790,
790,
1923,
2690,
790,
790,
2648,
0,
1961,
1071,
2651,
81,
81,
2691,
81,
81,
81,
'C',
2691,
'T',
9097,
81,
'C',
2690,
2653,
2660,
'C',
2692,
2059,
2419,
'C',
2693,
'C',
2694,
2695,
104,
81,
81,
81,
'C',
2696,
2557,
104,
104,
2557,
104,
81,
81,
'C',
2697,
2698,
'C',
2699,
1516,
703,
834,
'C',
2700,
1469,
'C',
2701,
1472,
'C',
2702,
'T',
582,
'C',
2703,
2704,
2705,
2706,
2707,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
2707,
674,
2708,
'C',
2708,
'C',
2706,
'T',
8744,
'T',
8744,
2709,
'C',
2709,
2710,
81,
'C',
2710,
'C',
2705,
'T',
8732,
'T',
8732,
2052,
81,
81,
81,
'C',
2704,
430,
2711,
2712,
2713,
1,
60,
60,
'C',
2711,
'C',
2714,
1457,
2715,
'C',
2716,
2717,
2714,
'C',
2717,
2718,
2719,
2720,
'C',
2720,
1447,
1447,
60,
60,
60,
60,
'C',
2719,
1461,
1454,
2681,
'C',
2718,
2721,
2723,
2724,
81,
'C',
2724,
'C',
2723,
2674,
'C',
2721,
1461,
2722,
1,
2725,
'C',
2725,
'C',
2726,
2727,
1446,
2728,
2729,
2730,
2705,
2706,
2707,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
2730,
430,
2731,
2732,
2713,
'C',
2731,
'C',
2729,
'C',
2728,
1461,
1454,
1535,
2733,
'C',
2733,
'C',
2727,
1447,
60,
60,
'C',
2734,
'C',
2735,
2706,
'C',
2736,
'T',
1474,
2148,
'C',
2715,
'T',
8740,
'C',
2737,
2738,
81,
'C',
2738,
2723,
2739,
'C',
2739,
'C',
2740,
2741,
'C',
2741,
0,
2743,
2744,
2745,
'C',
2745,
'T',
212,
81,
'C',
2744,
'C',
2743,
638,
639,
638,
639,
60,
'C',
2746,
60,
81,
'C',
2747,
2748,
2748,
2748,
2748,
104,
81,
81,
81,
81,
'C',
2748,
1461,
2722,
'C',
2749,
60,
81,
'C',
2750,
2751,
81,
'C',
2751,
2752,
81,
'C',
2752,
2753,
'C',
2753,
1461,
1459,
'C',
2754,
2741,
'C',
2755,
'C',
2756,
104,
60,
60,
60,
'C',
2757,
'C',
2758,
835,
104,
81,
81,
'C',
2759,
2557,
104,
81,
'C',
2760,
'C',
2761,
1453,
1455,
2405,
81,
'C',
2762,
1453,
1455,
2409,
81,
'C',
2763,
1453,
1455,
2412,
81,
'C',
2764,
1453,
1455,
2414,
81,
'C',
2765,
1453,
1455,
1456,
2406,
81,
'C',
2766,
1453,
1455,
2413,
81,
'C',
2767,
1453,
1455,
1456,
2410,
81,
'C',
2768,
1453,
1455,
2411,
81,
'C',
2769,
'C',
2770,
'C',
2771,
1356,
1357,
'C',
2772,
'C',
2773,
'C',
2774,
889,
'C',
2775,
'C',
2419,
2776,
81,
'C',
2777,
'C',
2778,
'C',
2779,
'T',
838,
'C',
2780,
'C',
2781,
'C',
2782,
81,
81,
'C',
2783,
1290,
'C',
2784,
1706,
'C',
2785,
2786,
2787,
2788,
2789,
81,
81,
'C',
2789,
'T',
7606,
1706,
'C',
2786,
2790,
611,
'C',
2791,
2785,
'C',
2792,
2793,
2794,
'C',
2795,
'C',
2796,
2797,
'C',
2797,
1582,
1582,
'T',
43,
614,
1212,
'C',
2798,
'T',
5277,
2799,
2800,
81,
'C',
2800,
753,
'C',
2802,
'T',
5254,
'T',
5275,
1353,
1609,
'C',
2803,
'C',
2804,
0,
2805,
2807,
'C',
2807,
'T',
5263,
81,
81,
'C',
2805,
'C',
2808,
0,
2805,
2809,
'C',
2809,
'T',
5261,
81,
81,
'C',
2810,
'C',
2811,
'C',
2812,
'C',
2813,
0,
2814,
'C',
2814,
'T',
1543,
'T',
1544,
81,
'C',
2815,
'C',
2816,
'C',
2817,
'C',
2818,
'T',
1543,
'T',
1560,
'C',
2819,
'T',
1543,
'T',
1562,
2810,
81,
'C',
2820,
'T',
1542,
'T',
1543,
'T',
3873,
2796,
81,
'C',
2821,
2798,
'C',
2439,
'T',
1542,
'T',
1543,
'T',
208,
81,
'C',
2440,
'T',
1542,
'T',
1543,
'T',
208,
2811,
81,
'C',
2822,
'C',
2823,
2824,
2806,
1556,
1606,
'C',
2825,
'T',
838,
'C',
2826,
2827,
81,
'C',
2827,
'T',
1542,
'T',
1542,
'T',
838,
553,
555,
555,
835,
81,
81,
58,
58,
'C',
2828,
2829,
2830,
1917,
2831,
'C',
2831,
2149,
'C',
2832,
'C',
2833,
2834,
'C',
2834,
2835,
2836,
2835,
2837,
2838,
2839,
2840,
2835,
81,
'C',
2840,
'C',
2839,
'C',
2838,
2839,
2839,
5,
8,
105,
81,
81,
'S',
4,
'C',
2837,
'C',
2836,
2841,
'C',
2841,
2843,
2844,
342,
1,
2839,
2839,
2839,
2839,
'C',
2844,
81,
'C',
2843,
2845,
2846,
2845,
2839,
2845,
81,
81,
'C',
2846,
2847,
342,
'C',
2847,
81,
'C',
2848,
'C',
2849,
'C',
2850,
2559,
104,
81,
'C',
2851,
734,
775,
2557,
104,
81,
81,
'C',
2852,
126,
'C',
2853,
65,
'C',
2854,
'C',
2855,
2856,
1589,
1606,
'C',
2857,
104,
60,
60,
81,
81,
'C',
2858,
104,
81,
'C',
2859,
'T',
212,
'C',
2860,
'T',
43,
1516,
703,
'C',
2861,
'C',
2862,
'T',
43,
562,
562,
562,
2446,
'C',
2863,
'T',
43,
'T',
43,
'T',
43,
562,
562,
562,
562,
562,
'C',
2864,
'C',
2865,
2776,
'C',
2866,
2867,
2868,
104,
81,
'C',
2868,
81,
'C',
2867,
81,
'C',
2869,
'C',
2870,
2612,
104,
2612,
2612,
104,
60,
60,
60,
81,
81,
'C',
2871,
2446,
60,
60,
'C',
2872,
1516,
703,
'C',
2873,
2874,
81,
'C',
2874,
2222,
81,
'C',
2875,
2612,
2612,
2612,
2612,
104,
2222,
2222,
703,
2222,
2222,
703,
2222,
2222,
703,
2612,
104,
2612,
2612,
104,
2876,
2877,
2878,
2879,
104,
60,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
2879,
2222,
'C',
2878,
2222,
'C',
2877,
2222,
'C',
2876,
2222,
'C',
2880,
2446,
60,
60,
60,
60,
60,
60,
60,
60,
113,
'C',
2881,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
2882,
2612,
2612,
104,
81,
'C',
2883,
2446,
'C',
2884,
'T',
43,
'T',
43,
'C',
2885,
2886,
81,
'C',
2886,
1447,
546,
6,
60,
60,
60,
60,
'C',
2887,
'C',
2888,
2612,
2612,
104,
81,
'C',
2889,
2446,
'C',
2890,
1457,
81,
'C',
2891,
'T',
5633,
2560,
104,
81,
'C',
2892,
'T',
212,
'C',
2893,
65,
'C',
2894,
'C',
2895,
104,
81,
81,
81,
81,
'C',
2896,
'C',
2897,
2898,
2899,
2900,
2899,
2901,
2899,
2902,
2899,
104,
81,
81,
81,
81,
'C',
2902,
2903,
2903,
561,
2904,
1,
81,
2904,
81,
'C',
2903,
'T',
3253,
2905,
561,
'C',
2905,
'T',
15152,
81,
'C',
2901,
2903,
2903,
561,
2904,
81,
'C',
2900,
2903,
2903,
561,
2904,
81,
'C',
2899,
104,
60,
81,
'C',
2898,
2903,
2903,
561,
2904,
81,
'C',
2906,
104,
104,
104,
104,
81,
81,
113,
105,
2907,
1,
81,
2907,
81,
2907,
81,
2907,
81,
2907,
81,
2907,
81,
81,
81,
113,
105,
1966,
1966,
81,
113,
105,
2908,
1,
2908,
2908,
2908,
2908,
2908,
2908,
2908,
2908,
81,
113,
105,
2909,
1,
81,
2909,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
2910,
2574,
2446,
'C',
2911,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
2912,
'T',
43,
'T',
205,
441,
2913,
1,
441,
104,
104,
104,
104,
81,
81,
81,
81,
81,
113,
105,
2914,
1,
81,
2914,
81,
2914,
81,
2914,
81,
2914,
81,
81,
81,
113,
105,
2915,
1,
81,
2915,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
2916,
2574,
2574,
2574,
2446,
113,
'C',
2917,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
2918,
2918,
2918,
'C',
2918,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
43,
'C',
2919,
'C',
2920,
2612,
2612,
2612,
2612,
104,
60,
60,
60,
60,
81,
'C',
2921,
2446,
60,
60,
60,
60,
'C',
2922,
1516,
703,
'C',
2923,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
2924,
2612,
2612,
2612,
2612,
104,
81,
'C',
2925,
2446,
'C',
2926,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
2927,
'C',
2928,
'T',
212,
'C',
2929,
1516,
703,
'S',
5,
'C',
2930,
553,
555,
555,
555,
555,
555,
555,
104,
81,
81,
81,
81,
81,
81,
81,
'C',
2931,
663,
664,
695,
104,
695,
104,
695,
104,
695,
669,
81,
'C',
2932,
'C',
2933,
104,
81,
'C',
2934,
104,
81,
'C',
2935,
104,
81,
81,
81,
81,
'C',
2936,
104,
81,
'C',
2937,
'T',
41,
'T',
41,
663,
664,
695,
695,
695,
695,
695,
695,
695,
669,
81,
81,
81,
'C',
2938,
'C',
2939,
663,
664,
695,
104,
695,
104,
695,
104,
695,
104,
695,
104,
695,
104,
695,
669,
81,
81,
'C',
2940,
'C',
2941,
2942,
104,
81,
'C',
2942,
6,
81,
81,
81,
81,
81,
'C',
2943,
'T',
4235,
2944,
1,
2945,
1,
'C',
2946,
'T',
9226,
'C',
2947,
'T',
154,
'C',
2948,
689,
'C',
2949,
690,
'C',
2950,
'C',
2951,
'C',
2952,
'C',
2953,
56,
81,
81,
'C',
2954,
1075,
'C',
2955,
'T',
4235,
2956,
1511,
'C',
2957,
'T',
9226,
1906,
1907,
638,
639,
'C',
2958,
'T',
154,
'C',
2959,
'T',
154,
'T',
9226,
'T',
154,
'T',
41,
'T',
9226,
'T',
41,
'T',
154,
'T',
9226,
'T',
41,
'T',
154,
103,
663,
664,
667,
668,
667,
668,
669,
663,
664,
667,
668,
669,
753,
753,
753,
'S',
5,
'S',
5,
'S',
5,
'C',
2960,
56,
81,
'C',
2961,
56,
81,
81,
'C',
2962,
56,
81,
'C',
2963,
'T',
154,
'T',
9226,
753,
'S',
5,
'C',
2964,
'C',
2965,
'T',
154,
'T',
9226,
'C',
2966,
'T',
154,
'C',
2967,
'C',
2968,
'T',
4236,
'T',
4237,
'C',
2969,
2970,
104,
81,
81,
'C',
2970,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
41,
663,
664,
746,
746,
746,
667,
668,
695,
669,
81,
81,
'C',
2971,
'T',
212,
'C',
2972,
'T',
43,
'C',
2973,
'T',
154,
'C',
2974,
'T',
11479,
'T',
154,
'T',
9959,
1061,
0,
1061,
695,
1062,
695,
1052,
1061,
2975,
81,
81,
81,
81,
81,
'C',
2975,
'C',
2976,
'T',
205,
'T',
3253,
'T',
154,
'T',
3253,
1061,
1052,
695,
1052,
1061,
'C',
2977,
'C',
2978,
'C',
2979,
2980,
1,
2981,
666,
'C',
2981,
696,
2982,
'C',
2982,
2983,
2560,
104,
6,
81,
81,
'C',
2983,
'C',
2984,
'S',
17,
'C',
2985,
'T',
3850,
81,
'C',
2986,
'C',
2987,
'C',
2988,
'C',
2989,
81,
'C',
2990,
941,
'C',
2991,
2992,
104,
81,
81,
'C',
2992,
'T',
41,
2993,
2994,
'C',
2994,
2995,
'C',
2995,
81,
'C',
2993,
1045,
'C',
2996,
'T',
212,
'C',
2997,
'C',
2998,
'T',
212,
2999,
'C',
2999,
81,
'C',
3000,
2999,
2999,
'S',
5,
'C',
3001,
'T',
13713,
658,
3002,
'C',
3002,
658,
3003,
3004,
81,
'C',
3004,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3005,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3003,
'T',
8390,
658,
81,
'C',
3006,
'C',
3007,
'T',
212,
'C',
3008,
'T',
13719,
658,
3009,
'C',
3009,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13719,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3010,
3011,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3012,
'T',
3253,
638,
639,
595,
243,
'C',
3013,
'T',
3253,
638,
639,
595,
243,
'C',
3014,
1622,
81,
'C',
3015,
56,
81,
'C',
3016,
'T',
3253,
638,
639,
243,
'C',
3017,
1978,
'C',
3018,
1074,
'C',
3019,
3020,
1,
'C',
3021,
1977,
'C',
3022,
683,
691,
'C',
3023,
683,
691,
'C',
3024,
693,
'C',
3025,
'C',
3026,
638,
639,
81,
'C',
3027,
3028,
81,
'C',
3028,
638,
639,
'C',
3029,
3030,
'C',
3030,
81,
'C',
3032,
'C',
3033,
638,
639,
81,
'C',
3034,
638,
639,
81,
'C',
3035,
638,
639,
'C',
3036,
658,
696,
749,
'C',
3037,
'C',
3038,
3039,
638,
639,
81,
'C',
3039,
'C',
3040,
3041,
81,
'C',
3041,
638,
639,
232,
'C',
3042,
'C',
3043,
638,
639,
3039,
81,
'C',
3044,
232,
81,
'C',
3045,
638,
639,
232,
'C',
3046,
638,
639,
638,
639,
595,
60,
'C',
3047,
638,
639,
638,
639,
595,
60,
'C',
3048,
1622,
0,
3049,
'C',
3049,
1627,
81,
81,
'C',
3050,
56,
81,
'C',
3051,
638,
639,
638,
639,
60,
'C',
3052,
1978,
'C',
3053,
1074,
'C',
3054,
3020,
'C',
3055,
1977,
'C',
3056,
683,
691,
'C',
3057,
683,
691,
'C',
3058,
696,
'C',
3059,
'C',
3060,
638,
639,
81,
'C',
3061,
81,
'C',
3062,
638,
639,
'C',
3063,
'C',
3064,
3065,
638,
639,
81,
'C',
3065,
'C',
3066,
3067,
81,
'C',
3067,
638,
639,
243,
'C',
3068,
'T',
13717,
658,
3069,
'C',
3069,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13717,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3043,
751,
5,
8,
752,
752,
232,
81,
81,
81,
'C',
3070,
638,
639,
595,
232,
'C',
3071,
638,
639,
595,
232,
'C',
3072,
1622,
'C',
3073,
56,
81,
'C',
3074,
638,
639,
232,
'C',
3075,
1978,
'C',
3076,
1074,
'C',
3077,
3020,
'C',
3078,
1977,
'C',
3079,
683,
691,
'C',
3080,
683,
691,
'C',
3081,
643,
'C',
3082,
'C',
3083,
81,
'C',
3084,
638,
639,
'C',
3085,
'C',
3010,
638,
639,
3065,
81,
'C',
3086,
3011,
81,
'C',
3011,
638,
639,
243,
'C',
3087,
948,
'C',
3088,
'C',
3089,
638,
639,
81,
81,
'C',
3090,
3091,
81,
'C',
3091,
638,
639,
'C',
3092,
'C',
3093,
638,
639,
3094,
81,
'C',
3094,
3095,
'C',
3095,
'C',
3096,
270,
81,
'C',
3097,
638,
639,
3098,
'C',
3098,
3099,
'C',
3099,
81,
'C',
3100,
'T',
13713,
658,
3101,
'C',
3101,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3102,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3103,
658,
3104,
3106,
'C',
3106,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3107,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3104,
81,
'C',
3108,
'T',
3251,
658,
6,
81,
'C',
3109,
'T',
3253,
595,
'C',
3110,
'T',
3253,
595,
'C',
3111,
1622,
'C',
3112,
56,
81,
'C',
3113,
'T',
3253,
'C',
3114,
1978,
'C',
3115,
1074,
'C',
3116,
3020,
'C',
3117,
1977,
'C',
3118,
683,
691,
'C',
3119,
683,
691,
'C',
3120,
1461,
'C',
3121,
'C',
3122,
638,
639,
81,
81,
'C',
3123,
60,
81,
'C',
3124,
638,
639,
60,
'C',
3125,
693,
'C',
3126,
'C',
3127,
638,
639,
81,
'C',
3128,
638,
639,
81,
'C',
3129,
638,
639,
'C',
3130,
'T',
13721,
658,
3131,
'C',
3131,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13721,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3093,
751,
5,
8,
752,
752,
270,
81,
81,
81,
'C',
3132,
3133,
638,
639,
595,
270,
'C',
3133,
3099,
'C',
3134,
3133,
638,
639,
595,
270,
'C',
3135,
1622,
'C',
3136,
56,
81,
'C',
3137,
3133,
638,
639,
270,
'C',
3138,
1978,
'C',
3139,
1074,
'C',
3140,
3020,
'C',
3141,
1977,
'C',
3142,
683,
691,
'C',
3143,
683,
691,
'C',
3144,
'C',
3145,
'C',
3146,
'C',
3147,
3148,
638,
639,
81,
'C',
3148,
3095,
'C',
3149,
3150,
81,
'C',
3150,
3133,
638,
639,
'C',
3151,
3104,
'C',
3152,
'C',
3107,
638,
639,
81,
81,
'C',
3153,
81,
'C',
3154,
638,
639,
'C',
3155,
3156,
81,
'C',
3156,
81,
'C',
3157,
'T',
13713,
658,
3158,
'C',
3158,
658,
3003,
3159,
81,
'C',
3159,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3160,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3161,
3162,
'C',
3162,
81,
'C',
3164,
'C',
3165,
638,
639,
81,
'C',
3166,
638,
639,
81,
'C',
3167,
638,
639,
'C',
3168,
643,
'C',
3169,
'C',
3170,
638,
639,
81,
'C',
3171,
638,
639,
81,
'C',
3172,
638,
639,
'C',
3173,
658,
3174,
3069,
'C',
3174,
81,
'C',
3176,
3177,
595,
'C',
3178,
3177,
595,
'C',
3179,
1622,
'C',
3180,
56,
81,
'C',
3181,
3177,
'C',
3182,
1978,
'C',
3183,
1074,
'C',
3184,
3020,
'C',
3185,
1977,
'C',
3186,
683,
691,
'C',
3187,
683,
691,
'C',
3188,
3030,
'C',
3189,
'C',
3190,
638,
639,
81,
'C',
3191,
3192,
81,
'C',
3192,
638,
639,
'C',
3193,
638,
639,
638,
639,
595,
60,
'C',
3194,
638,
639,
638,
639,
595,
60,
'C',
3195,
1622,
'C',
3196,
56,
81,
'C',
3197,
638,
639,
638,
639,
60,
'C',
3198,
1978,
'C',
3199,
1074,
'C',
3200,
3020,
'C',
3201,
1977,
'C',
3202,
683,
691,
'C',
3203,
683,
691,
'C',
3204,
1947,
'C',
3205,
'C',
3206,
638,
639,
81,
'C',
3207,
638,
639,
81,
'C',
3208,
638,
639,
'C',
3209,
1947,
'C',
3210,
'C',
3211,
638,
639,
81,
'C',
3212,
3213,
81,
'C',
3213,
638,
639,
'C',
3214,
3104,
'C',
3215,
'C',
3216,
638,
639,
81,
'C',
3217,
638,
639,
81,
'C',
3218,
638,
639,
'C',
3219,
658,
3220,
3009,
'C',
3220,
81,
'C',
3222,
3223,
595,
'C',
3224,
3223,
595,
'C',
3225,
1622,
'C',
3226,
56,
81,
'C',
3227,
3223,
'C',
3228,
1978,
'C',
3229,
1074,
'C',
3230,
3020,
'C',
3231,
1977,
'C',
3232,
683,
691,
'C',
3233,
683,
691,
'C',
3234,
'C',
3235,
3065,
638,
639,
81,
'C',
3236,
3223,
81,
'C',
3223,
638,
639,
243,
'C',
3237,
658,
693,
3002,
'C',
3238,
658,
3030,
3158,
'C',
3239,
'C',
3240,
'C',
3241,
293,
'C',
3242,
'T',
13715,
658,
2227,
'C',
3243,
696,
'C',
3244,
'C',
3245,
81,
'C',
3246,
638,
639,
'C',
3247,
658,
3162,
3248,
'C',
3248,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3249,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3250,
658,
1461,
3251,
'C',
3251,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13715,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
751,
5,
8,
752,
752,
60,
81,
81,
81,
'C',
3252,
948,
'C',
3253,
'C',
3254,
81,
'C',
3255,
638,
639,
'C',
3256,
'C',
3257,
3039,
638,
639,
81,
'C',
3258,
3177,
81,
'C',
3177,
638,
639,
232,
'C',
3259,
603,
'C',
3260,
'C',
3261,
638,
639,
81,
'C',
3262,
638,
639,
81,
'C',
3263,
638,
639,
'C',
3264,
2226,
'C',
3265,
'C',
3266,
638,
639,
81,
81,
'C',
3267,
638,
639,
60,
81,
'C',
3268,
638,
639,
60,
'C',
3269,
3030,
'C',
3270,
'C',
3160,
638,
639,
81,
'C',
3271,
81,
'C',
3272,
638,
639,
'C',
3273,
1947,
'C',
3274,
'C',
3275,
81,
'C',
3276,
638,
639,
'C',
3277,
3278,
81,
'C',
3278,
81,
'C',
3279,
'T',
13713,
658,
3248,
'C',
3280,
2226,
'C',
3281,
'C',
3282,
638,
639,
81,
'C',
3283,
3284,
81,
'C',
3284,
638,
639,
60,
'C',
3285,
'T',
13715,
658,
3251,
'C',
3286,
'T',
13713,
658,
3106,
'C',
3287,
658,
6,
638,
639,
'C',
3288,
'T',
3253,
595,
'C',
3289,
'T',
3253,
595,
'C',
3290,
1622,
'C',
3291,
56,
81,
'C',
3292,
'T',
3253,
'C',
3293,
1978,
'C',
3294,
1074,
'C',
3295,
3020,
'C',
3296,
1977,
'C',
3297,
683,
691,
'C',
3298,
683,
691,
'C',
3299,
1461,
'C',
3300,
'C',
3301,
638,
639,
81,
'C',
3302,
3303,
81,
'C',
3303,
638,
639,
60,
'C',
3304,
3162,
'C',
3305,
'C',
3306,
638,
639,
81,
'C',
3307,
81,
'C',
3308,
638,
639,
'C',
3309,
658,
603,
3101,
'C',
3310,
'T',
13713,
658,
3311,
'C',
3311,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
1949,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3312,
1461,
'C',
3313,
'C',
3314,
638,
639,
81,
'C',
3315,
638,
639,
60,
81,
'C',
3316,
638,
639,
60,
'C',
3317,
3318,
81,
'C',
3318,
3319,
'C',
3319,
3320,
3321,
3320,
3320,
3322,
104,
663,
664,
555,
3323,
674,
695,
669,
674,
81,
3320,
81,
'C',
3323,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
41,
'T',
4236,
'T',
4237,
'T',
4236,
'T',
41,
'T',
4237,
'T',
41,
667,
668,
695,
667,
668,
667,
668,
'C',
3322,
3320,
'C',
3321,
553,
'C',
3324,
663,
664,
3323,
669,
'C',
3325,
'C',
3326,
'C',
3327,
293,
'C',
3328,
658,
948,
949,
'C',
3329,
'T',
13713,
658,
3330,
'C',
3330,
'T',
154,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
13710,
'T',
13710,
'T',
3249,
'T',
13710,
'T',
3250,
'T',
3249,
'T',
13713,
'T',
3253,
'T',
3251,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
637,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
3331,
658,
2226,
2227,
'C',
3332,
658,
643,
3330,
'C',
3333,
948,
'C',
3334,
'C',
3335,
638,
639,
81,
'C',
3336,
638,
639,
81,
'C',
3337,
638,
639,
'C',
3338,
3339,
81,
'C',
3339,
81,
'C',
3340,
603,
'C',
3341,
'C',
3342,
638,
639,
81,
'C',
3343,
3344,
81,
'C',
3344,
638,
639,
'C',
3345,
3162,
'C',
3346,
'C',
3249,
638,
639,
81,
'C',
3347,
81,
'C',
3348,
638,
639,
'C',
3349,
'C',
3350,
3095,
638,
639,
81,
'C',
3351,
3352,
81,
'C',
3352,
3099,
638,
639,
'C',
3353,
3104,
'C',
3354,
'C',
3355,
638,
639,
81,
'C',
3356,
3357,
81,
'C',
3357,
638,
639,
'C',
3358,
603,
'C',
3359,
'C',
3102,
638,
639,
81,
'C',
3360,
81,
'C',
3361,
638,
639,
'C',
3362,
693,
'C',
3363,
'C',
3005,
638,
639,
81,
'C',
3364,
81,
'C',
3365,
638,
639,
'C',
3366,
2226,
'C',
3367,
'C',
3368,
638,
639,
81,
'C',
3369,
60,
81,
'C',
3370,
638,
639,
60,
'C',
3371,
643,
'C',
3372,
'C',
3373,
638,
639,
81,
'C',
3374,
3375,
81,
'C',
3375,
638,
639,
'C',
3376,
'T',
13713,
658,
949,
'C',
3377,
658,
3378,
3131,
'C',
3378,
81,
'C',
3380,
3352,
595,
'C',
3381,
3352,
595,
'C',
3382,
1622,
'C',
3383,
56,
81,
'C',
3384,
3352,
'C',
3385,
1978,
'C',
3386,
1074,
'C',
3387,
3020,
'C',
3388,
1977,
'C',
3389,
683,
691,
'C',
3390,
683,
691,
'C',
3391,
658,
1947,
3311,
'C',
3392,
696,
'C',
3393,
'C',
3394,
638,
639,
81,
'C',
3395,
638,
639,
81,
'C',
3396,
638,
639,
'C',
3397,
1171,
'C',
3398,
530,
'T',
12582,
196,
182,
1164,
'C',
3399,
104,
81,
'C',
3400,
'T',
12743,
'T',
12740,
'C',
3401,
'C',
3402,
2834,
'C',
3403,
'T',
12488,
'C',
3404,
1016,
'C',
3405,
174,
1,
3406,
3407,
597,
81,
'C',
3407,
2333,
81,
'C',
3406,
530,
3408,
'C',
3408,
3409,
3410,
3411,
'C',
3411,
'T',
12582,
0,
3412,
'C',
3412,
'C',
3410,
'T',
12691,
'T',
12579,
6,
0,
3413,
81,
81,
81,
'C',
3413,
3414,
81,
'C',
3414,
530,
'T',
12281,
'C',
3409,
'T',
12579,
0,
3415,
'C',
3415,
'C',
3416,
3417,
'C',
3417,
3418,
'C',
3418,
3419,
2324,
81,
'C',
3419,
2325,
3420,
2325,
3421,
3422,
1,
2327,
2328,
3421,
2329,
81,
81,
'C',
3420,
3423,
3421,
2327,
81,
'C',
3423,
'T',
12707,
3424,
81,
'C',
3424,
'T',
12492,
'T',
12494,
3425,
2333,
'C',
3425,
'C',
3426,
530,
'T',
7643,
'T',
7643,
3427,
196,
1171,
0,
985,
81,
81,
3429,
81,
'C',
3429,
985,
'C',
3427,
2336,
'T',
7643,
3430,
985,
0,
3431,
'C',
3431,
985,
'C',
3430,
2336,
2338,
'C',
3432,
530,
'T',
12501,
533,
1007,
3433,
2324,
'C',
3433,
2325,
3434,
2325,
3435,
3422,
2327,
2328,
3435,
2329,
81,
'C',
3434,
3436,
3435,
2327,
'C',
3436,
2336,
'T',
7643,
0,
2338,
3424,
3437,
'C',
3437,
'T',
12708,
'T',
12707,
113,
105,
105,
105,
105,
105,
81,
81,
'C',
3438,
530,
196,
985,
3439,
3428,
1,
3440,
2324,
81,
'C',
3440,
3441,
3442,
3443,
'C',
3443,
'T',
12469,
2340,
3444,
'C',
3444,
3424,
'C',
3441,
530,
'T',
12507,
'T',
12509,
'T',
12511,
196,
2342,
81,
'C',
3442,
2325,
81,
'C',
3445,
'C',
3446,
'C',
3447,
'C',
3448,
'C',
3449,
'C',
3450,
597,
81,
'C',
3451,
104,
104,
81,
81,
'C',
3452,
'C',
3453,
3454,
'C',
3454,
1174,
0,
56,
3455,
'S',
2,
1123,
81,
81,
81,
'C',
3455,
'C',
3456,
1021,
'C',
3457,
'C',
3458,
'C',
3459,
'C',
3460,
'C',
3461,
530,
3462,
113,
105,
105,
105,
105,
105,
'C',
3462,
530,
530,
530,
3463,
6,
81,
81,
'C',
3463,
530,
530,
'C',
3464,
530,
3465,
113,
105,
105,
105,
105,
105,
'C',
3465,
530,
530,
530,
3463,
6,
'C',
3466,
530,
3467,
'C',
3467,
530,
530,
530,
3463,
6,
'C',
3468,
3469,
81,
'C',
3469,
1330,
3470,
3471,
3472,
3474,
3475,
540,
3476,
6,
0,
3477,
534,
3470,
81,
'C',
3477,
3478,
81,
'C',
3478,
530,
'T',
12871,
81,
'C',
3476,
3479,
1,
3480,
1,
539,
0,
3481,
3482,
1,
539,
0,
3483,
3484,
1,
539,
0,
3485,
3486,
1,
539,
0,
3487,
3488,
1,
539,
0,
3489,
3490,
1,
539,
0,
3491,
3479,
539,
0,
3492,
3479,
539,
0,
3493,
3479,
539,
0,
3494,
3479,
539,
0,
3495,
3479,
539,
0,
3496,
3479,
539,
0,
3497,
3479,
539,
0,
3498,
'C',
3498,
3499,
81,
81,
81,
81,
'C',
3499,
0,
3500,
3501,
'C',
3501,
3502,
'C',
3502,
'C',
3500,
1028,
1027,
1036,
1036,
1036,
1028,
1036,
1027,
1026,
1031,
'C',
3497,
3469,
81,
81,
81,
81,
81,
'C',
3496,
3503,
81,
81,
81,
81,
'C',
3503,
1336,
'C',
3495,
3504,
81,
81,
81,
81,
81,
'C',
3504,
'T',
12861,
3505,
81,
'C',
3505,
1174,
56,
'S',
2,
1123,
81,
'C',
3494,
3506,
81,
81,
81,
81,
81,
'C',
3506,
'T',
12859,
3454,
'C',
3493,
1021,
81,
81,
81,
81,
'C',
3492,
81,
81,
81,
81,
'C',
3491,
81,
81,
81,
81,
'C',
3489,
81,
81,
81,
81,
'C',
3487,
81,
81,
81,
81,
'C',
3485,
3462,
81,
81,
81,
81,
81,
81,
'C',
3483,
3465,
81,
81,
81,
81,
81,
'C',
3481,
3467,
81,
81,
81,
81,
'C',
3474,
'T',
9959,
885,
0,
3507,
'C',
3507,
'T',
3850,
81,
81,
'C',
3472,
534,
81,
'C',
3471,
885,
'C',
3508,
3499,
'C',
3509,
'C',
3510,
0,
3511,
'C',
3511,
3512,
'C',
3513,
0,
3514,
'C',
3514,
3466,
'C',
3515,
530,
3465,
3508,
'C',
3512,
530,
3467,
3508,
'C',
3516,
'C',
3517,
'C',
3518,
'C',
3519,
103,
'C',
3520,
'C',
3521,
'C',
3522,
'T',
4236,
'T',
4237,
3423,
2335,
3436,
597,
9,
9,
81,
'C',
3523,
'C',
3524,
'T',
41,
1927,
1358,
663,
664,
695,
1358,
667,
668,
667,
668,
669,
'C',
3525,
3319,
'C',
3526,
1076,
'C',
3527,
'C',
3528,
3529,
1357,
3530,
1357,
1358,
1358,
'C',
3530,
1077,
'C',
3529,
1077,
'C',
3531,
3532,
'C',
3532,
3533,
'C',
3533,
126,
'C',
3534,
3532,
'C',
3535,
3533,
81,
81,
'C',
3536,
3533,
3537,
3538,
81,
81,
'C',
3538,
3539,
3536,
'C',
3539,
3540,
3540,
'C',
3540,
603,
3536,
81,
81,
'C',
3537,
'C',
3541,
603,
1208,
3536,
81,
81,
'C',
3542,
'C',
3543,
'C',
3544,
'C',
3545,
81,
'C',
3546,
'C',
3547,
'C',
3548,
'C',
3549,
597,
'C',
3550,
'C',
3551,
3552,
1,
'C',
3553,
3319,
'C',
3554,
1908,
81,
'C',
3555,
595,
'C',
3556,
'C',
3557,
'C',
3558,
3559,
1,
'C',
3560,
'T',
154,
'C',
3561,
'T',
212,
126,
3562,
81,
'C',
3562,
'T',
43,
3563,
81,
81,
81,
81,
'C',
3563,
'C',
3564,
'T',
212,
'T',
43,
126,
81,
81,
81,
'C',
3565,
'C',
3566,
'C',
3567,
'C',
2799,
2801,
1,
'C',
2451,
3568,
'C',
3568,
3320,
3320,
3320,
'T',
9959,
3322,
663,
664,
555,
695,
0,
695,
674,
669,
674,
81,
3569,
'C',
3569,
695,
695,
695,
695,
'C',
3570,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4236,
'T',
4237,
'T',
41,
663,
664,
695,
667,
668,
667,
668,
669,
'C',
3571,
3319,
'C',
3572,
1076,
'C',
3573,
'C',
3574,
'C',
3575,
3568,
'C',
3576,
603,
1208,
584,
81,
81,
'C',
3577,
'C',
3578,
3319,
'C',
3579,
658,
'C',
3580,
'T',
154,
658,
3581,
684,
'C',
3581,
'T',
154,
658,
683,
691,
'C',
2793,
683,
691,
'C',
3582,
683,
691,
'C',
3583,
'T',
154,
663,
664,
3323,
669,
'C',
3584,
'T',
154,
'T',
154,
'T',
3253,
595,
'C',
3585,
'T',
154,
'T',
3253,
595,
'C',
3586,
'T',
154,
'C',
3587,
'T',
154,
'C',
3588,
'T',
3253,
'C',
3589,
'T',
154,
889,
'C',
3590,
'C',
3591,
'C',
3592,
1843,
'C',
3593,
595,
81,
'C',
3594,
'C',
3595,
3568,
'C',
3596,
'C',
3597,
'C',
3598,
'C',
3599,
'T',
212,
'T',
43,
3600,
'C',
3600,
81,
81,
'C',
3601,
753,
'C',
3602,
'T',
212,
'T',
43,
'C',
3603,
'T',
212,
'T',
43,
'C',
3604,
'C',
3605,
'C',
3606,
'C',
3607,
'C',
3608,
81,
'C',
3609,
3610,
81,
'C',
3610,
'C',
3611,
3612,
81,
'C',
3612,
'C',
3613,
104,
81,
'C',
3614,
'C',
3615,
'T',
212,
1148,
81,
'C',
3616,
'T',
43,
1152,
1152,
'C',
3617,
'C',
3618,
3619,
81,
'C',
3619,
'C',
3620,
'T',
43,
3621,
3621,
'C',
3621,
'C',
3622,
'C',
3623,
'C',
3624,
'C',
3625,
'C',
3626,
595,
'C',
3627,
595,
'C',
3628,
3629,
1,
'C',
3630,
658,
553,
560,
'C',
3631,
'C',
3632,
81,
'C',
3633,
81,
'C',
3634,
'C',
3635,
81,
'C',
3636,
81,
'C',
3637,
'T',
43,
'C',
3638,
'T',
212,
'C',
3639,
3640,
1,
'C',
3641,
104,
81,
81,
'C',
3642,
838,
'C',
3643,
81,
'C',
3644,
'T',
8390,
'T',
8390,
834,
104,
775,
842,
104,
104,
842,
104,
842,
775,
1320,
104,
104,
842,
81,
81,
81,
81,
81,
81,
81,
'C',
3645,
'C',
3646,
3647,
3648,
334,
113,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
3648,
3648,
'C',
3647,
334,
334,
3649,
334,
'C',
3649,
3649,
'C',
3650,
'T',
15305,
81,
'C',
3651,
'C',
3652,
'C',
3653,
81,
'C',
3654,
81,
'C',
3655,
553,
746,
890,
894,
893,
553,
553,
893,
775,
555,
775,
555,
775,
555,
81,
'C',
3656,
'T',
7609,
'T',
15378,
'T',
5118,
775,
5,
8,
'C',
3657,
81,
'C',
3658,
734,
735,
5,
8,
'C',
3659,
'T',
8390,
81,
'C',
3660,
'C',
3661,
746,
81,
'C',
3662,
81,
'C',
3663,
81,
'C',
3664,
104,
81,
81,
81,
'C',
3665,
'C',
3666,
'C',
3667,
81,
'C',
3668,
'C',
3669,
3670,
'C',
3670,
'C',
3671,
3672,
'C',
3672,
'C',
3673,
3674,
'C',
3674,
'C',
3675,
104,
81,
'C',
3676,
'C',
3677,
104,
81,
81,
'C',
3678,
'C',
3679,
'T',
15509,
104,
104,
104,
104,
104,
2992,
104,
81,
81,
81,
81,
81,
81,
81,
'C',
3680,
'C',
3681,
3654,
334,
81,
'C',
3682,
334,
81,
'C',
3683,
783,
783,
3656,
'C',
3684,
'T',
8390,
783,
3658,
'C',
3685,
'T',
8390,
3686,
3655,
'C',
3686,
81,
'C',
3687,
81,
'C',
2698,
'C',
3688,
838,
'C',
3689,
81,
'C',
3690,
3568,
'C',
3691,
56,
81,
'C',
3692,
56,
81,
81,
81,
'C',
2494,
'T',
43,
'C',
3693,
81,
81,
'C',
3694,
'C',
3695,
'C',
3696,
595,
'C',
3697,
595,
'C',
3698,
3629,
'C',
3699,
658,
553,
3700,
560,
'C',
3700,
81,
'C',
3701,
'C',
3702,
81,
'C',
3703,
81,
'C',
3704,
81,
'C',
3705,
3706,
81,
'C',
3706,
3707,
'C',
3707,
5,
'C',
3708,
104,
81,
'C',
2776,
81,
'C',
2695,
2834,
'C',
3709,
'C',
3710,
2834,
'C',
3711,
'T',
41,
'T',
41,
104,
81,
'C',
3712,
'C',
3713,
'C',
3714,
'C',
3715,
81,
'C',
2613,
3716,
3717,
3716,
3718,
105,
3719,
3718,
3720,
3716,
81,
81,
'C',
3720,
81,
'C',
3719,
'C',
3717,
'C',
3721,
'C',
3722,
'C',
3723,
81,
'C',
3724,
733,
60,
'C',
3725,
81,
'C',
3726,
3727,
81,
'C',
3727,
'T',
13709,
60,
'C',
3728,
81,
'C',
3729,
81,
'C',
3730,
838,
'C',
3731,
81,
'C',
3732,
104,
81,
'C',
3733,
'C',
2794,
3734,
'C',
3734,
3320,
3320,
3320,
3322,
553,
555,
3735,
674,
663,
664,
3323,
695,
669,
674,
81,
'C',
3735,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
41,
'T',
4236,
'T',
4237,
'T',
4236,
'T',
4237,
'T',
4236,
'T',
4237,
555,
674,
674,
103,
555,
103,
674,
674,
555,
103,
103,
674,
555,
555,
555,
'C',
2788,
'T',
4235,
'T',
4236,
'T',
4237,
595,
'C',
3736,
3737,
'C',
3737,
3739,
3741,
3738,
611,
'C',
3741,
533,
689,
'C',
3739,
3741,
3740,
3738,
'C',
2787,
'T',
4235,
'T',
4236,
'C',
3742,
'T',
4235,
'T',
4236,
'C',
3743,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
41,
'T',
41,
'T',
4236,
'T',
4237,
'T',
41,
'T',
4236,
'T',
41,
'T',
4237,
'T',
41,
'T',
41,
663,
664,
834,
667,
668,
695,
667,
668,
667,
668,
669,
'C',
3744,
'C',
3745,
733,
'C',
3746,
'C',
3747,
1147,
'C',
3748,
'C',
3749,
81,
'C',
3750,
81,
'C',
3751,
81,
'C',
3752,
3753,
81,
'C',
3753,
81,
'C',
3754,
641,
81,
'C',
3755,
104,
81,
81,
81,
'C',
3756,
2992,
104,
81,
'C',
3757,
104,
81,
'C',
3758,
'C',
3759,
1744,
'T',
15133,
1746,
'S',
12,
'S',
14,
81,
'S',
12,
'C',
3760,
81,
81,
'C',
3761,
'C',
3762,
741,
741,
3763,
104,
104,
3763,
104,
81,
81,
81,
'C',
3763,
2992,
81,
'C',
3764,
'C',
3765,
104,
81,
81,
'C',
3766,
'C',
3767,
'C',
3768,
3769,
81,
'C',
3769,
81,
'C',
3770,
81,
'C',
3771,
889,
'C',
3772,
3318,
'C',
3773,
'C',
3774,
'C',
3775,
81,
'C',
3776,
81,
'C',
3777,
81,
'C',
3778,
'C',
3779,
81,
'C',
3780,
104,
'C',
3781,
'C',
3782,
'T',
41,
'T',
43,
'C',
3783,
'T',
212,
'C',
3784,
3785,
3786,
'C',
3785,
3787,
3788,
3789,
3790,
3791,
3792,
3793,
823,
'C',
3793,
775,
'C',
3792,
775,
'C',
3791,
775,
'C',
3790,
775,
616,
3794,
3795,
'C',
3795,
732,
'C',
3794,
732,
'C',
3789,
775,
'C',
3788,
775,
'C',
3787,
3796,
'C',
3796,
3794,
3795,
3797,
3798,
775,
'C',
3798,
732,
'C',
3797,
732,
'C',
3799,
3800,
'C',
3800,
3801,
'C',
3801,
'T',
8390,
'C',
3802,
'C',
3803,
3804,
104,
636,
103,
104,
636,
103,
104,
636,
103,
104,
104,
104,
104,
104,
104,
81,
81,
81,
81,
'C',
3804,
561,
'C',
3805,
1645,
81,
'C',
3806,
'T',
212,
'C',
3807,
'C',
3808,
561,
81,
'C',
3809,
'T',
7787,
'T',
43,
'T',
15637,
'T',
15632,
'T',
43,
'T',
15633,
'T',
43,
'T',
15634,
'T',
7786,
'T',
43,
'T',
15639,
'T',
15635,
'T',
43,
'T',
15640,
'T',
15636,
'T',
43,
3810,
3811,
'C',
3811,
931,
'C',
3810,
732,
775,
'C',
3812,
3813,
3814,
'C',
3814,
3815,
'C',
3815,
'T',
43,
663,
664,
695,
695,
695,
3816,
695,
695,
695,
695,
695,
669,
'C',
3816,
695,
695,
695,
695,
695,
'C',
3786,
'T',
43,
3810,
3811,
832,
3810,
3811,
928,
832,
732,
832,
832,
842,
832,
3817,
3818,
832,
3819,
831,
823,
'C',
3819,
'C',
3818,
732,
'C',
3817,
'T',
8390,
'T',
8390,
734,
1298,
1298,
775,
861,
5,
8,
81,
81,
'C',
3820,
3821,
'C',
3821,
3801,
'C',
3822,
3823,
3824,
'C',
3824,
'T',
212,
'C',
3825,
'T',
154,
'T',
154,
'T',
3253,
'T',
41,
'T',
154,
'T',
3253,
'T',
41,
'T',
9959,
'T',
43,
'T',
41,
3826,
2970,
104,
3827,
663,
664,
695,
667,
668,
2992,
667,
668,
695,
663,
664,
3828,
667,
668,
2992,
667,
668,
3829,
0,
3830,
663,
664,
104,
3831,
104,
3831,
104,
3831,
104,
3831,
1516,
104,
3831,
1516,
104,
3831,
104,
104,
3831,
104,
3831,
104,
104,
3831,
3831,
2992,
104,
3831,
103,
103,
104,
695,
695,
104,
695,
104,
695,
104,
695,
104,
695,
104,
695,
669,
3832,
81,
3833,
81,
113,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
3833,
695,
2970,
695,
695,
2992,
695,
81,
81,
'C',
3832,
'T',
205,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
8285,
'T',
5499,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
41,
3834,
3835,
1516,
103,
3836,
3837,
104,
663,
664,
695,
104,
695,
3827,
695,
3827,
667,
668,
667,
668,
695,
695,
3828,
667,
668,
667,
668,
3829,
695,
695,
3829,
667,
668,
2970,
103,
667,
668,
667,
668,
695,
695,
669,
81,
81,
81,
81,
81,
81,
81,
'C',
3837,
3834,
'C',
3836,
3834,
'C',
3835,
2970,
103,
'C',
3834,
732,
775,
1218,
732,
775,
842,
1218,
1218,
81,
81,
'C',
3831,
695,
695,
'C',
3830,
81,
'C',
3829,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
3838,
144,
1207,
1218,
584,
3839,
81,
81,
81,
81,
'S',
8,
'S',
8,
'C',
3839,
1417,
3840,
3841,
3842,
1,
'C',
3838,
'T',
3253,
81,
'S',
5,
'C',
3828,
'T',
3253,
3838,
3843,
81,
'S',
8,
'S',
5,
'C',
3843,
81,
'C',
3827,
'T',
3253,
3838,
3838,
1219,
'C',
3826,
3834,
'C',
3844,
3845,
81,
'C',
3845,
1318,
'C',
3846,
'C',
3847,
'C',
3848,
'C',
3849,
104,
81,
'C',
3850,
'C',
3851,
81,
'C',
3852,
698,
638,
639,
81,
'C',
3853,
3854,
81,
'C',
3854,
638,
639,
'C',
3855,
'C',
3856,
3857,
81,
'C',
3857,
'T',
1542,
81,
'C',
3858,
2557,
'C',
3859,
3860,
3860,
3861,
3861,
104,
2557,
104,
104,
81,
81,
'C',
3861,
'T',
43,
'C',
3860,
3861,
1807,
1522,
'C',
3862,
'T',
4192,
81,
'C',
3863,
'C',
3864,
'C',
3865,
'C',
3866,
562,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
3867,
562,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
3868,
'C',
3869,
81,
'C',
3870,
562,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
3871,
562,
77,
113,
105,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
105,
1837,
'C',
3872,
'C',
3873,
'C',
3874,
104,
81,
'C',
3875,
'C',
3876,
3877,
2419,
'C',
3877,
3878,
1300,
81,
'C',
3879,
104,
81,
'C',
3880,
'C',
3881,
'T',
6052,
0,
3882,
'C',
3882,
2154,
81,
'C',
3883,
'C',
3884,
81,
'C',
3885,
2033,
2676,
'C',
3886,
2729,
81,
'C',
3887,
3888,
'C',
3888,
3889,
81,
3890,
3891,
3892,
1,
81,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
3889,
3889,
81,
'C',
3893,
'T',
43,
2557,
104,
842,
842,
842,
842,
842,
81,
81,
81,
81,
81,
81,
81,
'C',
3894,
2651,
81,
'C',
3895,
'C',
3896,
'C',
3897,
'C',
3898,
81,
'C',
3899,
'C',
3900,
2557,
'C',
3901,
104,
'C',
3902,
81,
'C',
3903,
555,
81,
81,
'C',
3904,
3900,
104,
'C',
3905,
3906,
3907,
3908,
3909,
3910,
60,
3911,
3908,
3908,
3912,
2033,
2190,
2199,
3913,
3914,
2223,
2215,
3915,
3916,
1447,
2727,
2216,
60,
60,
60,
3906,
3908,
81,
81,
81,
81,
81,
81,
'C',
3916,
3912,
'C',
3915,
81,
'C',
3914,
2220,
'C',
3913,
'T',
7341,
5,
8,
'C',
3912,
2051,
2022,
453,
796,
445,
444,
2596,
'C',
3911,
60,
'C',
3909,
3917,
3918,
1,
60,
60,
60,
60,
'C',
3907,
441,
'C',
3919,
3920,
3921,
3922,
546,
60,
60,
81,
'C',
3922,
'C',
3921,
3923,
3924,
546,
60,
60,
'C',
3924,
3925,
60,
81,
'C',
3925,
'T',
7435,
'T',
15161,
1646,
1646,
6,
6,
6,
81,
81,
'C',
3923,
3925,
'C',
3920,
3926,
'C',
3926,
597,
81,
'C',
3927,
'C',
3928,
'C',
3929,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
104,
104,
0,
104,
81,
81,
81,
3930,
81,
81,
81,
'S',
5,
'S',
5,
'C',
3930,
'T',
43,
2612,
104,
2612,
2612,
104,
81,
81,
81,
'C',
3931,
2446,
'C',
3932,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
65,
'C',
3933,
81,
'C',
3934,
2033,
'C',
3935,
3936,
81,
81,
'C',
3936,
1472,
'C',
3937,
'T',
1500,
'T',
1498,
3938,
3939,
1404,
1405,
'C',
3938,
'C',
3940,
'C',
3941,
'T',
473,
3942,
81,
'C',
3942,
3923,
3924,
546,
60,
60,
'C',
3943,
1066,
2109,
2108,
'C',
3944,
2033,
'C',
3945,
3946,
2631,
'C',
3947,
3948,
81,
'C',
3948,
'C',
3949,
3950,
81,
'C',
3950,
81,
'C',
3951,
60,
81,
'C',
3952,
3953,
81,
'C',
3953,
3954,
3955,
'C',
3955,
'C',
3954,
3956,
'C',
3956,
1461,
2722,
'C',
3957,
2741,
'C',
3958,
'C',
3959,
104,
60,
60,
60,
60,
'C',
3960,
81,
'C',
3961,
1405,
81,
'C',
3962,
3963,
81,
'C',
3963,
0,
3964,
555,
3965,
1,
3966,
'C',
3966,
553,
3967,
1,
'C',
3964,
598,
599,
3573,
584,
600,
81,
81,
'C',
3968,
614,
584,
81,
'C',
3969,
2557,
'C',
3970,
2557,
'C',
3971,
104,
81,
'C',
3972,
'C',
3973,
'C',
3974,
1564,
1564,
'T',
5323,
'T',
1542,
1269,
104,
1273,
0,
1611,
1568,
104,
1269,
1273,
0,
1611,
1568,
81,
3975,
3976,
'C',
3976,
0,
1311,
3977,
'C',
3977,
0,
3978,
'C',
3978,
1618,
1619,
81,
81,
'C',
3975,
0,
1311,
3979,
'C',
3979,
0,
3980,
'C',
3980,
1618,
1619,
81,
81,
'C',
3981,
'T',
5321,
1596,
1613,
'C',
3982,
'T',
1542,
'T',
1542,
'T',
838,
'C',
3983,
1555,
'C',
3984,
2557,
'C',
3985,
'C',
3986,
'C',
3987,
2811,
1613,
81,
'C',
3988,
81,
'C',
3989,
1585,
81,
'C',
3990,
'C',
3991,
'C',
3992,
'C',
3993,
104,
81,
'C',
3994,
'C',
3995,
'C',
3996,
'C',
3997,
553,
555,
555,
555,
104,
835,
104,
81,
81,
81,
81,
81,
81,
81,
'C',
3998,
'T',
212,
'C',
3999,
'S',
5,
'C',
4000,
'C',
4001,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
4002,
77,
113,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
113,
81,
'S',
5,
'C',
4003,
'C',
4004,
595,
'C',
4005,
'C',
4006,
3741,
3740,
'C',
4007,
'T',
154,
'C',
4008,
'T',
4237,
'C',
4009,
'T',
4236,
'T',
4237,
'C',
4010,
'T',
4236,
'T',
4236,
'T',
4237,
'T',
4235,
'T',
4237,
'C',
4011,
'C',
4012,
'T',
4235,
4013,
1,
'C',
4014,
'T',
4235,
4015,
1511,
'C',
4016,
3741,
3738,
'C',
4017,
3174,
'C',
4018,
3174,
'C',
4019,
3220,
'C',
4020,
3220,
'C',
4021,
3378,
'C',
4022,
3378,
'C',
4023,
'C',
4024,
'T',
3253,
'C',
4025,
3220,
'C',
4026,
3174,
'C',
4027,
3378,
'C',
4028,
'T',
12434,
'T',
12435,
2375,
2375,
2377,
81,
81,
'C',
4029,
2329,
81,
'C',
4030,
4031,
'C',
4031,
4032,
'C',
4032,
4033,
81,
'C',
4033,
985,
'C',
4034,
4035,
'C',
4035,
3433,
81,
'C',
4036,
4037,
'C',
4037,
3419,
'C',
4038,
4039,
4040,
81,
81,
81,
'C',
4040,
530,
'T',
12281,
'C',
4039,
4041,
'C',
4041,
4042,
2333,
0,
0,
0,
3444,
4043,
4044,
4046,
'C',
4046,
'C',
4044,
4048,
'C',
4048,
'T',
12494,
'C',
4043,
'C',
4042,
'C',
4049,
4050,
4040,
81,
81,
81,
'C',
4050,
3443,
'C',
4051,
4045,
174,
3406,
4052,
4039,
3407,
0,
3444,
597,
81,
4053,
81,
'C',
4053,
4040,
'C',
4052,
81,
81,
81,
'C',
4054,
'C',
4055,
2335,
81,
'C',
4056,
1336,
'C',
4057,
0,
4058,
'C',
4058,
3464,
81,
'C',
4059,
530,
3462,
3508,
'C',
4060,
'C',
4061,
'C',
4062,
3436,
81,
'C',
4063,
4064,
'C',
4064,
'C',
4065,
4066,
'C',
4066,
2326,
'C',
4067,
4068,
'C',
4068,
3434,
81,
'C',
4069,
4070,
'C',
4070,
3420,
'C',
4071,
'T',
12875,
'C',
4072,
'T',
12875,
'C',
4073,
'T',
12875,
'C',
4074,
'T',
12875,
533,
'C',
4075,
1025,
1025,
538,
'C',
4076,
1025,
1025,
538,
'C',
4077,
1025,
1025,
538,
'C',
4078,
1025,
1025,
538,
113,
105,
105,
105,
105,
105,
'C',
4079,
1025,
1025,
538,
113,
105,
105,
105,
105,
105,
'C',
4080,
1025,
1025,
538,
'C',
4081,
'T',
12875,
'C',
4082,
'T',
12875,
'C',
4083,
'T',
3849,
'T',
3851,
'T',
12873,
'T',
3850,
'C',
4084,
4077,
0,
4085,
'C',
4085,
4086,
'C',
4087,
4076,
0,
4088,
'C',
4088,
4079,
81,
'C',
4089,
4077,
0,
4090,
'C',
4090,
4080,
'C',
4091,
4078,
4082,
'C',
4092,
4079,
4082,
'C',
4086,
4080,
4082,
'C',
4093,
'C',
4094,
'T',
12890,
'C',
4095,
'C',
4096,
'C',
4097,
3423,
81,
'C',
4098,
'C',
4099,
'C',
4100,
'C',
4101,
753,
597,
'C',
4102,
81,
'C',
4103,
881,
81,
'C',
4104,
591,
81,
'C',
4105,
56,
81,
'C',
4106,
56,
81,
81,
'C',
4107,
4108,
4109,
610,
'C',
4110,
'C',
4111,
4112,
'C',
4112,
753,
'C',
4113,
'C',
4114,
'T',
41,
'C',
4115,
'T',
5499,
'C',
4116,
'T',
154,
'C',
4117,
'T',
8285,
'C',
4118,
'T',
11479,
'C',
4119,
'T',
9959,
'C',
4120,
'T',
3851,
'C',
4121,
'T',
3849,
'C',
4122,
1140,
81,
'C',
4123,
'T',
3253,
'C',
4124,
'C',
4125,
81,
'C',
4126,
663,
664,
667,
668,
695,
669,
'C',
4127,
3753,
'C',
4128,
81,
'C',
4129,
'C',
4130,
334,
783,
'C',
4131,
4132,
610,
'C',
4133,
'C',
4134,
'T',
4236,
'T',
4235,
674,
557,
560,
555,
81,
81,
'C',
4135,
'T',
4237,
'C',
4136,
733,
60,
'C',
4137,
81,
'C',
4138,
4139,
1312,
6,
5,
8,
'C',
4140,
'C',
4141,
'C',
4142,
'C',
4143,
104,
81,
'C',
4144,
'C',
4145,
'C',
4146,
'C',
4147,
'C',
4148,
'C',
4149,
'C',
4150,
'C',
4151,
'C',
4152,
104,
104,
1647,
104,
1147,
104,
81,
81,
81,
81,
81,
'C',
4153,
'C',
4154,
4155,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
4155,
4156,
81,
81,
'C',
4156,
'C',
4157,
'C',
4158,
2557,
104,
81,
'C',
4159,
81,
'C',
4160,
'C',
4161,
'C',
4162,
104,
81,
'C',
4163,
4164,
81,
'C',
4164,
3917,
60,
60,
60,
60,
'C',
4165,
4166,
81,
'C',
4166,
4167,
4168,
'C',
4168,
'T',
10691,
4169,
3918,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
'C',
4167,
3917,
60,
60,
60,
60,
'C',
4170,
2446,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
4171,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
4172,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
2612,
104,
2612,
2612,
2612,
2612,
104,
2612,
2612,
2612,
2612,
104,
2612,
2612,
2612,
2612,
2612,
2612,
104,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
81,
81,
81,
81,
81,
81,
'C',
4173,
4168,
81,
'C',
4174,
663,
664,
695,
0,
1955,
2959,
695,
695,
695,
695,
669,
81,
4175,
81,
81,
81,
'C',
4175,
'T',
43,
104,
103,
81,
81,
'C',
4176,
555,
81,
'C',
4177,
2612,
2612,
2612,
2612,
104,
60,
60,
60,
60,
81,
'C',
4178,
81,
'C',
4179,
1613,
'C',
4180,
'T',
1,
81,
81,
'C',
4181,
'C',
4182,
'T',
4237,
81,
'C',
4183,
'T',
4236,
'T',
4237,
'C',
4184,
'T',
4237,
'C',
4185,
'T',
4236,
'T',
4236,
'C',
4186,
'C',
4187,
'T',
3253,
638,
639,
243,
'C',
4188,
638,
639,
638,
639,
60,
'C',
4189,
638,
639,
232,
'C',
4190,
'T',
3253,
'C',
4191,
3133,
638,
639,
270,
'C',
4192,
638,
639,
232,
'C',
4193,
638,
639,
638,
639,
60,
'C',
4194,
638,
639,
243,
'C',
4195,
'T',
3253,
'C',
4196,
3352,
'C',
4197,
4198,
'C',
4198,
4199,
'C',
4199,
'T',
12492,
'C',
4200,
538,
'C',
4201,
1927,
1358,
'C',
4202,
0,
3601,
4203,
'C',
4203,
81,
81,
'C',
4204,
4205,
4206,
1,
'C',
4207,
753,
'C',
4208,
753,
81,
'C',
4209,
'T',
4236,
'T',
4237,
2801,
4132,
4210,
'C',
4211,
'T',
154,
'T',
3253,
'T',
154,
753,
'C',
4212,
'C',
4213,
'C',
4214,
4215,
1,
'C',
4216,
'C',
4217,
753,
'C',
4218,
'C',
4210,
4219,
1,
'C',
4220,
'C',
4221,
60,
'C',
4222,
4223,
4225,
4226,
1225,
4227,
4228,
441,
77,
113,
105,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
113,
105,
105,
105,
105,
105,
81,
105,
4229,
4226,
81,
77,
113,
113,
105,
81,
4230,
1,
81,
113,
105,
785,
81,
81,
'C',
4223,
'T',
43,
4231,
4232,
4231,
4231,
4231,
4231,
4231,
4231,
4231,
4232,
4231,
4231,
4231,
4231,
4233,
4231,
4231,
4231,
4231,
4231,
4231,
4231,
4231,
4231,
4231,
1780,
4235,
4231,
4231,
4237,
4237,
4237,
4237,
4238,
1433,
4239,
4224,
1433,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
4227,
77,
113,
105,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
4241,
4228,
77,
113,
105,
105,
441,
105,
441,
105,
441,
105,
441,
441,
441,
441,
441,
441,
441,
4227,
77,
113,
105,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
105,
441,
4242,
1433,
441,
4242,
441,
4242,
441,
60,
60,
4243,
1,
81,
4244,
1,
81,
4245,
1,
81,
441,
441,
441,
441,
441,
4246,
1433,
60,
60,
4247,
4248,
1,
4249,
1433,
441,
4250,
1433,
9,
4251,
1,
81,
9,
9,
9,
9,
4252,
1433,
4253,
1433,
4254,
1433,
4255,
1433,
4256,
1433,
4257,
1433,
4258,
1433,
4259,
1433,
4260,
1433,
4261,
1433,
4262,
1433,
4263,
1433,
4264,
1433,
4265,
1433,
4266,
1433,
4267,
1433,
4268,
1433,
4269,
1433,
4270,
1433,
4271,
1433,
4272,
1433,
4273,
1433,
81,
'C',
4239,
4274,
4274,
4274,
4274,
4274,
4274,
4275,
4274,
4275,
4240,
1433,
113,
105,
105,
105,
105,
105,
81,
105,
3917,
60,
60,
60,
60,
4277,
4278,
4279,
1,
4280,
1,
441,
4281,
1,
81,
81,
81,
'C',
4275,
4276,
1227,
81,
81,
'C',
4274,
4282,
4283,
4284,
441,
'C',
4284,
'C',
4283,
'C',
4282,
'C',
4237,
1365,
1366,
4274,
60,
'C',
4235,
4285,
81,
81,
81,
81,
4286,
1433,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
60,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
60,
2915,
81,
4286,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4286,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
4276,
9,
60,
2908,
2915,
81,
'C',
4285,
4236,
1433,
4286,
4276,
9,
441,
81,
2913,
105,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4276,
9,
441,
81,
2913,
81,
4286,
4276,
9,
441,
81,
113,
105,
81,
81,
81,
81,
81,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4286,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
4276,
9,
441,
81,
113,
2913,
81,
'C',
4233,
4287,
4287,
4231,
4231,
4231,
4231,
4234,
1433,
'C',
4287,
4232,
'C',
4232,
4288,
81,
'C',
4288,
4282,
4283,
4284,
'C',
4231,
562,
81,
'C',
4289,
'C',
4290,
753,
'C',
4291,
'C',
4292,
81,
'C',
4293,
'T',
8390,
'T',
8390,
1095,
1319,
4294,
4295,
4296,
'S',
5,
'C',
4296,
81,
'C',
4295,
1323,
'C',
4294,
1324,
'C',
4297,
'C',
4298,
4299,
2446,
'C',
4299,
3925,
'C',
4300,
'T',
43,
'T',
43,
'T',
43,
65,
4299,
4299,
'C',
4301,
81,
'C',
4302,
2574,
2574,
2574,
2446,
'C',
4303,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
4304,
4304,
4304,
'C',
4304,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
43,
'C',
4305,
104,
81,
'C',
4306,
4307,
'C',
4308,
1516,
703,
4309,
'C',
4310,
2891,
104,
81,
81,
'C',
4311,
1516,
2446,
'C',
4312,
65,
2893,
4313,
'C',
4313,
'T',
154,
'T',
154,
'T',
5499,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3851,
'T',
3849,
'T',
3849,
'T',
43,
'C',
4314,
'C',
4315,
81,
81,
'C',
4316,
81,
81,
81,
'C',
4317,
2612,
104,
60,
81,
'C',
4307,
2446,
60,
'C',
4309,
'T',
43,
1516,
703,
'C',
4318,
2446,
'C',
4319,
'T',
43,
'T',
43,
1516,
703,
4320,
4320,
4320,
'C',
4321,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4322,
2446,
113,
'C',
4323,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4324,
2446,
113,
'C',
4325,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4326,
2446,
113,
'C',
4327,
61,
2574,
'C',
4328,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
4329,
4330,
4320,
4320,
4320,
4300,
4300,
4300,
4331,
4332,
4333,
4334,
4335,
4336,
4337,
4319,
4338,
4339,
4340,
4341,
4325,
'C',
4342,
'C',
4343,
3984,
2610,
2610,
104,
81,
81,
'C',
4344,
2446,
'C',
4329,
'T',
43,
'T',
43,
1516,
703,
'C',
4345,
2446,
'C',
4320,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4346,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4347,
2446,
'C',
4348,
'T',
43,
1516,
703,
'C',
4349,
'T',
212,
'C',
4332,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4350,
2446,
113,
'C',
4338,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4351,
2446,
'C',
4331,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4352,
61,
2574,
'C',
4353,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4354,
2446,
'C',
4355,
4356,
2574,
77,
113,
105,
1779,
4357,
4358,
1,
1779,
4359,
4358,
1779,
4357,
1779,
4359,
1779,
4357,
'C',
4356,
0,
1955,
1956,
4360,
113,
105,
1779,
1779,
1779,
1779,
1779,
1779,
'C',
4360,
81,
81,
'C',
4361,
1516,
703,
4356,
4356,
4304,
'C',
4362,
'T',
43,
1516,
703,
'C',
4363,
'T',
212,
'C',
4364,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4365,
2446,
113,
'C',
4366,
1516,
703,
'C',
4367,
61,
2574,
'C',
4368,
'C',
4369,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4370,
2446,
113,
'C',
4371,
'T',
43,
1516,
703,
'C',
4372,
'T',
212,
'C',
4340,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4373,
2446,
'C',
4337,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4374,
'C',
4375,
2446,
'C',
4336,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4376,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4377,
2446,
113,
'C',
4333,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4378,
2446,
'C',
4379,
2446,
60,
60,
4243,
81,
3917,
60,
60,
60,
60,
4243,
81,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
4380,
4278,
4280,
4381,
4382,
1,
2222,
2222,
2222,
2222,
4380,
4280,
4381,
2222,
2222,
2222,
2222,
4380,
4280,
4381,
2222,
2222,
2222,
2222,
113,
'C',
4330,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
703,
703,
4336,
'C',
4383,
'C',
4384,
'C',
4385,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4386,
2446,
113,
'C',
4387,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4388,
2446,
'C',
4341,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4389,
2446,
'C',
4335,
'T',
43,
'T',
43,
1516,
703,
'C',
4390,
2446,
'C',
4339,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4391,
2446,
'C',
4334,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
4392,
2446,
'C',
4393,
'C',
4394,
4395,
2806,
4396,
'C',
4396,
'T',
3,
1606,
81,
81,
'C',
4397,
104,
81,
'C',
4398,
2446,
'C',
4399,
'T',
43,
1516,
703,
4309,
'C',
4400,
4401,
81,
'C',
4401,
2874,
2874,
2874,
2874,
4381,
'C',
4402,
4403,
81,
'C',
4403,
4404,
4405,
'C',
4405,
'T',
10553,
4406,
4406,
4406,
4406,
4406,
4406,
4406,
4406,
4407,
4382,
81,
2222,
'C',
4406,
2222,
'C',
4404,
4406,
4406,
4406,
4406,
4381,
'C',
4408,
2446,
'C',
4409,
65,
703,
703,
703,
703,
703,
703,
703,
703,
'C',
4410,
703,
703,
703,
703,
2612,
104,
104,
663,
664,
695,
703,
104,
695,
703,
695,
104,
695,
703,
695,
104,
695,
703,
695,
104,
695,
695,
669,
703,
703,
703,
703,
2612,
104,
104,
663,
664,
695,
703,
104,
695,
703,
695,
104,
695,
703,
695,
104,
695,
703,
695,
104,
695,
695,
669,
104,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
4411,
4405,
81,
'C',
4412,
4413,
4414,
1433,
'C',
4415,
3983,
'C',
4416,
'T',
791,
2796,
'C',
4417,
'T',
1201,
2798,
'C',
4418,
2802,
1555,
'C',
4419,
'T',
433,
2811,
4420,
4420,
1613,
4420,
81,
81,
81,
81,
81,
'C',
4420,
'C',
4421,
'T',
793,
3974,
81,
'C',
4422,
'T',
7,
'T',
793,
4420,
4420,
4179,
4420,
81,
'C',
4423,
'T',
9,
'C',
4424,
4425,
4414,
'C',
4426,
'C',
4427,
'C',
4428,
4429,
4430,
4431,
4432,
1225,
4433,
4434,
1,
4435,
4431,
'C',
4429,
4436,
1545,
0,
4437,
0,
4438,
4226,
4439,
1545,
0,
0,
4437,
0,
4438,
4440,
4441,
4442,
4276,
9,
441,
81,
60,
2908,
2913,
105,
441,
2914,
81,
113,
4443,
113,
81,
81,
81,
81,
'C',
4443,
4444,
4445,
4446,
4447,
4448,
4449,
4450,
4451,
1,
4452,
81,
81,
'C',
4452,
553,
4453,
4453,
4454,
1,
4455,
'C',
4455,
530,
1194,
196,
4456,
4457,
4458,
4459,
4460,
1639,
4461,
553,
4462,
4463,
4460,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
4462,
530,
1194,
196,
81,
4464,
1,
'C',
4461,
4465,
4466,
1,
81,
'C',
4465,
553,
1518,
553,
1518,
'C',
4453,
4467,
1546,
'C',
4442,
4468,
81,
81,
'C',
4468,
4469,
1224,
4470,
1224,
4471,
1,
81,
9,
4472,
1,
4473,
1,
81,
2603,
60,
60,
60,
60,
'C',
4441,
4474,
81,
81,
'C',
4474,
4475,
4477,
4478,
4479,
4226,
4480,
3891,
561,
81,
81,
81,
81,
81,
'C',
4477,
4481,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
4481,
4482,
1797,
1273,
1269,
1273,
1620,
61,
1276,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
4482,
'T',
3849,
'T',
5279,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
4475,
4481,
'C',
4440,
'C',
4439,
4483,
4484,
4485,
4486,
1,
4487,
'C',
4487,
553,
1518,
'C',
4437,
0,
1311,
4488,
'C',
4488,
0,
4489,
'C',
4489,
81,
4490,
4491,
1,
81,
4492,
4491,
81,
81,
'C',
4436,
81,
'C',
4493,
4494,
'C',
4494,
0,
90,
4495,
4496,
1,
4497,
'C',
4497,
4498,
4499,
4500,
4501,
1,
81,
81,
'C',
4502,
'C',
4503,
'C',
4504,
'C',
4505,
81,
'C',
4506,
'C',
4507,
4508,
1224,
4509,
4226,
4510,
4511,
4226,
0,
4512,
4513,
1224,
0,
4514,
4515,
4226,
61,
4516,
4517,
4518,
1544,
4519,
4508,
61,
4516,
4519,
61,
4516,
4519,
4520,
4521,
1544,
4522,
4226,
4523,
1,
9,
4251,
9,
9,
4524,
1,
81,
2907,
58,
4525,
1,
81,
4526,
1,
81,
3917,
60,
60,
60,
60,
4527,
1,
81,
4528,
1,
81,
4529,
1,
81,
4530,
1,
4531,
1,
9,
9,
9,
9,
4532,
4508,
81,
4533,
4508,
81,
4276,
9,
441,
4508,
81,
4276,
9,
2908,
4534,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
3917,
60,
60,
60,
60,
81,
'C',
4533,
4535,
0,
4537,
4538,
'C',
4538,
'C',
4537,
1555,
81,
'C',
4535,
4539,
4540,
1,
81,
4541,
4542,
1,
105,
105,
105,
105,
4543,
1,
81,
9,
4542,
105,
105,
'C',
4539,
4544,
81,
'C',
4544,
'T',
43,
1514,
81,
'C',
4532,
0,
4537,
4546,
'C',
4546,
4547,
4548,
81,
'C',
4548,
846,
4549,
4550,
4551,
1,
696,
4552,
4551,
4553,
1,
4554,
4555,
1,
4556,
4557,
81,
4558,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
4557,
846,
'C',
4556,
846,
4559,
81,
'C',
4559,
4560,
4549,
4560,
'C',
4560,
'T',
19,
'T',
20,
'T',
21,
'T',
22,
'T',
23,
4561,
4562,
4551,
4561,
4551,
'C',
4562,
'T',
3238,
696,
4564,
'C',
4564,
4566,
'C',
4566,
'T',
26,
4567,
81,
'C',
4567,
'C',
4561,
4568,
'C',
4568,
4569,
4570,
1,
4571,
1,
4572,
1,
'C',
4554,
104,
4573,
81,
81,
77,
113,
105,
4558,
81,
81,
4558,
81,
81,
4558,
81,
4558,
81,
81,
4558,
81,
81,
4558,
81,
81,
4558,
81,
81,
113,
81,
'C',
4573,
4575,
4577,
4578,
4575,
81,
'C',
4578,
4580,
81,
'C',
4580,
104,
614,
4581,
1066,
104,
584,
'C',
4581,
'T',
3851,
'T',
3849,
'T',
4235,
'T',
4236,
'T',
4237,
4582,
1451,
614,
614,
1451,
614,
4583,
4584,
1,
4585,
81,
81,
'C',
4585,
104,
842,
104,
842,
81,
81,
81,
'C',
4583,
1095,
1319,
6,
'C',
4582,
4586,
'C',
4586,
4587,
'C',
4587,
4589,
4590,
4591,
4592,
4593,
4594,
4595,
4596,
4597,
4598,
4599,
4600,
'C',
4600,
4601,
4603,
4604,
4606,
4607,
4608,
4609,
4609,
4609,
4601,
4604,
4607,
'C',
4609,
4610,
4611,
'C',
4611,
'T',
7462,
0,
3964,
4612,
'C',
4612,
150,
1467,
'C',
4610,
'T',
3850,
0,
3964,
4613,
'C',
4613,
144,
1207,
'C',
4608,
0,
4614,
4615,
1,
4616,
4617,
81,
'C',
4617,
0,
81,
81,
4618,
'C',
4618,
'T',
3243,
4619,
4565,
4563,
1,
4621,
81,
'C',
4621,
'T',
3205,
'T',
3205,
'T',
3205,
696,
696,
696,
81,
'C',
4619,
4575,
4578,
'C',
4616,
4622,
104,
866,
81,
81,
'C',
4622,
4623,
4624,
0,
0,
4625,
4623,
4626,
4627,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
4627,
81,
'C',
4626,
'T',
3243,
104,
81,
'C',
4625,
'T',
15378,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
15362,
'T',
41,
'T',
41,
'T',
41,
'T',
15363,
4628,
663,
664,
775,
667,
668,
667,
668,
775,
695,
669,
6,
81,
81,
0,
4629,
0,
4630,
81,
'C',
4630,
81,
'C',
4629,
4631,
81,
'C',
4631,
'T',
15369,
'C',
4628,
'T',
41,
'T',
41,
'T',
41,
663,
664,
695,
736,
667,
668,
775,
667,
668,
746,
667,
668,
736,
695,
695,
669,
'C',
4624,
866,
81,
'C',
4606,
0,
4632,
4615,
4633,
81,
'C',
4633,
4605,
4563,
4634,
'C',
4634,
696,
'C',
4603,
0,
4614,
4616,
4635,
81,
'C',
4635,
0,
81,
81,
4636,
'C',
4636,
4575,
'T',
3243,
4602,
4565,
4578,
4621,
'C',
4599,
4637,
4639,
4640,
4642,
4609,
4609,
4637,
4640,
'C',
4642,
0,
4614,
4616,
4643,
81,
'C',
4643,
4644,
4645,
'T',
3243,
614,
0,
104,
4584,
81,
81,
4644,
4646,
81,
81,
'C',
4646,
4647,
4641,
1,
4649,
4650,
1,
4651,
'C',
4651,
696,
775,
616,
'C',
4647,
4575,
4578,
'C',
4645,
90,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
4639,
0,
866,
4614,
4652,
81,
'C',
4652,
'T',
3243,
'T',
3243,
0,
81,
81,
4653,
'C',
4653,
4575,
4578,
104,
4654,
4638,
1,
81,
'C',
4654,
4575,
4578,
'C',
4598,
4656,
4658,
4659,
4661,
4662,
4664,
4609,
4609,
4609,
4656,
4659,
4662,
'C',
4664,
0,
4632,
4665,
81,
'C',
4665,
4663,
1,
4666,
'C',
4666,
4667,
4668,
1,
4657,
1,
4660,
4669,
1,
4670,
'C',
4670,
'T',
3205,
'T',
3205,
696,
696,
'C',
4661,
0,
866,
4614,
4671,
81,
'C',
4671,
0,
81,
81,
4672,
'C',
4672,
4575,
'T',
3243,
4578,
4660,
4670,
'C',
4658,
0,
866,
4614,
4673,
81,
'C',
4673,
0,
81,
81,
4674,
'C',
4674,
4575,
'T',
3243,
4578,
4657,
4660,
4670,
'C',
4597,
4675,
4677,
4678,
4680,
4609,
4609,
4675,
4678,
'C',
4680,
0,
4632,
4681,
81,
'C',
4681,
4679,
4682,
1,
'C',
4677,
0,
4632,
4683,
'C',
4683,
4676,
4682,
'C',
4596,
4684,
4686,
4609,
4684,
'C',
4686,
0,
866,
4614,
4687,
81,
'C',
4687,
0,
81,
81,
4688,
'C',
4688,
4575,
'T',
3243,
'T',
3243,
4689,
4578,
4685,
1,
'C',
4689,
4575,
4578,
'C',
4595,
4691,
4693,
4694,
4696,
4697,
4699,
4609,
4609,
4609,
4691,
4694,
4697,
'C',
4699,
0,
866,
4614,
4700,
81,
'C',
4700,
0,
81,
81,
4701,
'C',
4701,
4575,
4575,
'T',
3243,
'T',
3530,
'T',
3243,
'T',
3243,
'T',
3243,
4578,
4578,
4698,
4702,
1,
4703,
'C',
4703,
'T',
3205,
4704,
'C',
4704,
'T',
3205,
'T',
3205,
4705,
4668,
4706,
696,
696,
6,
81,
'C',
4706,
'T',
3205,
'T',
3205,
'T',
3205,
696,
696,
696,
'C',
4696,
0,
4614,
4616,
4707,
81,
'C',
4707,
0,
81,
81,
4708,
'C',
4708,
4575,
'T',
3243,
4578,
4695,
4702,
4709,
'C',
4709,
'T',
3205,
4710,
'C',
4710,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
4705,
4706,
4711,
696,
696,
696,
6,
104,
6,
81,
'C',
4711,
696,
104,
6,
81,
'C',
4693,
0,
4614,
4616,
4712,
'C',
4712,
4713,
4714,
'T',
3243,
614,
0,
104,
4584,
81,
81,
4713,
4715,
81,
81,
81,
'C',
4715,
4575,
4578,
4692,
4702,
4716,
'C',
4716,
'T',
3210,
696,
696,
81,
'C',
4714,
90,
81,
81,
81,
'C',
4594,
4717,
4719,
4720,
4722,
4609,
4609,
4717,
4720,
'C',
4722,
0,
4632,
4723,
81,
'C',
4723,
4721,
1,
'C',
4719,
0,
4632,
4724,
81,
'C',
4724,
4718,
1,
'C',
4593,
4725,
4727,
4728,
4730,
4609,
4609,
4725,
4728,
'C',
4730,
0,
4632,
4731,
81,
'C',
4731,
4729,
4732,
1,
'C',
4727,
0,
4614,
4616,
4733,
81,
'C',
4733,
0,
81,
81,
4734,
'C',
4734,
4575,
'T',
3243,
'T',
3213,
4578,
4726,
4732,
696,
81,
'C',
4592,
4735,
4737,
4738,
4740,
4741,
4743,
4744,
4746,
4747,
4749,
4750,
4752,
4753,
4755,
4756,
4758,
4759,
4761,
4762,
4764,
4765,
4767,
4768,
4770,
4771,
4773,
4774,
4776,
4777,
4779,
4780,
4782,
4783,
4785,
4786,
4788,
4789,
4791,
4792,
4794,
4795,
4797,
4798,
4800,
4801,
4803,
4804,
4806,
4807,
4809,
4810,
4812,
4813,
4815,
4816,
4818,
4819,
4821,
4822,
4824,
4825,
4827,
4828,
4830,
4831,
4833,
4834,
4836,
4837,
4839,
4840,
4842,
4843,
4845,
4846,
4848,
4849,
4851,
4852,
4854,
4855,
4857,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4735,
4738,
4741,
4744,
4747,
4750,
4753,
4756,
4759,
4762,
4765,
4768,
4771,
4774,
4777,
4780,
4783,
4786,
4789,
4792,
4795,
4798,
4801,
4804,
4807,
4810,
4813,
4816,
4819,
4822,
4825,
4828,
4831,
4834,
4837,
4840,
4843,
4846,
4849,
4852,
4855,
'C',
4857,
0,
4632,
4858,
81,
'C',
4858,
4859,
'C',
4859,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
81,
0,
4864,
81,
'C',
4864,
4865,
'C',
4865,
4856,
4866,
1,
4867,
'C',
4867,
4868,
4870,
81,
81,
81,
81,
81,
81,
4868,
'C',
4870,
4871,
'C',
4871,
603,
4869,
1,
4872,
4869,
4872,
4869,
4872,
105,
'C',
4872,
4873,
'C',
4873,
'S',
5,
'C',
4862,
4874,
4875,
1,
4876,
4877,
4877,
4879,
'S',
2,
4880,
81,
'C',
4880,
'C',
4879,
4881,
4882,
4883,
4882,
4882,
4884,
6,
6,
6,
2560,
842,
6,
81,
81,
81,
81,
'C',
4884,
4885,
4885,
4886,
4887,
1,
4888,
'C',
4888,
6,
0,
4889,
81,
'C',
4889,
4891,
81,
81,
81,
'C',
4891,
4892,
1,
4893,
4894,
4895,
4896,
4897,
4894,
4896,
4898,
4896,
4899,
81,
81,
81,
81,
81,
81,
81,
'C',
4899,
'C',
4898,
4900,
4886,
4888,
'C',
4900,
4902,
4903,
4901,
4904,
1,
4905,
'C',
4905,
4906,
6,
81,
'C',
4906,
4907,
'C',
4907,
4908,
4909,
81,
81,
'C',
4909,
4910,
'C',
4910,
641,
'C',
4908,
6,
81,
'C',
4903,
4908,
4911,
4912,
4913,
81,
'C',
4913,
4908,
4914,
4909,
4915,
4915,
'C',
4915,
4916,
4917,
4902,
603,
4918,
4869,
4872,
4916,
81,
'C',
4918,
'C',
4917,
4871,
'C',
4914,
4916,
4914,
4902,
603,
4919,
4869,
4872,
'C',
4919,
'C',
4912,
4908,
4902,
4914,
4909,
4915,
4915,
'C',
4911,
4920,
4921,
4921,
4922,
4923,
4924,
4869,
4872,
4925,
4902,
4920,
4921,
4922,
'C',
4925,
4926,
4927,
4916,
4868,
4868,
4928,
603,
4929,
4869,
4872,
4912,
4912,
104,
6,
4926,
81,
'S',
5,
'C',
4929,
'C',
4928,
4916,
4926,
4916,
4868,
603,
4869,
4872,
4912,
'S',
5,
'C',
4927,
4868,
4902,
'C',
4924,
603,
'C',
4923,
4930,
4931,
4932,
4933,
4932,
4930,
4933,
4931,
4920,
4934,
4921,
4922,
'T',
15078,
4935,
4936,
4935,
4936,
4924,
4935,
4935,
4937,
4910,
4918,
4935,
4918,
4938,
4939,
4918,
4918,
4918,
4918,
'S',
5,
'S',
5,
'C',
4939,
'C',
4938,
'C',
4937,
'C',
4936,
4937,
4940,
'S',
5,
'C',
4940,
'C',
4935,
603,
'C',
4902,
4869,
4872,
'C',
4897,
4868,
4916,
4868,
'T',
43,
'T',
43,
4893,
4941,
4942,
4943,
4903,
4942,
4943,
4944,
4945,
4945,
4946,
4912,
4925,
3699,
4895,
81,
'C',
4946,
4916,
4868,
4947,
4948,
4871,
4871,
4947,
'C',
4948,
4871,
'C',
4945,
685,
'C',
4944,
4916,
'C',
4943,
4916,
4868,
4868,
4868,
4868,
4908,
4915,
4915,
4949,
4914,
4950,
4915,
4951,
81,
'C',
4951,
'T',
3377,
603,
4869,
4872,
81,
'S',
4,
'C',
4950,
603,
4869,
4872,
'C',
4949,
603,
685,
4869,
4872,
'C',
4942,
4952,
603,
4940,
4869,
4872,
104,
6,
'C',
4952,
4916,
603,
4869,
4872,
'C',
4941,
4946,
'C',
4896,
'T',
43,
'T',
43,
4894,
4953,
4953,
4954,
4955,
4953,
4953,
4953,
4956,
4953,
4886,
4888,
81,
'C',
4956,
4957,
4903,
4901,
4905,
81,
81,
'C',
4957,
4916,
4908,
603,
4939,
4869,
4872,
'C',
4955,
4958,
4959,
4901,
4905,
81,
'C',
4959,
4916,
4868,
4868,
4868,
'T',
15090,
'T',
15090,
'T',
15090,
'T',
15091,
'T',
15092,
'T',
15093,
'T',
15094,
'T',
15078,
4908,
4908,
4960,
4893,
4961,
4962,
4906,
4963,
4965,
4935,
4935,
4935,
4965,
51,
51,
4935,
4967,
4968,
4967,
51,
4935,
4969,
603,
4967,
4970,
4971,
4967,
4935,
603,
3102,
4972,
4971,
4972,
4971,
4972,
4971,
4970,
4971,
4972,
4971,
4973,
104,
6,
104,
6,
50,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'S',
15,
81,
81,
81,
81,
81,
81,
'S',
4,
'S',
18,
'S',
5,
'S',
19,
'S',
4,
'S',
4,
'C',
4973,
603,
4971,
4869,
4872,
'C',
4972,
4974,
4939,
'C',
4974,
'C',
4971,
4975,
4939,
4976,
4910,
4918,
'S',
5,
'S',
5,
'C',
4976,
'C',
4975,
'C',
4970,
4939,
'C',
4969,
4972,
4971,
'C',
4968,
4962,
4952,
4911,
4912,
81,
'C',
4967,
'C',
4965,
603,
4975,
4966,
1,
'C',
4963,
4868,
'T',
15078,
4942,
603,
4952,
4912,
4924,
603,
51,
4964,
1,
81,
81,
'C',
4962,
4902,
'C',
4961,
'C',
4960,
4907,
'C',
4958,
4947,
'C',
4954,
4977,
4957,
4903,
4901,
4905,
81,
'C',
4977,
4916,
4868,
4916,
4960,
4978,
4909,
4903,
4979,
104,
6,
81,
'C',
4979,
4868,
4980,
4924,
4924,
4924,
4924,
4935,
51,
4935,
4935,
4935,
4929,
4910,
4918,
4918,
4919,
4919,
4910,
4918,
4918,
4929,
4919,
4910,
4918,
4918,
4929,
4929,
4910,
4918,
4918,
4919,
4919,
4910,
4918,
4918,
4929,
4919,
4910,
4918,
4918,
4929,
4910,
4918,
4910,
4918,
4918,
4919,
4910,
4918,
4918,
4919,
4918,
4910,
4918,
4918,
4919,
4910,
4918,
4918,
4919,
4910,
4918,
4918,
4910,
4918,
4869,
4872,
621,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
50,
621,
81,
81,
81,
'C',
4980,
'C',
4978,
4907,
'C',
4953,
4912,
4903,
4901,
4905,
81,
'C',
4895,
'T',
154,
'T',
3253,
'T',
4235,
'T',
4236,
'T',
4237,
5,
8,
5,
8,
81,
'C',
4894,
4947,
4885,
4946,
4885,
4955,
4956,
4981,
4956,
4954,
4955,
4956,
4953,
4953,
4956,
4953,
4886,
4888,
'S',
5,
81,
'C',
4981,
4913,
4903,
4901,
4905,
81,
'C',
4893,
'T',
15078,
4982,
4893,
'C',
4982,
4926,
4868,
4868,
4915,
4914,
'C',
4885,
4901,
4905,
'C',
4883,
4885,
4956,
4981,
4956,
4981,
4983,
4984,
4912,
4885,
4886,
4888,
6,
81,
'C',
4984,
4868,
4916,
'T',
43,
4942,
4943,
'C',
4983,
4868,
4868,
4868,
4868,
4868,
'T',
43,
'T',
3232,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
4984,
4984,
4901,
4925,
4913,
4959,
4905,
4955,
4985,
4912,
4925,
4959,
4925,
4942,
4913,
4925,
4903,
4986,
4893,
4907,
4957,
4912,
4959,
4988,
4957,
4903,
4984,
4913,
4925,
4901,
4905,
1472,
81,
81,
'C',
4988,
4868,
4947,
4868,
4868,
4916,
'T',
43,
4893,
4989,
4957,
4903,
4942,
4943,
4957,
4903,
4957,
4903,
4957,
4957,
4912,
4903,
4957,
4942,
4912,
4903,
4957,
4912,
4903,
4957,
4957,
4912,
4903,
4957,
4942,
4912,
4903,
4957,
4903,
4957,
4903,
4957,
4912,
4903,
4957,
4957,
4912,
4903,
4957,
4903,
4957,
4903,
4957,
4942,
4912,
4903,
4957,
4903,
61,
'C',
4989,
4916,
4916,
4916,
4916,
4916,
4916,
4868,
4916,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
4978,
4946,
4943,
4925,
4946,
4943,
4925,
4946,
4943,
4925,
4946,
4943,
4925,
4946,
4943,
4925,
4943,
105,
'C',
4986,
4575,
4578,
'C',
4985,
'T',
43,
4978,
'C',
4882,
967,
4990,
'C',
4990,
4946,
4946,
4942,
4913,
'C',
4881,
4893,
'C',
4877,
4991,
4992,
4893,
696,
4943,
4945,
4925,
4991,
81,
'C',
4992,
4946,
'C',
4876,
4993,
4886,
4888,
'C',
4993,
4885,
4885,
'C',
4860,
4994,
'C',
4994,
4995,
107,
81,
'C',
4995,
4996,
4997,
'T',
43,
834,
4583,
1318,
1318,
1318,
1318,
4998,
4999,
4996,
'C',
4999,
4916,
'T',
8390,
4871,
4957,
4871,
4913,
4902,
'C',
4998,
4916,
'T',
8390,
'T',
8390,
4935,
4869,
4872,
'C',
4997,
866,
81,
'C',
4854,
0,
4632,
5000,
81,
'C',
5000,
5001,
'C',
5001,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5002,
81,
'C',
5002,
5003,
'C',
5003,
4853,
4866,
5004,
'C',
5004,
4868,
81,
81,
81,
81,
81,
81,
'C',
4851,
0,
4632,
5005,
81,
'C',
5005,
5006,
'C',
5006,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5007,
81,
'C',
5007,
5008,
'C',
5008,
4850,
4866,
5009,
'C',
5009,
4868,
81,
81,
81,
81,
81,
81,
'C',
4848,
0,
4632,
5010,
81,
'C',
5010,
5011,
'C',
5011,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5012,
81,
'C',
5012,
5013,
'C',
5013,
4847,
4866,
5014,
'C',
5014,
4868,
81,
81,
81,
81,
81,
81,
'C',
4845,
0,
4632,
5015,
81,
'C',
5015,
5016,
'C',
5016,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5017,
81,
'C',
5017,
5018,
'C',
5018,
4844,
4866,
5019,
'C',
5019,
4868,
81,
81,
81,
81,
81,
81,
'C',
4842,
0,
4632,
5020,
81,
'C',
5020,
5021,
'C',
5021,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5022,
81,
'C',
5022,
5023,
'C',
5023,
4841,
4866,
5024,
'C',
5024,
4868,
81,
81,
81,
81,
81,
81,
'C',
4839,
0,
4632,
5025,
81,
'C',
5025,
5026,
'C',
5026,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5027,
81,
'C',
5027,
5028,
'C',
5028,
4838,
4866,
5029,
'C',
5029,
4868,
81,
81,
81,
81,
81,
81,
'C',
4836,
0,
4632,
5030,
81,
'C',
5030,
5031,
'C',
5031,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5032,
81,
'C',
5032,
5033,
'C',
5033,
4835,
4866,
5034,
'C',
5034,
4868,
81,
81,
81,
81,
81,
81,
'C',
4833,
0,
4632,
5035,
81,
'C',
5035,
5036,
'C',
5036,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5037,
81,
'C',
5037,
5038,
'C',
5038,
4832,
4866,
5039,
'C',
5039,
4868,
81,
81,
81,
81,
81,
81,
'C',
4830,
0,
4632,
5040,
81,
'C',
5040,
5041,
'C',
5041,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5042,
81,
'C',
5042,
5043,
'C',
5043,
4829,
4866,
5044,
'C',
5044,
4868,
81,
81,
81,
81,
81,
81,
'C',
4827,
0,
4632,
5045,
81,
'C',
5045,
5046,
'C',
5046,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
0,
5047,
81,
'C',
5047,
5048,
'C',
5048,
4826,
4866,
5049,
'C',
5049,
4868,
81,
81,
81,
81,
81,
81,
'C',
4824,
0,
4632,
5050,
81,
'C',
5050,
5051,
'C',
5051,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
81,
0,
5052,
81,
'C',
5052,
5053,
'C',
5053,
4823,
4866,
5054,
'C',
5054,
4868,
81,
81,
81,
81,
81,
81,
'C',
4821,
0,
4632,
5055,
81,
'C',
5055,
5056,
'C',
5056,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5057,
81,
'C',
5057,
5058,
'C',
5058,
4820,
4866,
5059,
'C',
5059,
4868,
81,
81,
81,
81,
81,
81,
'C',
4818,
0,
4632,
5060,
81,
'C',
5060,
5061,
'C',
5061,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5062,
81,
'C',
5062,
5063,
'C',
5063,
4817,
4866,
5064,
'C',
5064,
4868,
81,
81,
81,
81,
81,
81,
'C',
4815,
0,
4632,
5065,
81,
'C',
5065,
5066,
'C',
5066,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5067,
81,
'C',
5067,
5068,
'C',
5068,
4814,
4866,
5069,
'C',
5069,
4868,
81,
81,
81,
81,
81,
81,
'C',
4812,
0,
4632,
5070,
81,
'C',
5070,
5071,
'C',
5071,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
0,
5072,
81,
'C',
5072,
5073,
'C',
5073,
4811,
4866,
5074,
'C',
5074,
4868,
81,
81,
81,
81,
81,
81,
'C',
4809,
0,
4632,
5075,
81,
'C',
5075,
5076,
'C',
5076,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
81,
0,
5077,
81,
'C',
5077,
5078,
'C',
5078,
4808,
4866,
5079,
'C',
5079,
4868,
81,
81,
81,
81,
81,
81,
'C',
4806,
0,
4632,
5080,
81,
'C',
5080,
5081,
'C',
5081,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5082,
81,
'C',
5082,
5083,
'C',
5083,
4805,
4866,
5084,
'C',
5084,
4868,
81,
81,
81,
81,
81,
81,
'C',
4803,
0,
4632,
5085,
81,
'C',
5085,
5086,
'C',
5086,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5087,
81,
'C',
5087,
5088,
'C',
5088,
4802,
4866,
5089,
'C',
5089,
4868,
81,
81,
81,
81,
81,
81,
'C',
4800,
0,
4632,
5090,
81,
'C',
5090,
5091,
'C',
5091,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5092,
81,
'C',
5092,
5093,
'C',
5093,
4799,
4866,
5094,
'C',
5094,
4868,
81,
81,
81,
81,
81,
81,
'C',
4797,
0,
4632,
5095,
81,
'C',
5095,
5096,
'C',
5096,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
0,
5097,
81,
'C',
5097,
5098,
'C',
5098,
4796,
4866,
5099,
'C',
5099,
4868,
81,
81,
81,
81,
81,
81,
'C',
4794,
0,
4632,
5100,
81,
'C',
5100,
5101,
'C',
5101,
4860,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
0,
5102,
81,
'C',
5102,
5103,
'C',
5103,
4793,
4866,
5104,
'C',
5104,
4868,
81,
81,
81,
81,
81,
81,
'C',
4791,
0,
4632,
5105,
81,
'C',
5105,
5106,
'C',
5106,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5107,
81,
'C',
5107,
5108,
'C',
5108,
4790,
4866,
5109,
'C',
5109,
4868,
81,
81,
81,
81,
81,
81,
'C',
4788,
0,
4632,
5110,
81,
'C',
5110,
5111,
'C',
5111,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5112,
81,
'C',
5112,
5113,
'C',
5113,
4787,
4866,
5114,
'C',
5114,
4868,
81,
81,
81,
81,
81,
81,
'C',
4785,
0,
4632,
5115,
81,
'C',
5115,
5116,
'C',
5116,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
0,
5117,
81,
'C',
5117,
5118,
'C',
5118,
4784,
4866,
5119,
'C',
5119,
4868,
81,
81,
81,
81,
81,
81,
'C',
4782,
0,
4632,
5120,
81,
'C',
5120,
5121,
'C',
5121,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5122,
81,
'C',
5122,
5123,
'C',
5123,
4781,
4866,
5124,
'C',
5124,
4868,
81,
81,
81,
81,
81,
81,
'C',
4779,
0,
4632,
5125,
81,
'C',
5125,
5126,
'C',
5126,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
0,
5127,
81,
'C',
5127,
5128,
'C',
5128,
4778,
4866,
5129,
'C',
5129,
4868,
81,
81,
81,
81,
81,
81,
'C',
4776,
0,
4632,
5130,
81,
'C',
5130,
5131,
'C',
5131,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5132,
81,
'C',
5132,
5133,
'C',
5133,
4775,
4866,
5134,
'C',
5134,
4868,
81,
81,
81,
81,
81,
81,
'C',
4773,
0,
4632,
5135,
81,
'C',
5135,
5136,
'C',
5136,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5137,
81,
'C',
5137,
5138,
'C',
5138,
4772,
4866,
5139,
'C',
5139,
4868,
81,
81,
81,
81,
81,
81,
'C',
4770,
0,
4632,
5140,
81,
'C',
5140,
5141,
'C',
5141,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5142,
81,
'C',
5142,
5143,
'C',
5143,
4769,
4866,
5144,
'C',
5144,
4868,
81,
81,
81,
81,
81,
81,
'C',
4767,
0,
4632,
5145,
81,
'C',
5145,
5146,
'C',
5146,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5147,
81,
'C',
5147,
5148,
'C',
5148,
4766,
4866,
5149,
'C',
5149,
4868,
81,
81,
81,
81,
81,
81,
'C',
4764,
0,
4632,
5150,
81,
'C',
5150,
5151,
'C',
5151,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5152,
81,
'C',
5152,
5153,
'C',
5153,
4763,
4866,
5154,
'C',
5154,
4868,
81,
81,
81,
81,
81,
81,
'C',
4761,
0,
4632,
5155,
81,
'C',
5155,
5156,
'C',
5156,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5157,
81,
'C',
5157,
5158,
'C',
5158,
4760,
4866,
5159,
'C',
5159,
4868,
81,
81,
81,
81,
81,
81,
'C',
4758,
0,
4632,
5160,
81,
'C',
5160,
5161,
'C',
5161,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5162,
81,
'C',
5162,
5163,
'C',
5163,
4757,
4866,
5164,
'C',
5164,
4868,
81,
81,
81,
81,
81,
81,
'C',
4755,
0,
4632,
5165,
81,
'C',
5165,
5166,
'C',
5166,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5167,
81,
'C',
5167,
5168,
'C',
5168,
4754,
4866,
5169,
'C',
5169,
4868,
81,
81,
81,
81,
81,
81,
'C',
4752,
0,
4632,
5170,
81,
'C',
5170,
5171,
'C',
5171,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5172,
81,
'C',
5172,
5173,
'C',
5173,
4751,
4866,
5174,
'C',
5174,
4868,
81,
81,
81,
81,
81,
81,
'C',
4749,
0,
4632,
5175,
81,
'C',
5175,
5176,
'C',
5176,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5177,
81,
'C',
5177,
5178,
'C',
5178,
4748,
4866,
5179,
'C',
5179,
4868,
81,
81,
81,
81,
81,
81,
'C',
4746,
0,
4632,
5180,
81,
'C',
5180,
5181,
'C',
5181,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5182,
81,
'C',
5182,
5183,
'C',
5183,
4745,
4866,
5184,
'C',
5184,
4868,
81,
81,
81,
81,
81,
81,
'C',
4743,
0,
4632,
5185,
81,
'C',
5185,
5186,
'C',
5186,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5187,
81,
'C',
5187,
5188,
'C',
5188,
4742,
4866,
5189,
'C',
5189,
4868,
81,
81,
81,
81,
81,
81,
'C',
4740,
0,
4632,
5190,
81,
'C',
5190,
5191,
'C',
5191,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
81,
81,
0,
5192,
81,
'C',
5192,
5193,
'C',
5193,
4739,
4866,
5194,
'C',
5194,
4868,
81,
81,
81,
81,
81,
81,
'C',
4737,
0,
4632,
5195,
81,
'C',
5195,
5196,
'C',
5196,
4860,
4860,
4860,
4860,
4860,
4860,
4862,
81,
81,
81,
0,
5197,
81,
'C',
5197,
5198,
'C',
5198,
4736,
4866,
5199,
'C',
5199,
4868,
81,
81,
81,
81,
81,
81,
'C',
4591,
5200,
5202,
5203,
5205,
5206,
5208,
5209,
5211,
5212,
5214,
5215,
5217,
5218,
5220,
5221,
5223,
5224,
5226,
5227,
5229,
5230,
5232,
5233,
5235,
5236,
5238,
5239,
5241,
5242,
5244,
5245,
5247,
5248,
5250,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
5200,
5203,
5206,
5209,
5212,
5215,
5218,
5221,
5224,
5227,
5230,
5233,
5236,
5239,
5242,
5245,
5248,
'C',
5250,
0,
4632,
5251,
'C',
5251,
5249,
5252,
1,
5253,
'C',
5253,
696,
553,
5254,
1,
5255,
5256,
1,
553,
5254,
5255,
5256,
553,
5254,
5255,
5256,
553,
5254,
5255,
5256,
553,
5254,
5255,
5256,
553,
5254,
5255,
5256,
5257,
'C',
5257,
3108,
5258,
5258,
5258,
5258,
5258,
5258,
'C',
5258,
5255,
81,
'C',
5255,
81,
81,
'C',
5247,
0,
4632,
5259,
'C',
5259,
5246,
5252,
5260,
'C',
5260,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
696,
553,
5254,
5255,
5256,
5261,
'C',
5261,
5255,
5255,
5255,
5258,
3108,
5255,
105,
105,
105,
105,
105,
'C',
5244,
5262,
5263,
4614,
0,
5262,
5264,
'C',
5264,
0,
81,
81,
5265,
'C',
5265,
'T',
3243,
616,
5243,
5266,
5252,
5267,
104,
4584,
81,
'C',
5267,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5268,
5269,
5270,
6,
6,
81,
81,
'C',
5270,
5271,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
'C',
5271,
5255,
5255,
3108,
5258,
'C',
5269,
5272,
5273,
5272,
5272,
5272,
5272,
5272,
5272,
5272,
5255,
5274,
5255,
5274,
5255,
5274,
5255,
5274,
5255,
5274,
5255,
5274,
5255,
5274,
5255,
5274,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5275,
5276,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
105,
105,
5272,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5276,
5277,
5254,
5255,
5278,
5275,
5275,
5279,
5280,
'C',
5280,
5281,
5282,
5281,
5281,
5281,
5281,
5281,
5281,
5281,
5277,
5283,
5284,
5285,
5284,
5284,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5286,
5284,
5254,
5255,
5287,
5254,
5255,
5288,
5287,
5274,
5284,
5284,
5284,
5284,
5289,
5284,
5290,
5284,
5284,
5284,
5284,
5284,
5284,
5284,
5284,
5284,
5258,
5281,
'C',
5290,
5254,
5255,
5287,
5254,
5255,
5287,
5254,
5255,
5287,
5274,
5274,
'C',
5289,
5254,
5255,
5291,
5254,
5255,
5291,
5254,
5255,
5291,
5274,
5274,
'C',
5291,
5292,
5292,
'C',
5292,
5294,
5295,
5294,
'C',
5295,
61,
105,
'C',
5288,
81,
'C',
5287,
81,
'C',
5286,
5254,
5255,
5291,
5254,
5255,
5291,
5254,
5255,
5291,
5274,
5274,
'C',
5285,
5254,
5255,
5291,
5254,
5255,
5291,
5254,
5255,
5296,
5274,
5274,
'C',
5296,
5292,
'C',
5284,
2905,
'S',
20,
'S',
4,
'S',
5,
'S',
4,
'C',
5283,
5254,
5255,
5291,
5254,
5255,
5291,
5254,
5255,
5296,
5274,
5274,
'C',
5282,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5279,
5280,
5255,
5255,
'C',
5278,
5292,
5292,
'C',
5277,
5297,
5298,
5297,
5254,
5255,
5296,
5284,
5287,
5297,
'S',
5,
'C',
5298,
5254,
5255,
'C',
5275,
5299,
5284,
'C',
5299,
5300,
5280,
5301,
1,
9,
81,
'C',
5300,
5302,
5302,
5302,
5302,
104,
56,
5301,
9,
81,
'C',
5302,
5303,
5,
8,
'S',
21,
'S',
22,
'S',
3,
'C',
5303,
2372,
'C',
5274,
81,
'C',
5273,
5254,
5255,
105,
'C',
5268,
'T',
3399,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
5254,
5255,
696,
553,
5254,
5255,
5256,
5254,
5255,
5254,
5255,
'C',
5263,
866,
81,
'C',
5241,
0,
4632,
5304,
'C',
5304,
5240,
5266,
5268,
5305,
'C',
5305,
5271,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
'C',
5238,
0,
4632,
5306,
'C',
5306,
5237,
5266,
5268,
5307,
'C',
5307,
5271,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5235,
0,
4632,
5308,
'C',
5308,
5234,
5309,
5252,
5310,
'C',
5310,
5254,
5255,
696,
5311,
'C',
5311,
'T',
3365,
5255,
3108,
3579,
'C',
5232,
0,
4632,
5312,
'C',
5312,
5231,
5309,
5310,
'C',
5229,
5313,
5314,
4614,
0,
5313,
5315,
'C',
5315,
0,
81,
81,
5316,
'C',
5316,
'T',
3243,
616,
5228,
5252,
5317,
'C',
5317,
696,
696,
5318,
'C',
5318,
5319,
5319,
5319,
5319,
5319,
104,
6,
81,
81,
'C',
5319,
3108,
3108,
104,
597,
104,
597,
81,
81,
'C',
5314,
866,
81,
'C',
5226,
0,
4632,
5320,
'C',
5320,
5225,
5309,
5310,
'C',
5223,
0,
4632,
5321,
81,
'C',
5321,
5222,
5309,
5310,
'C',
5220,
0,
4632,
5322,
'C',
5322,
5219,
5309,
5310,
'C',
5217,
0,
4632,
5323,
'C',
5323,
5216,
5309,
5310,
'C',
5214,
0,
4632,
5324,
'C',
5324,
5213,
5309,
5310,
'C',
5211,
0,
4632,
5325,
'C',
5325,
5210,
5309,
5310,
'C',
5208,
0,
4632,
5326,
'C',
5326,
5207,
5309,
5310,
'C',
5205,
0,
4632,
5327,
'C',
5327,
5204,
5252,
5328,
'C',
5328,
696,
696,
696,
'C',
5202,
0,
4632,
5329,
81,
'C',
5329,
5201,
5252,
5330,
'C',
5330,
553,
5254,
5255,
5256,
5254,
5255,
5254,
5255,
5254,
5255,
553,
5254,
5255,
5256,
696,
5331,
81,
81,
'C',
5331,
5332,
5334,
5332,
5332,
5332,
5332,
5332,
5332,
5332,
553,
5254,
5255,
5256,
5255,
5254,
5255,
5274,
5255,
5255,
5255,
5255,
5255,
5255,
5255,
5332,
'C',
5334,
61,
61,
61,
61,
61,
61,
61,
61,
61,
5256,
5335,
'C',
5335,
'T',
3253,
'T',
3253,
553,
5254,
5255,
'C',
4590,
5336,
5337,
5338,
5339,
5340,
5342,
5343,
5345,
5346,
5348,
5349,
5351,
5352,
5354,
5355,
5357,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
4609,
5336,
5338,
5340,
5343,
5346,
5349,
5352,
5355,
'C',
5357,
0,
4614,
4616,
5358,
'C',
5358,
0,
81,
81,
5359,
'C',
5359,
4575,
'T',
3243,
'T',
3205,
4578,
4565,
4621,
5356,
5360,
4668,
'C',
5354,
0,
866,
4614,
5361,
81,
'C',
5361,
0,
81,
81,
5362,
'C',
5362,
4575,
'T',
3243,
'T',
3243,
4578,
616,
5353,
4668,
5363,
104,
4584,
5364,
81,
81,
'C',
5364,
104,
842,
81,
81,
'C',
5363,
'T',
3205,
'T',
3205,
'T',
3205,
696,
696,
696,
'C',
5351,
0,
4614,
4616,
5365,
81,
'C',
5365,
0,
81,
81,
5366,
'C',
5366,
4575,
'T',
3243,
4578,
5350,
4668,
5367,
'C',
5367,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
696,
696,
696,
6,
81,
'C',
5348,
0,
4614,
4616,
5368,
81,
'C',
5368,
0,
81,
81,
5369,
'C',
5369,
4575,
'T',
3243,
4578,
5347,
4668,
'C',
5345,
0,
4614,
4616,
5370,
'C',
5370,
0,
81,
81,
5371,
'C',
5371,
4575,
'T',
3243,
'T',
3205,
4578,
4602,
4621,
5344,
5360,
'C',
5342,
0,
866,
4614,
5372,
81,
'C',
5372,
0,
81,
81,
5373,
'C',
5373,
4575,
'T',
3243,
'T',
3243,
4578,
616,
5341,
4668,
5374,
104,
4584,
5364,
81,
'C',
5374,
'T',
3205,
'T',
3205,
'T',
3205,
696,
696,
696,
'C',
5339,
0,
4614,
4616,
5375,
81,
'C',
5375,
0,
81,
81,
5376,
'C',
5376,
4575,
'T',
3243,
4578,
4705,
4706,
'C',
5337,
0,
4632,
5377,
81,
'C',
5377,
4667,
'C',
4589,
5378,
5380,
5381,
5382,
5383,
5385,
4609,
4609,
4609,
5378,
5381,
5383,
'C',
5385,
0,
4632,
5386,
'C',
5386,
5384,
4650,
'C',
5382,
0,
4614,
4616,
5387,
81,
'C',
5387,
0,
81,
81,
5388,
'C',
5388,
'T',
3243,
5389,
4649,
'C',
5389,
4575,
4578,
'C',
5380,
0,
4614,
4616,
5391,
81,
'C',
5391,
0,
81,
81,
5392,
'C',
5392,
4575,
'T',
3243,
4578,
5379,
4650,
5393,
'C',
5393,
5225,
5310,
5225,
5310,
696,
5225,
5310,
5394,
'C',
5394,
5254,
5255,
5278,
5395,
5396,
5397,
5398,
5311,
'C',
5398,
293,
2372,
5,
8,
81,
'C',
5397,
5399,
3579,
'C',
5399,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
5292,
81,
105,
105,
105,
105,
81,
81,
81,
81,
81,
81,
81,
'S',
23,
'S',
23,
'S',
23,
'S',
23,
'C',
5396,
5397,
104,
597,
81,
81,
81,
81,
'C',
5395,
5400,
5401,
5284,
'C',
5401,
5402,
'C',
5402,
5302,
5397,
81,
'C',
5400,
5401,
5284,
'C',
4577,
4579,
1,
5403,
'C',
5403,
144,
1207,
144,
1207,
144,
1207,
'C',
4549,
'T',
154,
'T',
154,
696,
749,
'C',
4547,
'C',
4519,
5404,
81,
81,
4534,
81,
81,
5405,
1,
81,
5406,
1,
81,
5407,
1,
81,
5408,
1,
81,
'C',
5404,
4473,
81,
'C',
4510,
546,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5409,
4536,
4545,
1515,
5410,
81,
'C',
5410,
4540,
553,
1518,
4541,
4542,
'C',
5411,
5412,
4990,
'C',
5412,
696,
5413,
6,
81,
'C',
5413,
'T',
26,
'S',
5,
'C',
5414,
'T',
3253,
5415,
4967,
4967,
293,
2372,
5416,
597,
6,
6,
5,
8,
81,
81,
81,
'C',
5416,
'C',
5415,
4895,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
5417,
'C',
5417,
5292,
'C',
5418,
5419,
6,
81,
81,
'C',
5419,
5420,
5421,
5422,
5423,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5302,
5420,
5422,
'C',
5423,
5424,
4549,
81,
'C',
5424,
5425,
114,
'C',
5421,
5425,
4549,
81,
'C',
5426,
5419,
'C',
5427,
0,
5428,
5429,
81,
'C',
5429,
5411,
'C',
5428,
5430,
'S',
2,
529,
'S',
2,
529,
'C',
5430,
'T',
3205,
5431,
4569,
5431,
4571,
5432,
81,
81,
'C',
5432,
'T',
22,
'T',
22,
5433,
81,
81,
'C',
5433,
'T',
154,
749,
'C',
5431,
0,
5428,
5434,
81,
'C',
5434,
5435,
81,
'C',
5435,
696,
5413,
'C',
5436,
'T',
26,
'C',
5437,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
26,
696,
5438,
5439,
967,
6,
81,
81,
'C',
5439,
'T',
3205,
'T',
3205,
'T',
3220,
'T',
3205,
'T',
3220,
'T',
3205,
'T',
3205,
'T',
3222,
'T',
3205,
696,
967,
5433,
5436,
5436,
5436,
5436,
967,
3108,
81,
81,
'C',
5440,
'T',
22,
'T',
3218,
81,
'C',
5441,
'T',
21,
'C',
5438,
'T',
3205,
'C',
5442,
'C',
5443,
'C',
5444,
'C',
5445,
'T',
212,
'T',
212,
5446,
'C',
5447,
'T',
43,
'T',
43,
4978,
'C',
5448,
4898,
4896,
81,
'C',
5449,
'T',
212,
5446,
'C',
5450,
'T',
41,
'C',
5451,
'T',
212,
'T',
212,
'C',
5452,
104,
'C',
5453,
'T',
43,
'T',
43,
'C',
5454,
'C',
5455,
'C',
5456,
'C',
5457,
'C',
5458,
'C',
5459,
'C',
5460,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5461,
'C',
5462,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5463,
'C',
5464,
105,
81,
105,
81,
105,
81,
81,
105,
81,
81,
81,
81,
81,
81,
'C',
5465,
'C',
5466,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5467,
'C',
5468,
81,
81,
81,
81,
81,
'C',
5469,
'C',
5470,
81,
81,
81,
81,
'C',
5471,
'C',
5472,
81,
81,
81,
81,
'C',
5473,
'C',
5474,
81,
81,
81,
81,
'C',
5475,
'C',
5476,
'C',
5477,
'C',
5478,
4564,
'C',
5479,
'T',
22,
5433,
5480,
81,
'C',
5480,
'T',
21,
5433,
3108,
'C',
5481,
'T',
26,
967,
749,
749,
6,
6,
81,
81,
'C',
5482,
'T',
22,
'T',
22,
3108,
5433,
749,
5483,
'C',
5483,
'T',
21,
749,
81,
'C',
5484,
'C',
5485,
'T',
3205,
'T',
3205,
'T',
26,
'T',
26,
'T',
3205,
'T',
3205,
'T',
3205,
'T',
3205,
5486,
5486,
5487,
5487,
967,
749,
749,
6,
6,
81,
'C',
5487,
5488,
'C',
5488,
2372,
5,
8,
'S',
21,
'S',
22,
'S',
3,
'C',
5486,
5302,
'C',
5489,
'T',
22,
'T',
22,
3108,
749,
749,
5490,
5490,
'C',
5490,
'T',
21,
749,
'C',
5491,
'T',
3205,
'C',
5492,
'T',
26,
'C',
5493,
'T',
22,
'C',
5494,
'T',
21,
'C',
5495,
'T',
3205,
'C',
5496,
5497,
5498,
'C',
5498,
'T',
26,
967,
749,
967,
749,
6,
6,
'C',
5497,
'T',
26,
967,
749,
967,
749,
6,
6,
'C',
5499,
'T',
22,
'T',
22,
3108,
749,
749,
5500,
5500,
'C',
5500,
'T',
21,
749,
'C',
5501,
'C',
5502,
5503,
5504,
'C',
5504,
'T',
3205,
'T',
3205,
'T',
26,
'T',
3205,
967,
749,
6,
'C',
5503,
'T',
3205,
'T',
3205,
'T',
26,
'T',
3205,
967,
749,
6,
'C',
5505,
'T',
3205,
'T',
22,
5433,
5506,
6,
81,
81,
'C',
5506,
'T',
21,
5433,
3108,
'C',
5507,
'T',
3205,
'C',
5508,
663,
664,
5509,
5509,
669,
'C',
5509,
2560,
667,
668,
695,
81,
'C',
5510,
'S',
5,
'S',
5,
'C',
5511,
'C',
5512,
'T',
41,
'T',
41,
663,
664,
667,
668,
667,
668,
695,
669,
'C',
5513,
81,
'C',
5514,
293,
2372,
293,
2372,
5515,
5516,
5517,
5515,
5518,
5517,
597,
6,
6,
81,
'C',
5518,
5519,
5521,
5522,
5523,
5524,
5525,
5526,
5527,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5519,
5522,
5524,
5526,
5528,
5529,
5528,
5528,
5528,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
5519,
5522,
5524,
5526,
5528,
'C',
5529,
61,
'C',
5527,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5525,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5523,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5521,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5517,
5,
8,
5,
8,
5,
8,
5,
8,
'C',
5516,
5530,
5531,
5532,
5533,
5534,
5535,
5536,
5537,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5530,
5532,
5534,
5536,
5538,
5539,
5538,
5538,
5538,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
5530,
5532,
5534,
5536,
5538,
'C',
5539,
61,
'C',
5537,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5535,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5533,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5531,
61,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
105,
'C',
5515,
5,
8,
5,
8,
5,
8,
5,
8,
'C',
5540,
5541,
5542,
'T',
3248,
'T',
3248,
'T',
3249,
'T',
3250,
'T',
3248,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
3251,
5543,
553,
2372,
5544,
5545,
5546,
1366,
5545,
6,
5,
8,
60,
60,
81,
81,
5541,
81,
'C',
5546,
81,
'C',
5545,
5538,
'C',
5544,
5292,
'C',
5543,
5546,
1366,
'C',
5542,
61,
'C',
5547,
'C',
5548,
'C',
5549,
81,
81,
81,
81,
81,
'C',
5550,
'C',
5551,
5427,
'C',
5552,
'T',
3205,
'T',
26,
696,
967,
'C',
5553,
'C',
5554,
104,
81,
'C',
5555,
'C',
5556,
5478,
'C',
5557,
5479,
'C',
5558,
5480,
'C',
5559,
'C',
5560,
'T',
5633,
2560,
3681,
104,
81,
'C',
5561,
2446,
81,
'C',
5562,
1516,
703,
'C',
5563,
'T',
43,
5564,
5566,
5568,
4521,
5569,
4521,
5570,
4299,
5571,
4237,
851,
4276,
5572,
5573,
1226,
5574,
4518,
5575,
1461,
1454,
1535,
5576,
5577,
4521,
5578,
5579,
4521,
5568,
5580,
4521,
5569,
5570,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
5581,
1,
81,
5582,
5583,
1,
81,
'C',
5576,
1472,
'C',
5575,
5584,
81,
81,
5585,
1,
81,
'C',
5584,
553,
0,
5586,
5587,
'C',
5587,
81,
'S',
24,
'C',
5586,
'T',
154,
'T',
9226,
5586,
753,
'S',
5,
'C',
5571,
'C',
5570,
5588,
1226,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5566,
'T',
43,
5589,
5590,
5592,
5594,
4299,
4299,
4299,
4242,
4299,
5593,
5595,
4242,
60,
60,
4242,
441,
60,
60,
'C',
5594,
4299,
'C',
5592,
4299,
5593,
81,
81,
'C',
5590,
5596,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
5596,
5597,
5598,
5600,
4481,
5601,
5602,
5591,
5604,
441,
'C',
5602,
4482,
'C',
5601,
703,
703,
703,
703,
'C',
5600,
703,
703,
703,
703,
'C',
5598,
4482,
5605,
4481,
'C',
5605,
81,
'C',
5597,
703,
703,
703,
703,
'C',
5589,
4482,
'C',
5564,
4482,
'C',
5607,
104,
81,
81,
'C',
5608,
5609,
5611,
5612,
5611,
5613,
5614,
5572,
5574,
5575,
5580,
5569,
5570,
60,
4276,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
5614,
4482,
'C',
5613,
4481,
60,
'C',
5612,
4481,
'C',
5611,
4275,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
5609,
4482,
5610,
5616,
4431,
4276,
9,
9,
5581,
81,
5585,
'C',
5617,
530,
196,
985,
5618,
'C',
5618,
5619,
'C',
5619,
1995,
1516,
104,
1269,
1273,
0,
1274,
1275,
81,
5620,
81,
'C',
5620,
0,
1311,
5621,
'C',
5621,
0,
5622,
'C',
5622,
1516,
104,
1271,
81,
81,
81,
'C',
5623,
'C',
5624,
'C',
5625,
'C',
5626,
'C',
5627,
'C',
5628,
'C',
5629,
'C',
5630,
530,
196,
985,
'C',
5631,
530,
196,
985,
'C',
5632,
104,
81,
81,
81,
'C',
5633,
5634,
5635,
4414,
'C',
5636,
81,
'C',
5637,
5638,
5564,
5640,
81,
81,
'C',
5640,
5641,
'C',
5641,
3943,
'C',
5638,
'T',
43,
5641,
'C',
5642,
5564,
5639,
5643,
5644,
2830,
5645,
'C',
5645,
2149,
5646,
'C',
5646,
2151,
2152,
81,
'C',
5647,
5648,
5650,
5651,
5652,
5653,
5654,
5655,
5656,
5657,
81,
81,
'C',
5657,
2064,
2069,
'C',
5656,
3943,
'C',
5655,
'C',
5654,
3943,
'C',
5653,
5564,
5406,
81,
5405,
81,
5405,
81,
'C',
5652,
3943,
'C',
5651,
3943,
'C',
5650,
3943,
'C',
5648,
3943,
'C',
5658,
5653,
5649,
5659,
5660,
5661,
2830,
5662,
'C',
5662,
5663,
'C',
5663,
5664,
1,
2149,
'C',
5665,
'T',
212,
5666,
5667,
2446,
'C',
5668,
'T',
43,
'S',
5,
'S',
5,
'S',
5,
'S',
5,
'C',
5669,
104,
81,
58,
58,
81,
'C',
5670,
2446,
'C',
5671,
'C',
5672,
104,
104,
113,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5673,
104,
90,
81,
81,
'C',
5674,
'C',
5675,
81,
'C',
5676,
'C',
5666,
'T',
212,
'T',
212,
2834,
2446,
'C',
5677,
'S',
5,
'S',
5,
'C',
5678,
104,
81,
81,
81,
81,
81,
'C',
5679,
2584,
81,
'C',
5680,
'C',
5681,
'C',
5682,
'C',
5683,
5684,
81,
'C',
5684,
2723,
3948,
'C',
5685,
5686,
81,
'C',
5686,
3954,
3950,
'C',
5687,
5688,
81,
'C',
5688,
2752,
'C',
5689,
4167,
81,
'C',
5690,
5691,
81,
'C',
5691,
'T',
10602,
'T',
10602,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
5692,
4404,
81,
'C',
5693,
'C',
5694,
'C',
5695,
5696,
5697,
5698,
5699,
4414,
'C',
5700,
5701,
5702,
4414,
5703,
'C',
5703,
4467,
90,
'C',
5704,
5705,
5706,
4414,
5707,
'C',
5707,
4467,
4467,
590,
612,
553,
5708,
1515,
5709,
'C',
5709,
553,
553,
1518,
81,
'C',
5710,
5711,
5713,
5715,
5716,
4275,
5717,
5718,
5719,
5720,
5721,
5722,
4226,
60,
60,
81,
81,
'C',
5721,
'C',
5720,
5723,
'C',
5723,
2603,
60,
60,
'C',
5719,
5724,
3918,
'C',
5718,
5716,
4237,
81,
'C',
5717,
5716,
4237,
60,
441,
'C',
5716,
5715,
4232,
5725,
441,
'C',
5725,
4237,
60,
'C',
5715,
1516,
703,
5726,
4237,
'C',
5726,
4237,
'C',
5713,
4482,
5711,
81,
'C',
5711,
5727,
5728,
4482,
5729,
5731,
5732,
1,
81,
5727,
81,
'C',
5731,
5733,
5734,
5735,
1,
0,
5736,
5733,
5738,
81,
'C',
5738,
5739,
5739,
5739,
5740,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
'C',
5740,
5741,
4224,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
5741,
4234,
81,
81,
81,
81,
81,
81,
81,
'C',
5739,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5611,
5742,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
5742,
4286,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5736,
614,
1356,
2788,
1212,
584,
81,
'C',
5734,
90,
5737,
1,
'C',
5729,
5743,
'C',
5743,
4482,
5745,
'C',
5745,
'T',
3849,
81,
'C',
5728,
5747,
'C',
5747,
5748,
'C',
5748,
4223,
'C',
5749,
81,
'C',
5750,
553,
104,
555,
104,
555,
104,
555,
104,
555,
104,
555,
104,
555,
104,
555,
555,
104,
555,
104,
555,
835,
104,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
5751,
61,
2574,
'C',
5752,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
5753,
81,
'C',
5754,
1287,
'T',
43,
5711,
4275,
5722,
5755,
4226,
5756,
4521,
60,
60,
60,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
5757,
4278,
4280,
81,
81,
'C',
5758,
150,
1467,
5759,
4414,
'C',
5760,
5761,
5762,
104,
81,
58,
81,
81,
'C',
5762,
5763,
'C',
5763,
2020,
2020,
1457,
0,
5764,
5766,
5766,
5767,
4500,
5766,
5766,
5767,
5768,
113,
105,
5769,
1,
5770,
1,
81,
5770,
81,
5769,
5770,
5770,
5769,
5770,
81,
5770,
81,
5769,
5770,
5770,
81,
'C',
5768,
5771,
60,
81,
'C',
5771,
5766,
5766,
1457,
5772,
81,
'C',
5772,
60,
'C',
5766,
1447,
5773,
5774,
1447,
5770,
5770,
5770,
5770,
81,
81,
81,
'C',
5774,
1447,
'C',
5773,
1447,
'C',
5764,
'T',
3253,
'C',
5761,
5763,
'C',
5775,
5776,
4414,
'C',
5777,
'C',
5778,
2557,
104,
'C',
5779,
'C',
5780,
81,
'C',
5781,
104,
81,
'C',
5782,
81,
'C',
5783,
'C',
5784,
5785,
5786,
2612,
104,
104,
81,
81,
58,
'C',
5785,
'T',
2222,
4466,
81,
58,
4466,
81,
58,
4466,
81,
58,
58,
'C',
5786,
'T',
910,
'C',
5787,
'C',
5788,
'T',
10307,
2557,
104,
'C',
5789,
'T',
1542,
1354,
1529,
5790,
'C',
5790,
5792,
'C',
5792,
'T',
3850,
'C',
5793,
5794,
1589,
1606,
'C',
5795,
5789,
'C',
5796,
104,
1516,
703,
2559,
104,
2557,
104,
81,
'C',
5797,
1354,
5798,
1589,
1606,
'C',
5799,
885,
5791,
1602,
2806,
1606,
'C',
5800,
'C',
5801,
5802,
5803,
1,
5804,
1,
'C',
5802,
81,
81,
'C',
5805,
'C',
5806,
'C',
5807,
4406,
81,
'C',
5808,
'C',
5809,
5810,
81,
'C',
5810,
546,
60,
60,
'C',
5811,
2727,
81,
'C',
5812,
104,
81,
81,
'C',
5667,
'T',
212,
'T',
212,
2446,
'C',
5813,
'S',
5,
'S',
5,
'C',
5814,
'C',
5815,
81,
'C',
5816,
'T',
154,
81,
'C',
5817,
'T',
154,
81,
'C',
5818,
'T',
154,
81,
'C',
5819,
'T',
154,
81,
'C',
5820,
'T',
154,
81,
'C',
5821,
5822,
81,
'C',
5822,
81,
'C',
5823,
'T',
154,
81,
'C',
5824,
'T',
154,
81,
'C',
5825,
'T',
154,
81,
'C',
5826,
5827,
81,
'C',
5827,
81,
'C',
5828,
'T',
154,
81,
'C',
5829,
5830,
81,
'C',
5830,
81,
'C',
5831,
'T',
154,
81,
'C',
5832,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
154,
'T',
9226,
553,
555,
555,
753,
81,
81,
81,
'S',
5,
'C',
5833,
'C',
5834,
'C',
5835,
842,
81,
'C',
5836,
81,
'C',
5837,
'C',
5838,
'C',
5839,
'C',
5840,
5841,
81,
'C',
5841,
'T',
13709,
60,
'C',
5842,
5843,
'C',
5843,
5844,
'C',
5844,
81,
'C',
5845,
3752,
'C',
5846,
2905,
81,
'C',
5847,
4970,
5848,
'C',
5848,
5849,
'C',
5849,
4936,
4937,
4910,
4918,
4938,
4939,
4918,
4918,
4918,
4918,
5850,
'C',
5850,
4976,
4929,
'S',
5,
'C',
5851,
4972,
5848,
'C',
5852,
4869,
4872,
'C',
5853,
4909,
4911,
4913,
'S',
4,
'C',
5854,
'C',
5855,
5856,
5857,
5856,
'T',
41,
'T',
41,
'T',
41,
'T',
41,
553,
4902,
4908,
4911,
555,
555,
555,
555,
555,
4908,
5858,
555,
555,
1977,
2959,
5856,
81,
'C',
5858,
4916,
4934,
4921,
4920,
4921,
4934,
4923,
4924,
4869,
4872,
4902,
4934,
'C',
5857,
4871,
'C',
5446,
'C',
5859,
4912,
81,
'C',
5860,
4913,
81,
'C',
5861,
4943,
81,
'C',
5862,
4925,
'C',
5863,
5864,
81,
'C',
5864,
561,
'C',
5865,
4970,
4971,
'C',
5866,
'C',
5867,
1322,
'C',
5868,
6,
81,
'C',
5869,
'C',
5870,
'C',
5871,
6,
6,
81,
'C',
5872,
'C',
5873,
'C',
5874,
5875,
4414,
4467,
'C',
5876,
'C',
5877,
'C',
5878,
'C',
5879,
'C',
5880,
'C',
5881,
'C',
5882,
'C',
5883,
5884,
'C',
5885,
5886,
9,
5887,
5888,
5889,
5890,
5891,
5892,
4226,
5893,
0,
0,
5894,
4226,
0,
5895,
1224,
5610,
5896,
1592,
5897,
5898,
4432,
61,
5899,
4518,
5900,
1224,
5901,
5902,
90,
5903,
5904,
5905,
1433,
5906,
1071,
5744,
4226,
5907,
5908,
4226,
5909,
4226,
5910,
4226,
5911,
4226,
5912,
5913,
113,
105,
0,
5914,
5915,
5916,
1,
5917,
5581,
5918,
5583,
5919,
1,
81,
5920,
1,
81,
5888,
81,
81,
81,
81,
'C',
5917,
81,
81,
'C',
5914,
5921,
81,
81,
'C',
5921,
'T',
5965,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
43,
553,
732,
775,
5922,
555,
104,
842,
5922,
555,
840,
1267,
5922,
555,
0,
5924,
5922,
555,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
81,
5925,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
5925,
81,
'C',
5924,
5926,
'C',
5926,
'T',
43,
553,
555,
5927,
674,
753,
81,
'C',
5927,
'T',
7635,
'T',
5141,
'T',
154,
'T',
3253,
'T',
3253,
658,
689,
752,
81,
81,
'C',
5922,
4464,
81,
81,
81,
81,
81,
'C',
5913,
5928,
81,
'C',
5928,
'C',
5912,
5929,
81,
'C',
5929,
'T',
43,
0,
562,
5930,
81,
81,
81,
'C',
5930,
81,
'C',
5907,
'C',
5906,
0,
1311,
5931,
'C',
5931,
0,
5932,
'C',
5932,
81,
81,
5933,
4491,
81,
'C',
5902,
5934,
5935,
5936,
5937,
1780,
90,
5934,
5936,
'C',
5937,
5938,
5939,
5940,
1,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
90,
1837,
5942,
5943,
1433,
1837,
1837,
5944,
5943,
1837,
5945,
5943,
1837,
5946,
5943,
5947,
5943,
5948,
1,
81,
9,
5947,
5948,
81,
9,
5947,
5948,
81,
9,
5947,
5948,
81,
9,
1837,
5949,
5943,
5950,
1,
81,
5951,
1,
81,
5949,
5950,
81,
5951,
5949,
5950,
81,
5951,
5949,
5950,
81,
5951,
1837,
5949,
5950,
5951,
81,
1837,
5949,
5950,
5951,
'C',
5941,
1354,
1529,
1529,
'C',
5935,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
5938,
5941,
90,
1837,
1837,
'C',
5901,
'C',
5893,
1632,
541,
1632,
541,
1632,
541,
'T',
43,
5952,
5952,
5953,
81,
81,
81,
'C',
5953,
5952,
'C',
5952,
81,
'C',
5891,
'C',
5890,
'C',
5889,
5954,
5955,
1433,
5956,
5957,
5955,
5956,
5958,
5955,
5956,
5959,
5955,
5956,
5960,
5955,
5956,
5961,
5955,
5956,
90,
'C',
5956,
553,
1518,
'C',
5887,
'C',
5962,
'T',
43,
5963,
0,
4537,
5964,
81,
'C',
5964,
'C',
5963,
5965,
81,
'C',
5965,
'T',
43,
'T',
3253,
885,
885,
885,
885,
885,
562,
562,
104,
3603,
562,
104,
3602,
562,
562,
562,
104,
3602,
562,
3602,
562,
562,
562,
562,
3602,
562,
562,
104,
3602,
1154,
562,
104,
3602,
1154,
562,
562,
104,
3602,
1154,
562,
3602,
1154,
562,
3602,
1154,
785,
81,
'C',
5884,
159,
164,
0,
1188,
1189,
167,
5966,
'C',
5966,
5967,
5968,
203,
1199,
'C',
5968,
5922,
5969,
'C',
5969,
5970,
5971,
1,
5972,
555,
5973,
5974,
5975,
1,
81,
81,
'C',
5974,
5976,
'C',
5976,
1549,
1632,
'T',
4138,
'T',
6052,
5977,
5978,
0,
4537,
1914,
5979,
81,
81,
'C',
5979,
5980,
'C',
5980,
2069,
'C',
5978,
'T',
1543,
'T',
1543,
81,
'C',
5977,
1579,
'C',
5973,
5982,
5983,
5982,
5984,
5985,
5984,
5982,
'T',
5896,
'T',
5900,
'T',
5915,
'T',
5913,
'T',
5913,
'T',
5913,
'T',
5913,
'T',
43,
'T',
154,
'T',
9226,
'T',
5895,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5922,
553,
5986,
5987,
5988,
1,
4104,
5986,
5989,
5986,
5990,
5988,
4104,
5986,
5991,
5988,
4104,
674,
555,
5992,
5993,
0,
5994,
5995,
5996,
5997,
5998,
6000,
753,
81,
5975,
81,
5982,
5975,
81,
81,
5975,
81,
5975,
81,
5975,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
5975,
81,
81,
5975,
81,
5984,
5975,
81,
5975,
81,
5975,
81,
5975,
81,
81,
81,
5975,
81,
5975,
81,
6002,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
81,
81,
'S',
5,
81,
'C',
6002,
'C',
6000,
1549,
0,
555,
6003,
6004,
81,
81,
'C',
6004,
6003,
81,
'C',
6003,
0,
4537,
6005,
'C',
6005,
1895,
'C',
5998,
'T',
5118,
'T',
4235,
'T',
4236,
'T',
4237,
1071,
4304,
1984,
0,
4537,
81,
6006,
81,
'C',
6006,
1267,
799,
6007,
6008,
'C',
6008,
'T',
5141,
'T',
154,
555,
5927,
6009,
5,
8,
81,
'C',
6009,
'T',
154,
'T',
4235,
'T',
4236,
'T',
4237,
5927,
'C',
6007,
'T',
4235,
'T',
4236,
'T',
4237,
2070,
'C',
5997,
0,
1311,
6010,
'C',
6010,
0,
6011,
'C',
6011,
'T',
154,
'T',
9226,
'T',
5895,
889,
753,
81,
81,
'S',
5,
'C',
5996,
5967,
'C',
5995,
90,
1476,
81,
81,
81,
'C',
5994,
753,
595,
81,
81,
'C',
5993,
6012,
6013,
6012,
'T',
43,
'T',
43,
'T',
5915,
'T',
43,
'T',
5917,
6014,
5986,
6012,
81,
81,
81,
'C',
6014,
'C',
6013,
0,
6015,
'C',
6015,
81,
81,
'C',
5992,
'T',
5118,
'T',
6035,
'T',
6052,
'T',
6035,
'T',
6052,
6016,
6016,
6017,
594,
81,
'C',
6017,
595,
'C',
6016,
'C',
5989,
'T',
5896,
'T',
5898,
'T',
5902,
'T',
5915,
0,
6018,
6020,
5988,
4104,
5987,
4104,
81,
81,
81,
81,
6021,
'C',
6021,
5973,
'C',
6018,
0,
6022,
1101,
6023,
'C',
6023,
'C',
6022,
530,
1194,
196,
1256,
2184,
6024,
1,
'C',
5986,
'C',
5985,
0,
6025,
'C',
6025,
81,
81,
'C',
5983,
0,
6026,
'C',
6026,
81,
81,
'C',
5972,
6027,
6028,
6027,
'C',
6028,
6029,
4451,
4462,
'C',
5967,
1579,
'C',
6030,
159,
164,
0,
1188,
1189,
167,
6031,
'C',
6031,
5967,
6032,
1197,
203,
1199,
'C',
6032,
159,
164,
0,
1188,
1189,
167,
6033,
'C',
6033,
5982,
5982,
'T',
5904,
0,
5994,
1197,
0,
5994,
6034,
203,
1199,
6035,
81,
6036,
6037,
1,
81,
6037,
81,
6037,
81,
'C',
6036,
'C',
6035,
'C',
6034,
5982,
5994,
6038,
6039,
5973,
5974,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
6039,
'T',
5909,
81,
'C',
6038,
81,
'C',
6040,
1632,
6041,
6042,
81,
'C',
6042,
1632,
6044,
6041,
6046,
'C',
6046,
'C',
6044,
'C',
6041,
1895,
'C',
6047,
81,
81,
'C',
6048,
1632,
541,
1632,
6049,
5963,
555,
81,
'C',
6049,
1545,
'C',
6050,
553,
6051,
2557,
835,
104,
'C',
6051,
2612,
104,
555,
555,
6052,
2612,
104,
555,
104,
555,
81,
81,
81,
81,
'C',
6052,
6053,
81,
'C',
6053,
6054,
'C',
6054,
595,
1996,
'C',
6055,
'C',
6056,
6057,
6059,
'C',
6059,
6061,
6062,
6063,
'C',
6063,
1549,
'T',
7845,
6064,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6064,
1254,
6065,
1,
584,
'C',
6062,
'C',
6061,
1549,
6066,
'C',
6066,
1212,
1529,
'C',
6057,
4482,
'C',
6067,
'C',
6068,
6069,
0,
6070,
6072,
'C',
6072,
6073,
'C',
6073,
0,
4537,
6074,
'C',
6074,
'C',
6070,
2136,
'C',
6075,
6076,
6067,
'C',
6076,
'T',
1324,
6061,
6078,
6079,
'C',
6079,
6061,
6078,
'C',
6078,
6024,
2184,
'C',
6080,
'T',
1881,
6081,
6082,
0,
6083,
6084,
6085,
81,
81,
6086,
81,
81,
81,
81,
'C',
6086,
6087,
81,
81,
'C',
6087,
'T',
236,
'T',
238,
6088,
'C',
6088,
'T',
910,
'T',
10482,
'C',
6085,
6089,
81,
81,
'C',
6089,
6090,
6091,
4460,
'C',
6084,
6083,
6092,
60,
81,
6093,
1,
81,
'C',
6092,
1993,
'T',
43,
'T',
43,
6094,
6095,
6096,
3807,
6097,
3925,
6098,
6099,
6019,
1,
6100,
6101,
6102,
1,
6103,
6104,
60,
60,
60,
6105,
1,
81,
6105,
81,
6106,
6093,
81,
'C',
6104,
'T',
6839,
3925,
6107,
6099,
60,
60,
'C',
6107,
1549,
6019,
6108,
6062,
6063,
'C',
6108,
530,
1194,
196,
'C',
6103,
6109,
1,
'C',
6100,
530,
1194,
196,
6110,
'C',
6110,
1256,
1256,
'C',
6099,
6111,
6112,
'C',
6112,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
81,
81,
'C',
6111,
6114,
'C',
6098,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
81,
'C',
6097,
'C',
6096,
6115,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6115,
6061,
6078,
6110,
'C',
6095,
'T',
15165,
6116,
561,
'C',
6116,
'T',
15156,
81,
'C',
6094,
6117,
81,
'C',
6083,
6096,
6118,
6098,
6099,
'C',
6118,
'T',
43,
'T',
43,
3925,
60,
60,
'C',
6082,
'T',
1881,
0,
6119,
'C',
6119,
6120,
81,
81,
'C',
6120,
'T',
43,
81,
'C',
6081,
6121,
6122,
4460,
6123,
'C',
6123,
'T',
2222,
'T',
10418,
'T',
10300,
6124,
81,
81,
'C',
6124,
'C',
6069,
6077,
6113,
6071,
6125,
4460,
6126,
0,
6127,
6081,
6082,
6085,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
6128,
'C',
6128,
81,
81,
'C',
6127,
2136,
'C',
6126,
'T',
10331,
'T',
789,
6129,
6118,
60,
81,
81,
81,
81,
81,
'C',
6129,
553,
1518,
553,
1518,
'C',
6130,
6131,
6132,
6133,
5644,
6134,
'C',
6134,
2149,
5646,
'C',
6135,
6136,
81,
81,
'C',
6136,
2069,
'C',
6138,
6137,
6132,
6139,
'C',
6139,
6134,
'C',
6140,
6141,
6143,
6144,
6145,
6146,
6147,
6148,
6149,
6150,
6151,
6152,
6153,
6154,
6155,
6156,
6157,
6158,
6159,
6160,
6161,
6162,
6163,
6164,
6165,
6166,
6167,
6168,
6169,
6170,
6171,
6172,
6173,
6174,
6175,
6176,
6177,
6178,
6179,
6180,
6181,
6182,
6183,
6184,
6185,
6186,
6187,
6188,
6189,
6190,
6191,
6192,
6193,
6194,
81,
81,
'C',
6194,
'C',
6193,
'C',
6192,
'C',
6191,
'C',
6190,
'C',
6189,
'C',
6188,
'C',
6187,
'C',
6186,
'T',
43,
2069,
'C',
6185,
'T',
43,
2069,
'C',
6184,
'T',
43,
2069,
'C',
6183,
'C',
6182,
'T',
43,
2069,
'C',
6181,
'C',
6180,
'C',
6179,
'C',
6178,
'C',
6177,
'C',
6176,
'C',
6175,
'T',
43,
2069,
'C',
6174,
2069,
'C',
6173,
2069,
'C',
6172,
5564,
'C',
6171,
2069,
'C',
6170,
'T',
43,
2069,
'C',
6169,
'C',
6168,
'C',
6167,
'C',
6166,
'T',
43,
2069,
'C',
6165,
'T',
43,
2069,
'C',
6164,
2069,
'S',
5,
'C',
6163,
'C',
6162,
2069,
'C',
6161,
'C',
6160,
'C',
6159,
'C',
6158,
'C',
6157,
'C',
6156,
2069,
'C',
6155,
2069,
'C',
6154,
'C',
6153,
'C',
6152,
2069,
'C',
6151,
'C',
6150,
2069,
'C',
6149,
'C',
6148,
'C',
6147,
'C',
6146,
2069,
'C',
6145,
2069,
'C',
6144,
'C',
6143,
2069,
'C',
6141,
2069,
'C',
6195,
6172,
6142,
6132,
6196,
113,
105,
105,
105,
105,
105,
'C',
6196,
6134,
'C',
6197,
6198,
6200,
5564,
6201,
6202,
6203,
6204,
6205,
6206,
6207,
6208,
6209,
6210,
81,
81,
'C',
6210,
'T',
43,
6211,
3943,
'C',
6211,
'T',
43,
6212,
'C',
6212,
'C',
6209,
4482,
'C',
6208,
'C',
6207,
'C',
6206,
'T',
43,
6213,
3943,
'C',
6213,
'T',
43,
6212,
'C',
6205,
6214,
3943,
'C',
6214,
6212,
'C',
6204,
6215,
3943,
'C',
6215,
6212,
'C',
6203,
6216,
3943,
5581,
81,
58,
'C',
6216,
'T',
43,
6212,
'C',
6202,
3943,
'C',
6201,
6217,
3943,
'C',
6217,
6212,
'C',
6200,
6218,
2064,
'C',
6218,
6212,
'C',
6198,
6219,
6220,
6221,
2064,
2069,
6220,
6221,
3943,
6222,
1,
81,
6222,
81,
6222,
81,
6222,
81,
'C',
6221,
553,
0,
5586,
6223,
'C',
6223,
555,
81,
'C',
6220,
'T',
43,
'T',
43,
6212,
'C',
6219,
'T',
43,
1516,
703,
6224,
6219,
'C',
6224,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
4304,
4304,
4304,
'C',
6225,
5564,
6209,
6199,
6226,
6227,
6228,
2830,
6229,
60,
'C',
6229,
5664,
2149,
6221,
'C',
6230,
6231,
6233,
6234,
5564,
6235,
81,
81,
'C',
6235,
2064,
2069,
'C',
6234,
'T',
43,
2064,
2069,
'C',
6233,
'C',
6231,
'T',
43,
2674,
2064,
2069,
'C',
6236,
5564,
6232,
6132,
6237,
'C',
6237,
6134,
6231,
6234,
6235,
'C',
6238,
6239,
6241,
6243,
5564,
6244,
81,
81,
'C',
6244,
6245,
'C',
6245,
3943,
'C',
6243,
'T',
43,
3943,
'C',
6241,
'T',
43,
3943,
'C',
6239,
'T',
43,
6245,
'C',
6246,
5564,
6242,
6240,
5643,
6247,
'C',
6247,
2149,
5646,
'C',
6248,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
104,
81,
81,
81,
81,
81,
'C',
6249,
6250,
6251,
81,
81,
'C',
6251,
'T',
43,
3943,
'C',
6250,
2603,
60,
60,
60,
60,
'C',
6253,
6250,
6252,
6132,
6254,
'C',
6254,
6134,
'C',
6255,
81,
'C',
6256,
'C',
6257,
'C',
6258,
'C',
6259,
2154,
'C',
6260,
'T',
1474,
2148,
'C',
6261,
'T',
1472,
2146,
81,
'C',
6262,
'C',
6263,
6264,
546,
3921,
6265,
2605,
1447,
546,
3921,
597,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6265,
6266,
6267,
2603,
60,
60,
60,
60,
81,
'C',
6267,
'C',
6266,
60,
60,
'C',
6264,
'T',
9752,
81,
'C',
6268,
0,
6269,
81,
6270,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
6270,
'T',
444,
81,
81,
'C',
6269,
1457,
6271,
6272,
6273,
81,
'C',
6273,
674,
674,
'C',
6272,
6274,
6275,
1,
555,
'C',
6271,
1447,
60,
60,
'C',
6276,
2727,
2590,
81,
81,
'C',
6277,
'C',
6278,
3893,
842,
81,
'C',
6279,
2033,
'C',
6280,
6281,
6282,
6281,
2033,
0,
6283,
6284,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6284,
6281,
81,
81,
'C',
6283,
6285,
6286,
2015,
6287,
6288,
6289,
0,
6290,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
6291,
81,
'C',
6291,
'C',
6290,
0,
6292,
6293,
'C',
6293,
3912,
6294,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6294,
6295,
81,
81,
'C',
6295,
'C',
6292,
3912,
2203,
3912,
2190,
2199,
6296,
3912,
2204,
3912,
2204,
4473,
81,
4473,
81,
81,
81,
81,
'C',
6296,
6297,
'C',
6297,
'C',
6289,
2045,
2048,
2594,
6298,
2048,
81,
81,
'C',
6298,
2039,
'C',
6288,
2052,
'C',
6287,
2926,
2052,
'C',
6285,
423,
60,
60,
60,
60,
'C',
6282,
'C',
6281,
'T',
8038,
1447,
2048,
2591,
2047,
60,
60,
81,
'C',
6299,
6300,
'C',
6300,
0,
6269,
81,
6301,
'C',
6301,
'T',
444,
81,
81,
'C',
6302,
6303,
2603,
2603,
2603,
2603,
2605,
2603,
2603,
2603,
2603,
2605,
6304,
546,
3921,
546,
3921,
6305,
6305,
6304,
1447,
1447,
597,
597,
597,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
5405,
81,
5405,
81,
81,
6307,
1,
81,
6307,
81,
81,
4534,
81,
4534,
81,
4534,
81,
4534,
81,
81,
81,
81,
'C',
6305,
'C',
6304,
90,
0,
3964,
614,
6308,
'C',
6308,
'T',
1492,
81,
'C',
6303,
2603,
81,
81,
81,
81,
'C',
6309,
6310,
6311,
6312,
3946,
'C',
6313,
81,
'C',
6314,
'T',
1476,
81,
'C',
6315,
'T',
1474,
2148,
81,
'C',
6316,
'T',
1472,
2146,
81,
81,
'C',
6317,
6318,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6318,
2152,
6319,
81,
81,
81,
'C',
6319,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6320,
81,
'C',
6321,
6322,
2574,
2446,
'C',
6323,
'T',
43,
1516,
703,
6324,
4304,
'C',
6325,
'C',
6322,
'T',
212,
'C',
6324,
'T',
43,
65,
'C',
6326,
6327,
81,
'C',
6327,
5724,
'C',
6328,
6329,
81,
'C',
6329,
5724,
'C',
6330,
6331,
81,
'C',
6331,
6327,
4168,
'C',
6332,
'C',
6333,
104,
81,
'C',
6334,
4307,
'C',
6335,
1516,
703,
4309,
'C',
6336,
'C',
6337,
2446,
60,
60,
60,
'C',
6338,
'C',
6339,
6340,
6341,
6340,
842,
6341,
842,
'C',
6341,
2612,
2612,
104,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6340,
2612,
2612,
104,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6342,
6343,
81,
'C',
6343,
'T',
10501,
6344,
5583,
81,
'C',
6345,
6340,
'C',
6346,
6347,
81,
'C',
6347,
5582,
'C',
6348,
6349,
81,
'C',
6349,
5582,
'C',
6350,
6351,
81,
'C',
6351,
6347,
6343,
'C',
6352,
'C',
6353,
'C',
6354,
126,
126,
'C',
6355,
6088,
5712,
1224,
81,
81,
'C',
6356,
'C',
6357,
6358,
6360,
6361,
6363,
5711,
6364,
5611,
6366,
6367,
553,
6368,
4481,
1447,
0,
0,
6369,
4226,
6370,
6371,
4431,
6372,
4521,
61,
6373,
1639,
0,
6374,
6375,
4226,
150,
1467,
1841,
3860,
1841,
6376,
1841,
6377,
0,
0,
6379,
0,
6380,
6374,
6382,
4521,
6383,
4226,
60,
6358,
2222,
6361,
6384,
6385,
5591,
441,
81,
441,
441,
441,
441,
441,
441,
441,
441,
81,
113,
105,
105,
105,
105,
105,
6386,
1473,
81,
1473,
81,
1473,
81,
6387,
6388,
1475,
1474,
81,
1474,
81,
6389,
6390,
6391,
6392,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6391,
6393,
0,
5569,
5570,
81,
81,
6394,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
6394,
6366,
6395,
6366,
6366,
4541,
6396,
6397,
4543,
81,
81,
'C',
6397,
6398,
6399,
'C',
6399,
6401,
6402,
6403,
81,
'C',
6403,
'T',
4918,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6402,
6404,
6405,
6406,
6407,
6408,
6410,
6412,
6413,
6414,
6415,
6416,
6410,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
81,
81,
81,
'C',
6416,
6417,
6418,
6419,
6417,
81,
'C',
6419,
6420,
1476,
6421,
81,
81,
81,
'C',
6420,
90,
81,
81,
81,
81,
81,
81,
81,
'C',
6418,
6409,
1,
6422,
'C',
6422,
0,
1673,
1477,
81,
1678,
6423,
'C',
6423,
6424,
81,
'C',
6424,
159,
164,
0,
1188,
1189,
167,
6425,
'C',
6425,
'T',
43,
'T',
43,
'T',
3253,
'T',
5499,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3849,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
6426,
6427,
6419,
6428,
834,
6428,
6429,
834,
6430,
6432,
834,
6433,
834,
6434,
6435,
6436,
834,
6437,
834,
6438,
203,
1199,
1488,
81,
6439,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'S',
15,
81,
'S',
15,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'S',
5,
'C',
6438,
0,
4537,
6440,
'C',
6440,
4542,
'C',
6437,
6441,
6442,
6443,
6444,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6443,
6445,
6446,
6447,
6448,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
6444,
81,
81,
81,
81,
'C',
6448,
6449,
6450,
'C',
6450,
6451,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6451,
'T',
4902,
'T',
4235,
'T',
154,
'T',
9226,
'T',
43,
6452,
6453,
6454,
6455,
6456,
6458,
840,
3709,
790,
6456,
790,
3709,
840,
6456,
1977,
6456,
753,
81,
6459,
1,
81,
6459,
81,
81,
'S',
5,
'C',
6458,
'T',
154,
'T',
9226,
6460,
90,
5903,
90,
6461,
1356,
6462,
1356,
1357,
1358,
614,
614,
6463,
1969,
614,
674,
614,
799,
553,
0,
614,
6464,
0,
1692,
6464,
614,
557,
560,
6465,
1,
584,
614,
555,
6466,
614,
557,
560,
6465,
584,
614,
555,
753,
6467,
81,
81,
81,
81,
81,
81,
6468,
81,
81,
81,
81,
81,
81,
'S',
5,
81,
81,
81,
'C',
6468,
81,
'C',
6467,
'T',
154,
'T',
9226,
1504,
614,
555,
753,
81,
'S',
5,
'C',
6466,
'T',
154,
'T',
9226,
6469,
6466,
1807,
753,
'S',
5,
81,
'C',
6469,
1807,
0,
0,
6470,
6471,
6472,
81,
81,
'C',
6472,
'C',
6471,
81,
'C',
6470,
'T',
154,
'T',
3253,
'T',
154,
753,
595,
81,
'C',
6464,
'T',
3849,
'C',
6463,
'T',
154,
'T',
43,
'T',
9226,
553,
553,
6473,
555,
1895,
6473,
555,
1898,
6474,
1433,
6475,
6476,
555,
753,
'S',
5,
'C',
6476,
6464,
81,
81,
81,
81,
81,
81,
81,
'C',
6475,
'T',
4905,
'T',
4905,
6477,
6478,
1447,
2720,
6478,
1447,
2720,
423,
81,
81,
'C',
6478,
'T',
43,
'T',
1502,
553,
555,
555,
1461,
1454,
1535,
81,
81,
'C',
6477,
'T',
1543,
'C',
6473,
'T',
5141,
'T',
154,
'T',
4484,
'T',
4484,
0,
6479,
790,
423,
0,
6480,
6481,
6482,
6483,
790,
6484,
790,
6486,
60,
6487,
'C',
6487,
2670,
81,
'C',
6486,
1646,
81,
81,
'C',
6484,
0,
6479,
6488,
'C',
6488,
6489,
6489,
1646,
6489,
6489,
1646,
81,
81,
81,
'C',
6489,
'T',
448,
'T',
4235,
'T',
4236,
'T',
4237,
0,
6490,
6491,
81,
81,
'C',
6491,
81,
'C',
6490,
1651,
1651,
423,
60,
60,
60,
60,
'S',
5,
'S',
5,
'C',
6483,
'T',
4484,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5138,
'T',
205,
'T',
154,
'T',
9226,
'T',
154,
'T',
4484,
553,
553,
6485,
1433,
555,
560,
6485,
555,
0,
6479,
753,
6492,
81,
'S',
5,
'C',
6492,
1646,
1646,
81,
81,
'C',
6482,
0,
6479,
'C',
6481,
'T',
448,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5117,
'T',
5118,
'T',
4484,
'T',
4484,
'T',
5120,
'T',
5119,
0,
6493,
6494,
81,
81,
81,
'C',
6494,
'T',
5116,
6493,
81,
81,
'C',
6493,
0,
6495,
'C',
6495,
'T',
3849,
553,
6464,
555,
0,
1692,
81,
81,
81,
81,
81,
81,
81,
'C',
6480,
1464,
'C',
6479,
'T',
154,
0,
6496,
6497,
6497,
6498,
6499,
113,
105,
105,
105,
105,
105,
113,
105,
105,
105,
105,
105,
'C',
6499,
'T',
7435,
81,
81,
81,
'C',
6498,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
3251,
'T',
7650,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
7650,
'C',
6497,
6500,
6497,
6497,
6498,
'C',
6500,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3253,
'T',
7650,
'T',
3251,
'C',
6496,
'T',
3253,
'T',
3253,
'T',
7650,
'T',
3251,
'C',
6462,
6501,
'C',
6501,
150,
1467,
1989,
'C',
6461,
'T',
154,
'T',
9226,
553,
6461,
799,
555,
753,
'S',
5,
81,
'C',
6460,
6464,
81,
81,
81,
81,
81,
81,
'C',
6456,
6403,
6502,
81,
'C',
6502,
530,
'T',
1543,
553,
6504,
6505,
555,
4482,
3807,
196,
985,
6054,
179,
0,
1101,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
6507,
81,
'C',
6507,
81,
'C',
6505,
530,
530,
'T',
6770,
'T',
6770,
'T',
6770,
6508,
196,
985,
3807,
6510,
196,
985,
6512,
81,
81,
6459,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
6512,
530,
6513,
6515,
6510,
196,
985,
6517,
6518,
1,
6519,
6520,
81,
81,
81,
'C',
6520,
'T',
6569,
6521,
6522,
6524,
81,
6525,
1,
81,
'C',
6524,
6526,
'C',
6526,
6527,
6529,
6531,
6532,
6533,
6534,
6535,
1,
1579,
6536,
'C',
6536,
'T',
4448,
1692,
'C',
6529,
1579,
'C',
6527,
6537,
6538,
6539,
1,
81,
81,
81,
81,
'C',
6537,
6540,
'C',
6540,
81,
'C',
6522,
'C',
6521,
'T',
6568,
'T',
6569,
'T',
6569,
'T',
6571,
'T',
6568,
'T',
6568,
'T',
6569,
'T',
6569,
6541,
6542,
4544,
6543,
81,
'C',
6543,
'T',
6558,
6527,
1579,
81,
'C',
6542,
1579,
1579,
6477,
6544,
81,
81,
'C',
6544,
2069,
'C',
6541,
'T',
6564,
6527,
1579,
6546,
6547,
81,
'C',
6547,
6548,
6550,
6551,
'C',
6551,
90,
6552,
6553,
584,
'C',
6553,
'C',
6552,
6555,
6554,
1,
'C',
6555,
553,
6556,
0,
1692,
6557,
'C',
6557,
6556,
81,
'C',
6556,
'T',
1542,
'C',
6550,
'C',
6548,
6558,
81,
'C',
6558,
'T',
1542,
'T',
1542,
1516,
703,
81,
'C',
6546,
6559,
'C',
6559,
1499,
6560,
6562,
81,
'C',
6562,
1549,
'C',
6560,
'T',
43,
6563,
81,
'C',
6563,
1514,
'C',
6519,
530,
1194,
196,
6077,
6565,
0,
6070,
6566,
0,
6567,
81,
113,
105,
105,
105,
105,
105,
81,
105,
6568,
6569,
'C',
6569,
6570,
'C',
6570,
6571,
6572,
'C',
6572,
'T',
6722,
6573,
6518,
6574,
6520,
6575,
81,
'C',
6575,
6576,
6518,
6520,
'C',
6574,
6077,
6565,
0,
6070,
6577,
0,
6567,
6578,
6579,
'C',
6579,
6580,
'C',
6580,
6572,
'C',
6578,
6581,
'C',
6581,
6582,
6575,
81,
'C',
6582,
6583,
81,
'C',
6583,
6584,
'C',
6584,
'T',
43,
'T',
43,
6585,
6586,
6587,
6588,
60,
'C',
6588,
'T',
6562,
6527,
1579,
81,
'C',
6587,
'T',
6560,
6527,
1579,
81,
'C',
6586,
6589,
1514,
'C',
6589,
150,
1467,
1841,
1841,
2576,
6590,
5950,
564,
564,
5950,
564,
564,
5950,
5950,
'C',
6590,
5967,
5967,
6591,
81,
'C',
6591,
6477,
6593,
81,
81,
81,
'C',
6593,
2576,
2069,
'C',
6585,
'T',
6718,
81,
'C',
6577,
6096,
6104,
'C',
6571,
6595,
81,
'C',
6595,
'T',
6841,
6596,
733,
60,
'C',
6596,
'C',
6568,
6597,
'C',
6597,
6583,
6575,
'C',
6567,
3398,
'C',
6566,
6092,
'C',
6565,
'T',
10331,
6129,
6598,
6118,
'C',
6598,
150,
1467,
104,
6600,
6060,
1,
1841,
81,
'C',
6515,
'T',
43,
'C',
6513,
6601,
6602,
6513,
6601,
'C',
6602,
1632,
541,
1632,
6109,
'C',
6510,
'T',
43,
6575,
6603,
6543,
6587,
6541,
6572,
'C',
6603,
1549,
6586,
0,
555,
6604,
81,
'C',
6604,
81,
'C',
6508,
81,
'C',
6504,
4482,
'C',
6455,
6605,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6605,
'T',
4902,
6453,
6461,
6458,
840,
790,
81,
'C',
6454,
6605,
'C',
6453,
840,
'C',
6452,
1212,
'C',
6449,
4482,
'C',
6447,
6449,
6606,
81,
'C',
6606,
6451,
'C',
6446,
'T',
43,
'T',
43,
3860,
6469,
6466,
1267,
6466,
1807,
0,
0,
6470,
6607,
6466,
1895,
6466,
1807,
0,
0,
6470,
1898,
1807,
0,
0,
6470,
6607,
81,
6608,
1,
81,
81,
6608,
81,
81,
81,
81,
'C',
6607,
'T',
4918,
840,
840,
6466,
674,
6466,
6609,
6610,
6453,
840,
840,
6466,
6609,
6610,
81,
'C',
6610,
6611,
6609,
6612,
6612,
'C',
6612,
3861,
6609,
6613,
'C',
6613,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
0,
1274,
1275,
1517,
6614,
'C',
6614,
0,
1311,
6615,
'C',
6615,
0,
6616,
'C',
6616,
1516,
104,
1271,
81,
81,
'C',
6611,
'T',
43,
6617,
'C',
6617,
0,
1012,
6618,
'C',
6618,
6619,
'C',
6619,
'T',
43,
'T',
43,
'T',
43,
1807,
6620,
150,
1467,
1807,
6620,
6621,
1989,
6621,
1989,
1841,
1841,
1927,
1358,
3861,
6609,
6613,
1915,
6613,
81,
'C',
6621,
6622,
1927,
1358,
1504,
2070,
'C',
6622,
150,
1467,
1989,
'C',
6620,
6501,
'C',
6609,
'T',
4236,
'T',
4237,
'T',
4237,
'T',
43,
1807,
2786,
4012,
1898,
555,
81,
81,
81,
'C',
6445,
6623,
4544,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6623,
4540,
81,
81,
'C',
6442,
6417,
81,
'C',
6441,
6417,
81,
'C',
6436,
6096,
6624,
1579,
6477,
6625,
1,
1579,
6477,
6626,
2020,
6628,
1457,
1579,
6477,
6629,
1457,
2020,
2727,
6628,
1457,
6630,
6631,
1579,
6477,
1579,
6477,
6628,
2727,
6632,
6633,
1579,
6477,
6629,
6083,
6566,
6634,
1,
81,
81,
81,
81,
6634,
81,
81,
81,
81,
6634,
81,
561,
6635,
3891,
81,
81,
81,
81,
81,
81,
81,
'C',
6633,
6636,
6637,
6271,
2727,
6638,
6639,
597,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6639,
6640,
'C',
6640,
'T',
3253,
'T',
3253,
6641,
6625,
113,
105,
4543,
81,
4543,
'C',
6641,
81,
'C',
6638,
6478,
2675,
1458,
1458,
1460,
1458,
1460,
2751,
1458,
1460,
6642,
2751,
1447,
60,
60,
60,
'C',
6642,
6643,
'C',
6643,
2752,
'C',
6637,
6644,
1447,
1447,
60,
60,
'C',
6644,
6645,
'C',
6645,
'C',
6636,
'T',
43,
'T',
43,
6646,
1651,
6647,
60,
60,
60,
60,
60,
'S',
5,
'C',
6647,
'T',
43,
'T',
43,
'T',
43,
6648,
435,
434,
6649,
2214,
2223,
2215,
6650,
3925,
6651,
2173,
2223,
2215,
6652,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
6652,
6653,
6654,
'C',
6654,
553,
1366,
424,
555,
60,
'C',
6653,
81,
'C',
6651,
81,
'C',
6650,
6655,
2173,
'C',
6655,
81,
'C',
6649,
'T',
154,
'T',
9226,
6656,
2212,
2213,
6649,
6657,
753,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'S',
5,
'C',
6657,
'C',
6656,
2190,
2199,
2210,
2211,
5,
8,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
6648,
6658,
2208,
2209,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
6658,
6659,
1,
6660,
2208,
2209,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
6660,
6661,
'C',
6661,
'T',
205,
284,
284,
293,
2372,
5,
8,
5,
8,
'C',
6646,
'C',
6632,
6478,
2720,
81,
'C',
6631,
6662,
6663,
6664,
1457,
1447,
1447,
1447,
1447,
1650,
1651,
1650,
1651,
1447,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
6664,
6651,
2173,
'C',
6663,
6665,
'C',
6665,
6648,
435,
434,
6656,
2212,
2213,
2214,
2215,
3915,
60,
2223,
60,
'C',
6662,
3915,
2173,
'C',
6630,
1579,
6477,
81,
'C',
6629,
2064,
81,
'C',
6628,
1579,
6477,
6665,
1447,
60,
81,
81,
'C',
6626,
6636,
6666,
6667,
423,
6637,
2727,
6285,
6285,
6668,
6285,
597,
60,
60,
'C',
6668,
1447,
6632,
1365,
1366,
1365,
1366,
1447,
60,
60,
60,
60,
81,
'C',
6667,
6665,
'C',
6666,
6669,
6670,
'C',
6669,
'T',
43,
'T',
43,
6671,
6672,
6672,
6671,
1447,
6673,
6674,
1,
60,
4543,
'C',
6673,
6664,
1447,
6664,
1447,
6664,
1447,
6664,
1447,
88,
60,
60,
60,
60,
2907,
2907,
2907,
2907,
2907,
81,
'C',
6672,
6675,
6676,
553,
6677,
6654,
840,
6651,
1650,
1651,
6651,
1650,
1651,
423,
60,
60,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6677,
81,
'C',
6676,
6678,
1,
0,
5586,
6679,
'C',
6679,
6680,
81,
81,
'C',
6680,
'T',
8390,
6681,
'C',
6681,
'C',
6675,
663,
664,
6682,
669,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6682,
'T',
154,
'T',
9226,
695,
6682,
753,
81,
'S',
5,
81,
'C',
6671,
6675,
6676,
6676,
553,
6677,
6654,
790,
6673,
6673,
423,
6651,
1650,
1651,
6651,
1650,
1651,
423,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
6624,
1579,
6477,
6626,
6683,
6628,
1457,
6684,
1579,
6477,
6629,
1579,
6477,
4541,
1579,
6477,
6685,
1579,
6477,
1447,
6629,
60,
60,
81,
81,
81,
81,
6686,
1,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'S',
5,
'C',
6685,
6687,
6396,
6399,
6688,
6689,
1,
6690,
6691,
6692,
81,
81,
81,
81,
81,
81,
'C',
6692,
0,
6001,
1,
4467,
0,
6001,
4467,
61,
6693,
6695,
6696,
6697,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
6697,
6698,
81,
6699,
1,
81,
'C',
6698,
6700,
1224,
6701,
0,
6702,
4226,
6703,
1224,
6704,
5568,
60,
60,
'S',
5,
'C',
6704,
6705,
81,
'C',
6705,
6706,
6707,
6623,
6708,
6709,
6699,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
'C',
6709,
1579,
6477,
6626,
6710,
6711,
1579,
6477,
3889,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6711,
'T',
4235,
'T',
4236,
'T',
4237,
684,
6510,
'C',
6710,
6054,
6712,
1579,
6477,
6713,
2020,
3925,
2020,
1579,
6477,
6665,
423,
2237,
2020,
3925,
6054,
6054,
6054,
3925,
6054,
6714,
6285,
6715,
1,
60,
60,
60,
60,
60,
60,
81,
1447,
60,
60,
81,
1447,
60,
60,
81,
81,
81,
81,
'C',
6714,
1447,
60,
60,
'C',
6713,
81,
'C',
6712,
'C',
6708,
6716,
6717,
'C',
6717,
'T',
43,
'T',
154,
'T',
9226,
'T',
4664,
5564,
6718,
6719,
1,
6720,
5668,
6721,
4544,
6722,
6723,
753,
81,
'S',
5,
81,
'C',
6723,
6417,
'T',
43,
6416,
81,
'C',
6722,
4544,
'C',
6721,
'T',
43,
1093,
1093,
553,
0,
0,
6724,
611,
3742,
6724,
3742,
6724,
6725,
775,
6724,
6726,
6727,
851,
1093,
851,
1093,
674,
6728,
1,
6727,
555,
555,
674,
555,
851,
1093,
674,
555,
666,
4541,
4542,
4540,
6729,
6730,
81,
'C',
6730,
'C',
6729,
'C',
6727,
'T',
8390,
'T',
8390,
'C',
6726,
6728,
'C',
6725,
'T',
8390,
'T',
8390,
597,
81,
'C',
6720,
866,
866,
866,
81,
81,
81,
'C',
6716,
1549,
'T',
43,
0,
555,
6731,
6732,
81,
'C',
6732,
6731,
81,
'C',
6731,
6733,
6733,
6733,
'C',
6733,
5967,
6734,
'C',
6734,
0,
4537,
6736,
'C',
6736,
'C',
6707,
6625,
'C',
6706,
6625,
'C',
6701,
6737,
2603,
81,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6737,
3925,
3925,
3925,
3925,
2603,
'C',
6696,
6698,
81,
'C',
6695,
'T',
5118,
'T',
4235,
'T',
4236,
'T',
4237,
0,
4537,
6738,
81,
'C',
6738,
6008,
'C',
6693,
6739,
6740,
81,
81,
81,
81,
'C',
6740,
81,
'C',
6739,
81,
'C',
6691,
1549,
0,
555,
6731,
81,
'C',
6690,
6693,
6077,
6126,
113,
105,
105,
105,
105,
105,
81,
105,
561,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6688,
6000,
6000,
6741,
'C',
6741,
6096,
6000,
'C',
6687,
'C',
6684,
'T',
2222,
'C',
6683,
1447,
60,
'C',
6435,
'T',
3849,
'T',
3849,
1447,
6742,
1,
81,
81,
81,
81,
'C',
6434,
834,
834,
834,
104,
1797,
1273,
61,
1276,
81,
81,
81,
81,
'C',
6433,
81,
'C',
6432,
6443,
6443,
6443,
'C',
6430,
834,
834,
834,
834,
834,
834,
834,
834,
834,
834,
834,
834,
834,
104,
1797,
1273,
61,
1276,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6429,
6417,
'T',
43,
6623,
6743,
6744,
6717,
6745,
6746,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6746,
6747,
9,
6748,
6083,
0,
6749,
0,
6749,
6750,
6751,
561,
81,
'C',
6751,
6752,
81,
'C',
6752,
6566,
6083,
0,
4537,
60,
60,
3890,
113,
105,
105,
105,
105,
105,
81,
105,
6753,
'C',
6753,
'C',
6750,
6754,
81,
'C',
6754,
1106,
0,
6749,
'C',
6749,
530,
530,
530,
530,
'T',
43,
'T',
12780,
'T',
12781,
'T',
12780,
81,
'C',
6748,
'C',
6745,
6747,
1106,
6083,
6096,
6083,
81,
'C',
6744,
1549,
0,
555,
6755,
81,
'C',
6755,
'T',
2738,
'T',
2744,
6756,
1579,
6477,
6665,
6757,
6710,
6758,
1579,
6477,
6759,
3889,
60,
81,
81,
6760,
1,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
561,
3890,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
81,
'C',
6759,
423,
60,
60,
60,
60,
'C',
6758,
6512,
179,
0,
1101,
6761,
'C',
6761,
81,
'C',
6757,
3917,
81,
81,
81,
'C',
6756,
'C',
6743,
6688,
'C',
6428,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
'T',
3849,
834,
834,
4541,
4542,
4540,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6427,
'C',
6426,
6762,
61,
1476,
81,
81,
'C',
6762,
90,
5673,
584,
584,
584,
584,
3646,
584,
3646,
584,
584,
584,
584,
584,
584,
6764,
584,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6764,
6420,
90,
81,
81,
81,
'C',
6415,
6417,
90,
6766,
81,
81,
81,
81,
'C',
6766,
1476,
81,
'C',
6414,
5564,
'C',
6413,
'C',
6412,
6417,
1549,
1579,
6477,
1579,
6477,
6478,
6767,
0,
555,
81,
81,
6768,
81,
81,
'C',
6768,
6412,
81,
'C',
6767,
6417,
'T',
43,
1453,
90,
6769,
81,
'C',
6769,
1476,
81,
'C',
6410,
6417,
6770,
81,
'C',
6770,
1476,
81,
'C',
6408,
6771,
105,
6772,
6771,
6417,
6411,
1,
6426,
81,
'C',
6772,
'C',
6407,
6773,
553,
6765,
1,
6763,
1,
81,
'C',
6773,
2834,
104,
81,
'C',
6406,
'C',
6405,
6417,
'C',
6404,
'C',
6401,
3860,
'C',
6398,
5967,
'C',
6396,
6687,
6623,
4544,
104,
1796,
81,
'C',
6395,
'C',
6393,
6366,
6774,
6776,
'C',
6776,
6778,
1,
6779,
'C',
6779,
'T',
8390,
'T',
8390,
81,
58,
81,
'C',
6774,
6777,
611,
'C',
6390,
6780,
81,
'C',
6780,
0,
4537,
6781,
'C',
6781,
'C',
6389,
6780,
81,
'C',
6386,
6782,
3860,
6783,
4226,
81,
81,
81,
'C',
6782,
5729,
5711,
6784,
6785,
6393,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
'C',
6785,
4523,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
4251,
'C',
6784,
6785,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
6385,
6786,
'C',
6786,
6366,
5967,
6787,
'S',
5,
81,
'C',
6787,
6743,
6788,
81,
'C',
6788,
6789,
'C',
6789,
0,
6001,
4467,
6693,
6790,
6084,
6791,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6791,
6792,
81,
'C',
6792,
'T',
2740,
6700,
6701,
6793,
6632,
6794,
6632,
423,
6795,
840,
790,
6665,
790,
840,
6665,
1447,
6796,
1447,
6271,
6665,
6797,
4521,
6798,
4521,
60,
60,
81,
81,
'C',
6796,
81,
'C',
6795,
1651,
1651,
60,
60,
60,
60,
'S',
5,
'S',
5,
'C',
6794,
1447,
60,
60,
'C',
6793,
6636,
6637,
553,
6799,
6625,
6666,
6665,
1447,
2727,
2727,
6800,
1,
61,
790,
790,
1447,
2727,
840,
840,
1447,
2727,
790,
6800,
840,
6800,
61,
597,
60,
60,
60,
60,
'S',
5,
81,
'C',
6799,
6801,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6801,
6677,
6654,
'C',
6790,
0,
4537,
6802,
'C',
6802,
6803,
'C',
6803,
555,
5,
8,
'C',
6384,
6804,
81,
81,
'C',
6804,
6805,
0,
4537,
5711,
5967,
6625,
6709,
6806,
6686,
81,
81,
'C',
6806,
'C',
6805,
6366,
6686,
81,
81,
'C',
6380,
'T',
7223,
'T',
2462,
'T',
2464,
'T',
2468,
'T',
7225,
'T',
2470,
'T',
2466,
'T',
7227,
'T',
7229,
'T',
7231,
'T',
7233,
'T',
7235,
6807,
4226,
81,
'C',
6379,
'C',
6377,
'T',
526,
'C',
6376,
'C',
6370,
6808,
6810,
'T',
4235,
'T',
4236,
'T',
4237,
553,
555,
555,
81,
6808,
'C',
6810,
6809,
6719,
'C',
6368,
'T',
2954,
4482,
6811,
5606,
6813,
1433,
6814,
6813,
6815,
1,
5591,
441,
81,
441,
441,
441,
441,
441,
441,
441,
441,
5591,
441,
81,
441,
441,
441,
441,
441,
441,
441,
441,
5591,
441,
441,
441,
441,
441,
441,
441,
441,
441,
5591,
6816,
1,
5591,
441,
81,
441,
441,
441,
441,
441,
441,
441,
441,
5591,
'C',
6814,
6815,
'C',
6811,
5590,
5590,
5590,
5590,
6812,
6813,
'C',
6367,
1762,
1808,
'C',
6366,
'C',
6364,
4482,
5711,
81,
'C',
6363,
6817,
6818,
1,
'C',
6360,
6819,
6818,
'C',
6820,
6821,
6822,
6824,
'C',
6822,
6825,
6827,
'C',
6827,
'T',
4881,
1012,
'C',
6825,
6828,
0,
2129,
6830,
'C',
6830,
1514,
'C',
6828,
'T',
2594,
2122,
'C',
6821,
6831,
6833,
'C',
6833,
'C',
6831,
'T',
43,
3861,
6446,
6834,
6835,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
6835,
'T',
154,
'T',
9226,
6469,
1895,
1895,
1807,
753,
81,
'S',
5,
81,
'C',
6834,
'T',
43,
2070,
'C',
6836,
6837,
6838,
6839,
6822,
6367,
6840,
6841,
6367,
3860,
81,
'C',
6841,
3860,
6446,
6842,
'C',
6842,
6617,
1841,
'C',
6840,
4481,
6843,
1,
81,
6843,
81,
'C',
6839,
6844,
'C',
6844,
1212,
2129,
6845,
'C',
6845,
'C',
6838,
6846,
6823,
6826,
6829,
1515,
6847,
6848,
6849,
'C',
6849,
6850,
81,
'C',
6850,
6851,
6852,
0,
2135,
584,
6853,
6854,
81,
81,
81,
'C',
6854,
'C',
6853,
6827,
6855,
'C',
6855,
0,
2129,
0,
2135,
'C',
6852,
'C',
6851,
4536,
6856,
'C',
6856,
553,
1518,
'C',
6848,
6857,
'C',
6857,
81,
'C',
6847,
553,
1518,
'C',
6846,
6823,
6847,
'C',
6858,
6859,
6367,
6840,
6841,
'C',
6860,
6861,
6381,
1,
6838,
6367,
6841,
'C',
6824,
0,
1352,
6862,
'C',
6862,
2129,
81,
81,
81,
'C',
6859,
6863,
6865,
6866,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6866,
6867,
'C',
6867,
6849,
'C',
6865,
6868,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6868,
81,
'C',
6863,
4482,
'C',
6837,
81,
'C',
6869,
6057,
1927,
1358,
6061,
6062,
6063,
81,
'C',
6870,
'C',
6871,
'T',
2253,
'T',
154,
'T',
9226,
'T',
43,
'T',
2254,
'T',
2256,
4481,
5711,
5564,
6872,
6873,
553,
6874,
1224,
6875,
6876,
1224,
6875,
2603,
6877,
6879,
4521,
6875,
553,
555,
5899,
6875,
555,
6880,
4226,
6875,
0,
6881,
1224,
6882,
6875,
6883,
6884,
6884,
6883,
6757,
6885,
6757,
6886,
0,
6374,
6887,
4226,
6888,
4431,
6889,
4431,
3555,
3555,
753,
60,
6890,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
6890,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
6890,
81,
5582,
6890,
81,
6890,
81,
6891,
6392,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
6890,
81,
6892,
6893,
1,
81,
81,
81,
81,
81,
81,
'S',
5,
81,
81,
81,
81,
81,
'C',
6892,
6894,
6895,
1,
6896,
6897,
4518,
81,
81,
81,
'C',
6896,
'C',
6891,
6898,
'C',
6898,
6758,
561,
'C',
6886,
81,
'C',
6885,
'C',
6884,
81,
'C',
6883,
'C',
6882,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
6877,
6899,
4431,
81,
81,
'C',
6875,
'T',
43,
4481,
6900,
6902,
6757,
6903,
4476,
4431,
6904,
5898,
6905,
555,
81,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
6905,
6906,
1594,
'C',
6903,
6901,
1,
60,
81,
81,
81,
81,
'C',
6902,
6757,
6757,
6901,
60,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
6900,
6757,
6757,
6901,
60,
60,
60,
60,
81,
'C',
6873,
5982,
'T',
43,
0,
5994,
6907,
'C',
6907,
'C',
6872,
4482,
81,
'C',
6908,
'T',
154,
'T',
9226,
2122,
6076,
6076,
6076,
6870,
6076,
753,
'S',
5,
81,
'C',
6909,
4481,
6910,
6869,
'C',
6910,
81,
'C',
6911,
81,
81,
81,
'C',
6912,
6913,
1515,
6914,
6095,
6077,
6126,
6077,
6126,
6915,
1,
6916,
6917,
6918,
6919,
6920,
1,
6921,
6922,
1,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
6914,
553,
1518,
'C',
6923,
'C',
6924,
'C',
6925,
'C',
6926,
'T',
437,
'T',
436,
'T',
579,
6927,
6928,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
6929,
6388,
0,
6930,
0,
0,
0,
0,
6931,
2603,
6932,
3917,
4275,
0,
0,
0,
4242,
5578,
4520,
6933,
6934,
6935,
1224,
6887,
6879,
546,
6936,
4521,
5569,
5570,
60,
60,
6937,
6938,
6939,
6940,
6941,
6942,
6943,
6944,
6945,
6946,
6947,
6948,
6949,
6950,
6951,
6952,
6953,
4169,
113,
105,
105,
105,
105,
105,
81,
105,
6893,
81,
6893,
81,
6954,
6955,
6956,
6957,
1,
81,
6958,
4248,
4245,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
81,
'C',
6956,
6959,
81,
'C',
6959,
6960,
0,
4537,
6961,
'C',
6961,
6962,
'C',
6962,
1841,
2070,
'C',
6960,
1468,
'C',
6955,
6963,
81,
'C',
6963,
6964,
0,
4537,
6965,
'C',
6965,
6962,
'C',
6964,
1468,
'C',
6954,
6966,
81,
'C',
6966,
6967,
0,
4537,
6968,
'C',
6968,
6962,
1473,
81,
'C',
6967,
1468,
'C',
6953,
81,
'C',
6952,
81,
'C',
6951,
81,
'C',
6950,
81,
'C',
6949,
0,
81,
6969,
'C',
6969,
'T',
526,
81,
'C',
6948,
0,
81,
6970,
'C',
6970,
6971,
81,
'C',
6971,
'T',
2448,
1474,
81,
'C',
6947,
81,
'C',
6946,
81,
'C',
6945,
81,
'C',
6944,
81,
'C',
6943,
81,
'C',
6942,
81,
'C',
6941,
81,
'C',
6940,
81,
'C',
6939,
81,
'C',
6938,
0,
81,
6973,
'C',
6973,
'T',
526,
81,
'C',
6937,
81,
'C',
6933,
0,
5895,
6974,
'C',
6974,
5589,
6975,
5567,
5616,
81,
'C',
6975,
4299,
4299,
4242,
4299,
5593,
'C',
6932,
6931,
3925,
6931,
3925,
6303,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
6931,
1447,
6714,
'C',
6930,
6976,
1,
'C',
6928,
5711,
4481,
6977,
6978,
60,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
1474,
81,
546,
60,
60,
4280,
'C',
6978,
6979,
6378,
1,
6980,
6378,
6972,
6981,
6378,
6982,
6982,
6982,
6982,
6982,
6982,
6982,
6982,
6983,
1433,
'C',
6982,
6984,
'C',
6984,
6985,
1,
'C',
6977,
6986,
6986,
60,
60,
'C',
6986,
4169,
5724,
3917,
4169,
5724,
3917,
6987,
6988,
4169,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
6988,
5724,
'C',
6987,
3917,
60,
60,
60,
60,
'C',
6927,
6989,
'C',
6989,
4482,
5711,
81,
'C',
6991,
6962,
6992,
1468,
6966,
81,
81,
'C',
6992,
1468,
'C',
6993,
6962,
'C',
6994,
150,
1467,
6995,
4414,
'C',
6996,
'C',
6997,
'C',
6998,
6999,
7000,
7001,
7002,
104,
81,
81,
81,
81,
81,
'C',
7002,
7003,
'C',
7003,
1457,
5772,
1447,
1457,
5772,
1447,
1457,
5772,
1447,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
7001,
7003,
'C',
7000,
7003,
'C',
6999,
7003,
'C',
7004,
5711,
7005,
7006,
6872,
7007,
7008,
7009,
4237,
4275,
4237,
4275,
4299,
7010,
4299,
7010,
0,
5729,
7011,
1224,
2603,
6879,
7012,
4521,
5569,
5570,
5610,
4481,
1650,
1651,
6903,
4476,
0,
5729,
7011,
6933,
7013,
7014,
1224,
7015,
7016,
1,
5610,
6933,
7017,
4521,
7018,
4521,
7019,
1224,
5579,
5569,
5570,
6887,
7020,
4521,
5569,
5570,
60,
60,
60,
60,
60,
7021,
3891,
60,
3890,
113,
105,
105,
105,
105,
105,
81,
105,
7022,
4470,
4471,
81,
9,
81,
7023,
1224,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
60,
7024,
5582,
2023,
441,
549,
549,
549,
2023,
441,
549,
549,
549,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7024,
7025,
'C',
7025,
7006,
7026,
81,
'C',
7026,
5967,
5967,
7027,
5967,
7029,
'C',
7029,
7030,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
7030,
1993,
7031,
7033,
6094,
7034,
6102,
7035,
6096,
6104,
60,
81,
6109,
7031,
'C',
7035,
7036,
81,
'C',
7036,
7038,
7040,
7042,
81,
'C',
7042,
7043,
1,
'C',
7040,
7041,
1,
'C',
7038,
7039,
1,
'C',
7033,
7044,
1,
'C',
7027,
7030,
60,
'C',
7022,
7045,
'C',
7045,
7006,
7046,
81,
'C',
7046,
5967,
5967,
7027,
5967,
7029,
'C',
7013,
81,
'C',
7010,
4299,
4242,
'C',
7009,
'T',
43,
'T',
43,
7047,
'C',
7047,
'T',
10459,
'C',
7008,
7048,
7049,
'C',
7049,
'C',
7048,
5982,
'T',
43,
0,
6470,
7050,
'C',
7050,
'C',
7007,
'C',
7006,
6740,
1797,
1273,
1269,
1273,
7051,
1270,
1273,
7051,
1273,
1620,
61,
1276,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
1277,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7005,
5711,
'C',
7052,
7053,
'C',
7053,
2557,
'C',
7054,
553,
703,
104,
555,
5597,
703,
104,
555,
5600,
703,
104,
555,
5597,
5600,
703,
104,
555,
5601,
703,
104,
555,
5597,
5601,
703,
104,
555,
5600,
5601,
703,
104,
555,
5597,
5600,
5601,
703,
104,
555,
835,
104,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7055,
2446,
'C',
7056,
1516,
703,
703,
703,
703,
703,
703,
703,
703,
703,
'C',
7057,
'C',
7058,
'C',
7059,
'C',
7060,
'T',
2222,
'C',
7061,
'T',
4192,
81,
'C',
7062,
'C',
7063,
'T',
4192,
81,
'C',
7064,
2440,
1568,
81,
81,
81,
81,
81,
81,
'C',
7065,
1595,
1568,
81,
81,
81,
81,
81,
'C',
7066,
'C',
7067,
'C',
7068,
81,
81,
'C',
7069,
2440,
7070,
1353,
81,
81,
81,
81,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
7070,
'T',
154,
'T',
154,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
2448,
'T',
3253,
'T',
1542,
'T',
43,
'T',
3251,
'T',
3253,
'T',
2448,
'T',
3253,
'T',
1542,
'T',
43,
'T',
3253,
'T',
2448,
'T',
1542,
'T',
1542,
'T',
5261,
'T',
3253,
'T',
1542,
'T',
43,
'T',
3251,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3251,
'T',
2448,
'T',
5261,
65,
7071,
1,
1568,
65,
90,
584,
1585,
614,
65,
1212,
7071,
1568,
7071,
1568,
1069,
1357,
1358,
1585,
81,
'C',
7072,
'T',
154,
'T',
154,
'T',
3253,
'T',
3251,
1595,
7071,
1572,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7073,
1529,
'C',
7074,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
2448,
'C',
7075,
'T',
2702,
81,
81,
'C',
7076,
'T',
1543,
'T',
2704,
81,
81,
81,
81,
81,
'C',
7077,
'T',
1543,
'T',
2696,
81,
81,
81,
'C',
7078,
81,
81,
'C',
7079,
'C',
7080,
'T',
3850,
3474,
885,
1516,
81,
81,
81,
81,
81,
'C',
7081,
81,
81,
'C',
7082,
'C',
7083,
'T',
599,
'T',
5275,
2811,
7084,
4108,
4204,
7085,
7086,
1613,
753,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7086,
0,
2805,
7087,
'C',
7087,
'T',
1544,
1600,
81,
'C',
7085,
'T',
5275,
4108,
4204,
753,
'C',
7084,
'T',
5335,
7085,
7086,
81,
81,
81,
81,
'C',
7088,
81,
81,
81,
81,
81,
81,
81,
'C',
7089,
7090,
81,
'C',
7090,
'T',
8390,
'C',
7091,
'C',
7092,
'C',
7093,
'C',
7094,
7095,
5,
8,
81,
'C',
7095,
749,
749,
'C',
7096,
'C',
7097,
'C',
7098,
'T',
43,
'T',
43,
4481,
3917,
7099,
4520,
60,
60,
60,
60,
'C',
7099,
4481,
6900,
4476,
'C',
7100,
'C',
7101,
7102,
'C',
7102,
6822,
'C',
7103,
7104,
'C',
7104,
6825,
'C',
7105,
'C',
7106,
835,
104,
81,
'C',
7107,
2574,
'C',
7108,
1516,
703,
4304,
'C',
7109,
2557,
104,
'C',
7110,
6076,
7111,
'C',
7112,
'C',
7113,
'C',
7114,
7115,
7116,
6532,
6536,
'C',
7115,
6595,
'C',
7117,
'C',
7118,
'C',
7119,
2557,
104,
'C',
7120,
1256,
6076,
7111,
'C',
7121,
'C',
7122,
'C',
7123,
6595,
7116,
6536,
'C',
7124,
2557,
'C',
7111,
'C',
7125,
7126,
6532,
6536,
'C',
7127,
7116,
6536,
'C',
7128,
7129,
6532,
6536,
'C',
7130,
7131,
6532,
6536,
'C',
7132,
81,
'C',
7133,
5564,
7134,
6895,
553,
6904,
6905,
555,
6904,
6905,
555,
6904,
6905,
555,
6897,
7135,
1,
81,
7135,
81,
7135,
81,
'C',
7136,
1780,
0,
7137,
7138,
1227,
7139,
4521,
6879,
6383,
5569,
5570,
7140,
1224,
5580,
7141,
4521,
7142,
7143,
1,
81,
2603,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
7142,
7144,
7146,
1,
81,
'C',
7144,
159,
164,
0,
1188,
1189,
167,
7147,
'C',
7147,
1476,
1197,
203,
1199,
81,
'C',
7148,
2612,
7149,
2612,
2612,
104,
60,
60,
60,
81,
81,
81,
'C',
7149,
3925,
3727,
3925,
3727,
60,
60,
'C',
7150,
4300,
81,
'C',
7151,
674,
7152,
7154,
7155,
81,
'C',
7154,
0,
7156,
6733,
7157,
7158,
81,
'C',
7158,
'C',
7157,
7159,
81,
'C',
7159,
0,
4537,
7160,
'C',
7160,
'C',
7156,
5967,
5967,
7161,
81,
'C',
7161,
6873,
7163,
7164,
4537,
81,
'C',
7164,
7165,
3860,
6607,
6609,
'C',
7165,
'T',
43,
'T',
154,
'T',
4918,
'T',
9226,
6469,
3860,
6469,
6835,
555,
7166,
1807,
6609,
6469,
6449,
7167,
753,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'S',
5,
'C',
7167,
614,
0,
5924,
81,
81,
7168,
'C',
7168,
'T',
43,
81,
'C',
7166,
'T',
154,
'T',
9226,
6461,
753,
'S',
5,
81,
'C',
7163,
7060,
7169,
'C',
7169,
'C',
7152,
'C',
7170,
159,
164,
0,
1188,
1189,
167,
7171,
'C',
7171,
7172,
203,
1199,
'C',
7173,
1267,
7174,
'C',
7175,
7176,
7177,
7178,
81,
'C',
7178,
0,
6470,
5973,
7179,
5973,
7180,
81,
'C',
7180,
'T',
43,
81,
'C',
7179,
'C',
7177,
'C',
7181,
7182,
799,
'C',
7182,
0,
1311,
7183,
'C',
7183,
0,
7184,
'C',
7184,
'T',
6504,
'T',
6507,
6001,
4467,
6001,
4467,
81,
81,
81,
'C',
7185,
'C',
7186,
6076,
1256,
7173,
'C',
7187,
7188,
'C',
7188,
'T',
910,
'T',
43,
7189,
0,
0,
6127,
0,
7190,
6113,
7191,
7189,
7189,
7189,
7192,
7193,
7194,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7194,
7189,
81,
'C',
7193,
7195,
7196,
81,
'C',
7196,
'T',
10302,
'T',
4471,
'T',
4471,
0,
0,
0,
7197,
7198,
'C',
7198,
7199,
'C',
7199,
'T',
910,
'T',
910,
'T',
910,
'T',
910,
'T',
10302,
'T',
4471,
'T',
10300,
'T',
2222,
'T',
43,
0,
0,
0,
7200,
7201,
6098,
7202,
1,
81,
7202,
81,
'C',
7201,
'T',
910,
'C',
7200,
6098,
'C',
7197,
7200,
81,
'C',
7195,
2132,
'C',
7192,
7189,
81,
'C',
7191,
'T',
910,
'T',
910,
'T',
43,
'T',
910,
'T',
910,
'T',
10432,
'T',
10300,
'T',
10434,
'T',
4469,
'T',
10434,
'T',
4469,
6129,
81,
'C',
7189,
7203,
0,
1101,
7204,
'C',
7204,
'T',
43,
7203,
7196,
'C',
7203,
'T',
43,
'T',
2222,
'T',
910,
'T',
910,
'T',
43,
'T',
2222,
'T',
2222,
7205,
7206,
7207,
7208,
'C',
7208,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
'C',
7207,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
'C',
7206,
'T',
4469,
'T',
10300,
0,
0,
7209,
7210,
'C',
7210,
7208,
81,
'C',
7209,
7207,
'C',
7205,
'T',
4471,
'T',
10302,
0,
0,
'C',
7211,
7188,
'C',
7155,
7212,
7175,
81,
'C',
7212,
6083,
6092,
60,
'C',
7213,
6083,
'C',
7214,
7215,
6083,
60,
81,
'C',
7216,
7217,
6084,
'C',
7218,
7219,
7220,
0,
6127,
7181,
790,
7221,
7222,
81,
'C',
7222,
7223,
81,
'C',
7223,
790,
7221,
790,
7221,
7224,
7178,
'C',
7224,
0,
0,
6470,
7225,
'C',
7225,
'C',
7221,
7159,
'C',
7220,
'C',
7219,
7226,
7227,
6077,
6126,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
7227,
7228,
104,
'C',
7228,
81,
'C',
7226,
'C',
7229,
7154,
'C',
7230,
159,
164,
0,
1188,
1189,
167,
7231,
'C',
7231,
'T',
4235,
'T',
43,
'T',
4236,
'T',
4237,
5967,
684,
1197,
7170,
1197,
203,
1199,
'C',
7232,
5967,
5967,
7164,
7214,
'C',
7233,
5967,
5967,
7164,
7216,
'C',
7234,
7218,
4456,
4461,
4456,
4461,
'C',
7235,
5568,
7236,
1224,
6058,
1224,
7237,
4521,
5568,
81,
'C',
7238,
6400,
7239,
7240,
7241,
4414,
7242,
'C',
7242,
4545,
553,
1518,
4467,
7243,
7244,
4545,
7245,
7246,
1,
7246,
7246,
7247,
1,
81,
'C',
7245,
553,
1518,
'C',
7248,
'C',
7249,
7250,
'C',
7250,
7251,
81,
'C',
7251,
'T',
1543,
7252,
'C',
7252,
7253,
81,
'C',
7253,
'T',
43,
'C',
7255,
90,
0,
0,
7256,
7257,
1,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
7258,
4226,
7259,
7260,
7261,
7262,
7263,
7264,
7265,
7266,
7267,
7268,
7269,
7270,
'C',
7270,
81,
81,
'C',
7269,
7271,
7272,
7273,
7274,
7275,
7276,
1,
7277,
'C',
7277,
90,
7278,
81,
0,
7279,
7280,
1,
81,
'C',
7279,
7281,
81,
'C',
7281,
7282,
1,
'C',
7278,
90,
1354,
90,
'C',
7268,
81,
'C',
7267,
7283,
7272,
7277,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7266,
81,
'C',
7265,
7284,
7272,
7277,
'C',
7264,
81,
81,
'C',
7263,
7285,
7286,
7273,
7287,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
7287,
7278,
81,
60,
7288,
1,
81,
'C',
7262,
81,
81,
'C',
7261,
7289,
7274,
7290,
'C',
7290,
90,
90,
'C',
7260,
81,
81,
'C',
7259,
7291,
7292,
7286,
7287,
'C',
7293,
'C',
7294,
2606,
6879,
7295,
4521,
5579,
7296,
4520,
7297,
4521,
7139,
6879,
4520,
'C',
7296,
'T',
437,
7298,
'C',
7298,
3917,
60,
60,
60,
60,
'C',
7299,
'C',
7300,
7301,
'C',
7301,
7252,
81,
'C',
7302,
'T',
4449,
553,
835,
104,
81,
'C',
7303,
'T',
7341,
7304,
1,
7305,
'C',
7305,
159,
164,
0,
1188,
1189,
167,
7306,
'C',
7306,
90,
1476,
1197,
203,
1199,
81,
'C',
7307,
'C',
7308,
'T',
43,
81,
'C',
7309,
'C',
7310,
7311,
4414,
'C',
7312,
7313,
81,
81,
'C',
7313,
2064,
'C',
7315,
7314,
2830,
2149,
'C',
7316,
'C',
7317,
'C',
7318,
81,
'C',
7319,
7320,
'C',
7320,
7321,
81,
'C',
7321,
81,
'C',
7322,
7323,
'C',
7323,
7324,
81,
'C',
7324,
7325,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
7325,
6873,
7326,
81,
81,
7327,
1,
81,
'C',
7326,
1632,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
5786,
5786,
7328,
5786,
7329,
0,
555,
7327,
81,
7330,
81,
'C',
7330,
7328,
81,
'C',
7329,
0,
7156,
7203,
7203,
7154,
7331,
7332,
4460,
81,
'C',
7331,
'C',
7328,
7333,
7334,
1579,
1579,
7329,
7335,
7337,
7338,
1579,
7338,
7329,
1356,
1357,
1358,
614,
614,
614,
614,
5967,
614,
614,
7339,
1,
614,
7340,
0,
7341,
1,
4456,
4461,
0,
7342,
7343,
584,
614,
614,
1356,
1357,
1358,
614,
614,
0,
4537,
7333,
7344,
7345,
7346,
81,
81,
81,
81,
81,
'C',
7346,
'C',
7345,
7347,
81,
'C',
7347,
7203,
6000,
7348,
7348,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
81,
81,
'C',
7348,
7349,
81,
'C',
7349,
0,
4537,
'C',
7344,
7350,
81,
'C',
7350,
7351,
1212,
81,
81,
'C',
7351,
'C',
7343,
7352,
7353,
7354,
4459,
553,
1518,
7203,
7352,
7203,
7355,
7355,
1579,
7335,
1579,
7335,
7356,
0,
6001,
4467,
6790,
113,
105,
105,
105,
105,
105,
81,
105,
7357,
81,
'C',
7357,
7358,
81,
'C',
7358,
7352,
0,
6374,
7359,
81,
81,
'C',
7359,
7360,
7361,
'T',
2222,
'T',
910,
6477,
5786,
7021,
7362,
4501,
7363,
6085,
1579,
6477,
6632,
1447,
1446,
7364,
2033,
7356,
6088,
7364,
7365,
7367,
4521,
6372,
6382,
5897,
60,
60,
81,
81,
81,
7360,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
81,
81,
'C',
7365,
7366,
1,
'C',
7364,
546,
60,
60,
'C',
7363,
7368,
4501,
'C',
7361,
4500,
'C',
7356,
4499,
81,
'C',
7355,
6477,
0,
4537,
81,
81,
7369,
'C',
7369,
'C',
7352,
7370,
6121,
6123,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7370,
7371,
3891,
'C',
7340,
7352,
7353,
553,
1518,
7203,
7372,
4500,
7373,
7352,
7352,
7374,
4500,
6085,
7203,
7355,
1579,
7335,
7356,
7356,
6088,
1579,
7335,
7356,
7352,
7353,
553,
1518,
7203,
7352,
7203,
7355,
7355,
6733,
'C',
7373,
'C',
7338,
90,
0,
0,
7375,
7376,
7377,
81,
'C',
7377,
'T',
1542,
'T',
1544,
7378,
6872,
6873,
81,
81,
'C',
7378,
6740,
'C',
7376,
584,
7349,
81,
81,
81,
81,
'C',
7375,
'T',
1544,
'C',
7337,
1579,
'C',
7335,
6477,
6477,
6478,
2033,
2676,
81,
'C',
7334,
0,
7379,
'C',
7379,
'T',
1542,
81,
81,
81,
81,
81,
81,
'C',
7174,
'C',
7380,
'C',
7381,
'C',
7382,
'C',
7176,
7383,
'C',
7383,
1256,
'C',
7172,
159,
164,
0,
1188,
1189,
167,
7384,
'C',
7384,
7048,
203,
1199,
'C',
7385,
'C',
7215,
6019,
6100,
0,
7386,
7387,
'C',
7387,
6403,
'C',
7217,
6019,
6100,
0,
7386,
7388,
'C',
7388,
6403,
'C',
7389,
'C',
7390,
113,
105,
'C',
7391,
7392,
'C',
7392,
7393,
81,
'C',
7393,
7394,
81,
'C',
7394,
7326,
'C',
7395,
5923,
7396,
4414,
7397,
'C',
7397,
4467,
553,
590,
612,
590,
612,
1761,
1763,
4545,
553,
1518,
150,
1467,
81,
'C',
7398,
7399,
'C',
7399,
7400,
81,
'C',
7400,
7401,
'C',
7401,
7326,
81,
'C',
7402,
'C',
7403,
7404,
4414,
'C',
7405,
'C',
7406,
7407,
7408,
4414,
'C',
7409,
'C',
7410,
7411,
7413,
81,
'C',
7413,
'C',
7411,
'T',
43,
2064,
81,
'C',
7414,
7412,
6132,
7415,
'C',
7415,
6134,
'C',
7416,
'C',
7417,
7418,
7419,
7420,
7421,
'T',
212,
'T',
212,
'T',
212,
'T',
212,
2801,
2800,
2800,
2446,
2446,
2800,
2800,
1610,
2574,
7418,
7420,
'C',
7421,
61,
'C',
7419,
61,
'C',
7422,
65,
2576,
'C',
7423,
7424,
4414,
'C',
7425,
'C',
7426,
2557,
'C',
7427,
7426,
'C',
7428,
'C',
7429,
'C',
7430,
7431,
'C',
7431,
6821,
'C',
7432,
'T',
43,
6466,
6609,
3861,
6610,
81,
'C',
7433,
6469,
'C',
7434,
7435,
'C',
7435,
6833,
'C',
7436,
7437,
4414,
7438,
'C',
7438,
150,
1467,
1,
'C',
7439,
'C',
7440,
2557,
104,
81,
81,
'C',
7441,
7442,
'C',
7442,
7443,
81,
'C',
7443,
0,
1012,
2412,
7444,
7445,
'C',
7445,
1383,
'C',
7444,
592,
81,
'C',
7446,
81,
81,
'C',
7447,
7448,
'C',
7448,
6828,
'C',
7449,
6060,
'C',
7450,
'C',
7451,
7452,
4414,
'C',
7453,
7454,
7456,
81,
81,
'C',
7456,
2069,
'C',
7454,
'T',
43,
'T',
4471,
'T',
4469,
0,
0,
7457,
7458,
'C',
7458,
7457,
'C',
7457,
'T',
910,
7459,
2147,
2064,
2069,
'S',
5,
'C',
7459,
3925,
1365,
1366,
60,
'C',
7460,
7461,
7455,
7462,
6132,
7463,
'C',
7463,
6134,
7454,
2069,
'C',
7464,
703,
81,
'C',
7465,
7466,
7467,
4414,
'C',
7468,
'C',
7469,
7470,
4414,
'C',
7471,
'C',
7472,
'C',
7473,
7474,
'C',
7474,
81,
'C',
7475,
7476,
'C',
7476,
7477,
81,
81,
'C',
7477,
7478,
7479,
6686,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
'C',
7479,
'T',
13708,
6636,
6637,
1457,
6638,
6639,
6637,
1457,
6638,
6639,
1651,
4541,
1147,
1147,
7480,
597,
60,
60,
81,
81,
81,
81,
'C',
7480,
81,
'S',
5,
'S',
5,
'C',
7478,
7481,
1579,
6477,
81,
81,
'C',
7481,
5967,
'C',
7482,
7483,
'C',
7483,
7484,
81,
'C',
7484,
7478,
7479,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
7485,
7486,
'C',
7486,
7487,
81,
'C',
7487,
7488,
7478,
7489,
5967,
6788,
6686,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
7489,
7490,
'C',
7490,
6636,
6637,
1457,
6638,
6639,
7491,
6637,
1457,
6638,
6639,
7491,
4541,
7480,
597,
'C',
7491,
7492,
4541,
4541,
'C',
7492,
7493,
'C',
7493,
'T',
3253,
'T',
3253,
7494,
4542,
'C',
7494,
81,
'C',
7488,
81,
'C',
7495,
7496,
'C',
7496,
7497,
81,
'C',
7497,
5967,
6788,
'C',
7498,
7499,
'C',
7499,
'C',
7500,
7501,
'C',
7501,
7502,
'C',
7502,
7478,
7490,
81,
'C',
7503,
7504,
'C',
7504,
7505,
81,
'C',
7505,
7478,
7506,
81,
'C',
7506,
'C',
7507,
'C',
7508,
5746,
4414,
4467,
90,
'C',
7509,
'C',
7510,
81,
'C',
7511,
104,
2612,
104,
2612,
104,
104,
104,
104,
104,
104,
104,
104,
104,
104,
104,
7512,
104,
61,
835,
104,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7512,
'T',
41,
3684,
775,
'C',
7513,
2446,
60,
'C',
7514,
'T',
43,
1516,
703,
2884,
4171,
4171,
4171,
'C',
7515,
'C',
7516,
7514,
81,
'C',
7517,
7518,
4414,
'C',
7519,
'C',
7520,
7521,
6132,
6134,
'C',
7522,
7523,
81,
81,
'C',
7523,
'T',
2108,
65,
3943,
81,
'C',
7525,
7524,
7526,
7527,
2830,
7528,
'C',
7528,
2149,
'C',
7529,
'T',
43,
'T',
3947,
81,
'C',
7530,
7531,
81,
81,
'C',
7531,
'T',
43,
'T',
43,
'T',
43,
65,
1516,
703,
7533,
81,
81,
81,
'C',
7533,
2064,
2069,
'C',
7534,
7531,
7535,
81,
'C',
7535,
2064,
'C',
7536,
7537,
7532,
6132,
7538,
'C',
7538,
6134,
'C',
7539,
7540,
5564,
7542,
7543,
7544,
81,
'C',
7544,
2064,
2069,
'C',
7543,
3943,
'C',
7542,
7545,
'C',
7545,
3943,
'C',
7540,
6338,
7545,
'C',
7546,
5564,
7541,
7547,
7548,
2830,
7549,
'C',
7549,
2149,
'C',
7550,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
3947,
81,
'C',
7551,
'C',
7552,
6251,
81,
'C',
7553,
6252,
6254,
'C',
7554,
6544,
7555,
81,
'C',
7555,
7556,
2069,
'C',
7556,
'C',
7557,
6545,
6132,
7558,
'C',
7558,
6134,
'C',
7559,
7560,
7562,
7563,
81,
81,
'C',
7563,
'T',
43,
2064,
'C',
7562,
2064,
'C',
7560,
2064,
'C',
7564,
7561,
6132,
7565,
'C',
7565,
6134,
2064,
2064,
7563,
'C',
7566,
7567,
81,
'C',
7567,
'T',
43,
65,
1446,
1446,
3943,
81,
81,
81,
'C',
7569,
7568,
5643,
7570,
'C',
7570,
2149,
5646,
'C',
7571,
'C',
7572,
'C',
7573,
0,
7574,
7576,
'C',
7576,
0,
4625,
81,
7577,
81,
'C',
7577,
81,
'C',
7574,
'T',
43,
775,
775,
775,
842,
842,
7578,
7578,
4540,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
7578,
4541,
81,
81,
81,
'C',
7579,
7580,
'C',
7580,
2131,
'C',
7581,
104,
81,
81,
'C',
7582,
2557,
104,
81,
'C',
7386,
1101,
'C',
7583,
7584,
'C',
7584,
7585,
81,
'C',
7585,
561,
6062,
6063,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7586,
663,
664,
695,
695,
669,
81,
81,
'C',
7587,
'C',
7588,
104,
81,
81,
81,
'C',
7589,
'C',
7590,
'C',
7591,
'T',
43,
'T',
43,
7592,
2605,
546,
3921,
7593,
546,
3921,
597,
60,
60,
60,
60,
'C',
7593,
7594,
2886,
7595,
81,
81,
81,
'C',
7595,
1447,
60,
60,
'C',
7594,
'T',
9767,
'C',
7592,
2603,
'C',
7596,
6304,
60,
81,
'C',
7597,
'C',
7598,
7599,
7600,
81,
'C',
7600,
'C',
7599,
'C',
7601,
7602,
2605,
7602,
3921,
597,
81,
'C',
7602,
3925,
3925,
3925,
3925,
2603,
81,
'C',
7603,
7604,
7605,
7606,
7607,
7608,
7609,
7610,
7611,
7612,
7613,
7614,
0,
7615,
0,
7616,
0,
7617,
0,
7618,
0,
7619,
7620,
7621,
7622,
7623,
7624,
'C',
7624,
7625,
'C',
7625,
'C',
7623,
7626,
'C',
7626,
'C',
7622,
7627,
'C',
7627,
'C',
7621,
7628,
'C',
7628,
'C',
7620,
7629,
'C',
7629,
'C',
7619,
7630,
564,
'C',
7630,
0,
7631,
7632,
'C',
7632,
'C',
7631,
584,
'C',
7618,
7630,
564,
'C',
7617,
7630,
564,
'C',
7616,
7630,
564,
'C',
7615,
7630,
564,
'C',
7614,
'C',
7613,
'S',
5,
'C',
7612,
2661,
2662,
'C',
7611,
2661,
2662,
'C',
7610,
2661,
2662,
'C',
7609,
'C',
7608,
2661,
2662,
'C',
7607,
2661,
2662,
'C',
7606,
2661,
2662,
'C',
7605,
2661,
2662,
'C',
7604,
2661,
2661,
2662,
2662,
'C',
7633,
2624,
'C',
7634,
6166,
81,
'C',
7635,
'C',
7636,
2590,
'C',
7637,
'C',
7638,
'T',
444,
'C',
7639,
'T',
6173,
2605,
597,
'C',
7640,
6304,
'C',
7641,
2631,
'C',
7642,
7643,
2729,
81,
'C',
7643,
1461,
1454,
1535,
7644,
3936,
2729,
3936,
60,
60,
'C',
7644,
1447,
60,
60,
'C',
7645,
7643,
7646,
0,
7647,
7648,
2727,
7636,
7648,
7649,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7649,
7636,
81,
81,
'C',
7648,
'C',
7647,
2728,
2729,
3936,
2112,
7650,
2673,
6289,
3912,
2203,
7651,
3912,
2204,
60,
60,
'C',
7651,
7652,
6,
'C',
7652,
'C',
7650,
1453,
2052,
'C',
7646,
1447,
60,
60,
'C',
7653,
7643,
0,
7654,
7655,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
7655,
7638,
81,
81,
'C',
7654,
2718,
2719,
7656,
'C',
7656,
2720,
7657,
6273,
'C',
7657,
7658,
6275,
555,
'C',
7659,
7653,
'C',
7660,
2624,
'C',
7661,
2159,
0,
7662,
7663,
7664,
81,
'C',
7664,
7665,
'C',
7665,
7666,
6212,
'C',
7666,
3943,
'C',
7662,
2070,
'C',
7667,
2159,
7668,
0,
7669,
81,
'C',
7669,
1841,
'C',
7670,
2118,
'C',
7671,
'T',
154,
'T',
9226,
'T',
154,
'T',
43,
'T',
9226,
553,
7672,
7673,
590,
612,
7674,
2651,
4541,
7675,
6799,
423,
683,
691,
2958,
1650,
1651,
1650,
1651,
5546,
5546,
2173,
2173,
423,
2009,
90,
90,
2572,
2570,
1227,
594,
1923,
2644,
2651,
2656,
591,
555,
423,
6490,
753,
597,
753,
597,
597,
595,
595,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
'S',
5,
81,
'S',
5,
81,
'C',
7675,
7676,
7677,
'C',
7677,
6647,
'C',
7676,
4304,
6212,
'C',
7674,
'T',
154,
'T',
9226,
553,
7678,
1,
555,
7678,
555,
555,
842,
842,
842,
753,
'S',
5,
81,
'C',
7673,
'C',
7672,
'C',
7679,
'T',
154,
'T',
9226,
'T',
41,
7680,
7681,
0,
7682,
663,
664,
669,
667,
668,
753,
7683,
81,
81,
'S',
5,
81,
81,
'C',
7683,
81,
81,
'C',
7682,
753,
'C',
7681,
553,
7684,
'C',
7684,
'T',
154,
'T',
9226,
7678,
555,
7684,
753,
'S',
5,
81,
'C',
7680,
'C',
7685,
7675,
2033,
3912,
2190,
2199,
6296,
3912,
2203,
3912,
6294,
3912,
7686,
1447,
1461,
1454,
0,
7647,
3912,
2205,
2190,
2199,
7687,
7688,
4967,
3912,
2033,
3914,
3912,
2204,
597,
60,
60,
81,
7689,
81,
7690,
1,
81,
81,
'C',
7689,
2590,
81,
81,
'C',
7688,
'C',
7687,
7691,
7692,
5,
8,
7691,
'C',
7692,
'C',
7686,
2216,
'C',
7693,
7694,
7675,
7695,
7696,
7697,
3921,
5572,
7698,
7699,
5664,
6647,
6664,
6664,
1447,
1447,
61,
7700,
451,
7701,
6662,
1447,
1447,
61,
7700,
7701,
597,
60,
60,
60,
5581,
81,
441,
'C',
7701,
7702,
7703,
7704,
2224,
7705,
7706,
'C',
7706,
'C',
7705,
'C',
7704,
'T',
154,
'T',
3253,
'T',
7341,
1947,
'C',
7703,
2226,
'C',
7702,
'T',
154,
'T',
154,
'T',
154,
6,
6,
81,
81,
'C',
7699,
'C',
7698,
'C',
7697,
7707,
'C',
7707,
81,
'C',
7696,
6664,
6662,
546,
60,
60,
'C',
7695,
1447,
60,
60,
81,
'C',
7694,
'T',
9218,
'T',
9219,
'T',
9218,
'T',
9219,
2603,
7708,
2605,
81,
7709,
1,
81,
81,
81,
'C',
7708,
2603,
60,
60,
60,
60,
'C',
7710,
7675,
6639,
7711,
597,
81,
81,
81,
'C',
7711,
6678,
0,
5586,
7712,
'C',
7712,
7713,
81,
81,
'C',
7713,
6681,
'S',
5,
'C',
7714,
1461,
1454,
1535,
2733,
0,
2718,
2719,
7656,
1472,
81,
7715,
81,
'C',
7715,
'T',
444,
81,
81,
'C',
7716,
'C',
7717,
7675,
7718,
597,
2915,
'C',
7718,
7719,
7720,
2915,
'C',
7720,
81,
'C',
7719,
81,
'C',
7721,
7722,
6311,
'C',
7723,
81,
'C',
7724,
'T',
1476,
81,
'C',
7663,
'T',
1474,
2148,
81,
'C',
7668,
'T',
1472,
2146,
81,
'C',
7725,
'T',
43,
7726,
7727,
3943,
81,
81,
81,
81,
'C',
7727,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
7726,
81,
81,
81,
'C',
7728,
7726,
2151,
81,
'C',
7729,
7730,
81,
'C',
7730,
2152,
7727,
81,
81,
'C',
7731,
1446,
6285,
7732,
2705,
2706,
2707,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
7732,
430,
7733,
7734,
2713,
'C',
7733,
'C',
7735,
7736,
2715,
'C',
7736,
'C',
7737,
7738,
7739,
'C',
7739,
6304,
60,
81,
'C',
7738,
6304,
1650,
1651,
60,
60,
81,
'C',
7740,
104,
104,
81,
81,
'C',
7741,
'T',
43,
7742,
6319,
3943,
81,
81,
81,
'C',
7742,
81,
81,
81,
'C',
7743,
7742,
2151,
81,
'C',
7744,
'C',
7745,
104,
104,
103,
81,
81,
'C',
7746,
'C',
7747,
81,
'C',
7748,
'C',
7749,
'C',
7750,
104,
60,
60,
60,
81,
81,
81,
'C',
7751,
2612,
2612,
2612,
104,
60,
60,
60,
81,
81,
81,
81,
'C',
7752,
7753,
104,
81,
81,
'C',
7753,
'T',
12329,
'C',
7754,
'T',
12331,
'C',
7755,
'T',
12330,
60,
'C',
7756,
81,
'C',
7757,
4277,
81,
'C',
7758,
4380,
81,
'C',
7759,
'C',
7760,
'C',
7761,
3925,
3925,
3925,
3925,
3917,
60,
60,
60,
60,
'C',
7762,
3917,
3917,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
7763,
3917,
3917,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
7764,
3925,
3925,
3925,
3925,
3925,
3925,
4169,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
7765,
5757,
'C',
7766,
'C',
7767,
'C',
7768,
'C',
7769,
'C',
7770,
'C',
7771,
6341,
'C',
7772,
7773,
81,
'C',
7773,
5918,
'C',
7774,
7775,
81,
'C',
7775,
5918,
'C',
7776,
7777,
81,
'C',
7777,
7773,
6343,
'C',
7778,
'C',
7779,
6811,
5606,
6814,
'C',
7780,
0,
7781,
81,
'C',
7781,
7782,
4500,
81,
'C',
7783,
7784,
5606,
6814,
5567,
5599,
1224,
7785,
5616,
81,
'C',
7784,
6812,
'C',
7786,
'C',
7787,
6760,
81,
1447,
60,
60,
6760,
81,
1447,
60,
60,
'C',
7788,
4481,
1447,
7789,
7016,
7790,
0,
7791,
0,
7792,
0,
7793,
0,
7794,
4226,
7017,
61,
5899,
60,
60,
7795,
7796,
7797,
7798,
'C',
7798,
7799,
'C',
7799,
7800,
4541,
4540,
6708,
6625,
6709,
'C',
7800,
'C',
7797,
7801,
'C',
7801,
159,
164,
0,
1188,
1189,
167,
7802,
'C',
7802,
7803,
1197,
7805,
842,
7806,
842,
4541,
4540,
6708,
6625,
6709,
6743,
203,
1199,
81,
'C',
7806,
775,
'C',
7805,
775,
'C',
7803,
159,
164,
0,
1188,
1189,
167,
7807,
'C',
7807,
'T',
3849,
1476,
1197,
7808,
1,
203,
1199,
81,
81,
'C',
7796,
7809,
'C',
7809,
7810,
7808,
7811,
7812,
4541,
4540,
6708,
6625,
6709,
6743,
'C',
7812,
159,
164,
0,
1188,
1189,
167,
7813,
'C',
7813,
1780,
4544,
7803,
1197,
4544,
4544,
203,
1199,
7247,
81,
7247,
81,
'C',
7811,
159,
164,
0,
1188,
1189,
167,
7814,
'C',
7814,
90,
1476,
1197,
203,
1199,
81,
'C',
7810,
775,
'C',
7795,
7815,
'C',
7815,
7810,
7808,
7811,
7805,
7806,
842,
4541,
4540,
6708,
6625,
6709,
6743,
'C',
7793,
7816,
'C',
7816,
81,
'C',
7792,
7817,
'C',
7817,
'C',
7791,
7818,
'S',
5,
'C',
7818,
'C',
7790,
7819,
'S',
5,
'C',
7819,
'C',
7820,
546,
60,
60,
'C',
7821,
7822,
'C',
7822,
7823,
81,
'C',
7823,
5711,
7478,
7479,
7478,
7489,
7824,
'C',
7824,
530,
530,
6477,
7826,
7827,
7828,
196,
985,
196,
985,
7830,
7831,
1,
81,
81,
'C',
7828,
159,
164,
0,
1188,
1189,
167,
7832,
'C',
7832,
1476,
1197,
203,
1199,
81,
'C',
7827,
5711,
'C',
7826,
7833,
7826,
81,
81,
'C',
7833,
7834,
7835,
113,
105,
105,
105,
105,
105,
81,
105,
1811,
81,
1480,
'C',
7835,
159,
164,
0,
1188,
1189,
167,
81,
7836,
'C',
7836,
1499,
'T',
9929,
'T',
9931,
1486,
1197,
203,
1199,
'C',
7834,
'T',
12284,
90,
584,
81,
'C',
7837,
7838,
'C',
7838,
7839,
81,
'C',
7839,
5967,
6743,
5711,
7478,
7840,
7478,
7841,
7478,
7840,
6397,
81,
81,
81,
81,
'C',
7841,
6636,
6637,
1457,
6638,
6639,
7492,
4541,
7480,
4541,
7480,
597,
'C',
7840,
7479,
'C',
7842,
7843,
'C',
7843,
7844,
81,
'C',
7844,
5711,
7478,
7479,
7478,
1457,
7490,
'C',
7845,
7846,
'C',
7846,
81,
'C',
7847,
7848,
'C',
7848,
7849,
81,
'C',
7849,
7502,
5967,
6788,
'C',
7850,
4237,
104,
81,
81,
'C',
7851,
'T',
2448,
4237,
'C',
7852,
4237,
4237,
104,
81,
81,
81,
'C',
7853,
'T',
2448,
'T',
2448,
'T',
2448,
4237,
4237,
'C',
7854,
'C',
7855,
81,
81,
'C',
7856,
7857,
'C',
7857,
'T',
43,
'T',
43,
6915,
2020,
2033,
7858,
7859,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
7859,
6915,
81,
81,
'C',
7858,
423,
423,
423,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
7860,
2070,
'C',
7861,
150,
1467,
104,
6600,
1841,
'C',
7862,
7863,
7864,
4414,
'C',
7865,
'C',
7866,
'C',
7867,
104,
81,
'C',
7868,
'C',
7869,
'C',
7870,
'T',
1980,
150,
1467,
1468,
'C',
7871,
'C',
7872,
104,
81,
'C',
7873,
1468,
'C',
7874,
4467,
7875,
7876,
4414,
81,
'C',
7877,
'C',
7878,
'C',
7879,
7880,
1515,
7881,
7882,
7883,
4414,
'C',
7881,
553,
1518,
'C',
7884,
'C',
7885,
7886,
0,
7888,
4226,
7889,
'C',
7889,
81,
'C',
7886,
4482,
'C',
7890,
'C',
7891,
5711,
6932,
4242,
6933,
5579,
5568,
4520,
6879,
7892,
4226,
6266,
1650,
1651,
6935,
5569,
5570,
60,
60,
60,
2603,
60,
60,
60,
60,
60,
6957,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
'C',
7893,
81,
'C',
7894,
81,
'C',
7895,
'T',
43,
'T',
43,
'T',
43,
81,
81,
'C',
7896,
2557,
'C',
7897,
7896,
'C',
7898,
81,
'C',
7899,
'C',
7900,
7901,
81,
81,
'C',
7901,
'T',
43,
3943,
'C',
7903,
7902,
5643,
7904,
'C',
7904,
2149,
5646,
'C',
7905,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
4329,
3807,
'C',
7906,
2446,
'C',
7907,
'T',
437,
'T',
436,
6377,
6377,
6931,
6932,
6377,
3917,
7908,
4275,
0,
0,
0,
4242,
5578,
6700,
6701,
6933,
6934,
6887,
6879,
546,
7909,
4521,
5569,
5570,
60,
60,
6387,
1474,
1474,
81,
7910,
7911,
7912,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
81,
81,
81,
'C',
7912,
7913,
81,
'C',
7913,
7914,
0,
4537,
7915,
'C',
7915,
7916,
'C',
7916,
1841,
2070,
'C',
7914,
1468,
'C',
7911,
7917,
81,
'C',
7917,
7918,
0,
4537,
7919,
'C',
7919,
7916,
81,
'C',
7918,
1468,
'C',
7910,
7920,
81,
'C',
7920,
7921,
0,
4537,
7922,
'C',
7922,
7916,
'C',
7921,
1468,
'C',
7908,
7923,
1468,
1468,
1468,
81,
81,
81,
81,
'C',
7923,
1468,
'C',
7924,
7916,
1468,
1468,
7917,
81,
81,
'C',
7925,
7916,
'C',
7926,
5729,
0,
7011,
7927,
7928,
1224,
81,
81,
'C',
7927,
7929,
'C',
7929,
7378,
6032,
81,
'C',
7930,
'T',
43,
81,
81,
'C',
7931,
'T',
43,
81,
81,
'C',
7932,
'T',
43,
81,
81,
'C',
7933,
'T',
43,
81,
81,
'C',
7934,
5564,
6245,
81,
81,
'C',
7935,
5564,
7936,
6240,
7937,
'C',
7937,
2149,
5646,
'C',
7938,
2723,
7939,
'C',
7939,
1472,
'C',
7940,
7941,
'C',
7941,
1776,
'C',
7942,
7943,
'C',
7943,
1517,
'C',
7944,
'T',
43,
104,
104,
1516,
703,
104,
104,
81,
81,
'C',
7945,
1516,
2446,
'C',
7946,
65,
'C',
7947,
'C',
7948,
7949,
'C',
7949,
2122,
'C',
7950,
835,
104,
81,
'C',
7951,
5590,
5590,
5590,
5590,
7952,
6813,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
7952,
5590,
5590,
5590,
5590,
7953,
6815,
'C',
7953,
5590,
5590,
6816,
'C',
7954,
7955,
1447,
1447,
1447,
60,
60,
60,
60,
60,
'C',
7956,
4481,
790,
3925,
790,
840,
7790,
0,
7791,
0,
7792,
0,
7957,
0,
7958,
4226,
60,
60,
60,
7959,
7960,
7961,
7962,
'C',
7962,
7799,
'C',
7961,
7801,
'C',
7960,
7809,
'C',
7959,
7815,
'C',
7957,
'S',
5,
'C',
7955,
546,
60,
60,
'C',
7963,
5785,
104,
'C',
7964,
7965,
104,
'C',
7965,
6088,
'C',
7966,
'T',
43,
'T',
43,
'T',
240,
'C',
7967,
81,
'C',
7968,
81,
'C',
7969,
'T',
2222,
'C',
7970,
'T',
10300,
81,
'C',
7971,
'C',
7972,
60,
60,
60,
'C',
7973,
60,
'C',
7974,
104,
104,
60,
60,
81,
58,
'C',
7975,
3925,
7009,
60,
'C',
7976,
7977,
'C',
7977,
6124,
81,
'C',
7978,
104,
7979,
104,
104,
58,
58,
'C',
7979,
'T',
2222,
'C',
7374,
'T',
910,
'T',
43,
'T',
43,
7979,
7009,
'C',
7342,
7980,
2136,
'C',
7980,
'T',
10300,
'T',
4469,
'T',
10300,
0,
0,
0,
7981,
'C',
7981,
7982,
81,
'C',
7982,
7983,
'C',
7983,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
'C',
7984,
'C',
7985,
'T',
2222,
'C',
7986,
'T',
10300,
'C',
7987,
'C',
7988,
7989,
'C',
7989,
7990,
81,
'C',
7990,
'T',
6839,
'T',
6843,
733,
3925,
6096,
6098,
6099,
60,
60,
81,
'C',
7991,
104,
5785,
2612,
104,
104,
81,
81,
81,
81,
'C',
7992,
6083,
81,
'C',
7993,
7994,
7994,
81,
'C',
7994,
3925,
7009,
60,
60,
'C',
7995,
'C',
7996,
2446,
'C',
7997,
'T',
43,
65,
'C',
7998,
'C',
7999,
1599,
1602,
1606,
'C',
8000,
'C',
8001,
'T',
212,
'C',
8002,
'T',
43,
'C',
8003,
8004,
81,
'C',
8004,
'T',
12251,
81,
'C',
8005,
8006,
'C',
8006,
'T',
41,
861,
775,
663,
664,
6778,
6779,
667,
668,
775,
667,
668,
695,
775,
695,
669,
81,
'C',
8008,
6778,
6779,
775,
597,
'C',
8009,
8010,
1,
'C',
8011,
293,
8012,
2574,
2446,
'C',
8012,
700,
700,
701,
233,
'C',
8013,
'T',
43,
1516,
703,
2918,
293,
8012,
293,
8012,
2918,
'C',
8014,
104,
81,
'C',
8015,
2446,
'C',
8016,
1516,
703,
'S',
5,
'C',
8017,
8018,
'C',
8018,
553,
'C',
8019,
56,
81,
'C',
8020,
'T',
3253,
595,
'C',
8021,
1984,
'C',
8022,
684,
'C',
8023,
658,
3003,
8024,
81,
'C',
8025,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
696,
698,
8026,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8026,
'C',
8027,
'T',
3253,
595,
'C',
8028,
1984,
'C',
8029,
684,
'C',
8030,
'T',
3253,
595,
'C',
8031,
1984,
'C',
8032,
684,
'C',
8033,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3104,
3107,
8034,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8034,
'C',
8035,
'T',
3253,
595,
'C',
8036,
1984,
'C',
8037,
684,
'C',
8038,
658,
3003,
8039,
81,
'C',
8040,
'T',
3253,
595,
'C',
8041,
1984,
'C',
8042,
684,
'C',
8043,
638,
639,
595,
232,
'C',
8044,
1984,
'C',
8045,
684,
'C',
8046,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3174,
3043,
3257,
751,
5,
8,
752,
752,
232,
81,
81,
81,
'C',
8047,
'T',
3253,
595,
'C',
8048,
1984,
'C',
8049,
684,
'C',
8050,
638,
639,
595,
243,
'C',
8051,
1984,
'C',
8052,
684,
'C',
8053,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3220,
3010,
3011,
3235,
751,
5,
8,
752,
752,
81,
81,
81,
'C',
8039,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
693,
3005,
8054,
751,
5,
8,
752,
638,
639,
752,
81,
81,
'C',
8054,
'C',
8024,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3030,
3160,
8055,
751,
5,
8,
752,
638,
639,
752,
81,
81,
'C',
8055,
'C',
8056,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3162,
3249,
8026,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8057,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
1461,
8058,
751,
5,
8,
752,
638,
639,
752,
60,
81,
81,
81,
'C',
8058,
'C',
8059,
'T',
3253,
595,
'C',
8060,
1984,
'C',
8061,
684,
'C',
8062,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
603,
3102,
5416,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8063,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
948,
950,
8064,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8064,
'C',
8065,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
2226,
8066,
751,
5,
8,
752,
638,
639,
752,
60,
81,
81,
81,
'C',
8066,
'C',
8067,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
643,
637,
8068,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8068,
'C',
8069,
3352,
595,
'C',
8070,
1984,
'C',
8071,
684,
'C',
8072,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
3378,
3093,
3350,
751,
5,
8,
752,
752,
270,
81,
81,
81,
'C',
8073,
'T',
154,
'T',
13710,
'T',
3249,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
'T',
3249,
'T',
3250,
'T',
3249,
'T',
3253,
'T',
7635,
'T',
154,
'T',
3253,
'T',
3251,
'T',
3253,
'T',
3251,
658,
750,
1947,
1949,
8074,
751,
5,
8,
752,
638,
639,
752,
81,
81,
81,
'C',
8074,
'C',
8075,
3505,
'C',
8076,
0,
8077,
'C',
8077,
3515,
81,
'C',
8078,
'T',
12875,
'C',
8079,
4076,
0,
8080,
'C',
8080,
4092,
81,
'C',
8081,
'T',
2448,
6622,
1927,
1358,
2070,
'C',
8082,
8083,
'C',
8083,
3564,
'C',
8084,
150,
1467,
1354,
8085,
1354,
8086,
8087,
1354,
1523,
'C',
8086,
0,
8088,
1,
8089,
'C',
8089,
'C',
8090,
'T',
4236,
'T',
4237,
'T',
2448,
'T',
7462,
150,
1467,
1354,
8085,
8086,
8087,
2801,
4219,
'C',
8091,
8092,
'C',
8092,
1522,
'C',
8093,
'T',
154,
'T',
3253,
150,
1467,
1841,
'C',
8094,
'T',
154,
'T',
3253,
'T',
154,
'T',
154,
'T',
3253,
'T',
3251,
553,
8095,
'C',
8095,
'T',
3251,
553,
'C',
8096,
8097,
'C',
8097,
1468,
'C',
8098,
560,
553,
'C',
8099,
3700,
560,
553,
'C',
8100,
'C',
8101,
1365,
1366,
'C',
8102,
733,
60,
'C',
8103,
'C',
8104,
81,
'C',
8105,
'C',
8106,
81,
'C',
8107,
8108,
7257,
90,
8109,
8110,
1,
7258,
'C',
8111,
'C',
8112,
8113,
'C',
8113,
8114,
81,
'C',
8114,
8115,
4226,
5569,
5570,
2572,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
8116,
8117,
'C',
8117,
8118,
81,
'C',
8118,
6876,
7060,
7060,
6382,
'C',
8119,
104,
81,
81,
81,
81,
81,
81,
'C',
8120,
'C',
8121,
104,
81,
81,
81,
'C',
8122,
8123,
8124,
0,
6503,
4226,
6383,
8125,
81,
'C',
8125,
6747,
'T',
4657,
'T',
4659,
8126,
8127,
8128,
8129,
8130,
4545,
553,
1518,
3860,
8131,
5613,
5564,
5614,
8132,
8133,
1592,
5569,
5570,
8134,
4521,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
81,
81,
81,
81,
81,
'C',
8132,
4481,
'C',
8131,
8135,
1227,
8136,
'C',
8136,
'C',
8130,
4237,
81,
'C',
8129,
8137,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
8137,
8138,
5572,
5611,
7805,
5572,
7810,
5572,
7806,
5572,
61,
5572,
81,
4276,
9,
2913,
81,
81,
'C',
8138,
'C',
8128,
3860,
7792,
0,
8139,
'C',
8139,
7801,
81,
'C',
8127,
7819,
3860,
7790,
0,
8140,
'C',
8140,
7815,
81,
'C',
8126,
3860,
7791,
0,
8141,
'C',
8141,
7809,
81,
'C',
8123,
8142,
7165,
81,
'C',
8142,
4482,
'C',
8144,
1632,
541,
1632,
541,
6744,
81,
'C',
8145,
1632,
0,
2129,
0,
8146,
0,
8146,
8147,
6745,
8148,
6831,
0,
8149,
6041,
0,
8150,
8151,
8152,
8153,
8154,
8155,
8156,
8157,
'C',
8157,
8158,
'C',
8158,
0,
4537,
8159,
'C',
8159,
'C',
8156,
8160,
'C',
8160,
1632,
1632,
541,
1632,
8161,
8162,
8163,
3860,
555,
6744,
4541,
1579,
6477,
6685,
6041,
4540,
4544,
8164,
81,
'C',
8164,
8165,
8166,
8167,
'C',
8167,
8168,
81,
'C',
8168,
1514,
'C',
8166,
8169,
1515,
8170,
8171,
6535,
6536,
'C',
8170,
553,
1518,
'C',
8165,
3860,
'C',
8163,
3860,
6716,
8148,
81,
'C',
8162,
3860,
6746,
3860,
6745,
'S',
5,
'S',
5,
'C',
8161,
3860,
8172,
6402,
3860,
8147,
6445,
'C',
8172,
'C',
8155,
6624,
'C',
8154,
8173,
'C',
8173,
1579,
6477,
4237,
8174,
4544,
81,
81,
81,
'C',
8174,
703,
2064,
'C',
8153,
8175,
'C',
8175,
6723,
8162,
8163,
0,
4537,
8176,
'C',
8176,
'C',
8151,
1632,
2122,
6041,
'C',
8148,
6688,
6076,
'C',
8147,
6405,
8177,
'C',
8177,
6417,
8178,
'C',
8178,
1476,
8179,
81,
'C',
8179,
0,
1012,
8180,
'C',
8180,
1476,
81,
'C',
8181,
6417,
0,
2129,
0,
2135,
6723,
6716,
6691,
8182,
0,
8149,
6831,
8183,
0,
8184,
8164,
8147,
3860,
6402,
4303,
5564,
6415,
7792,
7812,
81,
81,
'S',
5,
'S',
5,
'C',
8183,
6832,
1,
'C',
8182,
'C',
8185,
8186,
8187,
81,
'C',
8187,
4482,
'C',
8189,
8190,
0,
8191,
0,
2135,
8183,
0,
8184,
5708,
5709,
0,
2135,
6077,
6126,
0,
6070,
6077,
6126,
0,
6070,
4544,
8192,
561,
81,
'C',
8192,
8193,
'C',
8193,
6731,
'C',
8124,
3860,
8166,
'C',
8194,
8167,
'C',
8190,
3860,
8166,
'C',
8195,
'C',
8196,
'C',
8197,
'C',
8198,
'C',
8199,
'C',
8200,
'C',
8201,
530,
196,
985,
'C',
8202,
530,
196,
985,
'C',
8203,
530,
196,
985,
'C',
8186,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
8152,
'C',
8204,
2070,
'C',
8205,
150,
1467,
104,
6600,
1841,
'C',
8206,
8207,
2612,
104,
555,
2612,
104,
555,
103,
555,
60,
60,
81,
81,
'C',
8208,
8207,
103,
555,
'C',
8209,
104,
555,
81,
81,
81,
'C',
8207,
8209,
103,
555,
'C',
8210,
8207,
104,
555,
103,
555,
60,
81,
'C',
8211,
8207,
104,
555,
81,
'C',
8212,
8207,
103,
555,
'C',
8213,
6592,
4414,
77,
113,
'C',
8214,
'C',
8215,
8216,
8218,
8220,
8221,
81,
81,
'C',
8221,
2064,
'C',
8220,
8222,
2064,
'C',
8222,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
8218,
8224,
4481,
6209,
5564,
1780,
8223,
1,
60,
'C',
8224,
2358,
4482,
'C',
8216,
'T',
43,
2064,
'C',
8226,
8218,
8217,
6132,
8227,
'C',
8227,
6134,
'C',
8228,
'C',
8229,
'T',
6387,
81,
'C',
8230,
'T',
4471,
0,
8231,
0,
8232,
0,
8233,
8234,
8235,
81,
'C',
8235,
8236,
'C',
8236,
0,
4537,
8237,
8238,
'C',
8238,
'C',
8237,
8239,
8240,
1,
81,
8240,
81,
'C',
8239,
1549,
0,
555,
8241,
81,
'C',
8241,
8242,
81,
'C',
8242,
8243,
8243,
8243,
8240,
81,
8240,
81,
'C',
8243,
'T',
6372,
81,
'C',
8234,
8244,
'C',
8244,
'T',
6378,
1,
1,
'C',
8233,
8245,
'C',
8245,
'T',
6377,
1,
1,
81,
'C',
8232,
1632,
8246,
8247,
6041,
81,
'C',
8247,
8248,
'C',
8248,
'C',
8246,
2132,
'C',
8231,
1632,
8249,
6041,
'C',
8249,
2132,
'C',
8250,
1,
1,
0,
8231,
0,
8251,
8245,
0,
8232,
0,
8252,
81,
81,
'C',
8252,
1632,
555,
8253,
81,
'C',
8253,
2136,
'C',
8251,
1632,
555,
8254,
'C',
8254,
2136,
'C',
8255,
8237,
'C',
8256,
'T',
4469,
0,
8251,
0,
8252,
0,
8257,
'C',
8257,
'T',
6377,
1,
1,
'C',
8258,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
8259,
'C',
8260,
2070,
'C',
8261,
150,
1467,
104,
6600,
1841,
'C',
8262,
0,
0,
0,
5967,
0,
1311,
1071,
6694,
4226,
8263,
8143,
4226,
8264,
4521,
8265,
1224,
4430,
8266,
8267,
6392,
81,
'C',
8267,
8268,
81,
'C',
8268,
2070,
81,
'C',
8266,
8269,
81,
'C',
8269,
1841,
'C',
8270,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
154,
'T',
9226,
'T',
5922,
8271,
6821,
8259,
753,
'S',
5,
'C',
8271,
8272,
'C',
8272,
61,
5832,
81,
'C',
8273,
'T',
3253,
'T',
3253,
'T',
154,
'T',
9226,
'T',
5920,
8272,
753,
81,
81,
81,
81,
'S',
5,
'C',
8274,
8258,
8275,
8271,
'C',
8275,
4482,
'C',
8276,
'T',
448,
'T',
3253,
6464,
8271,
0,
799,
5973,
81,
81,
81,
81,
81,
81,
8277,
'C',
8277,
5970,
5972,
81,
'C',
8278,
8143,
8279,
4431,
'C',
8280,
6821,
'C',
8281,
1762,
1808,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
8282,
1632,
6041,
'C',
8283,
1632,
541,
6901,
8284,
4476,
'C',
8284,
2116,
3917,
8285,
3917,
8285,
3917,
8285,
3917,
8285,
81,
'C',
8285,
60,
60,
60,
60,
'C',
8286,
0,
4537,
8287,
'C',
8287,
'C',
8288,
0,
4537,
8289,
'C',
8289,
'C',
8290,
0,
4537,
8291,
'C',
8291,
'C',
8292,
0,
4537,
8293,
'C',
8293,
'C',
8294,
1632,
555,
'C',
8295,
'C',
8296,
'C',
8297,
'C',
8298,
530,
196,
985,
'C',
8299,
530,
196,
985,
'C',
8300,
530,
196,
985,
'C',
8301,
103,
0,
8302,
8303,
8304,
4431,
8143,
8305,
'C',
8305,
8306,
81,
81,
'C',
8306,
8307,
81,
81,
81,
'C',
8307,
1755,
1755,
8309,
8310,
'T',
3849,
'T',
3849,
1069,
6462,
8311,
8312,
5938,
150,
1467,
8313,
2801,
2800,
614,
150,
1467,
150,
1467,
1841,
1841,
1841,
8312,
5938,
8314,
8316,
595,
8309,
81,
81,
81,
'C',
8316,
0,
8317,
8318,
8319,
8321,
8320,
1433,
'C',
8321,
'T',
1542,
1516,
614,
81,
81,
81,
'C',
8319,
1632,
'T',
3712,
'T',
3714,
81,
81,
'C',
8318,
0,
8317,
8322,
'C',
8322,
'T',
1542,
81,
81,
81,
'C',
8317,
'T',
43,
'T',
3849,
6464,
0,
1692,
8323,
'C',
8323,
81,
'C',
8314,
1632,
'C',
8313,
8084,
'C',
8312,
1354,
1927,
1358,
1529,
81,
'C',
8311,
1069,
6462,
'C',
8310,
90,
1837,
'C',
8302,
'C',
8325,
8326,
81,
81,
81,
'C',
8326,
4313,
1514,
'C',
8327,
8308,
8328,
1515,
8329,
8326,
77,
113,
'C',
8329,
553,
1518,
'C',
8330,
2122,
'C',
8149,
2132,
'C',
8184,
2136,
'C',
8331,
8332,
4431,
'C',
8333,
1927,
1358,
0,
2132,
8334,
81,
'C',
8334,
8335,
81,
'C',
8335,
0,
4537,
8336,
'C',
8336,
1,
'C',
8337,
8338,
81,
81,
'C',
8338,
1069,
6462,
6621,
6621,
1927,
1358,
0,
2132,
1927,
1358,
0,
2136,
81,
81,
'C',
8339,
8338,
'C',
8340,
77,
113,
'C',
8341,
'T',
5499,
'T',
5199,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3849,
553,
90,
1071,
104,
555,
835,
104,
81,
'C',
8342,
81,
'C',
8343,
'T',
1476,
81,
'C',
8344,
'T',
1474,
2148,
81,
'C',
8345,
'T',
1472,
2146,
81,
81,
'C',
8346,
'T',
43,
8347,
8348,
3943,
81,
81,
81,
'C',
8348,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
8347,
81,
81,
81,
'C',
8349,
8347,
2151,
81,
'C',
8350,
8351,
81,
'C',
8351,
2152,
8348,
81,
81,
'C',
8352,
'T',
1342,
'C',
8353,
'T',
4471,
0,
8354,
81,
'C',
8354,
8355,
'C',
8355,
0,
4537,
8356,
'C',
8356,
'C',
8357,
'T',
43,
'T',
4471,
'T',
4469,
0,
0,
81,
81,
'C',
8358,
'T',
4469,
0,
'C',
8359,
'C',
8360,
90,
0,
0,
7256,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
0,
0,
7256,
584,
7258,
8361,
8362,
8363,
8364,
8365,
8366,
8367,
8368,
81,
81,
81,
'C',
8368,
'T',
7287,
'T',
7289,
81,
81,
81,
'C',
8367,
8369,
7273,
8370,
'C',
8370,
7278,
81,
0,
8371,
81,
8372,
1,
81,
'C',
8371,
8373,
60,
81,
81,
81,
'C',
8373,
3925,
60,
'C',
8366,
'T',
7279,
'T',
7281,
'T',
7285,
81,
4527,
81,
81,
'C',
8365,
7283,
7277,
'C',
8364,
'T',
7291,
'T',
7293,
'T',
7295,
81,
81,
'C',
8363,
7285,
7287,
'C',
8362,
'T',
7271,
'T',
7273,
'T',
7277,
81,
'C',
8361,
8374,
7291,
7287,
'C',
8375,
1106,
1106,
'C',
8376,
'C',
8377,
'C',
8378,
'C',
8379,
'C',
8380,
'C',
8381,
'C',
8382,
530,
196,
985,
'C',
8383,
530,
196,
985,
'C',
8384,
530,
196,
985,
'C',
8385,
6057,
6059,
'C',
8386,
'C',
8387,
6060,
'C',
8388,
'T',
2744,
'T',
2738,
'T',
2742,
8389,
8390,
8389,
6665,
6665,
423,
2020,
423,
2193,
6490,
1447,
8391,
0,
0,
0,
3917,
6665,
4520,
6881,
6882,
6700,
6701,
6798,
6797,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
8392,
8393,
8394,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
5582,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
8394,
8395,
'C',
8395,
81,
'C',
8393,
8396,
81,
'C',
8396,
2727,
6633,
4541,
4541,
4541,
81,
81,
'S',
5,
81,
'C',
8392,
8397,
81,
'C',
8397,
'T',
2738,
6665,
1447,
2727,
60,
'C',
8391,
'C',
8390,
'C',
8389,
'S',
5,
'C',
8398,
8399,
0,
2129,
6076,
8386,
8400,
81,
'C',
8400,
8401,
'C',
8401,
8399,
6084,
7212,
'C',
8399,
81,
81,
'C',
8402,
8399,
0,
2129,
8401,
8399,
0,
2135,
81,
81,
'C',
8403,
6077,
6126,
8401,
8399,
0,
2135,
'C',
8404,
8405,
'C',
8405,
8151,
'C',
8406,
7812,
'C',
8150,
1632,
2129,
8407,
6041,
'C',
8407,
'C',
8191,
1632,
555,
7812,
2135,
'C',
8408,
'T',
3849,
6700,
6701,
8409,
5565,
4431,
8410,
4431,
5569,
5570,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
8409,
'T',
3849,
81,
'C',
8411,
'T',
43,
8412,
8413,
81,
81,
81,
'C',
8413,
1861,
'T',
5118,
'T',
5781,
'T',
5781,
8414,
0,
8416,
0,
8417,
8418,
81,
'C',
8418,
1861,
0,
4537,
8419,
81,
8420,
81,
'C',
8420,
'C',
8419,
1234,
'C',
8417,
81,
'C',
8416,
'C',
8414,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
1970,
'T',
154,
'T',
9226,
'T',
1972,
90,
150,
1467,
553,
1504,
1841,
555,
8421,
1,
0,
1955,
179,
0,
1101,
8421,
584,
557,
560,
8422,
1,
555,
753,
8423,
8424,
81,
'S',
5,
'C',
8424,
'T',
154,
'T',
3253,
584,
81,
81,
'C',
8423,
81,
81,
'C',
8412,
'T',
154,
'T',
154,
'T',
5141,
'T',
5141,
'T',
154,
'T',
3253,
'T',
3253,
'T',
1974,
65,
81,
'C',
8425,
8413,
'C',
8426,
8427,
5794,
1606,
'C',
8428,
8429,
81,
81,
'C',
8429,
8431,
'C',
8431,
3943,
2109,
'C',
8432,
8430,
6132,
8433,
'C',
8433,
6134,
'C',
8434,
8435,
8437,
81,
'C',
8437,
'C',
8435,
'T',
43,
8438,
7459,
8438,
2147,
2064,
2069,
'C',
8438,
'C',
8439,
8436,
6132,
8440,
'C',
8440,
7459,
6134,
'C',
8441,
8442,
8444,
81,
81,
'C',
8444,
3943,
'C',
8442,
3943,
'C',
8445,
8443,
6132,
8446,
'C',
8446,
6134,
'C',
8447,
'C',
8448,
'C',
8449,
8450,
4521,
'C',
8451,
8452,
81,
81,
'C',
8452,
'T',
43,
2064,
'C',
8454,
8453,
8455,
6132,
8456,
'C',
8456,
6134,
'C',
8457,
8458,
81,
81,
'C',
8458,
'C',
8460,
8459,
6132,
6134,
'C',
8461,
6057,
8462,
4431,
'C',
8463,
'C',
8464,
'C',
8465,
2033,
'C',
8466,
2033,
0,
6283,
8467,
8468,
'C',
8468,
8467,
81,
81,
'C',
8467,
8469,
'C',
8469,
'T',
8038,
1447,
2048,
2591,
2047,
60,
60,
81,
'C',
8470,
8471,
'C',
8471,
0,
6269,
81,
8472,
'C',
8472,
'T',
444,
81,
81,
'C',
8473,
8474,
8475,
7592,
8475,
2603,
2605,
546,
8475,
8476,
2886,
1447,
597,
60,
60,
60,
60,
5919,
81,
5919,
81,
81,
81,
81,
81,
'C',
8476,
6737,
6737,
6737,
2605,
2886,
7595,
2886,
7595,
1447,
60,
60,
60,
60,
2603,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
8475,
3923,
3924,
546,
60,
60,
'C',
8474,
'T',
9767,
'C',
8477,
8478,
'C',
8478,
6304,
1650,
1651,
60,
60,
81,
'C',
8479,
8480,
6311,
'C',
8481,
2612,
2612,
2612,
2612,
104,
60,
60,
81,
'C',
8482,
2446,
60,
60,
'C',
8483,
'T',
43,
'T',
43,
'C',
8484,
'T',
146,
8485,
7592,
7592,
6737,
2606,
2605,
2606,
3942,
8486,
1447,
597,
597,
60,
81,
'C',
8486,
1650,
1651,
3925,
1447,
60,
60,
60,
60,
60,
'C',
8485,
'T',
144,
3921,
'C',
8488,
6260,
'C',
8489,
6261,
81,
'C',
8490,
8491,
2033,
'C',
8491,
2033,
'C',
8493,
'T',
43,
7639,
'C',
8494,
6260,
'C',
8495,
6261,
81,
'C',
8496,
'C',
8497,
2590,
0,
8498,
8499,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
8499,
8500,
81,
81,
'C',
8498,
8501,
2015,
8502,
8503,
6289,
'C',
8503,
'T',
43,
2052,
'C',
8502,
2052,
'S',
5,
'C',
8504,
'T',
4471,
0,
6260,
'C',
8505,
'T',
4469,
6261,
0,
7457,
81,
'C',
8506,
'C',
8500,
2590,
'C',
8507,
'C',
8508,
'T',
444,
'C',
8509,
2605,
3941,
597,
'C',
8510,
6304,
7640,
'C',
8511,
2631,
'C',
8512,
8513,
2015,
8514,
0,
6289,
'C',
8514,
'C',
8515,
'C',
8516,
'C',
8517,
'C',
8518,
3937,
'C',
8519,
8520,
2729,
81,
'C',
8520,
8521,
8522,
1461,
1454,
1535,
'C',
8522,
2728,
2729,
60,
60,
'C',
8521,
81,
'C',
8524,
8523,
2015,
8525,
0,
6289,
81,
81,
423,
60,
60,
60,
60,
'C',
8525,
'C',
8526,
8520,
0,
7654,
8527,
'C',
8527,
7638,
81,
81,
'C',
8528,
8526,
81,
'C',
8529,
'C',
8530,
6260,
'C',
8531,
'C',
8532,
8533,
0,
6283,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
8533,
'T',
992,
'T',
9319,
2033,
8534,
2033,
454,
795,
2033,
8535,
454,
795,
2033,
8535,
2033,
81,
81,
'C',
8535,
8536,
'C',
8536,
'C',
8534,
'T',
10566,
2020,
8537,
423,
2193,
454,
795,
2194,
454,
795,
8538,
2192,
60,
81,
'C',
8538,
2217,
8539,
'C',
8539,
'C',
8537,
1650,
1651,
60,
60,
'C',
8540,
8533,
7736,
3937,
'C',
8541,
'C',
8542,
423,
8543,
2022,
8544,
60,
60,
'C',
8544,
2048,
2594,
'C',
8545,
8546,
546,
3921,
597,
60,
'C',
8546,
'C',
8547,
'C',
8548,
'C',
8549,
553,
104,
555,
104,
555,
104,
555,
835,
81,
81,
'C',
8550,
2557,
104,
81,
81,
'C',
8551,
8552,
'C',
8552,
0,
6269,
81,
8553,
'C',
8553,
'T',
444,
81,
81,
'C',
8554,
8555,
'C',
8555,
'T',
8038,
1447,
2048,
2591,
2047,
60,
60,
81,
'C',
8556,
8557,
8558,
597,
'C',
8558,
'T',
2105,
90,
584,
81,
'C',
8557,
8559,
3921,
'C',
8559,
8475,
81,
'C',
8560,
8561,
'C',
8562,
8563,
81,
'C',
8564,
8565,
6311,
'C',
8566,
8567,
1,
81,
'C',
8568,
'C',
8569,
'C',
8570,
8567,
81,
'C',
8571,
'C',
8572,
'C',
8573,
8567,
81,
'C',
8574,
'C',
8575,
'C',
8576,
'T',
12330,
'T',
12331,
8577,
8577,
'C',
8577,
'C',
8578,
104,
81,
81,
81,
81,
'C',
8579,
2446,
'C',
8580,
'T',
43,
'T',
43,
'C',
8581,
81,
'C',
8582,
2574,
2446,
'C',
8583,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
4304,
'C',
8584,
5582,
5582,
'C',
8585,
'C',
8586,
5582,
5582,
'C',
8587,
8588,
8589,
4414,
'C',
8590,
'C',
8591,
'C',
8592,
'T',
43,
81,
'C',
8593,
8594,
'C',
8594,
8595,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8597,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8598,
8598,
8598,
8599,
8599,
8599,
8600,
8601,
8602,
8603,
8604,
8605,
8606,
8607,
8608,
8609,
8610,
8611,
8612,
8613,
8614,
8615,
8616,
8617,
8618,
8619,
8620,
8621,
8622,
8623,
4224,
'C',
8623,
8596,
8596,
8596,
4273,
60,
'C',
8622,
8624,
4272,
'C',
8624,
8625,
8625,
8625,
8625,
8625,
8625,
8625,
8625,
8626,
8627,
6983,
0,
8628,
0,
8629,
0,
8630,
0,
8631,
0,
8632,
81,
81,
81,
'C',
8632,
8633,
81,
81,
81,
'C',
8633,
2032,
2032,
546,
60,
60,
60,
'C',
8631,
6986,
81,
81,
81,
'C',
8630,
8634,
81,
81,
81,
'C',
8634,
'T',
2614,
'T',
10498,
'T',
10497,
'C',
8629,
8596,
81,
81,
81,
'C',
8628,
8635,
81,
81,
81,
'C',
8635,
8596,
8596,
8636,
8596,
4276,
8596,
8596,
8636,
8596,
4276,
8596,
8596,
8636,
2190,
2199,
3913,
2190,
2199,
3913,
2190,
2199,
2190,
2199,
8596,
4276,
5,
8,
5,
8,
60,
60,
60,
60,
60,
'C',
8636,
1365,
1366,
60,
2908,
'C',
8627,
8637,
1,
'C',
8626,
8638,
1,
'C',
8625,
8639,
1,
'C',
8621,
8624,
4271,
'C',
8620,
8624,
4270,
'C',
8619,
8640,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8635,
8635,
8635,
4269,
60,
60,
'C',
8640,
'T',
43,
'T',
43,
8596,
4280,
4274,
4274,
8596,
4280,
4281,
81,
4281,
'C',
8618,
8596,
8599,
8599,
8596,
8596,
8635,
8635,
4268,
60,
60,
'C',
8617,
6986,
4267,
60,
60,
60,
81,
81,
81,
81,
81,
'C',
8616,
8596,
4266,
60,
60,
60,
60,
60,
'C',
8615,
8596,
8635,
6986,
6986,
4265,
60,
'C',
8614,
8596,
8635,
4264,
60,
60,
'C',
8613,
8596,
8596,
4263,
60,
60,
60,
'C',
8612,
8596,
8596,
8596,
8635,
4262,
60,
60,
'C',
8611,
8598,
8598,
8598,
8598,
8598,
4236,
'C',
8610,
8596,
8635,
8635,
8599,
8599,
4261,
60,
60,
60,
'C',
8609,
8596,
8596,
8596,
8596,
8596,
4260,
60,
60,
60,
60,
60,
60,
'C',
8608,
8596,
8635,
8635,
4259,
60,
60,
'C',
8607,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
4234,
60,
'C',
8606,
8596,
4258,
60,
60,
'C',
8605,
8596,
8596,
8599,
8599,
8598,
4257,
60,
60,
'C',
8604,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
6986,
6986,
8641,
8635,
8635,
4240,
60,
60,
60,
'C',
8641,
'T',
1273,
'T',
1275,
'C',
8603,
8596,
8596,
6986,
4255,
60,
60,
'C',
8602,
6986,
6986,
8635,
4254,
60,
60,
60,
81,
'C',
8601,
8596,
6986,
8635,
8596,
8635,
4253,
60,
'C',
8600,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8635,
4252,
60,
60,
60,
'C',
8599,
8596,
4299,
4299,
4242,
60,
60,
60,
'C',
8598,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
8635,
4286,
60,
'C',
8597,
8635,
8642,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8596,
8643,
4249,
60,
60,
'C',
8643,
8644,
8644,
8645,
8645,
8645,
8645,
4381,
60,
'C',
8645,
2222,
'C',
8644,
8646,
8646,
8646,
8646,
4381,
'C',
8646,
2222,
'C',
8642,
8647,
8647,
2603,
60,
60,
60,
60,
'C',
8647,
2603,
60,
60,
60,
60,
'C',
8596,
8648,
8648,
1366,
4282,
4282,
1366,
4283,
4283,
1366,
4284,
4284,
1366,
441,
60,
60,
60,
60,
60,
'C',
8648,
1365,
1366,
4274,
60,
'C',
8595,
4246,
60,
60,
'C',
8649,
8650,
8651,
4414,
1593,
'C',
8652,
553,
8653,
6375,
8654,
6375,
555,
8653,
8654,
555,
5899,
5582,
'C',
8655,
81,
81,
'C',
8656,
6076,
8657,
'C',
8658,
6077,
6126,
0,
6127,
8659,
8660,
8661,
'C',
8661,
8662,
81,
'C',
8662,
0,
4537,
8663,
'C',
8663,
'T',
43,
'C',
8660,
8664,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
8664,
7859,
1514,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
8659,
8665,
8666,
6121,
6123,
4500,
6121,
6123,
6089,
6121,
6123,
6085,
8667,
8668,
8669,
8670,
8671,
8672,
8673,
4460,
8674,
8669,
8674,
7362,
6085,
7190,
7191,
7190,
7191,
0,
8675,
0,
8675,
3890,
8665,
113,
105,
105,
105,
105,
105,
81,
105,
7021,
60,
4480,
8676,
81,
81,
81,
81,
'C',
8676,
8677,
'C',
8677,
8678,
8678,
8660,
60,
'C',
8678,
'T',
910,
'T',
910,
'T',
2610,
'T',
2107,
1651,
60,
81,
'S',
5,
'C',
8675,
8679,
2136,
'C',
8679,
8680,
'C',
8680,
'T',
4469,
'T',
10300,
'T',
4469,
'T',
10300,
0,
0,
0,
0,
8681,
8682,
'C',
8682,
8683,
81,
'C',
8683,
8684,
8684,
8684,
8685,
'C',
8685,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
'C',
8684,
'T',
2222,
'T',
2222,
'T',
2222,
'T',
2222,
'C',
8681,
8686,
'C',
8686,
'T',
910,
'T',
910,
'T',
910,
'T',
910,
'T',
2610,
'T',
2107,
'T',
43,
'T',
910,
'T',
910,
'T',
910,
'T',
910,
'T',
2610,
'T',
2107,
1651,
1651,
8687,
60,
60,
81,
81,
'S',
5,
'S',
5,
'C',
8687,
'T',
4235,
'T',
4236,
'T',
4237,
684,
1516,
104,
1269,
1273,
1274,
1275,
1517,
'C',
8674,
553,
1518,
553,
1518,
'C',
8668,
8688,
8689,
8690,
8691,
8692,
8670,
6085,
7353,
6085,
553,
1518,
8674,
8688,
8690,
'C',
8691,
7362,
8693,
3891,
'C',
8689,
4500,
60,
'C',
8667,
7371,
7362,
6085,
7353,
553,
1518,
7362,
6085,
8692,
8674,
7021,
60,
3890,
'C',
8666,
4500,
7362,
7363,
60,
'C',
8694,
'T',
43,
'T',
43,
4171,
81,
'C',
8695,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
8657,
'C',
8696,
2070,
'C',
8697,
150,
1467,
104,
6600,
1841,
'C',
8698,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
8699,
'C',
8700,
2070,
'C',
8701,
150,
1467,
104,
6600,
1841,
'C',
8702,
8703,
5711,
8704,
4479,
0,
8705,
4521,
7254,
1224,
8706,
5711,
8708,
4479,
8709,
8710,
5711,
8711,
4479,
8712,
4381,
81,
'C',
8712,
1579,
6477,
8713,
81,
81,
81,
'C',
8713,
2064,
'C',
8710,
8715,
1224,
5564,
8716,
8492,
1639,
8717,
4521,
'C',
8709,
8718,
8720,
4380,
614,
4380,
6893,
81,
8718,
6893,
81,
'C',
8720,
2222,
4381,
2222,
4381,
90,
'C',
8706,
5711,
81,
'C',
8703,
5711,
81,
81,
'C',
8721,
2446,
60,
'C',
8722,
'T',
43,
1516,
703,
'C',
8723,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
8724,
'C',
8725,
2070,
'C',
8726,
150,
1467,
104,
6600,
1841,
'C',
8727,
'T',
43,
5711,
8728,
8729,
5611,
8729,
8729,
8729,
8729,
8729,
8729,
8729,
8730,
8731,
8732,
8733,
8734,
4226,
8729,
5611,
8729,
8729,
8729,
8729,
8729,
8735,
8729,
8736,
8729,
8729,
8729,
8737,
8729,
8738,
8729,
8729,
8739,
8729,
8740,
4226,
8729,
8729,
8729,
8729,
8729,
8738,
8729,
5611,
8729,
4508,
5569,
5570,
5564,
8729,
8729,
5613,
8729,
8729,
8729,
8729,
8741,
1,
8742,
8743,
1544,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
3917,
60,
60,
60,
60,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
8742,
'C',
8739,
8729,
4275,
8729,
5611,
81,
'C',
8738,
8729,
4275,
8729,
5611,
81,
'C',
8737,
'C',
8736,
8729,
441,
'C',
8735,
'C',
8733,
8729,
81,
'C',
8732,
8729,
8729,
8729,
8729,
81,
'C',
8731,
8729,
8729,
8729,
441,
'C',
8730,
8729,
8729,
8729,
8744,
8729,
8729,
8729,
8729,
4280,
8745,
8746,
8747,
4279,
4280,
441,
4281,
4381,
2222,
2222,
2222,
2222,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
8745,
8746,
81,
'C',
8744,
8729,
4237,
8733,
8729,
4237,
8748,
81,
'C',
8748,
4282,
4282,
4283,
4283,
4284,
4284,
441,
4282,
4282,
4283,
4283,
4284,
4284,
441,
81,
'C',
8729,
5711,
6784,
'C',
8728,
5611,
8729,
4275,
81,
'C',
8749,
5752,
8750,
6084,
7212,
8729,
834,
6083,
6084,
81,
81,
81,
'C',
8750,
8729,
8729,
81,
81,
'C',
8751,
6076,
6076,
8724,
'C',
8752,
8723,
'C',
8753,
6077,
6126,
0,
6070,
6077,
6126,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
8754,
'C',
8754,
8755,
'C',
8755,
0,
4537,
8756,
'C',
8756,
'C',
8757,
8758,
8759,
4414,
8760,
'C',
8760,
90,
553,
1518,
'C',
8761,
'C',
8762,
3937,
8763,
8764,
0,
7656,
8765,
81,
'C',
8765,
'T',
444,
81,
81,
'C',
8764,
1461,
1454,
1535,
2721,
2724,
2721,
2724,
'C',
8763,
1447,
60,
60,
'C',
8766,
2605,
546,
3921,
2886,
7595,
597,
60,
60,
81,
81,
'C',
8767,
8768,
81,
'C',
8768,
'T',
43,
3943,
'C',
8770,
8769,
5643,
8771,
'C',
8771,
2149,
5646,
'C',
8772,
5711,
8773,
4470,
'C',
8773,
4471,
81,
9,
4471,
81,
9,
'C',
8774,
'T',
43,
'T',
43,
7003,
8775,
8776,
8777,
1447,
2727,
60,
60,
60,
'C',
8777,
8778,
'C',
8778,
81,
'C',
8776,
8779,
'C',
8779,
81,
'C',
8775,
6714,
6714,
1447,
60,
60,
60,
'C',
8780,
'T',
43,
'T',
43,
5763,
8774,
8774,
423,
6795,
81,
'C',
8781,
6303,
2605,
3921,
7593,
597,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
8782,
8783,
8784,
8785,
81,
'S',
5,
'C',
8785,
'C',
8784,
'T',
5854,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
8786,
8787,
8788,
8789,
'S',
5,
'C',
8789,
'T',
5852,
8785,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
8788,
'T',
5850,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
8790,
'C',
8783,
8791,
7288,
81,
7288,
81,
'S',
5,
'C',
8791,
1106,
'C',
8787,
8791,
'S',
5,
'C',
8792,
2557,
'C',
8793,
8794,
2419,
'C',
8794,
2060,
'C',
8795,
614,
8796,
'S',
5,
'C',
8796,
1212,
8797,
8798,
8799,
8799,
8800,
1,
81,
'C',
8799,
1758,
8801,
8796,
8802,
8803,
'C',
8803,
'T',
6052,
1069,
1071,
0,
8804,
'C',
8804,
8796,
81,
'C',
8802,
614,
2429,
'C',
8801,
1106,
'C',
8798,
0,
8805,
8807,
'C',
8807,
8808,
81,
'C',
8808,
614,
8809,
8810,
8811,
8796,
8796,
'C',
8811,
1457,
5772,
'C',
8810,
8797,
8797,
8798,
1212,
8812,
8799,
8800,
81,
'C',
8812,
8813,
'C',
8813,
1269,
1273,
1274,
1275,
81,
81,
'C',
8809,
1758,
8814,
8815,
8798,
1212,
8803,
'C',
8815,
614,
'C',
8814,
0,
1099,
8816,
'C',
8816,
8799,
'C',
8805,
1758,
8817,
'C',
8817,
'T',
5277,
'T',
11479,
614,
1212,
'C',
8797,
8818,
'C',
8818,
'T',
7310,
614,
1895,
2431,
2432,
'C',
8819,
'C',
8820,
8821,
'C',
8821,
8822,
1451,
1212,
8823,
81,
'C',
8823,
614,
8797,
1212,
'C',
8822,
1758,
'T',
2448,
'T',
11207,
'T',
1220,
'T',
11208,
8817,
'C',
8824,
'T',
43,
8825,
1447,
1447,
8827,
2719,
2727,
1456,
8826,
1,
8825,
8828,
7280,
81,
8829,
8830,
8826,
1447,
1447,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
8828,
8831,
1,
0,
8813,
81,
81,
81,
81,
81,
8832,
81,
'C',
8832,
'C',
8827,
8833,
1,
0,
8813,
8834,
81,
81,
'C',
8834,
'C',
8825,
2727,
2727,
8826,
'C',
8835,
'C',
8836,
'C',
8837,
8838,
'C',
8838,
8839,
8840,
6,
'C',
8840,
2723,
2729,
'C',
8839,
2723,
5576,
60,
'C',
8841,
'T',
154,
'T',
9226,
'T',
4471,
753,
'S',
5,
'C',
8842,
'T',
154,
'T',
9226,
'T',
4469,
753,
'S',
5,
'C',
8843,
5593,
5567,
8844,
4431,
'C',
8845,
'C',
8846,
8847,
4414,
'C',
8848,
81,
'C',
8849,
'T',
1476,
81,
'C',
8561,
'T',
1474,
2148,
81,
'C',
8563,
'T',
1472,
2146,
81,
'C',
8850,
'T',
43,
8851,
8852,
3943,
81,
81,
81,
'C',
8852,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
8851,
81,
81,
81,
'C',
8853,
8851,
2151,
81,
'C',
8854,
8855,
81,
'C',
8855,
2152,
8852,
81,
81,
'C',
8856,
104,
'C',
8857,
8858,
7966,
'C',
8859,
104,
81,
81,
'C',
8858,
'T',
43,
'T',
43,
7009,
'C',
8860,
'S',
8,
'S',
25,
'S',
23,
81,
'C',
8861,
7858,
'C',
8862,
'T',
10302,
'C',
8863,
'T',
4471,
'C',
8864,
'T',
4469,
'C',
8865,
'T',
240,
60,
'C',
8866,
104,
81,
'C',
8867,
7009,
60,
60,
'C',
8868,
104,
58,
81,
'C',
8869,
'T',
910,
60,
'C',
8870,
'T',
2222,
'C',
8871,
'T',
4471,
8872,
'C',
8872,
'T',
10302,
'T',
4471,
'T',
10302,
0,
0,
0,
'C',
8873,
'T',
4469,
7980,
'C',
8874,
2132,
8872,
'C',
8875,
7980,
2136,
'C',
8876,
2132,
8872,
'C',
8877,
'C',
8878,
'C',
8879,
'C',
8880,
7198,
'C',
8881,
7197,
'C',
8882,
104,
104,
81,
81,
81,
'C',
8883,
'T',
2222,
'C',
8884,
81,
'C',
8885,
'C',
8886,
'C',
8887,
'C',
8888,
'C',
8889,
'C',
8890,
'C',
8891,
'C',
8892,
2132,
8872,
'C',
8893,
7980,
2136,
'C',
8894,
'T',
10302,
'C',
8895,
'T',
4471,
'C',
8896,
'T',
4469,
'C',
8146,
2132,
'C',
8897,
'C',
8898,
7086,
81,
81,
81,
'C',
8899,
'C',
8900,
8901,
'C',
8901,
'T',
8390,
'T',
8390,
8902,
8902,
'C',
8902,
'C',
8903,
775,
'C',
8904,
'C',
8905,
81,
'C',
8906,
8907,
'C',
8907,
8908,
'C',
8908,
3564,
'C',
8909,
3561,
'C',
8910,
8911,
81,
'C',
8911,
'T',
3476,
'C',
8912,
8913,
2603,
8914,
1447,
8915,
8913,
2603,
8914,
1447,
8915,
8913,
2603,
6303,
8914,
1447,
8915,
60,
60,
60,
60,
60,
60,
60,
60,
'C',
8915,
614,
81,
'C',
8914,
614,
2605,
'C',
8913,
614,
'C',
8916,
7162,
4414,
8917,
'C',
8917,
104,
1761,
1763,
81,
'C',
8918,
5967,
5967,
8919,
81,
'C',
8919,
0,
4537,
8920,
'C',
8920,
'C',
8921,
8922,
'C',
8922,
8923,
81,
'C',
8923,
6744,
'C',
8924,
8925,
'C',
8925,
6685,
81,
81,
81,
'C',
8926,
8927,
8174,
8928,
8929,
8930,
8931,
8932,
8933,
8934,
8935,
8936,
8937,
8938,
8939,
8940,
8941,
6209,
8942,
8943,
8944,
8945,
8946,
8947,
8948,
8949,
8950,
8951,
8952,
8953,
8954,
8955,
8956,
8957,
8958,
81,
'C',
8958,
'T',
43,
2064,
'C',
8957,
'C',
8956,
8958,
8959,
2893,
3913,
2064,
'C',
8959,
8960,
'C',
8960,
441,
5,
8,
'C',
8955,
3943,
'C',
8954,
8961,
'C',
8961,
3943,
'C',
8953,
'C',
8952,
'C',
8951,
'T',
43,
3943,
'C',
8950,
'T',
43,
2064,
'C',
8949,
'C',
8948,
3943,
'C',
8947,
'C',
8946,
'C',
8945,
'C',
8944,
0,
2129,
0,
2135,
3943,
8962,
'C',
8962,
2064,
'C',
8943,
2064,
2069,
'S',
5,
'S',
5,
'C',
8942,
'T',
43,
6211,
8961,
'C',
8941,
6212,
8961,
2069,
'C',
8940,
6212,
8961,
'C',
8939,
6212,
8961,
'C',
8938,
'T',
43,
2064,
'C',
8937,
'T',
43,
6213,
8961,
'C',
8936,
'C',
8935,
'C',
8934,
'C',
8933,
1755,
1755,
0,
555,
0,
8963,
2069,
8964,
81,
'C',
8964,
8965,
81,
'C',
8965,
1755,
8966,
8967,
8968,
8969,
8970,
8971,
8972,
8973,
8974,
8975,
8976,
8977,
'T',
10010,
1069,
6462,
8978,
1468,
6621,
6621,
8979,
8980,
8981,
8979,
8981,
8980,
1468,
8982,
8983,
1468,
8984,
703,
8985,
8966,
8968,
8970,
8972,
8974,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
8976,
'C',
8985,
8986,
7806,
8987,
8986,
7805,
8986,
7806,
775,
842,
4541,
4540,
6708,
8986,
7805,
4541,
4540,
6708,
'C',
8987,
6774,
0,
8988,
8989,
'C',
8989,
'T',
8390,
8990,
81,
'C',
8990,
'C',
8988,
6778,
6779,
775,
775,
6777,
6777,
81,
'C',
8986,
6675,
81,
'C',
8984,
159,
164,
0,
1188,
1189,
167,
8992,
'C',
8992,
65,
8986,
7810,
7808,
7811,
65,
8986,
7810,
7808,
7811,
8986,
7805,
8986,
7806,
842,
4541,
4540,
6708,
65,
7803,
1197,
65,
7578,
7480,
7805,
842,
7806,
842,
4541,
4540,
6708,
203,
1199,
1837,
1837,
1837,
1837,
'S',
5,
'S',
5,
'C',
8983,
65,
65,
65,
65,
8986,
8993,
6625,
7491,
7578,
8986,
8987,
6625,
7491,
7578,
8986,
8993,
6625,
8994,
7578,
8986,
8987,
6625,
8994,
7578,
8986,
8986,
8987,
7578,
8986,
8993,
7578,
6665,
6625,
6666,
8995,
6639,
8986,
7578,
7578,
7578,
7578,
4541,
6623,
6708,
7480,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'S',
5,
'S',
5,
'C',
8995,
1447,
60,
60,
'C',
8994,
8996,
4541,
4541,
'C',
8996,
8997,
'C',
8997,
'T',
3253,
'T',
3253,
8998,
4542,
'C',
8998,
81,
'C',
8993,
'T',
41,
'T',
8390,
6774,
8010,
8901,
775,
6778,
6779,
775,
597,
'C',
8982,
8999,
8999,
'C',
8999,
1755,
1069,
6462,
1468,
'C',
8981,
8999,
8999,
'C',
8980,
8999,
8999,
'C',
8979,
8999,
8999,
'C',
8978,
8309,
150,
1467,
1927,
1358,
614,
1841,
'C',
8977,
150,
1467,
1841,
1841,
1841,
1841,
1841,
1837,
'C',
8975,
150,
1467,
1841,
1841,
1841,
1841,
'C',
8973,
8970,
8968,
8966,
150,
1467,
1927,
1358,
1841,
1927,
1358,
1841,
1927,
1358,
1841,
'C',
8971,
150,
1467,
1841,
1841,
1841,
'C',
8969,
150,
1467,
1841,
1841,
1841,
'C',
8967,
8976,
8974,
150,
1467,
1927,
1358,
1841,
1927,
1358,
1841,
'C',
8963,
1895,
'C',
8932,
2069,
'C',
8931,
3943,
'C',
8930,
0,
2129,
0,
2135,
2064,
'C',
8929,
2064,
'C',
8928,
2064,
'C',
8927,
'T',
43,
6220,
8961,
2069,
'C',
9000,
6209,
6627,
9001,
2830,
9002,
60,
60,
113,
105,
105,
105,
105,
105,
'C',
9002,
4545,
553,
1518,
4545,
553,
1518,
2190,
2199,
5664,
2149,
8933,
3913,
3917,
60,
60,
60,
60,
'C',
9003,
'C',
9004,
9005,
5791,
9006,
'C',
9006,
'T',
4469,
885,
1606,
0,
9007,
'C',
9007,
9008,
'C',
9008,
1555,
'C',
9009,
'T',
43,
81,
81,
'C',
9010,
0,
9011,
8265,
0,
9012,
4521,
9013,
9014,
'C',
9014,
9015,
81,
'C',
9015,
'T',
5505,
81,
'C',
9013,
9016,
81,
'C',
9016,
'T',
5495,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5848,
'T',
11204,
'T',
11508,
584,
81,
'C',
9011,
'C',
9017,
'T',
5495,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
5496,
'C',
9018,
9019,
8110,
9020,
81,
81,
81,
'C',
9020,
'T',
5499,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3849,
'T',
3849,
'T',
5373,
'T',
3850,
'T',
3849,
'T',
3849,
'T',
5375,
'T',
5499,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3851,
'T',
3849,
'T',
5496,
90,
81,
81,
'C',
9021,
9019,
9020,
'C',
9022,
81,
81,
'C',
9023,
'C',
9024,
'C',
9025,
6530,
9026,
6599,
4414,
9027,
'C',
9027,
6564,
6561,
6829,
6847,
4467,
4467,
4467,
90,
77,
113,
'C',
9028,
1632,
'T',
43,
6504,
9029,
9030,
81,
3890,
81,
'C',
9030,
3925,
9031,
60,
'C',
9031,
530,
3807,
6510,
196,
985,
6512,
60,
60,
'C',
9029,
9033,
60,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9033,
60,
5951,
60,
5951,
81,
81,
'C',
9034,
1632,
6504,
81,
'C',
9035,
'C',
9036,
'C',
9037,
'C',
9038,
1632,
6447,
81,
81,
'C',
9039,
1632,
9040,
81,
81,
'C',
9040,
6449,
9041,
81,
'C',
9041,
'T',
4236,
'T',
4236,
'T',
5114,
'T',
5113,
'T',
4236,
'T',
4484,
'T',
4236,
'T',
4236,
'T',
5114,
'T',
5113,
'T',
4236,
'T',
4484,
6469,
6453,
9042,
6456,
6456,
9043,
6504,
6475,
9044,
9045,
9046,
0,
1443,
2955,
2955,
1071,
1956,
6475,
6475,
423,
0,
2955,
2788,
0,
6479,
6475,
9047,
9046,
0,
1443,
2955,
2955,
1071,
1956,
6475,
6475,
423,
0,
2955,
2788,
0,
6479,
9048,
6456,
6456,
60,
60,
5948,
5948,
5948,
5948,
9049,
9050,
81,
9051,
9052,
9053,
9054,
81,
'C',
9054,
6475,
2020,
6475,
2020,
6475,
2020,
6475,
2020,
1646,
60,
60,
81,
81,
'C',
9053,
6475,
2670,
81,
'C',
9052,
6504,
81,
'C',
9051,
6475,
2020,
6475,
2020,
6475,
2020,
6475,
2020,
1646,
60,
60,
81,
81,
'C',
9050,
6475,
2670,
81,
'C',
9049,
6504,
81,
'C',
9048,
614,
9055,
1,
555,
61,
9056,
1,
584,
'C',
9047,
'T',
5113,
'T',
5113,
6461,
0,
6480,
1071,
0,
6479,
0,
0,
9057,
9058,
9059,
9060,
'C',
9060,
6475,
2926,
6475,
2020,
81,
'C',
9059,
6475,
2926,
6475,
2020,
81,
'C',
9058,
6475,
2020,
6475,
2020,
1646,
81,
81,
'C',
9057,
6466,
81,
81,
'C',
9046,
'T',
43,
'T',
43,
'C',
9045,
'T',
5113,
'T',
5113,
1071,
0,
6479,
0,
0,
9061,
9062,
9063,
'C',
9063,
6475,
2926,
6475,
2020,
81,
'C',
9062,
6475,
2926,
6475,
2020,
81,
'C',
9061,
6475,
2020,
6475,
2020,
1646,
81,
81,
'C',
9044,
6461,
0,
6480,
'C',
9043,
614,
790,
840,
6452,
0,
790,
6452,
790,
6452,
6452,
9064,
'C',
9064,
1632,
674,
6504,
6504,
6452,
6456,
81,
81,
'C',
9042,
9065,
9065,
9065,
9065,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9065,
'T',
4902,
'T',
205,
'T',
4484,
9044,
1071,
0,
6479,
81,
81,
9066,
81,
'C',
9066,
6475,
6475,
1646,
6475,
6475,
1646,
6475,
6475,
1646,
6475,
6475,
1646,
81,
81,
'C',
9067,
81,
'C',
9068,
1632,
6448,
81,
81,
'C',
9069,
2557,
'C',
9070,
9069,
'C',
9071,
9072,
9073,
4414,
'C',
9074,
9073,
'C',
9075,
'C',
9076,
4313,
81,
81,
'C',
9077,
81,
'C',
9078,
'C',
9079,
553,
5999,
9080,
4414,
'C',
9081,
9082,
5697,
'C',
9083,
'C',
9084,
9085,
5697,
'C',
9086,
'C',
9087,
'C',
9088,
'T',
910,
1461,
1454,
1535,
5576,
5577,
81,
'C',
9089,
'C',
9090,
'T',
910,
9091,
5577,
81,
'C',
9091,
1461,
1454,
9092,
'C',
9092,
'C',
9093,
'C',
9094,
9095,
'C',
9095,
9096,
81,
'C',
9096,
81,
'C',
9097,
9098,
'C',
9098,
9099,
81,
'C',
9099,
81,
'C',
9100,
9101,
'C',
9101,
9102,
81,
'C',
9102,
'C',
9103,
9104,
'C',
9104,
9105,
81,
'C',
9105,
'C',
9106,
9107,
'C',
9107,
9108,
81,
'C',
9108,
1106,
'C',
9109,
9110,
'C',
9110,
9111,
81,
'C',
9111,
1106,
9112,
81,
'C',
9112,
81,
'C',
9113,
9114,
'C',
9114,
9115,
81,
'C',
9115,
0,
1099,
9116,
561,
'C',
9116,
9112,
'C',
9117,
9118,
'C',
9118,
9119,
81,
'C',
9119,
'C',
9120,
9121,
'C',
9121,
9122,
'C',
9122,
81,
'C',
9123,
9124,
'C',
9124,
9125,
81,
'C',
9125,
0,
1099,
9126,
81,
'C',
9126,
9127,
'C',
9127,
'C',
9128,
9129,
'C',
9129,
9130,
81,
'C',
9130,
9131,
1106,
9127,
81,
81,
'C',
9131,
1457,
5772,
'C',
9132,
8786,
8782,
'C',
9133,
81,
'C',
9134,
9135,
'C',
9135,
8421,
9136,
1,
'C',
9137,
'C',
9138,
'T',
43,
81,
81,
'C',
9139,
81,
'C',
9140,
9141,
4521,
'C',
9142,
9143,
81,
'C',
9143,
2064,
'C',
9145,
9144,
6132,
9146,
'C',
9146,
6134,
2064,
'C',
9147,
81,
81,
81,
'C',
9148,
2069,
9149,
81,
81,
'C',
9149,
'C',
9150,
5981,
6132,
6134,
'C',
9151,
9152,
9153,
9155,
81,
81,
'C',
9155,
2064,
'C',
9153,
'T',
43,
2064,
'C',
9152,
0,
9156,
'C',
9156,
9157,
81,
'C',
9157,
'C',
9158,
9152,
9154,
6132,
9159,
'C',
9159,
6134,
'C',
9160,
7531,
81,
'C',
9161,
7531,
2064,
81,
'C',
9162,
9163,
7532,
9164,
'C',
9164,
6134,
'C',
9165,
3912,
2033,
2190,
2199,
3913,
3914,
2590,
'C',
9166,
81,
'C',
9167,
553,
2610,
104,
555,
2610,
104,
555,
2610,
104,
555,
2610,
104,
555,
2610,
104,
555,
555,
104,
555,
835,
81,
81,
81,
81,
81,
81,
'C',
9168,
8475,
'C',
9169,
9170,
2605,
3921,
9170,
3921,
597,
597,
'C',
9170,
3923,
3924,
2603,
60,
60,
'C',
9171,
2624,
'C',
9172,
7636,
'C',
9173,
3937,
'C',
9174,
2605,
7639,
597,
'C',
9175,
3942,
597,
'C',
9176,
'C',
9177,
7640,
'C',
9178,
'C',
9179,
3938,
7638,
3939,
1405,
'C',
9180,
'C',
9181,
2590,
0,
8498,
81,
'C',
9182,
81,
'C',
9183,
'C',
9184,
'C',
9185,
81,
'C',
9186,
2033,
'C',
9187,
'T',
8002,
'T',
8006,
'T',
9362,
'T',
8006,
'T',
9362,
0,
9188,
3912,
9189,
7636,
3912,
9189,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
7143,
81,
'C',
9189,
9190,
'C',
9190,
2052,
'C',
9188,
8223,
81,
'C',
9191,
'T',
9361,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9192,
6260,
2064,
'C',
9193,
2727,
9194,
2705,
2705,
2706,
2707,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9194,
430,
9195,
9196,
2713,
'C',
9195,
'C',
9197,
2705,
9198,
2730,
2705,
2706,
2707,
2727,
2728,
2730,
2705,
2706,
2707,
81,
81,
'C',
9198,
'T',
43,
1354,
1529,
61,
555,
3564,
61,
555,
9199,
9199,
2675,
2729,
3936,
81,
81,
81,
81,
'C',
9199,
'T',
8792,
1461,
1454,
1535,
81,
'C',
9200,
'C',
9201,
1457,
2715,
9202,
2715,
'C',
9202,
8522,
2719,
2721,
9203,
1447,
60,
60,
'C',
9203,
'C',
9204,
'C',
9205,
1446,
6285,
9206,
9207,
9208,
9209,
'C',
9209,
'C',
9208,
'C',
9207,
'C',
9206,
9210,
'C',
9210,
'C',
9211,
'T',
43,
2715,
2033,
7736,
1457,
9212,
1,
555,
81,
81,
81,
'C',
9213,
'C',
9214,
104,
104,
81,
'C',
9215,
9216,
'C',
9216,
3954,
'C',
9217,
6642,
'C',
9218,
'C',
9219,
81,
'C',
9220,
2446,
'C',
9221,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
'C',
9222,
8537,
2222,
454,
795,
2217,
9223,
2192,
81,
'C',
9223,
'C',
9224,
8640,
4277,
8640,
9225,
4278,
8640,
9226,
4278,
9227,
81,
'C',
9228,
8640,
4277,
8640,
9225,
8640,
9226,
9229,
60,
60,
81,
'C',
9230,
'T',
10566,
454,
795,
8538,
2192,
'C',
9231,
8640,
9232,
4380,
8640,
9233,
4278,
9227,
'C',
9232,
'T',
10561,
'T',
10565,
'T',
10563,
4401,
9234,
8646,
8646,
8646,
8646,
4381,
4404,
4405,
'C',
9234,
2874,
2874,
2874,
2874,
2874,
2874,
2874,
2874,
4407,
'C',
9235,
8640,
9232,
4380,
8640,
9233,
9229,
60,
'C',
9236,
663,
664,
695,
104,
695,
695,
2612,
104,
695,
695,
104,
695,
695,
104,
695,
695,
104,
695,
695,
7512,
104,
695,
695,
669,
81,
81,
81,
'C',
9237,
2446,
'C',
9238,
9239,
'C',
9239,
3917,
60,
60,
60,
60,
'C',
9240,
9241,
'C',
9241,
5724,
'C',
9242,
454,
795,
2020,
8537,
423,
2193,
2194,
60,
'C',
9243,
8640,
5757,
9227,
'C',
9244,
8640,
5757,
9229,
'C',
9227,
'T',
1271,
60,
'C',
9229,
'T',
1271,
'C',
9245,
'C',
9246,
8644,
'C',
9247,
4406,
4406,
4406,
4406,
4381,
4406,
4406,
4406,
4406,
4381,
'C',
9248,
9249,
'C',
9249,
5582,
'C',
9250,
9251,
'C',
9251,
5918,
'C',
9252,
5711,
9253,
4275,
4237,
7137,
0,
5569,
5570,
6881,
6882,
0,
0,
6383,
60,
60,
77,
113,
81,
60,
4381,
561,
9255,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
9256,
9257,
'S',
5,
'C',
9257,
9258,
81,
'C',
9258,
'T',
3073,
1106,
9259,
1099,
7212,
81,
81,
'C',
9259,
1106,
1106,
6000,
'C',
9256,
9260,
81,
'C',
9260,
'T',
3076,
1106,
1099,
'C',
9255,
9261,
'C',
9261,
9262,
7824,
'C',
9262,
1106,
1106,
6084,
9263,
6084,
'C',
9263,
6693,
6477,
8763,
6477,
6632,
5564,
6121,
6123,
9264,
1224,
5565,
0,
6001,
4467,
6790,
9265,
113,
105,
105,
105,
105,
105,
81,
105,
81,
9267,
81,
'C',
9267,
81,
'C',
9265,
159,
164,
0,
1188,
1189,
167,
9268,
'C',
9268,
9269,
7831,
7834,
7835,
1197,
203,
1199,
81,
'C',
9253,
4482,
5711,
81,
'C',
9270,
1758,
1861,
0,
9271,
0,
2129,
9259,
6076,
9272,
9273,
9274,
'C',
9274,
9275,
'C',
9275,
1861,
0,
4537,
9276,
'C',
9276,
'C',
9273,
9277,
81,
'C',
9277,
9258,
9258,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9271,
1212,
'C',
9278,
9258,
1106,
'C',
9279,
1861,
1861,
1758,
6077,
6126,
0,
6127,
0,
2135,
0,
1765,
561,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
9280,
'C',
9280,
9281,
81,
'C',
9281,
9258,
'C',
9282,
6057,
6059,
'C',
9272,
'C',
9283,
6060,
'C',
9284,
1447,
60,
60,
'C',
9285,
5729,
553,
9286,
1,
555,
9286,
555,
9286,
555,
9286,
555,
553,
4470,
0,
7011,
6887,
555,
9287,
555,
9288,
4518,
9289,
6887,
9290,
4521,
9291,
4521,
81,
81,
81,
81,
4471,
81,
9,
9292,
81,
4381,
2222,
2222,
2222,
2222,
561,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
9292,
0,
4537,
9293,
'C',
9293,
'C',
9289,
'C',
9287,
5713,
9294,
3917,
9295,
4508,
9297,
4513,
5714,
5616,
60,
60,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
'C',
9295,
4280,
9296,
9298,
4279,
'C',
9294,
4238,
60,
60,
81,
81,
'C',
9299,
9300,
0,
8150,
9301,
81,
81,
'C',
9301,
9302,
'C',
9302,
0,
4537,
9303,
'C',
9303,
'C',
9304,
9305,
0,
8191,
0,
8150,
7812,
81,
81,
'C',
9305,
1593,
'C',
9306,
0,
8191,
7812,
'C',
9307,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
9300,
'C',
9308,
2070,
'C',
9309,
150,
1467,
104,
6600,
1841,
'C',
9310,
5711,
9311,
9312,
1639,
9313,
4521,
5568,
5577,
9314,
5577,
9314,
60,
60,
60,
81,
'C',
9314,
9091,
81,
'C',
9315,
'T',
894,
'T',
43,
2603,
6737,
8913,
8914,
8915,
8913,
8914,
1447,
8915,
8913,
2603,
8914,
1447,
8915,
8913,
3925,
9316,
2603,
8914,
1447,
8915,
8913,
2603,
8914,
8915,
8913,
8914,
8913,
2603,
8914,
1447,
8915,
8913,
8914,
9317,
1,
9318,
8915,
2033,
8913,
8914,
7364,
1650,
1650,
1650,
1651,
1447,
8915,
8913,
6737,
8914,
8915,
8913,
2603,
8914,
8915,
8913,
2603,
8914,
8915,
8664,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
6890,
81,
6890,
81,
6890,
81,
81,
6890,
81,
6890,
81,
'C',
9318,
9319,
9320,
1447,
60,
'C',
9320,
1650,
1651,
1650,
1651,
60,
60,
60,
60,
'C',
9319,
9321,
60,
60,
'C',
9321,
'C',
9322,
81,
'C',
9323,
9324,
'C',
9324,
8421,
9325,
1,
'C',
9326,
'T',
43,
562,
81,
'C',
9327,
81,
'C',
9328,
8714,
6132,
9329,
'C',
9329,
6134,
'C',
9330,
5564,
9331,
9312,
9313,
'C',
9332,
'C',
9333,
9334,
5697,
'C',
9335,
'C',
9336,
9337,
9339,
9340,
9341,
9342,
9343,
81,
'C',
9343,
3943,
'C',
9342,
3943,
'C',
9341,
'C',
9340,
2069,
'C',
9339,
'C',
9337,
9344,
3943,
'C',
9345,
9338,
2830,
9346,
'C',
9346,
90,
2149,
'C',
9347,
90,
9348,
1589,
1606,
'C',
9349,
2446,
60,
'C',
9344,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
'T',
43,
1516,
703,
4171,
8722,
4329,
'C',
9350,
9351,
9352,
4414,
'C',
9353,
'C',
9354,
9355,
9356,
4414,
'C',
9357,
4307,
'C',
9358,
1516,
703,
4309,
'C',
9359,
8640,
8643,
8746,
9227,
'C',
9360,
8640,
8643,
8746,
9229,
'C',
9361,
454,
795,
8538,
2192,
'C',
9362,
'T',
43,
9363,
1356,
1357,
1358,
614,
9364,
2064,
7871,
5711,
9365,
150,
1467,
1841,
1841,
1841,
6377,
9367,
0,
0,
0,
0,
0,
9368,
0,
6881,
6882,
6383,
8143,
5910,
7887,
4431,
9369,
1528,
77,
113,
105,
1473,
9370,
9371,
9372,
9373,
9374,
9375,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
81,
81,
'C',
9375,
9376,
'C',
9376,
'T',
1019,
9377,
9378,
1,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
9377,
614,
0,
9379,
6477,
9380,
9364,
5564,
9381,
9366,
9382,
1,
9383,
584,
9384,
9385,
9386,
81,
9387,
81,
9378,
81,
9378,
81,
81,
81,
'C',
9387,
584,
9384,
'C',
9386,
7212,
'C',
9385,
6084,
'C',
9384,
9388,
9389,
9390,
'C',
9390,
8168,
'C',
9389,
8169,
8170,
8171,
6536,
'C',
9388,
9391,
'C',
9391,
'T',
4236,
1069,
0,
1443,
2955,
9392,
'C',
9392,
81,
'C',
9383,
6077,
6126,
0,
6070,
0,
6127,
6084,
9393,
4500,
6085,
9394,
9395,
81,
'C',
9395,
9396,
81,
'C',
9396,
9397,
'C',
9397,
6076,
9398,
'C',
9398,
9399,
81,
'C',
9399,
1895,
2064,
'C',
9394,
553,
555,
2064,
'C',
9380,
5978,
81,
'C',
9379,
2136,
2132,
9400,
9379,
'C',
9400,
'C',
9374,
9401,
'C',
9401,
'T',
1017,
9377,
9402,
'C',
9402,
159,
164,
0,
1188,
1189,
167,
9403,
'C',
9403,
530,
530,
6477,
7826,
7827,
7144,
196,
985,
196,
985,
203,
1199,
9404,
7831,
81,
7146,
81,
'C',
9373,
9405,
81,
'C',
9405,
9406,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9406,
6477,
2033,
2020,
6632,
9407,
1354,
1529,
9384,
9377,
81,
81,
81,
'C',
9407,
9380,
6477,
6638,
7871,
5711,
0,
5711,
5564,
9408,
9366,
9409,
9410,
9366,
9411,
81,
9412,
81,
81,
81,
81,
'C',
9412,
'T',
1220,
'T',
43,
9384,
'C',
9411,
9413,
9414,
9415,
9416,
9417,
0,
6077,
6126,
0,
6070,
6084,
9393,
6085,
6077,
6126,
0,
6070,
6084,
4500,
7363,
6085,
6077,
6126,
0,
6070,
0,
6127,
9393,
7363,
6085,
9394,
60,
60,
9419,
9413,
561,
9420,
9415,
'C',
9420,
9421,
81,
'C',
9421,
9422,
'C',
9422,
6076,
6076,
6076,
9398,
'C',
9419,
2033,
'C',
9417,
7364,
6794,
5772,
9423,
9424,
1457,
5772,
'C',
9424,
1447,
60,
'C',
9423,
1447,
60,
'C',
9416,
7362,
7021,
60,
4480,
'C',
9414,
7362,
'C',
9409,
9425,
0,
6077,
6126,
0,
6070,
6084,
4500,
6085,
6077,
6126,
0,
6070,
0,
6127,
9393,
6085,
9394,
60,
9427,
9428,
'C',
9428,
9429,
81,
'C',
9429,
9430,
'C',
9430,
6076,
6076,
9398,
'C',
9427,
2033,
'C',
9425,
7364,
9431,
'C',
9431,
1457,
5772,
9423,
1457,
5772,
9424,
1457,
5772,
6794,
1457,
5772,
2173,
60,
'C',
9372,
9432,
81,
'C',
9432,
9433,
'C',
9433,
9377,
'C',
9371,
9434,
81,
'C',
9434,
9433,
'C',
9370,
9435,
81,
'C',
9435,
9436,
81,
'C',
9436,
9437,
1773,
9438,
9377,
'C',
9438,
4481,
'C',
9437,
1632,
'C',
9368,
'C',
9367,
4481,
'C',
9365,
'T',
43,
2064,
'C',
9364,
5711,
7871,
5711,
7871,
5711,
9369,
77,
113,
105,
1473,
9369,
77,
113,
105,
1473,
81,
81,
'C',
9439,
'T',
988,
2801,
2800,
1356,
1357,
1358,
614,
6076,
9398,
584,
9379,
9440,
'C',
9441,
1632,
0,
9442,
9443,
'C',
9443,
9444,
81,
'C',
9444,
0,
4537,
9445,
'C',
9445,
9436,
'C',
9442,
9446,
'C',
9446,
614,
1212,
584,
81,
'C',
9447,
9377,
9436,
81,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9448,
1632,
9449,
0,
9450,
5955,
5956,
90,
0,
9451,
9452,
'C',
9452,
9453,
81,
'C',
9453,
9406,
9401,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9451,
3968,
'C',
9363,
9388,
9389,
'C',
9440,
9390,
'C',
9449,
9388,
9389,
'C',
9454,
'T',
910,
'T',
910,
'C',
9455,
'T',
526,
'T',
526,
60,
'C',
9456,
'T',
526,
'T',
526,
4274,
4280,
8640,
4274,
4280,
8640,
8640,
60,
60,
60,
'C',
9457,
'T',
526,
'T',
526,
8641,
60,
'C',
9458,
3937,
8763,
8764,
0,
7656,
9459,
'C',
9459,
'T',
444,
81,
81,
'C',
9460,
2605,
546,
3921,
2886,
7595,
597,
60,
60,
81,
81,
'C',
9461,
1447,
60,
'C',
9462,
546,
'C',
9463,
834,
104,
104,
8813,
81,
81,
'C',
9464,
9465,
1,
0,
8813,
8813,
81,
9466,
'C',
9466,
'C',
9467,
9468,
9469,
1,
0,
8813,
9470,
'C',
9470,
'C',
9468,
614,
'C',
9471,
104,
81,
81,
81,
'C',
9472,
9473,
81,
'C',
9473,
1457,
1457,
8826,
'C',
9474,
8825,
81,
'C',
9475,
9476,
'C',
9476,
9477,
81,
'C',
9477,
'T',
11267,
9478,
9478,
8784,
8785,
9479,
9480,
9479,
8822,
9481,
81,
'S',
5,
'C',
9481,
8822,
'C',
9480,
'C',
9479,
'T',
4235,
'T',
4236,
'T',
4237,
1069,
684,
1066,
8818,
'C',
9478,
1457,
5772,
'C',
9482,
8791,
'C',
9483,
9484,
'C',
9484,
9485,
81,
'C',
9485,
'T',
11361,
614,
8821,
1447,
1447,
8828,
8826,
8825,
1447,
1447,
2719,
1456,
5772,
9479,
8821,
60,
9486,
7280,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'S',
5,
'C',
9487,
9479,
9488,
9489,
1066,
'C',
9489,
'T',
11372,
'T',
11354,
614,
9490,
9490,
9491,
1,
9492,
9493,
1,
0,
9493,
0,
0,
8813,
9494,
9491,
1447,
9495,
9496,
81,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9496,
'C',
9495,
104,
81,
81,
'C',
9494,
104,
81,
'C',
9492,
9490,
5772,
2404,
6714,
9491,
5772,
2404,
6714,
9491,
60,
60,
'C',
9490,
'C',
9488,
8813,
'C',
9497,
9498,
'C',
9498,
9499,
81,
'C',
9499,
1287,
2613,
842,
842,
2613,
842,
842,
2613,
842,
9500,
9479,
9490,
9479,
0,
8813,
9481,
60,
60,
60,
60,
60,
60,
81,
81,
81,
8372,
81,
8372,
81,
8372,
81,
9501,
81,
81,
81,
'C',
9501,
9502,
1,
9503,
'C',
9500,
8826,
'C',
9504,
8822,
9505,
'C',
9505,
9479,
0,
8813,
8372,
81,
9506,
'C',
9506,
9502,
'C',
9507,
0,
8813,
9508,
'C',
9508,
9502,
9509,
'C',
9510,
'C',
9511,
104,
81,
'C',
9512,
104,
81,
'C',
9513,
'C',
9514,
'T',
5781,
0,
1166,
9515,
'C',
9515,
'C',
9516,
8421,
81,
'C',
9517,
81,
'C',
9518,
7955,
6368,
9519,
9312,
9313,
5568,
9520,
1461,
1454,
1535,
3936,
9521,
3936,
5577,
60,
60,
60,
60,
5568,
'C',
9521,
'C',
9520,
'C',
9522,
553,
9523,
3917,
3917,
4481,
5568,
0,
9525,
4226,
9526,
4521,
60,
60,
9527,
81,
81,
81,
'C',
9527,
555,
4508,
4166,
9528,
4226,
555,
81,
81,
4276,
9,
441,
60,
2908,
60,
3917,
60,
60,
60,
60,
441,
5591,
441,
81,
441,
441,
441,
441,
441,
441,
441,
441,
'C',
9523,
5743,
'C',
9529,
0,
8150,
9530,
'C',
9530,
9531,
'C',
9531,
0,
4537,
9532,
'C',
9532,
'C',
9533,
0,
8191,
0,
8150,
7812,
81,
81,
'C',
9534,
0,
8191,
7812,
'C',
9535,
81,
'C',
9536,
9537,
'C',
9537,
8421,
9538,
1,
'C',
9539,
'T',
43,
562,
'C',
9540,
60,
'C',
9541,
2132,
9542,
'C',
9542,
9543,
'C',
9543,
'T',
4471,
'T',
10302,
'T',
4471,
'T',
10302,
0,
0,
0,
0,
'C',
9544,
8679,
2136,
'C',
9545,
2132,
9542,
'C',
9546,
104,
81,
'C',
9547,
8646,
'C',
9548,
2032,
'C',
9549,
6714,
'C',
9550,
9551,
81,
'C',
9551,
81,
'C',
9552,
9553,
81,
'C',
9553,
81,
'C',
9554,
9555,
81,
'C',
9555,
'T',
13709,
60,
'C',
9556,
6116,
81,
'C',
9557,
4957,
81,
'C',
9558,
6095,
81,
'C',
9559,
'C',
9560,
9561,
81,
'C',
9561,
'T',
43,
2069,
'C',
9562,
81,
81,
'C',
9563,
9564,
7292,
9565,
'C',
9565,
7287,
'C',
9566,
9567,
9568,
6873,
7048,
0,
0,
5895,
6372,
6374,
6372,
8263,
5910,
6549,
1224,
7237,
9569,
4431,
9567,
9570,
9571,
'C',
9571,
9572,
81,
'C',
9572,
5569,
5570,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9570,
4545,
553,
1518,
0,
6374,
9573,
81,
81,
9574,
'C',
9574,
7163,
6841,
6382,
81,
81,
'C',
9573,
5711,
9575,
81,
'C',
9575,
'T',
2034,
5711,
9576,
113,
81,
4357,
'C',
9576,
'C',
9568,
9578,
9579,
5955,
5956,
90,
'C',
9580,
6821,
'C',
9581,
'C',
9582,
6873,
7164,
81,
81,
'C',
9583,
553,
555,
555,
6373,
6873,
7164,
'C',
9584,
'T',
4471,
0,
2796,
81,
81,
81,
'C',
9585,
7085,
81,
'C',
9586,
9585,
7088,
81,
81,
81,
'C',
9587,
'T',
43,
'T',
4471,
'T',
4469,
0,
0,
7083,
81,
81,
81,
81,
'C',
9588,
81,
81,
81,
'C',
9589,
81,
'C',
9590,
6594,
6132,
6134,
'C',
9591,
9592,
9561,
9593,
9594,
9595,
9596,
9597,
9598,
'C',
9598,
'T',
43,
2069,
'C',
9597,
'T',
3849,
'T',
3849,
0,
0,
0,
81,
81,
9599,
9600,
9601,
'C',
9601,
81,
'C',
9600,
9602,
1,
8833,
9493,
81,
81,
'C',
9599,
9602,
8833,
9493,
81,
'C',
9596,
'T',
43,
2069,
'C',
9595,
'T',
3849,
'T',
3849,
0,
0,
0,
81,
81,
9603,
9604,
9605,
'C',
9605,
81,
'C',
9604,
9602,
8833,
9493,
81,
'C',
9603,
9602,
8833,
9493,
81,
'C',
9594,
'T',
43,
2069,
'C',
9593,
'T',
3849,
0,
81,
9606,
'C',
9606,
9607,
1,
1447,
1447,
9608,
1,
1447,
1447,
9491,
81,
'C',
9592,
'T',
3849,
0,
81,
9609,
'C',
9609,
9469,
9465,
'C',
9610,
81,
'C',
9611,
'C',
9612,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
9613,
'C',
9614,
2070,
'C',
9615,
'T',
130,
0,
6382,
5569,
5570,
7258,
8265,
9616,
4431,
9617,
81,
'C',
9617,
9618,
81,
'C',
9618,
1758,
'T',
43,
9619,
0,
9620,
9621,
81,
'C',
9621,
9622,
81,
'C',
9622,
'T',
43,
9623,
9619,
6510,
81,
'C',
9623,
'T',
43,
'T',
43,
9623,
'C',
9620,
'C',
9619,
9624,
1651,
60,
60,
60,
81,
81,
'S',
5,
'C',
9624,
'C',
9625,
9626,
9627,
6828,
9628,
'C',
9627,
6522,
9629,
'C',
9629,
'T',
6571,
2122,
'C',
9626,
0,
2129,
1895,
'C',
9630,
9631,
9626,
9632,
9633,
9634,
81,
'C',
9634,
9635,
9636,
9626,
0,
1012,
9637,
6511,
6506,
6528,
9032,
1515,
9638,
9632,
9639,
'C',
9639,
9627,
'C',
9638,
9640,
9641,
6575,
81,
'C',
9641,
'C',
9640,
4545,
553,
1518,
9642,
9643,
9644,
'C',
9644,
6548,
9645,
9641,
81,
'C',
9645,
6552,
614,
'C',
9643,
9646,
9647,
9648,
81,
'C',
9648,
'C',
9647,
'C',
9646,
'T',
6556,
'T',
6568,
'T',
6569,
1516,
703,
6542,
4544,
81,
'C',
9642,
553,
1518,
'C',
9637,
6511,
9638,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
9636,
1780,
5711,
9649,
6514,
1,
9650,
6514,
9651,
6514,
9650,
'C',
9635,
4482,
4434,
'C',
9633,
'T',
43,
3709,
'C',
9632,
555,
0,
2135,
'C',
9652,
9634,
9653,
'C',
9628,
0,
1352,
9613,
9654,
'C',
9654,
2129,
81,
81,
'C',
9655,
1212,
2129,
6845,
'C',
9653,
9612,
9656,
6863,
9657,
9658,
'C',
9658,
9659,
'C',
9659,
9660,
9661,
113,
105,
105,
105,
105,
105,
81,
105,
81,
'C',
9661,
9641,
6510,
81,
'C',
9660,
6852,
0,
2135,
584,
9662,
9663,
9664,
'C',
9664,
'C',
9663,
'C',
9662,
'C',
9657,
9665,
'C',
9665,
'C',
9656,
6863,
'C',
9631,
81,
'C',
9666,
6239,
9667,
9669,
9670,
9671,
5564,
6245,
81,
'C',
9671,
9672,
81,
'C',
9672,
0,
9309,
9673,
'C',
9673,
'T',
1324,
6062,
6063,
6061,
6061,
6078,
6079,
'C',
9670,
'C',
9669,
81,
'C',
9667,
3807,
'C',
9674,
5564,
9668,
6240,
9675,
'C',
9675,
9676,
4500,
2149,
5646,
6077,
6126,
0,
6070,
6121,
6123,
9677,
1,
81,
9678,
'C',
9678,
'T',
43,
3943,
'C',
9679,
8123,
9680,
9681,
8304,
5569,
5570,
'C',
9680,
'C',
9682,
8123,
5569,
5570,
9681,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9683,
'T',
43,
9684,
6841,
9685,
6831,
0,
8149,
9686,
9687,
81,
81,
9688,
81,
81,
81,
'C',
9688,
9689,
'C',
9689,
3861,
6466,
3860,
0,
4537,
0,
4537,
0,
4537,
9690,
9691,
9692,
81,
81,
'C',
9692,
'C',
9691,
'C',
9690,
'C',
9687,
9693,
9694,
'C',
9694,
'T',
4918,
6453,
7165,
81,
'C',
9693,
'T',
4902,
4482,
'C',
9686,
'T',
5044,
1761,
1763,
9685,
9684,
6841,
6466,
3861,
8183,
0,
8184,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9685,
6842,
'C',
9684,
6842,
'C',
9695,
8123,
'C',
9696,
8123,
9687,
'C',
9697,
0,
8149,
6831,
6821,
'C',
9698,
9686,
'C',
9699,
81,
'C',
9700,
90,
'C',
9701,
'C',
9702,
'C',
9703,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
9704,
'C',
9705,
2070,
'C',
9706,
150,
1467,
104,
6600,
1841,
'C',
9707,
553,
9708,
4226,
555,
9708,
555,
1977,
1956,
9709,
4518,
81,
81,
'C',
9710,
6695,
81,
'C',
9711,
6088,
6088,
6088,
9712,
4521,
81,
'C',
9713,
0,
0,
0,
0,
9714,
81,
9715,
81,
9716,
81,
9717,
81,
'C',
9717,
9718,
4500,
81,
'C',
9716,
9718,
81,
'C',
9715,
4500,
81,
'C',
9714,
9719,
4500,
81,
'C',
9720,
6088,
5610,
'C',
9721,
0,
9722,
81,
'C',
9722,
9723,
4500,
81,
'C',
9724,
9725,
9727,
81,
81,
'C',
9727,
'T',
43,
9728,
'C',
9728,
'T',
1292,
2064,
65,
2064,
0,
9729,
0,
9730,
2069,
65,
9731,
2069,
'C',
9731,
'T',
1292,
'C',
9725,
'T',
43,
9728,
'C',
9732,
9725,
9727,
9733,
81,
'C',
9733,
3943,
'C',
9734,
9726,
6132,
9735,
'C',
9735,
6134,
'C',
9736,
81,
81,
'C',
9737,
9738,
8455,
9739,
'C',
9739,
8456,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
9740,
8533,
2033,
0,
9741,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
9741,
6285,
9742,
9743,
2015,
9744,
9745,
6289,
0,
9746,
9747,
'C',
9747,
'C',
9746,
0,
6292,
9748,
'C',
9748,
3912,
9749,
81,
81,
'C',
9749,
9750,
'C',
9750,
'C',
9745,
2052,
'C',
9744,
2052,
'C',
9742,
454,
9751,
'C',
9751,
'C',
9752,
8533,
9753,
3937,
'C',
9753,
9754,
'C',
9754,
81,
'C',
9755,
454,
795,
2033,
8535,
'C',
9756,
9757,
2015,
9758,
0,
6289,
81,
'C',
9758,
'C',
9759,
'C',
9760,
'C',
9761,
3938,
3937,
'C',
9762,
8475,
597,
'C',
9763,
'C',
9764,
3937,
'C',
9765,
'C',
9766,
3936,
'C',
9767,
2729,
2728,
2729,
'C',
9768,
2728,
2729,
'C',
9769,
2729,
2729,
'C',
9770,
104,
81,
81,
81,
'C',
9771,
'C',
9772,
9773,
2033,
'C',
9773,
'T',
43,
6637,
'C',
9774,
6636,
9773,
2033,
0,
6283,
9775,
6793,
9776,
597,
9777,
'C',
9777,
9775,
81,
81,
'C',
9776,
3925,
3925,
1447,
9757,
0,
6289,
3925,
3925,
1447,
9757,
0,
6289,
9778,
'C',
9778,
81,
81,
'C',
9775,
6637,
2727,
9779,
6799,
3912,
9780,
3912,
9781,
3912,
7686,
3912,
6625,
9782,
3912,
7686,
3912,
9782,
3912,
9783,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'S',
5,
'S',
5,
81,
'C',
9783,
2190,
2199,
4237,
8634,
8634,
423,
6285,
2217,
9223,
9784,
5,
8,
60,
60,
60,
60,
60,
2222,
81,
'C',
9784,
2218,
9785,
'C',
9785,
'C',
9782,
2190,
2199,
3913,
6666,
2727,
6285,
6285,
9786,
1780,
423,
423,
6668,
6285,
3914,
2217,
9223,
9784,
2926,
60,
60,
60,
60,
60,
60,
'C',
9786,
6669,
81,
'C',
9781,
'T',
154,
'T',
9226,
8960,
4541,
6799,
423,
6285,
2220,
753,
60,
60,
60,
60,
'S',
5,
'C',
9780,
'T',
154,
'T',
9226,
2190,
2199,
3913,
423,
6285,
2220,
753,
60,
60,
60,
60,
'S',
5,
'C',
9779,
2033,
6625,
6666,
1958,
2727,
7736,
4544,
6625,
6666,
1958,
2727,
7736,
4544,
'C',
9787,
6636,
9788,
7696,
7696,
3923,
9789,
3924,
546,
546,
9790,
9791,
9792,
9793,
597,
60,
60,
60,
60,
60,
81,
81,
'C',
9793,
6515,
6515,
6527,
6527,
9794,
9795,
'C',
9795,
9796,
9623,
9797,
81,
'C',
9797,
9624,
9624,
0,
0,
7256,
90,
0,
0,
7256,
90,
9624,
5967,
5967,
9798,
9799,
9800,
9801,
9802,
81,
'C',
9802,
'T',
6902,
'T',
6904,
'T',
6906,
'T',
6908,
'T',
6910,
9803,
9804,
9805,
9806,
60,
60,
60,
60,
81,
'C',
9806,
1780,
5711,
0,
0,
0,
9807,
9808,
9809,
'C',
9809,
7282,
81,
'C',
9808,
7282,
81,
'C',
9807,
9810,
7282,
81,
'C',
9805,
9805,
60,
'C',
9804,
9804,
60,
'C',
9803,
9803,
60,
'C',
9801,
7283,
7277,
'C',
9800,
'T',
6902,
'T',
6904,
'T',
6906,
'T',
6908,
'T',
6910,
9803,
9804,
9805,
9806,
60,
60,
60,
60,
81,
'C',
9799,
7284,
7277,
'C',
9798,
9020,
6477,
9015,
81,
'C',
9796,
'T',
6566,
6589,
81,
'C',
9794,
'T',
6569,
'T',
6570,
'T',
43,
9811,
9641,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
9811,
9812,
81,
81,
81,
'C',
9812,
'T',
43,
'T',
43,
1650,
9811,
3925,
60,
60,
'C',
9792,
'T',
43,
'C',
9791,
'C',
9790,
60,
'C',
9789,
6665,
'C',
9788,
1780,
6665,
423,
6665,
423,
60,
60,
60,
60,
'C',
9813,
6639,
7711,
81,
'C',
9814,
'C',
9815,
6636,
7718,
597,
'C',
9816,
1755,
9817,
9817,
0,
2129,
0,
2129,
0,
8963,
9818,
'C',
9819,
9820,
7291,
7287,
0,
0,
7285,
7287,
0,
0,
2135,
0,
2135,
81,
9821,
9822,
9823,
'C',
9823,
9824,
'C',
9824,
9825,
'C',
9825,
7489,
'C',
9822,
9826,
'C',
9826,
9827,
'C',
9827,
7840,
'C',
9821,
9828,
81,
'C',
9828,
7506,
'C',
9829,
8986,
9830,
9831,
2661,
9832,
9833,
0,
9834,
9835,
9836,
9837,
0,
9838,
0,
9839,
9840,
0,
9841,
0,
9842,
9843,
9844,
9845,
9846,
9847,
'C',
9847,
9848,
81,
'C',
9848,
9840,
4541,
7480,
'C',
9846,
9849,
81,
'C',
9849,
6625,
7492,
9850,
4541,
7480,
'C',
9850,
6625,
7493,
6678,
0,
5586,
'S',
5,
'C',
9845,
9851,
81,
'C',
9851,
9837,
4541,
7480,
'C',
9844,
9852,
81,
'C',
9852,
6625,
7492,
9853,
4541,
7480,
'C',
9853,
6625,
7493,
6678,
0,
5586,
'S',
5,
'C',
9843,
9854,
81,
'C',
9854,
7480,
'C',
9842,
0,
7631,
9855,
564,
'C',
9855,
81,
'C',
9841,
0,
7631,
9856,
564,
'C',
9856,
81,
'C',
9840,
6676,
'C',
9839,
0,
7631,
9857,
564,
'C',
9857,
81,
'C',
9838,
0,
7631,
9858,
564,
'C',
9858,
81,
'C',
9837,
6676,
'C',
9836,
'C',
9835,
'C',
9834,
0,
7631,
9859,
564,
'C',
9859,
'T',
12091,
'T',
3849,
'T',
3849,
4541,
1147,
1147,
81,
81,
81,
81,
'C',
9833,
2661,
2662,
'C',
9832,
2661,
2662,
'C',
9831,
2661,
2662,
'C',
9830,
2661,
2662,
'C',
9860,
2557,
7950,
104,
'C',
9729,
8841,
'C',
9730,
8842,
'C',
9861,
2612,
104,
60,
81,
81,
81,
'C',
9862,
2446,
'C',
9863,
'T',
43,
'T',
43,
1516,
703,
4309,
'C',
9864,
9226,
81,
'C',
9865,
454,
795,
9866,
8538,
2192,
'C',
9866,
8537,
2222,
4381,
8643,
60,
'C',
9867,
8640,
9226,
8640,
9226,
8640,
8643,
9226,
9227,
60,
60,
60,
'C',
9868,
8640,
9226,
8640,
9226,
8640,
8643,
9226,
9229,
60,
60,
60,
'C',
9869,
9870,
8644,
9226,
'C',
9870,
4280,
'C',
9871,
9870,
4277,
'C',
9872,
2612,
104,
60,
81,
81,
'C',
9873,
2446,
'C',
9874,
'T',
43,
1516,
703,
4309,
'C',
9875,
9225,
81,
'C',
9876,
454,
795,
9877,
9878,
8538,
2192,
'C',
9878,
'T',
43,
423,
423,
60,
60,
60,
60,
'C',
9877,
8537,
2222,
4381,
'C',
9879,
8640,
9225,
8640,
9225,
8640,
9225,
9227,
60,
60,
60,
'C',
9880,
8640,
9225,
8640,
9225,
8640,
9225,
9229,
60,
60,
60,
'C',
9881,
9870,
9225,
'C',
9882,
'T',
10565,
9870,
4380,
'C',
9883,
2612,
104,
60,
81,
81,
'C',
9884,
2446,
'C',
9885,
'T',
43,
'T',
43,
1516,
703,
4309,
'C',
9886,
9233,
'C',
9887,
454,
795,
9888,
9889,
8538,
2192,
'C',
9889,
'T',
43,
423,
423,
60,
60,
60,
60,
'C',
9888,
'T',
10566,
'T',
43,
8537,
2222,
4381,
8643,
'C',
9890,
8640,
9232,
9233,
8640,
9233,
8640,
9232,
9233,
9227,
60,
60,
60,
'C',
9891,
8640,
9232,
9233,
8640,
9233,
8640,
9232,
9233,
9229,
60,
60,
60,
'C',
9892,
'T',
10565,
9870,
9233,
'C',
9893,
'C',
9894,
'C',
9895,
9870,
5757,
'C',
9896,
9897,
9898,
1,
'C',
9899,
'T',
10566,
2033,
8538,
9900,
8763,
1457,
5772,
1651,
'S',
5,
'C',
9900,
9901,
'C',
9901,
1650,
1651,
1650,
1651,
1650,
1651,
1650,
1651,
2217,
2217,
60,
60,
60,
60,
60,
60,
60,
'C',
9902,
'C',
9903,
9904,
104,
553,
4309,
104,
555,
4309,
104,
555,
4309,
104,
555,
4309,
104,
555,
835,
104,
81,
81,
81,
81,
81,
81,
'C',
9904,
9905,
'C',
9905,
'T',
43,
'T',
43,
'T',
43,
'C',
9906,
2446,
'C',
9907,
1516,
703,
4309,
4309,
4309,
4309,
'C',
9908,
9909,
9227,
'C',
9909,
9910,
9910,
8640,
8640,
8640,
8640,
9296,
60,
'C',
9911,
9909,
9229,
'C',
9910,
9870,
9870,
9870,
9870,
9296,
'C',
9912,
9913,
81,
81,
'C',
9913,
9914,
9914,
9914,
9914,
9915,
'C',
9915,
9916,
9916,
9916,
9916,
9296,
'C',
9916,
4280,
'C',
9914,
'T',
43,
'C',
9917,
454,
795,
8535,
'C',
9918,
4401,
9234,
'C',
9919,
8646,
8646,
8646,
8646,
8646,
8646,
8646,
8646,
4407,
'C',
9920,
9921,
'C',
9921,
9262,
'C',
9922,
9923,
7016,
2603,
5711,
4508,
5578,
6700,
6701,
5610,
6879,
6798,
7017,
6382,
5897,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
9924,
'C',
9925,
9926,
81,
81,
'C',
9926,
3943,
'C',
9928,
9927,
6132,
6134,
'C',
9929,
1354,
9930,
5798,
1606,
'C',
9931,
9932,
9934,
81,
81,
'C',
9934,
3943,
'C',
9932,
3943,
'C',
9935,
9933,
9936,
2830,
2149,
'C',
9937,
3931,
2446,
60,
'C',
9938,
'T',
43,
3932,
'C',
9818,
2159,
0,
7662,
2148,
9939,
'C',
9939,
9940,
'C',
9940,
9941,
6212,
'C',
9941,
3943,
'C',
9820,
2159,
2146,
0,
7669,
'C',
9942,
6088,
6088,
8715,
5564,
8716,
8706,
6088,
9943,
4521,
'C',
9944,
0,
0,
0,
9945,
81,
9946,
81,
9947,
81,
'C',
9947,
9948,
4500,
81,
'C',
9946,
9718,
81,
'C',
9945,
4500,
81,
'C',
9949,
2557,
'C',
9950,
'T',
154,
'T',
9226,
3912,
2203,
2205,
2033,
6294,
2204,
9951,
7636,
753,
'S',
5,
81,
'C',
9951,
'T',
43,
'T',
1502,
'T',
993,
61,
555,
1461,
1454,
1535,
81,
'C',
9952,
'C',
9953,
6057,
6059,
'C',
9954,
'C',
9955,
6060,
'C',
9956,
61,
6373,
5564,
9957,
9312,
9958,
9313,
81,
81,
'C',
9958,
'C',
9959,
'T',
43,
'T',
43,
9960,
4500,
6083,
6084,
9718,
6084,
7212,
81,
81,
'C',
9961,
6076,
6076,
9962,
'C',
9963,
6077,
6126,
6077,
6126,
6121,
6123,
9960,
6121,
6123,
9718,
60,
561,
'C',
9964,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
9962,
'C',
9965,
2070,
'C',
9966,
150,
1467,
104,
6600,
1841,
'C',
9967,
'C',
9968,
9969,
81,
'C',
9969,
9970,
9971,
9972,
9973,
9974,
9975,
9976,
9977,
9978,
9979,
9980,
9981,
9982,
1,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
9982,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
9981,
9983,
'C',
9983,
2151,
1212,
584,
2152,
'C',
9979,
9983,
'C',
9978,
9983,
'C',
9977,
9983,
'C',
9976,
9983,
'C',
9975,
9983,
'C',
9974,
9983,
'C',
9973,
9983,
'C',
9972,
9983,
'C',
9971,
9983,
'C',
9970,
9983,
'C',
9984,
9969,
81,
81,
'C',
9985,
2440,
9986,
9987,
9987,
9987,
9987,
9987,
9987,
9987,
9987,
9987,
9987,
9987,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
9987,
614,
1568,
1212,
584,
'C',
9988,
1595,
9989,
9989,
9989,
9989,
9989,
9989,
9989,
9989,
9989,
9989,
9989,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
9989,
614,
1568,
1212,
584,
'C',
9990,
1212,
'C',
9991,
1069,
1831,
'C',
9980,
81,
'C',
9986,
81,
81,
'C',
9992,
9993,
9994,
9994,
7367,
9994,
61,
5899,
60,
81,
'C',
9994,
4500,
6088,
4508,
9995,
4521,
7367,
5569,
5570,
1447,
60,
60,
'C',
9993,
'T',
2222,
'C',
9996,
9994,
6084,
7212,
81,
81,
'C',
9997,
6076,
9954,
'C',
9998,
6077,
6126,
9994,
6083,
0,
6070,
9999,
'C',
9999,
10000,
'C',
10000,
0,
4537,
10001,
'C',
10001,
'C',
10002,
'T',
43,
2729,
3936,
3935,
60,
60,
81,
'C',
10003,
'T',
4237,
10004,
3639,
4134,
0,
6269,
81,
10005,
'C',
10005,
'T',
444,
81,
81,
'C',
10004,
0,
1311,
10006,
'C',
10006,
0,
10007,
'C',
10007,
244,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
10008,
'C',
10009,
2727,
2590,
10010,
1461,
1454,
1535,
3936,
5576,
0,
7647,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
2727,
2590,
60,
60,
60,
81,
81,
10011,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
10011,
10012,
81,
81,
'C',
10012,
2590,
'C',
10010,
'C',
10013,
10014,
10015,
2603,
2605,
10015,
1447,
0,
0,
10016,
10015,
3727,
3727,
5841,
5841,
10015,
5841,
5841,
3727,
3727,
10015,
10015,
10017,
10015,
10017,
10018,
10017,
10018,
546,
3921,
597,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
10019,
10020,
81,
'C',
10020,
614,
1447,
60,
81,
81,
81,
'C',
10019,
1447,
60,
81,
81,
81,
'C',
10018,
1514,
'C',
10017,
'T',
43,
1514,
'C',
10016,
'C',
10015,
'C',
10014,
90,
7592,
10021,
584,
10021,
584,
10021,
584,
10021,
584,
10021,
584,
10015,
10015,
10015,
10015,
10015,
10015,
10015,
10015,
6303,
10021,
584,
6303,
10021,
584,
10021,
584,
10015,
10015,
6266,
6303,
10021,
584,
614,
3917,
6265,
6303,
10021,
584,
614,
614,
614,
614,
614,
614,
6931,
1650,
1651,
614,
614,
10022,
1,
597,
597,
60,
60,
60,
60,
60,
60,
60,
10023,
1,
81,
'C',
10021,
2605,
10024,
'C',
10024,
6304,
81,
'C',
10025,
'T',
1492,
60,
81,
'C',
10026,
'C',
10027,
'C',
10028,
0,
1311,
1831,
'C',
10029,
0,
1311,
0,
1831,
'C',
10030,
'T',
4237,
'T',
1474,
2148,
0,
1311,
3639,
4134,
'C',
10031,
'T',
4237,
'T',
1472,
2146,
0,
1311,
3639,
4134,
81,
'C',
10032,
9870,
8746,
4381,
'C',
10033,
'C',
10034,
81,
81,
'C',
10035,
6084,
'C',
10036,
5546,
1366,
561,
6084,
6084,
60,
'C',
10037,
6096,
6083,
6566,
60,
'C',
10038,
6084,
6084,
6566,
561,
'C',
10039,
5711,
5713,
5715,
5716,
4275,
5717,
5718,
5719,
5720,
6303,
5721,
5722,
'C',
10040,
4330,
81,
'C',
10041,
2612,
2612,
104,
81,
'C',
10042,
2446,
'C',
10043,
1446,
'C',
10044,
10045,
81,
'C',
10045,
'T',
11721,
81,
'C',
10046,
10047,
81,
'C',
10047,
1457,
9491,
'C',
10048,
553,
553,
553,
553,
733,
733,
555,
555,
555,
555,
10049,
1,
10050,
10049,
10050,
1447,
561,
1457,
10051,
1,
561,
1457,
10051,
60,
60,
60,
10052,
'C',
10050,
10053,
1,
1461,
10054,
1,
1461,
10055,
10054,
1461,
10054,
1461,
10056,
10057,
10058,
1,
1461,
10059,
10056,
10060,
10061,
60,
'C',
10061,
'C',
10060,
'C',
10059,
'C',
10057,
10060,
60,
'C',
10056,
10058,
'C',
10055,
'C',
10062,
10063,
1,
'C',
10064,
'C',
10065,
8789,
10066,
8784,
8785,
10066,
8822,
'S',
5,
'C',
10066,
8784,
8785,
9479,
'C',
10067,
10068,
'C',
9817,
8791,
10069,
'C',
10068,
1758,
10070,
9475,
10071,
1529,
10072,
584,
8826,
0,
1099,
10073,
'C',
10073,
10074,
'C',
10074,
8788,
10075,
8787,
10076,
'C',
10076,
9607,
0,
8813,
8813,
10077,
'C',
10077,
'C',
10075,
9480,
9479,
'C',
10072,
1758,
3963,
'C',
10071,
'T',
3850,
0,
3964,
10078,
'C',
10078,
90,
'C',
10070,
1758,
'T',
11207,
10071,
1529,
10072,
584,
'C',
10079,
'C',
10080,
'C',
10081,
'C',
10069,
1758,
'T',
11277,
'T',
11207,
'T',
5277,
'T',
11479,
2801,
2800,
614,
1212,
1353,
'C',
10082,
'T',
11277,
'C',
10083,
8799,
'C',
10084,
8811,
10085,
8799,
10086,
10086,
'S',
5,
'C',
10086,
1758,
8801,
3963,
8806,
1,
10087,
584,
0,
10088,
561,
'C',
10088,
1758,
10071,
'C',
10087,
10089,
1,
10090,
'C',
10090,
0,
1099,
10091,
'C',
10091,
10092,
'C',
10092,
'C',
10085,
'C',
10093,
'C',
10094,
'C',
10095,
9490,
9490,
'C',
10096,
1066,
10069,
'C',
10097,
10070,
584,
8826,
10098,
9479,
'C',
10098,
9602,
0,
8813,
10099,
81,
'C',
10099,
'C',
10100,
'S',
5,
'C',
10101,
'C',
10102,
7282,
10062,
10062,
10103,
10075,
9480,
9480,
8826,
10075,
8822,
10104,
'S',
5,
'C',
10104,
1457,
1457,
10105,
1,
0,
8813,
10106,
'C',
10106,
'C',
10103,
10048,
9608,
0,
8813,
10107,
'C',
10107,
'C',
10108,
'C',
10109,
9479,
10070,
8826,
'C',
10110,
104,
81,
'C',
10111,
10112,
10113,
4414,
'C',
10114,
10115,
10117,
10118,
81,
81,
'C',
10118,
3943,
2069,
'C',
10117,
3943,
2069,
'C',
10115,
3943,
2069,
'C',
10119,
10116,
5643,
2149,
5646,
2603,
60,
60,
60,
60,
'C',
10120,
4500,
10121,
10122,
4414,
'C',
10123,
'C',
10124,
'T',
2614,
'T',
10498,
'T',
10497,
1365,
1366,
'C',
10125,
10126,
'C',
10126,
7212,
81,
'C',
10127,
1443,
3743,
1443,
3743,
6777,
'C',
10128,
'C',
10129,
1443,
'C',
10130,
1464,
'C',
10131,
1464,
'C',
10132,
1464,
'C',
10133,
1464,
'C',
10134,
1464,
'C',
10135,
1464,
'C',
10136,
1464,
'C',
10137,
1464,
'C',
10138,
1464,
'C',
10139,
1464,
'C',
10140,
1464,
'C',
10141,
10142,
'C',
10142,
10143,
'C',
10144,
56,
81,
81,
'C',
10145,
'C',
10146,
4219,
'C',
10143,
2494,
'C',
10147,
1464,
'C',
10148,
10149,
610,
'C',
10150,
'C',
10151,
'C',
10152,
'C',
10153,
6595,
6572,
81,
'C',
10154,
6595,
6572,
'C',
10155,
'C',
10156,
6572,
'C',
10157,
'C',
10158,
'C',
10159,
'C',
10160,
'C',
10161,
'C',
10162,
'C',
10163,
1632,
7378,
6032,
81,
'C',
10164,
81,
81,
'C',
10165,
9639,
'C',
10166,
10167,
'C',
10167,
9629,
'C',
10168,
81,
'C',
10169,
10170,
'C',
10170,
10171,
'C',
10171,
10172,
10174,
'C',
10174,
6572,
'C',
10172,
6572,
'C',
10175,
10176,
'C',
10176,
10177,
81,
'C',
10177,
10178,
'C',
10178,
10179,
6572,
81,
'C',
10179,
'C',
10180,
10181,
'C',
10181,
10182,
81,
'C',
10182,
10183,
'C',
10183,
'T',
43,
'T',
43,
10184,
10185,
10179,
10186,
60,
81,
'C',
10186,
'T',
6714,
6524,
6583,
60,
6525,
81,
6525,
81,
81,
'C',
10185,
'T',
43,
1650,
1651,
60,
60,
60,
60,
'C',
10184,
'T',
43,
'C',
10187,
10188,
'C',
10188,
10189,
81,
'C',
10189,
0,
10190,
10191,
81,
'C',
10191,
10192,
'C',
10192,
'C',
10190,
'T',
6729,
'T',
6731,
6523,
1,
10193,
6518,
6520,
81,
81,
'C',
10194,
10195,
'C',
10195,
10196,
81,
'C',
10196,
0,
10197,
10198,
81,
'C',
10198,
10199,
'C',
10199,
'C',
10197,
'T',
6570,
10173,
6518,
6520,
'C',
10200,
104,
81,
81,
81,
'C',
10201,
6513,
10202,
10203,
10204,
6102,
10205,
60,
'C',
10205,
'T',
13709,
'T',
13709,
10206,
10207,
10208,
6102,
10209,
10210,
1650,
1651,
10207,
10210,
1650,
1651,
10206,
60,
60,
60,
60,
60,
81,
'C',
10210,
'T',
43,
10211,
60,
60,
'C',
10211,
81,
'C',
10209,
10211,
60,
'C',
10207,
10212,
7034,
7035,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
10206,
10212,
7035,
'C',
10203,
10213,
10214,
10203,
10213,
'C',
10214,
7044,
'C',
10202,
'C',
10215,
'C',
10216,
6513,
10202,
10203,
1650,
1651,
10212,
7035,
10217,
6102,
10218,
60,
60,
'C',
10218,
10219,
60,
'C',
10219,
10220,
10221,
10211,
10222,
60,
60,
10220,
'C',
10222,
81,
'C',
10221,
10211,
10211,
60,
60,
'C',
10223,
'C',
10224,
1761,
1763,
'C',
10225,
1762,
1808,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
10226,
10227,
5564,
10229,
81,
81,
'C',
10229,
10230,
'C',
10230,
3943,
'C',
10227,
3943,
'C',
10231,
5564,
10228,
7548,
10232,
'C',
10232,
2149,
'C',
10233,
1354,
10234,
5798,
1606,
'C',
10235,
6735,
4414,
'C',
10236,
8643,
'C',
10237,
8635,
'C',
10238,
10239,
10240,
4226,
0,
10241,
'C',
10241,
10243,
81,
'C',
10243,
'C',
10239,
1780,
'C',
10244,
7531,
2064,
10245,
10247,
10248,
81,
'C',
10248,
'T',
43,
2064,
'C',
10247,
'T',
43,
2064,
'C',
10245,
'T',
43,
2064,
'C',
10249,
10250,
10246,
7532,
10251,
'C',
10251,
10252,
113,
105,
105,
105,
105,
105,
81,
105,
'C',
10252,
6134,
81,
'C',
10253,
10254,
2064,
10256,
10245,
10247,
10248,
81,
81,
'C',
10256,
'T',
43,
7533,
'C',
10254,
'C',
10257,
10255,
10246,
10258,
'C',
10258,
10252,
'C',
10259,
10260,
81,
81,
'C',
10260,
'T',
43,
2064,
2069,
'C',
10262,
10261,
6132,
10263,
'C',
10263,
6134,
'C',
10264,
553,
10265,
2557,
835,
104,
'C',
10265,
10266,
103,
555,
103,
555,
103,
555,
103,
555,
'C',
10266,
10267,
2612,
2612,
104,
555,
2612,
104,
555,
81,
81,
'C',
10267,
2612,
104,
555,
81,
'C',
10268,
'C',
10269,
8475,
597,
'C',
10270,
10271,
7630,
10271,
7630,
10271,
0,
7630,
10271,
0,
7630,
10271,
0,
7630,
10271,
0,
7630,
564,
10272,
10273,
10274,
10275,
81,
81,
81,
81,
'C',
10275,
10276,
'C',
10276,
1447,
8763,
6632,
8831,
60,
'C',
10274,
10277,
'C',
10277,
1447,
8763,
6632,
8831,
60,
'C',
10273,
10278,
'C',
10278,
1447,
8763,
6632,
8831,
60,
'C',
10272,
10279,
'C',
10279,
1447,
8763,
6632,
8831,
60,
'C',
10271,
1468,
'C',
10280,
1446,
9742,
10281,
2705,
2706,
2707,
81,
'C',
10281,
430,
10282,
10283,
2713,
'C',
10282,
'C',
10284,
9753,
2715,
'C',
10285,
'T',
43,
3936,
'C',
10286,
'T',
43,
'T',
43,
2727,
2728,
2730,
2705,
2706,
2707,
81,
'C',
10287,
1457,
2715,
'C',
10288,
2736,
81,
'C',
10289,
2113,
'C',
10290,
'C',
10291,
2118,
'C',
10292,
'T',
3253,
'T',
4235,
'T',
4236,
'T',
4237,
'T',
3253,
10293,
10293,
553,
555,
555,
555,
3894,
113,
105,
'C',
10293,
'T',
154,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
154,
'T',
154,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
8330,
'T',
3253,
'T',
3253,
'T',
8330,
'T',
8330,
'T',
8330,
'T',
8330,
'T',
8331,
90,
2009,
2013,
81,
'C',
10294,
'C',
10295,
3912,
10296,
7636,
3912,
10296,
'C',
10296,
'T',
43,
'T',
1290,
2203,
2205,
2204,
'C',
10297,
3921,
2069,
597,
'C',
10298,
'C',
10299,
7638,
'C',
10300,
0,
9729,
0,
9729,
6260,
'C',
10301,
6261,
0,
9730,
0,
9730,
81,
'C',
10302,
'C',
10303,
2033,
0,
6283,
6276,
10304,
'C',
10304,
6276,
81,
81,
'C',
10305,
2606,
6096,
3942,
2605,
2605,
10306,
10307,
10308,
10309,
10310,
3921,
7593,
597,
81,
9677,
81,
9677,
81,
9677,
81,
'C',
10310,
6088,
'C',
10309,
'T',
43,
10311,
6096,
81,
'C',
10311,
6084,
'C',
10308,
'T',
43,
10311,
6084,
81,
'C',
10307,
'T',
43,
'T',
43,
10311,
6084,
60,
81,
81,
81,
'C',
10306,
81,
'C',
10312,
6096,
6260,
'C',
10313,
104,
81,
'C',
10314,
'T',
1265,
2033,
10315,
10316,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
'C',
10316,
10317,
10318,
'C',
10318,
'T',
10566,
2020,
8537,
10319,
3914,
8538,
9784,
60,
81,
'C',
10319,
10320,
'C',
10320,
'C',
10317,
2190,
2199,
3913,
'C',
10315,
'T',
154,
'T',
9226,
753,
10321,
'S',
5,
81,
'C',
10321,
2190,
2199,
'C',
10323,
104,
60,
81,
81,
'C',
10324,
8486,
'C',
10325,
81,
'C',
10326,
'T',
1476,
81,
'C',
10327,
'T',
1474,
2148,
81,
'C',
10328,
'T',
1472,
2146,
81,
81,
'C',
10329,
'T',
43,
10330,
10331,
3943,
81,
81,
81,
'C',
10331,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
10330,
81,
81,
81,
'C',
10332,
10330,
2151,
81,
'C',
10333,
10334,
81,
'C',
10334,
2152,
10331,
81,
81,
'C',
10335,
3936,
81,
'C',
10336,
10337,
6311,
'C',
10338,
0,
6269,
81,
10339,
'C',
10339,
'T',
444,
81,
81,
'C',
10340,
2727,
2590,
81,
'C',
10341,
7592,
2605,
546,
3921,
1447,
597,
597,
60,
81,
'C',
10342,
'T',
43,
81,
'C',
10343,
0,
10325,
10344,
'C',
10344,
81,
81,
81,
81,
'C',
10345,
0,
6269,
81,
10346,
'C',
10346,
'T',
444,
81,
81,
'C',
10347,
10337,
'C',
10348,
0,
10325,
10349,
'C',
10349,
2727,
2590,
81,
81,
81,
'C',
10350,
3941,
10351,
10352,
'C',
10352,
0,
10325,
10353,
1447,
546,
1447,
546,
60,
60,
10354,
81,
81,
'C',
10354,
'T',
43,
10353,
1447,
546,
1447,
546,
60,
60,
60,
60,
81,
81,
81,
'C',
10353,
'T',
43,
'C',
10351,
2603,
0,
10325,
597,
597,
60,
10355,
'C',
10355,
7592,
2605,
60,
81,
81,
'C',
10356,
10357,
'C',
10357,
9576,
0,
0,
10358,
4226,
10359,
1224,
10360,
10361,
10362,
'C',
10362,
10363,
'C',
10363,
10364,
1,
10365,
81,
'C',
10365,
5984,
5984,
'T',
5906,
'T',
4235,
'T',
4236,
'T',
4237,
10366,
5986,
10367,
7326,
81,
'C',
10367,
5986,
'C',
10366,
4544,
'C',
10361,
10368,
'C',
10368,
7048,
10369,
7060,
7060,
9576,
'C',
10369,
'C',
10360,
10370,
10372,
10373,
10374,
10375,
10376,
6121,
6123,
6085,
6121,
6123,
6085,
6121,
6123,
6085,
3890,
3890,
10370,
10373,
10375,
'C',
10376,
10377,
4500,
10378,
7138,
10378,
10379,
10380,
1,
113,
105,
441,
441,
441,
441,
113,
105,
60,
60,
60,
60,
5918,
5918,
10381,
1,
81,
'C',
10374,
4500,
1447,
60,
60,
'C',
10372,
4500,
'C',
10382,
10383,
1224,
10384,
'C',
10384,
10385,
10386,
10387,
10388,
10389,
10390,
7363,
6085,
6085,
10385,
10387,
10389,
'C',
10390,
7362,
'C',
10388,
7362,
'C',
10386,
4500,
1447,
60,
60,
'C',
10391,
8641,
'C',
10392,
'T',
43,
81,
'C',
10393,
8722,
81,
'C',
10394,
'C',
10395,
8641,
81,
'C',
10396,
2190,
2199,
6088,
4274,
8763,
8775,
6088,
10397,
5,
8,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
10397,
'T',
992,
7646,
2203,
7651,
2205,
9749,
6294,
10319,
2204,
81,
81,
81,
81,
'C',
10398,
6088,
6088,
2190,
2199,
4274,
8763,
7009,
8775,
6088,
10397,
5,
8,
'C',
10399,
2190,
2199,
6088,
4274,
7646,
2033,
2203,
7651,
10400,
2204,
6285,
10400,
5,
8,
'C',
10400,
'T',
992,
2203,
9749,
2020,
10319,
3914,
2204,
60,
'C',
10401,
10402,
5711,
10240,
81,
'C',
10402,
5711,
'C',
10403,
10404,
6714,
10404,
6714,
2727,
10404,
6714,
2727,
561,
1457,
10051,
60,
60,
60,
10051,
1447,
561,
1447,
'C',
10404,
1457,
6714,
733,
2404,
60,
60,
'C',
10405,
10063,
'C',
10406,
'C',
10407,
104,
81,
'C',
10408,
2612,
2612,
2612,
104,
60,
81,
81,
81,
81,
'C',
10409,
60,
81,
'C',
10410,
104,
81,
'C',
10411,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
10412,
'C',
10413,
2070,
'C',
10414,
150,
1467,
104,
6600,
1841,
'C',
10415,
3917,
3917,
0,
9528,
4481,
0,
9528,
9528,
10416,
1544,
10417,
6798,
7139,
60,
10418,
4508,
58,
4276,
10419,
4508,
58,
4276,
4508,
58,
4276,
9,
5591,
60,
2908,
60,
7137,
441,
6957,
'C',
10419,
10420,
'C',
10420,
7212,
0,
6127,
10421,
'C',
10421,
10422,
81,
'C',
10422,
0,
4537,
6084,
0,
7195,
10423,
'C',
10423,
'C',
10418,
10424,
'C',
10424,
7212,
0,
6127,
'C',
10417,
'C',
10425,
6076,
10412,
'C',
10426,
6084,
0,
7195,
81,
81,
'C',
10427,
6077,
6126,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
'C',
10428,
'T',
43,
81,
'C',
10429,
2727,
2033,
10430,
0,
9741,
81,
10431,
'C',
10431,
2590,
81,
81,
'C',
10430,
454,
795,
1447,
546,
2033,
2217,
9223,
2192,
454,
795,
2195,
2198,
2198,
2197,
10432,
60,
60,
60,
60,
60,
60,
81,
2222,
10433,
1,
81,
81,
'C',
10432,
454,
795,
10434,
597,
81,
'C',
10434,
81,
'C',
10435,
8475,
6265,
7592,
7602,
2605,
3925,
1447,
597,
60,
60,
60,
60,
60,
60,
81,
'C',
10436,
10437,
3946,
'C',
10438,
'C',
10439,
6368,
10440,
10441,
4275,
0,
0,
0,
2603,
5590,
7137,
4242,
5567,
5610,
5578,
4520,
7139,
6798,
6879,
5569,
5570,
6881,
6882,
10443,
10444,
10445,
60,
113,
105,
105,
105,
105,
105,
81,
105,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
'C',
10445,
10446,
'C',
10446,
10447,
'C',
10447,
6566,
6566,
0,
7386,
561,
10448,
'C',
10448,
10447,
'C',
10444,
10449,
81,
'C',
10449,
10447,
'C',
10443,
10450,
81,
'C',
10450,
10447,
'C',
10441,
10451,
4275,
'C',
10451,
10453,
10454,
1,
5591,
5591,
'C',
10453,
10455,
4276,
9,
5591,
81,
60,
60,
2913,
5591,
'C',
10455,
7056,
4275,
'C',
10440,
10456,
113,
105,
105,
105,
105,
105,
81,
105,
81,
81,
'C',
10456,
10442,
10452,
1433,
'C',
10457,
6076,
10458,
'C',
10459,
10460,
81,
81,
'C',
10460,
60,
81,
81,
'C',
10461,
6077,
6126,
7362,
6085,
6085,
10460,
'C',
10462,
6057,
6059,
'C',
10458,
'C',
10463,
6060,
'C',
10464,
8596,
'C',
10465,
8633,
'C',
10466,
10467,
113,
105,
105,
105,
105,
105,
'C',
10467,
10468,
886,
'C',
10469,
'T',
12091,
3840,
'C',
10470,
10467,
'C',
10471,
10467,
'C',
10472,
10467,
'C',
10473,
'C',
10474,
10475,
1,
'C',
10476,
10477,
10478,
4414,
10479,
'C',
10479,
90,
'C',
10480,
'C',
10481,
2557,
'C',
10482,
7111,
'C',
10483,
'C',
10484,
'C',
10485,
'C',
10486,
2557,
104,
'C',
10487,
7111,
'C',
10488,
'C',
10489,
'C',
10490,
'C',
10491,
7126,
6536,
81,
'C',
10492,
7116,
6536,
81,
'C',
10493,
7129,
6536,
81,
'C',
10494,
7131,
6536,
81,
'C',
10495,
'C',
10496,
3925,
60,
'C',
10497,
3925,
60,
60,
'C',
10498,
104,
81,
81,
81,
'C',
10499,
'T',
6843,
10500,
'C',
10500,
60,
81,
'C',
10501,
'T',
6841,
10500,
60,
'C',
10502,
'T',
6839,
10500,
'C',
10503,
'C',
10504,
10504,
'C',
10505,
10505,
'C',
10506,
10506,
60,
'C',
10507,
60,
'C',
10508,
1650,
1651,
60,
60,
60,
'C',
10509,
10202,
733,
733,
60,
60,
'C',
10510,
6058,
81,
'C',
10511,
2033,
'C',
10512,
10513,
81,
'C',
10513,
81,
'C',
10514,
2033,
0,
6283,
10515,
10516,
'C',
10516,
10515,
81,
81,
'C',
10515,
'T',
8038,
10513,
1447,
2048,
2591,
2047,
60,
60,
81,
'C',
10517,
10518,
0,
6269,
81,
10519,
'C',
10519,
'T',
444,
81,
81,
'C',
10518,
'C',
10520,
10521,
8475,
2603,
10513,
8476,
2605,
2886,
1447,
597,
60,
60,
81,
81,
'C',
10521,
8586,
'C',
10522,
8475,
597,
'C',
10523,
'C',
10524,
10513,
6304,
1650,
1651,
60,
60,
81,
'C',
10525,
8480,
'C',
10526,
81,
'C',
10527,
81,
81,
81,
'C',
10528,
10529,
'C',
10529,
'T',
43,
'T',
43,
10530,
10531,
10530,
10531,
10532,
10531,
10531,
10532,
10531,
10531,
10530,
10531,
10530,
10531,
60,
60,
60,
60,
60,
'C',
10532,
'T',
43,
'T',
43,
8596,
10533,
9232,
10534,
7137,
'C',
10534,
553,
553,
553,
555,
81,
'C',
10533,
9909,
10535,
1797,
1273,
1516,
1516,
104,
1269,
1273,
7051,
1273,
61,
1276,
81,
81,
81,
81,
81,
81,
'C',
10535,
'C',
10531,
10537,
10378,
'C',
10537,
10538,
10538,
10539,
10541,
10541,
10379,
60,
10381,
'C',
10541,
10542,
6344,
'C',
10542,
5918,
'C',
10539,
'T',
448,
'T',
5141,
10543,
10544,
10545,
10546,
1,
10547,
10548,
10548,
10549,
0,
10550,
1,
10551,
'C',
10551,
10552,
10552,
8596,
81,
'C',
10552,
'T',
4484,
'T',
4484,
'T',
5964,
'T',
5964,
'T',
10757,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
'T',
3253,
0,
8596,
60,
10553,
'C',
10553,
81,
'C',
10549,
684,
'C',
10548,
'T',
4235,
'T',
4236,
'T',
4237,
10554,
10555,
10556,
1,
10557,
81,
'C',
10557,
81,
81,
81,
81,
'C',
10554,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
10547,
0,
0,
10558,
10559,
'C',
10559,
'C',
10558,
10560,
'C',
10560,
1627,
81,
81,
'C',
10538,
'T',
448,
'T',
5141,
0,
10379,
10561,
'C',
10561,
8596,
81,
'C',
10530,
8596,
10533,
9232,
10534,
7137,
'C',
10562,
104,
104,
81,
'C',
10563,
8533,
2033,
9742,
10564,
2015,
10565,
10566,
10567,
10568,
10569,
10570,
0,
6289,
81,
'C',
10570,
81,
'C',
10569,
'T',
43,
2052,
'C',
10568,
'T',
43,
2052,
'C',
10567,
'T',
43,
2052,
'C',
10566,
2052,
'C',
10565,
2052,
'C',
10571,
8533,
9753,
3937,
'C',
10572,
454,
795,
2033,
8535,
'C',
10573,
2647,
81,
'C',
10574,
'C',
10575,
8533,
10576,
10577,
454,
795,
2192,
10564,
2052,
2052,
10567,
10568,
10569,
10578,
0,
6289,
81,
'C',
10578,
81,
'C',
10577,
423,
'C',
10576,
2217,
60,
60,
60,
60,
'C',
10579,
8533,
9900,
3937,
'C',
10580,
2033,
8538,
2033,
2217,
10581,
'C',
10581,
'C',
10582,
3936,
60,
60,
81,
'C',
10583,
1447,
7636,
60,
60,
'C',
10584,
1447,
0,
6269,
60,
60,
10585,
'C',
10585,
7638,
81,
81,
'C',
10586,
10584,
'C',
10587,
8576,
7755,
'C',
10588,
'C',
10589,
'T',
13709,
'C',
10590,
60,
'C',
10591,
9866,
8538,
10592,
9784,
9866,
8538,
10593,
2190,
2199,
3913,
10594,
'C',
10594,
2218,
2218,
10595,
'C',
10595,
'C',
10593,
10596,
'C',
10596,
2217,
60,
60,
60,
60,
'C',
10592,
2190,
2199,
3913,
2190,
2199,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
'C',
10597,
8537,
2222,
2217,
9223,
10593,
10592,
9784,
'C',
10598,
9877,
9878,
8538,
10592,
9784,
9877,
9878,
8538,
10593,
2190,
2199,
3913,
10594,
'C',
10599,
'T',
10566,
'T',
10566,
8538,
10592,
9784,
8538,
10593,
2190,
2199,
3913,
10594,
'C',
10600,
9888,
9889,
8538,
10592,
9784,
9888,
9889,
8538,
10593,
2190,
2199,
3913,
10594,
'C',
10601,
104,
81,
'C',
10602,
2574,
2574,
2446,
'C',
10603,
1516,
703,
6338,
6338,
4304,
4304,
'C',
10604,
2020,
8537,
10592,
10319,
60,
'C',
10605,
9904,
10606,
10607,
10608,
'C',
10608,
2190,
2199,
454,
795,
3913,
10610,
2195,
2198,
2198,
2198,
10611,
3913,
10610,
2195,
2198,
2198,
2198,
10611,
3913,
10610,
2195,
2198,
2198,
2198,
10611,
3913,
10610,
2195,
2198,
2198,
2198,
10611,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
5,
8,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
60,
81,
'C',
10611,
2206,
'C',
10610,
'C',
10607,
10592,
10612,
3914,
'C',
10612,
1958,
'C',
10606,
2190,
2199,
3913,
8538,
9784,
10593,
10594,
5,
8,
5,
8,
81,
'C',
10613,
2190,
2199,
3913,
1447,
423,
2193,
423,
454,
795,
2194,
8535,
10611,
60,
60,
'C',
10614,
6798,
10615,
6375,
'C',
10616,
'C',
10617,
'T',
1265,
2033,
'C',
10618,
'T',
992,
'T',
1265,
6088,
2033,
10619,
2190,
2199,
10611,
5,
8,
5,
8,
60,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
10619,
6088,
8748,
'C',
10620,
703,
703,
9361,
9749,
1447,
1447,
10592,
10621,
81,
81,
81,
'C',
10621,
10622,
'C',
10622,
'C',
10623,
2190,
2199,
3913,
423,
2193,
1447,
423,
6795,
454,
795,
2194,
8535,
10611,
60,
1447,
60,
60,
60,
1447,
60,
60,
'C',
10624,
104,
81,
'C',
10625,
10626,
1589,
10627,
'C',
10627,
90,
1354,
1606,
'C',
10628,
10629,
10631,
81,
81,
'C',
10631,
3943,
'C',
10629,
3943,
'S',
5,
'C',
10632,
10630,
10633,
9936,
10634,
60,
'C',
10634,
90,
2149,
'C',
10635,
10636,
4414,
'C',
10637,
'C',
10638,
'T',
212,
'C',
10639,
'T',
43,
1516,
703,
'C',
10640,
10641,
9898,
'C',
10642,
5564,
10643,
6375,
10615,
10615,
'C',
10644,
'C',
10645,
81,
'C',
10646,
81,
'C',
10647,
'T',
8285,
'C',
10648,
'T',
11479,
'C',
10649,
'T',
154,
'C',
10650,
'T',
5499,
10651,
'C',
10651,
10653,
10652,
10654,
611,
10652,
'C',
10655,
'T',
9959,
0,
10656,
'C',
10656,
81,
81,
81,
81,
'C',
10657,
'T',
5277,
81,
'C',
10658,
'T',
3850,
81,
81,
81,
81,
'C',
10659,
'T',
3849,
81,
'C',
10660,
'T',
3851,
'C',
10661,
10468,
'C',
10662,
'C',
10663,
81,
'C',
10664,
0,
10665,
9312,
6372,
9313,
6372,
7254,
10666,
81,
'C',
10666,
10667,
81,
'C',
10667,
'T',
43,
10668,
10669,
6535,
6536,
584,
614,
614,
10670,
6477,
6638,
10672,
3925,
10673,
3925,
10673,
10674,
10674,
1516,
81,
'S',
26,
81,
81,
81,
81,
81,
81,
81,
'C',
10674,
10675,
10676,
1,
81,
561,
'C',
10675,
1106,
6088,
6088,
6084,
10676,
81,
10676,
81,
81,
81,
81,
81,
'C',
10673,
1106,
6088,
6088,
1650,
1651,
1650,
1651,
6088,
6088,
10677,
6107,
6115,
6084,
1514,
0,
1099,
60,
60,
60,
60,
81,
81,
81,
81,
561,
10678,
81,
'C',
10678,
10675,
561,
'C',
10677,
1549,
'C',
10672,
'C',
10670,
1106,
3925,
6088,
3925,
6088,
1650,
1651,
1365,
1366,
561,
6084,
60,
60,
60,
60,
60,
60,
60,
81,
81,
81,
81,
10676,
81,
'C',
10679,
10680,
10680,
10681,
'C',
10680,
6076,
10682,
1106,
2122,
'C',
10682,
'T',
1324,
6079,
'C',
10683,
'T',
43,
10684,
10685,
10686,
10684,
10686,
81,
81,
81,
'C',
10686,
1514,
'C',
10685,
'C',
10684,
'T',
43,
1514,
'C',
10687,
10685,
10671,
1515,
10688,
10685,
10671,
10688,
61,
6373,
'C',
10688,
4500,
4500,
553,
1518,
6077,
6126,
0,
6127,
6121,
6123,
0,
8896,
6085,
6085,
0,
10689,
10690,
10691,
'C',
10691,
10692,
81,
'C',
10692,
10693,
10694,
733,
1514,
6115,
10693,
'C',
10694,
1365,
1366,
561,
60,
'C',
10690,
10695,
81,
'C',
10695,
10675,
'C',
10696,
6057,
1927,
1358,
6061,
6062,
6063,
'C',
10681,
'C',
10697,
2070,
'C',
10689,
150,
1467,
104,
6600,
1841,
'C',
10698,
6088,
7139,
'C',
10699,
'C',
10700,
'T',
910,
1447,
9995,
60,
81,
'C',
10701,
'C',
10702,
1446,
9742,
10703,
2705,
2706,
2707,
81,
113,
105,
105,
105,
105,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
81,
105,
'C',
10703,
'T',
7341,
430,
10704,
10705,
2713,
'C',
10704,
81,
'C',
10706,
9753,
2715,
'C',
10707,
2440,
10708,
10709,
10709,
10709,
7070,
1353,
81,
10710,
1,
81,
81,
81,
10710,
81,
81,
81,
10710,
81,
81,
81,
81,
81,
81,
'C',
10709,
614,
1568,
1212,
584,
'C',
10711,
1595,
10709,
10709,
10709,
7071,
1572,
81,
81,
81,
81,
81,
81,
81,
81,
81,
81,
'C',
10712,
1451,
1212,
1529,
81,
'C',
10713,
'T',
3253,
'T',
2448,
1069,
1831,
'C',
10714,
10715,
10716,
10332,
81,
'C',
10715,
10717,
10718,
10719,
81,
81,
81,
81,
81,
81,
'C',
10719,
10720,
'C',
10720,
2151,
1212,
584,
2152,
'C',
10718,
10720,
'C',
10717,
10720,
'C',
10721,
'T',
1543,
10329,
81,
81,
81,
81,
81,
'C',
10722,
10715,
10334,
81,
81,
81,
'S',
27,
81,
'C',
10716,
81,
'C',
10708,
81,
81,
'C',
10723,
0,
10724,
10725,
'C',
10725,
81,
81,
81,
'C',
10724,
10325,
'C',
10726,
0,
10724,
10727,
'C',
10727,
2154,
81,
81,
'C',
10728,
'T',
1474,
10327,
1069,
1357,
1358,
'C',
10729,
'T',
1472,
10328,
1069,
1357,
1358,
81,
'C',
10730,
0,
6269,
10731,
10731,
10731,
81,
10732,
'C',
10732,
'T',
444,
81,
81,
'C',
10731,
0,
6269,
81,
'C',
10733,
10337,
'C',
10734,
0,
10724,
10735,
'C',
10735,
2727,
2590,
81,
81,
81,
'C',
10736,
3941,
7592,
2605,
7592,
2605,
7592,
2605,
0,
10724,
1447,
1447,
546,
3921,
597,
597,
597,
597,
60,
60,
60,
60,
60,
10737,
81,
81,
81,
'S',
5,
'C',
10737,
2603,
2605,
2603,
2605,
1447,
597,
597,
597,
60,
60,
60,
60,
60,
81,
81,
81,
'S',
5,
'S',
5,
'C',
10738,
5564,
4481,
4481,
0,
8265,
10739,
1224,
61,
5899,
10740,
'C',
10740,
10741,
81,
'C',
10741,
10742,
81,
'C',
10742,
'T',
5848,
'T',
11204,
'T',
11508,
584,
'C',
10743,
10096,
'C',
10744,
7283,
7277,
0,
0,
0,
0,
10745,
10746,
10747,
10748,
'C',
10748,
10749,
'C',
10749,
10750,
'C',
10750,
8634,
5546,
1366,
561,
6566,
6034,
8634,
5546,
1366,
561,
10751,
0,
6127,
10752,
3890,
10753,
81,
81,
81,
'C',
10753,
10752,
7195,
81,
'C',
10752,
'T',
4235,
'T',
4236,
'T',
4237,
4544,
10754,
'C',
10754,
'T',
4235,
'T',
4236,
'T',
4237,
0,
1069,
1443,
1071,
7347,
10755,
81,
'C',
10755,
7060,
81,
81,
'C',
10751,
6092,
'C',
10747,
10756,
81,
'C',
10756,
10757,
10758,
10750,
81,
'C',
10758,
5564,
60,
60,
'C',
10757,
6477,
'C',
10746,
10759,
81,
'C',
10759,
10757,
10758,
10760,
81,
'C',
10760,
6083,
60,
'C',
10745,
10761,
81,
'C',
10761,
81,
'C',
10762,
2033,
10763,
2190,
2199,
10764,
7688,
3914,
60,
'C',
10764,
'T',
9767,
'T',
9767,
10765,
10765,
7700,
7701,
81,
'C',
10765,
1447,
60,
60,
'C',
10763,
423,
60,
60,
60,
60,
'C',
10766,
'T',
41,
'C',
10767,
'T',
7635,
10651,
'C',
10768,
'T',
154,
'C',
10769,
'T',
4235,
10770,
1,
'C',
10771,
'T',
3253,
'C',
10772,
'T',
3253,
'C',
10773,
'T',
3253,
'C',
10774,
'T',
3253,
'C',
10775,
'T',
3253,
'C',
10776,
638,
639,
232,
'C',
10777,
'T',
3253,
'C',
10778,
638,
639,
243,
'C',
10779,
'T',
3253,
'C',
10780,
3352,
'C',
10781,
10782,
'C',
10782,
10783,
'C',
10784,
3319,
'C',
10785,
'T',
2448,
10543,
10547,
10786,
10787,
10554,
10555,
10557,
81,
'C',
10787,
10789,
674,
555,
753,
81,
'C',
10789,
1267,
10554,
555,
81,
'C',
10790,
10554,
10555,
10557,
81,
'C',
10783,
10554,
81,
'C',
10791,
'C',
10792,
'C',
10786,
10793,
10788,
1,
10794,
'C',
10794,
553,
555,
81,
'C',
10795,
'T',
154,
'T',
3253,
'C',
10796,
'C',
10797,
'T',
41,
10793,
10794,
10787,
663,
664,
695,
10787,
667,
668,
667,
668,
669,
'C',
10798,
10793,
10794,
10787,
'C',
10799,
1464,
'C',
10800,
1076,
'C',
10801,
10802,
'C',
10802,
10680,
'C',
10803,
'C',
10804,
10805,
104,
555,
81,
81,
81,
'C',
10806,
81,
'C',
10807,
10808,
10808,
10809,
1,
81,
10809,
81,
'C',
10808,
10810,
10812,
2203,
2205,
10813,
10812,
2204,
2203,
10814,
10813,
546,
10812,
2204,
2203,
2205,
10814,
546,
10812,
2204,
60,
60,
60,
'C',
10814,
'C',
10813,
10815,
60,
'C',
10815,
'C',
10812,
'T',
43,
6088,
1651,
6088,
423,
1447,
2190,
2199,
6088,
4237,
2203,
2205,
10813,
6294,
10319,
2204,
5,
8,
60,
60,
60,
60,
60,
60,
60,
60,
'S',
5,
'C',
10810,
'C',
10816,
'C',
10817,
'C',
10818,
10819,
'C',
10819,
10820,
81,
'C',
10820,
'T',
1543,
7252,
'C',
10805,
104,
555,
'C',
10821,
5564,
10822,
60,
'C',
10822,
5897,
'C',
10823,
'C',
10824,
'C',
10825,
'T',
4237,
81,
'C',
10826,
'T',
4236,
'C',
10827,
'C',
10828,
'E',
],
'entities': [
'C',
28,
29,
0,
'C',
28,
30,
0,
'S',
3,
31,
0,
'C',
32,
33,
0,
'S',
5,
34,
0,
'C',
28,
35,
0,
'C',
28,
36,
0,
'C',
28,
37,
0,
'S',
5,
38,
0,
'C',
28,
39,
0,
'S',
11,
40,
0,
'C',
28,
41,
0,
'S',
11,
42,
0,
'S',
14,
43,
0,
'C',
28,
44,
0,
'S',
14,
45,
0,
'S',
17,
46,
0,
'C',
28,
47,
0,
'S',
17,
45,
0,
'C',
28,
48,
0,
'C',
28,
49,
0,
'C',
28,
50,
0,
'C',
51,
52,
0,
'C',
51,
53,
0,
'F',
21,
54,
5138,
'V',
0,
55,
0,
'V',
0,
56,
0,
'V',
0,
57,
0,
'V',
0,
58,
0,
'V',
0,
59,
0,
'V',
0,
60,
0,
'F',
0,
61,
15213,
'F',
0,
62,
15212,
'F',
0,
63,
15215,
'F',
0,
64,
15214,
'F',
0,
65,
15217,
'F',
0,
66,
15216,
'F',
0,
67,
15219,
'F',
0,
68,
15218,
'F',
0,
69,
15221,
'F',
0,
70,
15220,
'F',
0,
71,
15223,
'F',
0,
72,
15222,
'S',
44,
73,
0,
'C',
28,
74,
0,
'S',
44,
45,
0,
'S',
44,
75,
0,
'S',
44,
76,
0,
'C',
28,
77,
0,
'S',
50,
78,
0,
'C',
28,
79,
0,
'S',
50,
45,
0,
'S',
50,
80,
0,
'S',
54,
81,
0,
'C',
28,
82,
0,
'C',
28,
83,
0,
'C',
28,
84,
0,
'S',
56,
85,
0,
'C',
28,
86,
0,
'C',
28,
87,
0,
'C',
28,
88,
0,
'S',
62,
89,
0,
'C',
28,
90,
0,
'S',
64,
91,
0,
'C',
28,
92,
0,
'S',
1,
93,
0,
'F',
1,
94,
15566,
'F',
1,
95,
15568,
'F',
1,
96,
15570,
'F',
1,
97,
15572,
'F',
1,
0,
15574,
'S',
72,
98,
0,
'C',
28,
99,
0,
'C',
28,
100,
0,
'C',
28,
101,
0,
'C',
28,
102,
0,
'C',
103,
104,
0,
'C',
28,
105,
0,
'S',
77,
106,
0,
'C',
28,
107,
0,
'C',
28,
108,
0,
'C',
28,
109,
0,
'S',
6,
110,
0,
'S',
6,
111,
0,
'V',
7,
112,
0,
'F',
7,
113,
12786,
'F',
7,
114,
12785,
'S',
88,
115,
0,
'C',
28,
116,
0,
'C',
28,
117,
0,
'S',
91,
118,
0,
'C',
28,
119,
0,
'S',
93,
120,
0,
'C',
28,
121,
0,
'S',
95,
122,
0,
'C',
28,
123,
0,
'C',
28,
124,
0,
'C',
28,
125,
0,
'C',
28,
126,
0,
'S',
100,
127,
0,
'C',
28,
128,
0,
'C',
28,
129,
0,
'C',
28,
130,
0,
'S',
59,
131,
0,
'S',
59,
132,
0,
'C',
28,
133,
0,
'S',
107,
134,
0,
'C',
28,
135,
0,
'C',
28,
136,
0,
'S',
110,
137,
0,
'C',
28,
138,
0,
'S',
112,
139,
0,
'C',
28,
140,
0,
'C',
28,
141,
0,
'C',
103,
142,
0,
'C',
28,
143,
0,
'V',
117,
144,
0,
'C',
28,
33,
0,
'S',
117,
145,
0,
'S',
117,
146,
0,
'S',
117,
147,
0,
'S',
117,
148,
0,
'S',
117,
149,
0,
'S',
117,
150,
0,
'S',
117,
151,
0,
'S',
117,
152,
0,
'S',
117,
153,
0,
'C',
154,
155,
0,
'F',
127,
156,
13641,
'C',
154,
157,
0,
'S',
129,
158,
0,
'S',
129,
159,
0,
'S',
133,
160,
0,
'C',
154,
161,
0,
'C',
154,
162,
0,
'C',
154,
163,
0,
'S',
137,
164,
0,
'C',
154,
33,
0,
'S',
137,
165,
0,
'S',
137,
166,
0,
'S',
137,
167,
0,
'S',
137,
168,
0,
'S',
137,
169,
0,
'C',
170,
171,
0,
'C',
51,
172,
0,
'C',
51,
173,
0,
'C',
51,
174,
0,
'C',
51,
175,
0,
'C',
51,
176,
0,
'C',
51,
177,
0,
'C',
51,
178,
0,
'C',
51,
179,
0,
'C',
51,
180,
0,
'C',
51,
181,
0,
'C',
51,
182,
0,
'S',
156,
183,
0,
'C',
51,
33,
0,
'C',
184,
185,
0,
'V',
159,
186,
0,
'C',
184,
187,
0,
'V',
159,
188,
0,
'F',
159,
189,
12413,
'F',
159,
190,
12415,
'F',
159,
191,
12414,
'S',
159,
192,
0,
'F',
159,
193,
12405,
'S',
159,
194,
12405,
'F',
159,
195,
12409,
'S',
159,
196,
12409,
'V',
170,
197,
0,
'C',
184,
198,
0,
'F',
170,
199,
12777,
'F',
170,
200,
12776,
'V',
174,
201,
0,
'C',
184,
202,
0,
'F',
174,
203,
12715,
'F',
174,
204,
12714,
'S',
178,
205,
0,
'C',
184,
206,
0,
'S',
178,
207,
0,
'S',
178,
208,
0,
'V',
182,
209,
0,
'C',
184,
210,
0,
'F',
182,
211,
12569,
'V',
185,
212,
0,
'C',
184,
213,
0,
'V',
185,
214,
0,
'F',
185,
215,
12657,
'F',
185,
216,
12656,
'F',
185,
217,
12659,
'F',
185,
218,
12658,
'C',
184,
219,
0,
'V',
191,
220,
0,
'F',
191,
221,
12447,
'F',
191,
222,
12446,
'V',
196,
223,
0,
'C',
184,
224,
0,
'F',
196,
225,
12628,
'F',
196,
226,
12627,
'F',
196,
227,
12620,
'S',
196,
228,
12620,
'S',
202,
229,
0,
'C',
184,
33,
0,
'S',
202,
230,
0,
'S',
202,
231,
0,
'S',
202,
232,
0,
'S',
202,
233,
0,
'S',
202,
234,
0,
'C',
235,
236,
0,
'C',
237,
238,
0,
'C',
237,
239,
0,
'C',
237,
240,
0,
'C',
237,
241,
0,
'C',
237,
242,
0,
'C',
237,
243,
0,
'C',
237,
244,
0,
'C',
237,
245,
0,
'C',
237,
246,
0,
'C',
237,
247,
0,
'C',
237,
248,
0,
'C',
237,
249,
0,
'C',
237,
250,
0,
'C',
237,
251,
0,
'C',
237,
252,
0,
'C',
237,
253,
0,
'C',
237,
254,
0,
'C',
237,
255,
0,
'C',
237,
256,
0,
'C',
237,
257,
0,
'C',
237,
258,
0,
'C',
237,
259,
0,
'C',
237,
260,
0,
'C',
237,
261,
0,
'C',
237,
262,
0,
'C',
237,
263,
0,
'C',
237,
264,
0,
'C',
237,
265,
0,
'C',
237,
266,
0,
'C',
237,
267,
0,
'C',
237,
268,
0,
'C',
237,
269,
0,
'C',
237,
270,
0,
'C',
237,
271,
0,
'C',
237,
272,
0,
'C',
237,
273,
0,
'C',
237,
274,
0,
'C',
237,
275,
0,
'C',
237,
276,
0,
'C',
237,
277,
0,
'C',
237,
278,
0,
'C',
237,
279,
0,
'C',
237,
280,
0,
'C',
237,
281,
0,
'C',
237,
282,
0,
'C',
237,
283,
0,
'C',
237,
284,
0,
'C',
237,
285,
0,
'C',
237,
286,
0,
'C',
237,
287,
0,
'C',
237,
288,
0,
'C',
237,
289,
0,
'C',
237,
290,
0,
'C',
237,
291,
0,
'C',
237,
292,
0,
'C',
237,
293,
0,
'C',
237,
294,
0,
'C',
237,
295,
0,
'C',
237,
296,
0,
'C',
237,
297,
0,
'C',
237,
298,
0,
'C',
237,
299,
0,
'C',
237,
300,
0,
'C',
237,
301,
0,
'C',
237,
302,
0,
'C',
237,
303,
0,
'C',
237,
304,
0,
'C',
237,
305,
0,
'C',
237,
306,
0,
'C',
237,
307,
0,
'C',
237,
308,
0,
'C',
237,
309,
0,
'C',
237,
310,
0,
'S',
283,
311,
0,
'C',
237,
312,
0,
'S',
283,
313,
0,
'C',
237,
314,
0,
'C',
237,
315,
0,
'C',
237,
316,
0,
'C',
237,
317,
0,
'C',
237,
318,
0,
'C',
237,
319,
0,
'C',
237,
320,
0,
'C',
237,
321,
0,
'C',
237,
322,
0,
'S',
293,
323,
0,
'C',
324,
325,
0,
'C',
324,
326,
0,
'C',
324,
327,
0,
'C',
324,
328,
0,
'C',
324,
329,
0,
'C',
324,
330,
0,
'C',
324,
331,
0,
'C',
324,
332,
0,
'C',
324,
333,
0,
'C',
324,
334,
0,
'V',
303,
335,
0,
'S',
303,
336,
0,
'S',
303,
337,
0,
'S',
303,
338,
0,
'C',
324,
339,
0,
'C',
324,
340,
0,
'C',
324,
341,
0,
'C',
324,
342,
0,
'C',
324,
343,
0,
'C',
324,
344,
0,
'C',
324,
345,
0,
'C',
324,
346,
0,
'C',
324,
347,
0,
'C',
324,
348,
0,
'C',
324,
349,
0,
'C',
350,
329,
0,
'C',
350,
342,
0,
'C',
350,
345,
0,
'S',
324,
351,
0,
'C',
350,
352,
0,
'S',
324,
353,
0,
'C',
350,
332,
0,
'C',
350,
339,
0,
'C',
103,
354,
0,
'S',
328,
355,
0,
'V',
331,
356,
0,
'C',
103,
33,
0,
'S',
331,
357,
0,
'S',
331,
358,
0,
'S',
331,
359,
0,
'S',
331,
360,
0,
'S',
331,
361,
0,
'S',
331,
362,
0,
'S',
331,
363,
0,
'S',
331,
364,
0,
'S',
331,
365,
0,
'V',
342,
366,
0,
'C',
367,
368,
0,
'F',
342,
369,
13707,
'V',
345,
370,
0,
'C',
371,
33,
0,
'S',
345,
372,
0,
'C',
373,
374,
0,
'V',
347,
375,
0,
'S',
347,
376,
0,
'V',
347,
377,
0,
'S',
347,
378,
0,
'V',
347,
379,
0,
'S',
347,
380,
0,
'V',
347,
381,
0,
'S',
347,
382,
0,
'V',
347,
383,
0,
'S',
347,
384,
0,
'S',
347,
385,
0,
'S',
347,
386,
0,
'C',
373,
387,
0,
'V',
360,
388,
0,
'V',
360,
389,
0,
'F',
360,
390,
13945,
'F',
360,
391,
13947,
'C',
373,
392,
0,
'S',
365,
393,
0,
'C',
373,
394,
0,
'S',
367,
395,
0,
'S',
367,
396,
0,
'C',
373,
397,
0,
'S',
370,
398,
0,
'S',
370,
399,
0,
'S',
374,
400,
0,
'C',
373,
401,
0,
'S',
374,
402,
0,
'C',
373,
403,
0,
'C',
404,
405,
0,
'V',
376,
406,
0,
'S',
376,
407,
0,
'V',
376,
408,
0,
'S',
376,
409,
0,
'V',
376,
410,
0,
'S',
376,
411,
0,
'S',
376,
412,
0,
'F',
376,
413,
14062,
'C',
373,
414,
0,
'S',
386,
415,
0,
'V',
389,
416,
0,
'C',
373,
417,
0,
'V',
389,
195,
0,
'V',
389,
418,
0,
'F',
389,
419,
14108,
'F',
389,
420,
14111,
'F',
389,
421,
14110,
'F',
389,
422,
14113,
'F',
389,
423,
14112,
'C',
373,
424,
0,
'S',
397,
425,
0,
'C',
373,
426,
0,
'S',
399,
427,
0,
'C',
373,
428,
0,
'S',
401,
429,
0,
'S',
401,
430,
0,
'C',
373,
431,
0,
'V',
404,
432,
0,
'S',
404,
433,
0,
'C',
373,
434,
0,
'C',
373,
435,
0,
'C',
373,
436,
0,
'S',
408,
437,
0,
'S',
412,
438,
0,
'C',
373,
439,
0,
'C',
373,
440,
0,
'S',
409,
441,
0,
'S',
416,
442,
0,
'C',
373,
33,
0,
'S',
416,
443,
0,
'S',
416,
444,
0,
'S',
416,
445,
0,
'S',
416,
446,
0,
'S',
416,
447,
0,
'S',
423,
448,
0,
'C',
449,
450,
0,
'C',
449,
451,
0,
'C',
449,
452,
0,
'C',
404,
453,
0,
'S',
425,
454,
0,
'C',
449,
455,
0,
'S',
428,
456,
0,
'C',
449,
457,
0,
'S',
430,
458,
0,
'C',
449,
459,
0,
'S',
432,
460,
0,
'S',
435,
461,
0,
'C',
449,
462,
0,
'C',
449,
463,
0,
'S',
436,
464,
0,
'C',
449,
465,
0,
'S',
438,
466,
0,
'S',
441,
467,
0,
'C',
449,
468,
0,
'C',
449,
469,
0,
'S',
442,
470,
0,
'S',
445,
471,
0,
'C',
449,
472,
0,
'C',
449,
473,
0,
'S',
446,
474,
0,
'C',
449,
475,
0,
'S',
448,
476,
0,
'S',
451,
477,
0,
'C',
449,
478,
0,
'S',
453,
479,
0,
'C',
449,
480,
0,
'C',
449,
481,
0,
'S',
454,
482,
0,
'S',
457,
483,
0,
'C',
449,
484,
0,
'S',
459,
485,
0,
'C',
449,
486,
0,
'S',
461,
487,
0,
'C',
449,
33,
0,
'S',
461,
488,
0,
'S',
461,
489,
0,
'S',
461,
490,
0,
'S',
461,
491,
0,
'S',
461,
492,
0,
'S',
461,
493,
0,
'S',
461,
494,
0,
'S',
461,
495,
0,
'S',
461,
496,
0,
'S',
461,
497,
0,
'S',
461,
498,
0,
'S',
461,
499,
0,
'S',
461,
500,
0,
'S',
461,
501,
0,
'S',
461,
502,
0,
'S',
461,
503,
0,
'S',
461,
504,
0,
'S',
461,
505,
0,
'S',
461,
506,
0,
'S',
461,
507,
0,
'S',
461,
508,
0,
'S',
461,
509,
0,
'S',
461,
510,
0,
'S',
461,
511,
0,
'S',
461,
512,
0,
'S',
461,
513,
0,
'S',
461,
514,
0,
'S',
461,
515,
0,
'S',
461,
516,
0,
'S',
461,
517,
0,
'S',
461,
518,
0,
'S',
461,
519,
0,
'S',
461,
520,
0,
'V',
496,
521,
0,
'C',
522,
33,
0,
'S',
496,
523,
0,
'V',
496,
524,
0,
'S',
496,
525,
0,
'V',
496,
526,
0,
'S',
496,
527,
0,
'V',
496,
528,
0,
'S',
496,
529,
0,
'V',
496,
530,
0,
'S',
496,
531,
0,
'V',
496,
532,
0,
'V',
496,
533,
0,
'S',
496,
534,
0,
'V',
496,
535,
0,
'S',
496,
536,
0,
'V',
496,
537,
0,
'V',
496,
538,
0,
'S',
496,
539,
0,
'V',
496,
540,
0,
'S',
496,
541,
0,
'S',
461,
542,
0,
'S',
461,
543,
0,
'S',
461,
544,
0,
'S',
461,
545,
0,
'S',
521,
546,
0,
'C',
449,
547,
0,
'S',
461,
548,
0,
'F',
0,
549,
0,
'S',
202,
550,
0,
'S',
461,
551,
0,
'S',
461,
552,
0,
'S',
461,
553,
0,
'F',
0,
554,
0,
'F',
0,
555,
0,
'V',
531,
556,
0,
'C',
184,
557,
0,
'S',
531,
558,
0,
'S',
6,
559,
0,
'C',
184,
560,
0,
'S',
202,
561,
0,
'S',
202,
562,
0,
'F',
538,
563,
12844,
'C',
184,
564,
0,
'C',
184,
565,
0,
'C',
184,
566,
0,
'V',
461,
567,
0,
'S',
461,
568,
0,
'S',
461,
569,
0,
'C',
449,
570,
0,
'S',
544,
571,
0,
'C',
449,
572,
0,
'C',
449,
573,
0,
'C',
449,
574,
0,
'C',
449,
575,
0,
'C',
449,
576,
0,
'S',
544,
577,
14875,
'F',
544,
578,
14875,
'S',
21,
579,
0,
'C',
449,
580,
0,
'F',
21,
581,
15241,
'S',
461,
582,
0,
'S',
21,
583,
0,
'V',
21,
584,
0,
'S',
21,
585,
0,
'S',
21,
586,
0,
'C',
28,
587,
0,
'F',
77,
588,
3849,
'S',
461,
589,
0,
'C',
449,
590,
0,
'S',
461,
591,
0,
'S',
461,
592,
0,
'C',
449,
593,
0,
'C',
449,
594,
0,
'C',
449,
595,
0,
'C',
449,
596,
0,
'C',
449,
597,
0,
'V',
461,
598,
0,
'S',
461,
599,
0,
'F',
575,
600,
14173,
'C',
449,
601,
0,
'F',
575,
602,
14161,
'S',
461,
603,
0,
'F',
544,
604,
14927,
'S',
461,
605,
0,
'S',
461,
606,
0,
'S',
521,
607,
0,
'F',
147,
588,
3849,
'F',
575,
608,
14157,
'F',
147,
609,
3850,
'C',
449,
610,
0,
'F',
587,
602,
14143,
'C',
449,
611,
0,
'F',
587,
612,
14147,
'F',
590,
613,
13158,
'C',
51,
614,
0,
'F',
590,
615,
13168,
'F',
590,
616,
13170,
'F',
75,
617,
7650,
'F',
590,
618,
13152,
'S',
596,
619,
0,
'C',
103,
620,
0,
'C',
28,
621,
0,
'F',
145,
622,
13012,
'F',
147,
623,
13036,
'F',
147,
624,
13034,
'F',
147,
625,
13026,
'F',
147,
626,
13030,
'S',
604,
627,
0,
'C',
237,
628,
0,
'S',
587,
629,
0,
'F',
587,
630,
14142,
'S',
575,
631,
14160,
'F',
575,
632,
14160,
'C',
103,
633,
0,
'C',
103,
634,
0,
'C',
28,
635,
0,
'S',
590,
636,
0,
'S',
590,
637,
0,
'F',
147,
638,
13040,
'F',
575,
639,
14171,
'S',
617,
640,
0,
'C',
28,
641,
0,
'F',
575,
642,
14167,
'S',
620,
643,
0,
'C',
28,
644,
0,
'C',
28,
645,
0,
'F',
587,
646,
14149,
'F',
59,
647,
15410,
'S',
617,
648,
0,
'S',
617,
649,
0,
'S',
617,
650,
0,
'F',
59,
651,
15429,
'F',
59,
652,
15427,
'S',
617,
653,
0,
'V',
331,
654,
0,
'S',
331,
655,
0,
'V',
617,
656,
0,
'S',
617,
657,
0,
'S',
617,
658,
0,
'S',
617,
659,
0,
'F',
97,
660,
15272,
'F',
281,
609,
3251,
'C',
28,
661,
0,
'S',
638,
662,
0,
'F',
97,
663,
15267,
'F',
97,
664,
2614,
'F',
97,
665,
15284,
'S',
644,
666,
0,
'C',
237,
667,
0,
'S',
331,
668,
0,
'F',
217,
669,
3249,
'F',
293,
670,
13728,
'F',
649,
671,
13382,
'C',
672,
673,
0,
'C',
672,
674,
0,
'C',
672,
463,
0,
'F',
653,
675,
13368,
'C',
672,
676,
0,
'C',
672,
677,
0,
'C',
184,
678,
0,
'C',
672,
679,
0,
'F',
656,
680,
13462,
'S',
5,
681,
0,
'S',
656,
682,
0,
'F',
656,
683,
13458,
'F',
656,
684,
13460,
'F',
656,
685,
13464,
'C',
28,
686,
0,
'S',
663,
687,
0,
'F',
663,
688,
15612,
'S',
59,
689,
0,
'F',
663,
690,
15603,
'F',
663,
691,
15605,
'F',
663,
692,
41,
'S',
59,
693,
0,
'S',
59,
694,
0,
'S',
21,
695,
0,
'F',
663,
696,
15607,
'F',
21,
697,
12367,
'F',
21,
698,
15243,
'S',
663,
699,
0,
'S',
59,
700,
0,
'S',
59,
701,
0,
'S',
59,
702,
0,
'S',
58,
703,
0,
'S',
59,
704,
0,
'F',
683,
705,
7635,
'C',
103,
706,
0,
'S',
62,
707,
0,
'F',
97,
708,
15270,
'S',
331,
709,
0,
'S',
59,
710,
0,
'F',
97,
711,
15276,
'S',
5,
712,
0,
'C',
103,
713,
0,
'S',
683,
714,
0,
'F',
663,
715,
15601,
'S',
694,
716,
0,
'C',
237,
717,
0,
'F',
663,
718,
15610,
'S',
697,
719,
0,
'C',
237,
720,
0,
'F',
256,
609,
3251,
'F',
217,
721,
3248,
'F',
293,
721,
13723,
'S',
702,
722,
0,
'C',
237,
33,
0,
'F',
19,
5,
43,
'F',
705,
671,
13382,
'C',
672,
723,
0,
'S',
461,
724,
0,
'S',
461,
725,
0,
'S',
461,
726,
0,
'F',
710,
675,
13368,
'C',
672,
727,
0,
'S',
712,
728,
0,
'C',
672,
33,
0,
'C',
672,
729,
0,
'C',
672,
730,
0,
'C',
672,
731,
0,
'C',
672,
732,
0,
'F',
716,
640,
13317,
'F',
716,
733,
13287,
'F',
716,
734,
13343,
'F',
716,
735,
13347,
'F',
713,
736,
13236,
'F',
716,
737,
13339,
'F',
724,
738,
13275,
'C',
672,
739,
0,
'F',
724,
740,
13277,
'F',
724,
741,
13273,
'S',
728,
640,
0,
'C',
28,
742,
0,
'S',
728,
650,
0,
'S',
728,
743,
0,
'S',
728,
744,
0,
'F',
59,
745,
15416,
'S',
60,
746,
0,
'F',
59,
747,
15412,
'F',
59,
748,
15380,
'C',
28,
749,
0,
'S',
98,
750,
0,
'S',
739,
640,
0,
'C',
28,
751,
0,
'S',
739,
752,
0,
'F',
59,
753,
15431,
'S',
617,
752,
0,
'S',
728,
752,
0,
'S',
617,
754,
0,
'F',
59,
755,
15423,
'F',
59,
588,
15407,
'F',
724,
756,
13271,
'F',
715,
757,
13293,
'F',
257,
617,
7650,
'F',
213,
758,
13711,
'F',
683,
759,
5141,
'S',
596,
760,
0,
'C',
28,
761,
0,
'F',
716,
762,
13307,
'F',
716,
763,
13327,
'F',
716,
764,
13323,
'F',
716,
765,
13321,
'F',
716,
766,
13319,
'F',
713,
767,
13258,
'F',
716,
768,
13345,
'F',
716,
769,
13337,
'F',
715,
770,
13291,
'F',
715,
740,
13305,
'S',
712,
771,
0,
'S',
724,
772,
0,
'F',
716,
773,
13325,
'F',
713,
774,
13238,
'F',
713,
775,
13240,
'F',
715,
776,
13295,
'F',
715,
777,
13299,
'F',
716,
778,
13333,
'F',
715,
741,
13303,
'F',
713,
779,
13234,
'F',
716,
780,
13329,
'F',
59,
781,
15421,
'F',
715,
782,
13301,
'F',
716,
783,
13335,
'F',
716,
784,
13331,
'F',
715,
785,
13297,
'F',
716,
786,
13311,
'F',
716,
787,
13309,
'F',
716,
788,
13313,
'F',
81,
789,
8390,
'F',
716,
790,
13341,
'C',
449,
791,
0,
'S',
461,
792,
0,
'S',
461,
793,
0,
'F',
544,
794,
14884,
'F',
21,
795,
205,
'F',
21,
796,
4484,
'F',
60,
797,
15161,
'F',
459,
798,
14479,
'F',
459,
799,
14481,
'F',
457,
798,
14181,
'F',
454,
798,
14428,
'F',
453,
798,
14559,
'F',
448,
798,
14651,
'F',
445,
798,
14487,
'F',
21,
800,
12371,
'S',
435,
801,
0,
'F',
435,
798,
14819,
'F',
785,
692,
41,
'V',
785,
802,
0,
'V',
785,
803,
0,
'F',
785,
804,
14866,
'F',
785,
805,
14864,
'F',
785,
806,
14865,
'S',
809,
807,
0,
'C',
373,
808,
0,
'C',
373,
809,
0,
'S',
812,
810,
0,
'C',
373,
811,
0,
'S',
812,
812,
0,
'V',
416,
813,
0,
'S',
416,
814,
0,
'S',
697,
815,
0,
'S',
416,
816,
0,
'S',
416,
817,
0,
'S',
365,
818,
0,
'S',
821,
819,
0,
'C',
373,
820,
0,
'S',
823,
821,
0,
'C',
28,
822,
0,
'S',
823,
823,
0,
'S',
823,
824,
0,
'S',
823,
825,
0,
'S',
823,
826,
0,
'S',
823,
827,
0,
'S',
823,
828,
0,
'S',
823,
829,
0,
'S',
823,
830,
0,
'S',
823,
831,
0,
'S',
823,
832,
0,
'F',
81,
5,
43,
'F',
21,
833,
7606,
'F',
21,
834,
15245,
'S',
81,
835,
0,
'F',
59,
5,
43,
'S',
823,
836,
0,
'F',
21,
837,
5964,
'S',
823,
838,
0,
'F',
59,
839,
15411,
'S',
823,
840,
0,
'S',
823,
841,
0,
'S',
823,
842,
0,
'F',
651,
843,
13380,
'S',
823,
844,
0,
'S',
823,
845,
0,
'S',
823,
846,
0,
'S',
823,
847,
0,
'S',
98,
848,
0,
'S',
823,
849,
0,
'S',
823,
850,
0,
'S',
855,
851,
0,
'C',
28,
852,
0,
'S',
823,
853,
0,
'S',
855,
854,
0,
'S',
855,
855,
0,
'S',
855,
856,
0,
'S',
823,
857,
0,
'F',
59,
858,
15442,
'F',
59,
859,
15444,
'S',
823,
860,
0,
'S',
823,
861,
0,
'F',
609,
862,
4235,
'S',
867,
863,
0,
'C',
28,
864,
0,
'V',
867,
865,
0,
'S',
867,
866,
0,
'V',
867,
867,
0,
'S',
867,
868,
0,
'C',
28,
869,
0,
'C',
51,
870,
0,
'F',
875,
837,
5964,
'C',
51,
871,
0,
'F',
875,
872,
13088,
'S',
55,
873,
0,
'C',
28,
874,
0,
'F',
873,
875,
13111,
'F',
875,
876,
13084,
'F',
875,
877,
13090,
'F',
875,
878,
13092,
'S',
884,
879,
0,
'C',
51,
880,
0,
'C',
51,
881,
0,
'C',
51,
882,
0,
'C',
51,
883,
0,
'S',
885,
884,
0,
'C',
103,
885,
0,
'F',
59,
886,
15378,
'F',
892,
862,
4235,
'C',
28,
887,
0,
'F',
894,
888,
4236,
'C',
28,
889,
0,
'S',
59,
890,
0,
'S',
59,
891,
0,
'S',
59,
892,
0,
'F',
81,
893,
15460,
'V',
823,
894,
0,
'S',
823,
895,
0,
'S',
823,
896,
0,
'S',
413,
818,
0,
'V',
413,
897,
0,
'S',
413,
898,
0,
'S',
413,
899,
0,
'V',
907,
900,
0,
'C',
103,
901,
0,
'V',
907,
902,
0,
'S',
910,
903,
0,
'C',
373,
904,
0,
'S',
910,
905,
0,
'S',
910,
906,
0,
'S',
910,
907,
0,
'V',
907,
908,
0,
'V',
907,
909,
0,
'S',
404,
910,
0,
'S',
855,
640,
0,
'S',
855,
911,
0,
'S',
823,
912,
0,
'S',
117,
913,
0,
'S',
922,
650,
0,
'C',
28,
914,
0,
'F',
922,
915,
15673,
'S',
117,
916,
0,
'C',
28,
917,
0,
'S',
823,
918,
0,
'S',
823,
919,
0,
'S',
823,
920,
0,
'S',
823,
921,
0,
'S',
823,
922,
0,
'S',
823,
923,
0,
'V',
117,
924,
0,
'S',
117,
925,
0,
'S',
117,
926,
0,
'F',
922,
927,
15674,
'C',
28,
928,
0,
'S',
936,
929,
0,
'F',
97,
930,
15294,
'F',
940,
931,
13364,
'C',
672,
932,
0,
'C',
672,
933,
0,
'V',
943,
934,
0,
'C',
672,
935,
0,
'S',
943,
936,
0,
'S',
940,
937,
0,
'S',
947,
938,
0,
'C',
237,
939,
0,
'S',
947,
940,
0,
'F',
255,
617,
7650,
'F',
254,
609,
3251,
'C',
373,
941,
0,
'C',
373,
942,
0,
'S',
951,
943,
0,
'S',
951,
944,
0,
'S',
952,
945,
0,
'S',
952,
946,
0,
'F',
213,
795,
205,
'F',
213,
647,
5118,
'S',
960,
947,
0,
'C',
373,
948,
0,
'S',
952,
949,
0,
'F',
963,
675,
13368,
'C',
672,
950,
0,
'C',
672,
951,
0,
'F',
964,
952,
13444,
'F',
964,
953,
13440,
'F',
257,
954,
13142,
'F',
964,
955,
13442,
'V',
416,
956,
0,
'S',
416,
957,
0,
'C',
373,
958,
0,
'S',
973,
959,
0,
'C',
235,
33,
0,
'S',
374,
960,
0,
'S',
374,
961,
0,
'S',
416,
962,
0,
'S',
416,
963,
0,
'S',
979,
964,
0,
'C',
373,
965,
0,
'S',
979,
195,
0,
'S',
979,
966,
0,
'S',
979,
967,
0,
'S',
374,
968,
0,
'C',
235,
969,
0,
'F',
196,
970,
12612,
'S',
984,
971,
0,
'F',
196,
972,
12616,
'F',
196,
973,
12614,
'F',
196,
974,
12583,
'S',
196,
975,
0,
'F',
196,
976,
12608,
'F',
196,
977,
12602,
'F',
196,
978,
12589,
'S',
196,
979,
0,
'F',
196,
980,
12587,
'F',
196,
981,
12604,
'S',
196,
982,
0,
'S',
196,
983,
0,
'S',
196,
984,
0,
'S',
196,
985,
0,
'S',
196,
986,
0,
'F',
182,
987,
12554,
'F',
182,
988,
12550,
'F',
182,
989,
12556,
'C',
184,
990,
0,
'S',
1005,
991,
0,
'S',
1005,
992,
0,
'C',
28,
993,
0,
'F',
182,
994,
12551,
'F',
182,
995,
12559,
'S',
196,
996,
0,
'S',
202,
997,
0,
'S',
196,
998,
0,
'S',
196,
999,
0,
'S',
196,
1000,
0,
'F',
196,
1001,
12610,
'F',
196,
1002,
12593,
'F',
196,
1003,
12591,
'F',
196,
1004,
12585,
'F',
196,
1005,
12606,
'S',
202,
1006,
0,
'F',
540,
1007,
12892,
'F',
539,
1008,
12875,
'F',
539,
1009,
12890,
'V',
539,
1010,
0,
'S',
202,
1011,
0,
'V',
202,
1012,
0,
'V',
202,
1013,
0,
'V',
202,
1014,
0,
'S',
202,
1015,
0,
'C',
184,
1016,
0,
'S',
1033,
1017,
0,
'C',
184,
1018,
0,
'S',
202,
1019,
0,
'S',
202,
1020,
0,
'V',
202,
1021,
0,
'S',
202,
1022,
0,
'V',
1039,
1023,
0,
'C',
184,
1024,
0,
'F',
196,
1025,
12595,
'F',
196,
1026,
12577,
'F',
196,
1027,
12600,
'S',
196,
1028,
0,
'S',
196,
1029,
0,
'F',
705,
843,
13380,
'F',
1047,
675,
13368,
'C',
672,
1030,
0,
'S',
1049,
1031,
0,
'C',
672,
1032,
0,
'S',
1049,
1033,
0,
'C',
672,
1034,
0,
'F',
1051,
1035,
13414,
'S',
712,
1036,
0,
'S',
712,
1037,
0,
'F',
1051,
1038,
13416,
'F',
1051,
1039,
13410,
'C',
672,
1040,
0,
'F',
1049,
1041,
13399,
'C',
672,
1042,
0,
'F',
1049,
1043,
13406,
'F',
1049,
1044,
13400,
'F',
1051,
1045,
13408,
'F',
1049,
1046,
13402,
'V',
979,
1047,
0,
'S',
979,
1048,
0,
'F',
147,
967,
13028,
'S',
416,
1049,
0,
'F',
147,
647,
11479,
'F',
147,
1050,
5495,
'F',
611,
1051,
448,
'F',
611,
759,
5141,
'S',
979,
1052,
0,
'S',
62,
1053,
0,
'S',
1075,
1054,
0,
'C',
103,
1055,
0,
'C',
103,
1056,
0,
'C',
51,
1057,
0,
'S',
1079,
1058,
0,
'C',
371,
1059,
0,
'V',
1079,
1060,
0,
'S',
1079,
1061,
0,
'S',
973,
1062,
0,
'S',
973,
1063,
0,
'C',
373,
1064,
0,
'S',
821,
1065,
0,
'S',
821,
944,
0,
'S',
413,
393,
0,
'S',
416,
1066,
0,
'V',
1090,
1067,
0,
'C',
373,
1068,
0,
'S',
1090,
1069,
0,
'S',
98,
1070,
0,
'F',
55,
1071,
15382,
'F',
1090,
1072,
14092,
'F',
55,
1073,
15386,
'S',
331,
1074,
0,
'S',
331,
1075,
0,
'S',
202,
1076,
0,
'S',
1100,
1077,
0,
'C',
184,
1078,
0,
'F',
196,
1079,
5781,
'S',
196,
1080,
0,
'S',
196,
1081,
0,
'S',
196,
1082,
0,
'S',
196,
1083,
0,
'F',
1107,
1084,
12782,
'C',
154,
1085,
0,
'V',
1107,
1086,
0,
'S',
1107,
1087,
0,
'F',
1111,
872,
13657,
'C',
154,
1088,
0,
'S',
1107,
1089,
0,
'V',
1107,
1090,
0,
'S',
1107,
1091,
0,
'V',
1107,
1092,
0,
'V',
1107,
1093,
0,
'V',
1107,
1094,
0,
'S',
1107,
1095,
0,
'S',
1107,
1096,
0,
'S',
1107,
1097,
0,
'S',
1107,
1098,
0,
'S',
1107,
1099,
0,
'F',
0,
1100,
0,
'V',
1107,
1101,
0,
'S',
1126,
1102,
0,
'C',
154,
1103,
0,
'F',
129,
1104,
13633,
'S',
1107,
1105,
0,
'S',
1107,
159,
0,
'S',
1107,
1106,
0,
'S',
1107,
1107,
0,
'S',
1107,
1108,
0,
'V',
1107,
1109,
0,
'S',
1107,
1110,
0,
'V',
137,
1111,
0,
'F',
1107,
1112,
13678,
'V',
1107,
1113,
0,
'S',
1107,
1114,
0,
'S',
1107,
1115,
0,
'F',
1111,
54,
13653,
'F',
1111,
1116,
13659,
'F',
1111,
1117,
13661,
'V',
1107,
1118,
0,
'S',
1107,
1119,
0,
'F',
97,
1120,
15151,
'F',
97,
5,
43,
'F',
97,
1121,
2107,
'F',
129,
1122,
13636,
'V',
129,
1123,
0,
'S',
129,
1124,
0,
'S',
129,
1125,
0,
'F',
129,
1126,
13634,
'S',
129,
1127,
0,
'F',
885,
609,
3850,
'F',
885,
1128,
12918,
'C',
51,
1129,
0,
'F',
885,
1130,
12920,
'F',
129,
733,
13631,
'F',
129,
1131,
13638,
'F',
1111,
1132,
13663,
'S',
1111,
1133,
0,
'C',
184,
1134,
0,
'S',
202,
1135,
0,
'F',
196,
1136,
12597,
'S',
196,
1137,
0,
'S',
178,
1138,
0,
'S',
178,
1139,
0,
'S',
178,
1140,
0,
'S',
178,
1141,
0,
'S',
178,
1142,
0,
'F',
196,
1143,
12618,
'S',
196,
1144,
0,
'S',
178,
1145,
0,
'V',
907,
1146,
0,
'S',
1107,
1147,
0,
'S',
1107,
1148,
0,
'S',
1107,
1149,
0,
'S',
1107,
1150,
0,
'S',
1107,
1151,
0,
'S',
1107,
1152,
0,
'S',
137,
1153,
0,
'S',
137,
1154,
0,
'S',
137,
1155,
0,
'S',
137,
1156,
0,
'F',
127,
1157,
13647,
'F',
73,
1158,
15336,
'C',
28,
1159,
0,
'S',
202,
1160,
0,
'S',
202,
1161,
0,
'S',
117,
1162,
0,
'V',
73,
1163,
0,
'S',
73,
1164,
0,
'F',
73,
1165,
15340,
'C',
184,
1166,
0,
'C',
184,
1167,
0,
'S',
73,
1168,
0,
'S',
202,
1169,
0,
'S',
178,
1170,
0,
'F',
159,
1171,
12407,
'S',
117,
1172,
0,
'F',
73,
1173,
15338,
'S',
1100,
1174,
0,
'S',
178,
1175,
0,
'S',
202,
1176,
0,
'F',
196,
1177,
12580,
'S',
91,
1178,
0,
'S',
144,
1179,
0,
'S',
1209,
1180,
0,
'C',
51,
1181,
0,
'F',
105,
1182,
15078,
'S',
202,
1183,
0,
'F',
147,
872,
5277,
'C',
184,
1184,
0,
'S',
117,
1185,
0,
'S',
117,
1186,
0,
'S',
44,
1187,
0,
'S',
44,
1188,
0,
'C',
103,
1189,
0,
'S',
11,
1190,
0,
'S',
14,
1191,
0,
'S',
11,
1192,
0,
'S',
3,
1193,
0,
'C',
32,
1194,
0,
'C',
1195,
1196,
0,
'C',
1195,
1197,
0,
'C',
1198,
1199,
0,
'C',
1198,
1200,
0,
'S',
1229,
1201,
0,
'C',
1202,
33,
0,
'S',
1231,
1203,
0,
'C',
1202,
1204,
0,
'F',
1233,
1205,
4166,
'C',
1202,
1206,
0,
'F',
1235,
1207,
4271,
'C',
1202,
1208,
0,
'S',
1237,
1209,
0,
'C',
235,
1210,
0,
'F',
1239,
1211,
7641,
'C',
1212,
1213,
0,
'C',
1214,
1215,
0,
'S',
1235,
1216,
0,
'S',
1235,
1217,
0,
'S',
1235,
1218,
0,
'S',
1235,
1219,
0,
'F',
1235,
1220,
4254,
'S',
1237,
1221,
0,
'V',
1237,
1222,
0,
'S',
1237,
1223,
0,
'F',
1250,
1224,
13502,
'C',
235,
1225,
0,
'S',
973,
1226,
0,
'S',
973,
1227,
0,
'S',
973,
1228,
0,
'F',
1235,
1229,
4267,
'S',
1235,
1230,
0,
'F',
1194,
193,
12405,
'F',
1233,
1231,
4131,
'F',
1235,
1232,
4259,
'F',
1239,
1233,
4132,
'F',
544,
1229,
14907,
'F',
544,
1234,
14896,
'F',
544,
1235,
14898,
'S',
1235,
1236,
4262,
'S',
1235,
1237,
4264,
'F',
1235,
1238,
4264,
'F',
1235,
1239,
4281,
'F',
21,
967,
15247,
'F',
1235,
1240,
4283,
'C',
1241,
1242,
0,
'C',
1241,
1243,
0,
'C',
1198,
1244,
0,
'C',
1198,
1245,
0,
'S',
1270,
1246,
0,
'C',
1241,
1247,
0,
'S',
1276,
1248,
0,
'C',
1241,
1249,
0,
'C',
1198,
1250,
0,
'V',
1276,
1251,
0,
'S',
1276,
1252,
0,
'S',
1276,
1253,
0,
'V',
1276,
1254,
0,
'S',
1276,
1255,
0,
'S',
1276,
1256,
0,
'S',
1276,
1257,
0,
'V',
1276,
1258,
0,
'S',
1276,
1259,
0,
'V',
1288,
1260,
0,
'C',
1261,
33,
0,
'S',
1288,
1262,
0,
'F',
1274,
1263,
7619,
'F',
59,
1264,
15435,
'F',
1274,
1265,
7612,
'C',
1198,
1266,
0,
'F',
1274,
1267,
7607,
'F',
59,
1268,
15433,
'S',
1272,
1269,
0,
'C',
1198,
1270,
0,
'F',
59,
1271,
15419,
'C',
1241,
1272,
0,
'C',
1198,
1273,
0,
'S',
1288,
1274,
0,
'S',
1288,
1275,
0,
'V',
1288,
1276,
0,
'S',
1288,
1277,
0,
'V',
1288,
1278,
0,
'S',
1288,
1279,
0,
'F',
590,
800,
13162,
'S',
1288,
1280,
0,
'S',
1288,
1281,
0,
'S',
1288,
1282,
0,
'C',
28,
1283,
0,
'C',
51,
1284,
0,
'S',
1288,
1285,
0,
'S',
1288,
1286,
0,
'V',
1288,
1287,
0,
'S',
1288,
1288,
0,
'F',
55,
748,
15380,
'F',
1319,
1289,
3243,
'C',
28,
1290,
0,
'F',
81,
1291,
15437,
'C',
1261,
1292,
0,
'F',
55,
1293,
15385,
'F',
1319,
1294,
15364,
'F',
1319,
1295,
15366,
'F',
55,
1296,
15388,
'V',
1288,
1297,
0,
'S',
1288,
1298,
0,
'V',
1288,
1299,
0,
'S',
1288,
1300,
0,
'V',
331,
1301,
0,
'V',
1288,
1302,
0,
'F',
1333,
1303,
15585,
'C',
28,
1304,
0,
'F',
1333,
1305,
15580,
'F',
1333,
1306,
15582,
'S',
331,
1307,
0,
'F',
611,
795,
205,
'F',
1333,
195,
15578,
'S',
1288,
1308,
0,
'S',
1333,
1309,
0,
'F',
1333,
1310,
15586,
'V',
1333,
1311,
0,
'S',
1333,
1312,
0,
'F',
1333,
1313,
15584,
'S',
1333,
1314,
0,
'S',
1333,
1315,
0,
'F',
590,
1316,
13174,
'F',
590,
1317,
13172,
'F',
1235,
1318,
4262,
'F',
1235,
1319,
4279,
'F',
1235,
1320,
4275,
'F',
147,
1321,
9959,
'F',
1354,
967,
12962,
'C',
51,
1322,
0,
'S',
1235,
1323,
0,
'F',
147,
1324,
5499,
'F',
1077,
862,
4235,
'F',
1359,
888,
4236,
'C',
51,
1325,
0,
'S',
1359,
1326,
0,
'V',
1362,
1327,
0,
'C',
1214,
33,
0,
'S',
1362,
1328,
0,
'F',
561,
664,
15495,
'F',
60,
1329,
15171,
'F',
60,
1330,
15179,
'F',
1235,
1331,
4273,
'S',
1239,
1332,
0,
'F',
1235,
1333,
4201,
'F',
1371,
1333,
4201,
'C',
1202,
1334,
0,
'F',
1235,
1335,
4243,
'S',
1235,
1336,
4246,
'F',
1235,
1337,
4246,
'F',
1235,
1338,
4247,
'F',
1377,
796,
3186,
'C',
1339,
1340,
0,
'F',
1377,
618,
3187,
'F',
1380,
1174,
7813,
'C',
1214,
1341,
0,
'F',
1377,
1342,
3191,
'F',
1377,
1343,
3195,
'F',
1371,
1344,
4204,
'F',
1385,
1305,
11105,
'C',
1345,
1346,
0,
'F',
1371,
1347,
4205,
'V',
1371,
1348,
0,
'S',
1371,
1349,
4223,
'S',
1385,
1350,
0,
'C',
1351,
1352,
0,
'S',
1390,
1353,
0,
'F',
1393,
1354,
4139,
'C',
1202,
1355,
0,
'F',
1393,
1356,
4141,
'F',
1396,
1357,
8958,
'C',
1358,
1359,
0,
'F',
1371,
1356,
4141,
'S',
1393,
1360,
0,
'F',
1393,
1361,
4383,
'F',
1401,
1362,
4393,
'C',
1363,
1364,
0,
'C',
1365,
1366,
0,
'F',
1401,
1354,
9868,
'C',
1351,
1367,
0,
'F',
1390,
54,
8258,
'F',
1390,
1368,
11242,
'F',
1390,
1369,
11240,
'F',
1409,
1370,
11486,
'C',
1371,
1372,
0,
'C',
1345,
1373,
0,
'S',
1371,
1374,
0,
'S',
1371,
1375,
0,
'S',
1371,
1376,
0,
'S',
1371,
1377,
0,
'S',
1371,
1378,
0,
'S',
1371,
1379,
0,
'S',
1418,
1380,
0,
'C',
51,
1381,
0,
'F',
1409,
1382,
11488,
'S',
1409,
1383,
0,
'F',
1409,
1384,
11484,
'S',
1418,
1385,
0,
'S',
1396,
1386,
0,
'F',
1396,
1387,
8948,
'S',
1396,
1388,
0,
'F',
1396,
1389,
8950,
'S',
1396,
1390,
0,
'C',
1358,
1391,
0,
'F',
1428,
1392,
8930,
'F',
1396,
1393,
8952,
'F',
1428,
1394,
8927,
'C',
1358,
1395,
0,
'C',
1195,
1396,
0,
'F',
1435,
1397,
8956,
'C',
1358,
1398,
0,
'F',
1437,
1397,
8956,
'C',
1358,
1399,
0,
'S',
1439,
1400,
0,
'C',
1358,
1401,
0,
'C',
1402,
1403,
0,
'C',
1402,
1404,
0,
'S',
1440,
1405,
0,
'F',
611,
1406,
5113,
'C',
1402,
1407,
0,
'S',
1444,
1408,
0,
'F',
1447,
5,
43,
'C',
449,
1409,
0,
'F',
1444,
1410,
4209,
'S',
1439,
1411,
0,
'S',
1439,
1412,
0,
'F',
147,
1413,
3851,
'F',
1440,
1410,
4209,
'F',
1454,
5,
43,
'C',
1414,
1415,
0,
'S',
1441,
1416,
0,
'S',
1441,
1417,
0,
'F',
1447,
664,
14251,
'S',
1459,
1418,
0,
'C',
1414,
1419,
0,
'F',
1454,
1420,
3663,
'S',
1462,
1421,
0,
'C',
237,
1422,
0,
'F',
1459,
1423,
3670,
'C',
103,
1424,
0,
'F',
1437,
1425,
8909,
'F',
1437,
1426,
8907,
'S',
154,
1427,
0,
'F',
150,
1428,
2448,
'C',
1429,
1430,
0,
'C',
1429,
1431,
0,
'F',
1469,
1432,
8912,
'C',
28,
1433,
0,
'C',
1434,
1435,
0,
'C',
1429,
1436,
0,
'C',
1429,
1437,
0,
'F',
1477,
1438,
9984,
'C',
1439,
1440,
0,
'C',
1439,
1441,
0,
'C',
1442,
1443,
0,
'C',
1442,
1444,
0,
'S',
1477,
1445,
0,
'F',
1478,
1446,
9982,
'S',
1478,
1447,
0,
'F',
1478,
1448,
9981,
'C',
1449,
1450,
0,
'F',
1487,
156,
9910,
'C',
1451,
1452,
0,
'C',
1449,
1453,
0,
'V',
1487,
1454,
0,
'S',
1487,
1455,
0,
'F',
1487,
1456,
9914,
'F',
544,
1457,
14921,
'S',
1487,
1458,
0,
'S',
544,
1459,
0,
'F',
544,
1460,
14923,
'S',
544,
1461,
0,
'S',
1498,
1462,
0,
'C',
1463,
33,
0,
'V',
1500,
1464,
0,
'C',
1451,
1465,
0,
'F',
1502,
1462,
4329,
'C',
1202,
1466,
0,
'V',
1502,
1467,
0,
'F',
150,
1468,
13079,
'F',
152,
622,
13012,
'S',
1507,
1469,
0,
'C',
1429,
1470,
0,
'S',
1437,
1471,
0,
'F',
1075,
862,
4235,
'C',
103,
1472,
0,
'C',
28,
1473,
0,
'F',
1396,
1474,
8947,
'F',
147,
795,
8285,
'F',
1515,
1475,
4882,
'C',
1476,
1477,
0,
'F',
1,
1478,
213,
'F',
1518,
1428,
2448,
'C',
1479,
1480,
0,
'S',
1515,
1481,
0,
'S',
1515,
1482,
0,
'S',
1515,
1483,
0,
'F',
23,
1428,
2448,
'F',
1354,
800,
12957,
'V',
1518,
1484,
0,
'S',
1518,
1485,
7710,
'S',
1527,
1486,
0,
'C',
51,
1487,
0,
'C',
51,
1488,
0,
'F',
1354,
54,
7462,
'F',
1354,
1128,
12964,
'C',
51,
1489,
0,
'F',
1354,
1130,
12966,
'F',
1371,
1354,
4139,
'S',
1454,
1490,
0,
'F',
1454,
1491,
3641,
'F',
1537,
1305,
11580,
'C',
1492,
1493,
0,
'S',
973,
1494,
0,
'F',
1250,
1495,
13504,
'F',
1250,
1496,
13500,
'S',
1233,
1497,
0,
'F',
1233,
1498,
4168,
'C',
1202,
1499,
0,
'C',
1195,
1500,
0,
'C',
1195,
1501,
0,
'C',
1195,
1502,
0,
'C',
1503,
1504,
0,
'F',
1543,
1505,
4180,
'V',
1550,
1506,
0,
'C',
1214,
1507,
0,
'F',
1552,
1508,
5232,
'C',
1195,
1509,
0,
'F',
1552,
1510,
5234,
'F',
1235,
1511,
4265,
'F',
1556,
1512,
5288,
'C',
1195,
1513,
0,
'S',
1543,
1514,
0,
'S',
1543,
1515,
0,
'F',
1560,
1516,
1550,
'C',
1202,
1517,
0,
'F',
1562,
1516,
1550,
'C',
1195,
1518,
0,
'F',
1560,
1519,
4190,
'V',
1565,
1520,
0,
'C',
1195,
1521,
0,
'S',
1565,
1522,
0,
'F',
1560,
1523,
1542,
'F',
1556,
1524,
5252,
'F',
1556,
1525,
5269,
'F',
1556,
1526,
5255,
'S',
1225,
1527,
0,
'F',
1556,
1528,
5267,
'F',
1556,
1529,
5265,
'F',
1556,
1530,
5271,
'F',
1556,
1531,
5259,
'S',
1556,
1532,
0,
'S',
1556,
1533,
0,
'S',
1556,
1534,
0,
'F',
1546,
1535,
5162,
'F',
1581,
872,
5203,
'C',
1195,
1536,
0,
'V',
1546,
1537,
0,
'S',
1546,
1538,
0,
'S',
1556,
1539,
0,
'F',
1581,
54,
5201,
'S',
1581,
1540,
0,
'S',
1581,
1541,
0,
'F',
1589,
1523,
1542,
'C',
1195,
1542,
0,
'S',
1565,
1543,
0,
'S',
1565,
1544,
0,
'C',
1195,
1545,
0,
'C',
1195,
1546,
0,
'C',
1503,
1547,
0,
'F',
1589,
1516,
1550,
'F',
1556,
1516,
1550,
'F',
1589,
1548,
5263,
'F',
1599,
1523,
1542,
'C',
1195,
1549,
0,
'F',
1589,
1550,
5353,
'F',
1602,
1523,
1542,
'C',
1195,
1551,
0,
'F',
1546,
1552,
5158,
'F',
1543,
1553,
1566,
'F',
1562,
1554,
5359,
'S',
1556,
1555,
0,
'V',
1556,
1556,
0,
'S',
1556,
1557,
0,
'F',
1552,
1558,
5230,
'F',
23,
1559,
5199,
'S',
1612,
1560,
0,
'C',
1195,
33,
0,
'F',
1556,
1561,
5290,
'S',
1556,
1562,
0,
'S',
1552,
1563,
0,
'S',
1552,
1564,
0,
'S',
1552,
1565,
0,
'C',
1195,
1566,
0,
'C',
1567,
1568,
0,
'F',
1556,
1569,
5228,
'S',
1556,
1570,
0,
'S',
1623,
1559,
0,
'C',
103,
1571,
0,
'S',
1625,
1572,
0,
'C',
51,
1573,
0,
'S',
1625,
1574,
0,
'S',
1628,
1575,
0,
'C',
28,
1576,
0,
'S',
1623,
1577,
0,
'S',
1623,
1578,
0,
'S',
1623,
1579,
0,
'V',
1633,
1580,
0,
'C',
1202,
1581,
0,
'C',
1202,
1582,
0,
'C',
1202,
1583,
0,
'S',
1233,
1584,
0,
'S',
1635,
1585,
0,
'C',
1586,
1587,
0,
'C',
1476,
1588,
0,
'S',
1235,
1589,
0,
'S',
1371,
1590,
0,
'S',
1362,
1591,
0,
'S',
1550,
1592,
0,
'S',
1550,
1593,
0,
'F',
97,
1594,
7435,
'F',
60,
1594,
7435,
'F',
97,
1595,
2610,
'F',
60,
1121,
2107,
'F',
60,
1595,
2610,
'F',
60,
5,
43,
'F',
60,
1596,
13708,
'F',
60,
1597,
15144,
'F',
60,
1598,
15148,
'S',
1362,
1599,
0,
'F',
1235,
1600,
4249,
'S',
1409,
1601,
0,
'C',
1602,
1603,
0,
'C',
1604,
1605,
0,
'S',
1239,
1606,
0,
'F',
1233,
1607,
4197,
'F',
1233,
1608,
4238,
'S',
973,
1609,
0,
'S',
973,
1610,
0,
'F',
1393,
1608,
4238,
'F',
1502,
1608,
4238,
'F',
1235,
1608,
4238,
'V',
1274,
1611,
0,
'S',
1274,
1612,
0,
'F',
1393,
1607,
4197,
'S',
1552,
1613,
0,
'F',
544,
1614,
14886,
'F',
544,
1615,
14917,
'F',
1478,
1616,
9986,
'S',
1233,
1617,
4163,
'S',
1233,
1618,
4151,
'S',
1233,
1619,
4149,
'S',
1233,
1620,
4161,
'C',
1442,
1621,
0,
'S',
1680,
1622,
0,
'C',
1623,
33,
0,
'S',
1680,
1624,
0,
'S',
1680,
1625,
0,
'S',
1680,
1626,
0,
'S',
1680,
1627,
0,
'F',
1271,
1628,
7434,
'S',
1680,
1629,
0,
'S',
1688,
1630,
0,
'C',
1623,
1631,
0,
'F',
1690,
1632,
7399,
'C',
1623,
1633,
0,
'C',
1241,
1634,
0,
'F',
1556,
1635,
5224,
'S',
1680,
1636,
0,
'V',
1688,
1637,
0,
'S',
1688,
1638,
0,
'S',
1690,
1639,
0,
'C',
1623,
1640,
0,
'S',
1418,
1641,
0,
'C',
1623,
1642,
0,
'S',
1699,
1643,
0,
'C',
51,
1644,
0,
'C',
51,
1645,
0,
'C',
51,
1646,
0,
'C',
51,
1647,
0,
'C',
51,
1648,
0,
'F',
1271,
1649,
7664,
'F',
1233,
1650,
4161,
'F',
1233,
1651,
4155,
'F',
1233,
1652,
4157,
'F',
1233,
1653,
4159,
'S',
1233,
1654,
0,
'C',
1655,
1656,
0,
'S',
1233,
1657,
0,
'S',
1233,
1658,
0,
'S',
1716,
1659,
0,
'C',
1660,
1661,
0,
'S',
1716,
1662,
0,
'F',
1233,
1663,
4149,
'F',
1634,
1663,
4149,
'F',
1233,
1664,
4151,
'F',
1233,
1665,
4153,
'F',
1233,
1666,
4163,
'V',
1724,
1667,
0,
'C',
1439,
33,
0,
'S',
1724,
1668,
0,
'F',
1727,
609,
15555,
'C',
28,
1669,
0,
'F',
1487,
1670,
9912,
'S',
1478,
1671,
0,
'F',
1478,
1672,
9988,
'S',
1478,
1673,
0,
'V',
1487,
1674,
0,
'S',
1487,
1675,
0,
'F',
575,
1676,
14169,
'S',
1487,
1677,
0,
'S',
1487,
1678,
0,
'F',
1487,
1679,
4326,
'S',
1487,
1680,
0,
'S',
575,
1681,
0,
'F',
575,
1682,
14165,
'F',
575,
1683,
14163,
'F',
587,
1659,
14145,
'F',
587,
647,
14141,
'V',
1727,
1684,
0,
'S',
1727,
1685,
0,
'S',
1727,
1686,
0,
'F',
1727,
1687,
15553,
'S',
89,
1688,
0,
'F',
1727,
1689,
15550,
'S',
89,
1690,
0,
'C',
1691,
1692,
0,
'C',
1691,
1693,
0,
'C',
1691,
1694,
0,
'S',
1751,
1695,
0,
'V',
1756,
1696,
0,
'C',
1697,
1698,
0,
'S',
1756,
1699,
0,
'V',
1759,
1700,
0,
'C',
1345,
1701,
0,
'C',
1479,
1702,
0,
'C',
1691,
1703,
0,
'C',
1691,
1704,
0,
'S',
1761,
1705,
0,
'S',
1752,
1706,
0,
'F',
1409,
1707,
11480,
'C',
1691,
1708,
0,
'S',
1751,
1709,
4979,
'S',
1751,
1710,
4981,
'F',
1751,
1711,
4981,
'F',
1751,
1712,
4983,
'F',
1751,
1713,
4984,
'C',
1691,
1714,
0,
'S',
1751,
1715,
0,
'F',
1751,
1716,
4990,
'F',
1760,
647,
5118,
'F',
1760,
1428,
2448,
'S',
1778,
1717,
0,
'C',
1718,
33,
0,
'C',
1718,
1719,
0,
'S',
1781,
1717,
0,
'C',
1720,
33,
0,
'V',
1783,
1721,
0,
'C',
373,
1722,
0,
'S',
1783,
1723,
0,
'V',
1783,
1724,
0,
'S',
1783,
1725,
0,
'V',
1783,
1726,
0,
'S',
1783,
1727,
0,
'V',
1783,
1728,
0,
'S',
1783,
1729,
0,
'V',
1783,
1730,
0,
'S',
1783,
1731,
0,
'V',
1783,
1732,
0,
'S',
1783,
1733,
0,
'S',
1783,
1734,
0,
'S',
1276,
1735,
0,
'C',
1241,
1736,
0,
'F',
609,
1051,
448,
'C',
1241,
1737,
0,
'S',
1276,
1738,
0,
'C',
103,
1739,
0,
'V',
1783,
1740,
0,
'S',
1783,
1741,
0,
'S',
404,
1734,
0,
'S',
404,
1740,
0,
'F',
1751,
1742,
4979,
'F',
1762,
1743,
4899,
'S',
1762,
1744,
0,
'S',
1756,
1745,
0,
'F',
1811,
1670,
9973,
'C',
1439,
1746,
0,
'S',
1756,
1747,
10022,
'C',
1442,
1748,
0,
'F',
1756,
1749,
10022,
'S',
1756,
1750,
0,
'S',
1817,
1751,
0,
'C',
1697,
1752,
0,
'F',
1817,
1753,
10018,
'F',
1817,
1754,
10017,
'F',
1756,
1755,
10027,
'V',
1756,
1756,
0,
'S',
1756,
1757,
0,
'V',
1756,
1758,
0,
'S',
1756,
1759,
0,
'V',
1756,
1760,
0,
'S',
1756,
1761,
0,
'F',
1828,
1762,
10008,
'C',
1697,
1763,
0,
'C',
1697,
1764,
0,
'F',
147,
1765,
10029,
'F',
611,
1321,
6052,
'F',
148,
800,
13017,
'C',
1766,
1767,
0,
'C',
1766,
1768,
0,
'S',
147,
1769,
5277,
'C',
1697,
1770,
0,
'C',
1766,
1771,
0,
'F',
148,
1772,
13023,
'S',
148,
1773,
0,
'C',
28,
1774,
0,
'F',
150,
54,
7462,
'C',
1697,
1775,
0,
'F',
150,
625,
13075,
'F',
150,
626,
13077,
'C',
1776,
1777,
0,
'C',
1778,
1779,
0,
'C',
1780,
1781,
0,
'S',
1849,
1782,
0,
'C',
1783,
1784,
0,
'C',
1783,
1785,
0,
'C',
1786,
1787,
0,
'C',
1788,
1789,
0,
'C',
1697,
1790,
0,
'C',
1697,
1791,
0,
'C',
1783,
1792,
0,
'C',
1783,
1793,
0,
'C',
1783,
1794,
0,
'F',
1811,
1448,
9970,
'S',
1811,
1795,
0,
'S',
1811,
1796,
0,
'V',
1862,
1797,
0,
'C',
1798,
1799,
0,
'F',
1634,
1607,
4197,
'C',
1567,
1800,
0,
'S',
1864,
1801,
0,
'F',
544,
1802,
14882,
'F',
544,
1803,
14891,
'F',
544,
1804,
14894,
'F',
544,
1805,
14912,
'F',
544,
1806,
14914,
'F',
1393,
1807,
4378,
'F',
1393,
1808,
4373,
'F',
1393,
1809,
4386,
'S',
1235,
1810,
4265,
'S',
1393,
1811,
4363,
'S',
1393,
1812,
4365,
'S',
1233,
1813,
4367,
'S',
1233,
1814,
4369,
'S',
1233,
1815,
4371,
'S',
1393,
1816,
4373,
'S',
1393,
1817,
4375,
'S',
1393,
1818,
4377,
'F',
1393,
1819,
4377,
'F',
1233,
1820,
4399,
'F',
1393,
1821,
4390,
'S',
1393,
1822,
0,
'F',
1396,
1823,
8960,
'S',
1396,
1824,
0,
'F',
1428,
1825,
8932,
'F',
1235,
1826,
4229,
'F',
1393,
1820,
4399,
'F',
1552,
1827,
5236,
'F',
1235,
1828,
4233,
'S',
1233,
1829,
0,
'F',
21,
872,
15226,
'F',
544,
1830,
14900,
'V',
544,
1831,
0,
'F',
21,
1832,
7637,
'S',
1552,
1833,
0,
'F',
1581,
1834,
5197,
'F',
1528,
759,
5141,
'F',
609,
1321,
6052,
'S',
1581,
1835,
5194,
'F',
1581,
1836,
5194,
'S',
1581,
1837,
0,
'F',
683,
1838,
13545,
'F',
683,
1839,
13544,
'S',
5,
1840,
0,
'F',
1864,
1841,
9019,
'F',
1864,
1842,
9023,
'F',
1864,
1843,
9025,
'F',
1401,
1844,
9870,
'F',
1864,
1845,
9032,
'F',
151,
759,
5141,
'F',
150,
967,
12962,
'F',
1917,
1846,
9095,
'C',
1567,
1847,
0,
'F',
1919,
1848,
12051,
'C',
1849,
1850,
0,
'S',
1864,
1851,
0,
'F',
151,
647,
5118,
'F',
1923,
1852,
7689,
'C',
1849,
1853,
0,
'S',
1925,
1630,
0,
'C',
1854,
1855,
0,
'F',
1634,
1856,
4357,
'F',
150,
862,
4235,
'F',
448,
1857,
14657,
'F',
544,
1858,
14919,
'F',
1923,
1859,
11944,
'S',
1932,
1860,
0,
'C',
1849,
1861,
0,
'S',
1919,
1862,
0,
'S',
1919,
1863,
0,
'S',
1919,
1864,
0,
'V',
1932,
1865,
0,
'S',
1932,
1866,
0,
'V',
1923,
1867,
0,
'S',
1923,
1868,
0,
'V',
1923,
1869,
0,
'S',
1923,
1870,
0,
'V',
1923,
1871,
0,
'S',
1923,
1872,
0,
'F',
1923,
1873,
11942,
'F',
1923,
1874,
11920,
'F',
1923,
1875,
11946,
'S',
1948,
1876,
0,
'C',
237,
1877,
0,
'F',
244,
609,
3251,
'F',
448,
1878,
14653,
'F',
448,
1879,
14655,
'S',
1953,
1880,
0,
'C',
1849,
33,
0,
'C',
1849,
1881,
0,
'F',
23,
1051,
448,
'F',
609,
759,
5141,
'S',
1923,
1882,
0,
'F',
423,
1883,
14283,
'S',
1953,
1884,
0,
'C',
1849,
1885,
0,
'F',
23,
1886,
7726,
'C',
1849,
1887,
0,
'S',
1953,
1888,
0,
'F',
1962,
1889,
12034,
'F',
23,
1890,
5114,
'C',
449,
1891,
0,
'S',
1962,
1892,
0,
'F',
1962,
1893,
12036,
'F',
21,
759,
5141,
'S',
1971,
1894,
0,
'C',
367,
33,
0,
'S',
1962,
1895,
0,
'S',
1962,
1896,
0,
'S',
1962,
1897,
0,
'S',
1962,
1898,
0,
'S',
1971,
1899,
0,
'C',
103,
1900,
0,
'C',
103,
1901,
0,
'F',
1454,
1902,
3659,
'V',
1932,
1903,
0,
'S',
1932,
1904,
0,
'V',
1932,
1905,
0,
'S',
1932,
1906,
0,
'S',
1985,
1907,
0,
'C',
51,
1908,
0,
'F',
1923,
1909,
11923,
'C',
1849,
1910,
0,
'S',
1923,
1911,
0,
'F',
151,
800,
12957,
'S',
1953,
1912,
0,
'S',
1923,
1913,
0,
'F',
448,
1914,
14659,
'V',
1925,
1915,
0,
'F',
1917,
1916,
9098,
'F',
611,
1917,
7784,
'S',
596,
1918,
0,
'F',
1917,
1919,
9094,
'C',
1567,
1920,
0,
'C',
1567,
1921,
0,
'C',
1567,
1922,
0,
'C',
1567,
1923,
0,
'C',
1567,
1924,
0,
'S',
2002,
1925,
0,
'F',
2002,
1926,
9102,
'C',
1567,
1927,
0,
'S',
2005,
1928,
0,
'S',
1917,
1929,
0,
'F',
2009,
1930,
12158,
'C',
1849,
1931,
0,
'F',
21,
954,
13142,
'S',
1999,
1932,
0,
'S',
1999,
1933,
0,
'S',
2009,
1934,
0,
'F',
2015,
1935,
8782,
'C',
1936,
1937,
0,
'F',
1401,
1938,
9872,
'F',
544,
1939,
14909,
'F',
425,
1940,
14177,
'F',
1401,
1941,
8290,
'F',
423,
1942,
14295,
'F',
2022,
1943,
8742,
'C',
1936,
1944,
0,
'C',
1945,
1946,
0,
'S',
2025,
1947,
0,
'C',
1945,
1948,
0,
'V',
2025,
1949,
0,
'V',
2025,
1950,
0,
'F',
2023,
5,
43,
'S',
2025,
1951,
0,
'F',
2023,
1952,
10139,
'C',
1936,
1953,
0,
'F',
546,
1291,
14261,
'F',
1447,
4,
14255,
'F',
2015,
1954,
8734,
'F',
457,
1857,
14232,
'F',
457,
1914,
14234,
'F',
2022,
1954,
8734,
'S',
2039,
1955,
0,
'C',
1567,
1956,
0,
'F',
1917,
1957,
9078,
'S',
1864,
1958,
0,
'C',
1936,
1959,
0,
'C',
1567,
1960,
0,
'C',
1961,
1962,
0,
'F',
2015,
1963,
8788,
'C',
1964,
1965,
0,
'F',
1917,
1966,
9084,
'F',
2039,
1967,
8975,
'F',
453,
1968,
14562,
'F',
2051,
1969,
8756,
'C',
1936,
1970,
0,
'F',
2022,
1971,
8730,
'F',
453,
1972,
14564,
'F',
1917,
1973,
9055,
'S',
1917,
1974,
0,
'S',
1917,
1975,
0,
'S',
1917,
1976,
0,
'F',
1917,
1977,
9105,
'F',
2043,
1263,
4878,
'C',
1198,
1978,
0,
'F',
2044,
1979,
7694,
'F',
1917,
1980,
9076,
'S',
1864,
1981,
0,
'F',
1917,
1982,
980,
'S',
1917,
1983,
0,
'F',
1864,
1984,
9015,
'F',
1917,
1985,
9065,
'S',
1864,
1986,
0,
'F',
1917,
1987,
6955,
'F',
150,
872,
1220,
'S',
1235,
1988,
4232,
'F',
1235,
1989,
4232,
'F',
1393,
1990,
4375,
'F',
1480,
1991,
9931,
'F',
1919,
1992,
12055,
'F',
1919,
1993,
12053,
'F',
1923,
1994,
11938,
'S',
1919,
1995,
0,
'C',
1996,
1997,
0,
'F',
1480,
1998,
9960,
'F',
2079,
1999,
7757,
'F',
2079,
2000,
7758,
'F',
1480,
2001,
9962,
'F',
2079,
2002,
7764,
'F',
2079,
2003,
7766,
'F',
2079,
2004,
7768,
'F',
1480,
2005,
9966,
'F',
2079,
2006,
7770,
'F',
2079,
2007,
7772,
'F',
2079,
2008,
7774,
'F',
2079,
2009,
7776,
'F',
2079,
2010,
7778,
'F',
293,
2011,
13738,
'S',
702,
2012,
0,
'F',
293,
2013,
13732,
'F',
293,
2014,
13730,
'F',
2079,
2015,
7760,
'F',
2079,
2016,
7762,
'F',
1233,
2017,
4371,
'F',
1233,
2018,
4369,
'F',
1233,
2019,
4367,
'F',
1393,
2019,
4367,
'F',
1393,
2020,
4384,
'F',
1401,
2021,
9862,
'F',
1235,
2022,
4269,
'F',
1401,
2023,
9866,
'F',
1917,
2024,
9082,
'F',
1917,
2025,
3947,
'F',
1917,
2026,
9057,
'F',
2111,
2027,
9855,
'C',
1363,
2028,
0,
'C',
1936,
2029,
0,
'F',
2015,
2030,
1472,
'F',
2044,
2030,
1472,
'S',
1454,
2031,
0,
'F',
546,
2032,
14262,
'F',
1393,
2033,
4365,
'F',
1917,
2034,
6968,
'S',
1917,
2035,
0,
'F',
1393,
2036,
4363,
'F',
1917,
2037,
9090,
'F',
1515,
1940,
4880,
'C',
1358,
2038,
0,
'S',
1396,
2039,
0,
'F',
1393,
2040,
4388,
'F',
1864,
2041,
9028,
'F',
2128,
1940,
9009,
'C',
1567,
2042,
0,
'F',
1515,
2043,
4471,
'F',
1864,
2044,
9030,
'F',
1919,
1940,
4880,
'F',
1518,
872,
7704,
'S',
1919,
2045,
0,
'S',
2128,
2046,
0,
'F',
1515,
2047,
4469,
'F',
1518,
54,
7702,
'C',
1363,
2048,
0,
'S',
1401,
2049,
0,
'F',
1393,
2050,
4382,
'F',
1401,
2051,
9864,
'F',
1917,
2052,
9063,
'F',
1917,
2053,
9080,
'F',
1864,
2054,
9017,
'F',
2137,
2055,
1474,
'F',
2137,
2030,
1472,
'F',
1917,
2030,
1472,
'F',
1917,
2056,
9073,
'F',
2044,
2055,
1474,
'S',
1917,
2057,
0,
'F',
2137,
2058,
4192,
'F',
1917,
1979,
7694,
'F',
1917,
2059,
7692,
'F',
2044,
2059,
7692,
'F',
2044,
2060,
1479,
'F',
1917,
2061,
9061,
'S',
1917,
2062,
0,
'S',
1917,
2063,
0,
'F',
1635,
1607,
4197,
'V',
2160,
2064,
0,
'C',
1586,
2065,
0,
'V',
2160,
2066,
0,
'S',
2160,
2067,
0,
'F',
1502,
1607,
4197,
'F',
1635,
2068,
4350,
'F',
2166,
2069,
10833,
'C',
2070,
2071,
0,
'S',
2166,
2072,
0,
'F',
2169,
2073,
10831,
'C',
2070,
2074,
0,
'C',
235,
2075,
0,
'S',
973,
2076,
0,
'F',
2170,
195,
13478,
'F',
60,
2077,
15175,
'F',
438,
2078,
14555,
'F',
2170,
1224,
13480,
'F',
2177,
2079,
13492,
'C',
235,
2080,
0,
'S',
461,
2081,
0,
'S',
438,
2082,
0,
'F',
438,
2083,
14557,
'S',
2182,
2084,
0,
'C',
184,
2085,
0,
'S',
461,
2086,
0,
'F',
1195,
1171,
12407,
'F',
2186,
193,
12405,
'C',
184,
2087,
0,
'F',
2177,
2088,
13490,
'S',
2169,
2089,
0,
'V',
2190,
2090,
0,
'C',
449,
2091,
0,
'S',
2190,
2092,
0,
'F',
454,
2093,
14444,
'S',
423,
2094,
0,
'F',
454,
2095,
14440,
'F',
454,
2096,
14430,
'F',
454,
2097,
14434,
'F',
454,
733,
14448,
'F',
454,
2098,
14432,
'S',
2190,
2099,
0,
'F',
2190,
2100,
14395,
'F',
2190,
2101,
14401,
'F',
2190,
2102,
14403,
'F',
445,
2103,
14489,
'F',
445,
2104,
14497,
'F',
445,
2105,
14499,
'F',
445,
2106,
14545,
'F',
445,
2107,
14549,
'C',
449,
2108,
0,
'S',
2208,
2109,
0,
'C',
449,
2110,
0,
'S',
2210,
2111,
0,
'F',
435,
2112,
14822,
'F',
435,
2113,
14828,
'F',
435,
1857,
14832,
'F',
428,
2114,
14791,
'F',
445,
2115,
14547,
'C',
449,
2116,
0,
'F',
2217,
2117,
14315,
'F',
445,
2118,
14517,
'F',
445,
2119,
14529,
'C',
449,
2120,
0,
'C',
449,
2121,
0,
'C',
449,
2122,
0,
'S',
2225,
2123,
0,
'C',
237,
2124,
0,
'S',
2225,
2125,
0,
'F',
219,
617,
7650,
'F',
428,
2126,
14817,
'F',
428,
2127,
14793,
'F',
435,
1914,
14834,
'F',
435,
2128,
14830,
'F',
435,
2129,
14824,
'S',
461,
2130,
0,
'S',
461,
2131,
0,
'F',
445,
2132,
14551,
'F',
454,
2133,
14442,
'S',
423,
2134,
0,
'F',
454,
2135,
14446,
'C',
2136,
2137,
0,
'S',
2239,
2138,
0,
'F',
1235,
1607,
4197,
'F',
1502,
2139,
4343,
'F',
544,
2140,
14925,
'F',
1502,
2141,
4336,
'F',
1502,
2142,
4340,
'C',
1463,
2143,
0,
'S',
1502,
2144,
0,
'S',
1502,
2145,
4328,
'C',
1442,
2146,
0,
'F',
1502,
2147,
4328,
'S',
1502,
2148,
0,
'F',
1233,
2149,
4129,
'C',
449,
2150,
0,
'F',
1235,
2149,
4129,
'F',
1235,
2151,
4257,
'F',
1635,
2152,
4334,
'S',
1635,
2153,
0,
'F',
1502,
2152,
4334,
'F',
1638,
1475,
10549,
'S',
1502,
2153,
0,
'F',
1233,
2154,
4332,
'F',
1635,
2154,
4332,
'F',
2239,
967,
10758,
'F',
544,
2155,
14888,
'V',
544,
2156,
0,
'S',
2267,
2157,
0,
'C',
2158,
2159,
0,
'S',
1502,
2160,
4339,
'F',
1502,
2161,
4339,
'S',
191,
2162,
0,
'F',
191,
2163,
12425,
'S',
1502,
2164,
0,
'F',
1235,
2165,
4241,
'S',
2275,
2166,
0,
'C',
184,
2167,
0,
'F',
191,
2168,
12436,
'F',
191,
733,
12442,
'F',
191,
2169,
12439,
'S',
1502,
2170,
0,
'C',
2171,
2172,
0,
'S',
1502,
2173,
0,
'S',
1502,
2174,
0,
'V',
2284,
2175,
0,
'C',
2176,
33,
0,
'S',
2284,
2177,
0,
'S',
1500,
2178,
0,
'S',
1500,
2179,
0,
'C',
2158,
2180,
0,
'C',
2158,
2181,
0,
'S',
2291,
2182,
0,
'C',
2183,
33,
0,
'S',
2291,
2175,
0,
'S',
2291,
2184,
0,
'S',
2295,
2185,
0,
'C',
235,
2186,
0,
'S',
2297,
2187,
0,
'C',
154,
2188,
0,
'C',
2183,
2189,
0,
'F',
2300,
1104,
13626,
'C',
154,
2190,
0,
'S',
2302,
2191,
0,
'C',
154,
2192,
0,
'F',
2300,
2193,
12633,
'S',
2295,
418,
0,
'F',
2300,
733,
13625,
'F',
2302,
2194,
13696,
'S',
2291,
2195,
0,
'S',
2291,
2196,
0,
'S',
2291,
2197,
0,
'S',
2291,
2198,
0,
'F',
1195,
2199,
12537,
'S',
2291,
2200,
0,
'S',
2291,
2201,
0,
'S',
2295,
2202,
0,
'S',
1237,
2203,
0,
'S',
2291,
2204,
0,
'S',
2291,
2205,
0,
'S',
2291,
2206,
0,
'F',
2298,
2207,
12269,
'S',
2302,
2208,
0,
'F',
185,
733,
12444,
'F',
185,
2209,
12652,
'F',
185,
2210,
12654,
'F',
185,
2211,
12650,
'F',
185,
2212,
12649,
'F',
174,
2213,
12510,
'F',
174,
2214,
12705,
'F',
185,
2215,
12647,
'F',
2330,
54,
12758,
'C',
184,
2216,
0,
'C',
184,
2217,
0,
'C',
184,
2218,
0,
'F',
2332,
2219,
12752,
'S',
2332,
2220,
0,
'F',
174,
2221,
12504,
'V',
178,
2222,
0,
'S',
178,
2223,
0,
'F',
174,
2224,
12701,
'S',
174,
2225,
0,
'F',
2332,
2226,
12754,
'F',
185,
2163,
12426,
'F',
2343,
2193,
12633,
'C',
184,
2227,
0,
'C',
184,
2228,
0,
'S',
2302,
2229,
0,
'S',
907,
2230,
0,
'S',
331,
2231,
0,
'S',
2302,
2232,
0,
'S',
2302,
2233,
0,
'S',
2302,
2234,
0,
'S',
2300,
2235,
0,
'S',
2353,
2236,
0,
'C',
184,
2237,
0,
'S',
2300,
2238,
13625,
'C',
184,
2239,
0,
'C',
184,
2240,
0,
'S',
1502,
2241,
0,
'V',
2359,
2242,
0,
'C',
2243,
33,
0,
'S',
2359,
2244,
0,
'F',
2362,
2245,
9895,
'C',
2243,
2246,
0,
'F',
2364,
2245,
9895,
'C',
2243,
2247,
0,
'S',
2364,
2248,
0,
'F',
2367,
2249,
9893,
'C',
2243,
2250,
0,
'S',
2364,
2251,
0,
'S',
2364,
2252,
0,
'S',
2367,
2253,
0,
'S',
855,
2254,
0,
'F',
293,
2255,
13724,
'S',
2359,
2256,
0,
'S',
2362,
2257,
0,
'S',
202,
2258,
0,
'S',
191,
2259,
0,
'F',
191,
2260,
12429,
'S',
191,
2261,
12427,
'F',
191,
2262,
12427,
'C',
184,
2263,
0,
'S',
2275,
2264,
0,
'C',
184,
2265,
0,
'F',
1377,
54,
3184,
'F',
1377,
2266,
3189,
'F',
1377,
2267,
3197,
'F',
1377,
2268,
3193,
'S',
191,
2269,
12418,
'S',
191,
2270,
12421,
'S',
191,
2271,
12424,
'F',
191,
2272,
12424,
'F',
191,
2273,
12421,
'F',
191,
2274,
12418,
'V',
2267,
2275,
0,
'C',
2276,
2277,
0,
'S',
2394,
2278,
0,
'F',
1371,
1607,
4197,
'F',
544,
2279,
14902,
'S',
1371,
2280,
4200,
'F',
1371,
2281,
4200,
'S',
2401,
1886,
0,
'C',
2282,
2283,
0,
'S',
2401,
2284,
0,
'S',
2401,
2285,
0,
'F',
1447,
2032,
14254,
'C',
1402,
2286,
0,
'C',
1402,
2287,
0,
'S',
2408,
2288,
0,
'C',
2282,
33,
0,
'C',
1402,
2289,
0,
'C',
1402,
2290,
0,
'C',
1402,
2291,
0,
'C',
1402,
2292,
0,
'C',
1402,
2293,
0,
'C',
1402,
2294,
0,
'C',
1402,
2295,
0,
'F',
1766,
692,
41,
'F',
1753,
692,
41,
'F',
1753,
1263,
4878,
'F',
1272,
692,
41,
'F',
1772,
692,
41,
'F',
1752,
2296,
4885,
'F',
1371,
2297,
4212,
'S',
1371,
2298,
4211,
'F',
1371,
2299,
4211,
'F',
1371,
2300,
4206,
'S',
1371,
2301,
4205,
'F',
1371,
2302,
4207,
'F',
1657,
733,
11083,
'F',
1657,
2303,
11085,
'F',
1658,
2304,
11496,
'F',
1657,
2305,
11093,
'F',
1657,
2306,
11097,
'S',
1657,
2307,
0,
'F',
1657,
2308,
11095,
'F',
1560,
2309,
1558,
'F',
1560,
2310,
1543,
'F',
1560,
2311,
4188,
'F',
1560,
2312,
1554,
'F',
1589,
2311,
4188,
'F',
1589,
2312,
1554,
'F',
1560,
2313,
1546,
'F',
1560,
2314,
1544,
'F',
1543,
2315,
206,
'F',
2298,
2316,
12274,
'F',
2023,
2317,
212,
'S',
461,
2318,
0,
'S',
2448,
2319,
0,
'C',
449,
2320,
0,
'C',
449,
2321,
0,
'F',
2023,
692,
41,
'F',
148,
692,
41,
'F',
1852,
2322,
10006,
'F',
1852,
2323,
10004,
'F',
1852,
2324,
10111,
'F',
1852,
1753,
10010,
'F',
1852,
2325,
10110,
'S',
1837,
2326,
0,
'S',
1837,
2327,
0,
'F',
1852,
1754,
10009,
'F',
1851,
692,
41,
'F',
1851,
2325,
10103,
'F',
1851,
2322,
10006,
'F',
1851,
2323,
10004,
'F',
1851,
1753,
10010,
'F',
1851,
1754,
10009,
'F',
1851,
2328,
10107,
'F',
1847,
692,
41,
'F',
1847,
2322,
10006,
'F',
1847,
2323,
10004,
'F',
1847,
2329,
10093,
'F',
1847,
1753,
10010,
'S',
1847,
2330,
0,
'F',
1847,
1754,
10009,
'F',
1850,
692,
41,
'F',
1850,
2325,
10067,
'F',
1850,
2322,
10006,
'F',
1850,
2323,
10004,
'F',
1850,
1753,
10010,
'F',
1850,
1754,
10009,
'F',
1846,
692,
41,
'F',
1846,
2322,
10006,
'F',
1846,
2323,
10004,
'F',
1846,
2331,
10059,
'F',
1846,
1754,
10009,
'F',
1846,
1753,
10010,
'F',
1846,
2325,
10058,
'F',
1845,
692,
41,
'F',
1845,
2325,
10041,
'F',
1845,
2322,
10006,
'F',
1845,
2323,
10004,
'F',
1845,
2332,
10042,
'F',
1845,
1753,
10010,
'F',
1845,
1754,
10009,
'F',
77,
1413,
3851,
'F',
1836,
692,
41,
'F',
1842,
692,
41,
'F',
1829,
2317,
212,
'F',
1829,
5,
43,
'F',
1479,
2333,
9941,
'C',
1449,
2334,
0,
'F',
1479,
2335,
9945,
'C',
1996,
2336,
0,
'S',
2502,
2337,
0,
'F',
2502,
2338,
7727,
'F',
1480,
2339,
9957,
'F',
2502,
2340,
7749,
'F',
2508,
669,
12387,
'C',
2341,
2342,
0,
'F',
2508,
721,
12386,
'F',
2502,
2343,
7737,
'F',
2502,
2344,
7733,
'F',
2502,
2345,
7735,
'F',
1480,
2346,
9964,
'F',
2502,
2347,
7739,
'F',
2502,
2348,
7741,
'F',
2502,
2349,
7743,
'F',
2502,
2350,
7745,
'S',
1480,
2351,
0,
'F',
2502,
2010,
7747,
'F',
2508,
800,
12371,
'F',
2508,
2352,
12373,
'F',
2508,
2353,
12375,
'F',
2508,
2354,
12368,
'F',
2508,
2355,
12381,
'F',
2508,
2356,
12379,
'F',
2508,
2357,
12377,
'F',
2502,
2358,
7729,
'F',
2502,
2359,
7731,
'V',
2502,
2360,
0,
'F',
2508,
54,
5138,
'C',
2341,
2361,
0,
'C',
2341,
2362,
0,
'S',
2531,
2363,
0,
'F',
1479,
2364,
9943,
'F',
1479,
2365,
9939,
'F',
1479,
2366,
9937,
'F',
2249,
2367,
9929,
'F',
2249,
1991,
9931,
'F',
1480,
2367,
9929,
'F',
1678,
2335,
9945,
'F',
1813,
2367,
9929,
'F',
1678,
2364,
9943,
'F',
1678,
2333,
9941,
'F',
1813,
1991,
9931,
'F',
1678,
2365,
9939,
'F',
1678,
2366,
9937,
'F',
1485,
692,
41,
'F',
1488,
692,
41,
'F',
1488,
2316,
9956,
'F',
1837,
5,
43,
'F',
1837,
2317,
212,
'F',
1833,
5,
43,
'F',
1833,
2317,
212,
'F',
1487,
2368,
4325,
'S',
1487,
2369,
4326,
'F',
2364,
692,
41,
'S',
2558,
2370,
0,
'C',
1198,
33,
0,
'S',
2558,
2371,
0,
'F',
97,
2372,
15299,
'F',
97,
2373,
15301,
'F',
97,
2374,
15269,
'F',
97,
2375,
15303,
'F',
2009,
13,
12113,
'F',
2009,
2376,
12113,
'F',
2009,
1628,
12114,
'F',
1962,
1594,
7435,
'F',
1954,
1594,
7435,
'F',
2570,
1594,
7435,
'C',
1849,
2377,
0,
'F',
2572,
2378,
12245,
'C',
1849,
2379,
0,
'F',
1987,
2317,
212,
'S',
461,
2380,
0,
'F',
1987,
5,
43,
'S',
2577,
2381,
0,
'C',
2382,
33,
0,
'S',
1987,
2383,
0,
'F',
1987,
1628,
11768,
'F',
1919,
692,
41,
'F',
1960,
1594,
7435,
'F',
2280,
8,
7831,
'F',
2280,
664,
7831,
'F',
2280,
839,
7830,
'F',
2280,
14,
0,
'F',
1240,
692,
41,
'F',
1401,
2384,
4392,
'S',
1401,
2385,
4393,
'F',
1401,
2386,
1496,
'F',
2039,
2387,
8965,
'F',
2039,
2388,
8967,
'S',
2039,
2389,
0,
'F',
2042,
2390,
8798,
'F',
2039,
2391,
8969,
'F',
2022,
872,
8738,
'F',
2015,
2392,
8784,
'F',
2022,
2059,
7692,
'F',
2022,
2393,
7691,
'F',
2015,
2394,
8786,
'F',
2022,
1979,
7694,
'F',
1401,
2395,
8038,
'F',
1401,
2396,
210,
'C',
1365,
2397,
0,
'C',
1567,
2398,
0,
'F',
1917,
2114,
9067,
'F',
2603,
2399,
8238,
'F',
2137,
2314,
1480,
'F',
2137,
2400,
1476,
'F',
2111,
692,
41,
'S',
2611,
2401,
0,
'C',
2402,
33,
0,
'F',
60,
2403,
15184,
'F',
60,
692,
41,
'F',
60,
2404,
15186,
'F',
1998,
1926,
9102,
'F',
1998,
2405,
9097,
'S',
1998,
2406,
0,
'S',
1998,
2407,
0,
'F',
1999,
1852,
9142,
'F',
1998,
2408,
9103,
'F',
1998,
2409,
9100,
'F',
1917,
692,
41,
'F',
1917,
2302,
4207,
'F',
1917,
2410,
1482,
'F',
1917,
2411,
6962,
'F',
1917,
2386,
1496,
'F',
1917,
2412,
9054,
'F',
1917,
2395,
8038,
'F',
1917,
2314,
1480,
'F',
1917,
2413,
2683,
'C',
1567,
2414,
0,
'F',
2002,
800,
9104,
'F',
2009,
2415,
12162,
'F',
2009,
2416,
12160,
'F',
2009,
2417,
12130,
'F',
2002,
2408,
9103,
'F',
2002,
2405,
9097,
'S',
2002,
2406,
0,
'S',
2002,
2418,
0,
'C',
1567,
2419,
0,
'F',
2640,
2420,
9173,
'F',
2640,
2421,
9175,
'C',
1849,
2422,
0,
'S',
1923,
2423,
0,
'F',
1923,
2424,
11914,
'F',
2002,
2425,
9156,
'F',
2009,
2426,
12123,
'F',
1923,
2427,
11912,
'F',
1923,
2428,
11910,
'F',
2009,
2429,
12142,
'F',
1923,
2430,
11940,
'S',
2002,
2431,
0,
'V',
1923,
2432,
0,
'S',
1923,
2433,
0,
'F',
1923,
2434,
11927,
'F',
1923,
2435,
11925,
'F',
2009,
2436,
12147,
'F',
1923,
2437,
11918,
'F',
1923,
2055,
1474,
'F',
1923,
2030,
1472,
'F',
2009,
2438,
12154,
'C',
449,
2439,
0,
'S',
2664,
2440,
0,
'C',
2441,
2442,
0,
'S',
2664,
2443,
0,
'V',
1923,
2444,
0,
'S',
1923,
2445,
0,
'V',
2640,
2446,
0,
'S',
2640,
2447,
0,
'F',
423,
2448,
14287,
'S',
2640,
2449,
0,
'F',
1454,
2450,
3665,
'S',
2664,
2451,
0,
'S',
1454,
2452,
0,
'F',
1454,
2453,
3645,
'S',
2664,
2454,
0,
'S',
2664,
2455,
0,
'V',
2664,
2456,
0,
'S',
2664,
2457,
0,
'S',
2664,
2458,
0,
'F',
1454,
2459,
3647,
'F',
1454,
2460,
3617,
'F',
2001,
800,
9104,
'F',
2005,
800,
9104,
'F',
2005,
1926,
9102,
'F',
2005,
2408,
9103,
'F',
2005,
2405,
9097,
'S',
2005,
2406,
0,
'S',
2005,
2461,
0,
'S',
1923,
2462,
0,
'S',
2005,
2463,
0,
'F',
2043,
692,
41,
'F',
2000,
2409,
9100,
'F',
2039,
692,
41,
'F',
1,
2317,
212,
'F',
1428,
692,
41,
'F',
1474,
2317,
212,
'F',
81,
2317,
212,
'F',
1474,
5,
43,
'F',
1474,
2464,
1980,
'F',
1507,
2464,
1980,
'F',
1475,
692,
41,
'F',
2042,
2465,
8744,
'F',
457,
2466,
14187,
'F',
2022,
2467,
8733,
'F',
2015,
2468,
8790,
'F',
457,
1659,
14210,
'F',
457,
1683,
14212,
'F',
457,
2469,
14214,
'F',
457,
2470,
14216,
'F',
457,
2471,
14189,
'C',
449,
2472,
0,
'C',
449,
2473,
0,
'F',
2042,
2474,
8740,
'F',
2015,
2474,
8740,
'F',
2112,
2474,
8740,
'F',
2112,
2475,
8820,
'S',
1441,
2476,
0,
'S',
1454,
2477,
0,
'S',
2664,
2478,
0,
'S',
2722,
2479,
0,
'C',
1414,
2480,
0,
'F',
1454,
2481,
3626,
'F',
1454,
2482,
3620,
'F',
2722,
1423,
3694,
'F',
2112,
2465,
8744,
'F',
1447,
839,
14252,
'S',
1454,
2483,
0,
'F',
1454,
2484,
3655,
'F',
457,
2485,
14183,
'F',
457,
2486,
14185,
'C',
449,
2487,
0,
'F',
1454,
2488,
3643,
'F',
2022,
2489,
8732,
'F',
2015,
2465,
8744,
'F',
2015,
2055,
1474,
'F',
1454,
8,
3630,
'F',
1454,
664,
3630,
'F',
1454,
2490,
3653,
'F',
1454,
2317,
212,
'S',
2742,
2491,
0,
'C',
2492,
33,
0,
'F',
220,
2493,
10608,
'S',
2742,
2494,
0,
'S',
2742,
2495,
0,
'F',
1454,
15,
3619,
'F',
1454,
692,
41,
'F',
1454,
2496,
3622,
'F',
1459,
15,
3677,
'F',
1459,
8,
3674,
'F',
1459,
664,
3674,
'F',
1459,
2481,
3688,
'S',
1459,
2497,
0,
'F',
1459,
2317,
212,
'F',
1459,
5,
43,
'F',
1459,
692,
41,
'F',
1473,
692,
41,
'F',
1390,
692,
41,
'F',
1404,
692,
41,
'F',
1404,
2498,
4208,
'F',
2405,
1410,
4209,
'F',
2409,
1410,
4209,
'F',
2412,
1410,
4209,
'F',
2414,
1410,
4209,
'F',
2406,
1410,
4209,
'F',
2413,
1410,
4209,
'F',
2410,
1410,
4209,
'F',
2411,
1410,
4209,
'F',
1321,
692,
41,
'F',
1779,
692,
41,
'F',
1760,
862,
4235,
'F',
1518,
795,
205,
'F',
1518,
647,
5118,
'F',
1518,
862,
4235,
'F',
2044,
2400,
1476,
'F',
1,
692,
41,
'F',
1300,
1628,
7434,
'F',
1293,
692,
41,
'F',
1227,
692,
41,
'F',
1277,
692,
41,
'F',
1515,
2296,
4885,
'F',
1239,
692,
41,
'F',
1274,
692,
41,
'F',
1270,
1628,
7434,
'F',
1276,
692,
41,
'F',
23,
2499,
13125,
'F',
611,
647,
5118,
'F',
611,
796,
4484,
'F',
1270,
2500,
7604,
'C',
103,
2501,
0,
'F',
1276,
2316,
7636,
'F',
1377,
692,
41,
'F',
23,
2502,
13130,
'F',
611,
692,
41,
'F',
1556,
2503,
5254,
'F',
1556,
2504,
5196,
'F',
1546,
2505,
5160,
'F',
1556,
2506,
5200,
'F',
1354,
862,
4235,
'F',
2801,
888,
4236,
'C',
51,
2507,
0,
'F',
1556,
1432,
5273,
'F',
1556,
2313,
1546,
'F',
1556,
1548,
5263,
'F',
2806,
2314,
1544,
'C',
1195,
2508,
0,
'S',
1556,
2509,
0,
'F',
1556,
2510,
5261,
'S',
1556,
2511,
0,
'F',
1556,
2512,
5257,
'F',
1556,
2312,
1554,
'F',
1556,
2314,
1544,
'F',
1556,
2310,
1543,
'S',
1556,
2513,
0,
'F',
1556,
1523,
1542,
'F',
1556,
2317,
212,
'F',
1556,
5,
43,
'F',
1589,
2510,
5261,
'F',
1589,
2512,
5257,
'F',
1589,
2504,
5196,
'F',
1589,
2506,
5200,
'F',
1589,
2310,
1543,
'F',
1224,
1553,
1566,
'C',
1195,
2514,
0,
'F',
1433,
692,
41,
'F',
1618,
692,
41,
'F',
1556,
2515,
5283,
'F',
1565,
2315,
206,
'C',
2516,
2517,
0,
'C',
1365,
2518,
0,
'S',
2829,
2519,
0,
'F',
1565,
2316,
5320,
'F',
1225,
2317,
212,
'S',
1,
2520,
0,
'V',
1,
2521,
0,
'S',
1,
2522,
0,
'S',
117,
2523,
0,
'F',
342,
2524,
13704,
'F',
342,
2525,
13702,
'S',
117,
2526,
0,
'S',
2842,
2527,
0,
'C',
367,
2528,
0,
'S',
342,
2529,
0,
'S',
342,
2530,
0,
'V',
342,
2531,
0,
'S',
342,
2532,
0,
'S',
342,
2533,
0,
'F',
1225,
5,
43,
'F',
1225,
2328,
5170,
'F',
1593,
692,
41,
'F',
1545,
692,
41,
'F',
1545,
2317,
212,
'F',
1545,
5,
43,
'F',
1545,
1628,
5168,
'F',
1592,
1553,
1566,
'C',
1195,
2534,
0,
'F',
567,
692,
41,
'F',
2223,
692,
41,
'F',
2223,
2317,
212,
'F',
2223,
5,
43,
'F',
571,
692,
41,
'F',
785,
2317,
212,
'F',
785,
5,
43,
'F',
2221,
692,
41,
'F',
2190,
692,
41,
'F',
446,
692,
41,
'F',
446,
2535,
14422,
'F',
446,
2536,
14423,
'F',
569,
692,
41,
'F',
2222,
692,
41,
'F',
2222,
2317,
212,
'F',
2222,
5,
43,
'F',
2222,
8,
14308,
'F',
2222,
664,
14308,
'F',
2217,
692,
41,
'F',
2217,
2537,
14316,
'F',
2217,
2538,
14317,
'F',
2217,
2539,
14318,
'F',
2217,
2540,
14319,
'F',
2217,
2317,
212,
'F',
2217,
5,
43,
'F',
546,
692,
41,
'F',
546,
2317,
212,
'F',
546,
5,
43,
'F',
546,
8,
14259,
'F',
546,
664,
14259,
'F',
2253,
692,
41,
'F',
1447,
692,
41,
'F',
1447,
2317,
212,
'F',
1447,
8,
14251,
'F',
441,
692,
41,
'F',
441,
2317,
212,
'F',
441,
5,
43,
'F',
441,
14,
7918,
'F',
548,
692,
41,
'F',
570,
692,
41,
'F',
554,
692,
41,
'F',
554,
2541,
14844,
'F',
554,
2542,
14848,
'F',
554,
2543,
14845,
'F',
554,
2544,
14846,
'F',
554,
2545,
14847,
'F',
554,
2546,
14842,
'C',
449,
2547,
0,
'F',
97,
839,
10497,
'F',
2208,
692,
41,
'C',
449,
2548,
0,
'C',
449,
2549,
0,
'C',
449,
2550,
0,
'F',
2208,
2317,
212,
'F',
2208,
5,
43,
'F',
2210,
692,
41,
'C',
449,
2551,
0,
'C',
449,
2552,
0,
'C',
449,
2553,
0,
'F',
2210,
2317,
212,
'F',
2210,
5,
43,
'S',
461,
2554,
0,
'F',
549,
692,
41,
'F',
424,
692,
41,
'F',
424,
2317,
212,
'F',
424,
5,
43,
'F',
564,
692,
41,
'F',
423,
692,
41,
'F',
423,
2317,
212,
'F',
423,
5,
43,
'F',
1966,
692,
41,
'F',
550,
2317,
212,
'F',
550,
5,
43,
'F',
550,
692,
41,
'F',
409,
692,
41,
'F',
409,
2316,
14117,
'F',
1084,
692,
41,
'F',
951,
692,
41,
'F',
1090,
692,
41,
'F',
821,
692,
41,
'F',
397,
692,
41,
'F',
397,
2316,
14073,
'F',
386,
692,
41,
'F',
386,
2316,
14080,
'F',
809,
692,
41,
'F',
809,
2555,
14120,
'F',
1978,
862,
4235,
'C',
103,
2556,
0,
'C',
103,
2557,
0,
'F',
1801,
2558,
9226,
'F',
1801,
2559,
154,
'F',
690,
705,
7635,
'F',
690,
1051,
448,
'F',
690,
833,
7606,
'F',
690,
2559,
154,
'F',
690,
862,
4235,
'F',
76,
54,
5138,
'F',
1464,
1051,
448,
'F',
1464,
862,
4235,
'C',
103,
2560,
0,
'F',
683,
2558,
9226,
'F',
683,
2559,
154,
'F',
609,
833,
7606,
'F',
114,
1559,
5199,
'F',
114,
54,
5138,
'F',
114,
609,
3251,
'F',
889,
888,
4236,
'F',
889,
947,
4237,
'F',
1977,
2558,
9226,
'F',
1977,
2559,
154,
'F',
1510,
947,
4237,
'F',
1510,
888,
4236,
'F',
1218,
692,
41,
'S',
1218,
2561,
0,
'F',
1218,
2317,
212,
'F',
1218,
5,
43,
'F',
1075,
2559,
154,
'F',
1051,
2562,
13420,
'S',
1051,
2563,
0,
'F',
1051,
2564,
13419,
'F',
649,
2565,
13363,
'F',
705,
2565,
13363,
'F',
941,
675,
13368,
'C',
672,
2566,
0,
'F',
2980,
843,
13374,
'S',
2980,
2567,
0,
'S',
2980,
2568,
0,
'F',
713,
2569,
13252,
'F',
713,
2570,
13246,
'F',
713,
13,
13267,
'F',
713,
1628,
13268,
'F',
713,
2328,
13266,
'F',
1059,
692,
41,
'F',
940,
2565,
13363,
'F',
1057,
692,
41,
'S',
7,
2571,
0,
'S',
7,
2572,
0,
'S',
7,
2573,
0,
'S',
1,
2574,
0,
'F',
317,
2317,
212,
'F',
317,
5,
43,
'F',
316,
2317,
212,
'F',
316,
2575,
13514,
'F',
316,
5,
43,
'F',
222,
954,
13142,
'F',
221,
617,
7650,
'F',
217,
2576,
13794,
'F',
222,
617,
7650,
'F',
221,
609,
3251,
'F',
293,
5,
43,
'F',
293,
2317,
212,
'F',
280,
954,
13142,
'F',
280,
617,
7650,
'F',
279,
609,
3251,
'F',
279,
588,
3253,
'F',
280,
837,
5964,
'F',
280,
796,
4484,
'F',
280,
1559,
5199,
'F',
280,
54,
5138,
'F',
280,
2558,
9226,
'F',
280,
1886,
7726,
'F',
280,
1051,
448,
'F',
280,
862,
4235,
'C',
237,
2577,
0,
'F',
280,
1890,
5114,
'F',
280,
705,
7635,
'F',
280,
2502,
13130,
'F',
292,
2578,
13713,
'F',
292,
2579,
13710,
'F',
292,
609,
3251,
'F',
292,
15,
3253,
'F',
292,
588,
3253,
'F',
290,
2578,
13713,
'S',
3031,
2580,
0,
'C',
237,
2581,
0,
'F',
290,
2579,
13710,
'F',
290,
609,
3251,
'F',
290,
15,
3253,
'F',
290,
588,
3253,
'F',
210,
954,
13142,
'F',
289,
2579,
13710,
'F',
289,
609,
3251,
'F',
217,
2582,
13784,
'F',
289,
15,
3253,
'F',
289,
588,
3253,
'F',
287,
2579,
13710,
'F',
287,
609,
3251,
'F',
287,
15,
3253,
'F',
287,
588,
3253,
'F',
238,
837,
5964,
'F',
238,
796,
4484,
'F',
238,
1559,
5199,
'S',
1628,
2583,
0,
'F',
238,
54,
5138,
'F',
238,
2558,
9226,
'F',
238,
1886,
7726,
'F',
238,
1051,
448,
'F',
238,
862,
4235,
'F',
238,
1890,
5114,
'F',
238,
705,
7635,
'F',
238,
2502,
13130,
'F',
286,
2578,
13713,
'F',
286,
2579,
13710,
'F',
286,
609,
3251,
'F',
286,
15,
3253,
'F',
286,
588,
3253,
'F',
285,
2579,
13710,
'F',
285,
609,
3251,
'F',
217,
2584,
13788,
'F',
285,
15,
3253,
'F',
285,
588,
3253,
'F',
288,
954,
13142,
'F',
288,
617,
7650,
'F',
288,
837,
5964,
'F',
288,
796,
4484,
'F',
288,
1559,
5199,
'F',
288,
54,
5138,
'F',
288,
2558,
9226,
'F',
288,
1886,
7726,
'F',
288,
1051,
448,
'F',
288,
862,
4235,
'F',
288,
1890,
5114,
'F',
288,
705,
7635,
'F',
288,
2502,
13130,
'F',
281,
2578,
13713,
'F',
281,
2579,
13710,
'F',
281,
15,
3253,
'F',
281,
588,
3253,
'F',
279,
2579,
13710,
'F',
279,
15,
3253,
'F',
278,
2578,
13713,
'F',
278,
2579,
13710,
'F',
278,
609,
3251,
'F',
278,
15,
3253,
'F',
278,
588,
3253,
'F',
277,
2579,
13710,
'F',
277,
609,
3251,
'F',
277,
2585,
13840,
'F',
217,
2586,
13792,
'F',
277,
15,
3253,
'F',
277,
588,
3253,
'F',
277,
2587,
13838,
'F',
217,
2588,
13790,
'F',
224,
954,
13142,
'F',
224,
617,
7650,
'F',
223,
609,
3251,
'F',
261,
954,
13142,
'S',
3105,
2589,
0,
'C',
237,
2590,
0,
'F',
226,
617,
7650,
'F',
271,
609,
3251,
'F',
216,
2591,
13146,
'F',
216,
837,
5964,
'F',
216,
796,
4484,
'F',
216,
1559,
5199,
'F',
216,
54,
5138,
'F',
216,
2558,
9226,
'F',
216,
1886,
7726,
'F',
216,
1051,
448,
'F',
216,
862,
4235,
'F',
216,
1890,
5114,
'F',
216,
705,
7635,
'F',
216,
2502,
13130,
'F',
276,
2578,
13715,
'F',
276,
2579,
13710,
'F',
276,
609,
3251,
'F',
276,
15,
3253,
'F',
276,
588,
3253,
'F',
274,
2578,
13713,
'F',
274,
2579,
13710,
'F',
274,
609,
3251,
'F',
274,
15,
3253,
'F',
274,
588,
3253,
'F',
273,
954,
13142,
'F',
273,
617,
7650,
'F',
273,
837,
5964,
'F',
272,
2587,
13882,
'F',
273,
796,
4484,
'F',
273,
1559,
5199,
'F',
273,
54,
5138,
'F',
273,
2558,
9226,
'F',
273,
1886,
7726,
'F',
273,
1051,
448,
'F',
273,
862,
4235,
'F',
273,
1890,
5114,
'F',
273,
705,
7635,
'F',
273,
2502,
13130,
'F',
217,
2559,
154,
'F',
217,
2592,
3250,
'F',
272,
2579,
13710,
'F',
272,
609,
3251,
'F',
272,
2585,
13884,
'F',
272,
15,
3253,
'F',
272,
588,
3253,
'F',
271,
2578,
13713,
'F',
271,
2579,
13710,
'F',
271,
15,
3253,
'F',
271,
588,
3253,
'F',
270,
8,
13892,
'F',
270,
664,
13892,
'F',
247,
954,
13142,
'F',
246,
617,
7650,
'F',
247,
617,
7650,
'F',
246,
609,
3251,
'F',
268,
2578,
13713,
'S',
3163,
2593,
0,
'C',
237,
2594,
0,
'F',
268,
2579,
13710,
'F',
268,
609,
3251,
'F',
268,
15,
3253,
'F',
268,
588,
3253,
'F',
266,
2578,
13713,
'F',
266,
2579,
13710,
'F',
266,
609,
3251,
'F',
266,
15,
3253,
'F',
266,
588,
3253,
'F',
253,
954,
13142,
'S',
3175,
2595,
0,
'C',
237,
2596,
0,
'F',
253,
837,
5964,
'F',
252,
588,
3253,
'F',
253,
796,
4484,
'F',
253,
1559,
5199,
'F',
253,
54,
5138,
'F',
253,
2558,
9226,
'F',
253,
1886,
7726,
'F',
253,
1051,
448,
'F',
253,
862,
4235,
'F',
253,
1890,
5114,
'F',
253,
705,
7635,
'F',
253,
2502,
13130,
'F',
265,
2578,
13713,
'F',
265,
2579,
13710,
'F',
265,
609,
3251,
'F',
265,
15,
3253,
'F',
265,
588,
3253,
'F',
220,
837,
5964,
'F',
220,
796,
4484,
'F',
220,
1559,
5199,
'F',
220,
54,
5138,
'F',
220,
2558,
9226,
'F',
220,
1886,
7726,
'F',
220,
1051,
448,
'F',
220,
862,
4235,
'F',
220,
1890,
5114,
'F',
220,
705,
7635,
'F',
220,
2502,
13130,
'F',
263,
2578,
13713,
'F',
263,
2579,
13710,
'F',
263,
609,
3251,
'F',
263,
15,
3253,
'F',
263,
588,
3253,
'F',
262,
2578,
13713,
'F',
262,
2579,
13710,
'F',
262,
609,
3251,
'F',
262,
15,
3253,
'F',
262,
588,
3253,
'F',
260,
2578,
13713,
'F',
260,
2579,
13710,
'F',
260,
609,
3251,
'F',
260,
15,
3253,
'F',
260,
588,
3253,
'F',
259,
954,
13142,
'S',
3221,
2597,
0,
'C',
237,
2598,
0,
'F',
259,
837,
5964,
'F',
258,
588,
3253,
'F',
259,
796,
4484,
'F',
259,
1559,
5199,
'F',
259,
54,
5138,
'F',
259,
2558,
9226,
'F',
259,
1886,
7726,
'F',
259,
1051,
448,
'F',
259,
862,
4235,
'F',
259,
1890,
5114,
'F',
259,
705,
7635,
'F',
259,
2502,
13130,
'F',
258,
2579,
13710,
'F',
258,
609,
3251,
'F',
258,
15,
3253,
'F',
275,
954,
13142,
'F',
291,
954,
13142,
'F',
212,
2559,
154,
'F',
212,
2592,
3250,
'F',
212,
669,
3249,
'F',
219,
954,
13142,
'F',
256,
2578,
13713,
'F',
256,
2579,
13710,
'F',
256,
15,
3253,
'F',
256,
588,
3253,
'F',
269,
954,
13142,
'F',
230,
617,
7650,
'F',
229,
609,
3251,
'F',
237,
954,
13142,
'F',
241,
617,
7650,
'F',
254,
2578,
13713,
'F',
254,
2579,
13710,
'F',
254,
15,
3253,
'F',
254,
588,
3253,
'F',
252,
2579,
13710,
'F',
252,
609,
3251,
'F',
252,
15,
3253,
'F',
250,
2578,
13713,
'F',
250,
2579,
13710,
'F',
250,
609,
3251,
'F',
250,
15,
3253,
'F',
250,
588,
3253,
'F',
248,
2578,
13715,
'F',
248,
2579,
13710,
'F',
248,
609,
3251,
'F',
248,
15,
3253,
'F',
248,
588,
3253,
'F',
246,
2578,
13713,
'F',
246,
2579,
13710,
'F',
246,
15,
3253,
'F',
246,
588,
3253,
'F',
244,
2578,
13713,
'F',
244,
2579,
13710,
'F',
244,
15,
3253,
'F',
244,
588,
3253,
'F',
243,
8,
13890,
'F',
243,
664,
13890,
'F',
230,
954,
13142,
'F',
242,
2578,
13715,
'F',
242,
2579,
13710,
'F',
242,
609,
3251,
'F',
242,
15,
3253,
'F',
242,
588,
3253,
'F',
241,
954,
13142,
'F',
226,
954,
13142,
'F',
211,
2591,
13146,
'F',
211,
837,
5964,
'F',
211,
796,
4484,
'F',
211,
1559,
5199,
'F',
211,
54,
5138,
'F',
211,
2558,
9226,
'F',
211,
1886,
7726,
'F',
211,
1051,
448,
'F',
211,
862,
4235,
'F',
211,
1890,
5114,
'F',
211,
705,
7635,
'F',
211,
2502,
13130,
'F',
240,
2578,
13715,
'F',
240,
2579,
13710,
'F',
240,
609,
3251,
'F',
240,
15,
3253,
'F',
240,
588,
3253,
'F',
239,
2578,
13713,
'F',
239,
2579,
13710,
'F',
239,
609,
3251,
'F',
239,
15,
3253,
'F',
239,
588,
3253,
'F',
251,
954,
13142,
'F',
245,
954,
13142,
'F',
245,
617,
7650,
'F',
236,
2578,
13715,
'F',
236,
2579,
13710,
'F',
236,
609,
3251,
'F',
236,
15,
3253,
'F',
236,
588,
3253,
'F',
213,
692,
41,
'S',
22,
2599,
0,
'S',
1312,
2600,
0,
'V',
156,
2601,
0,
'S',
156,
2602,
0,
'S',
156,
2603,
0,
'F',
663,
2604,
15614,
'F',
213,
833,
7606,
'F',
235,
2559,
13932,
'F',
235,
2592,
3250,
'F',
235,
669,
3249,
'F',
234,
954,
13142,
'F',
215,
954,
13142,
'F',
215,
617,
7650,
'F',
249,
954,
13142,
'F',
267,
954,
13142,
'F',
233,
2578,
13713,
'F',
233,
2579,
13710,
'F',
233,
609,
3251,
'F',
233,
15,
3253,
'F',
233,
588,
3253,
'F',
232,
8,
13887,
'F',
232,
664,
13887,
'F',
231,
2578,
13713,
'F',
231,
2579,
13710,
'F',
231,
609,
3251,
'F',
231,
15,
3253,
'F',
231,
588,
3253,
'F',
229,
2578,
13713,
'F',
229,
2579,
13710,
'F',
229,
15,
3253,
'F',
229,
588,
3253,
'F',
227,
2579,
13710,
'F',
227,
609,
3251,
'F',
227,
15,
3253,
'F',
227,
588,
3253,
'F',
225,
2578,
13713,
'F',
225,
2579,
13710,
'F',
225,
609,
3251,
'F',
225,
15,
3253,
'F',
225,
588,
3253,
'F',
223,
2578,
13713,
'F',
223,
2579,
13710,
'F',
223,
15,
3253,
'F',
223,
588,
3253,
'F',
221,
2578,
13713,
'F',
221,
2579,
13710,
'F',
221,
15,
3253,
'F',
221,
588,
3253,
'F',
218,
2578,
13715,
'F',
218,
2579,
13710,
'F',
218,
609,
3251,
'F',
218,
15,
3253,
'F',
218,
588,
3253,
'F',
214,
2578,
13713,
'F',
214,
2579,
13710,
'F',
214,
609,
3251,
'F',
214,
15,
3253,
'F',
214,
588,
3253,
'F',
255,
954,
13142,
'F',
228,
954,
13142,
'S',
3379,
2605,
0,
'C',
237,
2606,
0,
'F',
228,
837,
5964,
'F',
228,
796,
4484,
'F',
228,
1559,
5199,
'F',
228,
54,
5138,
'F',
228,
2558,
9226,
'F',
228,
1886,
7726,
'F',
228,
1051,
448,
'F',
228,
862,
4235,
'F',
228,
1890,
5114,
'F',
228,
705,
7635,
'F',
228,
2502,
13130,
'F',
264,
954,
13142,
'F',
209,
2578,
13713,
'F',
209,
2579,
13710,
'F',
209,
609,
3251,
'F',
209,
15,
3253,
'F',
209,
588,
3253,
'F',
1194,
1001,
12538,
'F',
196,
2607,
7643,
'F',
1213,
692,
41,
'F',
2330,
2608,
12736,
'F',
2344,
5,
43,
'F',
2344,
2317,
212,
'F',
2344,
2609,
12666,
'F',
2186,
1001,
12538,
'F',
2380,
2609,
12666,
'S',
174,
2610,
0,
'F',
174,
2611,
12688,
'S',
174,
2612,
0,
'S',
174,
2613,
0,
'S',
174,
1135,
0,
'S',
174,
2614,
0,
'S',
202,
2615,
0,
'S',
202,
2616,
0,
'S',
202,
2617,
0,
'S',
202,
2618,
0,
'F',
185,
2619,
12498,
'S',
185,
2620,
12435,
'F',
185,
54,
12435,
'F',
185,
2621,
12506,
'F',
174,
2621,
12506,
'C',
184,
2622,
0,
'C',
184,
2623,
0,
'F',
174,
2624,
12499,
'F',
174,
2625,
12712,
'F',
174,
2626,
12699,
'F',
185,
2627,
12490,
'F',
3428,
1084,
12678,
'C',
184,
2628,
0,
'S',
185,
2629,
0,
'F',
174,
1084,
12635,
'S',
3428,
2630,
0,
'F',
185,
2169,
12441,
'F',
185,
2631,
12508,
'F',
174,
2631,
12508,
'C',
184,
2632,
0,
'F',
174,
2633,
12502,
'S',
174,
2634,
0,
'F',
185,
2168,
12438,
'C',
184,
2635,
0,
'S',
3439,
2636,
0,
'S',
3428,
2637,
0,
'F',
185,
2638,
12431,
'F',
174,
966,
12637,
'F',
174,
2639,
12710,
'F',
185,
2640,
12445,
'F',
185,
2641,
12434,
'F',
185,
2642,
12422,
'F',
185,
2643,
12419,
'F',
185,
2644,
12416,
'F',
2331,
2645,
12742,
'F',
1162,
692,
41,
'F',
1162,
2316,
12534,
'F',
539,
2646,
12778,
'S',
1100,
2647,
0,
'S',
1100,
2648,
0,
'F',
539,
997,
12599,
'F',
539,
2649,
12501,
'F',
539,
2650,
12691,
'F',
539,
2651,
12579,
'F',
539,
2652,
12582,
'F',
539,
2653,
12558,
'S',
202,
2654,
0,
'S',
531,
2655,
0,
'F',
539,
2656,
12553,
'S',
202,
2657,
0,
'F',
539,
1174,
12561,
'S',
202,
2658,
0,
'F',
539,
2659,
12848,
'S',
202,
2660,
0,
'V',
539,
2661,
0,
'S',
539,
2662,
0,
'S',
3473,
2663,
0,
'C',
184,
2664,
0,
'S',
884,
2665,
0,
'C',
184,
2666,
0,
'S',
3475,
2667,
0,
'S',
202,
2668,
0,
'S',
202,
2669,
0,
'C',
184,
2670,
0,
'C',
184,
2671,
0,
'S',
202,
2672,
0,
'C',
184,
2673,
0,
'S',
202,
2674,
0,
'C',
184,
2675,
0,
'S',
202,
2676,
0,
'C',
184,
2677,
0,
'S',
202,
2678,
0,
'C',
184,
2679,
0,
'S',
202,
2680,
0,
'C',
184,
2681,
0,
'S',
202,
2682,
0,
'S',
202,
2683,
0,
'S',
202,
2684,
0,
'S',
202,
2685,
0,
'S',
202,
2686,
0,
'S',
202,
2687,
0,
'S',
202,
2688,
0,
'S',
202,
2689,
0,
'S',
202,
2690,
0,
'S',
202,
2691,
0,
'S',
202,
2692,
0,
'S',
202,
2693,
0,
'S',
202,
2694,
0,
'S',
202,
2695,
0,
'S',
1100,
2696,
0,
'S',
202,
2697,
0,
'S',
884,
2698,
0,
'F',
539,
563,
12281,
'F',
539,
588,
12873,
'F',
539,
2699,
12779,
'S',
539,
2700,
0,
'F',
539,
2701,
12709,
'F',
539,
2702,
12859,
'S',
539,
2703,
0,
'F',
539,
2704,
12707,
'F',
539,
2705,
12847,
'F',
539,
2706,
12874,
'F',
539,
2707,
12885,
'F',
1005,
692,
41,
'F',
1005,
2708,
12784,
'F',
159,
2709,
12411,
'F',
2382,
2608,
12736,
'F',
1195,
2709,
12411,
'F',
151,
833,
7606,
'F',
151,
692,
41,
'F',
151,
1051,
448,
'F',
151,
795,
205,
'F',
1704,
1321,
9959,
'F',
1704,
1324,
5499,
'F',
1704,
1050,
5495,
'F',
1704,
588,
3849,
'F',
1704,
638,
13040,
'F',
1702,
622,
13012,
'F',
1704,
1413,
3851,
'F',
1704,
872,
5277,
'F',
1704,
609,
3850,
'F',
1704,
623,
13036,
'F',
1704,
624,
13034,
'F',
1704,
625,
13026,
'F',
1704,
626,
13030,
'F',
1704,
2710,
13042,
'F',
1704,
647,
11479,
'F',
1704,
2559,
154,
'F',
1156,
2317,
212,
'F',
1156,
2376,
12936,
'F',
1156,
1628,
12937,
'F',
1156,
2328,
12935,
'F',
875,
647,
5118,
'F',
875,
796,
4484,
'F',
875,
2559,
154,
'F',
875,
862,
4235,
'C',
51,
2711,
0,
'F',
590,
692,
41,
'F',
590,
2558,
9226,
'F',
590,
796,
4484,
'F',
590,
2559,
154,
'F',
590,
647,
5118,
'F',
590,
862,
4235,
'C',
51,
2712,
0,
'F',
1077,
2559,
154,
'F',
1354,
872,
1220,
'F',
1354,
2713,
12959,
'F',
1531,
872,
12982,
'F',
1354,
1428,
2448,
'F',
1354,
795,
205,
'F',
1354,
647,
5118,
'F',
1354,
2559,
154,
'S',
886,
2714,
0,
'S',
886,
2715,
0,
'F',
1528,
833,
7606,
'F',
1528,
692,
41,
'F',
1528,
1051,
448,
'F',
146,
2716,
13010,
'F',
146,
2717,
13009,
'F',
1705,
692,
41,
'F',
147,
2710,
13032,
'F',
147,
2559,
154,
'F',
23,
692,
41,
'F',
23,
2591,
13146,
'F',
23,
954,
13142,
'F',
23,
2718,
13144,
'F',
23,
705,
7635,
'F',
23,
833,
7606,
'F',
23,
837,
5964,
'F',
23,
796,
4484,
'F',
23,
795,
205,
'F',
23,
647,
5118,
'F',
23,
2558,
9226,
'F',
23,
862,
4235,
'F',
1703,
2716,
13010,
'F',
1703,
2717,
13009,
'F',
150,
2710,
13082,
'F',
150,
796,
4484,
'F',
150,
2559,
154,
'F',
887,
692,
41,
'F',
1531,
2317,
212,
'F',
1531,
2328,
12985,
'F',
1359,
947,
4237,
'F',
885,
872,
5277,
'F',
885,
2719,
12916,
'F',
885,
1321,
9959,
'F',
885,
588,
3849,
'F',
885,
1413,
3851,
'F',
885,
647,
11479,
'F',
885,
2559,
154,
'F',
153,
2716,
13010,
'F',
153,
2717,
13009,
'F',
143,
5,
43,
'F',
134,
2317,
212,
'F',
134,
2720,
13622,
'F',
134,
5,
43,
'F',
134,
2721,
13620,
'F',
133,
692,
41,
'F',
133,
2316,
13695,
'F',
129,
2317,
212,
'F',
129,
5,
43,
'F',
1107,
7,
13688,
'F',
127,
2317,
212,
'F',
127,
2720,
13645,
'F',
127,
5,
43,
'F',
127,
1126,
13643,
'F',
894,
947,
4237,
'F',
115,
692,
41,
'F',
115,
2317,
212,
'F',
115,
2722,
15133,
'F',
113,
837,
5964,
'F',
113,
796,
4484,
'F',
113,
862,
4235,
'C',
28,
2723,
0,
'F',
113,
954,
13142,
'F',
113,
2559,
154,
'F',
113,
15,
3253,
'F',
113,
588,
3253,
'F',
112,
2708,
12784,
'F',
112,
692,
41,
'F',
110,
692,
41,
'F',
872,
5,
43,
'F',
872,
2317,
212,
'F',
1311,
862,
4235,
'C',
28,
2724,
0,
'F',
1187,
692,
41,
'F',
108,
5,
43,
'F',
108,
789,
8390,
'F',
107,
692,
41,
'F',
107,
2316,
15545,
'F',
105,
692,
41,
'S',
105,
2725,
0,
'S',
105,
2726,
0,
'S',
105,
2727,
0,
'F',
105,
4,
3252,
'F',
105,
2722,
15133,
'F',
105,
2317,
212,
'F',
59,
2728,
14133,
'F',
59,
2729,
15453,
'F',
59,
2730,
5965,
'F',
59,
1428,
7785,
'F',
59,
2731,
15425,
'F',
59,
2732,
7609,
'F',
59,
1594,
7435,
'F',
59,
692,
41,
'F',
59,
15,
15407,
'F',
59,
2722,
15133,
'F',
59,
2317,
212,
'F',
100,
692,
41,
'F',
96,
2722,
15133,
'F',
96,
2317,
212,
'F',
95,
692,
41,
'F',
93,
692,
41,
'F',
89,
2376,
15480,
'F',
89,
2733,
15486,
'F',
89,
1628,
15481,
'F',
89,
2734,
15484,
'F',
89,
2328,
15479,
'F',
89,
2735,
15482,
'F',
88,
692,
41,
'F',
7,
2708,
12784,
'F',
1472,
692,
41,
'F',
1472,
2316,
15534,
'F',
6,
692,
41,
'F',
6,
2316,
15517,
'F',
81,
2729,
15453,
'F',
81,
2728,
14133,
'F',
81,
1428,
7785,
'F',
81,
2732,
7609,
'F',
81,
2730,
5965,
'F',
81,
2736,
15456,
'F',
81,
2731,
15425,
'F',
79,
5,
43,
'F',
79,
789,
8390,
'F',
77,
692,
41,
'F',
77,
872,
5277,
'F',
77,
609,
3850,
'F',
77,
1321,
9959,
'F',
77,
2559,
154,
'F',
77,
647,
11479,
'F',
75,
837,
5964,
'F',
75,
796,
4484,
'F',
75,
862,
4235,
'F',
75,
954,
13142,
'F',
75,
2737,
15035,
'F',
75,
2559,
154,
'F',
75,
609,
3251,
'F',
75,
15,
3253,
'F',
75,
588,
3253,
'F',
736,
15,
15369,
'F',
736,
588,
15369,
'F',
736,
1289,
3243,
'F',
72,
692,
41,
'F',
1,
5,
43,
'F',
1,
2722,
15133,
'F',
1840,
692,
41,
'F',
1840,
1628,
15565,
'F',
1840,
2328,
15563,
'F',
64,
2708,
12784,
'F',
64,
692,
41,
'V',
60,
865,
0,
'S',
60,
866,
0,
'V',
60,
2738,
0,
'S',
60,
2739,
0,
'F',
60,
2574,
15182,
'F',
60,
2740,
13709,
'F',
60,
2741,
13418,
'F',
60,
2742,
15158,
'F',
60,
2743,
15154,
'F',
60,
2744,
15146,
'F',
60,
8,
2614,
'F',
60,
664,
2614,
'F',
60,
2722,
15133,
'F',
60,
2317,
212,
'F',
58,
5,
43,
'F',
58,
789,
8390,
'F',
56,
692,
41,
'F',
56,
2316,
15534,
'S',
1312,
2745,
0,
'S',
156,
2746,
0,
'F',
611,
705,
7635,
'S',
3738,
2747,
0,
'C',
103,
2748,
0,
'S',
3740,
2749,
0,
'C',
103,
2750,
0,
'S',
331,
2751,
0,
'F',
611,
2559,
154,
'F',
611,
833,
7606,
'F',
1008,
692,
41,
'F',
97,
2740,
13709,
'F',
97,
2741,
13418,
'F',
97,
1596,
13708,
'F',
97,
797,
15161,
'F',
97,
2744,
15146,
'F',
97,
2742,
15158,
'F',
97,
2743,
15154,
'F',
97,
4,
3252,
'F',
97,
2752,
15274,
'F',
97,
8,
2614,
'F',
54,
692,
41,
'F',
753,
692,
41,
'F',
50,
692,
41,
'F',
48,
692,
41,
'F',
1727,
588,
15554,
'F',
1727,
692,
41,
'F',
878,
2328,
15361,
'F',
44,
692,
41,
'F',
44,
2753,
15188,
'F',
44,
2316,
15198,
'F',
621,
692,
41,
'F',
621,
2316,
15543,
'F',
0,
2754,
15209,
'F',
0,
2317,
212,
'F',
0,
2755,
15210,
'F',
0,
5,
43,
'F',
21,
862,
4235,
'F',
21,
692,
41,
'F',
21,
647,
5118,
'F',
21,
2558,
9226,
'F',
21,
609,
3251,
'F',
21,
15,
3253,
'F',
21,
588,
3253,
'F',
21,
2559,
154,
'F',
19,
2317,
212,
'F',
922,
692,
41,
'F',
925,
692,
41,
'F',
925,
5,
43,
'F',
925,
2317,
212,
'F',
925,
2756,
14102,
'F',
925,
2757,
15690,
'F',
823,
2756,
14102,
'F',
925,
2758,
7787,
'F',
925,
2759,
15632,
'F',
925,
2760,
15633,
'F',
925,
2761,
15634,
'F',
925,
2762,
7786,
'F',
925,
2763,
15635,
'F',
925,
2764,
15636,
'F',
925,
2765,
15683,
'F',
925,
2766,
15684,
'F',
925,
2767,
15688,
'F',
925,
2768,
15682,
'F',
925,
2769,
15685,
'F',
925,
16,
15686,
'F',
925,
2770,
15686,
'S',
823,
2771,
0,
'F',
17,
692,
41,
'F',
561,
692,
41,
'F',
561,
2374,
15505,
'F',
561,
1594,
7435,
'F',
561,
2317,
212,
'F',
561,
5,
43,
'F',
561,
8,
15495,
'F',
823,
5,
43,
'F',
823,
2760,
15633,
'F',
823,
2761,
15634,
'F',
823,
692,
41,
'V',
823,
2772,
0,
'S',
823,
2773,
15665,
'F',
823,
2774,
15651,
'F',
823,
2775,
15649,
'F',
823,
2776,
15645,
'F',
823,
2777,
15641,
'F',
823,
2778,
15647,
'F',
823,
16,
15643,
'F',
823,
2770,
15643,
'F',
823,
2317,
212,
'V',
823,
2779,
0,
'S',
823,
2780,
15668,
'F',
14,
692,
41,
'F',
11,
2781,
15309,
'F',
11,
2782,
15311,
'F',
11,
2783,
15312,
'F',
11,
2784,
15313,
'S',
14,
2785,
0,
'F',
663,
2786,
15616,
'S',
14,
2787,
0,
'S',
14,
2788,
0,
'F',
11,
2789,
15307,
'S',
14,
2790,
0,
'F',
11,
2791,
15314,
'F',
11,
2792,
15315,
'F',
11,
2793,
15310,
'S',
91,
2794,
0,
'C',
51,
2795,
0,
'C',
51,
2796,
0,
'C',
51,
2797,
0,
'S',
113,
2798,
0,
'F',
1319,
15,
15369,
'F',
1319,
588,
15369,
'F',
9,
692,
41,
'F',
9,
2317,
212,
'F',
9,
2722,
15133,
'F',
597,
692,
41,
'F',
597,
2316,
15537,
'F',
20,
692,
41,
'F',
2508,
609,
3251,
'F',
2508,
15,
3253,
'F',
2508,
588,
3253,
'F',
2508,
2559,
154,
'F',
1699,
17,
7424,
'F',
1699,
54,
7424,
'F',
1753,
2799,
838,
'F',
1762,
2799,
838,
'F',
1762,
2800,
4900,
'F',
1762,
2801,
4901,
'F',
1560,
2802,
1560,
'F',
1560,
2803,
1562,
'F',
1543,
2799,
838,
'F',
1543,
2804,
208,
'F',
1857,
2805,
10069,
'F',
1857,
2806,
10068,
'F',
1857,
2322,
10071,
'F',
1857,
2323,
10070,
'F',
1855,
2805,
10069,
'F',
1855,
2806,
10068,
'F',
1855,
2322,
10071,
'F',
1855,
2323,
10070,
'F',
2500,
692,
41,
'F',
2500,
2316,
9950,
'F',
2643,
692,
41,
'F',
1923,
1263,
4878,
'C',
1849,
2807,
0,
'F',
1923,
2799,
838,
'F',
1923,
1628,
11933,
'F',
1923,
2400,
1476,
'S',
2044,
2808,
1479,
'F',
1923,
2328,
11952,
'F',
1987,
2799,
838,
'F',
1401,
2809,
4905,
'F',
1401,
2810,
1502,
'F',
1917,
2811,
6966,
'S',
1917,
2812,
6967,
'F',
1917,
2813,
6967,
'C',
2814,
2815,
0,
'C',
2814,
2816,
0,
'C',
2814,
2817,
0,
'F',
1917,
2799,
838,
'F',
1917,
2818,
6964,
'F',
1917,
2819,
6177,
'F',
1917,
2810,
1502,
'F',
1917,
2820,
1484,
'F',
2631,
692,
41,
'F',
2631,
2055,
8269,
'F',
2043,
2799,
838,
'F',
1474,
2821,
582,
'F',
1507,
2821,
582,
'F',
2031,
54,
8725,
'F',
2022,
2799,
838,
'F',
2829,
2386,
1496,
'V',
2829,
2822,
0,
'S',
2829,
2823,
0,
'V',
2829,
2824,
0,
'S',
2829,
2825,
0,
'V',
2829,
2826,
0,
'S',
2829,
2827,
0,
'F',
2039,
2828,
8973,
'F',
2190,
2829,
14397,
'F',
445,
2830,
14527,
'F',
428,
2536,
14785,
'F',
2039,
2831,
8972,
'C',
2832,
2833,
0,
'C',
2832,
2834,
0,
'F',
2829,
2835,
6173,
'F',
2830,
2836,
473,
'F',
2603,
2837,
8232,
'F',
2830,
2838,
8276,
'F',
2603,
2839,
8228,
'F',
2603,
2840,
8230,
'F',
60,
2841,
15177,
'F',
1917,
2836,
473,
'F',
2829,
2820,
1484,
'F',
2829,
2316,
8653,
'F',
2603,
692,
41,
'S',
2603,
2842,
0,
'F',
2603,
2317,
212,
'F',
2603,
5,
43,
'F',
2830,
2302,
4207,
'F',
2830,
1941,
8290,
'F',
2830,
2810,
1502,
'F',
1454,
2105,
3631,
'F',
2830,
1354,
444,
'F',
546,
1428,
14273,
'C',
1365,
2843,
0,
'F',
2830,
2396,
210,
'F',
2830,
2835,
6173,
'F',
2603,
2844,
8235,
'F',
2830,
2025,
3947,
'F',
2830,
2809,
4905,
'F',
2830,
2413,
2683,
'C',
1365,
2845,
0,
'F',
1454,
17,
3651,
'F',
1454,
54,
3651,
'F',
2722,
17,
3702,
'F',
2722,
54,
3702,
'F',
2722,
15,
3701,
'F',
2722,
8,
3698,
'F',
2722,
664,
3698,
'F',
2722,
2481,
3708,
'F',
2722,
2490,
3704,
'S',
2722,
2846,
0,
'F',
2722,
2317,
212,
'F',
2722,
5,
43,
'F',
2722,
692,
41,
'F',
1459,
17,
3680,
'F',
1390,
17,
8258,
'F',
1657,
17,
11081,
'F',
1657,
54,
11081,
'F',
147,
2847,
13038,
'C',
1602,
2848,
0,
'S',
1657,
2849,
0,
'C',
1602,
2850,
0,
'F',
1760,
54,
7712,
'F',
1226,
2799,
838,
'F',
1227,
2799,
838,
'F',
1274,
2799,
838,
'F',
1276,
2799,
838,
'F',
2806,
2313,
1546,
'F',
2806,
2311,
4188,
'S',
2806,
2851,
0,
'S',
2806,
2852,
0,
'S',
2806,
2853,
0,
'S',
2806,
2854,
0,
'S',
2806,
2855,
0,
'S',
2806,
2856,
0,
'F',
2806,
1516,
1550,
'F',
1556,
2799,
838,
'F',
1556,
2857,
5275,
'F',
1433,
2799,
838,
'F',
1544,
2858,
3873,
'F',
1544,
2804,
208,
'F',
2824,
2312,
1554,
'F',
2824,
1523,
1542,
'F',
1581,
17,
5201,
'F',
2856,
2802,
1560,
'F',
2856,
2803,
1562,
'F',
2856,
2309,
1558,
'F',
1225,
2799,
838,
'F',
2914,
692,
41,
'F',
2904,
692,
41,
'F',
2909,
692,
41,
'F',
2913,
692,
41,
'F',
2913,
2317,
212,
'F',
2913,
5,
43,
'F',
2907,
692,
41,
'F',
2662,
692,
41,
'F',
2908,
692,
41,
'F',
2915,
692,
41,
'F',
2945,
947,
4237,
'F',
2945,
888,
4236,
'F',
3740,
705,
7635,
'F',
3740,
2559,
154,
'F',
2956,
947,
4237,
'F',
2956,
888,
4236,
'F',
2944,
888,
4236,
'F',
2944,
947,
4237,
'F',
2790,
862,
4235,
'C',
103,
2859,
0,
'F',
3738,
862,
4235,
'C',
103,
2860,
0,
'F',
3738,
705,
7635,
'F',
289,
2578,
13717,
'F',
287,
2578,
13717,
'F',
285,
2578,
13719,
'F',
279,
2578,
13719,
'F',
277,
2578,
13721,
'F',
272,
2578,
13721,
'F',
3020,
947,
4237,
'F',
3020,
888,
4236,
'F',
258,
2578,
13719,
'F',
252,
2578,
13717,
'F',
227,
2578,
13721,
'F',
191,
54,
12432,
'F',
2330,
17,
12758,
'F',
185,
2861,
12511,
'S',
185,
2862,
12510,
'F',
185,
2213,
12510,
'F',
3428,
193,
12680,
'F',
185,
2863,
12509,
'S',
185,
2864,
12508,
'F',
185,
2865,
12507,
'S',
185,
2866,
12506,
'F',
185,
2867,
12494,
'F',
3428,
2868,
12676,
'S',
202,
2869,
0,
'F',
174,
2868,
12639,
'F',
174,
2870,
12703,
'S',
174,
2871,
12470,
'S',
4045,
2871,
12470,
'C',
184,
2872,
0,
'S',
4047,
2871,
12470,
'C',
184,
2873,
0,
'F',
4045,
2874,
12470,
'F',
185,
2875,
12492,
'F',
3428,
966,
12674,
'F',
185,
2876,
12488,
'F',
185,
2877,
12646,
'S',
185,
2878,
0,
'F',
2331,
2879,
12743,
'F',
2331,
2880,
12740,
'F',
539,
2881,
12871,
'F',
539,
2882,
12861,
'S',
539,
2883,
0,
'F',
539,
2884,
12708,
'F',
3422,
2645,
12742,
'F',
3422,
2879,
12743,
'F',
3435,
2880,
12740,
'F',
174,
2885,
12469,
'S',
174,
2886,
12468,
'F',
174,
2861,
12511,
'S',
174,
2862,
12510,
'F',
174,
2863,
12509,
'S',
174,
2864,
12508,
'F',
174,
2865,
12507,
'S',
174,
2866,
12506,
'F',
3475,
2881,
12871,
'F',
3475,
2646,
12778,
'F',
3475,
997,
12599,
'F',
3475,
2649,
12501,
'F',
3475,
2650,
12691,
'F',
3475,
2651,
12579,
'F',
3475,
2652,
12582,
'F',
3475,
2653,
12558,
'F',
3475,
2656,
12553,
'F',
3475,
1174,
12561,
'F',
3475,
2659,
12848,
'F',
3475,
563,
12281,
'F',
3475,
588,
12873,
'F',
3475,
2699,
12779,
'S',
3475,
2887,
0,
'F',
3475,
2701,
12709,
'F',
3475,
2882,
12861,
'S',
3475,
2888,
0,
'F',
3475,
2702,
12859,
'S',
3475,
2889,
0,
'F',
3475,
2884,
12708,
'F',
3475,
2704,
12707,
'F',
3475,
2705,
12847,
'F',
3475,
1008,
12875,
'F',
3475,
2706,
12874,
'F',
3475,
2707,
12885,
'F',
3421,
2880,
12740,
'F',
3421,
1628,
12745,
'F',
2801,
947,
4237,
'F',
1704,
795,
8285,
'F',
3552,
888,
4236,
'F',
3552,
947,
4237,
'F',
875,
54,
13086,
'F',
590,
54,
13160,
'F',
3841,
872,
5277,
'F',
3841,
609,
3850,
'F',
885,
1324,
5499,
'C',
51,
2890,
0,
'C',
51,
2891,
0,
'F',
885,
795,
8285,
'F',
3559,
888,
4236,
'F',
590,
2892,
13166,
'F',
3559,
947,
4237,
'F',
3842,
692,
41,
'F',
3842,
1324,
5499,
'F',
3842,
2559,
154,
'F',
3842,
795,
8285,
'F',
3842,
647,
11479,
'F',
3842,
1321,
9959,
'F',
3842,
1413,
3851,
'F',
3842,
588,
3849,
'F',
1111,
17,
13653,
'F',
3629,
888,
4236,
'F',
3629,
947,
4237,
'F',
105,
2893,
15305,
'F',
59,
2894,
5633,
'F',
96,
2893,
15305,
'F',
96,
1182,
15078,
'F',
6,
2895,
15509,
'F',
81,
2894,
5633,
'F',
77,
1324,
5499,
'C',
28,
2896,
0,
'F',
77,
795,
8285,
'F',
3640,
888,
4236,
'F',
3640,
947,
4237,
'F',
60,
2897,
15152,
'F',
97,
2897,
15152,
'F',
55,
886,
15378,
'C',
28,
2898,
0,
'F',
925,
2899,
15640,
'F',
925,
2900,
15639,
'F',
925,
2901,
15637,
'F',
638,
2895,
15509,
'F',
823,
2899,
15640,
'F',
823,
2900,
15639,
'F',
823,
2901,
15637,
'F',
823,
2764,
15636,
'F',
823,
2763,
15635,
'F',
823,
2759,
15632,
'F',
823,
2762,
7786,
'F',
823,
2758,
7787,
'F',
5,
2895,
15509,
'F',
2051,
2474,
8740,
'F',
2051,
2465,
8744,
'F',
457,
2902,
14222,
'F',
457,
2903,
14224,
'F',
2829,
2904,
1498,
'F',
3939,
692,
41,
'F',
3939,
2498,
4208,
'F',
2830,
2905,
1500,
'F',
2830,
2904,
1498,
'F',
3946,
692,
41,
'F',
3917,
8,
10705,
'F',
3917,
664,
10705,
'F',
3917,
17,
437,
'F',
3917,
54,
437,
'F',
3917,
839,
10706,
'F',
3918,
54,
437,
'C',
2832,
2906,
0,
'F',
3918,
2317,
212,
'F',
3918,
5,
43,
'F',
3918,
692,
41,
'F',
3918,
17,
437,
'F',
3967,
692,
41,
'S',
3967,
2907,
0,
'F',
3967,
17,
11069,
'F',
3890,
692,
41,
'F',
3892,
692,
41,
'F',
2806,
2908,
5321,
'F',
2824,
1857,
5323,
'F',
441,
1628,
7341,
'F',
4013,
947,
4237,
'F',
4013,
888,
4236,
'F',
4015,
947,
4237,
'F',
4015,
888,
4236,
'F',
690,
1321,
6052,
'F',
280,
1321,
6052,
'F',
238,
1321,
6052,
'F',
288,
1321,
6052,
'F',
216,
1321,
6052,
'F',
273,
1321,
6052,
'F',
253,
1321,
6052,
'F',
220,
1321,
6052,
'F',
259,
1321,
6052,
'F',
211,
1321,
6052,
'F',
228,
1321,
6052,
'F',
4045,
2885,
12469,
'S',
4045,
2886,
12468,
'F',
4045,
2909,
12468,
'F',
3475,
1009,
12890,
'F',
151,
1321,
6052,
'F',
4108,
1321,
6052,
'S',
4108,
2910,
0,
'F',
4108,
862,
4235,
'C',
51,
2911,
0,
'C',
51,
2912,
0,
'F',
875,
1321,
6052,
'F',
590,
1321,
6052,
'F',
1528,
1321,
6052,
'F',
4132,
862,
4235,
'F',
23,
1321,
6052,
'F',
4109,
2559,
154,
'F',
113,
1321,
6052,
'F',
4139,
862,
4235,
'C',
28,
2913,
0,
'F',
75,
1321,
6052,
'F',
21,
1321,
6052,
'F',
4132,
2559,
154,
'C',
28,
2914,
0,
'F',
3917,
2915,
10691,
'F',
4169,
2915,
10691,
'F',
1223,
1857,
1,
'S',
4224,
2916,
0,
'C',
2917,
2918,
0,
'C',
2919,
2920,
0,
'C',
1195,
2921,
0,
'C',
2922,
2923,
0,
'C',
2924,
2925,
0,
'C',
32,
2926,
0,
'C',
2919,
2927,
0,
'F',
4228,
588,
750,
'S',
4224,
2928,
0,
'S',
4234,
2929,
0,
'C',
2930,
2931,
0,
'S',
4236,
2932,
0,
'C',
2933,
2934,
0,
'F',
441,
2935,
14365,
'C',
2936,
2937,
0,
'S',
4240,
2938,
0,
'C',
2939,
2940,
0,
'C',
2922,
2941,
0,
'C',
2942,
2943,
0,
'C',
2936,
2944,
0,
'C',
2936,
2945,
0,
'C',
2917,
2946,
0,
'C',
2917,
2947,
0,
'C',
2948,
2949,
0,
'C',
2950,
2951,
0,
'C',
2952,
2953,
0,
'C',
2954,
2955,
0,
'C',
2954,
2956,
0,
'C',
2957,
2958,
0,
'C',
2959,
2960,
0,
'C',
2961,
2962,
0,
'C',
2963,
2964,
0,
'C',
2965,
2966,
0,
'C',
2967,
2968,
0,
'C',
2969,
2970,
0,
'C',
2971,
2972,
0,
'C',
2973,
2974,
0,
'C',
2975,
2976,
0,
'C',
2977,
2978,
0,
'C',
2979,
2980,
0,
'C',
2981,
2982,
0,
'C',
2983,
2984,
0,
'C',
2985,
2986,
0,
'C',
2987,
2988,
0,
'C',
2989,
2990,
0,
'C',
2991,
2992,
0,
'C',
2993,
2994,
0,
'C',
2995,
2996,
0,
'C',
2997,
2998,
0,
'C',
2999,
3000,
0,
'F',
441,
3001,
14363,
'F',
4276,
3002,
11001,
'C',
3003,
2110,
0,
'C',
3004,
3005,
0,
'C',
3006,
3007,
0,
'C',
3006,
3008,
0,
'C',
3006,
3009,
0,
'C',
3006,
3010,
0,
'F',
441,
3011,
14360,
'F',
441,
3012,
14361,
'F',
441,
3013,
14362,
'S',
4236,
3014,
0,
'C',
3015,
3016,
0,
'S',
4234,
3017,
0,
'F',
441,
3018,
14367,
'F',
4205,
947,
4237,
'F',
4206,
888,
4236,
'F',
4219,
947,
4237,
'F',
4219,
888,
4236,
'F',
4215,
888,
4236,
'F',
1319,
422,
15363,
'F',
1319,
420,
15362,
'F',
55,
3019,
15384,
'F',
4215,
947,
4237,
'F',
4242,
2317,
212,
'F',
4242,
3020,
5651,
'F',
4242,
5,
43,
'F',
4276,
2799,
838,
'F',
4276,
2317,
212,
'F',
4276,
5,
43,
'S',
2577,
3021,
0,
'F',
4277,
692,
41,
'F',
4277,
2317,
212,
'F',
4280,
2317,
212,
'F',
4277,
5,
43,
'F',
4280,
5,
43,
'F',
4228,
692,
41,
'F',
4228,
2317,
212,
'F',
4228,
5,
43,
'S',
2577,
3022,
0,
'F',
4281,
692,
41,
'F',
4279,
692,
41,
'F',
4279,
17,
10602,
'F',
4280,
692,
41,
'F',
4236,
2317,
212,
'F',
4236,
5,
43,
'F',
4286,
5,
43,
'F',
4254,
5,
43,
'F',
4254,
2317,
212,
'F',
4249,
5,
43,
'F',
4249,
2317,
212,
'F',
4269,
5,
43,
'F',
4269,
2317,
212,
'F',
4224,
2317,
212,
'F',
4224,
5,
43,
'F',
4246,
5,
43,
'F',
4238,
5,
43,
'F',
4252,
5,
43,
'F',
4253,
5,
43,
'F',
4255,
5,
43,
'F',
4257,
5,
43,
'F',
4258,
5,
43,
'F',
4234,
5,
43,
'F',
4259,
5,
43,
'F',
4262,
5,
43,
'F',
4265,
5,
43,
'F',
4266,
5,
43,
'F',
4268,
5,
43,
'F',
4245,
692,
41,
'F',
4246,
2799,
838,
'F',
4246,
2317,
212,
'F',
4286,
2317,
212,
'F',
4273,
5,
43,
'F',
4273,
2317,
212,
'F',
4270,
5,
43,
'F',
4270,
2317,
212,
'F',
4253,
2317,
212,
'F',
4262,
2317,
212,
'F',
4252,
2317,
212,
'F',
4264,
5,
43,
'F',
4264,
2317,
212,
'F',
4256,
2317,
212,
'F',
4256,
3023,
2039,
'C',
2965,
3024,
0,
'C',
2965,
3025,
0,
'C',
2965,
3026,
0,
'S',
4256,
3027,
0,
'F',
4256,
5,
43,
'F',
4272,
5,
43,
'F',
4272,
2317,
212,
'F',
4261,
5,
43,
'F',
4261,
2317,
212,
'F',
4250,
5,
43,
'F',
4250,
2317,
212,
'F',
4251,
692,
41,
'F',
4260,
5,
43,
'F',
4260,
2317,
212,
'F',
4271,
5,
43,
'F',
4271,
2317,
212,
'F',
4266,
2317,
212,
'F',
4259,
2317,
212,
'F',
4234,
2317,
212,
'F',
4240,
5,
43,
'F',
4240,
2317,
212,
'F',
4255,
2317,
212,
'F',
4238,
2317,
212,
'C',
3028,
3029,
0,
'C',
3030,
3031,
0,
'C',
3030,
3032,
0,
'F',
4243,
692,
41,
'F',
4244,
692,
41,
'F',
4267,
5,
43,
'F',
4267,
2317,
212,
'F',
4263,
5,
43,
'F',
4263,
2317,
212,
'F',
4268,
2317,
212,
'F',
4258,
2317,
212,
'F',
4265,
2317,
212,
'F',
4257,
2317,
212,
'F',
4230,
692,
41,
'F',
4226,
1553,
1566,
'C',
1195,
3033,
0,
'S',
4395,
3034,
0,
'F',
4380,
692,
41,
'F',
4380,
2317,
212,
'F',
4380,
5,
43,
'F',
4381,
8,
10570,
'F',
4381,
664,
10570,
'F',
4381,
17,
10563,
'F',
4381,
54,
10563,
'F',
4381,
839,
10571,
'F',
4382,
54,
10563,
'F',
2222,
839,
14309,
'C',
3030,
3035,
0,
'F',
4382,
2317,
212,
'F',
4382,
5,
43,
'F',
4382,
692,
41,
'F',
4382,
17,
10563,
'F',
4225,
3036,
3,
'C',
2919,
3037,
0,
'C',
1195,
3038,
0,
'F',
4395,
2857,
5275,
'F',
4395,
2504,
5196,
'F',
4395,
2506,
5200,
'F',
4395,
1432,
5273,
'F',
4395,
2312,
1554,
'F',
1556,
3039,
5286,
'F',
4395,
2311,
4188,
'F',
4395,
2908,
5321,
'F',
4395,
1857,
5323,
'F',
4229,
3036,
3,
'C',
32,
3040,
0,
'F',
4381,
3041,
10553,
'F',
4407,
3041,
10553,
'F',
4413,
1857,
9,
'F',
4413,
3042,
138,
'C',
3043,
3044,
0,
'C',
1195,
3045,
0,
'C',
1195,
3046,
0,
'C',
2919,
3047,
0,
'C',
3048,
3049,
0,
'C',
3048,
3050,
0,
'F',
4413,
3051,
132,
'F',
4413,
3052,
133,
'C',
3053,
3054,
0,
'S',
4438,
3055,
0,
'S',
4438,
3056,
0,
'S',
4413,
3057,
136,
'S',
4413,
3058,
134,
'S',
4413,
3059,
0,
'C',
3060,
3061,
0,
'C',
3060,
3062,
0,
'C',
3063,
3064,
0,
'C',
3065,
3066,
0,
'C',
3065,
3067,
0,
'C',
3065,
3068,
0,
'C',
3065,
3069,
0,
'C',
3043,
3070,
0,
'S',
4447,
3071,
0,
'S',
1546,
3072,
0,
'C',
3073,
3074,
0,
'S',
4449,
3075,
0,
'C',
3076,
3077,
0,
'C',
3076,
3078,
0,
'C',
3076,
3079,
0,
'C',
3076,
3080,
0,
'C',
3081,
3082,
0,
'S',
4456,
3083,
0,
'S',
4451,
3084,
0,
'C',
3076,
3085,
0,
'C',
3043,
3086,
0,
'S',
4457,
3087,
0,
'C',
3081,
3088,
0,
'C',
1195,
3089,
0,
'F',
4413,
3090,
134,
'C',
3091,
3092,
0,
'C',
3093,
3094,
0,
'C',
3095,
3096,
0,
'C',
3091,
3097,
0,
'C',
449,
3098,
0,
'F',
4413,
3099,
136,
'S',
4476,
3100,
0,
'C',
3101,
3102,
0,
'S',
4476,
3103,
0,
'C',
3104,
3105,
0,
'C',
3106,
3107,
0,
'C',
2814,
3108,
0,
'S',
4476,
3109,
0,
'F',
1556,
3110,
5212,
'C',
1655,
3111,
0,
'C',
1655,
3112,
0,
'C',
1655,
3113,
0,
'C',
1655,
3114,
0,
'S',
4486,
3115,
0,
'S',
4413,
3116,
0,
'S',
4413,
3117,
0,
'C',
3118,
3119,
0,
'C',
3120,
3121,
0,
'C',
3122,
3123,
0,
'F',
4413,
3124,
7,
'S',
4225,
3125,
0,
'C',
3126,
3127,
0,
'C',
3043,
3128,
0,
'S',
4225,
3129,
0,
'C',
3130,
3131,
0,
'C',
3132,
3133,
0,
'C',
3132,
3134,
0,
'C',
3132,
3135,
0,
'F',
4414,
2857,
793,
'F',
4414,
1940,
791,
'F',
4414,
2506,
1201,
'F',
4414,
3136,
433,
'F',
4414,
3124,
7,
'F',
4425,
1857,
9,
'C',
3137,
3138,
0,
'C',
3139,
3140,
0,
'S',
4509,
3141,
0,
'C',
3142,
3143,
0,
'C',
3144,
3145,
0,
'C',
3146,
3147,
0,
'C',
3148,
3149,
0,
'C',
3150,
3151,
0,
'C',
3152,
3153,
0,
'C',
3152,
3154,
0,
'C',
1195,
3155,
0,
'S',
4516,
3156,
0,
'C',
3152,
3157,
0,
'C',
1195,
3158,
0,
'C',
3159,
3160,
0,
'C',
2954,
3161,
0,
'C',
3162,
3163,
0,
'C',
449,
3164,
0,
'C',
449,
3165,
0,
'C',
3166,
3167,
0,
'C',
3162,
3168,
0,
'C',
3162,
3169,
0,
'C',
3162,
3170,
0,
'C',
3171,
3172,
0,
'S',
4425,
3173,
0,
'S',
4425,
3174,
0,
'C',
3175,
3176,
0,
'F',
4536,
967,
4463,
'C',
3171,
3177,
0,
'F',
4414,
3178,
5178,
'S',
4425,
3179,
0,
'F',
4536,
2376,
4458,
'C',
3162,
3180,
0,
'C',
3181,
3182,
0,
'C',
449,
3183,
0,
'C',
449,
3184,
0,
'F',
4545,
2376,
4458,
'C',
1476,
3185,
0,
'S',
4425,
3186,
0,
'F',
4536,
3187,
4457,
'F',
4425,
3188,
11,
'S',
697,
3189,
0,
'C',
3190,
1504,
0,
'C',
3190,
3191,
0,
'C',
3190,
3192,
0,
'C',
3190,
3193,
0,
'S',
4553,
3194,
0,
'C',
3190,
3195,
0,
'F',
4555,
3196,
54,
'F',
4551,
3197,
49,
'C',
3190,
3198,
0,
'F',
4555,
3199,
52,
'F',
4553,
3196,
17,
'F',
4553,
3200,
27,
'F',
4563,
3201,
3236,
'C',
3202,
3203,
0,
'F',
4565,
3204,
3598,
'C',
3205,
3206,
0,
'F',
4565,
3207,
3600,
'F',
4565,
3208,
3602,
'F',
4553,
3209,
29,
'C',
3210,
3211,
0,
'C',
3210,
3212,
0,
'C',
3210,
3213,
0,
'C',
3210,
3214,
0,
'S',
4574,
3215,
0,
'C',
3210,
3216,
0,
'V',
4576,
3217,
0,
'C',
3218,
33,
0,
'S',
4576,
3219,
0,
'F',
4579,
3220,
7436,
'C',
3218,
3221,
0,
'F',
4579,
3222,
7452,
'F',
4579,
3223,
7454,
'F',
4579,
3224,
7456,
'F',
55,
3225,
15376,
'C',
3210,
3226,
0,
'S',
4584,
3227,
0,
'F',
4579,
3228,
7463,
'S',
4588,
3229,
0,
'C',
3230,
33,
0,
'S',
4588,
3231,
0,
'S',
4588,
3232,
0,
'S',
4588,
3233,
0,
'S',
4588,
3234,
0,
'S',
4588,
3235,
0,
'S',
4588,
3236,
0,
'S',
4588,
3237,
0,
'S',
4588,
3238,
0,
'S',
4588,
3239,
0,
'S',
4588,
3240,
0,
'S',
4588,
3241,
0,
'S',
4588,
3242,
0,
'V',
4602,
3243,
0,
'C',
3244,
3245,
0,
'S',
4602,
3246,
0,
'V',
4605,
3243,
0,
'C',
3247,
3248,
0,
'S',
4605,
3246,
0,
'V',
4565,
3243,
0,
'S',
4565,
3246,
0,
'F',
4579,
3249,
7438,
'F',
4579,
3250,
7458,
'F',
4579,
3251,
7460,
'S',
4579,
3252,
0,
'S',
4579,
3253,
0,
'C',
3218,
3254,
0,
'C',
3218,
3255,
0,
'S',
4614,
3256,
0,
'S',
4565,
3257,
0,
'S',
4565,
3258,
0,
'S',
4620,
3259,
0,
'C',
3210,
3260,
0,
'S',
4565,
3261,
0,
'S',
4576,
3262,
0,
'V',
4576,
3263,
0,
'S',
4576,
3264,
0,
'F',
59,
3265,
15448,
'S',
4576,
3266,
0,
'S',
4576,
3267,
0,
'F',
59,
3268,
15446,
'S',
59,
3269,
0,
'S',
59,
3270,
0,
'S',
59,
3271,
0,
'C',
3218,
3272,
0,
'S',
4605,
3273,
0,
'S',
4605,
3274,
0,
'S',
4602,
3275,
0,
'S',
4602,
3276,
0,
'V',
4638,
3243,
0,
'C',
3277,
3278,
0,
'S',
4638,
3246,
0,
'V',
4641,
3243,
0,
'C',
3279,
3280,
0,
'S',
4641,
3246,
0,
'S',
4641,
3281,
0,
'V',
4641,
3282,
0,
'S',
4641,
3283,
0,
'S',
4641,
3284,
0,
'S',
4648,
3285,
0,
'C',
3210,
3286,
0,
'C',
3287,
3288,
0,
'C',
3289,
3290,
0,
'F',
4641,
3291,
3571,
'S',
4638,
3292,
0,
'S',
4638,
3293,
0,
'S',
4655,
3294,
0,
'C',
3210,
3295,
0,
'V',
4657,
3243,
0,
'C',
3296,
3297,
0,
'S',
4657,
3246,
0,
'V',
4660,
3243,
0,
'C',
3298,
3299,
0,
'S',
4660,
3246,
0,
'V',
4663,
3243,
0,
'C',
3300,
3301,
0,
'S',
4663,
3246,
0,
'S',
4663,
3302,
0,
'S',
4663,
3303,
0,
'C',
3304,
3305,
0,
'C',
3306,
3307,
0,
'C',
3308,
3309,
0,
'S',
4660,
3310,
0,
'S',
4660,
3311,
0,
'S',
4660,
3312,
0,
'S',
4657,
3313,
0,
'S',
4657,
3314,
0,
'V',
4676,
3243,
0,
'C',
3315,
3316,
0,
'S',
4676,
3246,
0,
'V',
4679,
3243,
0,
'C',
3317,
3318,
0,
'S',
4679,
3246,
0,
'S',
4679,
3319,
0,
'C',
3320,
3321,
0,
'S',
4676,
3322,
0,
'V',
4685,
3243,
0,
'C',
3323,
3324,
0,
'S',
4685,
3246,
0,
'S',
4685,
3325,
0,
'S',
4685,
3326,
0,
'S',
4690,
3327,
0,
'C',
3210,
3157,
0,
'V',
4692,
3243,
0,
'C',
3328,
3329,
0,
'S',
4692,
3246,
0,
'V',
4695,
3243,
0,
'C',
3330,
3331,
0,
'S',
4695,
3246,
0,
'V',
4698,
3243,
0,
'C',
3332,
3333,
0,
'S',
4698,
3246,
0,
'S',
4698,
3334,
0,
'S',
4698,
3335,
0,
'C',
3336,
3337,
0,
'S',
4698,
3338,
0,
'S',
4698,
3339,
0,
'C',
3340,
3341,
0,
'S',
4705,
3342,
0,
'S',
4695,
3343,
0,
'S',
4695,
3344,
0,
'S',
4695,
3345,
0,
'S',
4695,
3346,
0,
'S',
4695,
3347,
0,
'S',
4692,
3348,
0,
'V',
4692,
3349,
0,
'S',
4692,
3350,
0,
'S',
4692,
3351,
0,
'S',
4692,
3352,
0,
'V',
4718,
3243,
0,
'C',
3353,
3354,
0,
'S',
4718,
3246,
0,
'V',
4721,
3243,
0,
'C',
3355,
3356,
0,
'S',
4721,
3246,
0,
'S',
4721,
3357,
0,
'S',
4718,
3358,
0,
'V',
4726,
3243,
0,
'C',
3359,
3360,
0,
'S',
4726,
3246,
0,
'V',
4729,
3243,
0,
'C',
3361,
3362,
0,
'S',
4729,
3246,
0,
'S',
4729,
3363,
0,
'C',
3364,
3365,
0,
'S',
4726,
3366,
0,
'S',
4726,
3367,
0,
'V',
4736,
3243,
0,
'C',
3368,
3369,
0,
'S',
4736,
3246,
0,
'V',
4739,
3243,
0,
'C',
3370,
3371,
0,
'S',
4739,
3246,
0,
'V',
4742,
3243,
0,
'C',
3372,
3373,
0,
'S',
4742,
3246,
0,
'V',
4745,
3243,
0,
'C',
3374,
3375,
0,
'S',
4745,
3246,
0,
'V',
4748,
3243,
0,
'C',
3376,
3377,
0,
'S',
4748,
3246,
0,
'V',
4751,
3243,
0,
'C',
3378,
3379,
0,
'S',
4751,
3246,
0,
'V',
4754,
3243,
0,
'C',
3380,
3381,
0,
'S',
4754,
3246,
0,
'V',
4757,
3243,
0,
'C',
3382,
3383,
0,
'S',
4757,
3246,
0,
'V',
4760,
3243,
0,
'C',
3384,
3385,
0,
'S',
4760,
3246,
0,
'V',
4763,
3243,
0,
'C',
3386,
3387,
0,
'S',
4763,
3246,
0,
'V',
4766,
3243,
0,
'C',
3388,
3389,
0,
'S',
4766,
3246,
0,
'V',
4769,
3243,
0,
'C',
3390,
3391,
0,
'S',
4769,
3246,
0,
'V',
4772,
3243,
0,
'C',
3392,
3393,
0,
'S',
4772,
3246,
0,
'V',
4775,
3243,
0,
'C',
3394,
3395,
0,
'S',
4775,
3246,
0,
'V',
4778,
3243,
0,
'C',
3396,
3397,
0,
'S',
4778,
3246,
0,
'V',
4781,
3243,
0,
'C',
3398,
3399,
0,
'S',
4781,
3246,
0,
'V',
4784,
3243,
0,
'C',
3400,
3401,
0,
'S',
4784,
3246,
0,
'V',
4787,
3243,
0,
'C',
3402,
3403,
0,
'S',
4787,
3246,
0,
'V',
4790,
3243,
0,
'C',
3404,
3405,
0,
'S',
4790,
3246,
0,
'V',
4793,
3243,
0,
'C',
3406,
3407,
0,
'S',
4793,
3246,
0,
'V',
4796,
3243,
0,
'C',
3408,
3409,
0,
'S',
4796,
3246,
0,
'V',
4799,
3243,
0,
'C',
3410,
3411,
0,
'S',
4799,
3246,
0,
'V',
4802,
3243,
0,
'C',
3412,
3413,
0,
'S',
4802,
3246,
0,
'V',
4805,
3243,
0,
'C',
3414,
3415,
0,
'S',
4805,
3246,
0,
'V',
4808,
3243,
0,
'C',
3416,
3417,
0,
'S',
4808,
3246,
0,
'V',
4811,
3243,
0,
'C',
3418,
3419,
0,
'S',
4811,
3246,
0,
'V',
4814,
3243,
0,
'C',
3420,
3421,
0,
'S',
4814,
3246,
0,
'V',
4817,
3243,
0,
'C',
3422,
3423,
0,
'S',
4817,
3246,
0,
'V',
4820,
3243,
0,
'C',
3424,
3425,
0,
'S',
4820,
3246,
0,
'V',
4823,
3243,
0,
'C',
3426,
3427,
0,
'S',
4823,
3246,
0,
'V',
4826,
3243,
0,
'C',
3428,
3429,
0,
'S',
4826,
3246,
0,
'V',
4829,
3243,
0,
'C',
3430,
3431,
0,
'S',
4829,
3246,
0,
'V',
4832,
3243,
0,
'C',
3432,
3433,
0,
'S',
4832,
3246,
0,
'V',
4835,
3243,
0,
'C',
3434,
3435,
0,
'S',
4835,
3246,
0,
'V',
4838,
3243,
0,
'C',
3436,
3437,
0,
'S',
4838,
3246,
0,
'V',
4841,
3243,
0,
'C',
3438,
3439,
0,
'S',
4841,
3246,
0,
'V',
4844,
3243,
0,
'C',
3440,
3441,
0,
'S',
4844,
3246,
0,
'V',
4847,
3243,
0,
'C',
3442,
3443,
0,
'S',
4847,
3246,
0,
'V',
4850,
3243,
0,
'C',
3444,
3445,
0,
'S',
4850,
3246,
0,
'V',
4853,
3243,
0,
'C',
3446,
3447,
0,
'S',
4853,
3246,
0,
'V',
4856,
3243,
0,
'C',
3448,
3449,
0,
'S',
4856,
3246,
0,
'S',
4856,
3450,
0,
'S',
4856,
3451,
0,
'S',
4861,
640,
0,
'C',
28,
3452,
0,
'S',
4863,
3453,
0,
'C',
3454,
33,
0,
'S',
4856,
3455,
0,
'S',
4856,
3456,
0,
'C',
3457,
3458,
0,
'S',
4856,
3459,
0,
'V',
4869,
3460,
0,
'C',
28,
3461,
0,
'S',
4869,
3462,
0,
'S',
4869,
3463,
0,
'S',
4869,
3464,
0,
'S',
4869,
844,
0,
'C',
3465,
3466,
0,
'C',
3457,
3467,
0,
'S',
4874,
3468,
0,
'S',
4878,
3469,
0,
'C',
3470,
33,
0,
'F',
4875,
3471,
3499,
'F',
0,
3472,
0,
'F',
4874,
3473,
3491,
'F',
4875,
3474,
3501,
'F',
4874,
3475,
3497,
'F',
4874,
3476,
3495,
'F',
4874,
3477,
3493,
'C',
3465,
3478,
0,
'C',
3457,
3479,
0,
'S',
4886,
3480,
0,
'S',
4890,
3481,
0,
'C',
3465,
33,
0,
'S',
4890,
3482,
0,
'C',
3465,
3483,
0,
'F',
4869,
1182,
15079,
'F',
4886,
3484,
3473,
'F',
75,
3485,
13796,
'F',
4886,
839,
3470,
'S',
4890,
3486,
0,
'F',
4886,
2374,
3472,
'F',
4887,
3487,
3469,
'F',
4901,
2374,
3465,
'C',
3465,
3488,
0,
'F',
4869,
2374,
15046,
'F',
4869,
3489,
15085,
'C',
3457,
3490,
0,
'S',
4901,
3491,
0,
'F',
4869,
3492,
15084,
'F',
4869,
1594,
7435,
'S',
4869,
3493,
0,
'F',
4869,
3494,
15055,
'S',
4869,
3495,
0,
'F',
4869,
3496,
15074,
'F',
4869,
664,
15070,
'F',
4869,
839,
15069,
'F',
4869,
3497,
15057,
'F',
4869,
3498,
15059,
'V',
4869,
3499,
0,
'S',
4869,
3500,
0,
'S',
4869,
3501,
0,
'S',
4869,
3502,
0,
'V',
4869,
3503,
0,
'V',
4869,
3504,
0,
'V',
4869,
3505,
0,
'F',
4869,
3506,
15076,
'S',
4869,
3507,
0,
'F',
4869,
3508,
15054,
'V',
4869,
3509,
0,
'S',
4869,
3510,
0,
'F',
4869,
3511,
15051,
'S',
4869,
3512,
0,
'V',
4869,
3513,
0,
'V',
4869,
3514,
0,
'V',
4869,
3515,
0,
'V',
4869,
3516,
0,
'V',
4869,
3517,
0,
'S',
117,
3518,
0,
'S',
4869,
3519,
0,
'S',
4869,
3520,
0,
'S',
4869,
3521,
0,
'S',
4869,
3522,
0,
'S',
4869,
3523,
0,
'S',
4861,
3524,
0,
'F',
4869,
3525,
15053,
'F',
4869,
4,
15067,
'S',
4861,
3526,
0,
'F',
4869,
1330,
15097,
'S',
4869,
3527,
0,
'V',
4869,
3528,
0,
'S',
4869,
3529,
0,
'F',
4869,
3530,
15065,
'F',
4869,
3531,
15061,
'F',
4869,
3532,
15063,
'F',
4869,
3533,
15049,
'F',
4901,
664,
3462,
'F',
4901,
2032,
3464,
'F',
4901,
3534,
3466,
'F',
4901,
1291,
3463,
'F',
4869,
1291,
15071,
'S',
4861,
3535,
0,
'F',
4869,
3536,
15088,
'F',
4869,
1120,
15083,
'F',
4869,
3537,
15086,
'F',
4869,
3538,
15047,
'S',
4964,
3539,
0,
'C',
28,
3540,
0,
'S',
4966,
3541,
0,
'C',
28,
3542,
0,
'F',
75,
3543,
15031,
'F',
4966,
3544,
15091,
'F',
4966,
3545,
15092,
'S',
4869,
3546,
0,
'F',
4966,
3547,
15109,
'S',
4869,
3548,
0,
'F',
4966,
3549,
15094,
'S',
4869,
3550,
0,
'S',
4966,
3551,
0,
'S',
4869,
3552,
0,
'F',
4869,
3553,
15095,
'F',
4869,
5,
43,
'S',
4869,
3554,
0,
'S',
117,
3555,
0,
'F',
4901,
839,
3461,
'F',
4869,
3556,
15068,
'F',
4901,
3557,
12253,
'S',
4890,
3558,
0,
'F',
4901,
5,
43,
'S',
4987,
3559,
0,
'C',
3210,
3560,
0,
'F',
4901,
3561,
12255,
'S',
4890,
3562,
0,
'S',
4878,
3563,
0,
'V',
4878,
3564,
0,
'S',
4878,
3565,
0,
'S',
4875,
3566,
0,
'S',
4869,
640,
0,
'S',
4869,
3567,
0,
'V',
4869,
3568,
0,
'S',
4869,
3569,
0,
'S',
4869,
3570,
0,
'S',
4869,
653,
0,
'S',
4853,
3450,
0,
'S',
4853,
3571,
0,
'S',
4853,
3572,
0,
'S',
4853,
3573,
0,
'S',
4853,
3574,
0,
'S',
4850,
3450,
0,
'S',
4850,
3575,
0,
'S',
4850,
3576,
0,
'S',
4850,
3577,
0,
'S',
4850,
3578,
0,
'S',
4847,
3450,
0,
'S',
4847,
3579,
0,
'S',
4847,
3580,
0,
'S',
4847,
3581,
0,
'S',
4847,
3582,
0,
'S',
4844,
3450,
0,
'S',
4844,
3583,
0,
'S',
4844,
3584,
0,
'S',
4844,
3585,
0,
'S',
4844,
3586,
0,
'S',
4841,
3450,
0,
'S',
4841,
3587,
0,
'S',
4841,
3588,
0,
'S',
4841,
3589,
0,
'S',
4841,
3590,
0,
'S',
4838,
3450,
0,
'S',
4838,
3591,
0,
'S',
4838,
3592,
0,
'S',
4838,
3593,
0,
'S',
4838,
3594,
0,
'S',
4835,
3450,
0,
'S',
4835,
3595,
0,
'S',
4835,
3596,
0,
'S',
4835,
3597,
0,
'S',
4835,
3598,
0,
'S',
4832,
3450,
0,
'S',
4832,
3599,
0,
'S',
4832,
3600,
0,
'S',
4832,
3601,
0,
'S',
4832,
3602,
0,
'S',
4829,
3450,
0,
'S',
4829,
3603,
0,
'S',
4829,
3604,
0,
'S',
4829,
3605,
0,
'S',
4829,
3606,
0,
'S',
4826,
3450,
0,
'S',
4826,
3607,
0,
'S',
4826,
3608,
0,
'S',
4826,
3609,
0,
'S',
4826,
3610,
0,
'S',
4823,
3450,
0,
'S',
4823,
3611,
0,
'S',
4823,
3612,
0,
'S',
4823,
3613,
0,
'S',
4823,
3614,
0,
'S',
4820,
3450,
0,
'S',
4820,
3615,
0,
'S',
4820,
3616,
0,
'S',
4820,
3617,
0,
'S',
4820,
3618,
0,
'S',
4817,
3450,
0,
'S',
4817,
3619,
0,
'S',
4817,
3620,
0,
'S',
4817,
3621,
0,
'S',
4817,
3622,
0,
'S',
4814,
3450,
0,
'S',
4814,
3623,
0,
'S',
4814,
3624,
0,
'S',
4814,
3625,
0,
'S',
4814,
3626,
0,
'S',
4811,
3627,
0,
'S',
4811,
3628,
0,
'S',
4811,
3629,
0,
'S',
4811,
3630,
0,
'S',
4811,
3631,
0,
'S',
4808,
3627,
0,
'S',
4808,
3632,
0,
'S',
4808,
3633,
0,
'S',
4808,
3634,
0,
'S',
4808,
3635,
0,
'S',
4805,
3627,
0,
'S',
4805,
3636,
0,
'S',
4805,
3637,
0,
'S',
4805,
3638,
0,
'S',
4805,
3639,
0,
'S',
4802,
3627,
0,
'S',
4802,
3640,
0,
'S',
4802,
3641,
0,
'S',
4802,
3642,
0,
'S',
4802,
3643,
0,
'S',
4799,
3627,
0,
'S',
4799,
3644,
0,
'S',
4799,
3645,
0,
'S',
4799,
3646,
0,
'S',
4799,
3647,
0,
'S',
4796,
3627,
0,
'S',
4796,
3648,
0,
'S',
4796,
3649,
0,
'S',
4796,
3650,
0,
'S',
4796,
3651,
0,
'S',
4793,
3627,
0,
'S',
4793,
3652,
0,
'S',
4793,
3653,
0,
'S',
4793,
3654,
0,
'S',
4793,
3655,
0,
'S',
4790,
3656,
0,
'S',
4790,
3657,
0,
'S',
4790,
3658,
0,
'S',
4790,
3659,
0,
'S',
4790,
3660,
0,
'S',
4787,
3656,
0,
'S',
4787,
3661,
0,
'S',
4787,
3662,
0,
'S',
4787,
3663,
0,
'S',
4787,
3664,
0,
'S',
4784,
3665,
0,
'S',
4784,
3666,
0,
'S',
4784,
3667,
0,
'S',
4784,
3668,
0,
'S',
4784,
3669,
0,
'S',
4781,
3665,
0,
'S',
4781,
3670,
0,
'S',
4781,
3671,
0,
'S',
4781,
3672,
0,
'S',
4781,
3673,
0,
'S',
4778,
3665,
0,
'S',
4778,
3674,
0,
'S',
4778,
3675,
0,
'S',
4778,
3676,
0,
'S',
4778,
3677,
0,
'S',
4775,
3678,
0,
'S',
4775,
3679,
0,
'S',
4775,
3680,
0,
'S',
4775,
3681,
0,
'S',
4775,
3682,
0,
'S',
4772,
3678,
0,
'S',
4772,
3683,
0,
'S',
4772,
3684,
0,
'S',
4772,
3685,
0,
'S',
4772,
3686,
0,
'S',
4769,
3678,
0,
'S',
4769,
3687,
0,
'S',
4769,
3688,
0,
'S',
4769,
3689,
0,
'S',
4769,
3690,
0,
'S',
4766,
3678,
0,
'S',
4766,
3691,
0,
'S',
4766,
3692,
0,
'S',
4766,
3693,
0,
'S',
4766,
3694,
0,
'S',
4763,
3678,
0,
'S',
4763,
3695,
0,
'S',
4763,
3696,
0,
'S',
4763,
3697,
0,
'S',
4763,
3698,
0,
'S',
4760,
3678,
0,
'S',
4760,
3699,
0,
'S',
4760,
3700,
0,
'S',
4760,
3701,
0,
'S',
4760,
3702,
0,
'S',
4757,
3678,
0,
'S',
4757,
3703,
0,
'S',
4757,
3704,
0,
'S',
4757,
3705,
0,
'S',
4757,
3706,
0,
'S',
4754,
3678,
0,
'S',
4754,
3707,
0,
'S',
4754,
3708,
0,
'S',
4754,
3709,
0,
'S',
4754,
3710,
0,
'S',
4751,
3678,
0,
'S',
4751,
3711,
0,
'S',
4751,
3712,
0,
'S',
4751,
3713,
0,
'S',
4751,
3714,
0,
'S',
4748,
3678,
0,
'S',
4748,
3715,
0,
'S',
4748,
3716,
0,
'S',
4748,
3717,
0,
'S',
4748,
3718,
0,
'S',
4745,
3678,
0,
'S',
4745,
3719,
0,
'S',
4745,
3720,
0,
'S',
4745,
3721,
0,
'S',
4745,
3722,
0,
'S',
4742,
3678,
0,
'S',
4742,
3723,
0,
'S',
4742,
3724,
0,
'S',
4742,
3725,
0,
'S',
4742,
3726,
0,
'S',
4739,
3678,
0,
'S',
4739,
3727,
0,
'S',
4739,
3728,
0,
'S',
4739,
3729,
0,
'S',
4739,
3730,
0,
'S',
4736,
3678,
0,
'S',
4736,
3731,
0,
'S',
4736,
3732,
0,
'S',
4736,
3733,
0,
'S',
4736,
3734,
0,
'V',
5201,
3243,
0,
'C',
3735,
3736,
0,
'S',
5201,
3246,
0,
'V',
5204,
3243,
0,
'C',
3737,
3738,
0,
'S',
5204,
3246,
0,
'V',
5207,
3243,
0,
'C',
3739,
3740,
0,
'S',
5207,
3246,
0,
'V',
5210,
3243,
0,
'C',
3741,
3742,
0,
'S',
5210,
3246,
0,
'V',
5213,
3243,
0,
'C',
3743,
3744,
0,
'S',
5213,
3246,
0,
'V',
5216,
3243,
0,
'C',
3745,
3746,
0,
'S',
5216,
3246,
0,
'V',
5219,
3243,
0,
'C',
3747,
3748,
0,
'S',
5219,
3246,
0,
'V',
5222,
3243,
0,
'C',
3749,
3750,
0,
'S',
5222,
3246,
0,
'V',
5225,
3243,
0,
'C',
3751,
3752,
0,
'S',
5225,
3246,
0,
'V',
5228,
3243,
0,
'C',
3753,
3754,
0,
'S',
5228,
3246,
0,
'V',
5231,
3243,
0,
'C',
3755,
3756,
0,
'S',
5231,
3246,
0,
'V',
5234,
3243,
0,
'C',
3757,
3758,
0,
'S',
5234,
3246,
0,
'V',
5237,
3243,
0,
'C',
3759,
3760,
0,
'S',
5237,
3246,
0,
'V',
5240,
3243,
0,
'C',
3761,
3762,
0,
'S',
5240,
3246,
0,
'V',
5243,
3243,
0,
'C',
3763,
3764,
0,
'S',
5243,
3246,
0,
'V',
5246,
3243,
0,
'C',
3765,
3766,
0,
'S',
5246,
3246,
0,
'V',
5249,
3243,
0,
'C',
3767,
3768,
0,
'S',
5249,
3246,
0,
'S',
5249,
3769,
0,
'C',
3770,
3771,
0,
'S',
5249,
3772,
0,
'C',
3773,
3774,
0,
'F',
5254,
3775,
7476,
'C',
3773,
3776,
0,
'F',
5249,
1306,
3439,
'F',
5256,
2591,
7502,
'S',
5246,
3777,
0,
'S',
5246,
3778,
0,
'F',
5246,
1306,
3422,
'V',
5243,
3779,
0,
'S',
5243,
3780,
0,
'S',
5243,
3781,
0,
'S',
5243,
3782,
0,
'C',
3783,
3784,
0,
'S',
5243,
3785,
0,
'S',
5266,
3786,
0,
'F',
5243,
3787,
3403,
'F',
5243,
1306,
3399,
'F',
5266,
1306,
3399,
'V',
5243,
3788,
0,
'S',
5243,
3789,
0,
'F',
5254,
3790,
7484,
'F',
5266,
3791,
7540,
'F',
5266,
1224,
7542,
'F',
5266,
3792,
7546,
'F',
5254,
3793,
7486,
'F',
5266,
3794,
7548,
'F',
5266,
3795,
7550,
'V',
5266,
3796,
0,
'S',
5266,
3797,
0,
'F',
5266,
3798,
7562,
'F',
5254,
3799,
7478,
'F',
5266,
3800,
7560,
'F',
5266,
3801,
7558,
'F',
5254,
3802,
7482,
'F',
5254,
3803,
7480,
'F',
5266,
3804,
7556,
'F',
5266,
3805,
7554,
'F',
5254,
3806,
7490,
'S',
5293,
3807,
0,
'C',
3773,
33,
0,
'V',
5293,
3808,
0,
'S',
5293,
3809,
0,
'F',
5254,
3810,
7488,
'V',
5266,
3811,
0,
'S',
5266,
3812,
0,
'F',
5266,
3813,
7544,
'F',
5254,
3814,
7492,
'C',
237,
3815,
0,
'S',
5293,
3816,
0,
'S',
283,
3817,
0,
'S',
5240,
3818,
0,
'F',
5240,
1306,
3399,
'S',
5237,
3818,
0,
'F',
5237,
1306,
3399,
'S',
5234,
3819,
0,
'C',
3820,
3821,
0,
'S',
5309,
3822,
0,
'F',
5309,
1306,
7506,
'S',
5231,
3819,
0,
'V',
5228,
3823,
0,
'S',
5228,
3824,
0,
'S',
5228,
3825,
0,
'S',
5228,
3826,
0,
'S',
5228,
3827,
0,
'F',
5228,
3828,
3385,
'F',
5228,
3829,
3387,
'S',
5225,
3678,
0,
'S',
5222,
3830,
0,
'S',
5219,
3830,
0,
'S',
5216,
3830,
0,
'S',
5213,
3831,
0,
'S',
5210,
3832,
0,
'S',
5207,
3832,
0,
'S',
5204,
3833,
0,
'S',
5204,
3834,
0,
'S',
5201,
3835,
0,
'S',
5201,
3836,
0,
'F',
5201,
3837,
3334,
'V',
5333,
3838,
0,
'C',
3735,
33,
0,
'S',
5333,
3839,
0,
'S',
5256,
3840,
0,
'V',
4667,
3243,
0,
'S',
4667,
3246,
0,
'V',
4705,
3243,
0,
'S',
4705,
3246,
0,
'V',
5341,
3243,
0,
'C',
3841,
3842,
0,
'S',
5341,
3246,
0,
'V',
5344,
3243,
0,
'C',
3843,
3844,
0,
'S',
5344,
3246,
0,
'V',
5347,
3243,
0,
'C',
3845,
3846,
0,
'S',
5347,
3246,
0,
'V',
5350,
3243,
0,
'C',
3847,
3848,
0,
'S',
5350,
3246,
0,
'V',
5353,
3243,
0,
'C',
3849,
3850,
0,
'S',
5353,
3246,
0,
'V',
5356,
3243,
0,
'C',
3851,
3852,
0,
'S',
5356,
3246,
0,
'S',
5356,
3853,
0,
'S',
5356,
3854,
0,
'C',
3855,
3856,
0,
'S',
5353,
3857,
0,
'S',
5353,
3858,
0,
'S',
5353,
3859,
0,
'S',
4584,
3860,
0,
'S',
5350,
3861,
0,
'S',
5350,
3862,
0,
'S',
5350,
3863,
0,
'S',
5347,
3864,
0,
'S',
5347,
3865,
0,
'S',
5344,
3866,
0,
'S',
5344,
3867,
0,
'S',
5341,
3857,
0,
'S',
5341,
3858,
0,
'S',
5341,
3868,
0,
'S',
4705,
3864,
0,
'S',
4705,
3865,
0,
'S',
4667,
3869,
0,
'V',
5379,
3243,
0,
'C',
3870,
3871,
0,
'S',
5379,
3246,
0,
'V',
4649,
3243,
0,
'S',
4649,
3246,
0,
'V',
5384,
3243,
0,
'C',
3872,
3873,
0,
'S',
5384,
3246,
0,
'S',
5384,
3656,
0,
'S',
4649,
3874,
0,
'S',
4649,
3875,
0,
'S',
5390,
3876,
0,
'C',
3210,
3877,
0,
'S',
5379,
3878,
0,
'S',
5379,
3879,
0,
'S',
5379,
3880,
0,
'F',
5309,
3881,
7510,
'F',
5309,
3882,
7518,
'F',
5309,
3883,
7520,
'F',
5309,
3884,
7514,
'F',
5309,
3885,
7522,
'F',
5225,
3886,
3373,
'F',
5309,
3791,
7508,
'F',
5309,
3887,
7516,
'F',
5309,
3888,
7512,
'S',
4579,
3889,
0,
'S',
4517,
3890,
0,
'C',
3175,
3891,
0,
'C',
3892,
3893,
0,
'C',
3175,
3894,
0,
'C',
3892,
3895,
0,
'F',
4425,
3124,
7,
'S',
4536,
3896,
0,
'F',
4669,
3897,
3232,
'F',
4669,
3898,
7594,
'F',
4660,
3899,
3230,
'F',
4605,
3900,
3238,
'F',
4605,
3901,
3580,
'F',
217,
3902,
13764,
'S',
5293,
3903,
0,
'F',
4605,
3837,
20,
'F',
4605,
3904,
3576,
'V',
4605,
3905,
0,
'S',
4605,
3906,
0,
'V',
4605,
3907,
0,
'S',
4605,
3908,
0,
'F',
59,
3909,
15451,
'C',
103,
3910,
0,
'F',
4605,
1306,
19,
'F',
4657,
3897,
3232,
'F',
4657,
3911,
3543,
'S',
4657,
3912,
0,
'F',
4657,
3913,
3545,
'F',
4657,
3914,
3541,
'F',
4660,
3915,
3555,
'F',
216,
3485,
13796,
'S',
4657,
3916,
0,
'F',
4669,
3914,
7592,
'F',
4685,
3886,
26,
'F',
4685,
3201,
23,
'F',
4685,
3917,
3205,
'F',
4685,
3881,
3533,
'F',
4685,
3837,
22,
'F',
4685,
1306,
21,
'F',
4698,
3918,
3213,
'F',
4695,
3918,
3213,
'F',
4692,
3918,
3213,
'F',
4874,
2317,
212,
'F',
4869,
2317,
212,
'F',
4874,
5,
43,
'F',
4886,
664,
3471,
'F',
4901,
2317,
212,
'F',
4904,
692,
41,
'F',
4887,
2317,
212,
'F',
4887,
692,
41,
'F',
4887,
5,
43,
'F',
5249,
3919,
3210,
'F',
5246,
3919,
3210,
'F',
5243,
3919,
3210,
'F',
5240,
3919,
3210,
'F',
5237,
3919,
3210,
'F',
5228,
3919,
3210,
'F',
5234,
3920,
3365,
'F',
5234,
3919,
3210,
'F',
5231,
3920,
3365,
'F',
5231,
3919,
3210,
'F',
5222,
3920,
3365,
'F',
5222,
3919,
3210,
'F',
5219,
3920,
3365,
'F',
5219,
3919,
3210,
'F',
5216,
3920,
3365,
'F',
5216,
3919,
3210,
'F',
5213,
3920,
3365,
'F',
5213,
3919,
3210,
'F',
5210,
3920,
3365,
'F',
5210,
3919,
3210,
'F',
5207,
3920,
3365,
'F',
5207,
3919,
3210,
'F',
5204,
3919,
3210,
'F',
5201,
3919,
3210,
'F',
4565,
3900,
3238,
'F',
4565,
3837,
20,
'F',
4565,
1306,
19,
'F',
5353,
3886,
26,
'F',
5353,
3837,
22,
'F',
5353,
1306,
21,
'F',
5353,
3917,
3205,
'F',
5350,
3886,
26,
'F',
5350,
3921,
3307,
'F',
5350,
3922,
3309,
'S',
5293,
3923,
0,
'F',
5350,
3837,
22,
'F',
5350,
1306,
21,
'F',
5350,
3917,
3205,
'F',
5347,
3886,
26,
'F',
5347,
3837,
22,
'F',
5347,
1306,
21,
'F',
5347,
3917,
3205,
'F',
5341,
3886,
26,
'F',
5341,
3924,
3290,
'F',
5341,
3925,
3292,
'F',
5341,
3837,
22,
'F',
5341,
1306,
21,
'F',
5341,
3917,
3205,
'F',
4705,
3886,
26,
'F',
4705,
3926,
3276,
'F',
4705,
3927,
3278,
'F',
4705,
3837,
22,
'F',
4705,
1306,
21,
'F',
4705,
3917,
3205,
'F',
5254,
692,
41,
'F',
5254,
3928,
7494,
'F',
5254,
5,
43,
'F',
5254,
3929,
7499,
'F',
5256,
692,
41,
'F',
5256,
15,
7501,
'F',
4667,
3886,
26,
'F',
4667,
3930,
3258,
'F',
4667,
3931,
3254,
'F',
4667,
3932,
3260,
'F',
4667,
3933,
3256,
'V',
5520,
3934,
0,
'C',
3304,
33,
0,
'S',
5520,
3935,
0,
'V',
5520,
3936,
0,
'S',
5520,
3937,
0,
'V',
5520,
3938,
0,
'S',
5520,
3939,
0,
'V',
5520,
3940,
0,
'S',
5520,
3941,
0,
'V',
5520,
3942,
0,
'S',
5520,
3943,
0,
'V',
5520,
3944,
0,
'S',
5520,
3945,
0,
'V',
5520,
3946,
0,
'S',
5520,
3947,
0,
'V',
5520,
3948,
0,
'S',
5520,
3949,
0,
'V',
5520,
3950,
0,
'S',
5520,
3951,
0,
'V',
5520,
3952,
0,
'S',
5520,
3953,
0,
'F',
4667,
3837,
22,
'V',
5520,
3954,
0,
'S',
5520,
3955,
0,
'F',
60,
3956,
15167,
'S',
5293,
3957,
0,
'S',
5520,
3958,
0,
'F',
60,
3959,
15173,
'F',
4667,
1306,
21,
'F',
4667,
3917,
3205,
'F',
5225,
3920,
3365,
'F',
5225,
3919,
3210,
'F',
4663,
3897,
3232,
'F',
4668,
3201,
23,
'F',
4569,
2328,
3212,
'F',
4584,
692,
41,
'F',
4584,
2316,
3229,
'F',
5360,
3886,
26,
'F',
5360,
3837,
22,
'F',
5360,
1306,
21,
'F',
5360,
3917,
3205,
'F',
4471,
692,
41,
'F',
4471,
2317,
212,
'F',
4471,
5,
43,
'F',
4470,
1857,
1,
'S',
5565,
3109,
0,
'C',
3152,
3960,
0,
'S',
5567,
3109,
0,
'C',
3961,
3962,
0,
'C',
3152,
3963,
0,
'C',
3152,
3964,
0,
'S',
5569,
3965,
0,
'F',
441,
3020,
14359,
'C',
3966,
3967,
0,
'C',
3968,
3969,
0,
'C',
3152,
3970,
0,
'S',
5574,
3971,
0,
'F',
1454,
3972,
3637,
'C',
3152,
3973,
0,
'C',
3152,
3974,
0,
'C',
3152,
3975,
0,
'C',
3152,
3976,
0,
'C',
3977,
3978,
0,
'C',
3979,
3980,
0,
'C',
3979,
3981,
0,
'S',
5574,
3982,
0,
'C',
3983,
3984,
0,
'F',
5572,
2314,
10798,
'S',
5574,
3985,
0,
'C',
1849,
3986,
0,
'S',
5567,
3987,
0,
'S',
5591,
2304,
0,
'C',
3988,
3989,
0,
'F',
5593,
3002,
5643,
'C',
3990,
3991,
0,
'F',
4242,
3992,
5650,
'C',
3990,
3993,
0,
'F',
5591,
3994,
7922,
'F',
5591,
3995,
7919,
'S',
5599,
3996,
0,
'C',
3997,
3998,
0,
'F',
5591,
3999,
7920,
'F',
5591,
4000,
7921,
'S',
5603,
3109,
0,
'C',
4001,
4002,
0,
'C',
3988,
4003,
0,
'F',
5606,
4004,
2952,
'C',
2917,
4005,
0,
'F',
4447,
692,
41,
'F',
4508,
1857,
1,
'S',
5610,
3109,
0,
'C',
3137,
4006,
0,
'F',
4276,
4007,
11003,
'S',
4476,
4008,
0,
'S',
4476,
4009,
0,
'S',
5615,
3109,
0,
'C',
3137,
4010,
0,
'C',
4011,
4012,
0,
'F',
4483,
4013,
3843,
'F',
4485,
4014,
6414,
'F',
4486,
4014,
6414,
'S',
4486,
4015,
0,
'S',
4486,
4016,
0,
'S',
4486,
4017,
0,
'F',
4484,
4018,
3830,
'F',
4484,
4019,
3828,
'F',
4484,
4020,
3826,
'F',
4484,
4021,
3852,
'F',
4484,
4022,
3824,
'F',
4484,
4023,
3822,
'F',
4484,
4024,
3820,
'F',
4484,
4025,
3818,
'F',
4484,
4026,
3845,
'F',
4464,
692,
41,
'F',
4438,
3036,
3,
'C',
3053,
4027,
0,
'C',
3053,
4028,
0,
'F',
4434,
692,
41,
'F',
4520,
2804,
208,
'F',
5639,
4029,
9755,
'C',
4030,
4031,
0,
'F',
5639,
2417,
9757,
'F',
5639,
4032,
9753,
'F',
4520,
2315,
206,
'C',
4030,
4033,
0,
'C',
4030,
4034,
0,
'S',
5639,
4035,
0,
'F',
5644,
2058,
4192,
'F',
4517,
2804,
208,
'F',
5649,
4036,
8678,
'C',
3175,
4037,
0,
'F',
5649,
4038,
8680,
'F',
5649,
4039,
8682,
'F',
5649,
4040,
8684,
'F',
4517,
4041,
4002,
'F',
5649,
2417,
8686,
'F',
5649,
4042,
8688,
'F',
5649,
4043,
8690,
'F',
5649,
4044,
8693,
'F',
4517,
2315,
206,
'C',
3175,
4045,
0,
'C',
3175,
4046,
0,
'C',
3175,
4047,
0,
'S',
5649,
4048,
0,
'S',
5659,
4049,
0,
'C',
3983,
4050,
0,
'F',
4540,
2317,
212,
'F',
4541,
2317,
212,
'F',
4542,
2317,
212,
'F',
4540,
5,
43,
'F',
4540,
692,
41,
'F',
4530,
2317,
212,
'F',
4530,
5,
43,
'F',
4530,
692,
41,
'F',
4530,
964,
10186,
'F',
4528,
692,
41,
'F',
4524,
692,
41,
'F',
4529,
692,
41,
'F',
4541,
5,
43,
'F',
4541,
692,
41,
'F',
2280,
23,
7830,
'F',
5407,
692,
41,
'F',
4534,
692,
41,
'F',
5405,
692,
41,
'F',
1454,
23,
3629,
'F',
1454,
839,
3629,
'F',
2722,
23,
3699,
'F',
2722,
839,
3699,
'F',
1459,
23,
3675,
'F',
1459,
839,
3675,
'F',
3917,
23,
10706,
'F',
4279,
23,
10604,
'F',
4279,
839,
10604,
'F',
4381,
23,
10571,
'F',
5408,
692,
41,
'F',
5406,
692,
41,
'F',
4478,
3036,
3,
'C',
3104,
4051,
0,
'C',
3106,
4052,
0,
'C',
3106,
4053,
0,
'C',
3106,
4054,
0,
'F',
4511,
3036,
3,
'C',
3142,
4055,
0,
'C',
3142,
4056,
0,
'S',
5701,
4057,
0,
'F',
4522,
3036,
3,
'C',
3159,
4058,
0,
'C',
3159,
4059,
0,
'S',
5705,
4060,
0,
'C',
4061,
4062,
0,
'S',
5708,
4063,
0,
'F',
4512,
1857,
1,
'S',
5712,
3109,
0,
'C',
3104,
4064,
0,
'S',
5714,
3109,
0,
'C',
2936,
4065,
0,
'F',
4238,
4066,
614,
'F',
4238,
4067,
616,
'F',
4238,
4068,
624,
'F',
4238,
4069,
618,
'F',
4238,
4070,
636,
'F',
4238,
4071,
642,
'F',
4238,
4072,
638,
'C',
4073,
4074,
0,
'F',
4238,
2836,
603,
'C',
2832,
4075,
0,
'F',
4238,
4076,
610,
'F',
4238,
4077,
612,
'V',
5712,
4078,
0,
'S',
5712,
4079,
0,
'S',
5730,
3109,
0,
'C',
3118,
4080,
0,
'S',
4224,
4081,
0,
'C',
2933,
4082,
0,
'V',
4224,
4083,
0,
'S',
4224,
4084,
0,
'C',
2917,
4085,
0,
'F',
5737,
2847,
2964,
'C',
2917,
4086,
0,
'S',
4224,
4087,
0,
'F',
4286,
4007,
2756,
'F',
4224,
3002,
2805,
'F',
4234,
3002,
722,
'F',
4286,
3002,
2754,
'S',
5744,
3109,
0,
'C',
3120,
4088,
0,
'F',
5746,
4089,
5782,
'C',
3120,
4090,
0,
'S',
4224,
4091,
0,
'S',
4224,
4092,
0,
'F',
4490,
692,
41,
'F',
4523,
692,
41,
'F',
4523,
2317,
212,
'F',
4523,
5,
43,
'F',
4472,
692,
41,
'F',
4469,
1857,
1,
'C',
3126,
4093,
0,
'C',
3152,
4094,
0,
'C',
4095,
4096,
0,
'F',
4515,
3036,
3,
'C',
3150,
4097,
0,
'F',
4498,
692,
41,
'F',
4498,
4098,
266,
'F',
4498,
4099,
267,
'F',
4498,
4100,
260,
'S',
5765,
4101,
0,
'C',
3130,
33,
0,
'F',
4498,
4102,
264,
'C',
3130,
4103,
0,
'S',
4498,
4104,
0,
'C',
3130,
4105,
0,
'C',
3130,
4106,
0,
'F',
4498,
4107,
262,
'F',
1447,
4108,
14245,
'F',
423,
4109,
14293,
'F',
423,
4110,
14296,
'F',
4509,
3036,
3,
'C',
3139,
4111,
0,
'F',
4527,
692,
41,
'F',
4545,
692,
41,
'F',
4545,
1628,
910,
'F',
4492,
692,
41,
'F',
4500,
692,
41,
'F',
4463,
692,
41,
'F',
4463,
1628,
910,
'F',
4456,
692,
41,
'F',
4460,
4112,
10307,
'F',
4456,
1628,
910,
'F',
4466,
692,
41,
'F',
4460,
692,
41,
'F',
1556,
4113,
5279,
'F',
5791,
4114,
5341,
'C',
1195,
4115,
0,
'F',
5791,
4116,
5339,
'F',
4521,
1553,
1566,
'C',
1195,
4117,
0,
'F',
4395,
4113,
5279,
'F',
4467,
692,
41,
'F',
4518,
1553,
1566,
'C',
1195,
4118,
0,
'F',
4431,
1553,
1566,
'F',
4558,
692,
41,
'F',
4551,
5,
43,
'F',
5803,
4119,
3178,
'C',
4120,
4121,
0,
'C',
4120,
4122,
0,
'F',
4553,
2328,
32,
'F',
4473,
692,
41,
'F',
2222,
23,
14309,
'F',
4543,
692,
41,
'F',
546,
23,
14260,
'F',
546,
839,
14260,
'F',
1447,
23,
14252,
'F',
4542,
692,
41,
'F',
4542,
5,
43,
'F',
4525,
692,
41,
'F',
4526,
692,
41,
'F',
280,
839,
13141,
'F',
238,
839,
13141,
'F',
288,
839,
13141,
'F',
216,
839,
13141,
'F',
273,
839,
13141,
'F',
270,
23,
13891,
'F',
270,
839,
13891,
'F',
253,
839,
13141,
'F',
220,
839,
13141,
'F',
259,
839,
13141,
'F',
243,
23,
13889,
'F',
243,
839,
13889,
'F',
211,
839,
13141,
'F',
232,
23,
13886,
'F',
232,
839,
13886,
'F',
228,
839,
13141,
'F',
23,
839,
13141,
'F',
105,
18,
3252,
'F',
105,
3556,
3377,
'F',
59,
23,
15411,
'F',
96,
3556,
3377,
'F',
736,
4123,
3530,
'F',
736,
422,
15363,
'F',
736,
420,
15362,
'F',
60,
23,
10497,
'F',
60,
839,
10497,
'F',
97,
19,
15290,
'F',
97,
3508,
15290,
'F',
97,
4124,
15280,
'F',
97,
18,
3252,
'F',
97,
23,
10497,
'F',
4964,
4125,
15093,
'F',
4964,
3547,
15118,
'S',
4869,
4126,
0,
'S',
4869,
4127,
0,
'F',
4964,
3545,
15092,
'F',
4964,
3549,
15094,
'F',
4964,
3544,
15091,
'F',
4964,
4128,
15090,
'F',
4869,
692,
41,
'V',
4869,
4129,
0,
'S',
4869,
4130,
0,
'F',
4869,
4131,
15072,
'F',
4869,
8,
15070,
'F',
4869,
23,
15069,
'F',
4869,
18,
15067,
'F',
4869,
19,
15054,
'F',
561,
23,
15494,
'F',
561,
839,
15494,
'F',
4966,
4125,
15093,
'F',
4966,
4128,
15090,
'F',
1319,
4123,
3530,
'F',
4679,
4132,
3222,
'F',
4679,
4133,
3220,
'F',
4679,
3837,
3218,
'F',
4676,
4132,
3222,
'F',
4676,
4133,
3220,
'F',
4676,
3837,
3218,
'F',
5755,
3036,
3,
'C',
3126,
4134,
0,
'F',
5755,
24,
5532,
'F',
5635,
4018,
3830,
'F',
5635,
4019,
3828,
'F',
5635,
4020,
3826,
'F',
5635,
4022,
3824,
'F',
5635,
4023,
3822,
'F',
5635,
4024,
3820,
'F',
5635,
4025,
3818,
'F',
5634,
4026,
3845,
'F',
5634,
1857,
9,
'V',
4438,
4135,
0,
'S',
4438,
4136,
0,
'V',
4438,
4137,
0,
'S',
4438,
4138,
0,
'F',
5634,
4139,
3833,
'F',
5634,
4140,
3834,
'C',
1655,
4141,
0,
'F',
5634,
4142,
3832,
'C',
3043,
4143,
0,
'C',
3152,
4144,
0,
'C',
4145,
4146,
0,
'C',
3152,
4147,
0,
'C',
1195,
4148,
0,
'C',
3152,
4149,
0,
'C',
4150,
4151,
0,
'S',
5900,
4152,
0,
'S',
4438,
4153,
0,
'C',
4154,
4155,
0,
'C',
4154,
4156,
0,
'C',
4154,
4157,
0,
'F',
5634,
4158,
3854,
'S',
5744,
4159,
0,
'C',
3053,
4160,
0,
'C',
4154,
4161,
0,
'C',
4162,
4163,
0,
'C',
4164,
4165,
0,
'S',
5634,
4166,
3839,
'S',
5634,
4167,
3841,
'S',
5894,
4168,
0,
'C',
3043,
4169,
0,
'C',
3043,
4170,
0,
'S',
5634,
4171,
0,
'C',
3979,
4172,
0,
'C',
4173,
4174,
0,
'C',
4173,
4175,
0,
'S',
5894,
4176,
0,
'F',
5923,
4177,
6061,
'C',
3043,
4178,
0,
'F',
23,
4179,
13134,
'S',
5894,
4180,
0,
'F',
23,
4181,
13136,
'F',
23,
617,
7650,
'F',
5634,
4182,
3841,
'F',
5634,
4183,
3839,
'S',
5634,
4184,
0,
'S',
5634,
4185,
0,
'S',
5634,
4186,
0,
'C',
3120,
4187,
0,
'V',
4438,
4188,
0,
'S',
4438,
4189,
0,
'V',
4438,
4190,
0,
'S',
4438,
4191,
0,
'C',
4164,
4192,
0,
'C',
4164,
4193,
0,
'C',
4164,
4194,
0,
'S',
5940,
4195,
0,
'C',
4162,
4196,
0,
'C',
4162,
4197,
0,
'C',
4162,
4198,
0,
'C',
4154,
4199,
0,
'C',
4154,
4200,
0,
'C',
4154,
4201,
0,
'C',
4154,
4202,
0,
'C',
4203,
4204,
0,
'C',
3892,
4205,
0,
'C',
4203,
4206,
0,
'F',
544,
4207,
14905,
'F',
544,
4208,
14904,
'C',
4162,
4209,
0,
'C',
4162,
4210,
0,
'S',
5955,
4211,
0,
'C',
4154,
4212,
0,
'C',
4154,
4213,
0,
'C',
4154,
4214,
0,
'C',
4154,
4215,
0,
'C',
4203,
4216,
0,
'F',
5634,
4021,
3852,
'F',
5634,
4217,
3847,
'S',
5634,
4218,
0,
'S',
5634,
4219,
0,
'S',
5634,
4220,
0,
'F',
1546,
4221,
5164,
'F',
5923,
4222,
6063,
'F',
5923,
602,
6065,
'C',
3043,
4223,
0,
'C',
3043,
4224,
0,
'S',
5970,
4225,
0,
'F',
5923,
4226,
6048,
'F',
5923,
4227,
6067,
'C',
3043,
4228,
0,
'F',
5923,
4229,
6086,
'F',
1546,
4230,
5163,
'F',
1556,
4231,
5222,
'S',
5923,
4232,
0,
'F',
5981,
4233,
9428,
'C',
4234,
4235,
0,
'V',
5970,
4236,
0,
'S',
5970,
4237,
0,
'V',
5970,
4238,
0,
'S',
5970,
4239,
0,
'F',
5923,
4240,
6057,
'C',
3043,
4241,
0,
'C',
3043,
4242,
0,
'F',
5970,
4243,
5993,
'C',
3043,
4244,
0,
'C',
3043,
4245,
0,
'F',
5923,
4246,
6050,
'F',
5923,
4247,
6053,
'F',
23,
4248,
13123,
'S',
1716,
4249,
0,
'F',
5923,
4250,
6044,
'F',
5923,
4251,
6045,
'F',
5999,
4252,
6150,
'C',
4253,
4254,
0,
'F',
6001,
872,
6122,
'C',
4253,
4255,
0,
'S',
5923,
4256,
0,
'F',
5999,
4257,
6152,
'S',
6001,
4258,
0,
'S',
5999,
4259,
0,
'S',
5999,
4260,
0,
'F',
151,
4261,
13068,
'F',
21,
4262,
15228,
'F',
21,
3485,
13796,
'S',
5923,
4263,
0,
'S',
5923,
4264,
0,
'V',
5970,
4265,
0,
'S',
5970,
4266,
0,
'F',
5923,
4267,
6059,
'S',
5970,
4268,
0,
'F',
590,
967,
13164,
'F',
590,
4269,
13154,
'F',
6019,
4270,
7866,
'C',
4271,
4272,
0,
'C',
3043,
4273,
0,
'S',
5970,
4274,
0,
'F',
6019,
4275,
7868,
'S',
6019,
4276,
0,
'C',
4271,
4277,
0,
'S',
5970,
4278,
0,
'S',
5970,
4279,
0,
'V',
5970,
4280,
0,
'S',
5970,
4281,
0,
'C',
3043,
4282,
0,
'F',
5634,
4013,
3843,
'S',
5634,
4283,
0,
'F',
5923,
4284,
6069,
'S',
5923,
4285,
0,
'F',
5923,
1659,
6071,
'S',
5923,
4286,
0,
'S',
5923,
4287,
0,
'C',
3043,
4288,
0,
'F',
5970,
4289,
5988,
'F',
5970,
1659,
6003,
'F',
5634,
1940,
791,
'F',
1233,
4290,
4147,
'F',
6043,
1940,
4880,
'C',
1655,
4291,
0,
'F',
6045,
4292,
6426,
'C',
1655,
4293,
0,
'F',
6045,
1940,
4880,
'F',
5634,
3136,
433,
'F',
5634,
3124,
7,
'F',
5634,
4294,
3837,
'F',
5708,
692,
41,
'F',
5708,
4295,
6665,
'F',
5708,
4296,
6654,
'F',
5708,
4297,
6653,
'F',
21,
1917,
7784,
'F',
1543,
24,
4183,
'F',
5699,
2857,
793,
'S',
6058,
3109,
0,
'C',
4298,
4299,
0,
'F',
6060,
4300,
7834,
'C',
4271,
4301,
0,
'F',
6060,
4302,
7848,
'F',
6060,
4303,
7843,
'F',
6060,
4304,
7846,
'F',
1235,
4305,
4250,
'C',
1214,
4306,
0,
'F',
1235,
4307,
4252,
'F',
5699,
1940,
791,
'F',
5697,
3124,
7,
'F',
5698,
3124,
7,
'F',
6071,
2047,
4469,
'C',
4308,
4309,
0,
'S',
5697,
4310,
5681,
'F',
5697,
4311,
5681,
'S',
5697,
4312,
0,
'F',
5698,
1940,
791,
'F',
6077,
1940,
10321,
'C',
4308,
4313,
0,
'F',
6019,
4314,
7864,
'F',
6060,
1940,
7337,
'F',
5698,
3136,
433,
'F',
5698,
4315,
5667,
'F',
5698,
4316,
5673,
'F',
6077,
2376,
2223,
'F',
6077,
4317,
10341,
'F',
4460,
4318,
10305,
'S',
5698,
4319,
0,
'F',
5698,
4320,
5671,
'F',
4501,
4321,
1287,
'F',
4501,
4322,
10484,
'C',
3132,
4323,
0,
'C',
3132,
4324,
0,
'F',
6077,
4325,
10347,
'C',
4308,
4326,
0,
'F',
1634,
4327,
4359,
'F',
561,
1291,
15496,
'F',
6077,
1305,
10355,
'F',
6077,
1628,
910,
'F',
6071,
1475,
10323,
'F',
6077,
4328,
10357,
'S',
6019,
4329,
0,
'C',
4308,
4330,
0,
'C',
4331,
4332,
0,
'S',
6101,
4333,
0,
'F',
6077,
4334,
10353,
'C',
4308,
4335,
0,
'V',
6077,
4336,
0,
'F',
6060,
195,
7838,
'S',
6019,
4337,
0,
'C',
4338,
4339,
0,
'F',
6019,
4340,
7862,
'F',
6077,
4341,
2222,
'F',
6113,
4342,
10327,
'C',
4308,
4343,
0,
'V',
6077,
4344,
0,
'F',
6060,
1305,
7840,
'F',
97,
1291,
10498,
'V',
1634,
4345,
0,
'F',
6077,
4346,
10337,
'S',
5698,
4347,
0,
'F',
5698,
4348,
5669,
'C',
3076,
4349,
0,
'C',
3076,
4350,
0,
'S',
6121,
4351,
0,
'F',
6121,
4352,
10419,
'C',
4308,
4353,
0,
'S',
6077,
4354,
0,
'F',
6113,
4355,
10300,
'S',
5698,
4356,
0,
'S',
6113,
4357,
0,
'F',
5756,
2315,
206,
'C',
4234,
4358,
0,
'C',
4234,
4359,
0,
'C',
4234,
4360,
0,
'S',
6132,
4361,
0,
'F',
5580,
2804,
208,
'F',
6137,
4362,
9719,
'C',
4234,
4363,
0,
'F',
5580,
2315,
206,
'S',
6137,
4364,
0,
'F',
5569,
2804,
208,
'F',
6142,
4365,
9469,
'C',
4234,
4366,
0,
'F',
6142,
4367,
9471,
'F',
6142,
4368,
9473,
'F',
6142,
4369,
9501,
'F',
6142,
4370,
9477,
'F',
6142,
4371,
9475,
'F',
6142,
4372,
9515,
'F',
6142,
4373,
9479,
'F',
6142,
4374,
9481,
'F',
6142,
4375,
9483,
'F',
6142,
4376,
9485,
'F',
6142,
4377,
9487,
'F',
6142,
4378,
9489,
'F',
6142,
4379,
9491,
'F',
6142,
4380,
9493,
'F',
6142,
4381,
9495,
'F',
6142,
4382,
9497,
'F',
6142,
4383,
9499,
'F',
6142,
4384,
9505,
'F',
6142,
4385,
9507,
'F',
6142,
4386,
9509,
'F',
6142,
4387,
9511,
'F',
6142,
4388,
9513,
'F',
6142,
4389,
9517,
'F',
6142,
2376,
9519,
'F',
6142,
4390,
9521,
'F',
6142,
4391,
9523,
'F',
6142,
4392,
9525,
'F',
6142,
4393,
9527,
'F',
6142,
4394,
9503,
'F',
5569,
4395,
4105,
'F',
6142,
2417,
9529,
'F',
6142,
4396,
9531,
'F',
6142,
4397,
9533,
'F',
6142,
4398,
9537,
'F',
6142,
4399,
9539,
'F',
6142,
4400,
9541,
'F',
6142,
4401,
9543,
'F',
6142,
4402,
9545,
'F',
6142,
4403,
9547,
'F',
6142,
4404,
9535,
'F',
6142,
4405,
9549,
'F',
6142,
4406,
9551,
'F',
6142,
4407,
9553,
'F',
6142,
4408,
9555,
'F',
6142,
4409,
9557,
'F',
6142,
4410,
9559,
'F',
6142,
4411,
9561,
'F',
6142,
4412,
9563,
'F',
6142,
4413,
9565,
'F',
6142,
4414,
9567,
'F',
6142,
4415,
9569,
'F',
6142,
4416,
9571,
'F',
5569,
2315,
206,
'S',
6142,
4417,
0,
'F',
5574,
2804,
208,
'F',
6199,
4418,
9193,
'C',
3977,
4419,
0,
'F',
6199,
4420,
9197,
'F',
6199,
2417,
9198,
'F',
6199,
4421,
9200,
'F',
6199,
4422,
9202,
'F',
6199,
4423,
9204,
'F',
6199,
4424,
9206,
'F',
6199,
4425,
9209,
'F',
6199,
4426,
9210,
'F',
6199,
4427,
9211,
'S',
5744,
4428,
0,
'F',
6199,
4429,
9207,
'F',
5664,
4429,
10897,
'F',
5664,
2025,
10885,
'F',
5664,
4425,
10901,
'F',
5664,
4424,
10899,
'F',
5664,
4423,
10893,
'F',
5664,
4430,
10895,
'F',
5664,
2417,
10891,
'F',
5664,
4420,
10889,
'F',
5572,
1594,
10816,
'F',
5664,
4418,
10887,
'F',
6199,
4431,
9195,
'C',
3892,
4432,
0,
'S',
6199,
4433,
0,
'F',
4276,
1594,
11009,
'F',
5574,
2315,
206,
'C',
3977,
4434,
0,
'C',
3977,
4435,
0,
'C',
3977,
4436,
0,
'S',
6199,
4437,
0,
'F',
5577,
2804,
208,
'F',
6232,
2428,
9376,
'C',
4234,
4438,
0,
'F',
6232,
4439,
9371,
'F',
6232,
4440,
9372,
'F',
6232,
2417,
9374,
'F',
5577,
2315,
206,
'S',
6232,
4441,
0,
'F',
5579,
2804,
208,
'F',
6240,
4440,
9770,
'C',
4030,
4442,
0,
'F',
6242,
4443,
9782,
'C',
4030,
4444,
0,
'F',
6242,
4445,
9783,
'F',
6240,
2417,
9772,
'F',
6240,
4032,
9768,
'F',
5579,
2315,
206,
'S',
6242,
4446,
0,
'F',
5568,
2799,
838,
'F',
5568,
2804,
208,
'F',
5568,
4447,
3952,
'F',
6252,
4448,
9270,
'C',
4234,
4449,
0,
'F',
5568,
2315,
206,
'S',
6252,
4450,
0,
'F',
5588,
2799,
838,
'F',
5588,
1628,
11857,
'F',
2137,
24,
9133,
'F',
5644,
2314,
1480,
'F',
5644,
2400,
1476,
'F',
5644,
2055,
1474,
'F',
5644,
2030,
1472,
'F',
5644,
24,
9133,
'F',
5639,
2396,
210,
'F',
5639,
4451,
9750,
'F',
2603,
4452,
8220,
'F',
3918,
4453,
10695,
'F',
3918,
4454,
10696,
'F',
5643,
2905,
1500,
'F',
1402,
4455,
8254,
'S',
5643,
4456,
0,
'F',
1447,
2374,
14250,
'F',
1390,
2466,
8262,
'F',
1390,
4457,
11243,
'C',
1351,
4458,
0,
'C',
1351,
4459,
0,
'F',
5643,
2386,
1496,
'F',
5581,
692,
41,
'F',
5649,
2799,
838,
'F',
5649,
2819,
6177,
'F',
5649,
2386,
1496,
'F',
5660,
4460,
7879,
'F',
546,
647,
14258,
'F',
2039,
4461,
8987,
'S',
5660,
4462,
7879,
'F',
423,
4463,
14279,
'C',
1936,
4464,
0,
'F',
6286,
4465,
8802,
'F',
6286,
4044,
8804,
'F',
2039,
4466,
8983,
'F',
2046,
4467,
8997,
'S',
2039,
4468,
0,
'F',
2046,
4469,
10683,
'S',
2046,
4470,
0,
'F',
445,
4471,
14511,
'F',
445,
4472,
14513,
'F',
445,
4473,
14491,
'F',
445,
4474,
14495,
'F',
2039,
4475,
8985,
'F',
5649,
2905,
1500,
'F',
5660,
4476,
7877,
'S',
5660,
4477,
0,
'F',
5649,
2396,
210,
'F',
2603,
3002,
8218,
'F',
2830,
4478,
8282,
'S',
6306,
4479,
0,
'C',
3175,
33,
0,
'C',
3175,
4480,
0,
'S',
2830,
4481,
0,
'F',
5649,
2413,
2683,
'C',
3175,
4482,
0,
'C',
1365,
4483,
0,
'C',
1365,
4484,
0,
'F',
5661,
2314,
1480,
'F',
5661,
2400,
1476,
'F',
5661,
2055,
1474,
'F',
5661,
2030,
1472,
'F',
5661,
54,
2698,
'F',
5661,
4485,
2696,
'F',
5661,
4486,
2694,
'F',
5572,
2799,
838,
'F',
5572,
2317,
212,
'F',
5573,
2317,
212,
'F',
5572,
5,
43,
'F',
5573,
5,
43,
'F',
5585,
692,
41,
'F',
5724,
23,
10718,
'F',
5724,
839,
10718,
'F',
5724,
8,
10717,
'F',
5724,
664,
10717,
'F',
5724,
17,
437,
'F',
5724,
54,
437,
'F',
5724,
2915,
10691,
'F',
5757,
692,
41,
'F',
5757,
2317,
212,
'F',
5757,
5,
43,
'F',
4279,
54,
10602,
'F',
5583,
2317,
212,
'F',
5583,
5,
43,
'F',
5583,
692,
41,
'S',
5582,
4487,
0,
'S',
5918,
4487,
0,
'F',
5583,
17,
10504,
'F',
5583,
54,
10504,
'C',
3979,
4488,
0,
'F',
5582,
692,
41,
'F',
5582,
23,
10509,
'F',
5582,
839,
10509,
'F',
5582,
8,
10508,
'F',
5582,
664,
10508,
'F',
5582,
17,
10504,
'F',
5582,
54,
10504,
'F',
5732,
692,
41,
'F',
5735,
5,
43,
'F',
5735,
2317,
212,
'F',
5696,
1857,
9,
'F',
4478,
24,
2797,
'F',
5701,
1857,
9,
'V',
6359,
4489,
0,
'C',
4490,
33,
0,
'S',
6359,
4491,
0,
'V',
6362,
4492,
0,
'C',
4493,
33,
0,
'S',
6362,
4494,
0,
'S',
6365,
3109,
0,
'C',
2999,
4495,
0,
'F',
5701,
4496,
2604,
'F',
5701,
4497,
2605,
'S',
5599,
3109,
0,
'C',
3171,
4498,
0,
'S',
6369,
4499,
0,
'C',
4500,
4501,
0,
'C',
3152,
4502,
0,
'C',
1476,
4503,
0,
'C',
4504,
4505,
0,
'C',
4504,
4506,
0,
'F',
5701,
4507,
2611,
'S',
6378,
4508,
0,
'C',
1434,
4509,
0,
'F',
5701,
4510,
2607,
'F',
6381,
4511,
7236,
'C',
4512,
4513,
0,
'C',
3152,
4514,
0,
'C',
3152,
4515,
0,
'S',
5701,
4516,
2628,
'S',
5701,
4517,
2630,
'S',
5701,
4518,
0,
'C',
1434,
4519,
0,
'C',
1434,
4520,
0,
'S',
5701,
4521,
0,
'S',
5701,
4522,
0,
'S',
5701,
4523,
0,
'C',
4234,
4524,
0,
'F',
5701,
4525,
2608,
'S',
5701,
4526,
0,
'F',
4536,
4527,
4462,
'F',
4536,
4528,
4461,
'F',
5701,
4529,
2624,
'F',
5701,
4530,
2623,
'F',
6400,
4531,
4652,
'C',
3171,
4532,
0,
'F',
6400,
4533,
4636,
'F',
6400,
4534,
4643,
'F',
1762,
4535,
4923,
'F',
6400,
4536,
4604,
'F',
6400,
4537,
4640,
'F',
6400,
4538,
4635,
'F',
6400,
4539,
4691,
'S',
6409,
2030,
0,
'C',
3162,
4540,
0,
'F',
6411,
4541,
10248,
'C',
3162,
4542,
0,
'F',
6400,
4543,
4675,
'F',
6400,
4544,
4641,
'F',
6400,
4545,
4677,
'F',
6411,
4546,
10256,
'F',
6411,
4547,
10252,
'V',
6409,
4548,
0,
'S',
6409,
4549,
0,
'F',
6409,
4550,
10278,
'F',
4540,
4551,
10236,
'V',
6409,
4552,
0,
'S',
6409,
4553,
0,
'S',
6409,
4554,
10271,
'F',
6409,
4555,
10271,
'S',
6409,
4556,
0,
'F',
6409,
4557,
10272,
'F',
6400,
4558,
4620,
'S',
4540,
4559,
0,
'F',
6400,
4560,
4621,
'S',
6431,
4561,
0,
'C',
3162,
33,
0,
'F',
6400,
1992,
4623,
'F',
6400,
4562,
4625,
'S',
6431,
4563,
0,
'S',
6431,
4564,
0,
'F',
6400,
4565,
4628,
'F',
6400,
4566,
4650,
'F',
6400,
4567,
4694,
'V',
6409,
4568,
0,
'S',
6400,
4569,
0,
'F',
6411,
4570,
10247,
'F',
6411,
4571,
10260,
'F',
6400,
4572,
4630,
'C',
3162,
4573,
0,
'F',
4536,
4574,
4465,
'F',
1762,
4575,
4906,
'F',
1762,
4576,
4928,
'F',
1762,
4577,
4930,
'S',
5909,
3109,
0,
'F',
5905,
4578,
5082,
'F',
5905,
4579,
5092,
'F',
5904,
4580,
5076,
'F',
1761,
4581,
4963,
'F',
5905,
4582,
5070,
'F',
5905,
4583,
5072,
'S',
6457,
4584,
0,
'C',
4154,
33,
0,
'F',
5905,
4585,
5090,
'C',
4586,
4587,
0,
'F',
5905,
4588,
5088,
'F',
1762,
4589,
4897,
'F',
611,
4590,
5116,
'F',
5903,
4591,
5086,
'F',
1556,
4592,
5214,
'C',
4154,
4593,
0,
'F',
1762,
4594,
4889,
'S',
5905,
4595,
0,
'S',
6457,
4596,
0,
'F',
1762,
4597,
4903,
'F',
23,
4598,
5119,
'S',
1762,
4599,
0,
'S',
1762,
4600,
0,
'F',
5903,
4601,
5139,
'C',
4154,
4602,
0,
'F',
1762,
4603,
4904,
'S',
6474,
4604,
0,
'F',
1556,
4605,
5209,
'F',
1917,
4606,
9086,
'S',
2577,
4607,
0,
'F',
23,
1406,
5113,
'S',
6474,
4608,
0,
'S',
6474,
4609,
0,
'F',
5903,
4610,
5136,
'S',
6485,
4609,
0,
'C',
4154,
4611,
0,
'S',
5903,
4612,
0,
'S',
5903,
4613,
0,
'S',
6485,
4614,
0,
'F',
6485,
4603,
5131,
'F',
423,
4615,
14289,
'S',
6485,
4616,
0,
'S',
6474,
4617,
0,
'F',
6474,
4618,
5121,
'S',
6474,
4619,
0,
'S',
6474,
4620,
0,
'S',
2577,
4621,
0,
'S',
2577,
4622,
0,
'S',
2577,
4623,
0,
'S',
2577,
4624,
0,
'S',
2577,
4625,
0,
'S',
1985,
4626,
0,
'S',
6503,
4627,
0,
'C',
4203,
4628,
0,
'S',
6503,
3109,
0,
'F',
6506,
4627,
6768,
'C',
4586,
4629,
0,
'S',
6503,
4630,
0,
'S',
6509,
3109,
0,
'C',
4631,
4632,
0,
'F',
6511,
4633,
6773,
'C',
4634,
4635,
0,
'F',
6511,
4636,
6771,
'F',
6514,
4637,
6725,
'C',
4638,
4639,
0,
'S',
6516,
4640,
0,
'C',
4641,
33,
0,
'C',
4642,
4643,
0,
'C',
4642,
4644,
0,
'S',
6517,
4645,
0,
'F',
6511,
4646,
6783,
'F',
6506,
4646,
6783,
'F',
6523,
1940,
6593,
'C',
4642,
4647,
0,
'F',
6511,
4648,
6825,
'C',
4649,
4650,
0,
'F',
6506,
4651,
6793,
'F',
6528,
3002,
6675,
'C',
4586,
4652,
0,
'F',
6530,
4653,
6639,
'C',
4203,
4654,
0,
'C',
4655,
4656,
0,
'C',
4655,
4657,
0,
'C',
4655,
4658,
0,
'C',
4659,
4660,
0,
'C',
4659,
4661,
0,
'F',
6535,
4662,
6110,
'F',
6511,
4663,
6544,
'C',
4664,
4665,
0,
'C',
4664,
4666,
0,
'F',
6530,
4663,
6642,
'F',
6506,
4667,
6789,
'F',
6530,
4668,
6643,
'F',
6506,
4669,
6785,
'F',
6545,
4670,
9415,
'C',
4234,
4671,
0,
'F',
6506,
4672,
6754,
'F',
6506,
4673,
6748,
'S',
6549,
3109,
0,
'C',
3073,
4674,
0,
'F',
6530,
4675,
6640,
'F',
4454,
4676,
6287,
'F',
4454,
4677,
6285,
'F',
6554,
795,
6280,
'C',
3073,
4678,
0,
'F',
4454,
4679,
6283,
'S',
4454,
4680,
0,
'S',
4454,
4681,
0,
'F',
1556,
4682,
5216,
'F',
6530,
4672,
6649,
'F',
6561,
2376,
6331,
'C',
4683,
4684,
0,
'F',
2394,
4685,
10124,
'F',
6564,
4686,
6333,
'C',
4203,
4687,
0,
'S',
6077,
4688,
0,
'F',
6077,
4636,
10343,
'F',
6019,
2607,
7643,
'S',
6517,
4689,
6623,
'S',
6517,
4690,
6625,
'F',
6517,
4691,
6625,
'F',
6517,
4692,
6570,
'F',
6511,
4693,
6551,
'C',
4642,
4694,
0,
'S',
6573,
4695,
0,
'F',
6511,
4696,
6549,
'C',
4642,
4697,
0,
'F',
6077,
4698,
10351,
'S',
6573,
4689,
6615,
'S',
6573,
4690,
6617,
'F',
6573,
4691,
6617,
'F',
6573,
4699,
6615,
'F',
6573,
4700,
6618,
'F',
6511,
4701,
6545,
'F',
6506,
4701,
6545,
'F',
6506,
4702,
6756,
'F',
6506,
1475,
4882,
'F',
6506,
4703,
6787,
'F',
6506,
4704,
6791,
'F',
6506,
4705,
6766,
'F',
6530,
4706,
6647,
'F',
6592,
4707,
5493,
'C',
4708,
4709,
0,
'F',
6594,
4710,
9437,
'C',
4234,
4711,
0,
'F',
6077,
4692,
10336,
'F',
6077,
4712,
10340,
'F',
6517,
4699,
6623,
'F',
6599,
4713,
789,
'C',
4203,
4714,
0,
'C',
4298,
4715,
0,
'V',
6514,
4716,
0,
'S',
6514,
4717,
0,
'F',
6506,
4718,
6746,
'S',
6506,
4719,
0,
'F',
5905,
4720,
5074,
'F',
5905,
4721,
5080,
'F',
1761,
4722,
4918,
'C',
1691,
4723,
0,
'F',
1762,
4724,
4926,
'F',
1762,
4725,
4910,
'F',
1751,
4725,
4997,
'F',
1762,
4726,
4921,
'F',
1752,
1475,
4882,
'S',
1752,
1481,
0,
'S',
1752,
1482,
0,
'S',
1752,
1483,
0,
'F',
1751,
4727,
4999,
'S',
1751,
4728,
5002,
'F',
1751,
4729,
5002,
'F',
21,
4590,
5116,
'F',
151,
4730,
13071,
'F',
150,
4590,
5116,
'F',
4540,
3002,
10238,
'F',
6400,
4731,
4619,
'C',
449,
4732,
0,
'F',
6627,
4733,
8487,
'C',
4734,
4735,
0,
'F',
6400,
4736,
4627,
'F',
6627,
4737,
8520,
'F',
6400,
4738,
4678,
'F',
6627,
4739,
8524,
'F',
2830,
4740,
8288,
'F',
6627,
4741,
8485,
'C',
3162,
4742,
0,
'C',
2814,
4743,
0,
'F',
6627,
4744,
8512,
'F',
6627,
4745,
8478,
'F',
2830,
4746,
8286,
'F',
5664,
4747,
10944,
'F',
428,
4747,
14805,
'F',
428,
4748,
14807,
'F',
1459,
1291,
3676,
'F',
1459,
4749,
3686,
'F',
6627,
4750,
8477,
'F',
6627,
4751,
8476,
'F',
6627,
4752,
8451,
'F',
5664,
2114,
10923,
'F',
5664,
4753,
10911,
'F',
5572,
1857,
10796,
'F',
5664,
4754,
10916,
'F',
428,
2535,
14784,
'F',
428,
4755,
14801,
'F',
428,
4756,
14803,
'F',
428,
4757,
14795,
'F',
428,
4754,
14787,
'F',
4276,
4758,
11005,
'F',
435,
1659,
14826,
'F',
4276,
4759,
11007,
'C',
449,
4760,
0,
'S',
6659,
4761,
0,
'S',
461,
4762,
0,
'F',
5664,
2536,
10918,
'F',
6627,
4763,
8489,
'F',
5664,
2535,
10917,
'F',
5664,
4763,
10913,
'F',
5664,
4764,
10936,
'F',
6627,
4765,
8432,
'F',
6627,
4766,
8516,
'F',
5664,
4767,
10940,
'V',
5664,
4768,
0,
'F',
5664,
4769,
10931,
'F',
5664,
4770,
10933,
'F',
5664,
4771,
10935,
'C',
3983,
4772,
0,
'F',
5573,
4773,
10804,
'F',
5573,
789,
10812,
'F',
428,
4774,
14799,
'C',
3968,
4775,
0,
'S',
5573,
4776,
0,
'F',
5572,
4777,
10814,
'F',
6678,
4778,
10782,
'F',
5572,
4779,
10810,
'F',
423,
4780,
14294,
'F',
4460,
2199,
2253,
'F',
6400,
4781,
4656,
'C',
4734,
4782,
0,
'F',
4536,
4783,
4467,
'F',
6689,
4784,
7143,
'C',
4512,
4785,
0,
'S',
6689,
4786,
0,
'F',
6689,
4787,
7128,
'F',
6689,
4788,
7132,
'S',
6694,
3109,
0,
'C',
4253,
4789,
0,
'F',
5999,
4262,
6148,
'S',
6689,
4790,
0,
'S',
6689,
4791,
0,
'F',
6689,
4792,
7149,
'C',
4512,
4793,
0,
'C',
4794,
4795,
0,
'S',
6700,
4796,
0,
'C',
4512,
4797,
0,
'C',
4798,
4799,
0,
'S',
6689,
4800,
0,
'F',
6689,
4801,
7151,
'F',
4541,
911,
10157,
'F',
4541,
4802,
10158,
'F',
6400,
4803,
4679,
'F',
6400,
4804,
4682,
'F',
6400,
4805,
4638,
'F',
5708,
4633,
6657,
'F',
6506,
4806,
6777,
'F',
6400,
4807,
4637,
'F',
1447,
1291,
14253,
'C',
4631,
4808,
0,
'F',
6689,
2312,
7138,
'F',
6400,
4809,
4662,
'C',
3171,
4810,
0,
'C',
4811,
4812,
0,
'S',
6718,
4813,
0,
'F',
6718,
4814,
4664,
'F',
6400,
4815,
4634,
'F',
6400,
4816,
4632,
'C',
28,
4817,
0,
'F',
6724,
837,
5964,
'F',
6724,
862,
4235,
'F',
6728,
888,
4236,
'C',
28,
4818,
0,
'S',
6718,
4819,
0,
'S',
6718,
4820,
0,
'F',
6689,
4821,
7131,
'S',
6689,
4822,
7131,
'F',
6001,
1512,
6124,
'F',
6735,
4823,
6140,
'C',
4253,
4824,
0,
'S',
6735,
4825,
0,
'F',
2603,
4826,
8226,
'S',
5999,
4827,
0,
'F',
1556,
4828,
5220,
'F',
1556,
4829,
5218,
'F',
6689,
4830,
7145,
'C',
3162,
4831,
0,
'F',
6400,
4830,
4686,
'F',
6400,
4832,
4660,
'F',
6400,
4833,
4671,
'F',
6400,
4834,
4669,
'V',
6369,
4835,
0,
'S',
6369,
4836,
0,
'S',
1100,
4837,
0,
'S',
6400,
4838,
4667,
'S',
6400,
4839,
4665,
'F',
6400,
4840,
4665,
'S',
6400,
4841,
0,
'F',
6400,
4842,
4667,
'S',
6400,
4843,
0,
'F',
5708,
4844,
6652,
'F',
3917,
3002,
10707,
'F',
5708,
4636,
6655,
'F',
3917,
4845,
10701,
'C',
4512,
4846,
0,
'S',
5708,
4847,
0,
'F',
6763,
964,
10202,
'C',
3162,
4848,
0,
'F',
6765,
964,
9901,
'C',
4849,
4850,
0,
'F',
6409,
4851,
10286,
'F',
6411,
4852,
10254,
'S',
6400,
4853,
0,
'F',
6409,
4854,
10284,
'F',
6409,
4855,
10280,
'V',
6411,
4856,
0,
'S',
6411,
4857,
0,
'F',
6400,
4858,
4690,
'S',
6775,
4859,
0,
'C',
4860,
33,
0,
'F',
6777,
2559,
154,
'C',
4861,
4862,
0,
'C',
4863,
4864,
0,
'F',
6778,
4865,
12395,
'F',
5701,
4866,
2632,
'S',
5701,
4867,
0,
'F',
5701,
4868,
2612,
'C',
2954,
4869,
0,
'F',
4523,
4870,
1647,
'F',
4523,
3002,
1645,
'F',
5701,
4871,
2630,
'F',
6400,
4872,
4688,
'F',
6400,
4873,
4684,
'F',
6689,
4873,
7134,
'F',
5999,
4485,
6146,
'S',
6689,
4874,
7137,
'F',
6689,
4875,
7137,
'F',
6627,
4876,
8483,
'F',
546,
4877,
14271,
'S',
423,
4878,
0,
'F',
6689,
4879,
7125,
'C',
3152,
4880,
0,
'C',
4504,
4881,
0,
'F',
5664,
4882,
10942,
'C',
4734,
4883,
0,
'F',
428,
4884,
14797,
'S',
5999,
4885,
0,
'F',
21,
4485,
15224,
'F',
5701,
4886,
2628,
'F',
5701,
4887,
2626,
'S',
5701,
4888,
0,
'C',
4512,
4889,
0,
'V',
6809,
4890,
0,
'C',
4811,
4891,
0,
'S',
6809,
4892,
0,
'F',
6812,
3994,
2954,
'C',
3997,
4893,
0,
'C',
3997,
4894,
0,
'S',
5606,
4895,
0,
'C',
3997,
4896,
0,
'C',
3997,
4897,
0,
'C',
4493,
4898,
0,
'C',
4512,
4899,
0,
'C',
4490,
4900,
0,
'F',
5701,
1940,
791,
'F',
1762,
1940,
4880,
'F',
6823,
1940,
4880,
'C',
4683,
4901,
0,
'F',
5702,
1940,
791,
'F',
6826,
1940,
4880,
'C',
4683,
4902,
0,
'F',
6823,
4903,
6340,
'F',
6829,
1940,
4880,
'C',
4500,
4904,
0,
'S',
1515,
4905,
4882,
'F',
6832,
2055,
4868,
'C',
1691,
4906,
0,
'F',
1752,
1940,
4880,
'F',
1751,
4907,
4993,
'F',
1762,
4908,
4912,
'F',
5701,
3136,
433,
'F',
5702,
3136,
433,
'F',
5701,
4909,
2620,
'F',
5702,
4910,
2578,
'F',
5701,
4911,
2615,
'F',
1762,
4912,
4888,
'F',
1751,
4913,
4995,
'C',
3101,
4914,
0,
'F',
5702,
4915,
2594,
'F',
6829,
4915,
6322,
'S',
6823,
4916,
0,
'S',
6829,
4917,
0,
'F',
5702,
4918,
2582,
'F',
5701,
4919,
2618,
'F',
5702,
4920,
2575,
'F',
6823,
4921,
6315,
'F',
6829,
4922,
6320,
'F',
6823,
4923,
6317,
'S',
5702,
4924,
0,
'F',
6826,
4923,
6317,
'S',
4536,
4925,
0,
'F',
5701,
4926,
2622,
'F',
5701,
2857,
793,
'F',
5702,
2857,
793,
'F',
5701,
3124,
7,
'C',
3142,
4927,
0,
'S',
5702,
4928,
0,
'S',
6864,
3109,
0,
'C',
4500,
4929,
0,
'F',
5702,
4930,
2585,
'F',
5702,
4931,
2583,
'F',
5701,
4932,
2616,
'F',
5702,
4933,
2588,
'F',
5706,
2857,
793,
'F',
5706,
1940,
791,
'F',
5705,
1857,
9,
'S',
4447,
3109,
0,
'F',
4451,
4934,
5924,
'C',
3159,
4935,
0,
'F',
5705,
4936,
2245,
'C',
4937,
4938,
0,
'S',
6878,
4939,
0,
'C',
4940,
4941,
0,
'C',
3152,
4942,
0,
'C',
3159,
4943,
0,
'C',
4708,
4944,
0,
'S',
6881,
4945,
0,
'F',
5705,
4946,
2249,
'F',
5705,
4947,
2247,
'F',
5705,
4948,
2243,
'F',
5705,
4949,
2210,
'C',
4950,
4951,
0,
'C',
4952,
4953,
0,
'C',
3159,
4954,
0,
'C',
3159,
4955,
0,
'S',
5705,
4956,
2241,
'S',
5705,
4957,
0,
'C',
4950,
4958,
0,
'C',
3159,
4959,
0,
'C',
4960,
4961,
0,
'S',
6894,
4962,
0,
'C',
3152,
4963,
0,
'F',
5705,
4964,
2241,
'C',
4940,
4965,
0,
'F',
6901,
4966,
5793,
'C',
3101,
4967,
0,
'F',
6901,
4968,
5795,
'F',
6901,
3002,
5791,
'C',
3152,
4969,
0,
'S',
6904,
4970,
0,
'C',
1503,
4971,
0,
'S',
4451,
4972,
0,
'F',
5705,
1940,
791,
'F',
5705,
2857,
793,
'F',
5705,
4973,
2225,
'F',
5705,
3136,
433,
'F',
5705,
3124,
7,
'C',
3159,
4974,
0,
'S',
6913,
4975,
0,
'C',
3159,
4976,
0,
'C',
4977,
4978,
0,
'C',
4977,
4979,
0,
'C',
4977,
4980,
0,
'C',
4977,
4981,
0,
'C',
4977,
4982,
0,
'C',
4977,
4983,
0,
'C',
4977,
4984,
0,
'F',
4513,
24,
1939,
'F',
4469,
24,
851,
'F',
4515,
24,
566,
'F',
5759,
1857,
9,
'F',
4514,
4985,
550,
'F',
4514,
4986,
548,
'C',
3150,
4987,
0,
'S',
6378,
4988,
0,
'F',
4246,
4989,
2970,
'F',
4246,
4990,
2971,
'S',
5567,
4007,
0,
'C',
2950,
4991,
0,
'C',
2950,
4992,
0,
'C',
3150,
4993,
0,
'S',
5759,
4994,
0,
'S',
5759,
4995,
0,
'S',
5759,
4996,
0,
'S',
5759,
4997,
0,
'S',
5759,
4998,
0,
'S',
5759,
4999,
0,
'S',
5759,
5000,
0,
'S',
5759,
5001,
0,
'S',
5759,
5002,
0,
'S',
5759,
5003,
0,
'S',
5759,
5004,
0,
'S',
5759,
5005,
0,
'S',
5759,
5006,
0,
'S',
5759,
5007,
0,
'S',
5759,
5008,
0,
'S',
5759,
5009,
0,
'S',
5759,
5010,
0,
'S',
5759,
5011,
573,
'S',
5759,
5012,
575,
'S',
5759,
5013,
577,
'C',
5014,
5015,
0,
'C',
5016,
5017,
0,
'F',
5759,
5018,
577,
'F',
5759,
5019,
568,
'S',
5759,
5020,
0,
'F',
5759,
5021,
571,
'F',
5759,
5022,
575,
'F',
5759,
5023,
567,
'S',
5759,
5024,
0,
'F',
5759,
5025,
573,
'F',
5759,
5026,
569,
'S',
5759,
5027,
0,
'S',
5759,
5028,
0,
'S',
5759,
5029,
0,
'F',
6972,
2304,
526,
'C',
3148,
5030,
0,
'S',
5759,
5031,
0,
'S',
5567,
5032,
0,
'F',
4242,
4007,
5647,
'C',
1434,
5033,
0,
'S',
4515,
5034,
0,
'S',
4514,
5035,
0,
'C',
3148,
5036,
0,
'C',
3148,
5037,
0,
'C',
5038,
5039,
0,
'S',
4515,
5040,
0,
'C',
5041,
5042,
0,
'S',
6378,
5043,
0,
'C',
1434,
5044,
0,
'S',
3918,
5045,
0,
'S',
3917,
5045,
0,
'S',
5724,
5045,
0,
'S',
6990,
3109,
0,
'C',
2993,
5046,
0,
'F',
5759,
3136,
433,
'F',
5759,
5047,
570,
'F',
5759,
3124,
7,
'F',
5722,
3036,
3,
'C',
4073,
5048,
0,
'F',
5722,
24,
410,
'F',
5770,
692,
41,
'F',
5767,
692,
41,
'F',
5767,
1942,
232,
'F',
5767,
5049,
233,
'F',
5767,
5050,
234,
'F',
5767,
5051,
235,
'F',
5767,
4100,
230,
'F',
5776,
1857,
9,
'S',
4257,
3109,
0,
'S',
4522,
3109,
0,
'F',
5705,
5052,
2211,
'F',
4447,
5053,
6502,
'F',
3891,
5054,
2304,
'F',
4242,
3002,
5643,
'C',
5055,
5056,
0,
'C',
3139,
5057,
0,
'F',
4509,
5058,
152,
'C',
5059,
5060,
0,
'C',
3139,
5061,
0,
'C',
4030,
5062,
0,
'C',
3152,
5063,
0,
'C',
3152,
5064,
0,
'C',
5065,
5066,
0,
'C',
5067,
5068,
0,
'C',
2814,
5069,
0,
'S',
5776,
5070,
201,
'C',
5071,
5072,
0,
'S',
5776,
5073,
203,
'F',
5776,
5074,
203,
'F',
5705,
5075,
2218,
'F',
7028,
733,
816,
'C',
5076,
5077,
0,
'F',
7028,
5078,
814,
'F',
6077,
5079,
10349,
'V',
7032,
5080,
0,
'C',
4308,
33,
0,
'S',
7032,
5081,
0,
'C',
5082,
5083,
0,
'S',
7034,
5084,
0,
'S',
7037,
5085,
0,
'C',
5082,
5086,
0,
'S',
7039,
5087,
0,
'C',
5082,
5088,
0,
'S',
7041,
5089,
0,
'C',
5082,
5090,
0,
'S',
7043,
5091,
0,
'C',
5082,
5092,
0,
'C',
5082,
5093,
0,
'F',
5776,
5094,
201,
'F',
5705,
5095,
2216,
'F',
3892,
5054,
2304,
'F',
4451,
5096,
5925,
'F',
4448,
5097,
5906,
'S',
4451,
5098,
0,
'C',
1241,
5099,
0,
'F',
5595,
692,
41,
'F',
5595,
2799,
838,
'F',
5591,
692,
41,
'F',
5591,
2317,
212,
'F',
5591,
5,
43,
'F',
5591,
14,
7918,
'F',
5591,
1628,
7341,
'F',
4463,
4341,
2222,
'F',
4456,
4341,
2222,
'F',
5794,
2802,
1560,
'F',
5794,
2803,
1562,
'F',
5794,
2309,
1558,
'F',
5794,
2312,
1554,
'F',
5794,
1516,
1550,
'F',
5794,
2313,
1546,
'F',
5794,
2314,
1544,
'F',
5794,
1523,
1542,
'F',
5798,
2312,
1554,
'F',
1589,
5100,
5351,
'C',
1195,
5101,
0,
'F',
5798,
1516,
1550,
'F',
5798,
2313,
1546,
'F',
5798,
2314,
1544,
'F',
5798,
2802,
1560,
'F',
5798,
2803,
1562,
'F',
5798,
2309,
1558,
'F',
5798,
1523,
1542,
'F',
4521,
24,
5187,
'F',
5791,
2503,
5254,
'F',
5791,
1523,
1542,
'F',
4432,
24,
5185,
'F',
1602,
2312,
1554,
'F',
1602,
5102,
5333,
'F',
5791,
5103,
5335,
'F',
1599,
5104,
5337,
'S',
1599,
5105,
0,
'F',
1602,
1857,
5323,
'F',
5425,
15,
3253,
'F',
5425,
588,
3253,
'F',
5425,
2559,
154,
'F',
212,
721,
3248,
'F',
235,
721,
3248,
'F',
2508,
617,
7650,
'F',
2508,
5106,
12384,
'F',
6703,
1857,
1,
'F',
6703,
24,
7384,
'F',
7019,
1857,
1,
'S',
4476,
5107,
0,
'F',
7019,
24,
6543,
'F',
6823,
5108,
4881,
'S',
6823,
5109,
4880,
'F',
6826,
5108,
4881,
'S',
6826,
5109,
4880,
'F',
6826,
1628,
6337,
'F',
6554,
692,
41,
'F',
6554,
2317,
212,
'F',
6554,
5,
43,
'F',
6573,
692,
41,
'F',
6573,
1940,
6571,
'F',
6518,
1940,
6571,
'F',
6573,
5110,
6569,
'F',
6573,
5111,
6568,
'F',
6573,
5112,
6562,
'F',
6573,
4692,
6570,
'C',
4655,
5113,
0,
'F',
6576,
5110,
6569,
'F',
6576,
5111,
6568,
'F',
6517,
692,
41,
'F',
6517,
1940,
6571,
'F',
6517,
5110,
6569,
'F',
6517,
5111,
6568,
'F',
6517,
5112,
6562,
'F',
6518,
692,
41,
'F',
6518,
5114,
6564,
'C',
4655,
5115,
0,
'F',
6518,
5112,
6562,
'F',
6518,
5116,
6560,
'C',
4655,
5117,
0,
'F',
6518,
5118,
6558,
'C',
4655,
5119,
0,
'F',
6888,
5120,
599,
'F',
7014,
1857,
1,
'C',
5059,
5121,
0,
'C',
5059,
5122,
0,
'F',
6876,
1857,
1,
'C',
5123,
5124,
0,
'C',
5125,
5126,
0,
'C',
4794,
5127,
0,
'C',
4937,
5128,
0,
'C',
3152,
5129,
0,
'S',
6876,
5130,
0,
'C',
4234,
5131,
0,
'S',
7145,
5132,
0,
'C',
5133,
5134,
0,
'C',
5133,
5135,
0,
'S',
7145,
5136,
0,
'F',
6538,
692,
41,
'F',
6539,
5137,
6685,
'F',
5567,
5120,
599,
'F',
4448,
5138,
5909,
'F',
7153,
5139,
6463,
'C',
3065,
5140,
0,
'F',
4447,
5141,
5894,
'F',
4449,
5138,
5909,
'F',
4447,
3178,
6494,
'F',
6001,
5142,
6120,
'S',
4447,
5143,
0,
'F',
5999,
5144,
6154,
'S',
5999,
5145,
0,
'F',
7162,
5146,
6486,
'C',
3065,
5147,
0,
'F',
7162,
5148,
6485,
'F',
1761,
5149,
4964,
'F',
1762,
5150,
4916,
'F',
1762,
5151,
4914,
'F',
5904,
5152,
5078,
'S',
5904,
5153,
0,
'F',
5923,
5154,
6077,
'F',
4448,
5155,
5904,
'S',
4448,
5156,
0,
'F',
4451,
5155,
5904,
'F',
4450,
1940,
5922,
'F',
4451,
1940,
5922,
'F',
4450,
5138,
5909,
'F',
4451,
5138,
5909,
'F',
4449,
5157,
6433,
'F',
5923,
5158,
6073,
'F',
5970,
5159,
6007,
'S',
5970,
5160,
0,
'F',
4450,
5161,
5896,
'F',
4447,
5162,
6431,
'S',
4447,
5163,
0,
'S',
4447,
5164,
0,
'F',
4450,
5165,
5895,
'F',
4449,
1940,
5922,
'F',
4449,
5166,
5915,
'F',
4449,
5167,
6447,
'F',
4449,
5168,
6449,
'C',
3076,
5169,
0,
'S',
7190,
5170,
0,
'S',
4449,
5171,
0,
'S',
4449,
5172,
0,
'S',
4449,
5173,
0,
'F',
6113,
5174,
10302,
'F',
7190,
1940,
10321,
'S',
7190,
5175,
10433,
'S',
7190,
5176,
10435,
'F',
7190,
5177,
10435,
'F',
7190,
5178,
10433,
'F',
7190,
1628,
910,
'C',
3076,
5179,
0,
'F',
4456,
5180,
10401,
'S',
4449,
5181,
0,
'F',
4456,
5182,
10395,
'F',
4456,
5183,
10394,
'F',
4458,
1475,
10323,
'F',
4457,
4342,
10327,
'S',
4458,
4905,
10323,
'S',
4457,
5184,
10327,
'F',
4449,
5185,
5913,
'F',
6077,
5186,
2224,
'F',
4449,
5187,
5902,
'F',
4449,
5188,
5900,
'F',
4451,
5188,
5900,
'F',
4449,
5189,
5898,
'F',
4451,
5189,
5898,
'F',
4449,
5161,
5896,
'F',
4449,
5190,
6441,
'F',
4449,
5191,
6443,
'F',
6001,
5192,
6118,
'S',
4449,
5193,
6445,
'F',
4449,
5194,
6445,
'F',
4451,
5195,
5926,
'S',
4451,
5196,
0,
'F',
4449,
5197,
6437,
'F',
4444,
5198,
2023,
'F',
4449,
5198,
2023,
'F',
4447,
5199,
5917,
'F',
4447,
5155,
5904,
'S',
4447,
5156,
0,
'F',
4447,
5188,
5900,
'F',
4447,
5189,
5898,
'F',
4447,
5161,
5896,
'F',
5875,
1857,
9,
'C',
3152,
5200,
0,
'C',
3152,
5201,
0,
'F',
6369,
3036,
3,
'C',
3171,
5202,
0,
'C',
3171,
5203,
0,
'C',
3171,
5204,
0,
'S',
6400,
5205,
0,
'C',
4512,
5206,
0,
'C',
4512,
5207,
0,
'S',
7244,
5208,
0,
'C',
1936,
5209,
0,
'C',
4512,
5210,
0,
'F',
6459,
692,
41,
'F',
6533,
5211,
4448,
'S',
6533,
5212,
4447,
'F',
6533,
5213,
4447,
'F',
6535,
5213,
4447,
'F',
7254,
5214,
6112,
'C',
4659,
5215,
0,
'F',
6881,
1857,
1,
'C',
4708,
5216,
0,
'C',
4708,
5217,
0,
'C',
4708,
5218,
0,
'S',
6881,
5219,
0,
'S',
6881,
5220,
0,
'S',
6881,
5221,
0,
'S',
6881,
5222,
0,
'S',
6881,
5223,
0,
'S',
6881,
5224,
0,
'S',
6881,
5225,
0,
'S',
6881,
5226,
0,
'S',
6881,
5227,
0,
'S',
6881,
5228,
0,
'S',
6881,
5229,
0,
'S',
6881,
5230,
0,
'C',
5231,
5232,
0,
'C',
5231,
5233,
0,
'C',
3166,
5234,
0,
'C',
3166,
5235,
0,
'C',
3166,
5236,
0,
'C',
1602,
5237,
0,
'S',
7272,
5238,
0,
'S',
7273,
5239,
0,
'S',
7272,
5240,
0,
'C',
5231,
5241,
0,
'S',
7272,
5242,
0,
'C',
5243,
5244,
0,
'C',
5231,
5245,
0,
'C',
5231,
5246,
0,
'C',
5247,
5248,
0,
'C',
3166,
5249,
0,
'S',
7286,
5250,
0,
'C',
3166,
5251,
0,
'C',
5252,
5253,
0,
'S',
7289,
5254,
0,
'C',
5255,
5256,
0,
'C',
5255,
5257,
0,
'F',
6881,
24,
5382,
'F',
6700,
1857,
1,
'C',
3152,
5258,
0,
'F',
6700,
5259,
4417,
'C',
3152,
5260,
0,
'F',
7137,
5261,
10636,
'F',
6700,
24,
4419,
'F',
6535,
5211,
4448,
'S',
6535,
5212,
4447,
'F',
6535,
692,
41,
'F',
5900,
1857,
1,
'C',
1945,
5262,
0,
'S',
2025,
5263,
0,
'S',
2025,
5264,
0,
'F',
5900,
24,
7347,
'F',
5610,
5120,
599,
'F',
5951,
692,
41,
'F',
5892,
3036,
3,
'C',
1655,
5265,
0,
'F',
5896,
2804,
208,
'F',
7314,
5266,
9249,
'C',
5267,
5268,
0,
'F',
5896,
2315,
206,
'F',
5975,
692,
41,
'F',
6037,
692,
41,
'F',
4430,
5120,
599,
'F',
5991,
5269,
6035,
'S',
5991,
5270,
6034,
'F',
5991,
5271,
6034,
'F',
6020,
5269,
6035,
'S',
6020,
5270,
6034,
'F',
6020,
5271,
6034,
'F',
4495,
5187,
5607,
'F',
4495,
5272,
5613,
'C',
3126,
5273,
0,
'F',
4495,
5274,
5615,
'F',
4447,
5275,
6498,
'S',
4495,
5276,
0,
'S',
4447,
5277,
0,
'C',
3076,
5278,
0,
'V',
4495,
5279,
0,
'S',
4495,
5280,
0,
'S',
7336,
5281,
0,
'C',
3126,
33,
0,
'F',
4447,
5282,
6500,
'S',
5755,
5283,
0,
'C',
3126,
5284,
0,
'F',
7341,
5285,
5583,
'C',
3126,
5286,
0,
'F',
4457,
4355,
10300,
'F',
7341,
195,
5581,
'S',
4495,
5287,
5618,
'S',
7341,
5288,
5576,
'S',
5875,
5289,
0,
'F',
7341,
5290,
5576,
'F',
5875,
5291,
5543,
'F',
5875,
5292,
5541,
'F',
4495,
5293,
5618,
'F',
7339,
5294,
5551,
'F',
7339,
5295,
5552,
'C',
3076,
5296,
0,
'C',
3076,
5297,
0,
'F',
5875,
5298,
5539,
'F',
7341,
5299,
5577,
'S',
7341,
5300,
5579,
'F',
7341,
5301,
5579,
'S',
7341,
5302,
0,
'V',
7341,
5303,
0,
'S',
7341,
5304,
0,
'C',
3132,
5305,
0,
'F',
4501,
5306,
10486,
'F',
423,
5307,
14277,
'S',
7366,
5308,
0,
'C',
4173,
5309,
0,
'C',
3152,
5310,
0,
'C',
3132,
5311,
0,
'S',
5875,
5312,
0,
'F',
3891,
5313,
10461,
'C',
2814,
5314,
0,
'C',
3132,
5315,
0,
'S',
7372,
5316,
0,
'F',
6121,
1628,
910,
'F',
1556,
5317,
5226,
'S',
5755,
5318,
0,
'S',
5755,
5319,
0,
'S',
5894,
3109,
0,
'S',
4495,
5320,
0,
'F',
4451,
5199,
5917,
'F',
4451,
5166,
5915,
'F',
4451,
5185,
5913,
'F',
4451,
5321,
5911,
'S',
4451,
5156,
0,
'F',
4451,
5187,
5902,
'F',
6019,
1079,
5781,
'S',
4451,
5322,
0,
'S',
4451,
5323,
0,
'F',
4451,
5161,
5896,
'F',
4451,
5165,
5895,
'F',
5987,
5269,
6035,
'S',
5987,
5270,
6034,
'F',
5987,
5271,
6034,
'F',
4495,
5189,
5603,
'F',
5894,
3036,
3,
'C',
3043,
5324,
0,
'S',
5923,
5325,
0,
'F',
5990,
5269,
6035,
'S',
5990,
5270,
6034,
'F',
5990,
5271,
6034,
'F',
4495,
5138,
5605,
'F',
5948,
692,
41,
'F',
5909,
3036,
3,
'C',
4154,
5326,
0,
'F',
5909,
24,
5147,
'F',
5908,
3036,
3,
'C',
3053,
5327,
0,
'C',
3053,
5328,
0,
'F',
5908,
24,
3862,
'F',
7020,
2804,
208,
'F',
7412,
2376,
9741,
'C',
4234,
5329,
0,
'F',
7412,
5330,
9743,
'F',
7020,
2315,
206,
'S',
7412,
5331,
0,
'F',
7020,
1628,
3757,
'F',
5940,
2317,
212,
'V',
5940,
5332,
0,
'S',
5940,
5333,
0,
'V',
5940,
5334,
0,
'S',
5940,
5335,
0,
'F',
5940,
5,
43,
'F',
5911,
3036,
3,
'C',
4164,
5336,
0,
'F',
5911,
24,
7053,
'F',
5939,
2799,
838,
'F',
5939,
692,
41,
'F',
6608,
692,
41,
'F',
1761,
5337,
4902,
'F',
1762,
5108,
4881,
'S',
1762,
5109,
4880,
'F',
1762,
4722,
4918,
'F',
1762,
5337,
4902,
'F',
1752,
5108,
4881,
'S',
1752,
5109,
4880,
'F',
5910,
3036,
3,
'C',
4162,
5338,
0,
'S',
7437,
5339,
0,
'F',
5910,
24,
3731,
'F',
6001,
692,
41,
'F',
1371,
5340,
4138,
'S',
1371,
5341,
4137,
'F',
1371,
5342,
4137,
'F',
590,
876,
13156,
'S',
1371,
5343,
4204,
'F',
6371,
5120,
599,
'F',
6829,
5108,
4881,
'S',
6829,
5109,
4880,
'F',
5699,
4713,
789,
'F',
6374,
24,
7382,
'F',
6375,
3036,
3,
'C',
4504,
5344,
0,
'F',
6798,
2804,
208,
'F',
7455,
5345,
9292,
'C',
4234,
5346,
0,
'F',
7455,
5347,
9293,
'F',
7455,
5348,
9295,
'S',
7455,
5349,
9295,
'S',
441,
5350,
0,
'F',
6798,
2315,
206,
'C',
4234,
5351,
0,
'C',
4234,
5352,
0,
'S',
7461,
5353,
0,
'F',
4435,
5120,
599,
'F',
6702,
3036,
3,
'C',
4512,
5354,
0,
'C',
4512,
5355,
0,
'F',
6689,
1628,
7126,
'F',
6807,
3036,
3,
'C',
4512,
5356,
0,
'F',
6807,
24,
7269,
'F',
6760,
692,
41,
'F',
6381,
5357,
7235,
'S',
6381,
5358,
7234,
'F',
6381,
5359,
7233,
'S',
6381,
5360,
7232,
'F',
6381,
5361,
7232,
'F',
6381,
4738,
7221,
'F',
6627,
5362,
8500,
'F',
6627,
5363,
8386,
'F',
6381,
5364,
7220,
'F',
6381,
5365,
7231,
'S',
6381,
5366,
7230,
'F',
6381,
5367,
7230,
'F',
6381,
5368,
7229,
'S',
6381,
5369,
7228,
'F',
6381,
5370,
7228,
'F',
5701,
5371,
2606,
'F',
6627,
5372,
8502,
'F',
6627,
5373,
8504,
'F',
6627,
5374,
8508,
'F',
5664,
5375,
10946,
'F',
428,
5375,
14809,
'F',
428,
5376,
14811,
'F',
6381,
5377,
7227,
'S',
6381,
5378,
7226,
'F',
6381,
5379,
7226,
'F',
6381,
5380,
7225,
'S',
6381,
5381,
7224,
'F',
6381,
5382,
2462,
'S',
6381,
5383,
2461,
'F',
6381,
5384,
2461,
'F',
6381,
5385,
7223,
'S',
6381,
5386,
7222,
'F',
6381,
5387,
7222,
'F',
6627,
5388,
8492,
'F',
6699,
692,
41,
'F',
5744,
3036,
3,
'F',
5744,
24,
5775,
'F',
5933,
692,
41,
'F',
6901,
692,
41,
'S',
2558,
5389,
0,
'F',
6901,
2317,
212,
'F',
6901,
5,
43,
'F',
6843,
692,
41,
'F',
4476,
5120,
599,
'F',
6383,
3036,
3,
'C',
3152,
5390,
0,
'F',
6383,
24,
4090,
'F',
6372,
2315,
206,
'C',
4234,
5391,
0,
'F',
6897,
2804,
208,
'F',
7524,
5392,
8317,
'C',
4960,
5393,
0,
'F',
6897,
2315,
206,
'C',
5394,
5395,
0,
'C',
5394,
5396,
0,
'S',
7524,
5397,
0,
'F',
6904,
5398,
3945,
'F',
7018,
2858,
3873,
'F',
7532,
5399,
9316,
'C',
4234,
5400,
0,
'F',
7532,
5401,
9318,
'F',
7018,
2804,
208,
'F',
7532,
4044,
9320,
'F',
7018,
2315,
206,
'C',
4234,
5402,
0,
'S',
7537,
5403,
0,
'F',
5899,
2804,
208,
'F',
7541,
4440,
9833,
'C',
4173,
5404,
0,
'F',
7541,
2417,
9835,
'F',
7541,
5405,
9837,
'F',
7541,
4044,
9839,
'F',
7541,
5406,
9831,
'F',
5899,
2315,
206,
'C',
4173,
5407,
0,
'C',
4253,
5408,
0,
'S',
7541,
5409,
0,
'F',
5897,
5398,
3945,
'F',
5895,
1857,
1,
'F',
6879,
2804,
208,
'F',
6879,
2315,
206,
'F',
6382,
2804,
208,
'F',
6545,
5410,
9417,
'F',
6545,
5411,
9419,
'F',
6382,
2315,
206,
'S',
6545,
5412,
0,
'F',
6797,
2804,
208,
'F',
7561,
4375,
9727,
'C',
4234,
5413,
0,
'F',
7561,
5414,
9729,
'F',
7561,
2390,
9731,
'F',
6797,
2315,
206,
'S',
7561,
5415,
0,
'F',
7017,
2804,
208,
'F',
7568,
5392,
9790,
'C',
4030,
5416,
0,
'F',
7017,
2315,
206,
'S',
7568,
5417,
0,
'F',
6634,
692,
41,
'F',
6444,
692,
41,
'F',
6809,
4814,
4664,
'S',
7575,
5418,
0,
'C',
4811,
33,
0,
'S',
6809,
5419,
0,
'S',
6809,
5420,
0,
'F',
4541,
3002,
10159,
'F',
1919,
5108,
4881,
'S',
1919,
5109,
4880,
'F',
6024,
692,
41,
'F',
6019,
692,
41,
'F',
6060,
5421,
7845,
'S',
6060,
5422,
7844,
'F',
6060,
5423,
7844,
'F',
6060,
692,
41,
'F',
6525,
692,
41,
'F',
6715,
692,
41,
'F',
5919,
692,
41,
'F',
5920,
692,
41,
'F',
6242,
2396,
210,
'F',
2603,
5424,
8222,
'F',
6240,
5425,
9774,
'F',
6240,
4451,
9765,
'F',
5582,
5426,
10510,
'F',
5643,
5427,
1492,
'F',
6392,
692,
41,
'F',
6131,
2411,
6962,
'F',
2009,
5428,
12067,
'F',
2009,
5429,
12106,
'F',
6252,
2396,
210,
'F',
2603,
5430,
8224,
'F',
6142,
2411,
6962,
'F',
2009,
5431,
12133,
'F',
2009,
5432,
12139,
'F',
2009,
5433,
12141,
'F',
2009,
5434,
12137,
'F',
2009,
5435,
12138,
'F',
2009,
4389,
12111,
'F',
2009,
4369,
12126,
'F',
2009,
4394,
12127,
'F',
2009,
4386,
12129,
'F',
2009,
4388,
12104,
'F',
2009,
4396,
12094,
'F',
2009,
4397,
12074,
'F',
2009,
4404,
12077,
'F',
2009,
4406,
12083,
'F',
2009,
4407,
12084,
'F',
2009,
4408,
12085,
'S',
6142,
5436,
9574,
'S',
6142,
5437,
9578,
'S',
6142,
5438,
9592,
'S',
6142,
5439,
9594,
'S',
6142,
5440,
9596,
'F',
6142,
5441,
9596,
'F',
6142,
5442,
9594,
'F',
6142,
5443,
9592,
'F',
6142,
5444,
9578,
'F',
6142,
5445,
9574,
'F',
2009,
5446,
12072,
'F',
2009,
5447,
12070,
'S',
2009,
5448,
0,
'F',
6142,
2410,
1482,
'F',
6142,
13,
9519,
'F',
6142,
1628,
9520,
'F',
6133,
2386,
1496,
'F',
6133,
2810,
1502,
'F',
6133,
2905,
1500,
'F',
6133,
2396,
210,
'F',
6133,
5427,
1492,
'F',
6133,
2413,
2683,
'F',
6232,
2810,
1502,
'F',
6232,
5449,
9377,
'F',
5582,
5450,
10512,
'F',
6232,
2386,
1496,
'S',
2664,
5451,
0,
'F',
2039,
2485,
8991,
'F',
1917,
5452,
9071,
'S',
6133,
5453,
1496,
'F',
2112,
2428,
8818,
'F',
445,
5054,
14507,
'F',
445,
5454,
14509,
'F',
6232,
2905,
1500,
'F',
1402,
5455,
8252,
'S',
6232,
5456,
0,
'F',
1402,
5457,
8256,
'F',
1390,
2485,
8260,
'C',
1351,
5458,
0,
'F',
6232,
1354,
444,
'F',
6137,
2410,
1482,
'F',
6226,
2055,
1474,
'F',
1638,
2043,
4471,
'F',
6228,
2055,
1474,
'S',
6199,
5459,
2051,
'F',
6199,
5460,
2051,
'F',
6226,
5460,
2051,
'F',
6226,
2030,
1472,
'F',
6228,
2030,
1472,
'F',
1638,
2047,
4469,
'F',
6199,
2034,
6968,
'F',
6199,
2818,
6964,
'F',
6199,
5461,
9199,
'F',
6228,
5462,
2706,
'F',
6199,
5463,
9224,
'F',
6199,
5464,
9214,
'F',
5664,
5465,
10909,
'F',
6199,
5466,
9212,
'C',
3968,
5467,
0,
'F',
6199,
2411,
6962,
'F',
6199,
3187,
9194,
'F',
5573,
5468,
10806,
'F',
23,
5469,
13120,
'S',
6199,
5470,
0,
'F',
5572,
5471,
10808,
'F',
6199,
2386,
1496,
'F',
5664,
2386,
10925,
'F',
2190,
5472,
14399,
'F',
2190,
5473,
14393,
'S',
6199,
5474,
0,
'C',
449,
5475,
0,
'V',
2190,
5476,
0,
'S',
2190,
5477,
0,
'F',
6199,
2396,
210,
'F',
6199,
5478,
9216,
'F',
6199,
5479,
9220,
'F',
5664,
5307,
10919,
'F',
5664,
5480,
10922,
'F',
6199,
5481,
9205,
'F',
6199,
794,
9208,
'C',
449,
5482,
0,
'S',
7700,
5483,
0,
'S',
7700,
5484,
0,
'S',
461,
5485,
0,
'S',
461,
5486,
0,
'F',
7700,
798,
14475,
'F',
7700,
5487,
14477,
'F',
428,
5480,
14790,
'F',
2603,
2032,
8242,
'C',
449,
5488,
0,
'F',
6199,
2302,
4207,
'F',
5573,
5489,
10800,
'S',
5573,
5490,
0,
'F',
5572,
5491,
10802,
'F',
6199,
2905,
1500,
'S',
6199,
5492,
0,
'F',
6199,
2904,
1498,
'F',
6199,
5427,
1492,
'F',
5664,
5427,
10920,
'F',
428,
5493,
14788,
'F',
428,
5494,
14789,
'F',
6199,
2413,
2683,
'C',
3977,
5495,
0,
'F',
6228,
2314,
1480,
'F',
6228,
2400,
1476,
'F',
6228,
5496,
2704,
'F',
6228,
5497,
2700,
'F',
6228,
4486,
2694,
'F',
6228,
872,
2702,
'F',
6228,
54,
2698,
'F',
6228,
4485,
2696,
'F',
6286,
2465,
8744,
'F',
457,
4461,
14191,
'F',
457,
5498,
14193,
'C',
449,
5499,
0,
'F',
6286,
2474,
8740,
'F',
423,
1428,
14298,
'F',
5649,
5427,
1492,
'F',
5660,
5500,
8299,
'F',
5660,
5501,
8297,
'F',
6310,
692,
41,
'F',
5661,
5496,
2704,
'F',
5661,
5497,
2700,
'F',
5661,
872,
2702,
'F',
6307,
692,
41,
'F',
6800,
692,
41,
'F',
6686,
692,
41,
'F',
6895,
692,
41,
'F',
6312,
2055,
8269,
'F',
2830,
5427,
1492,
'F',
6109,
692,
41,
'F',
7044,
692,
41,
'F',
7034,
692,
41,
'F',
7034,
5502,
12328,
'F',
7034,
5503,
6841,
'F',
7034,
5504,
6839,
'F',
6102,
692,
41,
'F',
4277,
3002,
579,
'F',
4380,
3002,
579,
'F',
6678,
14,
0,
'F',
3917,
2304,
9752,
'F',
3917,
2841,
436,
'F',
4169,
2304,
9752,
'F',
5724,
2304,
9752,
'F',
3918,
2841,
436,
'F',
5757,
3002,
579,
'F',
6957,
692,
41,
'F',
5950,
692,
41,
'F',
6222,
692,
41,
'F',
6344,
5505,
10501,
'F',
5582,
5505,
10501,
'F',
5918,
692,
41,
'F',
5918,
23,
10523,
'F',
5918,
839,
10523,
'F',
5918,
8,
10522,
'F',
5918,
664,
10522,
'F',
5918,
17,
10504,
'F',
5918,
54,
10504,
'F',
5918,
5505,
10501,
'F',
5606,
3994,
2954,
'F',
5696,
5506,
1881,
'S',
5696,
5507,
0,
'C',
3104,
5508,
0,
'F',
5712,
1857,
1,
'F',
6813,
5509,
8141,
'C',
3104,
5510,
0,
'F',
5712,
24,
2789,
'F',
6817,
5511,
2744,
'F',
6817,
5512,
2740,
'C',
4493,
5513,
0,
'F',
6818,
5514,
7111,
'F',
6818,
5515,
7113,
'F',
6818,
5516,
7115,
'F',
6817,
5517,
2746,
'C',
4493,
5518,
0,
'S',
6817,
5519,
0,
'S',
6817,
5520,
0,
'S',
6817,
5521,
0,
'S',
6817,
5522,
0,
'F',
6818,
5523,
7123,
'F',
6400,
5524,
4680,
'F',
6818,
5525,
7121,
'S',
6818,
5526,
0,
'S',
7804,
5527,
0,
'C',
5528,
5529,
0,
'F',
4542,
5530,
14760,
'F',
4542,
5531,
14762,
'S',
7804,
5532,
0,
'C',
5528,
5533,
0,
'F',
6818,
5534,
7119,
'F',
4542,
5535,
14764,
'S',
7804,
5536,
0,
'F',
7243,
2312,
7323,
'S',
7243,
5537,
0,
'S',
7804,
5538,
0,
'F',
6818,
5539,
7117,
'F',
6400,
5540,
4609,
'F',
6400,
5541,
4608,
'F',
6400,
5542,
4607,
'F',
6400,
5543,
4606,
'F',
6817,
5544,
2738,
'F',
6861,
5545,
2470,
'S',
6861,
5546,
2469,
'F',
6861,
5547,
2469,
'S',
7825,
5548,
0,
'C',
5549,
5550,
0,
'F',
1917,
5551,
9092,
'S',
7825,
5552,
0,
'S',
7829,
5553,
0,
'C',
5554,
5555,
0,
'C',
5556,
5557,
0,
'C',
5556,
5558,
0,
'S',
7829,
5559,
0,
'F',
1923,
5560,
11948,
'F',
7831,
5561,
12282,
'F',
1811,
156,
9971,
'S',
1811,
5562,
0,
'F',
6861,
5563,
2468,
'S',
6861,
5564,
2467,
'F',
6861,
5565,
2467,
'F',
6627,
5566,
8498,
'F',
6627,
5567,
8506,
'F',
6861,
5568,
2466,
'S',
6861,
5569,
2465,
'F',
6861,
5570,
2465,
'F',
6861,
5571,
2464,
'S',
6861,
5572,
2463,
'F',
6861,
5382,
2462,
'S',
6861,
5383,
2461,
'F',
6861,
5384,
2461,
'F',
6979,
692,
41,
'F',
6979,
2304,
526,
'F',
6980,
692,
41,
'F',
6980,
2304,
526,
'F',
6890,
692,
41,
'F',
6889,
5120,
599,
'F',
6913,
1628,
910,
'F',
6915,
5573,
2081,
'S',
423,
5045,
0,
'F',
6915,
3002,
2083,
'F',
5706,
5574,
1324,
'F',
5706,
4713,
789,
'F',
6880,
3036,
3,
'C',
3159,
5575,
0,
'C',
3159,
5576,
0,
'F',
6880,
24,
2135,
'F',
6874,
1857,
1,
'F',
6985,
692,
41,
'F',
6985,
2304,
526,
'F',
6985,
1628,
1991,
'F',
6388,
2464,
1980,
'F',
6976,
2304,
526,
'F',
6387,
2821,
582,
'F',
6387,
2304,
526,
'F',
6887,
3036,
3,
'C',
4950,
5577,
0,
'C',
4950,
5578,
0,
'F',
6887,
24,
1815,
'F',
6893,
692,
41,
'F',
6783,
3036,
3,
'C',
2954,
5579,
0,
'S',
7880,
5580,
0,
'C',
2954,
5581,
0,
'C',
2954,
5582,
0,
'F',
6783,
24,
1606,
'F',
6935,
1857,
1,
'S',
7887,
3109,
0,
'C',
2950,
5583,
0,
'C',
2950,
5584,
0,
'S',
6935,
5585,
1079,
'F',
6935,
24,
1084,
'F',
7011,
1857,
1,
'C',
5586,
5587,
0,
'F',
6922,
692,
41,
'F',
6916,
692,
41,
'F',
6899,
5120,
599,
'F',
6981,
2799,
838,
'F',
6981,
692,
41,
'F',
6929,
2821,
582,
'F',
6929,
2304,
526,
'F',
6936,
2804,
208,
'F',
7902,
5588,
587,
'C',
3150,
5589,
0,
'F',
6936,
2315,
206,
'S',
7902,
5590,
0,
'F',
6983,
5,
43,
'F',
6983,
2317,
212,
'F',
6995,
1857,
9,
'F',
6995,
5591,
435,
'C',
4073,
4993,
0,
'S',
6995,
5592,
431,
'S',
6995,
5593,
427,
'S',
6995,
5594,
429,
'F',
6995,
5595,
429,
'F',
6995,
5596,
421,
'S',
6995,
5597,
0,
'F',
6995,
5598,
425,
'F',
6995,
5599,
427,
'F',
6995,
5600,
423,
'S',
6995,
5601,
0,
'F',
6995,
5602,
431,
'F',
6995,
5603,
422,
'S',
6995,
5604,
0,
'F',
6995,
5605,
424,
'F',
6995,
3136,
433,
'F',
6995,
3124,
7,
'F',
7023,
1857,
1,
'S',
7023,
5606,
0,
'C',
5071,
5607,
0,
'S',
5894,
4284,
0,
'F',
5767,
423,
238,
'F',
5767,
5608,
236,
'F',
4498,
423,
238,
'F',
4498,
5608,
236,
'F',
7012,
2804,
208,
'F',
7012,
2315,
206,
'C',
3139,
5609,
0,
'S',
7936,
5610,
0,
'F',
6274,
2484,
11233,
'F',
1454,
5611,
3633,
'F',
1760,
5612,
5120,
'S',
1760,
5613,
2448,
'F',
1518,
5612,
5120,
'S',
1518,
5613,
2448,
'F',
6906,
692,
41,
'F',
6906,
2317,
212,
'F',
6906,
5,
43,
'F',
6906,
1628,
7686,
'F',
1515,
5108,
4881,
'S',
1515,
5109,
4880,
'F',
6373,
692,
41,
'F',
6813,
3994,
2954,
'F',
6815,
3994,
8160,
'F',
6816,
3994,
8174,
'F',
6819,
5511,
2744,
'F',
6819,
5544,
2738,
'F',
6819,
5512,
2740,
'F',
6818,
5517,
2746,
'C',
4490,
5614,
0,
'S',
6819,
5615,
0,
'S',
6819,
5616,
0,
'S',
6819,
5617,
0,
'S',
6819,
5618,
0,
'F',
6090,
4112,
10307,
'F',
6090,
692,
41,
'F',
6090,
1628,
910,
'F',
4500,
5054,
10482,
'F',
4500,
423,
238,
'F',
4500,
5608,
236,
'F',
6091,
4341,
2222,
'F',
6091,
4355,
10300,
'F',
4480,
5619,
10459,
'F',
3890,
5619,
10459,
'F',
6635,
5619,
10459,
'F',
7021,
692,
41,
'F',
7021,
5619,
10459,
'F',
6121,
5620,
10418,
'S',
6121,
5621,
10419,
'F',
6121,
692,
41,
'F',
6121,
5622,
10420,
'F',
4459,
5623,
10317,
'S',
7353,
5175,
10413,
'F',
7353,
5178,
10413,
'F',
7354,
4342,
10327,
'F',
4463,
4355,
10300,
'F',
6122,
4341,
2222,
'F',
6122,
4355,
10300,
'F',
6105,
692,
41,
'F',
6077,
5624,
10331,
'S',
6077,
5625,
10332,
'F',
6077,
5626,
10332,
'F',
6077,
4112,
10307,
'F',
6077,
13,
2223,
'F',
6101,
5503,
6841,
'F',
6101,
5504,
6839,
'F',
6093,
692,
41,
'F',
7071,
2317,
212,
'F',
7071,
5,
43,
'F',
7071,
1628,
5370,
'F',
5898,
1553,
1566,
'F',
6777,
692,
41,
'F',
6777,
2317,
212,
'F',
6777,
5,
43,
'F',
6777,
23,
12292,
'F',
6777,
839,
12292,
'F',
6777,
833,
7606,
'S',
8007,
5627,
0,
'C',
4861,
33,
0,
'F',
6777,
796,
4484,
'F',
6777,
862,
4235,
'C',
4861,
5628,
0,
'F',
6659,
2317,
212,
'F',
293,
5629,
13726,
'F',
6659,
5,
43,
'F',
6625,
692,
41,
'F',
6625,
2317,
212,
'F',
6625,
5,
43,
'F',
690,
759,
5141,
'S',
62,
5630,
0,
'F',
114,
617,
7650,
'F',
280,
4598,
5119,
'F',
280,
4590,
5116,
'F',
280,
759,
5141,
'F',
290,
617,
7650,
'F',
291,
617,
7650,
'F',
210,
617,
7650,
'F',
217,
5631,
13748,
'F',
238,
4598,
5119,
'F',
238,
4590,
5116,
'F',
238,
759,
5141,
'F',
288,
4598,
5119,
'F',
288,
4590,
5116,
'F',
288,
759,
5141,
'F',
261,
617,
7650,
'F',
217,
5632,
13772,
'F',
216,
4598,
5119,
'F',
216,
4590,
5116,
'F',
216,
759,
5141,
'F',
274,
617,
7650,
'F',
275,
617,
7650,
'F',
273,
4598,
5119,
'F',
273,
4590,
5116,
'F',
273,
759,
5141,
'F',
253,
4598,
5119,
'F',
253,
4590,
5116,
'F',
253,
759,
5141,
'F',
253,
617,
7650,
'F',
220,
4598,
5119,
'F',
220,
4590,
5116,
'F',
220,
759,
5141,
'F',
259,
4598,
5119,
'F',
259,
4590,
5116,
'F',
259,
759,
5141,
'F',
259,
617,
7650,
'F',
217,
5633,
13756,
'F',
217,
5634,
13752,
'F',
269,
617,
7650,
'F',
237,
617,
7650,
'F',
217,
5635,
13780,
'F',
211,
4598,
5119,
'F',
211,
4590,
5116,
'F',
211,
759,
5141,
'F',
251,
617,
7650,
'F',
234,
617,
7650,
'F',
217,
5636,
13744,
'F',
249,
617,
7650,
'F',
217,
5637,
13776,
'F',
267,
617,
7650,
'F',
217,
5638,
13768,
'F',
228,
4598,
5119,
'F',
228,
4590,
5116,
'F',
228,
759,
5141,
'F',
228,
617,
7650,
'F',
264,
617,
7650,
'F',
217,
5639,
13760,
'F',
539,
5640,
12780,
'F',
539,
5641,
12781,
'S',
539,
5642,
0,
'F',
3475,
5640,
12780,
'F',
3475,
5641,
12781,
'S',
3475,
5643,
0,
'F',
151,
5644,
5117,
'F',
1354,
5612,
5120,
'S',
1354,
5613,
2448,
'F',
1528,
4590,
5116,
'C',
51,
5645,
0,
'S',
8085,
5646,
0,
'C',
51,
5647,
0,
'C',
51,
5648,
0,
'S',
8088,
5649,
12912,
'F',
1528,
5644,
5117,
'F',
23,
5612,
5120,
'S',
23,
5613,
2448,
'F',
23,
4590,
5116,
'F',
23,
759,
5141,
'S',
62,
5650,
0,
'F',
150,
5612,
5120,
'S',
150,
5613,
2448,
'F',
113,
759,
5141,
'F',
75,
759,
5141,
'F',
6728,
947,
4237,
'F',
60,
5651,
15165,
'F',
60,
5652,
15156,
'F',
97,
5651,
15165,
'F',
97,
5652,
15156,
'F',
7135,
692,
41,
'F',
7134,
5653,
2108,
'F',
7140,
1857,
1,
'C',
4937,
5654,
0,
'C',
4937,
5655,
0,
'C',
4708,
5656,
0,
'F',
7140,
24,
5863,
'F',
4447,
5657,
6507,
'S',
4447,
5658,
6506,
'F',
4447,
5659,
6506,
'C',
3065,
5660,
0,
'F',
4447,
5661,
6504,
'S',
4447,
5662,
6503,
'F',
4447,
5663,
6503,
'F',
7339,
692,
41,
'F',
7327,
692,
41,
'F',
7341,
692,
41,
'F',
6400,
1857,
9,
'F',
6832,
5664,
4870,
'F',
7241,
1857,
9,
'S',
6400,
5665,
0,
'F',
6400,
5666,
4696,
'F',
6400,
5667,
4698,
'F',
6400,
5668,
4700,
'F',
6400,
5669,
4702,
'F',
6400,
5670,
4605,
'F',
6369,
5671,
4481,
'F',
6400,
5672,
4681,
'C',
3171,
5673,
0,
'C',
3152,
5674,
0,
'C',
5675,
4760,
0,
'S',
8135,
5676,
0,
'F',
4536,
5669,
4459,
'F',
4540,
5677,
10240,
'S',
6400,
5678,
0,
'S',
6400,
5679,
0,
'S',
6400,
5680,
0,
'S',
8143,
3109,
0,
'C',
5681,
5682,
0,
'F',
6400,
4024,
3820,
'F',
6400,
1940,
791,
'F',
6071,
2043,
4471,
'F',
6400,
5683,
4646,
'F',
6689,
1940,
7147,
'F',
1752,
2043,
4471,
'F',
7243,
2043,
4471,
'F',
7243,
1940,
4880,
'F',
7239,
1940,
791,
'S',
6400,
5684,
4613,
'S',
6400,
5685,
4617,
'S',
6400,
5686,
4619,
'S',
6400,
5687,
4615,
'S',
6400,
5688,
4610,
'F',
6400,
5689,
4610,
'S',
6400,
5690,
0,
'F',
6400,
5691,
4615,
'F',
6400,
5692,
4648,
'F',
6400,
5693,
4673,
'F',
6400,
5694,
4654,
'F',
7241,
5695,
1199,
'F',
6400,
5696,
1211,
'F',
7241,
5697,
1195,
'F',
7241,
5698,
1197,
'F',
8169,
5699,
3863,
'C',
5700,
5701,
0,
'S',
8169,
5702,
0,
'C',
5700,
5703,
0,
'F',
1762,
5704,
4908,
'F',
6400,
5705,
4617,
'F',
6627,
5706,
8407,
'F',
6400,
5707,
4613,
'S',
6400,
5708,
0,
'F',
6411,
733,
10258,
'F',
6409,
5709,
10276,
'F',
6409,
5710,
10274,
'S',
6409,
5711,
0,
'F',
6400,
3136,
433,
'F',
6400,
5712,
4642,
'F',
1762,
2030,
4919,
'F',
1752,
2047,
4469,
'F',
6400,
2857,
793,
'F',
7239,
2857,
793,
'S',
8188,
3109,
0,
'C',
5713,
5714,
0,
'F',
6400,
3124,
7,
'F',
7241,
3124,
7,
'F',
7243,
2047,
4469,
'S',
6400,
5715,
0,
'F',
6689,
5716,
7140,
'F',
7241,
2506,
1201,
'F',
7240,
4018,
3830,
'F',
7240,
4019,
3828,
'F',
7240,
4020,
3826,
'F',
7240,
4021,
3852,
'F',
7240,
4022,
3824,
'F',
7240,
4023,
3822,
'F',
7240,
4025,
3818,
'F',
7240,
4026,
3845,
'F',
7240,
4013,
3843,
'F',
7239,
5574,
1324,
'F',
7239,
4713,
789,
'F',
7116,
4295,
4449,
'F',
6532,
4295,
4449,
'F',
7131,
4295,
4449,
'F',
6533,
4295,
4449,
'F',
7129,
4295,
4449,
'F',
6531,
4295,
4449,
'F',
7126,
4295,
4449,
'F',
7258,
3036,
3,
'F',
7258,
24,
5482,
'F',
7139,
2804,
208,
'F',
8217,
5717,
9354,
'C',
4234,
5718,
0,
'S',
8219,
5719,
0,
'C',
5720,
33,
0,
'F',
8217,
2021,
9359,
'F',
8217,
5721,
9357,
'F',
8223,
5,
43,
'C',
5722,
5723,
0,
'S',
8225,
3109,
0,
'C',
3152,
5724,
0,
'F',
7139,
2315,
206,
'S',
8217,
5725,
0,
'F',
6535,
4295,
4449,
'F',
7311,
1857,
9,
'F',
7311,
1940,
791,
'F',
6043,
2043,
4471,
'F',
4483,
5726,
6412,
'S',
7311,
5727,
6361,
'S',
7311,
5728,
6363,
'S',
7311,
5729,
6365,
'F',
7311,
5730,
6365,
'F',
7311,
5731,
6373,
'S',
7311,
5732,
0,
'F',
7311,
5733,
6366,
'C',
1655,
5734,
0,
'S',
7311,
5735,
6369,
'F',
7311,
5736,
6369,
'F',
7311,
5737,
6370,
'F',
7311,
5738,
6363,
'F',
7311,
5739,
6361,
'F',
4486,
5726,
6412,
'F',
4485,
5740,
6409,
'F',
4486,
5740,
6409,
'F',
6045,
2043,
4471,
'F',
7311,
3136,
433,
'F',
6043,
2047,
4469,
'F',
4483,
5741,
6410,
'F',
4486,
5741,
6410,
'F',
6045,
2047,
4469,
'F',
7311,
2857,
793,
'F',
7311,
3124,
7,
'F',
7311,
5742,
6375,
'F',
7396,
2857,
793,
'F',
7396,
1940,
791,
'F',
7396,
5574,
1324,
'F',
7396,
4713,
789,
'F',
5923,
1857,
9,
'C',
5681,
5743,
0,
'C',
3152,
5744,
0,
'C',
3152,
5745,
0,
'S',
5923,
5746,
6082,
'S',
5923,
5747,
6084,
'F',
5923,
5748,
6084,
'F',
5923,
5749,
6082,
'F',
5923,
1940,
791,
'F',
5923,
5750,
6040,
'F',
5923,
5751,
6042,
'F',
5923,
3136,
433,
'F',
5923,
2857,
793,
'S',
4430,
3109,
0,
'F',
5923,
3124,
7,
'S',
5923,
5752,
0,
'F',
7404,
1857,
9,
'C',
4154,
5753,
0,
'F',
7404,
1940,
791,
'F',
7404,
3124,
7,
'F',
7407,
1940,
791,
'F',
7407,
1857,
9,
'S',
6901,
5754,
0,
'S',
3917,
5755,
0,
'F',
7407,
4022,
3824,
'S',
7407,
5756,
0,
'F',
7407,
4023,
3822,
'S',
7407,
5757,
0,
'F',
7407,
4024,
3820,
'S',
7407,
5758,
0,
'F',
7407,
4018,
3830,
'S',
7407,
5759,
0,
'F',
7407,
3124,
7,
'F',
7408,
4019,
3828,
'F',
7408,
4020,
3826,
'F',
7408,
4021,
3852,
'F',
7408,
4025,
3818,
'F',
7408,
4026,
3845,
'F',
7408,
4013,
3843,
'F',
7424,
1857,
9,
'F',
7424,
5760,
7054,
'C',
4164,
5761,
0,
'C',
5762,
5763,
0,
'S',
7424,
5764,
7055,
'F',
7424,
5765,
7055,
'F',
8308,
5766,
7042,
'C',
4164,
5767,
0,
'V',
1837,
5768,
0,
'S',
1837,
5769,
0,
'F',
1756,
5770,
10030,
'S',
1527,
5771,
0,
'F',
5940,
1324,
7036,
'S',
8315,
5772,
0,
'C',
1691,
33,
0,
'S',
5910,
5773,
0,
'S',
5910,
5774,
0,
'S',
5910,
5775,
0,
'F',
8320,
5776,
3724,
'C',
4162,
5777,
0,
'S',
5910,
5778,
0,
'S',
5910,
5779,
0,
'S',
8324,
5780,
0,
'C',
4162,
33,
0,
'F',
7424,
3136,
433,
'F',
8308,
5781,
7041,
'F',
7424,
3124,
7,
'C',
4164,
5782,
0,
'S',
8328,
5783,
0,
'F',
7424,
1940,
791,
'F',
7437,
1857,
9,
'C',
4162,
5784,
0,
'F',
7437,
1940,
791,
'S',
7437,
5785,
3732,
'F',
7437,
5786,
3732,
'S',
7437,
5787,
0,
'F',
7437,
3136,
433,
'F',
7437,
5788,
3734,
'F',
7437,
3124,
7,
'F',
7830,
5789,
12284,
'F',
7831,
692,
41,
'F',
7548,
2314,
1480,
'F',
7548,
2400,
1476,
'F',
7548,
2055,
1474,
'F',
7548,
2030,
1472,
'F',
7548,
5496,
2704,
'F',
7548,
5497,
2700,
'F',
7548,
4486,
2694,
'F',
7548,
872,
2702,
'F',
7548,
54,
2698,
'F',
7548,
4485,
2696,
'F',
7452,
1857,
9,
'F',
7452,
1940,
791,
'S',
7452,
5790,
7351,
'F',
7452,
5791,
7351,
'S',
7452,
5792,
0,
'F',
7452,
3136,
433,
'F',
7452,
3124,
7,
'F',
7247,
692,
41,
'F',
7470,
1857,
9,
'S',
7470,
5793,
0,
'S',
7470,
5794,
0,
'S',
7470,
5795,
0,
'S',
7470,
5796,
0,
'S',
7470,
5797,
0,
'S',
7470,
5798,
0,
'S',
7470,
5799,
0,
'S',
7470,
5800,
0,
'C',
5801,
5802,
0,
'S',
8369,
5803,
0,
'S',
8369,
5804,
0,
'C',
5801,
5805,
0,
'S',
8369,
5806,
0,
'C',
4512,
5807,
0,
'F',
7470,
1940,
791,
'F',
7244,
4018,
3830,
'F',
7244,
4019,
3828,
'F',
7244,
4021,
3852,
'F',
7244,
4022,
3824,
'F',
7244,
4023,
3822,
'F',
7244,
4024,
3820,
'F',
7244,
4025,
3818,
'F',
7244,
4026,
3845,
'F',
7244,
4013,
3843,
'F',
7467,
2857,
793,
'F',
7467,
1940,
791,
'F',
7467,
4713,
789,
'F',
7466,
1857,
9,
'F',
7466,
5808,
7213,
'F',
6627,
5461,
8404,
'F',
7466,
5809,
7204,
'S',
7466,
5810,
7207,
'S',
7466,
5811,
7209,
'S',
7466,
5812,
7211,
'F',
7466,
5813,
7211,
'F',
7466,
5814,
7209,
'F',
7466,
5815,
7207,
'F',
7466,
1940,
791,
'F',
6702,
5816,
7185,
'S',
7466,
5817,
7206,
'F',
7466,
5818,
7206,
'F',
7466,
3136,
433,
'F',
7466,
3124,
7,
'F',
7243,
5108,
4881,
'S',
7243,
5109,
4880,
'F',
7243,
4020,
3826,
'F',
1515,
4292,
6426,
'F',
5746,
1857,
9,
'F',
5746,
5819,
5784,
'C',
3120,
5820,
0,
'F',
5746,
3136,
433,
'F',
5746,
5821,
5777,
'F',
5746,
2249,
5779,
'S',
8415,
5822,
0,
'C',
3120,
33,
0,
'F',
1393,
5823,
4395,
'S',
5746,
5824,
0,
'S',
5746,
5825,
0,
'F',
1393,
5826,
4397,
'S',
5746,
5827,
0,
'C',
5828,
5829,
0,
'C',
3120,
5830,
0,
'S',
8415,
5831,
0,
'S',
8415,
5832,
0,
'F',
5746,
3124,
7,
'F',
7237,
1553,
1566,
'C',
3152,
5833,
0,
'F',
7237,
2804,
208,
'F',
8430,
5275,
9424,
'C',
4234,
5834,
0,
'F',
1917,
5835,
9059,
'F',
7237,
2315,
206,
'S',
8430,
5836,
0,
'F',
7367,
2804,
208,
'F',
8436,
5345,
9283,
'C',
4234,
5837,
0,
'F',
8436,
5347,
9284,
'F',
8436,
2412,
9054,
'F',
7367,
2315,
206,
'S',
8436,
5838,
0,
'F',
7295,
2804,
208,
'F',
8443,
5839,
9273,
'C',
4234,
5840,
0,
'F',
8443,
5841,
9275,
'F',
7295,
2315,
206,
'S',
8443,
5842,
0,
'F',
7236,
1857,
1,
'F',
7236,
24,
4120,
'F',
7518,
1857,
9,
'C',
3152,
5843,
0,
'F',
7297,
2804,
208,
'F',
8453,
2829,
4125,
'C',
3152,
5844,
0,
'F',
7297,
2315,
206,
'C',
4234,
5845,
0,
'S',
8455,
5846,
0,
'F',
7141,
2804,
208,
'F',
8459,
5847,
9715,
'C',
4234,
5848,
0,
'F',
7141,
2315,
206,
'F',
6058,
1857,
1,
'C',
4298,
5849,
0,
'F',
6058,
24,
7334,
'F',
7146,
692,
41,
'F',
7541,
2819,
6177,
'F',
7541,
2386,
1496,
'F',
7541,
5850,
9841,
'S',
7541,
5851,
9841,
'F',
7547,
4460,
7879,
'F',
7541,
2905,
1500,
'F',
7547,
4476,
7877,
'S',
7547,
4477,
0,
'F',
7541,
2396,
210,
'F',
7541,
5852,
9829,
'F',
2603,
5853,
8234,
'S',
7541,
5854,
0,
'F',
7541,
5427,
1492,
'F',
7547,
5500,
8299,
'F',
7541,
2413,
2683,
'C',
4173,
5855,
0,
'F',
7366,
692,
41,
'F',
7366,
2317,
212,
'F',
7366,
5,
43,
'F',
7568,
2396,
210,
'F',
7568,
5856,
9792,
'S',
8487,
5857,
0,
'C',
5858,
33,
0,
'F',
7568,
2055,
1474,
'F',
7568,
2030,
1472,
'F',
7532,
2819,
6177,
'F',
8492,
5859,
9308,
'C',
4234,
5860,
0,
'F',
7532,
2396,
210,
'F',
7532,
2055,
1474,
'F',
7532,
2030,
1472,
'F',
7455,
2410,
1482,
'F',
7455,
2386,
1496,
'F',
2039,
5861,
8993,
'S',
7462,
5453,
1496,
'F',
7462,
2386,
1496,
'C',
1936,
5862,
0,
'F',
8501,
5863,
8830,
'F',
8501,
2390,
8832,
'F',
7455,
2055,
1474,
'F',
7455,
2030,
1472,
'F',
7455,
2412,
9054,
'F',
7462,
2810,
1502,
'F',
7462,
2905,
1500,
'F',
7462,
2396,
210,
'F',
7462,
5427,
1492,
'F',
7462,
2413,
2683,
'F',
7412,
2386,
1496,
'C',
1936,
5864,
0,
'S',
8513,
5865,
0,
'F',
7412,
1628,
9742,
'F',
7412,
2412,
9054,
'F',
6545,
2410,
1482,
'F',
6545,
1354,
444,
'F',
7561,
2810,
1502,
'F',
7561,
5866,
9733,
'F',
7561,
5867,
9072,
'F',
8523,
5868,
8877,
'C',
1936,
5869,
0,
'F',
7561,
2386,
1496,
'F',
8523,
4375,
8873,
'F',
7561,
2905,
1500,
'S',
7561,
5870,
0,
'F',
7561,
1354,
444,
'F',
7561,
2412,
9054,
'F',
7561,
2055,
1474,
'F',
7521,
2395,
8038,
'F',
7537,
2386,
1496,
'F',
7532,
5871,
9322,
'F',
7137,
5872,
10637,
'F',
454,
5873,
14436,
'F',
454,
5874,
14438,
'F',
423,
5875,
14291,
'F',
4381,
5876,
10568,
'S',
2217,
5877,
0,
'F',
7537,
1354,
444,
'F',
7143,
692,
41,
'F',
7314,
2386,
1496,
'C',
1936,
5878,
0,
'F',
2039,
5879,
8981,
'F',
7314,
2835,
6173,
'F',
7314,
5880,
9255,
'F',
7314,
2412,
9054,
'F',
7314,
2820,
1484,
'F',
7722,
692,
41,
'F',
7246,
692,
41,
'F',
7524,
2905,
1500,
'F',
7526,
4476,
7877,
'S',
7526,
4477,
0,
'F',
7524,
2386,
1496,
'F',
7526,
4460,
7879,
'F',
7524,
2396,
210,
'F',
7524,
5881,
8319,
'F',
6895,
5882,
8309,
'F',
6895,
5883,
8311,
'F',
7524,
2055,
1474,
'F',
7527,
2055,
1474,
'F',
7524,
2030,
1472,
'F',
7527,
2030,
1472,
'F',
7524,
2413,
2683,
'C',
4960,
5884,
0,
'F',
7039,
5502,
12329,
'C',
5082,
5885,
0,
'F',
7039,
5503,
12331,
'F',
7039,
5504,
12330,
'F',
7041,
5502,
12329,
'F',
7041,
5503,
12331,
'F',
7041,
5504,
12330,
'F',
7043,
5502,
12329,
'F',
7043,
5503,
12331,
'F',
7043,
5504,
12330,
'F',
7034,
5886,
6843,
'S',
6516,
5887,
0,
'F',
7678,
692,
41,
'F',
7678,
2317,
212,
'F',
7678,
5,
43,
'F',
7138,
2799,
838,
'F',
7137,
2317,
212,
'F',
7137,
5,
43,
'F',
6344,
2304,
9767,
'F',
5582,
2304,
9767,
'F',
5918,
2304,
9767,
'F',
7892,
3036,
3,
'C',
5586,
5888,
0,
'C',
5586,
5889,
0,
'F',
7892,
24,
3056,
'F',
7892,
2316,
3042,
'F',
7785,
5120,
599,
'F',
7782,
5045,
240,
'S',
4224,
5045,
0,
'S',
4246,
5045,
0,
'S',
441,
5045,
0,
'S',
4249,
5045,
0,
'S',
4286,
5045,
0,
'S',
4242,
5045,
0,
'S',
4252,
5045,
0,
'S',
4253,
5045,
0,
'S',
4254,
5045,
0,
'S',
4255,
5045,
0,
'S',
4240,
5045,
0,
'S',
4257,
5045,
0,
'S',
4258,
5045,
0,
'S',
4234,
5045,
0,
'S',
4259,
5045,
0,
'S',
4260,
5045,
0,
'S',
4261,
5045,
0,
'S',
4236,
5045,
0,
'S',
4262,
5045,
0,
'S',
4263,
5045,
0,
'S',
4264,
5045,
0,
'S',
4265,
5045,
0,
'S',
4266,
5045,
0,
'S',
4267,
5045,
0,
'S',
4268,
5045,
0,
'S',
4269,
5045,
0,
'S',
4270,
5045,
0,
'S',
4271,
5045,
0,
'S',
4272,
5045,
0,
'S',
4273,
5045,
0,
'S',
6983,
5045,
0,
'S',
6983,
5890,
0,
'S',
6983,
5891,
0,
'S',
6983,
5892,
0,
'S',
4276,
5893,
0,
'S',
441,
5893,
0,
'S',
461,
5894,
0,
'S',
3918,
5893,
0,
'S',
546,
5893,
0,
'S',
546,
5045,
0,
'S',
461,
5895,
0,
'S',
4276,
5045,
0,
'S',
2908,
5045,
0,
'C',
5041,
5896,
0,
'C',
5041,
5897,
0,
'C',
5041,
5898,
0,
'S',
4280,
5045,
0,
'S',
4279,
5045,
0,
'S',
2603,
5045,
0,
'S',
4381,
5045,
0,
'F',
4381,
1291,
10565,
'S',
2222,
5045,
0,
'F',
2222,
1291,
14310,
'F',
2603,
1291,
8241,
'S',
461,
5899,
0,
'F',
7794,
3036,
3,
'C',
4493,
5900,
0,
'C',
4493,
5901,
0,
'F',
7863,
1857,
9,
'C',
4504,
5902,
0,
'C',
4504,
5903,
0,
'F',
7863,
3136,
433,
'F',
7863,
1940,
791,
'F',
7864,
1940,
791,
'F',
7863,
3124,
7,
'F',
7863,
5904,
2146,
'F',
7863,
5905,
2152,
'S',
7863,
5906,
2145,
'F',
7863,
5907,
2145,
'S',
7863,
5908,
0,
'F',
6913,
5909,
2089,
'V',
7863,
5910,
0,
'S',
7863,
5911,
0,
'F',
6921,
5912,
904,
'F',
6921,
5913,
906,
'C',
3076,
5914,
0,
'C',
3076,
5915,
0,
'C',
3076,
5916,
0,
'C',
3076,
5917,
0,
'C',
3076,
5918,
0,
'S',
8671,
5919,
0,
'F',
8672,
2047,
4469,
'S',
7863,
5920,
2149,
'F',
7863,
5921,
2149,
'F',
8669,
1628,
910,
'F',
8673,
5623,
10317,
'F',
8670,
5183,
10394,
'S',
8670,
5922,
10452,
'S',
8670,
5923,
10454,
'F',
8670,
5924,
10454,
'F',
8670,
4341,
2222,
'F',
8671,
4342,
10327,
'F',
8670,
5925,
10452,
'F',
8672,
1475,
10323,
'V',
6921,
5926,
0,
'S',
6921,
5927,
0,
'V',
6921,
5928,
0,
'S',
6921,
5929,
0,
'C',
4977,
5930,
0,
'C',
2814,
5931,
0,
'F',
6894,
5653,
2108,
'F',
7864,
2857,
793,
'F',
7864,
5574,
1324,
'F',
7864,
4713,
789,
'F',
7876,
2857,
793,
'F',
7876,
1940,
791,
'F',
7876,
5574,
1324,
'F',
7876,
4713,
789,
'F',
7875,
1857,
9,
'F',
7875,
5932,
1836,
'C',
3106,
5933,
0,
'C',
4950,
5934,
0,
'S',
8707,
5935,
0,
'C',
5936,
5937,
0,
'C',
3106,
5938,
0,
'F',
7875,
5939,
1838,
'S',
7875,
5940,
0,
'C',
4950,
5941,
0,
'S',
7875,
5942,
0,
'F',
8714,
5943,
1844,
'C',
4950,
5944,
0,
'C',
4950,
5945,
0,
'C',
4234,
5946,
0,
'C',
3152,
5947,
0,
'V',
8719,
5948,
0,
'C',
4950,
33,
0,
'S',
8719,
5949,
0,
'F',
7880,
2317,
212,
'F',
7880,
5,
43,
'F',
7883,
2857,
793,
'F',
7883,
1940,
791,
'F',
7883,
5574,
1324,
'F',
7883,
4713,
789,
'F',
7882,
1857,
9,
'F',
7882,
5950,
1627,
'F',
7882,
5951,
1609,
'F',
7882,
5952,
1635,
'F',
7882,
5953,
1619,
'F',
7882,
5954,
1621,
'F',
7882,
5955,
1612,
'C',
2954,
5956,
0,
'F',
7882,
5957,
1615,
'F',
7882,
5958,
1623,
'F',
7882,
5959,
1610,
'F',
7882,
5960,
1631,
'F',
7882,
5961,
1633,
'C',
2954,
5962,
0,
'C',
2954,
5963,
0,
'F',
7882,
5964,
1611,
'C',
2954,
5965,
0,
'F',
7882,
5966,
1617,
'F',
8746,
3002,
1262,
'C',
5967,
5968,
0,
'C',
5967,
5969,
0,
'S',
441,
5970,
0,
'F',
7882,
3136,
433,
'F',
7882,
5971,
1614,
'F',
7882,
1940,
791,
'F',
7882,
2857,
793,
'F',
7882,
3124,
7,
'S',
7882,
5972,
1608,
'F',
7882,
5973,
1608,
'S',
7882,
5974,
0,
'F',
7888,
3036,
3,
'C',
2950,
5975,
0,
'C',
2950,
5976,
0,
'S',
8758,
5977,
0,
'F',
7888,
24,
1136,
'F',
7902,
1354,
444,
'F',
546,
5978,
14267,
'S',
2664,
5979,
0,
'S',
7902,
5980,
0,
'F',
7902,
2396,
210,
'F',
7909,
2804,
208,
'F',
8769,
5588,
442,
'C',
4073,
5589,
0,
'F',
7909,
2315,
206,
'S',
8769,
5981,
0,
'F',
7928,
1857,
1,
'S',
7928,
5982,
0,
'F',
5767,
5045,
240,
'S',
1447,
5045,
0,
'S',
1971,
5983,
0,
'S',
1971,
5984,
0,
'S',
1971,
5985,
0,
'S',
1971,
5986,
0,
'F',
4498,
5045,
240,
'F',
7936,
2396,
210,
'F',
7292,
5987,
7310,
'F',
7286,
5987,
7310,
'F',
7292,
5988,
11691,
'F',
7292,
5989,
11693,
'F',
7292,
5990,
7318,
'F',
7286,
5990,
7318,
'F',
7292,
5991,
11687,
'F',
7292,
5992,
11689,
'F',
7288,
692,
41,
'F',
7286,
5993,
11540,
'F',
7275,
2799,
838,
'F',
7275,
692,
41,
'F',
7275,
1263,
4878,
'F',
7289,
5987,
7310,
'F',
7289,
5994,
11443,
'F',
3965,
2304,
11061,
'F',
7289,
5995,
11453,
'F',
7289,
5996,
11445,
'C',
1602,
5997,
0,
'F',
7289,
5998,
11457,
'F',
1657,
5699,
11089,
'F',
7289,
5999,
11451,
'S',
7289,
6000,
11443,
'F',
8806,
6001,
11419,
'C',
5252,
6002,
0,
'S',
7289,
6003,
11442,
'F',
7289,
6004,
11442,
'F',
7289,
6005,
11447,
'F',
7289,
6006,
11449,
'F',
8806,
6007,
11421,
'F',
7289,
6008,
11459,
'F',
7274,
4014,
11512,
'F',
7289,
6009,
11455,
'F',
1657,
6010,
11087,
'S',
7289,
6011,
11445,
'F',
1409,
6012,
11477,
'F',
1657,
6013,
11091,
'F',
7289,
5990,
7318,
'F',
7272,
5987,
7310,
'F',
7272,
6014,
11362,
'F',
7273,
6001,
11524,
'F',
7273,
6015,
11518,
'F',
7272,
5990,
7318,
'F',
8826,
839,
11558,
'C',
3166,
6016,
0,
'F',
7272,
6017,
11366,
'F',
7272,
6018,
11368,
'V',
7272,
6019,
0,
'V',
7272,
6020,
0,
'C',
6021,
6022,
0,
'S',
7272,
6023,
0,
'C',
6021,
6024,
0,
'S',
7272,
6025,
0,
'F',
7280,
692,
41,
'F',
7285,
5990,
7318,
'F',
7658,
2484,
11233,
'F',
1454,
1291,
3628,
'F',
1454,
4749,
3639,
'F',
1454,
6026,
3657,
'F',
6373,
2043,
4471,
'F',
6373,
2047,
4469,
'F',
5599,
1857,
1,
'C',
3997,
6027,
0,
'F',
5599,
24,
8135,
'F',
7958,
3036,
3,
'C',
4490,
6028,
0,
'F',
7527,
2314,
1480,
'F',
7527,
2400,
1476,
'F',
7527,
5496,
2704,
'F',
7527,
5497,
2700,
'F',
7527,
4486,
2694,
'F',
7527,
872,
2702,
'F',
7527,
54,
2698,
'F',
7527,
4485,
2696,
'F',
7368,
692,
41,
'F',
7368,
5054,
10482,
'F',
7362,
5054,
10482,
'F',
7362,
692,
41,
'F',
4500,
5045,
240,
'F',
4499,
5045,
240,
'F',
6091,
5174,
10302,
'F',
6091,
2043,
4471,
'F',
6091,
2047,
4469,
'F',
7372,
5045,
240,
'F',
7371,
692,
41,
'F',
7371,
5619,
10459,
'F',
7353,
692,
41,
'F',
7353,
1628,
910,
'F',
7353,
4341,
2222,
'F',
7353,
2043,
4471,
'F',
4459,
6029,
10319,
'F',
7353,
2047,
4469,
'F',
7354,
5174,
10302,
'F',
7354,
4355,
10300,
'F',
4457,
5174,
10302,
'F',
4463,
5174,
10302,
'F',
4463,
2043,
4471,
'F',
4463,
2047,
4469,
'F',
7190,
6030,
10434,
'F',
7190,
6031,
10432,
'F',
7190,
692,
41,
'F',
7190,
4341,
2222,
'F',
7332,
692,
41,
'F',
7332,
1628,
910,
'F',
7332,
4341,
2222,
'F',
7332,
5174,
10302,
'F',
7332,
4355,
10300,
'F',
7332,
2043,
4471,
'F',
7332,
2047,
4469,
'F',
7202,
692,
41,
'F',
4458,
2043,
4471,
'F',
4458,
2047,
4469,
'F',
6122,
5174,
10302,
'F',
6122,
2043,
4471,
'F',
6122,
2047,
4469,
'F',
6101,
5886,
6843,
'F',
1599,
5103,
5335,
'F',
6777,
6032,
12251,
'F',
8010,
888,
4236,
'F',
8010,
6033,
12297,
'F',
8010,
6034,
12294,
'F',
8010,
947,
4237,
'F',
7690,
692,
41,
'F',
7709,
692,
41,
'F',
8085,
5612,
5120,
'S',
8085,
5613,
2448,
'F',
8085,
1428,
2448,
'F',
8085,
872,
1220,
'F',
4887,
25,
3475,
'F',
4887,
1291,
3475,
'F',
7134,
2396,
2105,
'F',
6895,
6035,
8303,
'F',
6895,
6036,
8305,
'F',
6895,
6037,
8307,
'F',
8115,
3036,
3,
'S',
7162,
6038,
0,
'F',
4447,
6039,
5920,
'F',
7162,
6040,
6483,
'S',
7162,
6041,
0,
'F',
6400,
6042,
4659,
'S',
6400,
6043,
4658,
'F',
6400,
6044,
4658,
'F',
6400,
6045,
4657,
'S',
6400,
6046,
4656,
'F',
8133,
2804,
208,
'F',
6627,
4418,
8400,
'F',
6627,
6047,
8438,
'F',
6627,
6048,
8440,
'F',
6627,
6049,
8410,
'F',
6627,
6050,
8413,
'F',
6627,
4378,
8415,
'F',
6627,
6051,
8411,
'F',
6627,
4424,
8417,
'F',
6627,
6052,
8419,
'F',
6627,
6053,
8421,
'F',
6627,
4425,
8406,
'F',
6627,
6054,
8423,
'F',
6627,
4423,
8424,
'F',
6627,
4420,
8402,
'F',
6627,
2417,
8403,
'F',
6627,
4429,
8405,
'F',
6627,
4528,
8425,
'F',
6627,
2390,
8427,
'F',
6627,
4427,
8374,
'F',
6627,
4426,
8375,
'F',
6627,
6055,
8380,
'F',
6627,
6056,
8429,
'F',
6627,
6057,
8431,
'F',
6627,
6058,
8436,
'F',
6627,
6059,
8435,
'F',
6627,
6060,
8443,
'F',
6627,
6061,
8444,
'F',
6627,
6062,
8376,
'F',
6627,
6063,
8433,
'F',
6627,
6064,
8447,
'F',
6627,
4044,
8452,
'F',
6627,
6065,
8449,
'F',
6627,
6066,
8448,
'F',
2190,
6067,
14398,
'F',
6627,
6068,
8397,
'S',
1917,
6069,
980,
'F',
1756,
2043,
10025,
'S',
6627,
6070,
8388,
'F',
6627,
6071,
8388,
'V',
6627,
6072,
0,
'S',
6627,
6073,
0,
'V',
6627,
6074,
0,
'S',
6627,
6075,
0,
'V',
6627,
6076,
0,
'S',
6627,
6077,
0,
'V',
6627,
6078,
0,
'S',
6627,
6079,
0,
'V',
6627,
6080,
0,
'S',
6627,
6081,
0,
'V',
6627,
6082,
0,
'S',
6627,
6083,
0,
'S',
1837,
6084,
0,
'F',
1817,
6085,
10015,
'F',
1817,
6086,
10013,
'F',
1817,
6087,
10016,
'F',
1817,
6088,
10014,
'F',
6627,
6089,
8391,
'F',
6627,
6090,
8393,
'F',
6627,
6091,
8395,
'F',
6627,
6092,
8399,
'S',
6627,
6093,
0,
'F',
6777,
6094,
7616,
'S',
6627,
6095,
0,
'S',
8991,
6096,
0,
'C',
4734,
33,
0,
'S',
6627,
6097,
0,
'S',
6627,
6098,
0,
'F',
6627,
6099,
8510,
'F',
1447,
2105,
14248,
'F',
5664,
6100,
10948,
'F',
428,
6100,
14813,
'F',
428,
6101,
14815,
'F',
1817,
6102,
10011,
'F',
8133,
2315,
206,
'C',
6103,
6104,
0,
'S',
6627,
6105,
0,
'F',
8133,
1628,
4771,
'F',
8304,
1553,
1566,
'C',
5762,
6106,
0,
'S',
9005,
6107,
0,
'S',
9005,
6108,
5739,
'F',
9005,
6109,
5739,
'F',
8304,
5120,
599,
'F',
6592,
1857,
9,
'F',
6592,
6110,
5502,
'C',
4708,
6111,
0,
'S',
6592,
6112,
5500,
'S',
6592,
6113,
5503,
'F',
6592,
6114,
5503,
'F',
6592,
6115,
5500,
'F',
6592,
1940,
791,
'F',
6592,
3136,
433,
'C',
4708,
6116,
0,
'F',
6592,
6117,
5497,
'F',
6592,
3124,
7,
'F',
8110,
692,
41,
'F',
7254,
1857,
1,
'F',
7254,
24,
6115,
'F',
6503,
3036,
3,
'C',
4203,
6118,
0,
'S',
6530,
6119,
0,
'F',
5961,
5773,
3714,
'F',
5961,
6120,
6988,
'F',
6506,
2096,
6775,
'F',
9032,
2096,
6775,
'C',
4649,
6121,
0,
'F',
5961,
6122,
6986,
'F',
5961,
6123,
3712,
'F',
8240,
692,
41,
'F',
4451,
6039,
5920,
'F',
8279,
5120,
599,
'F',
5958,
5773,
3714,
'F',
5960,
5773,
3714,
'F',
1762,
6124,
4932,
'F',
5904,
6125,
5084,
'F',
5904,
6126,
5100,
'F',
5904,
6127,
5108,
'F',
1762,
6128,
4898,
'F',
5904,
6129,
5106,
'F',
6528,
6130,
6683,
'F',
5904,
6131,
5104,
'F',
5904,
6132,
5110,
'S',
5904,
6133,
0,
'S',
5904,
6134,
0,
'S',
5904,
6135,
0,
'S',
5904,
6136,
0,
'S',
5904,
6137,
0,
'S',
5904,
6138,
0,
'C',
4154,
6139,
0,
'C',
4154,
6140,
0,
'S',
1762,
6141,
0,
'S',
5904,
6142,
0,
'S',
5904,
6143,
0,
'S',
5904,
6144,
0,
'S',
5904,
6145,
0,
'S',
5904,
6146,
0,
'S',
5904,
6147,
0,
'S',
5904,
6148,
0,
'F',
5904,
6149,
5102,
'S',
5904,
6150,
0,
'F',
5957,
5773,
3714,
'F',
5959,
5773,
3714,
'F',
8328,
2799,
838,
'F',
8328,
692,
41,
'F',
8263,
3036,
3,
'C',
5681,
6151,
0,
'C',
5681,
6152,
0,
'F',
8143,
3036,
3,
'F',
8143,
24,
5024,
'F',
8332,
5120,
599,
'F',
5955,
6123,
3712,
'F',
5954,
5773,
3714,
'F',
6694,
3036,
3,
'C',
4253,
6153,
0,
'F',
8704,
3036,
3,
'C',
3106,
6154,
0,
'F',
8704,
24,
5693,
'F',
8708,
3036,
3,
'C',
3106,
6155,
0,
'F',
8708,
24,
5711,
'F',
6374,
1857,
1342,
'F',
8654,
1857,
1342,
'F',
8654,
24,
7363,
'F',
8653,
1857,
1342,
'S',
1454,
6156,
0,
'F',
1454,
6157,
3649,
'F',
8653,
24,
7368,
'F',
7470,
6158,
7295,
'S',
7470,
6159,
7294,
'F',
7470,
6160,
7294,
'F',
7470,
6161,
7293,
'S',
7470,
6162,
7292,
'F',
7470,
6163,
7292,
'F',
7470,
6164,
7291,
'S',
7470,
6165,
7290,
'F',
7470,
6166,
7290,
'F',
7470,
6167,
7289,
'S',
7470,
6168,
7288,
'F',
7470,
6169,
7288,
'F',
7470,
6170,
7287,
'S',
7470,
6171,
7286,
'F',
7470,
6172,
7286,
'F',
7470,
6173,
7285,
'S',
7470,
6174,
7284,
'F',
7470,
6175,
7284,
'F',
7470,
6176,
7283,
'F',
7470,
6177,
7281,
'S',
7470,
5811,
7280,
'F',
7470,
5814,
7280,
'S',
7470,
6178,
7283,
'F',
7470,
6179,
7279,
'S',
7470,
5810,
7278,
'F',
7470,
5815,
7278,
'F',
7470,
6180,
7277,
'S',
7470,
6181,
7276,
'F',
7470,
6182,
7276,
'F',
7470,
6183,
7273,
'S',
7470,
6184,
7272,
'F',
7470,
6185,
7272,
'S',
7470,
6186,
7275,
'F',
7470,
6187,
7275,
'F',
7470,
6188,
7271,
'S',
7470,
6189,
7270,
'F',
7470,
6190,
7270,
'F',
7470,
6191,
7296,
'F',
8374,
5987,
7310,
'F',
5933,
6192,
1974,
'F',
5933,
2249,
1972,
'S',
9136,
2249,
0,
'C',
3120,
6193,
0,
'F',
5933,
6194,
1970,
'F',
8410,
5120,
599,
'F',
5565,
5120,
599,
'F',
8265,
1857,
1,
'C',
3152,
6195,
0,
'F',
8134,
2804,
208,
'F',
9144,
4375,
9723,
'C',
4234,
6196,
0,
'F',
8134,
2315,
206,
'S',
9144,
6197,
0,
'F',
8427,
1523,
1542,
'F',
8264,
2804,
208,
'F',
5981,
5410,
9430,
'F',
8264,
2315,
206,
'F',
8450,
2804,
208,
'F',
7518,
6198,
4093,
'F',
9154,
6199,
9407,
'C',
4234,
6200,
0,
'F',
9154,
5192,
9406,
'S',
7518,
6201,
4091,
'F',
7518,
6202,
4091,
'F',
8450,
2315,
206,
'S',
9154,
6203,
0,
'F',
8717,
2858,
3873,
'F',
8717,
2804,
208,
'F',
8717,
2315,
206,
'C',
4234,
6204,
0,
'S',
9163,
6205,
0,
'F',
8453,
2386,
1496,
'F',
8462,
5120,
599,
'F',
8480,
692,
41,
'F',
7016,
5883,
144,
'F',
8443,
2396,
210,
'F',
8443,
6206,
9277,
'F',
8430,
2410,
1482,
'F',
8430,
2386,
1496,
'F',
8430,
1354,
444,
'F',
8430,
2396,
210,
'F',
8430,
2835,
6173,
'F',
8430,
2820,
1484,
'F',
8430,
5427,
1492,
'F',
8455,
2904,
1498,
'F',
8455,
1354,
444,
'F',
8436,
2410,
1482,
'F',
8436,
2386,
1496,
'F',
8492,
692,
41,
'F',
8492,
2043,
4471,
'F',
8492,
2047,
4469,
'F',
8459,
2411,
6962,
'F',
7537,
6207,
9319,
'F',
8217,
2386,
1496,
'F',
8223,
3002,
10767,
'F',
2039,
6208,
8977,
'F',
2051,
6209,
8758,
'F',
8217,
2904,
1498,
'F',
8217,
2055,
1474,
'F',
8501,
2465,
8744,
'F',
457,
5861,
14199,
'F',
457,
6210,
14201,
'C',
449,
6211,
0,
'F',
8523,
2465,
8744,
'F',
8523,
6212,
8881,
'F',
8523,
6213,
8879,
'F',
8523,
2489,
8732,
'F',
8523,
2474,
8740,
'F',
8523,
2475,
8875,
'F',
1454,
5054,
3661,
'F',
8543,
2474,
8740,
'F',
8543,
2465,
8744,
'F',
457,
6214,
14218,
'F',
457,
6215,
14226,
'F',
457,
6216,
14228,
'F',
457,
6217,
14230,
'F',
457,
6218,
14220,
'F',
8513,
2474,
8740,
'C',
1936,
6219,
0,
'F',
8513,
1628,
8900,
'F',
8565,
692,
41,
'F',
2722,
25,
3700,
'F',
2722,
1291,
3700,
'F',
1459,
25,
3676,
'F',
8567,
692,
41,
'F',
8135,
2799,
838,
'F',
8135,
2317,
212,
'F',
8135,
5,
43,
'F',
4277,
6220,
992,
'S',
2217,
6221,
0,
'F',
4277,
6222,
1275,
'C',
3004,
6223,
0,
'C',
3004,
6224,
0,
'F',
4279,
6222,
1275,
'F',
4277,
6225,
1273,
'F',
4279,
6225,
1273,
'F',
4380,
6220,
992,
'F',
4380,
6222,
1275,
'S',
4382,
5045,
0,
'C',
3028,
6226,
0,
'F',
4382,
6227,
10561,
'F',
4380,
6225,
1273,
'F',
8223,
692,
41,
'F',
8223,
2317,
212,
'F',
3917,
25,
10699,
'F',
3917,
1291,
10699,
'F',
5724,
25,
10699,
'F',
5724,
1291,
10699,
'F',
5757,
6220,
992,
'F',
5757,
6222,
1275,
'F',
5757,
6225,
1273,
'F',
4381,
2304,
10566,
'F',
4381,
25,
10565,
'F',
4407,
2304,
10566,
'F',
5582,
25,
10506,
'F',
5582,
1291,
10506,
'F',
5918,
25,
10506,
'F',
5918,
1291,
10506,
'F',
8588,
1857,
9,
'S',
9254,
3109,
0,
'C',
2961,
6228,
0,
'S',
8588,
6229,
3082,
'S',
8588,
6230,
0,
'S',
8588,
6231,
0,
'F',
8588,
6232,
3071,
'F',
8588,
6233,
3080,
'F',
8588,
6234,
3074,
'F',
8588,
6235,
3082,
'F',
8588,
6236,
3077,
'F',
8588,
6237,
3078,
'C',
5586,
6238,
0,
'S',
9266,
6239,
0,
'C',
6240,
6241,
0,
'S',
8588,
6242,
0,
'S',
9266,
6243,
0,
'C',
5556,
6244,
0,
'F',
8588,
1940,
791,
'F',
1409,
6245,
11482,
'F',
8589,
1940,
791,
'S',
8588,
6246,
3070,
'S',
8588,
6247,
3068,
'F',
8588,
6248,
3068,
'S',
8588,
6249,
0,
'F',
8588,
6250,
3070,
'F',
8588,
2506,
1201,
'F',
8588,
3124,
7,
'S',
8588,
6251,
3066,
'F',
8588,
6252,
3066,
'F',
8589,
2857,
793,
'F',
8589,
4713,
789,
'F',
7789,
6253,
146,
'F',
8650,
1857,
9,
'C',
4493,
6254,
0,
'F',
8650,
6255,
2667,
'C',
4493,
6256,
0,
'S',
9288,
6257,
0,
'C',
6258,
6259,
0,
'C',
4493,
6260,
0,
'S',
8650,
6261,
0,
'S',
8650,
6262,
0,
'F',
4238,
3002,
646,
'S',
9296,
6263,
0,
'C',
5014,
6264,
0,
'C',
6265,
6266,
0,
'C',
5014,
6267,
0,
'F',
8650,
1940,
791,
'F',
8651,
1940,
791,
'S',
8650,
6268,
2671,
'F',
8650,
6269,
2671,
'S',
8650,
6270,
0,
'F',
8650,
3136,
433,
'F',
8650,
6271,
2669,
'F',
8650,
3124,
7,
'F',
8651,
2857,
793,
'F',
8651,
5574,
1324,
'F',
8651,
4713,
789,
'F',
6817,
6272,
2742,
'C',
4493,
6273,
0,
'C',
6274,
6275,
0,
'C',
3152,
6276,
0,
'S',
5577,
6277,
0,
'F',
6894,
2396,
2105,
'C',
3159,
6278,
0,
'C',
3159,
6279,
0,
'F',
6919,
6280,
894,
'F',
6918,
6281,
896,
'F',
6917,
6282,
898,
'S',
6919,
6283,
0,
'F',
4490,
6192,
1974,
'F',
4490,
2249,
1972,
'S',
9325,
2249,
0,
'C',
3118,
6284,
0,
'F',
4490,
6194,
1970,
'F',
8705,
2804,
208,
'F',
8705,
2315,
206,
'S',
8714,
6285,
0,
'F',
8715,
1857,
1,
'C',
4950,
6286,
0,
'F',
8715,
24,
1890,
'F',
8711,
3036,
3,
'C',
4950,
6287,
0,
'F',
8711,
24,
1868,
'F',
8743,
2804,
208,
'F',
9338,
5717,
1459,
'C',
2954,
6288,
0,
'F',
9338,
6053,
1469,
'F',
9338,
5435,
1467,
'F',
9338,
6289,
1465,
'F',
9338,
4043,
1463,
'F',
9338,
2417,
1461,
'F',
8741,
5,
43,
'F',
8743,
2315,
206,
'S',
9338,
6290,
0,
'F',
8743,
1553,
1566,
'C',
2954,
6291,
0,
'F',
8741,
2317,
212,
'F',
8734,
3036,
3,
'C',
2954,
6292,
0,
'C',
2954,
6293,
0,
'F',
8734,
24,
1323,
'F',
8740,
3036,
3,
'C',
2954,
6294,
0,
'C',
2954,
6295,
0,
'F',
8746,
2317,
212,
'F',
8746,
5,
43,
'F',
8746,
6222,
1275,
'F',
8746,
6225,
1273,
'F',
8746,
6220,
992,
'F',
8758,
1857,
9,
'F',
8759,
1857,
9,
'F',
8758,
6296,
1212,
'F',
9366,
2829,
1069,
'C',
2950,
6297,
0,
'F',
8758,
6298,
1247,
'F',
8758,
6299,
1240,
'C',
51,
6300,
0,
'S',
8758,
6301,
1224,
'S',
8758,
6302,
1241,
'S',
8758,
6303,
1243,
'S',
8758,
6304,
1226,
'S',
8758,
6305,
0,
'S',
8758,
6306,
1232,
'F',
8758,
6307,
1232,
'F',
8758,
6308,
1216,
'C',
2950,
6309,
0,
'F',
8758,
6310,
1075,
'S',
6887,
3109,
0,
'C',
6311,
6312,
0,
'C',
4950,
6313,
0,
'S',
9381,
6314,
0,
'F',
8759,
5695,
1199,
'F',
9381,
1432,
984,
'F',
9381,
2506,
986,
'S',
8758,
6315,
0,
'F',
8758,
5696,
1211,
'F',
8759,
5697,
1195,
'F',
8759,
5698,
1197,
'F',
8758,
6316,
1205,
'S',
8758,
6317,
0,
'C',
3132,
6318,
0,
'F',
8714,
6319,
1812,
'S',
9381,
6320,
982,
'F',
9381,
6321,
982,
'F',
9381,
1940,
988,
'F',
9382,
1940,
988,
'F',
8714,
6322,
1842,
'F',
8758,
6323,
1206,
'F',
8758,
6324,
1230,
'S',
7825,
6325,
0,
'S',
7825,
6326,
0,
'C',
5556,
6327,
0,
'F',
8758,
6328,
1226,
'F',
8758,
6329,
1228,
'F',
8758,
6330,
1218,
'C',
2948,
6331,
0,
'S',
9408,
6332,
0,
'C',
5016,
6333,
0,
'S',
9410,
6334,
0,
'S',
8758,
6335,
0,
'V',
9410,
6336,
0,
'S',
9410,
6337,
0,
'V',
9410,
6338,
0,
'S',
9410,
6339,
0,
'S',
9418,
6340,
0,
'C',
5016,
33,
0,
'S',
9418,
6341,
0,
'S',
9410,
6342,
1016,
'F',
9410,
6343,
1016,
'F',
9410,
1940,
988,
'F',
546,
6344,
14265,
'F',
546,
6345,
14269,
'S',
9426,
6346,
0,
'C',
2948,
33,
0,
'S',
9426,
6347,
0,
'S',
9408,
6348,
1046,
'F',
9408,
6349,
1046,
'F',
9408,
1940,
988,
'S',
9426,
6350,
0,
'F',
8758,
6351,
1243,
'F',
8758,
6352,
1245,
'F',
8758,
6353,
1241,
'F',
8758,
6354,
1224,
'F',
8758,
6355,
1222,
'S',
1751,
1630,
0,
'F',
8758,
6356,
1221,
'F',
8758,
2506,
1201,
'F',
8759,
2506,
1201,
'F',
8758,
1940,
791,
'F',
1751,
6357,
4988,
'S',
8758,
6358,
1210,
'F',
8758,
6359,
1210,
'S',
8758,
6360,
0,
'F',
1760,
872,
7714,
'F',
8758,
3136,
433,
'F',
8758,
3124,
7,
'F',
8759,
3124,
7,
'C',
4162,
6361,
0,
'F',
1751,
6362,
4986,
'S',
8758,
6363,
1207,
'F',
8758,
6364,
1207,
'F',
8692,
1628,
910,
'F',
8639,
2304,
526,
'F',
8638,
2304,
526,
'F',
8637,
2304,
526,
'F',
8769,
1354,
444,
'S',
8769,
6365,
0,
'F',
8769,
2396,
210,
'F',
7015,
6253,
146,
'F',
7015,
5883,
144,
'F',
7291,
6366,
5854,
'F',
7291,
6367,
5852,
'C',
5255,
6368,
0,
'S',
7291,
6369,
0,
'F',
7291,
5388,
5850,
'F',
7274,
6370,
11510,
'C',
5255,
6371,
0,
'S',
7291,
6372,
0,
'F',
8826,
692,
41,
'F',
8826,
8,
11559,
'F',
8826,
664,
11559,
'F',
8826,
23,
11558,
'F',
7286,
6373,
11207,
'S',
7286,
6374,
11206,
'F',
7286,
2302,
11206,
'F',
7286,
6375,
11542,
'F',
7273,
2304,
11277,
'F',
7285,
6376,
11275,
'F',
7273,
6377,
11526,
'F',
7286,
6378,
11208,
'F',
7272,
6373,
11207,
'S',
7272,
6374,
11206,
'F',
7272,
2302,
11206,
'V',
7272,
6379,
0,
'F',
7272,
6378,
11208,
'F',
7272,
6380,
11373,
'F',
7272,
6381,
11370,
'F',
1447,
6382,
14246,
'C',
5243,
6383,
0,
'F',
9491,
6384,
11722,
'C',
6021,
6385,
0,
'S',
7272,
6386,
0,
'S',
7272,
6387,
0,
'S',
7272,
6388,
0,
'F',
8369,
6373,
11207,
'S',
8369,
6374,
11206,
'F',
8369,
2302,
11206,
'S',
8826,
6389,
0,
'S',
8369,
6390,
0,
'C',
5801,
6391,
0,
'V',
8369,
6392,
0,
'F',
8369,
5987,
7310,
'F',
8369,
6378,
11208,
'S',
8369,
6393,
0,
'F',
8369,
5990,
7318,
'S',
8369,
6394,
0,
'V',
8369,
6395,
0,
'F',
8372,
692,
41,
'F',
8831,
692,
41,
'F',
8833,
692,
41,
'F',
8800,
692,
41,
'F',
8421,
2607,
7643,
'S',
8421,
6396,
0,
'F',
8421,
1079,
5781,
'F',
8844,
5120,
599,
'F',
6819,
6272,
2742,
'C',
4490,
6273,
0,
'S',
5568,
6397,
0,
'F',
1454,
6398,
3635,
'F',
8847,
1857,
9,
'S',
9524,
3109,
0,
'C',
3122,
6399,
0,
'C',
4490,
6400,
0,
'C',
4490,
6401,
0,
'S',
8847,
6402,
0,
'C',
6403,
6404,
0,
'F',
8847,
1940,
791,
'S',
8847,
6405,
8026,
'F',
8847,
6406,
8026,
'S',
8847,
6407,
0,
'F',
8847,
3136,
433,
'F',
8847,
3124,
7,
'F',
4492,
6192,
1974,
'F',
4492,
2249,
1972,
'S',
9538,
2249,
0,
'C',
3122,
6408,
0,
'F',
4492,
6194,
1970,
'F',
8693,
5619,
10459,
'F',
8671,
5174,
10302,
'F',
8673,
6029,
10319,
'F',
8670,
5182,
10395,
'F',
8671,
4355,
10300,
'F',
8672,
2043,
4471,
'F',
8670,
692,
41,
'F',
2222,
25,
14310,
'F',
546,
25,
14261,
'F',
1447,
25,
14253,
'F',
270,
25,
13893,
'F',
270,
1291,
13893,
'F',
232,
25,
13888,
'F',
232,
1291,
13888,
'F',
60,
25,
10498,
'F',
60,
1291,
10498,
'F',
97,
25,
10498,
'F',
4869,
25,
15071,
'F',
561,
25,
15496,
'F',
6561,
1628,
6332,
'F',
8109,
6409,
5505,
'F',
6594,
4397,
9439,
'F',
8108,
6410,
5375,
'F',
8108,
6411,
5373,
'C',
4937,
6412,
0,
'S',
9564,
6413,
0,
'F',
7162,
1857,
9,
'V',
7162,
6414,
0,
'S',
7162,
6415,
0,
'C',
3065,
6416,
0,
'S',
7162,
6417,
0,
'S',
7162,
6418,
0,
'F',
4445,
6419,
2019,
'F',
4445,
6420,
2021,
'S',
7162,
6421,
0,
'F',
4256,
6420,
2037,
'S',
9577,
6422,
0,
'C',
6423,
6424,
0,
'C',
3065,
6425,
0,
'C',
4162,
6426,
0,
'F',
7162,
1940,
791,
'F',
7162,
2857,
793,
'F',
7162,
3136,
433,
'F',
7162,
3124,
7,
'F',
9005,
2504,
5196,
'F',
9005,
5103,
5335,
'F',
9005,
1857,
5323,
'F',
9005,
2312,
1554,
'F',
9005,
1523,
1542,
'F',
9012,
2804,
208,
'F',
9012,
2315,
206,
'F',
9019,
6409,
5505,
'F',
9019,
6427,
5513,
'F',
9019,
6428,
5515,
'F',
6594,
4398,
9441,
'F',
9019,
6429,
5517,
'F',
6594,
6430,
9443,
'F',
9019,
6431,
5519,
'F',
6594,
6432,
9445,
'S',
9019,
6433,
0,
'S',
9019,
6434,
0,
'S',
9019,
6435,
0,
'C',
6021,
6436,
0,
'S',
9019,
6437,
0,
'S',
9019,
6438,
0,
'S',
9019,
6439,
0,
'S',
9019,
6440,
0,
'C',
5247,
6441,
0,
'C',
5247,
6442,
0,
'S',
9019,
6443,
0,
'F',
7256,
6410,
5375,
'F',
7256,
6411,
5373,
'F',
6599,
2857,
793,
'F',
6599,
1940,
791,
'F',
6599,
5574,
1324,
'F',
6530,
1857,
9,
'C',
4203,
6444,
0,
'S',
6530,
6445,
6918,
'F',
6530,
6446,
6918,
'F',
6530,
6447,
6916,
'F',
1658,
3249,
11494,
'S',
6530,
6448,
6921,
'F',
6530,
6449,
6921,
'F',
6514,
6450,
6716,
'F',
6503,
6451,
6873,
'F',
6530,
1940,
791,
'F',
5708,
2055,
6661,
'F',
6511,
1940,
4880,
'F',
9026,
1940,
791,
'F',
6506,
1940,
4880,
'F',
6530,
3136,
433,
'F',
9026,
3136,
433,
'F',
5708,
2030,
6659,
'F',
6530,
6452,
6900,
'F',
6530,
6453,
6898,
'S',
4435,
3109,
0,
'F',
4434,
6454,
6633,
'F',
5708,
6455,
6663,
'S',
6511,
6456,
0,
'S',
6511,
5109,
4880,
'S',
6506,
6457,
0,
'F',
6506,
6458,
6744,
'S',
9032,
6459,
0,
'F',
6511,
2416,
6742,
'F',
6506,
6460,
6750,
'F',
4454,
6461,
6289,
'F',
6506,
2416,
6742,
'F',
6518,
6462,
6554,
'F',
6523,
6462,
6581,
'C',
4638,
6463,
0,
'C',
4638,
6464,
0,
'C',
4638,
6465,
0,
'F',
6530,
2857,
793,
'F',
9026,
2857,
793,
'S',
9026,
4928,
0,
'F',
9026,
4915,
2594,
'F',
9026,
4918,
2582,
'F',
9026,
4930,
2585,
'F',
9026,
4931,
2583,
'F',
6530,
4932,
2616,
'F',
9026,
4920,
2575,
'F',
6506,
6466,
6752,
'F',
6561,
4923,
6317,
'F',
6564,
6299,
2592,
'S',
9026,
4924,
0,
'F',
9026,
4933,
2588,
'F',
9290,
2804,
208,
'F',
9668,
6467,
8188,
'C',
6468,
6469,
0,
'F',
9668,
6470,
8189,
'F',
9668,
6471,
8190,
'F',
9668,
6472,
8191,
'F',
6077,
6473,
10334,
'F',
6060,
6474,
7850,
'F',
9290,
2315,
206,
'S',
9668,
6475,
0,
'C',
3132,
6476,
0,
'C',
6468,
6477,
0,
'S',
9668,
6478,
0,
'F',
9072,
1857,
9,
'F',
9073,
6479,
5041,
'C',
5681,
6480,
0,
'F',
9073,
1857,
9,
'F',
9073,
3136,
433,
'F',
1762,
6481,
4886,
'F',
1762,
6482,
4890,
'F',
9073,
6483,
5042,
'F',
9073,
6484,
5048,
'S',
9073,
6485,
5046,
'F',
9073,
6486,
5046,
'S',
9073,
6487,
0,
'S',
9073,
6488,
0,
'S',
9073,
6489,
0,
'S',
8263,
3109,
0,
'F',
1761,
6490,
4966,
'F',
9073,
2506,
1201,
'F',
9073,
2857,
793,
'F',
9073,
1940,
791,
'F',
9073,
3124,
7,
'F',
9450,
5773,
3714,
'F',
9269,
5789,
12284,
'F',
9269,
2316,
12289,
'F',
9404,
5789,
12284,
'F',
9080,
2857,
793,
'F',
9080,
1940,
791,
'F',
9080,
5574,
1324,
'F',
9080,
4713,
789,
'F',
5999,
1857,
9,
'C',
4253,
6491,
0,
'C',
4253,
6492,
0,
'F',
5999,
3124,
7,
'F',
9085,
1857,
9,
'C',
3152,
6493,
0,
'F',
9085,
5506,
1881,
'S',
9085,
6494,
0,
'S',
9085,
6495,
0,
'S',
9085,
6496,
0,
'S',
9085,
6497,
0,
'C',
3132,
6498,
0,
'C',
3106,
6499,
0,
'F',
9082,
1857,
9,
'F',
9082,
5506,
1881,
'S',
9082,
6500,
0,
'C',
3106,
6501,
0,
'F',
9313,
2858,
3873,
'F',
9726,
6502,
8332,
'C',
6274,
6503,
0,
'F',
9726,
6504,
8334,
'F',
9726,
6505,
8336,
'F',
9312,
2043,
4471,
'F',
9312,
2047,
4469,
'F',
9312,
6506,
8324,
'F',
9313,
2804,
208,
'F',
9726,
6507,
8338,
'F',
9313,
2315,
206,
'S',
9726,
6508,
0,
'F',
9141,
2804,
208,
'F',
9141,
2315,
206,
'C',
4234,
6509,
0,
'S',
9738,
6510,
0,
'F',
9163,
2386,
1496,
'F',
2039,
6511,
8989,
'F',
454,
4463,
14456,
'C',
1936,
6512,
0,
'F',
9743,
6513,
8810,
'F',
9743,
4044,
8812,
'F',
2046,
6514,
8995,
'S',
2039,
6515,
0,
'S',
2046,
6516,
0,
'F',
445,
6517,
14519,
'F',
445,
6518,
14521,
'F',
454,
6519,
14458,
'F',
9163,
1354,
444,
'F',
454,
1428,
14452,
'F',
454,
6520,
14454,
'F',
9163,
6207,
9319,
'F',
9144,
2386,
1496,
'C',
1936,
6521,
0,
'F',
9757,
4375,
8865,
'F',
9144,
2412,
9054,
'F',
5981,
2410,
1482,
'F',
5981,
1354,
444,
'F',
9154,
2835,
6173,
'F',
9154,
2302,
4207,
'F',
9154,
1354,
444,
'F',
9154,
2904,
1498,
'F',
8501,
6522,
8792,
'F',
8523,
6522,
8792,
'F',
2042,
6522,
8792,
'F',
2112,
6522,
8792,
'F',
9212,
692,
41,
'F',
2015,
6522,
8792,
'F',
6627,
2819,
6177,
'F',
6627,
6523,
8482,
'F',
6627,
2386,
1496,
'F',
6627,
6524,
8530,
'F',
6627,
6525,
8532,
'S',
6627,
6526,
8530,
'S',
1917,
5453,
1496,
'F',
6627,
6527,
8384,
'F',
6627,
6528,
8526,
'F',
6627,
6529,
8528,
'F',
6627,
6530,
8518,
'F',
6627,
6531,
8522,
'F',
445,
6532,
14531,
'F',
445,
6533,
14533,
'F',
5664,
6534,
10938,
'F',
6627,
2396,
210,
'F',
6627,
6535,
8514,
'F',
6627,
6536,
8490,
'F',
6627,
6537,
8480,
'F',
6627,
6538,
8479,
'F',
6506,
6539,
6758,
'F',
6506,
6540,
6760,
'F',
6506,
6541,
6762,
'F',
6511,
6542,
6764,
'F',
6506,
6542,
6764,
'F',
6530,
6543,
6645,
'F',
6592,
6544,
5491,
'S',
6530,
6545,
0,
'S',
6530,
6546,
0,
'S',
6530,
6547,
0,
'S',
6530,
6548,
0,
'F',
6514,
6549,
6726,
'F',
6514,
6550,
6727,
'F',
6514,
6551,
6728,
'F',
4434,
6552,
6631,
'S',
4434,
6553,
0,
'S',
4434,
6554,
0,
'S',
4434,
6555,
0,
'C',
5243,
6556,
0,
'F',
6514,
6557,
6720,
'F',
9650,
6557,
6720,
'F',
6627,
2302,
4207,
'F',
6627,
2904,
1498,
'F',
6627,
5427,
1492,
'F',
6627,
2055,
1474,
'F',
7286,
1940,
5496,
'F',
9001,
2055,
1474,
'F',
6627,
2030,
1472,
'F',
9001,
2030,
1472,
'S',
6627,
6558,
8471,
'S',
6627,
6559,
8473,
'S',
6627,
6560,
8475,
'F',
6627,
6561,
8475,
'F',
6627,
6562,
8496,
'F',
6627,
6563,
8473,
'F',
6627,
6564,
8494,
'F',
6627,
6565,
8471,
'F',
6627,
2411,
6962,
'F',
2009,
6566,
12145,
'F',
2009,
6567,
12146,
'F',
2009,
6568,
12143,
'F',
2009,
6569,
12144,
'F',
2009,
4413,
12090,
'F',
6627,
5371,
8446,
'F',
2009,
6570,
12149,
'F',
5664,
6571,
10929,
'F',
2009,
4412,
12089,
'F',
2009,
4410,
12087,
'F',
5664,
6572,
10927,
'F',
2009,
4411,
12088,
'F',
2009,
4409,
12086,
'S',
6627,
6573,
8455,
'S',
6627,
6574,
8457,
'S',
6627,
6575,
8459,
'S',
6627,
6576,
8461,
'S',
6627,
6577,
8463,
'F',
6627,
6578,
8463,
'F',
6627,
6579,
8461,
'F',
6627,
6580,
8464,
'F',
6627,
6581,
8459,
'F',
6627,
6582,
8457,
'F',
6627,
6583,
8466,
'F',
6627,
6584,
8455,
'S',
2009,
6585,
0,
'S',
2009,
6586,
0,
'S',
2009,
6587,
0,
'S',
2009,
6588,
0,
'S',
2009,
6589,
0,
'F',
9312,
692,
41,
'F',
9226,
692,
41,
'F',
9226,
2317,
212,
'F',
9226,
5,
43,
'F',
9226,
3002,
579,
'F',
9226,
6220,
992,
'F',
9226,
6590,
10845,
'F',
9226,
6222,
1275,
'F',
9226,
6225,
1273,
'F',
9226,
3972,
1271,
'F',
4280,
3972,
10592,
'F',
4277,
3972,
1271,
'F',
9225,
692,
41,
'F',
9225,
2317,
212,
'F',
9225,
5,
43,
'F',
9225,
3002,
579,
'F',
9225,
6220,
992,
'F',
9225,
6590,
10841,
'F',
9225,
6591,
10839,
'F',
9225,
6222,
1275,
'F',
9225,
6225,
1273,
'F',
9225,
3972,
1271,
'F',
4380,
3972,
1271,
'F',
9233,
692,
41,
'F',
9233,
2317,
212,
'F',
9233,
5,
43,
'F',
9233,
3002,
579,
'F',
9233,
6220,
992,
'F',
9233,
6592,
10824,
'F',
9233,
6593,
10822,
'F',
9233,
6222,
1275,
'F',
9233,
6225,
1273,
'F',
9233,
3972,
1271,
'F',
7138,
1354,
9361,
'F',
7138,
6594,
9362,
'F',
5757,
3972,
1271,
'F',
7137,
6595,
8002,
'C',
5123,
6596,
0,
'C',
5125,
6597,
0,
'F',
7137,
1354,
9361,
'F',
2217,
1428,
14333,
'F',
2217,
6598,
14331,
'F',
7137,
6594,
9362,
'F',
9296,
692,
41,
'F',
9296,
6599,
10615,
'F',
9296,
6600,
10616,
'F',
9296,
2317,
212,
'F',
9296,
5,
43,
'F',
9296,
6222,
1275,
'S',
9296,
5045,
0,
'F',
9296,
3972,
1271,
'F',
9296,
6225,
1273,
'F',
9296,
17,
10602,
'F',
9296,
54,
10602,
'S',
4280,
6601,
0,
'S',
9296,
4007,
0,
'S',
4280,
4007,
0,
'F',
9298,
6220,
992,
'F',
4381,
6227,
10561,
'F',
4407,
1291,
10565,
'F',
8588,
6602,
3076,
'S',
8588,
6603,
3077,
'F',
9264,
1857,
1,
'C',
5586,
6604,
0,
'F',
9264,
2316,
3123,
'F',
9291,
2804,
208,
'F',
9927,
6605,
2681,
'C',
4493,
6606,
0,
'F',
9291,
2315,
206,
'F',
9288,
1553,
1566,
'C',
4493,
6607,
0,
'F',
9288,
2804,
208,
'F',
9933,
6608,
2714,
'C',
4493,
6609,
0,
'F',
9933,
6605,
2716,
'F',
9288,
2315,
206,
'C',
4493,
6610,
0,
'F',
9316,
2317,
212,
'F',
9316,
5,
43,
'S',
6627,
5459,
2051,
'F',
6627,
5460,
2051,
'F',
9001,
5460,
2051,
'F',
9334,
1857,
9,
'C',
3152,
6611,
0,
'F',
9334,
5506,
1881,
'S',
9334,
6612,
0,
'S',
9334,
6613,
0,
'S',
9334,
6614,
0,
'C',
4950,
6615,
0,
'F',
9382,
692,
41,
'F',
8714,
2386,
1496,
'F',
9382,
6616,
1859,
'F',
8714,
2904,
1498,
'F',
9356,
2857,
793,
'F',
9356,
1940,
791,
'F',
9356,
4713,
789,
'F',
9351,
1857,
9,
'C',
2954,
6617,
0,
'S',
9957,
6618,
0,
'F',
9351,
3136,
433,
'C',
2954,
6619,
0,
'F',
9351,
1940,
791,
'F',
9352,
1940,
791,
'F',
9351,
3124,
7,
'F',
9352,
2857,
793,
'F',
9352,
5574,
1324,
'F',
9352,
4713,
789,
'F',
9348,
2803,
1562,
'F',
9348,
2802,
1560,
'F',
9348,
6620,
1556,
'F',
9338,
6621,
1436,
'F',
9338,
6622,
1438,
'F',
9338,
4389,
1440,
'F',
9338,
4392,
1442,
'F',
9338,
6623,
1444,
'F',
9338,
6624,
1446,
'F',
9338,
6625,
1448,
'F',
9338,
6626,
1450,
'F',
9338,
6627,
1452,
'F',
9338,
6628,
1454,
'F',
9348,
2310,
1543,
'F',
9338,
4365,
1456,
'C',
2954,
6629,
0,
'F',
9338,
6630,
1434,
'F',
9348,
2309,
1558,
'F',
9348,
2312,
1554,
'F',
9348,
1523,
1542,
'F',
9348,
6630,
1552,
'F',
9348,
1516,
1550,
'F',
9348,
6631,
1548,
'F',
9348,
2313,
1546,
'F',
9348,
2314,
1544,
'F',
9355,
1857,
9,
'F',
4460,
6632,
10304,
'F',
9355,
6633,
1364,
'C',
3152,
6634,
0,
'F',
9355,
3136,
433,
'F',
9355,
1940,
791,
'F',
9355,
3124,
7,
'S',
9355,
5972,
1361,
'F',
9355,
5973,
1361,
'S',
9355,
6635,
0,
'F',
9338,
2810,
1502,
'F',
9338,
2905,
1500,
'F',
9338,
6636,
1458,
'S',
9338,
6637,
0,
'S',
9338,
6638,
0,
'S',
9338,
6639,
0,
'F',
9338,
2904,
1498,
'F',
9338,
2386,
1496,
'F',
9338,
6640,
1485,
'S',
9338,
6641,
1494,
'F',
9338,
6642,
1494,
'F',
9338,
2396,
210,
'F',
9338,
6643,
1488,
'S',
9338,
6644,
0,
'F',
9338,
6645,
1471,
'F',
7880,
421,
1279,
'F',
7880,
6646,
1281,
'S',
9338,
6647,
0,
'S',
9338,
6648,
0,
'F',
9338,
6649,
1486,
'C',
2954,
6650,
0,
'C',
3979,
6651,
0,
'F',
2830,
6652,
8280,
'F',
9338,
5427,
1492,
'F',
9338,
2820,
1484,
'F',
9338,
2410,
1482,
'F',
9338,
2314,
1480,
'F',
9338,
2400,
1476,
'F',
9338,
2055,
1474,
'F',
9338,
2030,
1472,
'F',
8746,
3972,
1271,
'F',
9378,
692,
41,
'F',
7887,
5120,
599,
'F',
9408,
1084,
1019,
'F',
9408,
6653,
1017,
'F',
9410,
1084,
1019,
'F',
9410,
6653,
1017,
'F',
9297,
1857,
1,
'F',
5714,
5120,
599,
'F',
9491,
692,
41,
'F',
9491,
2317,
212,
'F',
9491,
5,
43,
'F',
9491,
23,
11720,
'F',
9491,
839,
11720,
'F',
9491,
8,
11719,
'F',
9491,
664,
11719,
'F',
7282,
6654,
11372,
'C',
6655,
6656,
0,
'F',
10049,
6657,
11342,
'C',
5243,
6658,
0,
'V',
10053,
6659,
0,
'C',
6655,
6660,
0,
'C',
6655,
6661,
0,
'F',
10054,
3775,
11330,
'F',
10054,
2496,
11332,
'F',
10058,
6662,
11320,
'C',
6655,
6663,
0,
'F',
10058,
609,
11318,
'F',
10058,
1291,
11319,
'F',
10054,
6664,
11328,
'F',
7282,
6665,
11361,
'C',
5243,
6666,
0,
'F',
7291,
6667,
5848,
'F',
7292,
6668,
11267,
'F',
7292,
2304,
11277,
'F',
7292,
6669,
11204,
'F',
7286,
6669,
11204,
'F',
7273,
1940,
5496,
'F',
7273,
6670,
11522,
'F',
1409,
6671,
11475,
'F',
7273,
6672,
11520,
'S',
7286,
6673,
0,
'F',
7286,
6674,
11538,
'F',
7285,
2304,
11277,
'F',
7285,
6675,
11269,
'S',
7285,
6676,
0,
'S',
1409,
6677,
0,
'F',
7274,
1940,
5496,
'F',
7274,
6667,
5848,
'F',
7274,
6678,
11508,
'F',
7273,
6678,
11508,
'F',
7289,
1940,
5496,
'F',
7289,
6669,
11204,
'F',
8806,
6679,
11423,
'F',
7289,
6680,
11439,
'S',
8806,
6681,
0,
'F',
8806,
6670,
11417,
'C',
5252,
6682,
0,
'S',
10089,
6683,
0,
'S',
10089,
6684,
11413,
'F',
10089,
6685,
11413,
'F',
7289,
6667,
5848,
'F',
7284,
6686,
11354,
'F',
7271,
6686,
11354,
'F',
7272,
1940,
5496,
'F',
7272,
6669,
11204,
'F',
7272,
6687,
11364,
'S',
7272,
6688,
0,
'F',
7272,
6667,
5848,
'F',
7283,
6686,
11354,
'F',
7285,
6668,
11267,
'F',
7285,
6689,
11273,
'F',
7285,
6690,
11271,
'C',
5247,
6691,
0,
'S',
7285,
6692,
0,
'S',
7285,
6693,
0,
'F',
7285,
6667,
5848,
'F',
8369,
6669,
11204,
'F',
9493,
692,
41,
'F',
9525,
3036,
3,
'C',
4490,
6694,
0,
'C',
4490,
6695,
0,
'F',
9526,
2804,
208,
'F',
10116,
6696,
8039,
'C',
4490,
6697,
0,
'F',
10116,
6698,
8040,
'F',
10116,
6699,
8041,
'F',
9526,
2315,
206,
'F',
9528,
3036,
3,
'C',
6403,
6700,
0,
'C',
6403,
6701,
0,
'F',
9528,
24,
7883,
'F',
9393,
5045,
240,
'F',
6077,
6702,
3073,
'S',
6077,
6703,
2224,
'F',
6777,
1406,
5113,
'F',
690,
1406,
5113,
'F',
609,
1406,
5113,
'F',
280,
1406,
5113,
'F',
238,
1406,
5113,
'F',
288,
1406,
5113,
'F',
216,
1406,
5113,
'F',
273,
1406,
5113,
'F',
253,
1406,
5113,
'F',
220,
1406,
5113,
'F',
259,
1406,
5113,
'F',
211,
1406,
5113,
'F',
228,
1406,
5113,
'F',
151,
1406,
5113,
'F',
9369,
5612,
5120,
'S',
9369,
5613,
2448,
'F',
9369,
1428,
2448,
'F',
9369,
54,
7462,
'F',
9369,
2559,
154,
'F',
9369,
862,
4235,
'F',
1528,
1406,
5113,
'F',
77,
1050,
5495,
'C',
28,
6704,
0,
'F',
4869,
6705,
3476,
'F',
6549,
1857,
1,
'F',
6549,
24,
6294,
'F',
6573,
6542,
6566,
'F',
6573,
6706,
6556,
'F',
6576,
4692,
6570,
'F',
6576,
6542,
6566,
'F',
6518,
6542,
6566,
'F',
6518,
6706,
6556,
'F',
9564,
6366,
5854,
'F',
9564,
6367,
5852,
'F',
9564,
5388,
5850,
'F',
9564,
6667,
5848,
'F',
9578,
5773,
3714,
'F',
9569,
5120,
599,
'F',
6511,
5108,
4881,
'F',
6506,
5108,
4881,
'S',
6506,
5109,
4880,
'F',
9616,
5120,
599,
'F',
6530,
6707,
6910,
'S',
6530,
6708,
6911,
'F',
6530,
6709,
6911,
'F',
10173,
1084,
6575,
'C',
4642,
6710,
0,
'F',
6523,
1084,
6591,
'F',
6530,
6711,
6908,
'S',
6530,
6712,
6909,
'F',
6530,
6713,
6909,
'F',
6523,
418,
6589,
'F',
6523,
6714,
6580,
'F',
6530,
6715,
6906,
'S',
6530,
6716,
6907,
'F',
6530,
6717,
6907,
'F',
6523,
2312,
6587,
'F',
6523,
6718,
6583,
'F',
6523,
6719,
6585,
'F',
6511,
6720,
6547,
'F',
6530,
6721,
6904,
'S',
6530,
6722,
6905,
'F',
6530,
6723,
6905,
'F',
6511,
6724,
6780,
'S',
6530,
6725,
6915,
'F',
6530,
6726,
6915,
'C',
4642,
6727,
0,
'F',
6530,
6728,
6902,
'S',
6530,
6729,
6903,
'F',
6530,
6730,
6903,
'F',
6511,
6010,
6778,
'S',
6530,
6731,
6913,
'F',
6530,
6732,
6913,
'F',
6514,
692,
41,
'F',
9649,
6733,
6722,
'F',
6528,
6734,
6682,
'F',
6514,
6735,
6724,
'C',
6736,
6737,
0,
'S',
10204,
6738,
0,
'F',
10204,
6739,
6833,
'F',
10204,
6740,
6835,
'C',
6741,
6742,
0,
'S',
10208,
6743,
0,
'F',
10208,
6744,
12308,
'S',
1971,
6745,
0,
'C',
5082,
6746,
0,
'V',
6514,
6747,
0,
'S',
6514,
6748,
0,
'F',
9649,
4702,
6718,
'F',
9651,
6733,
6722,
'C',
6736,
6749,
0,
'S',
10217,
6750,
0,
'F',
10217,
6751,
6861,
'V',
10217,
6752,
0,
'S',
10217,
6753,
0,
'S',
1971,
6754,
0,
'F',
9651,
4702,
6718,
'F',
9072,
6755,
5044,
'F',
9073,
6755,
5044,
'F',
9709,
2804,
208,
'F',
10228,
6756,
6168,
'C',
4253,
6757,
0,
'F',
10228,
2417,
6166,
'F',
10228,
6758,
6164,
'F',
9709,
2315,
206,
'S',
10228,
6759,
0,
'F',
9709,
1553,
1566,
'C',
4253,
6760,
0,
'F',
9708,
3036,
3,
'F',
9719,
5045,
240,
'F',
9723,
5045,
240,
'F',
4434,
6761,
130,
'F',
4434,
6762,
128,
'C',
6763,
6764,
0,
'S',
10242,
6765,
0,
'C',
4655,
33,
0,
'S',
10242,
6766,
0,
'F',
9943,
2804,
208,
'F',
10246,
2426,
9330,
'C',
4234,
6767,
0,
'F',
10246,
2829,
9334,
'F',
10246,
6768,
9332,
'F',
9943,
2315,
206,
'C',
4234,
6769,
0,
'S',
10250,
6770,
0,
'S',
10246,
6771,
0,
'F',
9712,
2804,
208,
'F',
10255,
6772,
9342,
'C',
4234,
6773,
0,
'F',
10255,
6774,
9344,
'F',
9712,
2315,
206,
'S',
10255,
6775,
0,
'F',
9995,
2804,
208,
'F',
10261,
6776,
9390,
'C',
4234,
6777,
0,
'F',
9995,
2315,
206,
'S',
10261,
6778,
0,
'F',
9032,
692,
41,
'F',
6511,
4295,
6795,
'F',
6506,
4295,
6795,
'F',
9032,
4295,
6795,
'F',
9738,
2302,
4207,
'F',
9738,
2835,
6173,
'F',
6594,
2411,
6962,
'F',
6594,
6779,
9455,
'S',
6594,
6780,
9448,
'S',
6594,
6781,
9450,
'S',
6594,
6782,
9452,
'S',
6594,
6783,
9454,
'F',
6594,
6784,
9454,
'F',
6594,
6785,
9452,
'F',
6594,
6786,
9450,
'F',
6594,
6787,
9448,
'F',
9743,
2465,
8744,
'F',
457,
6511,
14195,
'F',
457,
6788,
14197,
'C',
449,
6789,
0,
'F',
9743,
2474,
8740,
'F',
9757,
6522,
8792,
'F',
9757,
2465,
8744,
'F',
9757,
2474,
8740,
'F',
9757,
2055,
1474,
'F',
9757,
2030,
1472,
'F',
9757,
2489,
8732,
'F',
9726,
2034,
6968,
'F',
9726,
2818,
6964,
'S',
9726,
6790,
0,
'F',
9726,
2411,
6962,
'F',
9726,
2386,
1496,
'F',
9726,
6791,
8340,
'F',
9726,
2835,
6173,
'F',
9726,
2904,
1498,
'F',
9726,
2905,
1500,
'F',
9726,
2055,
1474,
'F',
9726,
2030,
1472,
'F',
9677,
692,
41,
'F',
9668,
2386,
1496,
'S',
5643,
5453,
1496,
'F',
9668,
2396,
210,
'F',
9668,
6792,
8196,
'F',
9668,
6793,
8198,
'F',
9668,
6794,
8200,
'F',
9668,
6795,
8202,
'F',
9668,
6796,
8193,
'F',
9668,
6797,
8194,
'F',
9668,
2055,
1474,
'F',
9897,
692,
41,
'F',
9897,
2386,
8006,
'F',
9897,
6798,
10662,
'F',
9897,
6799,
10664,
'F',
9897,
6800,
10658,
'F',
9897,
6801,
10660,
'F',
445,
6802,
14539,
'F',
445,
6803,
14541,
'F',
10322,
6804,
10677,
'C',
6805,
6806,
0,
'F',
10023,
692,
41,
'F',
9923,
6253,
146,
'F',
9936,
2314,
1480,
'F',
9936,
2400,
1476,
'F',
9936,
2055,
1474,
'F',
9936,
2030,
1472,
'F',
9936,
5496,
2704,
'F',
9936,
5497,
2700,
'F',
9936,
4486,
2694,
'F',
9936,
872,
2702,
'F',
9936,
54,
2698,
'F',
9936,
4485,
2696,
'F',
9927,
2810,
1502,
'F',
9927,
2413,
2683,
'C',
4512,
6807,
0,
'F',
9927,
2905,
1500,
'S',
9927,
6808,
0,
'F',
9927,
2386,
1496,
'F',
9927,
2396,
210,
'F',
9311,
6809,
1292,
'F',
9933,
2410,
1482,
'S',
9933,
6810,
0,
'F',
9933,
2905,
1500,
'S',
9933,
6811,
0,
'F',
9933,
2413,
2683,
'F',
9933,
2386,
1496,
'S',
9933,
6812,
0,
'F',
9933,
2396,
210,
'F',
9933,
6813,
2718,
'F',
9933,
6814,
2722,
'F',
9933,
6815,
2720,
'S',
9933,
6816,
0,
'S',
9933,
6817,
0,
'F',
4359,
6420,
2034,
'S',
9577,
6818,
0,
'C',
6423,
6819,
0,
'C',
6423,
6820,
0,
'S',
10359,
6821,
0,
'S',
9577,
6822,
0,
'S',
9577,
6823,
0,
'S',
9577,
6824,
0,
'C',
6423,
6825,
0,
'F',
5923,
6826,
6078,
'F',
5923,
6827,
6075,
'F',
5923,
6828,
6055,
'S',
9577,
6829,
0,
'F',
4447,
6830,
6501,
'V',
10371,
6831,
0,
'C',
6423,
33,
0,
'S',
10371,
6832,
0,
'V',
10371,
6833,
0,
'S',
10371,
6834,
0,
'V',
10371,
6835,
0,
'S',
10371,
6836,
0,
'C',
3106,
6837,
0,
'C',
6423,
6838,
0,
'C',
6839,
6840,
0,
'C',
6839,
5482,
0,
'C',
449,
6841,
0,
'F',
4357,
6420,
2034,
'C',
2965,
6842,
0,
'S',
10383,
6843,
0,
'V',
10383,
6844,
0,
'S',
10383,
6845,
0,
'V',
10383,
6846,
0,
'S',
10383,
6847,
0,
'V',
10383,
6848,
0,
'S',
10383,
6849,
0,
'F',
9948,
5045,
240,
'F',
9331,
6809,
1292,
'F',
9957,
6809,
1292,
'F',
9982,
692,
41,
'F',
9960,
5045,
240,
'F',
9408,
6850,
993,
'F',
9366,
6851,
1071,
'F',
9410,
6850,
993,
'F',
9381,
6850,
993,
'F',
9381,
6852,
990,
'F',
4433,
6761,
130,
'F',
4433,
6762,
128,
'F',
9810,
6654,
11372,
'F',
9810,
6853,
11745,
'F',
9810,
6665,
11361,
'F',
9491,
6854,
11721,
'F',
10063,
692,
41,
'F',
10051,
692,
41,
'F',
10058,
15,
11317,
'F',
9602,
692,
41,
'F',
10113,
2857,
793,
'F',
10113,
1940,
791,
'F',
10113,
5574,
1324,
'F',
10113,
4713,
789,
'F',
10112,
1857,
9,
'C',
4490,
6855,
0,
'S',
10416,
6856,
0,
'S',
10112,
6857,
8062,
'S',
10112,
6858,
8058,
'F',
10112,
6859,
8058,
'S',
10112,
6860,
8061,
'F',
10112,
6861,
8061,
'S',
10112,
6862,
0,
'F',
10112,
6863,
8062,
'F',
10112,
1940,
791,
'F',
10112,
3136,
433,
'F',
10112,
3124,
7,
'F',
9519,
6809,
1292,
'F',
10116,
2386,
1496,
'F',
10116,
6864,
8042,
'S',
10116,
6865,
0,
'S',
454,
2319,
0,
'C',
449,
6866,
0,
'F',
454,
6867,
14460,
'F',
10116,
2396,
210,
'F',
10116,
2413,
2683,
'C',
4490,
6868,
0,
'F',
10116,
2395,
8038,
'F',
10121,
1857,
9,
'F',
6813,
6869,
8138,
'F',
10442,
6870,
8122,
'C',
3997,
6871,
0,
'S',
10121,
6872,
7902,
'S',
10121,
6873,
7904,
'S',
10121,
6874,
7906,
'F',
10121,
6875,
7906,
'F',
10121,
6876,
7908,
'S',
10121,
6877,
0,
'F',
10121,
6878,
7904,
'F',
10121,
6879,
7902,
'F',
10452,
6870,
8122,
'C',
6880,
6881,
0,
'F',
10454,
6870,
8127,
'C',
6880,
6882,
0,
'S',
10454,
6883,
0,
'F',
6816,
6884,
8176,
'F',
10121,
1940,
791,
'F',
10122,
1940,
791,
'F',
10121,
3136,
433,
'F',
10121,
6885,
7900,
'F',
10121,
3124,
7,
'F',
10122,
2857,
793,
'F',
10122,
4713,
789,
'F',
9718,
5045,
240,
'F',
9676,
5045,
240,
'F',
148,
6886,
12091,
'S',
91,
6887,
0,
'C',
103,
6888,
0,
'F',
3840,
6886,
12091,
'F',
1705,
6886,
12091,
'F',
887,
6886,
12091,
'F',
77,
6886,
12091,
'F',
10149,
2559,
154,
'F',
10149,
862,
4235,
'C',
28,
6889,
0,
'F',
10240,
3036,
3,
'C',
6763,
6890,
0,
'C',
6763,
6891,
0,
'S',
10477,
6892,
0,
'F',
10240,
24,
6199,
'F',
6523,
692,
41,
'F',
10173,
1940,
6571,
'F',
10173,
4692,
6570,
'F',
10173,
5110,
6569,
'F',
10173,
5111,
6568,
'F',
10193,
692,
41,
'F',
10193,
1940,
6571,
'F',
10193,
4692,
6570,
'F',
10193,
5110,
6569,
'F',
10193,
5111,
6568,
'F',
10193,
5114,
6564,
'F',
10193,
5112,
6562,
'F',
10193,
5116,
6560,
'F',
10193,
5118,
6558,
'F',
10217,
5886,
6843,
'F',
10217,
5503,
6841,
'F',
10217,
5504,
6839,
'F',
10204,
692,
41,
'F',
10204,
5886,
6843,
'F',
10204,
6893,
6837,
'F',
10204,
5503,
6841,
'F',
10204,
5504,
6839,
'F',
4451,
5097,
5906,
'F',
6514,
6894,
6731,
'F',
6514,
6895,
6729,
'F',
6514,
6896,
6714,
'F',
9649,
6894,
6731,
'F',
9649,
6895,
6729,
'F',
9649,
6896,
6714,
'F',
6735,
1857,
9,
'F',
10228,
2819,
6177,
'F',
10228,
2410,
1482,
'F',
10228,
6897,
6170,
'F',
10228,
2386,
1496,
'F',
10228,
5850,
6175,
'S',
10228,
5851,
6175,
'F',
10228,
2905,
1500,
'F',
10228,
6898,
6171,
'S',
10228,
6899,
0,
'F',
10228,
2396,
210,
'F',
10228,
6900,
6162,
'F',
10228,
2835,
6173,
'F',
10228,
2820,
1484,
'F',
10228,
5427,
1492,
'F',
10228,
2413,
2683,
'F',
10234,
2310,
1543,
'F',
10234,
1523,
1542,
'F',
10377,
5045,
240,
'S',
7138,
5045,
0,
'F',
7137,
3972,
10639,
'S',
10378,
5045,
0,
'S',
7137,
5045,
0,
'S',
9298,
5045,
0,
'S',
10322,
6901,
0,
'S',
10536,
5045,
0,
'C',
5014,
6902,
0,
'S',
10379,
5045,
0,
'F',
10379,
3972,
10749,
'S',
10540,
6903,
0,
'C',
6839,
33,
0,
'S',
5583,
5045,
0,
'S',
5918,
5045,
0,
'C',
51,
6904,
0,
'C',
51,
6905,
0,
'C',
51,
6906,
0,
'C',
51,
6907,
0,
'S',
10543,
6908,
0,
'F',
10543,
800,
12957,
'F',
10544,
759,
5141,
'C',
6839,
6909,
0,
'S',
10540,
6910,
0,
'S',
10540,
6911,
0,
'S',
10540,
6912,
0,
'F',
10546,
6913,
13205,
'C',
51,
6914,
0,
'C',
51,
6915,
0,
'F',
10546,
6916,
13207,
'S',
156,
6917,
0,
'S',
10543,
6918,
0,
'S',
156,
6919,
0,
'S',
10379,
6920,
0,
'F',
10337,
692,
41,
'F',
10250,
2386,
1496,
'C',
1936,
6921,
0,
'F',
10564,
6513,
8842,
'F',
10564,
4044,
8844,
'F',
10564,
2426,
8846,
'F',
10564,
2829,
8848,
'F',
10564,
6768,
8850,
'F',
10250,
5867,
9072,
'F',
10250,
1354,
444,
'F',
10250,
6207,
9319,
'F',
10246,
2411,
6962,
'F',
10246,
2412,
9054,
'F',
10255,
2386,
1496,
'F',
2217,
4463,
14320,
'F',
2217,
6922,
14328,
'F',
10255,
5867,
9072,
'F',
10255,
1354,
444,
'F',
10255,
6207,
9319,
'S',
2217,
6923,
0,
'F',
10261,
2810,
1502,
'F',
10261,
2386,
1496,
'F',
10261,
2905,
1500,
'S',
10261,
6924,
0,
'F',
10261,
1354,
444,
'F',
10212,
5504,
6839,
'F',
10208,
5886,
6843,
'F',
10208,
5503,
6841,
'F',
10208,
5504,
6839,
'F',
9226,
2386,
1265,
'F',
4280,
6804,
10594,
'F',
2217,
4452,
14324,
'F',
445,
6925,
14535,
'F',
445,
6926,
14537,
'F',
2217,
1883,
14322,
'F',
4277,
2386,
1265,
'F',
9225,
2386,
1265,
'F',
4380,
2386,
1265,
'F',
9233,
2386,
1265,
'F',
10379,
692,
41,
'F',
10379,
2317,
212,
'F',
10379,
5,
43,
'F',
5757,
2386,
1265,
'F',
9296,
2386,
1265,
'S',
9298,
6927,
0,
'S',
9298,
6928,
0,
'S',
10609,
6929,
0,
'C',
3006,
33,
0,
'F',
454,
1306,
14450,
'F',
445,
6930,
14543,
'F',
423,
4452,
14285,
'F',
9311,
2386,
1290,
'F',
10383,
1857,
1,
'C',
4504,
6931,
0,
'F',
10383,
24,
2033,
'F',
9331,
2386,
1290,
'F',
9957,
2386,
1290,
'F',
9957,
6932,
1289,
'F',
8746,
2386,
1265,
'F',
445,
6933,
14523,
'F',
445,
6934,
14525,
'F',
9519,
2386,
1290,
'F',
10437,
692,
41,
'F',
10416,
1553,
1566,
'C',
4490,
6935,
0,
'S',
10626,
6936,
0,
'F',
10416,
2804,
208,
'F',
10630,
6937,
8096,
'C',
4490,
6938,
0,
'F',
10630,
6939,
8098,
'F',
10416,
2315,
206,
'C',
4490,
6940,
0,
'S',
10630,
6941,
0,
'F',
10358,
3036,
3,
'C',
6423,
6942,
0,
'F',
10358,
24,
7969,
'F',
10378,
2317,
212,
'F',
10378,
5,
43,
'F',
10378,
6595,
8002,
'C',
6423,
6943,
0,
'F',
10359,
1857,
1,
'C',
4504,
6944,
0,
'F',
10359,
24,
7961,
'F',
10433,
692,
41,
'F',
10381,
692,
41,
'F',
10468,
795,
8285,
'F',
10468,
647,
11479,
'F',
10468,
2559,
154,
'F',
10468,
1324,
5499,
'S',
10652,
6945,
0,
'C',
103,
6946,
0,
'C',
103,
6947,
0,
'C',
103,
6948,
0,
'F',
10468,
1321,
9959,
'S',
10468,
6949,
0,
'F',
10468,
872,
5277,
'F',
10468,
609,
3850,
'F',
10468,
588,
3849,
'F',
10468,
1413,
3851,
'F',
10468,
6886,
12091,
'F',
10475,
947,
4237,
'F',
10475,
888,
4236,
'F',
10477,
1857,
9,
'C',
6763,
6950,
0,
'S',
10477,
6951,
6200,
'F',
10477,
6952,
6200,
'C',
6763,
6953,
0,
'C',
6954,
6955,
0,
'F',
10671,
6956,
6224,
'C',
6763,
6957,
0,
'F',
6539,
6451,
6681,
'F',
10671,
6958,
6226,
'F',
10671,
6959,
6228,
'F',
10671,
6960,
6230,
'C',
6763,
6961,
0,
'F',
6060,
6962,
7836,
'S',
10671,
6963,
0,
'F',
10477,
1940,
791,
'F',
10671,
1940,
4880,
'F',
10478,
1940,
791,
'F',
6600,
1940,
7337,
'F',
10477,
3136,
433,
'F',
10671,
2829,
6220,
'F',
10240,
6451,
6187,
'F',
10671,
6964,
6222,
'F',
10477,
3124,
7,
'S',
10671,
6965,
0,
'F',
10478,
4713,
789,
'S',
10671,
6966,
6217,
'S',
10671,
6967,
6219,
'F',
10671,
6968,
6219,
'V',
10671,
6969,
0,
'S',
10671,
6970,
0,
'F',
10671,
6971,
6217,
'F',
10478,
2857,
793,
'F',
10478,
5574,
1324,
'F',
10643,
1857,
1342,
'F',
10643,
24,
7378,
'F',
10615,
1857,
1342,
'F',
10615,
24,
7358,
'F',
10564,
2465,
8744,
'F',
457,
6972,
14206,
'F',
457,
6973,
14208,
'C',
449,
6974,
0,
'F',
10564,
2474,
8740,
'F',
10626,
2312,
1554,
'F',
10626,
1523,
1542,
'F',
10626,
6975,
8084,
'C',
4490,
6976,
0,
'F',
10626,
1516,
1550,
'F',
10626,
2313,
1546,
'F',
10626,
2314,
1544,
'F',
10626,
2802,
1560,
'F',
10626,
6977,
8082,
'F',
10626,
2310,
1543,
'F',
10630,
6978,
8100,
'F',
10630,
6979,
8102,
'F',
10630,
6980,
8104,
'F',
10630,
6981,
8092,
'F',
10626,
2803,
1562,
'F',
10626,
2309,
1558,
'F',
10630,
2410,
1482,
'F',
10630,
2314,
1480,
'S',
10630,
6982,
0,
'F',
10630,
2400,
1476,
'S',
10630,
6983,
0,
'F',
10630,
2055,
1474,
'F',
10630,
2030,
1472,
'F',
10630,
2905,
1500,
'S',
10630,
6984,
0,
'S',
10630,
6985,
0,
'F',
10630,
2413,
2683,
'F',
10630,
2386,
1496,
'S',
10630,
6986,
0,
'F',
10630,
2396,
210,
'S',
10630,
6987,
0,
'F',
10636,
1857,
9,
'C',
3152,
6988,
0,
'S',
10636,
6989,
7982,
'F',
10636,
6990,
7982,
'F',
7274,
6991,
11506,
'F',
10636,
1940,
791,
'F',
10636,
3124,
7,
'S',
10636,
6992,
7975,
'S',
10636,
6993,
7977,
'S',
10636,
6994,
7979,
'S',
10636,
6995,
7981,
'F',
10636,
6996,
7981,
'F',
10364,
6997,
7992,
'F',
6077,
6998,
10345,
'F',
5923,
6999,
6080,
'S',
10364,
7000,
0,
'F',
4495,
6999,
5611,
'S',
4495,
7001,
0,
'F',
10636,
7002,
7979,
'F',
1556,
5307,
5211,
'F',
10636,
7003,
7984,
'F',
10636,
7004,
7977,
'F',
10364,
7005,
7990,
'F',
10636,
7006,
7975,
'F',
10641,
2386,
8006,
'F',
423,
2105,
14281,
'F',
10379,
7007,
10747,
'F',
5582,
7008,
10514,
'F',
10654,
692,
41,
'F',
10654,
705,
7635,
'F',
10654,
2559,
154,
'F',
10654,
862,
4235,
'C',
103,
7009,
0,
'F',
280,
7010,
10757,
'F',
238,
7010,
10757,
'F',
288,
7010,
10757,
'F',
216,
7010,
10757,
'F',
273,
7010,
10757,
'F',
253,
7010,
10757,
'F',
220,
7010,
10757,
'F',
259,
7010,
10757,
'F',
211,
7010,
10757,
'F',
228,
7010,
10757,
'F',
10543,
5612,
5120,
'S',
10543,
5613,
2448,
'F',
10543,
1428,
2448,
'F',
10543,
692,
41,
'F',
10543,
5644,
5117,
'F',
10543,
862,
4235,
'F',
10788,
888,
4236,
'C',
51,
7011,
0,
'F',
10788,
7012,
13217,
'F',
10543,
54,
7462,
'F',
10543,
647,
5118,
'F',
10543,
2559,
154,
'C',
51,
7013,
0,
'S',
10788,
7014,
0,
'F',
23,
7010,
10757,
'F',
10556,
2328,
13197,
'F',
10544,
833,
7606,
'F',
10544,
1321,
6052,
'F',
10544,
1406,
5113,
'F',
10544,
1051,
448,
'F',
10671,
5108,
4881,
'S',
10671,
5109,
4880,
'F',
10676,
692,
41,
'F',
10668,
4295,
4449,
'F',
10669,
4295,
4449,
'F',
10665,
6809,
1292,
'F',
10665,
2386,
1290,
'F',
10665,
7015,
6266,
'C',
7016,
7017,
0,
'S',
10811,
7018,
0,
'C',
7016,
33,
0,
'F',
10671,
2386,
6232,
'F',
445,
3972,
14501,
'F',
445,
7019,
14505,
'F',
445,
7020,
14503,
'F',
7129,
7021,
6699,
'F',
7126,
7021,
6709,
'F',
10669,
5211,
4448,
'S',
10669,
5212,
4447,
'F',
10669,
5213,
4447,
'F',
10739,
1857,
1,
'S',
5897,
7022,
0,
'F',
10739,
24,
4000,
'F',
10710,
692,
41,
'F',
10770,
947,
4237,
'F',
10770,
888,
4236,
'F',
10788,
947,
4237,
'F',
10809,
692,
41,
],
'strings': [
'noSuchMethod',
'call',
'dyn:call',
'dyn:get:length',
'&',
'==',
'dyn:toJson',
'dyn:set:_indexOrNext@1026248',
'dyn:-',
'dyn:_enqueue@1026248',
'dyn:_regenerateIndex@3220832',
'dyn:get:message',
'dyn:get:key',
'dyn:set:value',
'dyn:get:value',
'dyn:[]',
'dyn:isScheme',
'dyn:add',
'dyn:&',
'dyn:>>',
'dyn:get:_lo32@572143242',
'dyn:get:buffer',
'dyn:get:offsetInBytes',
'dyn:+',
'get:child',
'dyn:*',
'dyn:get:dragDetails',
'dyn:get:renderObject',
'dart:core',
'_Closure',
'Object',
'[tear-off] main',
'package:code_size_package/main.dart',
'',
'new RangeError.',
'RangeError',
'ArgumentError',
'Error',
'new RangeError.range',
'bool',
'_allocateInvocationMirror@0150898',
'_InvocationMirror',
'_allocateInvocationMirrorForClosure@0150898',
'new NoSuchMethodError._withType@0150898',
'NoSuchMethodError',
'_throwNew@0150898',
'new _TypeError@0150898._create@0150898',
'_TypeError',
'_Type',
'_AbstractType',
'_GrowableList',
'dart:collection',
'ListBase',
'_ListBase&Object&ListMixin',
'add',
'_instantiator_type_arguments@0150898',
'_function_type_arguments@0150898',
'_delayed_type_arguments@0150898',
'_function@0150898',
'_context@0150898',
'_hash@0150898',
'get:_instantiator_type_arguments@0150898',
'set:_instantiator_type_arguments@0150898',
'get:_function_type_arguments@0150898',
'set:_function_type_arguments@0150898',
'get:_delayed_type_arguments@0150898',
'set:_delayed_type_arguments@0150898',
'get:_function@0150898',
'set:_function@0150898',
'get:_context@0150898',
'set:_context@0150898',
'get:_hash@0150898',
'set:_hash@0150898',
'new _AssertionError@0150898._create@0150898',
'_AssertionError',
'_throwNewNullAssertion@0150898',
'_evaluateAssertion@0150898',
'_CompileTimeError',
'new _LateInitializationError@0150898.',
'_LateInitializationError',
'[tear-off] _throwNew@0150898',
'new AbstractClassInstantiationError._create@0150898',
'AbstractClassInstantiationError',
'_RegExp',
'UnsupportedError',
'new UnsupportedError.',
'_TwoByteString',
'_StringBase',
'_Double',
'new List._fromLiteral@0150898',
'List',
'new StackOverflowError.',
'StackOverflowError',
'_haveSameRuntimeType@0150898',
'_instanceOf@0150898',
'_simpleInstanceOf@0150898',
'_simpleInstanceOfTrue@0150898',
'_simpleInstanceOfFalse@0150898',
'new _InternalError@0150898.',
'_InternalError',
'_LibraryPrefix',
'pragma',
'_List',
'dart:_internal',
'FixedLengthListBase',
'_ImmutableMap',
'new _ImmutableMap@0150898._create@0150898',
'_ExternalTwoByteString',
'_TypeRef',
'_OneByteString',
'new ArgumentError.',
'new ArgumentError.value',
'_stackTrace@0150898',
'get:_stackTrace@0150898',
'set:_stackTrace@0150898',
'new FallThroughError._create@0150898',
'FallThroughError',
'_WeakProperty',
'new Map._fromLiteral@0150898',
'Map',
'new _CastError@0150898._create@0150898',
'_CastError',
'new IntegerDivisionByZeroException.',
'IntegerDivisionByZeroException',
'_Mint',
'_IntegerImplementation',
'String',
'new CyclicInitializationError.',
'CyclicInitializationError',
'_TypeParameter',
'_StackTrace',
'_interpolateSingle@0150898',
'_interpolate@0150898',
'_Smi',
'new FormatException.',
'FormatException',
'_ExternalOneByteString',
'new NullThrownError.',
'NullThrownError',
'new OutOfMemoryError.',
'OutOfMemoryError',
'_ImmutableList',
'UnmodifiableListBase',
'Null',
'_uriBaseClosure@0150898',
'init:_uriBaseClosure@0150898',
'get:_uriBaseClosure@0150898',
'_completeLoads@0150898',
'[tear-off] _completeLoads@0150898',
'_loadLibrary@0150898',
'[tear-off] _loadLibrary@0150898',
'_checkLoaded@0150898',
'[tear-off] _checkLoaded@0150898',
'identityHashCode',
'dart:isolate',
'_SendPortImpl',
'send',
'_RawReceivePortImpl',
'_lookupHandler@1026248',
'_handleMessage@1026248',
'new IsolateSpawnException.',
'IsolateSpawnException',
'_CapabilityImpl',
'_TransferableTypedDataImpl',
'_runPendingImmediateCallback@1026248',
'_getIsolateScheduleImmediateClosure@1026248',
'_startMainIsolate@1026248',
'_getStartMainIsolateFunction@1026248',
'_startIsolate@1026248',
'_setupHooks@1026248',
'dart:mirrors',
'_MirrorReference',
'_InternalLinkedHashMap',
'__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin&_HashBase&_OperatorEqualsAndHashCode',
'__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin&_HashBase',
'__InternalLinkedHashMap&_HashVMBase&MapMixin&_LinkedHashMapMixin',
'__InternalLinkedHashMap&_HashVMBase&MapMixin',
'_HashVMBase',
'_CompactLinkedHashSet',
'__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode&SetMixin',
'__CompactLinkedHashSet&_HashFieldBase&_HashBase&_OperatorEqualsAndHashCode',
'__CompactLinkedHashSet&_HashFieldBase&_HashBase',
'_HashFieldBase',
'_rehashObjects@3220832',
'dart:async',
'FutureOr',
'_future@4048458',
'_AsyncAwaitCompleter',
'isSync',
'get:_future@4048458',
'get:isSync',
'set:isSync',
'new _AsyncAwaitCompleter@4048458.',
'complete',
'[tear-off] complete',
'start',
'[tear-off] start',
'_stateData@4048458',
'_StreamIterator',
'get:_stateData@4048458',
'set:_stateData@4048458',
'_onData@4048458',
'_BufferingStreamSubscription',
'get:_onData@4048458',
'set:_onData@4048458',
'new Future.value',
'Future',
'wait',
'[tear-off] wait',
'callback',
'_FutureListener',
'get:callback',
'_varData@4048458',
'_StreamController',
'_state@4048458',
'get:_varData@4048458',
'set:_varData@4048458',
'get:_state@4048458',
'set:_state@4048458',
'_AsyncStarStreamController',
'controller',
'get:controller',
'set:controller',
'_resultOrListeners@4048458',
'_Future',
'get:_resultOrListeners@4048458',
'set:_resultOrListeners@4048458',
'timeout',
'[tear-off] timeout',
'_asyncStarMoveNextHelper@4048458',
'_completeOnAsyncReturn@4048458',
'_clearAsyncThreadStackTrace@4048458',
'_setAsyncThreadStackTrace@4048458',
'_setScheduleImmediateClosure@4048458',
'_ensureScheduleImmediate@4048458',
'dart:developer',
'_UserTag',
'dart:typed_data',
'_Uint8ArrayView',
'__Uint8ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'__Int8ArrayView&_TypedListView&_IntListMixin',
'_TypedListView',
'_TypedListBase',
'_ExternalInt64Array',
'__Int64List&_TypedList&_IntListMixin&_TypedIntListMixin',
'__Int8List&_TypedList&_IntListMixin',
'_TypedList',
'_Float32List',
'__Float32List&_TypedList&_DoubleListMixin&_TypedDoubleListMixin',
'__Float32List&_TypedList&_DoubleListMixin',
'_Uint16List',
'__Uint16List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Uint32List',
'__Uint32List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_ExternalUint64Array',
'__Uint64List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Float64x2ArrayView',
'__Float64x2ArrayView&_TypedListView&_Float64x2ListMixin',
'_Uint8ClampedList',
'__Uint8ClampedList&_TypedList&_IntListMixin&_TypedIntListMixin',
'_ExternalUint32Array',
'_Float32x4',
'_Int8ArrayView',
'__Int8ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_ByteDataView',
'_Float64ArrayView',
'__Float64ArrayView&_TypedListView&_DoubleListMixin&_TypedDoubleListMixin',
'__Float32ArrayView&_TypedListView&_DoubleListMixin',
'_ExternalUint8ClampedArray',
'_ExternalFloat64Array',
'__Float64List&_TypedList&_DoubleListMixin&_TypedDoubleListMixin',
'_ExternalFloat32Array',
'_Int32x4',
'_Int32List',
'__Int32List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Int16List',
'__Int16List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Float32ArrayView',
'__Float32ArrayView&_TypedListView&_DoubleListMixin&_TypedDoubleListMixin',
'_Uint32ArrayView',
'__Uint32ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_Float32x4ArrayView',
'__Float32x4ArrayView&_TypedListView&_Float32x4ListMixin',
'_Int8List',
'__Int8List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Uint8List',
'__Uint8List&_TypedList&_IntListMixin&_TypedIntListMixin',
'_Int32x4ArrayView',
'__Int32x4ArrayView&_TypedListView&_Int32x4ListMixin',
'_Uint64ArrayView',
'__Uint64ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_ExternalInt32Array',
'_Int32ArrayView',
'__Int32ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_ExternalInt16Array',
'_Int64ArrayView',
'__Int64ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_Uint8ClampedArrayView',
'__Uint8ClampedArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_Float64x2',
'_Uint64List',
'_ExternalFloat64x2Array',
'__Float64x2List&_TypedList&_Float64x2ListMixin',
'_Uint16ArrayView',
'__Uint16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_Float64List',
'_Float64x2List',
'_ExternalInt8Array',
'_Int32x4List',
'__Int32x4List&_TypedList&_Int32x4ListMixin',
'_Int64List',
'new ByteData._view@7027147',
'ByteData',
'new ByteData.',
'_ExternalInt32x4Array',
'_ExternalUint8Array',
'_Float32x4List',
'__Float32x4List&_TypedList&_Float32x4ListMixin',
'_ExternalFloat32x4Array',
'_Int16ArrayView',
'__Int16ArrayView&_TypedListView&_IntListMixin&_TypedIntListMixin',
'_ExternalUint16Array',
'_ByteBuffer',
'new _ByteBuffer@7027147._New@7027147',
'dart:ffi',
'Uint32',
'_NativeInteger',
'NativeType',
'Uint16',
'Int64',
'Uint64',
'Handle',
'Void',
'Dart_CObject',
'Struct',
'#sizeOf',
'init:#sizeOf',
'get:#sizeOf',
'new Dart_CObject.#fromPointer',
'Int32',
'Int8',
'Int16',
'Float',
'_NativeDouble',
'IntPtr',
'Double',
'DynamicLibrary',
'Pointer',
'NativeFunction',
'Uint8',
'dart:wasm',
'getFunction',
'_NativeWasmImports',
'[tear-off] getFunction',
'ClassID',
'getID',
'_printClosure@11040228',
'init:_printClosure@11040228',
'get:_printClosure@11040228',
'allocateOneByteString',
'writeIntoOneByteString',
'allocateTwoByteString',
'writeIntoTwoByteString',
'_classRangeCheck@11040228',
'_prependTypeArguments@11040228',
'_boundsCheckForPartialInstantiation@11040228',
'_state@12383281',
'dart:math',
'_Random',
'get:_state@12383281',
'_embedderAllowsHttp@14463476',
'dart:_http',
'init:_embedderAllowsHttp@14463476',
'dart:io',
'_EmbedderConfig',
'_mayExit@15069316',
'init:_mayExit@15069316',
'_maySetEchoMode@15069316',
'init:_maySetEchoMode@15069316',
'_maySetLineMode@15069316',
'init:_maySetLineMode@15069316',
'_maySleep@15069316',
'init:_maySleep@15069316',
'_mayInsecurelyConnectToAllDomains@15069316',
'init:_mayInsecurelyConnectToAllDomains@15069316',
'_setDomainPolicies@15069316',
'[tear-off] _setDomainPolicies@15069316',
'_ProcessStartStatus',
'_errorCode@15069316',
'_errorMessage@15069316',
'set:_errorCode@15069316',
'set:_errorMessage@15069316',
'_Namespace',
'_setupNamespace@15069316',
'Directory',
'new Directory.',
'new Directory.fromRawPath',
'Link',
'new Link.',
'new Link.fromRawPath',
'_registerServiceExtension@15069316',
'_NetworkProfiling',
'[tear-off] _registerServiceExtension@15069316',
'_SecureFilterImpl',
'dart:nativewrappers',
'NativeFieldWrapperClass1',
'SIZE',
'init:SIZE',
'ENCRYPTED_SIZE',
'init:ENCRYPTED_SIZE',
'buffers',
'get:SIZE',
'get:ENCRYPTED_SIZE',
'get:buffers',
'FileSystemException',
'new FileSystemException.',
'data',
'_ExternalBuffer',
'end',
'set:data',
'get:start',
'set:start',
'get:end',
'set:end',
'OSError',
'new OSError.',
'X509Certificate',
'new X509Certificate._@15069316',
'File',
'new File.',
'new File.fromRawPath',
'_Platform',
'_localeClosure@15069316',
'set:_nativeScript@15069316',
'_RandomAccessFileOpsImpl',
'HandshakeException',
'TlsException',
'new HandshakeException.',
'new CertificateException.',
'CertificateException',
'_NamespaceImpl',
'new TlsException.',
'_setupHooks@15069316',
'_getUriBaseClosure@15069316',
'_makeUint8ListView@15069316',
'_getWatchSignalInternal@15069316',
'_makeDatagram@15069316',
'_setStdioFDs@15069316',
'new Rect.fromLTRB',
'dart:ui',
'Rect',
'TextBox',
'Scene',
'NativeFieldWrapperClass2',
'new Scene._@16065589',
'Paragraph',
'new Paragraph._@16065589',
'EngineLayer',
'new EngineLayer._@16065589',
'SemanticsUpdate',
'new SemanticsUpdate._@16065589',
'new ParagraphBuilder.',
'ParagraphBuilder',
'Codec',
'new Codec._@16065589',
'Picture',
'new Picture._@16065589',
'new Color.',
'Color',
'FrameInfo',
'new FrameInfo._@16065589',
'new Canvas.',
'Canvas',
'Image',
'new Image._@16065589',
'SemanticsUpdateBuilder',
'new SemanticsUpdateBuilder.',
'new Shader._@16065589',
'Shader',
'new PictureRecorder.',
'PictureRecorder',
'Path',
'new Path.',
'new SceneBuilder.',
'SceneBuilder',
'new ImageShader.',
'ImageShader',
'_updateWindowMetrics@16065589',
'[tear-off] _updateWindowMetrics@16065589',
'_getLocaleClosure@16065589',
'[tear-off] _getLocaleClosure@16065589',
'_updateLocales@16065589',
'[tear-off] _updateLocales@16065589',
'_updateUserSettingsData@16065589',
'[tear-off] _updateUserSettingsData@16065589',
'_updateLifecycleState@16065589',
'[tear-off] _updateLifecycleState@16065589',
'_updateSemanticsEnabled@16065589',
'[tear-off] _updateSemanticsEnabled@16065589',
'_updateAccessibilityFeatures@16065589',
'[tear-off] _updateAccessibilityFeatures@16065589',
'_dispatchPlatformMessage@16065589',
'[tear-off] _dispatchPlatformMessage@16065589',
'_dispatchPointerDataPacket@16065589',
'[tear-off] _dispatchPointerDataPacket@16065589',
'_dispatchSemanticsAction@16065589',
'[tear-off] _dispatchSemanticsAction@16065589',
'_beginFrame@16065589',
'[tear-off] _beginFrame@16065589',
'_reportTimings@16065589',
'[tear-off] _reportTimings@16065589',
'_drawFrame@16065589',
'[tear-off] _drawFrame@16065589',
'_runMainZoned@16065589',
'[tear-off] _runMainZoned@16065589',
'_setupHooks@16065589',
'[tear-off] _setupHooks@16065589',
'_getPrintClosure@16065589',
'[tear-off] _getPrintClosure@16065589',
'_getScheduleMicrotaskClosure@16065589',
'[tear-off] _getScheduleMicrotaskClosure@16065589',
'_port@17205832',
'dart:vmservice_io',
'init:_port@17205832',
'_ip@17205832',
'init:_ip@17205832',
'_autoStart@17205832',
'init:_autoStart@17205832',
'_authCodesDisabled@17205832',
'init:_authCodesDisabled@17205832',
'_originCheckDisabled@17205832',
'init:_originCheckDisabled@17205832',
'_serviceInfoFilename@17205832',
'_isWindows@17205832',
'init:_isWindows@17205832',
'_isFuchsia@17205832',
'init:_isFuchsia@17205832',
'_signalWatch@17205832',
'_enableServicePortFallback@17205832',
'init:_enableServicePortFallback@17205832',
'_waitForDdsToAdvertiseService@17205832',
'init:_waitForDdsToAdvertiseService@17205832',
'[tear-off] _scheduleMicrotask@16065589',
'_scheduleMicrotask@16065589',
'[tear-off] _print@16065589',
'_print@16065589',
'_printString@16065589',
'_Logger',
'_runMainZoned@16065589.<anonymous closure @7460>',
'[invoke-field] dyn:call (3)',
'runZonedGuarded',
'_runMainZoned@16065589.<anonymous closure @7460>.<anonymous closure @7490>',
'_runMainZoned@16065589.<anonymous closure @7460>.<anonymous closure @7907>',
'_reportUnhandledException@16065589',
'[invoke-field] dyn:call (2)',
'[invoke-field] dyn:call (1)',
'_current@4048458',
'Zone',
'init:_current@4048458',
'checkNotNull',
'_ZoneSpecification',
'_runZoned@4048458',
'runZonedGuarded.<anonymous closure @58435>',
'handleUncaughtError',
'_ZoneDelegate',
'_RootZone',
'_Zone',
'window',
'init:window',
'_invoke@16065589',
'Window',
'new Window._@16065589',
'Size',
'OffsetBase',
'WindowPadding',
'Brightness',
'AccessibilityFeatures',
'[tear-off] _nativeSetNeedsReportTimings@16065589',
'_nativeSetNeedsReportTimings@16065589',
'new _GrowableList@0150898.',
'FrameTiming',
'_grow@0150898',
'_invoke1@16065589',
'_allocateData@0150898',
'_emptyList@0150898',
'init:_emptyList@0150898',
'new _GrowableList@0150898._withData@0150898',
'Duration',
'[]',
'_invoke3@16065589',
'SemanticsAction',
'_invoke3@16065589.<anonymous closure @9199>',
'_unpackPointerDataPacket@16065589',
'PointerData',
'PointerDataPacket',
'PointerChange',
'PointerDeviceKind',
'PointerSignalKind',
'channelBuffers',
'init:channelBuffers',
'handleMessage',
'ChannelBuffers',
'push',
'_printDebug@16065589',
'_respondToPlatformMessage@16065589',
'_dispatchPlatformMessage@16065589.<anonymous closure @5383>',
'_dispatchPlatformMessage@16065589.<anonymous closure @5541>',
'_printDebugString@16065589',
'_makeRingBuffer@16065589',
'[]=',
'_StoredMessage',
'_RingBuffer',
'_dropOverflowItems@16065589',
'addLast',
'ListQueue',
'_add@3220832',
'_grow@3220832',
'setRange',
'removeFirst',
'noElement',
'IterableElementError',
'StateError',
'_hashCode@3220832',
'_findValueOrInsertPoint@3220832',
'_insert@3220832',
'_rehash@3220832',
'_init@3220832',
'new Uint32List.',
'Uint32List',
'new _RingBuffer@16065589.',
'set:dropItemCallback',
'[tear-off] _onDropItem@16065589',
'_onDropItem@16065589',
'ListIterable',
'EfficientLengthIterable',
'Iterable',
'new ListQueue.',
'_calculateCapacity@3220832',
'_getValueOrData@3220832',
'_getString@16065589',
'parse',
'int',
'_resize@16065589',
'new Exception.',
'Exception',
'_Exception',
'resize',
'get:isEmpty',
'_throwFormatException@0150898',
'_tryParseSmi@0150898',
'_parse@0150898',
'_lastNonWhitespace@0150898',
'_firstNonWhitespace@0150898',
'_parseRadix@0150898',
'is64Bit',
'init:is64Bit',
'_int64OverflowLimits@0150898',
'init:_int64OverflowLimits@0150898',
'_parseBlock@0150898',
'_initInt64OverflowLimits@0150898',
'remainder',
'IndexError',
'new IndexError.',
'~/',
'-',
'_truncDivFromInteger@0150898',
'new Int64List.',
'Int64List',
'_inquireIs64Bit@11040228',
'get:buffer',
'asUint8List',
'decode',
'dart:convert',
'Utf8Codec',
'Encoding',
'convert',
'Utf8Decoder',
'Converter',
'StreamTransformerBase',
'_Utf8Decoder',
'convertSingle',
'checkValidRange',
'_makeUint8List@10003594',
'decode8',
'decode16',
'decodeGeneral',
'StringBuffer',
'new StringBuffer.',
'writeCharCode',
'createFromCharCodes',
'_consumeBuffer@0150898',
'_addPart@0150898',
'toString',
'_concatRange@0150898',
'_concatRangeNative@0150898',
'new [email protected]',
'_compact@0150898',
'set:length',
'_shrink@0150898',
'_create@0150898',
'_createOneByteString@0150898',
'_createStringFromIterable@0150898',
'_scanCodeUnits@0150898',
'_allocateFromTwoByteList@0150898',
'_createFromCodePoints@0150898',
'skip',
'SubListIterable',
'new List.from',
'|',
'makeListFixedLength',
'_createStringFromIterable@0150898.<anonymous closure @7685>',
'_bitOrFromInteger@0150898',
'checkNotNegative',
'EmptyIterable',
'new SubListIterable.',
'_ensureCapacity@0150898',
'new Uint16List.',
'Uint16List',
'write',
'new Uint8List.',
'Uint8List',
'get:lengthInBytes',
'_rangeCheck@7027147',
'JsonCodec',
'_updateTextScaleFactor@16065589',
'_updateAlwaysUse24HourFormat@16065589',
'_updatePlatformBrightness@16065589',
'JsonDecoder',
'_parseJson@10003594',
'_BuildJsonListener',
'_JsonListener',
'_JsonStringParser',
'_ChunkedJsonParser',
'close',
'finishChunkNumber',
'fail',
'handleNumber',
'addNumberChunk',
'parseNum',
'_NumberBuffer',
'parseDouble',
'getString',
'double',
'_tryParseDouble@0150898',
'_nativeParse@0150898',
'startsWith',
'new [email protected]',
'_substringMatches@0150898',
'matchAsPrefix',
'_StringMatch',
'new String.fromCharCodes',
'num',
'tryParse',
'trim',
'[tear-off] _kNull@0150898',
'_substringUnchecked@0150898',
'ensureCapacity',
'copyCharsToList',
'_setRange@7027147',
'toList',
'tooFew',
'ConcurrentModificationError',
'parsePartial',
'parseString',
'parseNull',
'parseFalse',
'parseTrue',
'popContainer',
'parseNumber',
'beginChunkNumber',
'getChar',
'_parseDouble@10003594',
'new _NumberBuffer@10003594.',
'parseKeywordPrefix',
'handleBool',
'handleNull',
'beginString',
'addSliceToString',
'parseStringToBuffer',
'handleString',
'chunkString',
'substring',
'endString',
'parseStringEscape',
'chunkStringEscapeU',
'addCharToString',
'parsePartialString',
'parsePartialNumber',
'parsePartialKeyword',
'codeUnitAt',
'continueChunkNumber',
'Locale',
'[tear-off] _localeClosure@16065589',
'_localeClosure@16065589',
'get:locale',
'get:isNotEmpty',
'get:first',
'get:isNaN',
'_constructor@16065589',
'_initWithImage@16065589',
'addAll',
'_encodeLocale@16065589',
'_cachedLocale@16065589',
'_cachedLocaleString@16065589',
'_rawToString@16065589',
'get:languageCode',
'get:countryCode',
'new InternetAddressType._from@15069316',
'InternetAddressType',
'Datagram',
'[tear-off] _watchSignalInternal@15069316',
'_ProcessUtils',
'_watchSignalInternal@15069316',
'_signalControllers@15069316',
'init:_signalControllers@15069316',
'new Uint8List.view',
'[tear-off] _uriBaseClosure@15069316',
'_uriBaseClosure@15069316',
'get:_namespace@15069316',
'_current@15069316',
'_Directory',
'new [email protected]',
'_Uri',
'get:_isWindows@0150898',
'_makeWindowsFileUrl@0150898',
'_makeFileUri@0150898',
'new _Uri@0150898.',
'_makeScheme@0150898',
'_makeHost@0150898',
'_makePath@0150898',
'_normalizeRelativePath@0150898',
'_removeDotSegments@0150898',
'_mayContainDotSegments@0150898',
'join',
'_joinWithSeparator@0150898',
'_concatAll@0150898',
'_escapeScheme@0150898',
'get:last',
'_normalizeOrSubstring@0150898',
'+',
'_normalizePath@0150898',
'_makePath@0150898.<anonymous closure @78356>',
'_uriEncode@0150898',
'encode',
'_normalize@0150898',
'_normalizeEscape@0150898',
'_escapeChar@0150898',
'_fail@0150898',
'new String.fromCharCode',
'_checkZoneID@0150898',
'_normalizeZoneID@0150898',
'parseIPv6Address',
'Uri',
'_normalizeRegName@0150898',
'_parseIPv4Address@0150898',
'parseIPv6Address.error',
'parseIPv6Address.parseHex',
'_canonicalizeScheme@0150898',
'replaceRange',
'replaceAll',
'_checkWindowsDriveLetter@0150898',
'_checkWindowsPathReservedCharacters@0150898',
'get:iterator',
'new RegExp.',
'RegExp',
'_cache@0150898',
'init:_cache@0150898',
'_recentlyUsed@0150898',
'init:_recentlyUsed@0150898',
'_RegExpHashKey',
'LinkedListEntry',
'LinkedList',
'remove',
'new _RegExp@0150898.',
'_RegExpHashValue',
'unlink',
'addFirst',
'_insertBefore@3220832',
'_unlink@3220832',
'new HashMap.',
'HashMap',
'_HashMap',
'MapBase',
'MapMixin',
'new _HashMap@3220832.',
'ListIterator',
'allMatches',
'_StringAllMatchesIterable',
'moveNext',
'_StringAllMatchesIterator',
'_addReplaceSlice@0150898',
'_joinReplaceAllOneByteResult@0150898',
'_joinReplaceAllResult@0150898',
'_setRange@0150898',
'_isWindowsCached@0150898',
'init:_isWindowsCached@0150898',
'get:_isWindowsPlatform@0150898',
'_cachedNamespace@15069316',
'_getDefault@15069316',
'_create@15069316',
'eventHandlerSendData',
'VMLibraryHooks',
'timerMillisecondClock',
'[tear-off] _sendData@15069316',
'_EventHandler',
'[tear-off] _timerMillisecondClock@15069316',
'_timerMillisecondClock@15069316',
'_sendData@15069316',
'_computeScriptUri@11040228',
'_cachedScript@11040228',
'set:_nativeScript@15069316.<anonymous closure @1551>',
'get:base',
'new [email protected]',
'_startsWithData@0150898',
'UriData',
'get:uri',
'_scan@0150898',
'_SimpleUri',
'new [email protected]',
'_makeUserInfo@0150898',
'_makePort@0150898',
'_makeQuery@0150898',
'_makeFragment@0150898',
'_defaultPort@0150898',
'_scannerTables@0150898',
'init:_scannerTables@0150898',
'_createTables@0150898',
'_computeUri@0150898',
'_DataUri',
'new _DataUri@0150898.',
'get:isOdd',
'normalize',
'Base64Codec',
'Base64Encoder',
'_inverseAlphabet@10003594',
'_Base64Decoder',
'init:_inverseAlphabet@10003594',
'_checkPadding@10003594',
'new Int8List.fromList',
'Int8List',
'new Int8List.',
'_File',
'FileSystemEntity',
'new [email protected]',
'_checkNotNull@15069316',
'_toNullTerminatedUtf8Array@15069316',
'_toStringFromUtf8Array@15069316',
'get:current',
'IOOverrides',
'_toUtf8Array@15069316',
'Utf8Encoder',
'_Utf8Encoder',
'_fillBuffer@10003594',
'_writeReplacementCharacter@10003594',
'sublist',
'_writeSurrogate@10003594',
'_ioOverridesToken@15069316',
'init:_ioOverridesToken@15069316',
'_X509CertificateImpl',
'registerExtension',
'[tear-off] _serviceExtensionHandler@15069316',
'_serviceExtensionHandler@15069316',
'_getHttpEnableTimelineLogging@15069316',
'_setHttpEnableTimelineLogging@15069316',
'toJson',
'_SocketProfile',
'pause',
'clear',
'getVersion',
'ServiceExtensionResponse',
'_asyncComplete@4048458',
'_validateErrorCode@5383715',
'_chainFuture@4048458',
'_asyncCompleteWithValue@4048458',
'_setPendingComplete@4048458',
'_asyncCompleteWithValue@4048458.<anonymous closure @19523>',
'_completeWithValue@4048458',
'_removeListeners@4048458',
'_setValue@4048458',
'_propagateToListeners@4048458',
'get:_error@4048458',
'_reverseListeners@4048458',
'_chainCoreFuture@4048458',
'_chainForeignFuture@4048458',
'[email protected]',
'[email protected]',
'[email protected]',
'matchesErrorTest',
'get:hasErrorCallback',
'handleError',
'AsyncError',
'new AsyncError.',
'defaultStackTrace',
'_StringStackTrace',
'handleValue',
'handleWhenComplete',
'[email protected].<anonymous closure @24188>',
'scheduleMicrotask',
'_chainForeignFuture@4048458.<anonymous closure @15727>',
'_chainForeignFuture@4048458.<anonymous closure @16077>',
'_chainForeignFuture@4048458.<anonymous closure @16496>',
'_completeError@4048458',
'_setError@4048458',
'_setErrorObject@4048458',
'_clearPendingComplete@4048458',
'_complete@4048458',
'_rootScheduleMicrotask@4048458',
'inSameErrorZone',
'get:_parentDelegate@4048458',
'get:_delegate@4048458',
'_rootDelegate@4048458',
'_scheduleAsyncCallback@4048458',
'_lastCallback@4048458',
'_nextCallback@4048458',
'_isInCallbackLoop@4048458',
'init:_isInCallbackLoop@4048458',
'_AsyncCallbackEntry',
'_scheduleImmediate@4048458',
'_AsyncRun',
'[tear-off] _startMicrotaskLoop@4048458',
'_startMicrotaskLoop@4048458',
'_lastPriorityCallback@4048458',
'_microtaskLoop@4048458',
'_closure@4048458',
'_ScheduleImmediate',
'_cloneResult@4048458',
'_setChained@4048458',
'_prependListeners@4048458',
'_prependListeners@4048458.<anonymous closure @14520>',
'_chainFuture@4048458.<anonymous closure @19805>',
'JsonEncoder',
'stringify',
'_JsonStringStringifier',
'printOn',
'_JsonStringifier',
'writeObject',
'[tear-off] _defaultToEncodable@10003594',
'_defaultToEncodable@10003594',
'writeJsonValue',
'_checkCycle@10003594',
'JsonUnsupportedObjectError',
'get:_partialResult@10003594',
'JsonCyclicError',
'writeNumber',
'writeString',
'writeStringContent',
'writeStringSlice',
'_idToSocketStatistic@15069316',
'init:_idToSocketStatistic@15069316',
'_success@15069316',
'get:values',
'map',
'toJson.<anonymous closure @4551>',
'new List.of',
'new MappedIterable.',
'MappedIterable',
'EfficientLengthMappedIterable',
'_CompactIterable',
'set:enableTimelineLogging',
'HttpClient',
'_enableTimelineLogging@14463476',
'init:_enableTimelineLogging@14463476',
'_lookupExtension@5383715',
'_registerExtension@5383715',
'_Link',
'new [email protected]',
'_constructDomainPolicies@15069316',
'_domainMatcher@15069316',
'_DomainNetworkPolicy',
'init:_domainMatcher@15069316',
'new String.fromEnvironment',
'hasMatch',
'checkConflict',
'_ExecuteMatch@0150898',
'[tear-off] _unsupportedPrint@11040228',
'_unsupportedPrint@11040228',
'_moveNextDebuggerStepCheck@4048458',
'new Timer.',
'Timer',
'then',
'timeout.<anonymous closure @27185>',
'timeout.<anonymous closure @27505>',
'timeout.<anonymous closure @27686>',
'timeout.<anonymous closure @27809>',
'cancel',
'_Timer',
'_heap@1026248',
'init:_heap@1026248',
'_TimerHeap',
'_notifyEventHandler@1026248',
'_handlingCallbacks@1026248',
'init:_handlingCallbacks@1026248',
'_firstZeroTimer@1026248',
'_sendPort@1026248',
'_scheduledWakeupTime@1026248',
'init:_scheduledWakeupTime@1026248',
'_cancelWakeup@1026248',
'_shutdownTimerHandler@1026248',
'_scheduleWakeup@1026248',
'_createTimerHandler@1026248',
'[invoke-field] dyn:call (4)',
'_receivePort@1026248',
'new RawReceivePort.',
'RawReceivePort',
'get:sendPort',
'[tear-off] _handleMessage@1026248',
'_queueFromZeroEvent@1026248',
'_queueFromTimeoutEvent@1026248',
'_runTimers@1026248',
'_idCount@1026248',
'init:_idCount@1026248',
'_pendingImmediateCallback@1026248',
'_enqueue@1026248',
'_lastZeroTimer@1026248',
'init:_lastZeroTimer@1026248',
'_notifyZeroHandler@1026248',
'_resize@1026248',
'_bubbleUp@1026248',
'_sentinelTimer@1026248',
'init:_sentinelTimer@1026248',
'<=',
'<',
'_get_sendport@1026248',
'_handlerMap@1026248',
'init:_handlerMap@1026248',
'new _RawReceivePortImpl@1026248.',
'_get_id@1026248',
'_initHandlerMap@1026248',
'_addEntry@3220832',
'_HashMapEntry',
'_resize@3220832',
'_closeInternal@1026248',
'_bubbleDown@1026248',
'new _TimerHeap@1026248.',
'TimeoutException',
'_registerErrorHandler@4048458',
'_addListener@4048458',
'_addListener@4048458.<anonymous closure @13448>',
'new Future.error',
'wait.handleError',
'wait.<anonymous closure @15516>',
'new Future.sync',
'wait.<anonymous closure @15516>.<anonymous closure @15936>',
'_asyncCompleteError@4048458',
'_asyncCompleteError@4048458.<anonymous closure @20210>',
'wait.handleError.<anonymous closure @14875>',
'timerFactory',
'[tear-off] _factory@1026248',
'_factory@1026248',
'new [email protected]',
'new _Timer@1026248.',
'_createTimer@1026248',
'new _Timer@1026248._internal@1026248',
'_startIsolate@1026248.<anonymous closure @7699>',
'_startIsolate@1026248.<anonymous closure @8603>',
'[tear-off] _startMainIsolate@1026248',
'[tear-off] _isolateScheduleImmediate@1026248',
'_sendInternal@1026248',
'_isLoaded@0150898',
'_DeferredNotLoadedError',
'_asyncThenWrapperHelper@4048458',
'_asyncErrorWrapperHelper@4048458',
'_loadLibrary@0150898{body}',
'_loads@0150898',
'init:_loads@0150898',
'_loadingUnit@0150898',
'_AsyncCompleter',
'_Completer',
'_issueLoad@0150898',
'_awaitHelper@4048458',
'new Future.',
'completeError',
'_loadLibrary@0150898.<anonymous closure @2240>',
'_setLoaded@0150898',
'run',
'new Future..<anonymous closure @6891>',
'_completeWithErrorCallback@4048458',
'_thenAwait@4048458',
'new Map.',
'new _InternalLinkedHashMap@3220832.',
'_indexSizeToHashMask@3220832',
'_HashBase',
'get:bitLength',
'[email protected]',
'DeferredLoadException',
'[tear-off] _unsupportedUriBase@0150898',
'_unsupportedUriBase@0150898',
'_doThrowNewSource@0150898',
'_doThrowNew@0150898',
'Symbol',
'_unpackTypeArguments@0150898',
'_NamedArgumentsMap@0150898',
'new _InvocationMirror@0150898._withType@0150898',
'main',
'MyApp',
'package:flutter/src/widgets/framework.dart',
'StatelessWidget',
'Widget',
'package:flutter/src/foundation/diagnostics.dart',
'DiagnosticableTree',
'_DiagnosticableTree&Object&Diagnosticable',
'runApp',
'package:flutter/src/widgets/binding.dart',
'ensureInitialized',
'WidgetsFlutterBinding',
'scheduleAttachRootWidget',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding',
'scheduleWarmUpFrame',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding',
'startSync',
'Timeline',
'lockEvents',
'package:flutter/src/foundation/binding.dart',
'BindingBase',
'package:flutter/src/scheduler/binding.dart',
'SchedulerPhase',
'scheduleWarmUpFrame.<anonymous closure @32513>',
'scheduleWarmUpFrame.<anonymous closure @32598>',
'scheduleWarmUpFrame.<anonymous closure @33509>',
'scheduleWarmUpFrame.<anonymous closure @33509>{body}',
'get:endOfFrame',
'finishSync',
'_stack@5383715',
'init:_stack@5383715',
'finish',
'_SyncBlock',
'_argumentsAsJson@5383715',
'_reportTaskEvent@5383715',
'_reportFlowEvent@5383715',
'scheduleFrame',
'get:endOfFrame.<anonymous closure @25932>',
'get:framesEnabled',
'ensureFrameCallbacksRegistered',
'get:window',
'set:onBeginFrame',
'set:onDrawFrame',
'[tear-off] _handleBeginFrame@394222615',
'[tear-off] _handleDrawFrame@394222615',
'_handleDrawFrame@394222615',
'handleDrawFrame',
'_invokeFrameCallback@394222615',
'package:flutter/src/foundation/assertions.dart',
'ErrorDescription',
'_ErrorDiagnostic',
'DiagnosticsProperty',
'DiagnosticsNode',
'new _ErrorDiagnostic@127022608.',
'FlutterErrorDetails',
'reportError',
'FlutterError',
'DiagnosticLevel',
'onError',
'init:onError',
'init:onError.<anonymous closure @35758>',
'presentError',
'init:presentError',
'[tear-off] dumpErrorToConsole',
'dumpErrorToConsole',
'_errorCount@127022608',
'init:_errorCount@127022608',
'debugPrint',
'package:flutter/src/foundation/print.dart',
'init:debugPrint',
'toDiagnosticsNode',
'trimRight',
'get:summary',
'DiagnosticsTreeStyle',
'exceptionAsString',
'trimLeft',
'new DiagnosticsNode.message',
'_NoDefaultValue',
'lastIndexOf',
'_FlutterErrorDetailsNode',
'DiagnosticableNode',
'[tear-off] debugPrintThrottled',
'debugPrintThrottled',
'_debugPrintBuffer@144110992',
'init:_debugPrintBuffer@144110992',
'_debugPrintScheduled@144110992',
'init:_debugPrintScheduled@144110992',
'_debugPrintTask@144110992',
'debugPrintThrottled.<anonymous closure @2131>',
'debugWordWrap',
'_SyncIterable',
'IterableBase',
'debugWordWrap{body}',
'debugWordWrap{body}.<anonymous closure @4693>',
'_indentPattern@144110992',
'init:_indentPattern@144110992',
'group',
'_RegExpMatch',
'*',
'_WordWrapParseMode',
'get:_groupCount@0150898',
'_start@0150898',
'_end@0150898',
'_ExecuteMatchSticky@0150898',
'_debugPrintStopwatch@144110992',
'init:_debugPrintStopwatch@144110992',
'_debugPrintedCharacters@144110992',
'init:_debugPrintedCharacters@144110992',
'printToZone',
'_debugPrintCompleter@144110992',
'get:elapsed',
'Stopwatch',
'stop',
'reset',
'printToConsole',
'[tear-off] _debugPrintTask@144110992',
'_now@0150898',
'get:elapsedMicroseconds',
'_frequency@0150898',
'init:_frequency@0150898',
'get:elapsedTicks',
'_initTicker@0150898',
'_computeFrequency@0150898',
'_preGrow@3220832',
'_writeToList@3220832',
'_handleBeginFrame@394222615',
'handleBeginFrame',
'_adjustForEpoch@394222615',
'forEach',
'_HashSet',
'handleBeginFrame.<anonymous closure @39925>',
'get:keys',
'_CompactIterator',
'new _CompactIterator@3220832.',
'_timeDilation@394222615',
'init:_timeDilation@394222615',
'roundToDouble',
'toInt',
'resetEpoch',
'lockEvents.<anonymous closure @9659>',
'unlocked',
'_WidgetsFlutterBinding&BindingBase&GestureBinding',
'_ensureEventLoopCallback@394222615',
'[tear-off] _runTasks@394222615',
'_runTasks@394222615',
'handleEventLoopCallback',
'package:collection/src/priority_queue.dart',
'HeapPriorityQueue',
'_TaskEntry',
'_removeLast@48248793',
'_bubbleDown@48248793',
'_flushPointerEventQueue@151304576',
'package:flutter/src/gestures/binding.dart',
'_Resampler',
'_handlePointerEvent@151304576',
'_resampler@151304576',
'init:_resampler@151304576',
'new _Resampler@151304576.',
'package:flutter/src/gestures/hit_test.dart',
'HitTestResult',
'new HitTestResult.',
'hitTest',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding',
'dispatchEvent',
'updateWithEvent',
'package:flutter/src/rendering/mouse_tracking.dart',
'BaseMouseTracker',
'dispatchEvent.<anonymous closure @8549>',
'get:renderView',
'hitTestMouseTrackers',
'package:flutter/src/rendering/view.dart',
'RenderView',
'package:flutter/src/rendering/box.dart',
'BoxHitTestResult',
'HitTestEntry',
'get:_lastTransform@160494604',
'_globalizeTransforms@160494604',
'route',
'package:flutter/src/gestures/pointer_router.dart',
'PointerRouter',
'FlutterErrorDetailsForPointerEventDispatcher',
'dispatchEvent.<anonymous closure @12481>',
'dispatchEvent.<anonymous closure @13174>',
'dispatchEvent.<anonymous closure @13174>{body}',
'dispatchEvent.<anonymous closure @13174>{body}.<anonymous closure @13174>',
'dispatchEvent.<anonymous closure @12481>{body}',
'dispatchEvent.<anonymous closure @12481>{body}.<anonymous closure @12481>',
'new LinkedHashMap.from',
'LinkedHashMap',
'_dispatchEventToRoutes@166407777',
'_dispatchEventToRoutes@166407777.<anonymous closure @4282>',
'_dispatch@166407777',
'new LinkedHashMap.from.<anonymous closure @4112>',
'_shouldMarkStateDirty@367325758',
'_monitorMouseConnection@367325758',
'updateWithEvent.<anonymous closure @16341>',
'_deviceUpdatePhase@367325758',
'updateWithEvent.<anonymous closure @16341>.<anonymous closure @16371>',
'_MouseState',
'replaceLatestEvent',
'_hitTestResultToAnnotations@367325758',
'replaceAnnotations',
'MouseTrackerUpdateDetails',
'_State&Object&Diagnosticable',
'handleDeviceUpdate',
'_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin&_MouseTrackerEventMixin',
'_MouseTracker&BaseMouseTracker&MouseTrackerCursorMixin',
'_handleDeviceUpdateMouseEvents@367325758',
'_MouseTrackerEventMixin',
'package:flutter/src/gestures/events.dart',
'PointerExitEvent',
'PointerEvent',
'new PointerExitEvent.fromMouseEvent',
'where',
'PointerEnterEvent',
'new PointerEnterEvent.fromMouseEvent',
'Offset',
'transformed',
'_handleDeviceUpdateMouseEvents@367325758.<anonymous closure @20260>',
'_handleDeviceUpdateMouseEvents@367325758.<anonymous closure @20703>',
'containsKey',
'package:vector_math/vector_math_64.dart',
'Matrix4',
'transformPosition',
'transformDeltaViaPositions',
'new Vector3.',
'Vector3',
'perspectiveTransform',
'new Float64List.',
'Float64List',
'setValues',
'WhereIterable',
'_handleDeviceUpdateMouseCursor@366306348',
'_findFirstCursor@366306348',
'new _HashFieldBase@3220832.',
'contains',
'package:flutter/src/rendering/mouse_cursor.dart',
'_SystemMouseCursorSession',
'MouseCursorSession',
'activate',
'UnimplementedError',
'package:flutter/src/material/material_state.dart',
'MaterialState',
'SystemMouseCursor',
'MouseCursor',
'invokeMethod',
'package:flutter/src/services/platform_channel.dart',
'OptionalMethodChannel',
'MethodChannel',
'package:flutter/src/services/message_codecs.dart',
'StandardMethodCodec',
'StandardMessageCodec',
'invokeMethod{body}',
'_invokeMethod@414480135',
'_invokeMethod@414480135{body}',
'get:binaryMessenger',
'package:flutter/src/services/message_codec.dart',
'MethodCall',
'package:flutter/src/services/binding.dart',
'_DefaultBinaryMessenger',
'MissingPluginException',
'_mockHandlers@406240726',
'init:_mockHandlers@406240726',
'_sendPlatformMessage@406240726',
'sendPlatformMessage',
'_sendPlatformMessage@406240726.<anonymous closure @9871>',
'_zonedPlatformMessageResponseCallback@16065589',
'_sendPlatformMessage@16065589',
'_zonedPlatformMessageResponseCallback@16065589.<anonymous closure @53289>',
'get:defaultBinaryMessenger',
'package:flutter/src/services/binary_messenger.dart',
'_instance@406240726',
'ServicesBinding',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding',
'_defaultBinaryMessenger@406240726',
'_getKeyOrData@3220832',
'firstNonDeferred',
'_DeferringMouseCursor',
'_findFirstCursor@366306348.<anonymous closure @1721>',
'MappedIterator',
'Iterator',
'get:mouseIsConnected',
'notifyListeners',
'package:flutter/src/foundation/change_notifier.dart',
'ChangeNotifier',
'get:runtimeType',
'package:flutter/src/foundation/observer_list.dart',
'ObserverList',
'notifyListeners.<anonymous closure @9307>',
'notifyListeners.<anonymous closure @9307>{body}',
'notifyListeners.<anonymous closure @9307>{body}.<anonymous closure @9307>',
'_set@142023516',
'init:_set@142023516',
'new HashSet.',
'HashSet',
'_SetBase',
'_HashSetEntry',
'new Matrix4.identity',
'setIdentity',
'package:flutter/src/gestures/resampler.dart',
'PointerEventResampler',
'_isDartStreamEnabled@5383715',
'set:flow',
'_startSync@5383715',
'scheduleAttachRootWidget.<anonymous closure @35588>',
'attachRootWidget',
'RenderObjectToWidgetAdapter',
'RenderObjectWidget',
'GlobalObjectKey',
'GlobalKey',
'package:flutter/src/foundation/key.dart',
'Key',
'attachToRenderTree',
'_instance@394222615',
'SchedulerBinding',
'lockState',
'BuildOwner',
'buildScope',
'ensureVisualUpdate',
'markNeedsBuild',
'Element',
'attachToRenderTree.<anonymous closure @43840>',
'attachToRenderTree.<anonymous closure @43991>',
'mount',
'RenderObjectToWidgetElement',
'RootRenderObjectElement',
'_rebuild@461399801',
'builder',
'ErrorWidget',
'init:builder',
'get:widget',
'updateChild',
'deactivateChild',
'updateSlotForChild',
'canUpdate',
'inflateWidget',
'_retakeInactiveElement@35042623',
'_activateWithParent@35042623',
'_updateDepth@35042623',
'_activateRecursively@35042623',
'[tear-off] _activateRecursively@35042623',
'_updateDepth@35042623.<anonymous closure @147410>',
'get:_currentElement@35042623',
'_InactiveElements',
'_registry@35042623',
'init:_registry@35042623',
'updateSlotForChild.visit',
'_deactivateRecursively@35042623',
'[tear-off] _deactivateRecursively@35042623',
'RenderObjectElement',
'[tear-off] _defaultErrorWidgetBuilder@35042623',
'_defaultErrorWidgetBuilder@35042623',
'LeafRenderObjectWidget',
'UniqueKey',
'LocalKey',
'attachRenderObject',
'ParentDataElement',
'_updateParentData@35042623',
'ProxyElement',
'_register@35042623',
'createElement',
'assignOwner',
'new Element.',
'_nextHashCode@35042623',
'init:_nextHashCode@35042623',
'scheduleBuildFor',
'sort',
'_debugReportException@35042623',
'rebuild',
'[tear-off] _sort@35042623',
'buildScope.<anonymous closure @116538>',
'buildScope.<anonymous closure @116538>{body}',
'buildScope.<anonymous closure @116538>{body}.<anonymous closure @116538>',
'DebugCreator',
'package:flutter/src/rendering/object.dart',
'DiagnosticsDebugCreator',
'describeElement',
'_sort@35042623',
'Sort',
'[tear-off] _compareAny@3220832',
'ListMixin',
'_compareAny@3220832',
'compare',
'Comparable',
'_doSort@11040228',
'_insertionSort@11040228',
'_dualPivotQuicksort@11040228',
'_instance@461399801',
'WidgetsBinding',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding',
'_WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding',
'new _WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding&SemanticsBinding&RendererBinding&WidgetsBinding@461399801.',
'new _WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding&ServicesBinding&PaintingBinding@461399801.',
'package:flutter/src/painting/binding.dart',
'_SystemFontsNotifier',
'Listenable',
'new _WidgetsFlutterBinding&BindingBase&GestureBinding&SchedulerBinding@461399801.',
'new _WidgetsFlutterBinding&BindingBase&GestureBinding@461399801.',
'[tear-off] defaultSchedulingStrategy',
'[tear-off] _taskSorter@394222615',
'_taskSorter@394222615',
'compareTo',
'>',
'get:isNegative',
'_equal@0150898',
'_greaterThan@0150898',
'defaultSchedulingStrategy',
'get:transientCallbackCount',
'new PointerRouter.',
'package:flutter/src/gestures/arena.dart',
'GestureArenaManager',
'package:flutter/src/gestures/pointer_signal_resolver.dart',
'PointerSignalResolver',
'new BindingBase.',
'initInstances',
'initServiceExtensions',
'postEvent',
'_postEvent@5383715',
'propertiesTransformers',
'init:propertiesTransformers',
'new BuildOwner.',
'set:onLocaleChanged',
'set:onAccessibilityFeaturesChanged',
'setMethodCallHandler',
'[tear-off] _handleBuildScheduled@461399801',
'[tear-off] handleLocaleChanged',
'[tear-off] handleAccessibilityFeaturesChanged',
'[tear-off] _handleNavigationInvocation@461399801',
'JSONMethodCodec',
'[tear-off] transformDebugCreator',
'package:flutter/src/widgets/widget_inspector.dart',
'transformDebugCreator',
'transformDebugCreator{body}',
'transformDebugCreator{body}.<anonymous closure @97924>',
'_parseDiagnosticsNode@487171358',
'get:value',
'_describeRelevantUserCode@487171358',
'get:instance',
'WidgetInspectorService',
'isWidgetCreationTracked',
'_WidgetInspectorService',
'ErrorSpacer',
'visitAncestorElements',
'[email protected]',
'_instance@487171358',
'init:_instance@487171358',
'new _WidgetInspectorService@487171358.',
'InspectorSelection',
'new LinkedHashMap.identity',
'_ElementLocationStatsTracker',
'new _ElementLocationStatsTracker@487171358.',
'_CompactLinkedIdentityHashMap',
'__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase&_IdenticalAndIdentityHashCode',
'__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin&_HashBase',
'__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin&_LinkedHashMapMixin',
'__CompactLinkedIdentityHashMap&_HashFieldBase&MapMixin',
'_maybeCacheValue@136198569',
'_handleNavigationInvocation@461399801',
'handlePopRoute',
'handlePushRoute',
'_handlePushRouteInformation@461399801',
'_handlePushRouteInformation@461399801{body}',
'package:flutter/src/widgets/router.dart',
'RouteInformation',
'handlePushRoute{body}',
'handlePopRoute{body}',
'pop',
'package:flutter/src/services/system_navigator.dart',
'SystemNavigator',
'pop{body}',
'handleAccessibilityFeaturesChanged',
'handleLocaleChanged',
'dispatchLocalesChanged',
'_handleBuildScheduled@461399801',
'_methodChannelHandlers@414480135',
'init:_methodChannelHandlers@414480135',
'Expando',
'setMessageHandler',
'setMethodCallHandler.<anonymous closure @15691>',
'_handleAsMethodCall@414480135',
'_handleAsMethodCall@414480135{body}',
'_handlers@406240726',
'init:_handlers@406240726',
'drain',
'setMessageHandler.<anonymous closure @11503>',
'setMessageHandler.<anonymous closure @11503>{body}',
'handlePlatformMessage',
'handlePlatformMessage{body}',
'drain{body}',
'_isEmpty@16065589',
'_pop@16065589',
'_deletedEntry@0150898',
'init:_deletedEntry@0150898',
'_checkType@0150898',
'get:_limit@0150898',
'new _WeakProperty@0150898.',
'_rehash@0150898',
'_new@0150898',
'package:flutter/src/widgets/focus_manager.dart',
'FocusManager',
'_FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier',
'_FocusNode&Object&DiagnosticableTreeMixin',
'new FocusManager.',
'instance',
'package:flutter/src/services/raw_keyboard.dart',
'RawKeyboard',
'init:instance',
'_instance@151304576',
'GestureBinding',
'HashedObserverList',
'FocusScopeNode',
'FocusNode',
'new FocusScopeNode.',
'new _FocusNode&Object&DiagnosticableTreeMixin&ChangeNotifier@465042876.',
'addGlobalRoute',
'FocusHighlightStrategy',
'[tear-off] _handleRawKeyEvent@465042876',
'[tear-off] _handlePointerEvent@465042876',
'_handlePointerEvent@465042876',
'get:highlightMode',
'_updateHighlightMode@465042876',
'FocusHighlightMode',
'get:_defaultModeForPlatform@465042876',
'_notifyHighlightModeListeners@465042876',
'get:defaultTargetPlatform',
'package:flutter/src/foundation/platform.dart',
'TargetPlatform',
'package:flutter/src/foundation/_platform_io.dart',
'isAndroid',
'Platform',
'init:isAndroid',
'isIOS',
'init:isIOS',
'isFuchsia',
'init:isFuchsia',
'isLinux',
'init:isLinux',
'isMacOS',
'init:isMacOS',
'isWindows',
'init:isWindows',
'get:operatingSystem',
'new FlutterError.',
'ErrorSummary',
'_FlutterError&Error&DiagnosticableTreeMixin',
'new FlutterError..<anonymous closure @29680>',
'MappedListIterable',
'_operatingSystem@15069316',
'init:_operatingSystem@15069316',
'_handleRawKeyEvent@465042876',
'get:ancestors',
'new FocusNode.',
'new RawKeyboard._@417461389',
'BasicMessageChannel',
'[tear-off] _handleKeyEvent@417461389',
'JSONMessageCodec',
'_handleKeyEvent@417461389',
'_handleKeyEvent@417461389{body}',
'new RawKeyEvent.fromMessage',
'RawKeyEvent',
'get:logicalKey',
'get:physicalKey',
'_synchronizeModifiers@417461389',
'_modifierKeyMap@417461389',
'init:_modifierKeyMap@417461389',
'_allModifiers@417461389',
'init:_allModifiers@417461389',
'_allModifiersExceptFn@417461389',
'init:_allModifiersExceptFn@417461389',
'get:modifiersPressed',
'RawKeyEventData',
'_ModifierSidePair',
'[tear-off-extractor] get:remove',
'package:flutter/src/services/keyboard_key.dart',
'PhysicalKeyboardKey',
'KeyboardKey',
'[tear-off] remove',
'ModifierKey',
'LogicalKeyboardKey',
'get:entries',
'get:entries.<anonymous closure @5134>',
'MapEntry',
'KeyboardSide',
'package:flutter/src/services/raw_keyboard_android.dart',
'RawKeyEventDataAndroid',
'package:flutter/src/services/raw_keyboard_fuchsia.dart',
'RawKeyEventDataFuchsia',
'package:flutter/src/services/raw_keyboard_macos.dart',
'RawKeyEventDataMacOs',
'new KeyHelper.',
'package:flutter/src/services/raw_keyboard_linux.dart',
'KeyHelper',
'RawKeyEventDataLinux',
'package:flutter/src/services/raw_keyboard_web.dart',
'RawKeyEventDataWeb',
'package:flutter/src/services/raw_keyboard_windows.dart',
'RawKeyEventDataWindows',
'RawKeyDownEvent',
'RawKeyUpEvent',
'GLFWKeyHelper',
'_GLFWKeyHelper&Object&KeyHelper',
'GtkKeyHelper',
'setMessageHandler.<anonymous closure @3095>',
'setMessageHandler.<anonymous closure @3095>{body}',
'_instance@352452173',
'package:flutter/src/rendering/binding.dart',
'RendererBinding',
'PipelineOwner',
'new PipelineOwner.',
'set:onMetricsChanged',
'set:onTextScaleFactorChanged',
'set:onPlatformBrightnessChanged',
'set:onSemanticsEnabledChanged',
'set:onSemanticsAction',
'initRenderView',
'_handleSemanticsEnabledChanged@352452173',
'initMouseTracker',
'[tear-off] ensureVisualUpdate',
'[tear-off] _handleSemanticsOwnerCreated@352452173',
'[tear-off] _handleSemanticsOwnerDisposed@352452173',
'[tear-off] handleMetricsChanged',
'[tear-off] handleTextScaleFactorChanged',
'[tear-off] handlePlatformBrightnessChanged',
'[tear-off] _handleSemanticsEnabledChanged@352452173',
'[tear-off] _handleSemanticsAction@352452173',
'[tear-off] _handlePersistentFrameCallback@352452173',
'_handlePersistentFrameCallback@352452173',
'drawFrame',
'_scheduleMouseTrackerUpdate@352452173',
'_scheduleMouseTrackerUpdate@352452173.<anonymous closure @9913>',
'updateAllDevices',
'updateAllDevices.<anonymous closure @18387>',
'get:device',
'addTimingsCallback',
'finalizeTree',
'removeTimingsCallback',
'drawFrame.<anonymous closure @33380>',
'set:onReportTimings',
'_setNeedsReportTimings@16065589',
'removeAt',
'finalizeTree.<anonymous closure @120055>',
'_unmountAll@35042623',
'[tear-off] _unmount@35042623',
'_unmount@35042623',
'_unmount@35042623.<anonymous closure @82886>',
'get:_startIndex@11040228',
'get:_endIndex@11040228',
'checkValidIndex',
'flushLayout',
'flushCompositingBits',
'flushPaint',
'compositeFrame',
'flushSemantics',
'_updateSemantics@368266271',
'RenderObject',
'sendSemanticsUpdate',
'package:flutter/src/semantics/semantics.dart',
'SemanticsOwner',
'flushSemantics.<anonymous closure @42917>',
'get:owner',
'SemanticsNode',
'package:flutter/src/semantics/binding.dart',
'SemanticsBinding',
'createSemanticsUpdateBuilder',
'build',
'updateSemantics',
'_addToUpdate@400082469',
'getAction',
'CustomSemanticsAction',
'sendSemanticsUpdate.<anonymous closure @100640>',
'sendSemanticsUpdate.<anonymous closure @100790>',
'sendSemanticsUpdate.<anonymous closure @101586>',
'_actions@400082469',
'init:_actions@400082469',
'_kEmptyChildList@400082469',
'init:_kEmptyChildList@400082469',
'_kIdentityTransform@400082469',
'init:_kIdentityTransform@400082469',
'_kEmptyCustomSemanticsActionsList@400082469',
'init:_kEmptyCustomSemanticsActionsList@400082469',
'getSemanticsData',
'get:hasChildren',
'_childrenInTraversalOrder@400082469',
'new Int32List.',
'Int32List',
'updateNode',
'_updateNode@16065589',
'_childrenInDefaultOrder@400082469',
'_TraversalSortNode',
'_childrenInTraversalOrder@400082469.<anonymous closure @82349>',
'inflate',
'_pointInParentCoordinates@400082469',
'_BoxEdge',
'expand',
'_SemanticsSortGroup',
'_childrenInDefaultOrder@400082469.<anonymous closure @98226>',
'sortedWithinVerticalGroup',
'get:reversed',
'TextDirection',
'sortedWithinVerticalGroup.<anonymous closure @92983>',
'sortedWithinKnot',
'atan2',
'sortedWithinKnot.<anonymous closure @95386>',
'sortedWithinKnot.search',
'sortedWithinKnot.<anonymous closure @96010>',
'sortedWithinKnot.<anonymous closure @96100>',
'_atan2@12383281',
'ReversedListIterable',
'ExpandIterable',
'transform3',
'_ids@400082469',
'init:_ids@400082469',
'_nextId@400082469',
'init:_nextId@400082469',
'new LinkedHashSet.from',
'LinkedHashSet',
'_visitDescendants@400082469',
'SemanticsData',
'getSemanticsData.<anonymous closure @73523>',
'_concatStrings@400082469',
'_initIdentityTransform@400082469',
'_build@16065589',
'_instance@398275577',
'_getSemanticsForParent@368266271',
'get:single',
'tooMany',
'get:_semanticsConfiguration@368266271',
'_AbortingSemanticsFragment',
'_InterestingSemanticsFragment',
'_SemanticsFragment',
'_ContainerSemanticsFragment',
'_SwitchableSemanticsFragment',
'new _SwitchableSemanticsFragment@368266271.',
'markAsExplicit',
'_RootSemanticsFragment',
'new _RootSemanticsFragment@368266271.',
'_getSemanticsForParent@368266271.<anonymous closure @107746>',
'isCompatibleWith',
'SemanticsConfiguration',
'get:interestingFragments{body}',
'get:interestingFragments{body}.<anonymous closure @139883>',
'new SemanticsConfiguration.',
'buildScene',
'package:flutter/src/rendering/layer.dart',
'ContainerLayer',
'_updateSystemChrome@389268214',
'render',
'dispose',
'get:paintBounds',
'get:center',
'find',
'Layer',
'package:flutter/src/services/system_chrome.dart',
'SystemUiOverlayStyle',
'setSystemUIOverlayStyle',
'SystemChrome',
'_pendingStyle@426077576',
'_latestStyle@426077576',
'setSystemUIOverlayStyle.<anonymous closure @15398>',
'_toMap@426077576',
'AnnotationResult',
'updateSubtreeNeedsAddToScene',
'_repaintCompositedChild@368266271',
'PaintingContext',
'_skippedPaintingOnLayer@368266271',
'flushPaint.<anonymous closure @39158>',
'OffsetLayer',
'_RenderObject&AbstractNode&DiagnosticableTreeMixin',
'package:flutter/src/foundation/node.dart',
'AbstractNode',
'removeAllChildren',
'package:flutter/src/painting/clip.dart',
'ClipContext',
'_paintWithContext@368266271',
'stopRecordingIfNeeded',
'endRecording',
'set:picture',
'PictureLayer',
'markNeedsAddToScene',
'_endRecording@16065589',
'_debugReportException@368266271',
'_debugReportException@368266271.<anonymous closure @53696>',
'_debugReportException@368266271.<anonymous closure @53696>{body}',
'_debugReportException@368266271.<anonymous closure @53696>{body}.<anonymous closure @53696>',
'describeForError',
'DiagnosticableTreeNode',
'dropChild',
'_updateCompositingBits@368266271',
'flushCompositingBits.<anonymous closure @37653>',
'markNeedsPaint',
'_updateCompositingBits@368266271.<anonymous closure @83405>',
'requestVisualUpdate',
'_layoutWithoutResize@368266271',
'flushLayout.<anonymous closure @36023>',
'markNeedsSemanticsUpdate',
'[tear-off] _executeTimingsCallbacks@394222615',
'_executeTimingsCallbacks@394222615',
'_handleSemanticsAction@352452173',
'decodeMessage',
'performAction',
'_getSemanticsActionHandlerForId@400082469',
'_canPerformAction@400082469',
'_getSemanticsActionHandlerForId@400082469.<anonymous closure @103262>',
'package:flutter/src/foundation/serialization.dart',
'ReadBuffer',
'readValue',
'get:hasRemaining',
'getUint8',
'readValueOfType',
'getInt32',
'getInt64',
'getFloat64',
'readSize',
'getUint8List',
'getInt32List',
'getInt64List',
'getFloat64List',
'_alignTo@145185525',
'asFloat64List',
'_offsetAlignmentCheck@7027147',
'asInt64List',
'asInt32List',
'getUint16',
'getUint32',
'handlePlatformBrightnessChanged',
'handleTextScaleFactorChanged',
'handleMetricsChanged',
'createViewConfiguration',
'set:configuration',
'scheduleForcedFrame',
'_updateMatricesAndCreateNewRootLayer@389268214',
'replaceRootLayer',
'markNeedsLayout',
'markParentNeedsLayout',
'toMatrix',
'ViewConfiguration',
'TransformLayer',
'attach',
'new Matrix4.diagonal3Values',
'/',
'_handleSemanticsOwnerDisposed@352452173',
'clearSemantics',
'clearSemantics.<anonymous closure @102680>',
'_handleSemanticsOwnerCreated@352452173',
'scheduleInitialSemantics',
'MouseTracker',
'new BaseMouseTracker.',
'setSemanticsEnabled',
'ensureSemantics',
'SemanticsHandle',
'removeListener',
'_didDisposeSemanticsHandle@368266271',
'new SemanticsOwner.',
'new SemanticsHandle._@368266271',
'addListener',
'_RenderView&RenderObject&RenderObjectWithChildMixin',
'new RenderView.',
'set:renderView',
'prepareInitialFrame',
'scheduleInitialLayout',
'scheduleInitialPaint',
'set:rootNode',
'detach',
'markNeedsCompositingBitsUpdate',
'new RenderObject.',
'set:child',
'adoptChild',
'redepthChild',
'_cleanRelayoutBoundary@368266271',
'[tear-off] _cleanChildRelayoutBoundary@368266271',
'_cleanChildRelayoutBoundary@368266271',
'_instance@303047248',
'PaintingBinding',
'shaderWarmUp',
'init:shaderWarmUp',
'createImageCache',
'execute',
'package:flutter/src/painting/shader_warm_up.dart',
'ShaderWarmUp',
'execute{body}',
'warmUpOnCanvas',
'DefaultShaderWarmUp',
'TimelineTask',
'_getNextAsyncId@5383715',
'ceilToDouble',
'toImage',
'_finish@5383715',
'_AsyncBlock',
'_futurize@16065589',
'toImage.<anonymous closure @183793>',
'_toImage@16065589',
'new Completer.sync',
'Completer',
'_futurize@16065589.<anonymous closure @199355>',
'_SyncCompleter',
'_start@5383715',
'warmUpOnCanvas{body}',
'enableDithering',
'Paint',
'init:enableDithering',
'addRRect',
'new Rect.fromCircle',
'addOval',
'moveTo',
'quadraticBezierTo',
'lineTo',
'new Paint.',
'set:isAntiAlias',
'set:style',
'set:strokeWidth',
'save',
'restore',
'translate',
'_drawPath@16065589',
'drawShadow',
'ParagraphStyle',
'new ParagraphStyle.',
'TextStyle',
'new TextStyle.',
'pushStyle',
'addText',
'layout',
'drawParagraph',
'RRect',
'get:_value32@16065589',
'_clipRRect@16065589',
'_drawRect@16065589',
'PaintingStyle',
'Radius',
'ParagraphConstraints',
'new Float32List.fromList',
'Float32List',
'new Float32List.',
'_paint@16065589',
'_layout@16065589',
'_addText@16065589',
'_pushStyle@16065589',
'_encodeTextStyle@16065589',
'_encodeParagraphStyle@16065589',
'_drawShadow@16065589',
'_addOval@16065589',
'new Rect.fromCenter',
'_addRRect@16065589',
'package:flutter/src/painting/image_cache.dart',
'ImageCache',
'new ImageCache.',
'createRestorationManager',
'set:onPlatformMessage',
'initLicenses',
'readInitialLifecycleStateFromNativeWindow',
'BinaryMessenger',
'initInstances.<anonymous closure @1167>',
'[tear-off] _handleLifecycleMessage@406240726',
'StringCodec',
'_handleLifecycleMessage@406240726',
'_handleLifecycleMessage@406240726{body}',
'handleAppLifecycleStateChanged',
'AppLifecycleState',
'_setFramesEnabledState@394222615',
'handleSystemMessage',
'handleSystemMessage{body}',
'handleMemoryPressure',
'get:initialLifecycleState',
'_initialLifecycleState@16065589',
'addLicense',
'package:flutter/src/foundation/licenses.dart',
'LicenseRegistry',
'[tear-off] _addLicenses@406240726',
'_addLicenses@406240726',
'new _AsyncStarStreamController@4048458.',
'get:stream',
'_addLicenses@406240726{body}',
'scheduleTask',
'new Stream.fromIterable',
'Stream',
'addStream',
'addError',
'_addLicenses@406240726.<anonymous closure @4041>',
'package:flutter/src/scheduler/priority.dart',
'Priority',
'_addLicenses@406240726.<anonymous closure @4299>',
'_addLicenses@406240726.<anonymous closure @4299>{body}',
'compute',
'package:flutter/src/foundation/isolates.dart',
'init:compute',
'[tear-off] _parseLicenses@406240726',
'_parseLicenses@406240726',
'LicenseEntryWithLineBreaks',
'LicenseEntry',
'[tear-off] compute',
'package:flutter/src/foundation/_isolates_io.dart',
'compute{body}',
'begin',
'Flow',
'new ReceivePort.',
'ReceivePort',
'_IsolateConfiguration',
'_ReceivePortImpl',
'spawn',
'Isolate',
'listen',
'kill',
'[tear-off] _spawn@440206865',
'compute.<anonymous closure @1211>',
'compute.<anonymous closure @1618>',
'compute.<anonymous closure @1784>',
'get:isCompleted',
'_spawn@440206865',
'_spawn@440206865{body}',
'step',
'timeSync',
'_spawn@440206865.<anonymous closure @2672>',
'_spawn@440206865.<anonymous closure @2927>',
'_spawn@440206865.<anonymous closure @2672>{body}',
'apply',
'_sendOOB@1026248',
'_ensureDoneFuture@4048458',
'_closeUnchecked@4048458',
'_badEventState@4048458',
'get:_subscription@4048458',
'_close@4048458',
'_addPending@4048458',
'_ensurePendingEvents@4048458',
'_StreamImplEvents',
'_DelayedDone',
'_PendingEvents',
'schedule',
'schedule.<anonymous closure @21325>',
'_sendDone@4048458',
'_nullFuture@4048458',
'init:_nullFuture@4048458',
'_cancel@4048458',
'[email protected]',
'cancelSchedule',
'_StreamImpl',
'_ControllerStream',
'spawn{body}',
'get:platformScript',
'spawnFunction',
'_spawnCommon@1026248',
'resolvePackageUri',
'_spawnCommon@1026248.<anonymous closure @14198>',
'new [email protected]',
'new StreamController.',
'StreamController',
'[tear-off] close',
'_SyncStreamController',
'_AsyncStreamController',
'_addLicenses@406240726.<anonymous closure @4041>{body}',
'rootBundle',
'package:flutter/src/services/asset_bundle.dart',
'init:rootBundle',
'loadString',
'CachingAssetBundle',
'AssetBundle',
'loadString{body}',
'load',
'PlatformAssetBundle',
'[tear-off] _utf8decode@403177032',
'_utf8decode@403177032',
'load{body}',
'encodeFull',
'asByteData',
'_initRootBundle@403177032',
'new CachingAssetBundle.',
'_fatal@4048458',
'addStream.<anonymous closure @7703>',
'scheduleGenerator',
'[tear-off] runBody',
'runBody',
'_GeneratedStreamImpl',
'new Stream.fromIterable.<anonymous closure @9406>',
'_IterablePendingEvents',
'_add@48248793',
'_grow@48248793',
'_bubbleUp@48248793',
'[tear-off] onListen',
'[tear-off] onResume',
'[tear-off] onCancel',
'onCancel',
'onResume',
'onListen',
'_collectors@139204121',
'package:flutter/src/services/restoration.dart',
'RestorationManager',
'new RestorationManager.',
'set:onPointerDataPacket',
'[tear-off] _handlePointerDataPacket@151304576',
'_handlePointerDataPacket@151304576',
'package:flutter/src/gestures/converter.dart',
'PointerEventConverter',
'expand{body}',
'expand{body}.<anonymous closure @1938>',
'PointerAddedEvent',
'PointerHoverEvent',
'_synthesiseDownButtons@153358395',
'PointerDownEvent',
'PointerMoveEvent',
'PointerUpEvent',
'PointerCancelEvent',
'PointerRemovedEvent',
'PointerScrollEvent',
'PointerSignalEvent',
'get:_listeners@131329750',
'[tear-off-extractor] get:_handleSampleTimeChanged@151304576',
'[tear-off] _handleSampleTimeChanged@151304576',
'_handleSampleTimeChanged@151304576',
'[tear-off-extractor] get:_handlePointerEvent@151304576',
'[tear-off] _handlePointerEvent@151304576',
'handleEvent',
'sweep',
'resolve',
'_tryToResolveArena@150060655',
'_resolveInFavorOf@150060655',
'_tryToResolveArena@150060655.<anonymous closure @8110>',
'_resolveByDefault@150060655',
'insertRenderObjectChild',
'get:renderObject',
'performRebuild',
'update',
'forgetChild',
'visitChildren',
'createRenderObject',
'get:message',
'get:hashCode',
'hashValues',
'combine',
'_Jenkins',
'_HashEnd',
'getModifierSide',
'isModifierPressed',
'_isLeftRightModifierPressed@423422532',
'get:keyLabel',
'isControlCharacter',
'findKeyByKeyId',
'get:key',
'_isLeftRightModifierPressed@421244645',
'_isUnprintableKey@421244645',
'_isLeftRightModifierPressed@419349049',
'_isLeftRightModifierPressed@418177474',
'decodeEnvelope',
'PlatformException',
'encodeErrorEnvelope',
'WriteBuffer',
'new WriteBuffer.',
'putUint8',
'writeValue',
'done',
'package:typed_data/src/typed_buffer.dart',
'TypedDataBuffer',
'putFloat64',
'putInt32',
'putInt64',
'writeSize',
'putUint8List',
'putInt32List',
'putInt64List',
'putFloat64List',
'writeValue.<anonymous closure @15916>',
'_addAll@670423996',
'_insertKnownLength@670423996',
'_add@670423996',
'_grow@670423996',
'_createBiggerBuffer@670423996',
'_ensureCapacity@670423996',
'putUint16',
'putUint32',
'_eightBytesAsList@145185525',
'Uint8Buffer',
'_IntBuffer',
'new Uint8Buffer.',
'encodeSuccessEnvelope',
'decodeMethodCall',
'encodeMethodCall',
'encodeMessage',
'[tear-off-extractor] get:handlePlatformMessage',
'[tear-off] handlePlatformMessage',
'describeIdentity',
'shortHash',
'toRadixString',
'_toPow2String@0150898',
'unary-',
'_minInt64ToRadixString@0150898',
'set:value',
'SemanticsSortKey',
'doCompare',
'OrdinalSortKey',
'hashList',
'setEquals',
'package:flutter/src/foundation/collections.dart',
'_sortedListsEqual@400082469',
'[tear-off-extractor] get:hitTestMouseTrackers',
'[tear-off] hitTestMouseTrackers',
'paint',
'paintChild',
'_compositeChild@368266271',
'repaintCompositedChild',
'set:offset',
'appendLayer',
'append',
'get:parent',
'_removeChild@363518307',
'get:isRepaintBoundary',
'performLayout',
'BoxConstraints',
'Constraints',
'get:isTight',
'redepthChildren',
'debugFormatDouble',
'package:flutter/src/foundation/debug.dart',
'toStringAsFixed',
'_toStringAsFixed@0150898',
'compileChildren',
'compileChildren{body}',
'compileChildren{body}.<anonymous closure @148988>',
'get:config',
'get:abortsWalk',
'visitChildrenForSemantics',
'describeSemanticsConfiguration',
'get:alwaysNeedsCompositing',
'setupParentData',
'ParentData',
'copy',
'absorb',
'set:textDirection',
'compileChildren{body}.<anonymous closure @144879>',
'_SemanticsGeometry',
'_computeValues@368266271',
'get:dropFromTree',
'_SemanticsNode&AbstractNode&DiagnosticableTreeMixin',
'new SemanticsNode.',
'set:isMergedIntoParent',
'_ensureConfigIsWritable@368266271',
'set:elevation',
'set:rect',
'set:transform',
'set:isHidden',
'updateWith',
'compileChildren{body}.<anonymous closure @144879>.<anonymous closure @146944>',
'_kEmptyConfig@400082469',
'init:_kEmptyConfig@400082469',
'_isDifferentFromCurrentSemanticAnnotation@400082469',
'_markDirty@400082469',
'get:isMultiline',
'_replaceChildren@400082469',
'_setFlag@400082469',
'SemanticsFlag',
'matrixEquals',
'package:flutter/src/painting/matrix_utils.dart',
'MatrixUtils',
'isIdentity',
'_lastIdentifier@400082469',
'init:_lastIdentifier@400082469',
'_temporaryTransformHolder@368266271',
'init:_temporaryTransformHolder@368266271',
'intersect',
'_applyIntermediatePaintTransforms@368266271',
'isZero',
'inverseTransformRect',
'new Matrix4.copy',
'invert',
'transformRect',
'_safeTransformRect@328374251',
'_minMax@328374251',
'init:_minMax@328374251',
'_accumulate@328374251',
'copyInverse',
'setFrom',
'compileChildren{body}.<anonymous closure @141195>',
'new SemanticsNode.root',
'compileChildren{body}.<anonymous closure @141195>.<anonymous closure @141982>',
'createSession',
'addToScene',
'pushOffset',
'set:engineLayer',
'addChildrenToScene',
'addRetained',
'_addRetained@16065589',
'_pushOffset@16065589',
'OffsetEngineLayer',
'_EngineLayerWrapper',
'findAnnotations',
'_transformOffset@363518307',
'removePerspectiveTransform',
'tryInvert',
'transformPoint',
'new Vector4.',
'Vector4',
'clone',
'setRow',
'new Matrix4.translationValues',
'multiply',
'pushTransform',
'_pushTransform@16065589',
'TransformEngineLayer',
'setTranslationRaw',
'get:alwaysNeedsAddToScene',
'sub',
'hashObjects',
'package:vector_math/hash.dart',
'fold',
'_finish@672285449',
'hashObjects.<anonymous closure @338>',
'getRow',
'new Vector3.copy',
'get:target',
'whereType',
'valueToString',
'WhereTypeIterable',
'take',
'_updateInheritance@35042623',
'unmount',
'_unregister@35042623',
'deactivate',
'_HashSetIterator',
'ComponentElement',
'attachRenderObject.<anonymous closure @148496>',
'detachRenderObject',
'detachRenderObject.<anonymous closure @147898>',
'_updateSlot@35042623',
'get:renderObject.visit',
'StatelessElement',
'debugGetCreatorChain',
'package:flutter/src/rendering/error.dart',
'RenderErrorBox',
'RenderBox',
'new RenderErrorBox.',
'_objectHashCode@0150898',
'_hashCodeRnd@0150898',
'init:_hashCodeRnd@0150898',
'_getHash@0150898',
'nextInt',
'_nextState@12383281',
'_setHash@0150898',
'new Random.',
'Random',
'_nextSeed@12383281',
'_setupSeed@12383281',
'_prng@12383281',
'init:_prng@12383281',
'_initialSeed@12383281',
'LeafRenderObjectElement',
'get:width',
'get:height',
'get:tlRadius',
'get:trRadius',
'get:brRadius',
'get:blRadius',
'get:buildDuration',
'_formatMS@16065589',
'get:rasterDuration',
'get:vsyncOverhead',
'get:totalSpan',
'_rawDuration@16065589',
'FramePhase',
'TextAlign',
'FontWeight',
'FontStyle',
'TextDecoration',
'TextDecorationStyle',
'TextBaseline',
'_listEquals@16065589',
'get:name',
'ExpandIterator',
'EmptyIterator',
'elementAt',
'get:length',
'WhereIterator',
'computeUnmangledName',
'writeMap',
'writeMap.<anonymous closure @27809>',
'writeList',
'get:encoder',
'_Base64Encoder',
'encodeChunk',
'writeFinalChunk',
'arrayElement',
'propertyValue',
'safeToString',
'_stringToSafeString@0150898',
'_objectToString@0150898',
'_toString@0150898',
'getHandle',
'_setCodeUnits@7027147',
'_TypedListIterator',
'_createList@7027147',
'get:elementSizeInBytes',
'new Int16List.',
'Int16List',
'_setFloat32x4@7027147',
'[tear-off] compare',
'_setInt32x4@7027147',
'_setIndexedFloat64x2@7027147',
'_setFloat64x2@7027147',
'_getIndexedFloat64x2@7027147',
'_getFloat64x2@7027147',
'new Uint64List.',
'Uint64List',
'fillRange',
'get:offsetInBytes',
'new Uint8ClampedList.',
'Uint8ClampedList',
'new Float32x4List.',
'Float32x4List',
'new Int32x4List.',
'Int32x4List',
'listToString',
'iterableToFullString',
'_toStringVisiting@3220832',
'init:_toStringVisiting@3220832',
'_isToStringVisiting@3220832',
'writeAll',
'new Float64x2List.',
'Float64x2List',
'whenComplete',
'handleNext',
'_createSubscription@4048458',
'new _BufferingStreamSubscription@4048458.',
'_setPendingEvents@4048458',
'new [email protected]',
'_registerDataHandler@4048458',
'_registerDoneHandler@4048458',
'[tear-off] _nullDoneHandler@4048458',
'[tear-off] _nullErrorHandler@4048458',
'_nullErrorHandler@4048458',
'[tear-off] _nullDataHandler@4048458',
'[tear-off-extractor] get:add',
'[tear-off] add',
'_add@4048458',
'_DelayedData',
'_DelayedEvent',
'_sendData@4048458',
'_checkState@4048458',
'get:_mayResumeInput@4048458',
'_recordCancel@4048458',
'_AddStreamState',
'[email protected]',
'cancel.<anonymous closure @33899>',
'_addError@4048458',
'_DelayedError',
'_sendError@4048458',
'[email protected]',
'_StreamControllerAddStreamState',
'new _StreamControllerAddStreamState@4048458.',
'new _AddStreamState@4048458.',
'get:isPaused',
'_guardCallback@4048458',
'get:isClosed',
'get:hasListener',
'set:onCancel',
'set:onResume',
'set:onListen',
'set:next',
'createTimer',
'_createTimer@4048458',
'_createTimer@4048458.<anonymous closure @620>',
'errorCallback',
'registerBinaryCallback',
'registerUnaryCallback',
'registerCallback',
'runBinary',
'_rootRunBinary@4048458',
'_enter@4048458',
'runUnary',
'_rootRunUnary@4048458',
'_rootRun@4048458',
'fork',
'_rootFork@4048458',
'_rootMap@4048458',
'init:_rootMap@4048458',
'new ZoneSpecification.from',
'ZoneSpecification',
'new HashMap.from',
'_CustomZone',
'new _CustomZone@4048458.',
'[tear-off] _printToZone@4048458',
'_printToZone@4048458',
'_ZoneFunction',
'_RunNullaryZoneFunction',
'[tear-off] _rootRun@4048458',
'_RunUnaryZoneFunction',
'[tear-off] _rootRunUnary@4048458',
'_RunBinaryZoneFunction',
'[tear-off] _rootRunBinary@4048458',
'_RegisterNullaryZoneFunction',
'[tear-off] _rootRegisterCallback@4048458',
'_RegisterUnaryZoneFunction',
'[tear-off] _rootRegisterUnaryCallback@4048458',
'_RegisterBinaryZoneFunction',
'[tear-off] _rootRegisterBinaryCallback@4048458',
'[tear-off] _rootErrorCallback@4048458',
'[tear-off] _rootScheduleMicrotask@4048458',
'[tear-off] _rootCreateTimer@4048458',
'[tear-off] _rootCreatePeriodicTimer@4048458',
'[tear-off] _rootPrint@4048458',
'[tear-off] _rootFork@4048458',
'[tear-off] _rootHandleUncaughtError@4048458',
'_rootHandleUncaughtError@4048458',
'_schedulePriorityAsyncCallback@4048458',
'_rootHandleUncaughtError@4048458.<anonymous closure @44420>',
'_rethrow@4048458',
'_rootPrint@4048458',
'_rootCreatePeriodicTimer@4048458',
'_createPeriodicTimer@4048458',
'_rootCreateTimer@4048458',
'new HashMap.from.<anonymous closure @4594>',
'bindCallbackGuarded',
'bindCallbackGuarded.<anonymous closure @51803>',
'runGuarded',
'bindCallback',
'bindCallback.<anonymous closure @51429>',
'runUnaryGuarded',
'get:errorZone',
'get:_handleUncaughtError@4048458',
'get:_scheduleMicrotask@4048458',
'get:stackTrace',
'get:future',
'_regenerateIndex@3220832',
'_LinkedListIterator',
'_ListQueueIterator',
'_remove@3220832',
'mapToString',
'mapToString.<anonymous closure @1273>',
'_isModifiedSince@3220832',
'get:_checkSum@3220832',
'getRange',
'_removeEntry@3220832',
'_get_hashcode@1026248',
'_equals@1026248',
'get:_identityHashCode@0150898',
'_FixedSizeArrayIterator',
'_SyncIterator',
'_negativeToString@0150898',
'_positiveBase10Length@0150898',
'_negativeBase10Length@0150898',
'toLowerCase',
'toUpperCase',
'split',
'_substringUncheckedNative@0150898',
'indexOf',
'_setValue@0150898',
'_getValue@0150898',
'_getKey@0150898',
'_splitWithCharCode@0150898',
'_sliceInternal@0150898',
'_cacheEvictIndex@0150898',
'init:_cacheEvictIndex@0150898',
'toDouble',
'get:isFinite',
'_greaterThanFromInteger@0150898',
'_subFromInteger@0150898',
'_equalToInteger@0150898',
'iterableToShortString',
'_iterablePartsToStrings@3220832',
'new SkipIterable.',
'SkipIterable',
'new EfficientLengthSkipIterable.',
'EfficientLengthSkipIterable',
'_checkCount@11040228',
'_bitAndFromInteger@0150898',
'get:_messageString@0150898',
'get:call',
'_computeHash@0150898',
'resolveUri',
'_toNonSimple@0150898',
'get:scheme',
'get:userInfo',
'get:host',
'get:port',
'get:path',
'get:query',
'get:fragment',
'get:_isHttp@0150898',
'get:_isHttps@0150898',
'_computeScheme@0150898',
'get:_isFile@0150898',
'get:_isPackage@0150898',
'isScheme',
'_compareScheme@0150898',
'_text@0150898',
'init:_text@0150898',
'_initializeText@0150898',
'_writeAuthority@0150898',
'_mergePaths@0150898',
'get:hasAbsolutePath',
'get:hasScheme',
'hashCode',
'init:hashCode',
'get:memberName',
'get:typeArguments',
'get:positionalArguments',
'get:namedArguments',
'_existingMethodSignature@0150898',
'writeln',
'_toStringPlain@0150898',
'toString.<anonymous closure @10071>',
'_setMemberNameAndType@0150898',
'_symbolToString@0150898',
'get:isAccessor',
'get:isGetter',
'get:_typeArgsLen@0150898',
'new Map.unmodifiable',
'UnmodifiableMapView',
'_UnmodifiableMapView&MapView&_UnmodifiableMapMixin',
'MapView',
'new _ImmutableList@0150898._from@0150898',
'toStringShort',
'get:hasFocus',
'get:hasPrimaryFocus',
'removeRenderObjectChild',
'moveRenderObjectChild',
'updateRenderObject',
'logicalKey',
'numpadKey',
'_SemanticsDiagnosticableNode',
'[tear-off] redepthChild',
'get:semanticBounds',
'applyPaintTransform',
'[tear-off-extractor] get:showOnScreen',
'[tear-off] showOnScreen',
'showOnScreen',
'package:flutter/src/animation/curves.dart',
'Cubic',
'Curve',
'ParametricCurve',
'assembleSemanticsNode',
'describeApproximatePaintClip',
'get:sizedByParent',
'get:debugDescription',
'backgroundColor',
'init:backgroundColor',
'padding',
'init:padding',
'minimumWidth',
'init:minimumWidth',
'_startRecording@368266271',
'set:color',
'drawRect',
'get:canvas',
'package:flutter/src/painting/edge_insets.dart',
'EdgeInsets',
'EdgeInsetsGeometry',
'performResize',
'get:constraints',
'constrain',
'set:size',
'constrainWidth',
'constrainHeight',
'clamp',
'toString.describe',
'BoxHitTestEntry',
'get:smallest',
'BoxParentData',
'new Vector4.copy',
'putIfAbsent',
'GestureArenaEntry',
'add.<anonymous closure @3573>',
'_GestureArena',
'performRebuild.<anonymous closure @194119>',
'performRebuild.<anonymous closure @194776>',
'performRebuild.<anonymous closure @194776>{body}',
'performRebuild.<anonymous closure @194776>{body}.<anonymous closure @194776>',
'performRebuild.<anonymous closure @194119>{body}',
'performRebuild.<anonymous closure @194119>{body}.<anonymous closure @194119>',
'didChangeDependencies',
'didUnmountRenderObject',
'WhereTypeIterator',
'SkipIterator',
'[tear-off-extractor] get:_close@4048458',
'[tear-off] _close@4048458',
'[tear-off-extractor] get:_addError@4048458',
'[tear-off] _addError@4048458',
'[tear-off-extractor] get:_add@4048458',
'[tear-off] _add@4048458',
'_recordResume@4048458',
'resume',
'_runGuarded@4048458',
'_decrementPauseCount@4048458',
'[tear-off] _onResume@4048458',
'_ControllerSubscription',
'_BroadcastSubscription',
'_onResume@4048458',
'_recordPause@4048458',
'_subscribe@4048458',
'get:_pendingEvents@4048458',
'_subscribe@4048458.<anonymous closure @27059>',
'get:next',
'perform',
'print',
'bindUnaryCallback',
'bindUnaryCallback.<anonymous closure @51531>',
'runBinaryGuarded',
'[tear-off-extractor] get:_onPause@4048458',
'[tear-off] _onPause@4048458',
'bindCallbackGuarded.<anonymous closure @38738>',
'bindUnaryCallback.<anonymous closure @38375>',
'bindCallback.<anonymous closure @38220>',
'_HashMapKeyIterable',
'_HashMapIterable',
'_checkModification@3220832',
'_bitAndFromSmi@0150898',
'padLeft',
'get:_errorExplanation@0150898',
'_ImmutableMapKeyIterable',
'_addFromInteger@0150898',
'_AllMatchesIterable',
'get:hasFragment',
'get:hasQuery',
'get:hasAuthority',
'addPicture',
'_addPicture@16065589',
'hitTestSelf',
'hitTestChildren',
'_MixedEdgeInsets',
'toString.<anonymous closure @2612>',
'_firstBuild@35042623',
'_onPause@4048458',
'forEach.<anonymous closure @13262>',
'_HashMapKeyIterator',
'_HashMapIterator',
'_AllMatchesIterator',
'_ImmutableMapKeyIterator',
'get:_left@317303931',
'new ThemeData.',
'package:flutter/src/material/theme_data.dart',
'ThemeData',
'package:flutter/src/material/app.dart',
'MaterialApp',
'StatefulWidget',
'package:flutter/src/material/colors.dart',
'MaterialColor',
'package:flutter/src/painting/colors.dart',
'ColorSwatch',
'MyHomePage',
'ThemeMode',
'estimateBrightnessForColor',
'new ColorScheme.fromSwatch',
'package:flutter/src/material/color_scheme.dart',
'ColorScheme',
'new Typography.material2014',
'package:flutter/src/material/typography.dart',
'Typography',
'withOpacity',
'package:flutter/src/material/button_theme.dart',
'ButtonThemeData',
'new ChipThemeData.fromDefaults',
'package:flutter/src/material/chip_theme.dart',
'ChipThemeData',
'MaterialAccentColor',
'package:flutter/src/widgets/icon_theme_data.dart',
'IconThemeData',
'ButtonTextTheme',
'ButtonBarLayoutBehavior',
'MaterialTapTargetSize',
'VisualDensity',
'package:flutter/src/material/ink_splash.dart',
'_InkSplashFactory',
'package:flutter/src/material/ink_well.dart',
'InteractiveInkFeatureFactory',
'package:flutter/src/material/toggle_buttons_theme.dart',
'ToggleButtonsThemeData',
'package:flutter/src/material/input_decorator.dart',
'InputDecorationTheme',
'FloatingLabelBehavior',
'package:flutter/src/material/slider_theme.dart',
'SliderThemeData',
'package:flutter/src/material/tab_bar_theme.dart',
'TabBarTheme',
'package:flutter/src/material/tooltip_theme.dart',
'TooltipThemeData',
'package:flutter/src/material/card_theme.dart',
'CardTheme',
'package:flutter/src/material/page_transitions_theme.dart',
'PageTransitionsTheme',
'package:flutter/src/material/app_bar_theme.dart',
'AppBarTheme',
'package:flutter/src/material/bottom_app_bar_theme.dart',
'BottomAppBarTheme',
'package:flutter/src/material/dialog_theme.dart',
'DialogTheme',
'package:flutter/src/material/floating_action_button_theme.dart',
'FloatingActionButtonThemeData',
'package:flutter/src/material/navigation_rail_theme.dart',
'NavigationRailThemeData',
'package:flutter/src/material/snack_bar_theme.dart',
'SnackBarThemeData',
'package:flutter/src/material/bottom_sheet_theme.dart',
'BottomSheetThemeData',
'package:flutter/src/material/popup_menu_theme.dart',
'PopupMenuThemeData',
'package:flutter/src/material/banner_theme.dart',
'MaterialBannerThemeData',
'package:flutter/src/material/divider_theme.dart',
'DividerThemeData',
'package:flutter/src/material/button_bar_theme.dart',
'ButtonBarThemeData',
'package:flutter/src/material/bottom_navigation_bar_theme.dart',
'BottomNavigationBarThemeData',
'package:flutter/src/material/time_picker_theme.dart',
'TimePickerThemeData',
'package:flutter/src/material/text_button_theme.dart',
'TextButtonThemeData',
'package:flutter/src/material/elevated_button_theme.dart',
'ElevatedButtonThemeData',
'package:flutter/src/material/outlined_button_theme.dart',
'OutlinedButtonThemeData',
'package:flutter/src/material/text_selection_theme.dart',
'TextSelectionThemeData',
'withAlpha',
'copyWith',
'package:flutter/src/painting/text_style.dart',
'package:flutter/src/painting/stadium_border.dart',
'StadiumBorder',
'package:flutter/src/painting/borders.dart',
'OutlinedBorder',
'ShapeBorder',
'BorderSide',
'BorderStyle',
'get:red',
'get:green',
'get:blue',
'new Typography._withPlatform@297382893',
'package:flutter/src/material/text_theme.dart',
'TextTheme',
'_brightnessFor@202049969',
'computeLuminance',
'get:isUnicode',
'get:opacity',
'listEquals',
'mapEquals',
'_all@252490068',
'FadeUpwardsPageTransitionsBuilder',
'PageTransitionsBuilder',
'CupertinoPageTransitionsBuilder',
'_all@252490068.<anonymous closure @20856>',
'package:flutter/src/painting/rounded_rectangle_border.dart',
'RoundedRectangleBorder',
'package:flutter/src/painting/border_radius.dart',
'BorderRadius',
'BorderRadiusGeometry',
'StatefulElement',
'new StatefulElement.',
'_MixedBorderRadius',
'createState',
'_MaterialAppState',
'State',
'_debugSetAllowIgnoredCallsToMarkNeedsBuild@35042623',
'_MyHomePageState',
'get:_topLeft@304070249',
'_buildWidgetApp@176125171',
'package:flutter/src/widgets/navigator.dart',
'HeroControllerScope',
'InheritedWidget',
'ProxyWidget',
'_MaterialScrollBehavior',
'package:flutter/src/widgets/scroll_configuration.dart',
'ScrollBehavior',
'ScrollConfiguration',
'get:_usesRouter@176125171',
'get:_localizationsDelegates@176125171',
'package:flutter/src/widgets/app.dart',
'WidgetsApp',
'new WidgetsApp.router',
'new WidgetsApp.',
'[tear-off] _materialBuilder@176125171',
'[tear-off] _inspectorSelectButtonBuilder@176125171',
'_buildWidgetApp@176125171.<anonymous closure @29228>',
'package:flutter/src/material/page.dart',
'MaterialPageRoute',
'_MaterialPageRoute&PageRoute&MaterialRouteTransitionMixin',
'package:flutter/src/widgets/pages.dart',
'PageRoute',
'package:flutter/src/widgets/routes.dart',
'ModalRoute',
'_ModalRoute&TransitionRoute&LocalHistoryRoute',
'TransitionRoute',
'OverlayRoute',
'Route',
'new ModalRoute.',
'new GlobalKey.',
'package:flutter/src/widgets/page_storage.dart',
'PageStorageBucket',
'new TransitionRoute.',
'package:flutter/src/animation/animations.dart',
'ProxyAnimation',
'_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin',
'_ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin',
'_ProxyAnimation&Animation&AnimationLazyListenerMixin',
'package:flutter/src/animation/animation.dart',
'Animation',
'new ProxyAnimation.',
'new Route.',
'_AlwaysDismissedAnimation',
'RouteSettings',
'new _ProxyAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@85411118.',
'AnimationStatus',
'LabeledGlobalKey',
'_inspectorSelectButtonBuilder@176125171',
'package:flutter/src/material/floating_action_button.dart',
'FloatingActionButton',
'package:flutter/src/widgets/icon.dart',
'Icon',
'package:flutter/src/widgets/icon_data.dart',
'IconData',
'_DefaultHeroTag',
'Clip',
'_materialBuilder@176125171',
'platformBrightnessOf',
'package:flutter/src/widgets/media_query.dart',
'MediaQuery',
'highContrastOf',
'package:flutter/src/material/theme.dart',
'AnimatedTheme',
'package:flutter/src/widgets/implicit_animations.dart',
'ImplicitlyAnimatedWidget',
'_Linear',
'of',
'dependOnInheritedWidgetOfExactType',
'RootBackButtonDispatcher',
'_RootBackButtonDispatcher&BackButtonDispatcher&WidgetsBindingObserver',
'BackButtonDispatcher',
'_CallbackHookProvider',
'new _CallbackHookProvider@482049130.',
'get:_localizationsDelegates@176125171{body}',
'get:_localizationsDelegates@176125171{body}.<anonymous closure @24934>',
'package:flutter/src/material/material_localizations.dart',
'_MaterialLocalizationsDelegate',
'package:flutter/src/widgets/localizations.dart',
'LocalizationsDelegate',
'package:flutter/src/cupertino/localizations.dart',
'_CupertinoLocalizationsDelegate',
'initState',
'createMaterialHeroController',
'package:flutter/src/widgets/heroes.dart',
'HeroController',
'NavigatorObserver',
'createMaterialHeroController.<anonymous closure @23333>',
'package:flutter/src/material/arc.dart',
'MaterialRectArcTween',
'package:flutter/src/animation/tween.dart',
'RectTween',
'Tween',
'Animatable',
'didUpdateWidget',
'package:flutter/src/widgets/text.dart',
'Text',
'package:flutter/src/material/app_bar.dart',
'AppBar',
'new AppBar.',
'package:flutter/src/material/text_field.dart',
'TextField',
'package:flutter/src/material/raised_button.dart',
'ElevatedButton',
'package:flutter/src/material/material_button.dart',
'MaterialButton',
'package:flutter/src/material/text_button.dart',
'TextButton',
'package:flutter/src/material/button_style_button.dart',
'ButtonStyleButton',
'package:flutter/src/widgets/basic.dart',
'Column',
'Flex',
'MultiChildRenderObjectWidget',
'new Column.',
'Padding',
'SingleChildRenderObjectWidget',
'package:flutter/src/material/scaffold.dart',
'Scaffold',
'InputDecoration',
'package:flutter/src/services/text_input.dart',
'TextCapitalization',
'BoxHeightStyle',
'BoxWidthStyle',
'package:flutter/src/gestures/recognizer.dart',
'DragStartBehavior',
'SmartDashesType',
'SmartQuotesType',
'TextInputType',
'package:flutter/src/widgets/editable_text.dart',
'ToolbarOptions',
'build.<anonymous closure @1498>',
'build.<anonymous closure @1885>',
'package:flutter/src/rendering/flex.dart',
'MainAxisAlignment',
'TextEditingController',
'setState',
'build.<anonymous closure @1885>.<anonymous closure @1970>',
'TextEditingValue',
'package:flutter/src/services/text_editing.dart',
'TextSelection',
'TextRange',
'TextAffinity',
'ValueNotifier',
'build.<anonymous closure @1498>.<anonymous closure @1532>',
'get:text',
'encryptText',
'new Uint8List.fromList',
'package:encrypt/encrypt.dart',
'Encrypted',
'IV',
'AES',
'new AES.',
'Encrypter',
'encrypt',
'get:base64',
'AESMode',
'encryptBytes',
'_buildParams@33180997',
'process',
'package:pointycastle/src/impl/base_stream_cipher.dart',
'BaseStreamCipher',
'_feedCounterIfNeeded@581045914',
'package:pointycastle/stream/sic.dart',
'SICStreamCipher',
'_feedCounter@581045914',
'_incrementCounter@581045914',
'_paddedParams@33180997',
'package:pointycastle/api.dart',
'KeyParameter',
'CipherParameters',
'ParametersWithIV',
'PaddedBlockCipherParameters',
'new PaddedBlockCipher.',
'PaddedBlockCipher',
'registry',
'package:pointycastle/src/registry/registry.dart',
'init:registry',
'create',
'_RegistryImpl',
'getConstructor',
'_createConstructor@562301108',
'_checkInit@562301108',
'firstMatch',
'RegistryFactoryException',
'new RegistryFactoryException.unknown',
'_initialize@562301108',
'registerFactories',
'package:pointycastle/src/registry/registration.dart',
'_registerAsymmetricCiphers@669106361',
'_registerBlockCiphers@669106361',
'_registerDigests@669106361',
'_registerECCurves@669106361',
'_registerKeyDerivators@669106361',
'_registerKeyGenerators@669106361',
'_registerMacs@669106361',
'_registerPaddedBlockCiphers@669106361',
'_registerPaddings@669106361',
'_registerRandoms@669106361',
'_registerSigners@669106361',
'_registerStreamCiphers@669106361',
'FACTORY_CONFIG',
'package:pointycastle/stream/ctr.dart',
'CTRStreamCipher',
'init:FACTORY_CONFIG',
'package:pointycastle/stream/salsa20.dart',
'Salsa20Engine',
'register',
'_addStaticFactoryConfig@562301108',
'_addDynamicFactoryConfig@562301108',
'_addDynamicFactoryConfig@562301108.<anonymous closure @5309>',
'_addStaticFactoryConfig@562301108.<anonymous closure @5069>',
'DynamicFactoryConfig',
'FactoryConfig',
'new DynamicFactoryConfig.suffix',
'init:FACTORY_CONFIG.<anonymous closure @1108>',
'init:FACTORY_CONFIG.<anonymous closure @1108>.<anonymous closure @1134>',
'new BlockCipher.',
'BlockCipher',
'new SICStreamCipher.',
'_escapeRegExp@562301108',
'_specialRegExpChars@562301108',
'init:_specialRegExpChars@562301108',
'splitMapJoin',
'_escapeRegExp@562301108.<anonymous closure @1450>',
'_escapeRegExp@562301108.<anonymous closure @1494>',
'_splitMapJoinEmptyString@0150898',
'[tear-off] _matchString@0150898',
'[tear-off] _stringIdentity@0150898',
'_matchString@0150898',
'StaticFactoryConfig',
'init:FACTORY_CONFIG.<anonymous closure @693>',
'new Salsa20Engine.',
'init:FACTORY_CONFIG.<anonymous closure @618>',
'init:FACTORY_CONFIG.<anonymous closure @618>.<anonymous closure @644>',
'package:pointycastle/signers/ecdsa_signer.dart',
'ECDSASigner',
'package:pointycastle/signers/rsa_signer.dart',
'RSASigner',
'init:FACTORY_CONFIG.<anonymous closure @789>',
'_DIGEST_IDENTIFIER_HEXES@662060559',
'init:_DIGEST_IDENTIFIER_HEXES@662060559',
'init:FACTORY_CONFIG.<anonymous closure @789>.<anonymous closure @1096>',
'new Digest.',
'Digest',
'package:pointycastle/asymmetric/pkcs1.dart',
'PKCS1Encoding',
'package:pointycastle/src/impl/base_asymmetric_block_cipher.dart',
'BaseAsymmetricBlockCipher',
'_hexStringToBytes@662060559',
'init:FACTORY_CONFIG.<anonymous closure @741>',
'init:FACTORY_CONFIG.<anonymous closure @741>.<anonymous closure @872>',
'new Mac.',
'Mac',
'package:pointycastle/random/auto_seed_block_ctr_random.dart',
'AutoSeedBlockCtrRandom',
'package:pointycastle/random/block_ctr_random.dart',
'BlockCtrRandom',
'package:pointycastle/random/fortuna_random.dart',
'FortunaRandom',
'init:FACTORY_CONFIG.<anonymous closure @706>',
'new FortunaRandom.',
'package:pointycastle/block/aes_fast.dart',
'AESFastEngine',
'package:pointycastle/src/impl/base_block_cipher.dart',
'BaseBlockCipher',
'package:pointycastle/src/impl/secure_random_base.dart',
'SecureRandomBase',
'new BlockCtrRandom.',
'init:FACTORY_CONFIG.<anonymous closure @825>',
'init:FACTORY_CONFIG.<anonymous closure @825>.<anonymous closure @851>',
'init:FACTORY_CONFIG.<anonymous closure @980>',
'init:FACTORY_CONFIG.<anonymous closure @980>.<anonymous closure @1006>',
'package:pointycastle/paddings/pkcs7.dart',
'PKCS7Padding',
'package:pointycastle/paddings/iso7816d4.dart',
'ISO7816d4Padding',
'init:FACTORY_CONFIG.<anonymous closure @717>',
'package:pointycastle/src/impl/base_padding.dart',
'BasePadding',
'init:FACTORY_CONFIG.<anonymous closure @643>',
'package:pointycastle/padded_block_cipher/padded_block_cipher_impl.dart',
'PaddedBlockCipherImpl',
'init:FACTORY_CONFIG.<anonymous closure @657>',
'init:FACTORY_CONFIG.<anonymous closure @657>.<anonymous closure @683>',
'new Padding.',
'package:pointycastle/macs/hmac.dart',
'HMac',
'package:pointycastle/macs/cmac.dart',
'CMac',
'package:pointycastle/macs/cbc_block_cipher_mac.dart',
'CBCBlockCipherMac',
'init:FACTORY_CONFIG.<anonymous closure @792>',
'init:FACTORY_CONFIG.<anonymous closure @792>.<anonymous closure @818>',
'package:pointycastle/src/impl/base_mac.dart',
'BaseMac',
'new CBCBlockCipherMac.fromCipherAndPadding',
'new CBCBlockCipherMac.',
'package:pointycastle/block/modes/cbc.dart',
'CBCBlockCipher',
'new CBCBlockCipher.',
'init:FACTORY_CONFIG.<anonymous closure @1396>',
'init:FACTORY_CONFIG.<anonymous closure @1396>.<anonymous closure @1422>',
'new CMac.fromCipher',
'new CMac.',
'lookupPoly',
'init:FACTORY_CONFIG.<anonymous closure @609>',
'_DIGEST_BLOCK_LENGTH@653404795',
'init:_DIGEST_BLOCK_LENGTH@653404795',
'init:FACTORY_CONFIG.<anonymous closure @609>.<anonymous closure @892>',
'new HMac.',
'package:pointycastle/key_generators/ec_key_generator.dart',
'ECKeyGenerator',
'package:pointycastle/key_generators/rsa_key_generator.dart',
'RSAKeyGenerator',
'init:FACTORY_CONFIG.<anonymous closure @671>',
'init:FACTORY_CONFIG.<anonymous closure @638>',
'package:pointycastle/key_derivators/pbkdf2.dart',
'PBKDF2KeyDerivator',
'package:pointycastle/key_derivators/scrypt.dart',
'Scrypt',
'init:FACTORY_CONFIG.<anonymous closure @1182>',
'package:pointycastle/src/impl/base_key_derivator.dart',
'BaseKeyDerivator',
'init:FACTORY_CONFIG.<anonymous closure @961>',
'init:FACTORY_CONFIG.<anonymous closure @961>.<anonymous closure @987>',
'package:pointycastle/ecc/curves/brainpoolp160r1.dart',
'ECCurve_brainpoolp160r1',
'package:pointycastle/ecc/curves/brainpoolp160t1.dart',
'ECCurve_brainpoolp160t1',
'package:pointycastle/ecc/curves/brainpoolp192r1.dart',
'ECCurve_brainpoolp192r1',
'package:pointycastle/ecc/curves/brainpoolp192t1.dart',
'ECCurve_brainpoolp192t1',
'package:pointycastle/ecc/curves/brainpoolp224r1.dart',
'ECCurve_brainpoolp224r1',
'package:pointycastle/ecc/curves/brainpoolp224t1.dart',
'ECCurve_brainpoolp224t1',
'package:pointycastle/ecc/curves/brainpoolp256r1.dart',
'ECCurve_brainpoolp256r1',
'package:pointycastle/ecc/curves/brainpoolp256t1.dart',
'ECCurve_brainpoolp256t1',
'package:pointycastle/ecc/curves/brainpoolp320r1.dart',
'ECCurve_brainpoolp320r1',
'package:pointycastle/ecc/curves/brainpoolp320t1.dart',
'ECCurve_brainpoolp320t1',
'package:pointycastle/ecc/curves/brainpoolp384r1.dart',
'ECCurve_brainpoolp384r1',
'package:pointycastle/ecc/curves/brainpoolp384t1.dart',
'ECCurve_brainpoolp384t1',
'package:pointycastle/ecc/curves/brainpoolp512r1.dart',
'ECCurve_brainpoolp512r1',
'package:pointycastle/ecc/curves/brainpoolp512t1.dart',
'ECCurve_brainpoolp512t1',
'package:pointycastle/ecc/curves/gostr3410_2001_cryptopro_a.dart',
'ECCurve_gostr3410_2001_cryptopro_a',
'package:pointycastle/ecc/curves/gostr3410_2001_cryptopro_b.dart',
'ECCurve_gostr3410_2001_cryptopro_b',
'package:pointycastle/ecc/curves/gostr3410_2001_cryptopro_c.dart',
'ECCurve_gostr3410_2001_cryptopro_c',
'package:pointycastle/ecc/curves/gostr3410_2001_cryptopro_xcha.dart',
'ECCurve_gostr3410_2001_cryptopro_xcha',
'package:pointycastle/ecc/curves/gostr3410_2001_cryptopro_xchb.dart',
'ECCurve_gostr3410_2001_cryptopro_xchb',
'package:pointycastle/ecc/curves/prime192v1.dart',
'ECCurve_prime192v1',
'package:pointycastle/ecc/curves/prime192v2.dart',
'ECCurve_prime192v2',
'package:pointycastle/ecc/curves/prime192v3.dart',
'ECCurve_prime192v3',
'package:pointycastle/ecc/curves/prime239v1.dart',
'ECCurve_prime239v1',
'package:pointycastle/ecc/curves/prime239v2.dart',
'ECCurve_prime239v2',
'package:pointycastle/ecc/curves/prime239v3.dart',
'ECCurve_prime239v3',
'package:pointycastle/ecc/curves/prime256v1.dart',
'ECCurve_prime256v1',
'package:pointycastle/ecc/curves/secp112r1.dart',
'ECCurve_secp112r1',
'package:pointycastle/ecc/curves/secp112r2.dart',
'ECCurve_secp112r2',
'package:pointycastle/ecc/curves/secp128r1.dart',
'ECCurve_secp128r1',
'package:pointycastle/ecc/curves/secp128r2.dart',
'ECCurve_secp128r2',
'package:pointycastle/ecc/curves/secp160k1.dart',
'ECCurve_secp160k1',
'package:pointycastle/ecc/curves/secp160r1.dart',
'ECCurve_secp160r1',
'package:pointycastle/ecc/curves/secp160r2.dart',
'ECCurve_secp160r2',
'package:pointycastle/ecc/curves/secp192k1.dart',
'ECCurve_secp192k1',
'package:pointycastle/ecc/curves/secp192r1.dart',
'ECCurve_secp192r1',
'package:pointycastle/ecc/curves/secp224k1.dart',
'ECCurve_secp224k1',
'package:pointycastle/ecc/curves/secp224r1.dart',
'ECCurve_secp224r1',
'package:pointycastle/ecc/curves/secp256k1.dart',
'ECCurve_secp256k1',
'package:pointycastle/ecc/curves/secp256r1.dart',
'ECCurve_secp256r1',
'package:pointycastle/ecc/curves/secp384r1.dart',
'ECCurve_secp384r1',
'package:pointycastle/ecc/curves/secp521r1.dart',
'ECCurve_secp521r1',
'init:FACTORY_CONFIG.<anonymous closure @624>',
'new ECCurve_secp521r1.',
'BigInt',
'constructFpStandardCurve',
'package:pointycastle/src/ec_standard_curve_constructor.dart',
'[tear-off] _make@644117017',
'_make@644117017',
'package:pointycastle/ecc/ecc_base.dart',
'ECDomainParametersImpl',
'new ECCurve_secp521r1._super@644117017',
'one',
'_BigIntImpl',
'init:one',
'new _BigIntImpl@0150898._fromInt@0150898',
'new _BigIntImpl@0150898._@0150898',
'package:pointycastle/ecc/ecc_fp.dart',
'ECCurve',
'ECCurveBase',
'new ECCurve.',
'encodeBigInt',
'package:pointycastle/src/utils.dart',
'decodePoint',
'[invoke-field] dyn:call (7)',
'get:fieldSize',
'_fromArray@603249982',
'decompressPoint',
'createPoint',
'fromBigInteger',
'ECPoint',
'ECPointBase',
'new ECPoint.',
'[tear-off] _WNafMultiplier@645069709',
'_WNafMultiplier@645069709',
'_WNafPreCompInfo',
'twice',
'setAll',
'_windowNaf@645069709',
'set:preCompInfo',
'ECFieldElement',
'%',
'ECFieldElementBase',
'new ECFieldElement.',
'>=',
'_ensureSystemBigInt@0150898',
'_absCompare@0150898',
'_compareDigits@0150898',
'_rem@0150898',
'_absAddSetSign@0150898',
'_absSubSetSign@0150898',
'zero',
'init:zero',
'_absSub@0150898',
'_absAdd@0150898',
'_lastQuoRemDigits@0150898',
'_lastRemUsed@0150898',
'_lastRem_nsh@0150898',
'_divRem@0150898',
'_cloneDigits@0150898',
'>>',
'_minusOne@0150898',
'init:_minusOne@0150898',
'_drShift@0150898',
'_rsh@0150898',
'_lastDividendUsed@0150898',
'_lastDivisorUsed@0150898',
'_lastDividendDigits@0150898',
'_lastDivisorDigits@0150898',
'_lastQuoRemUsed@0150898',
'_newDigits@0150898',
'_lShiftDigits@0150898',
'_dlShiftDigits@0150898',
'_estimateQuotientDigit@0150898',
'_mulAdd@0150898',
'_lsh@0150898',
'new BigInt.from',
'<<',
'get:zero',
'new [email protected]',
'two',
'init:two',
'_absOrSetSign@0150898',
'_absAndSetSign@0150898',
'_absAndNotSetSign@0150898',
'_dlShift@0150898',
'square',
'get:two',
'modPow',
'get:isEven',
'abs',
'new _BigIntClassicReduction@0150898.',
'_BigIntClassicReduction',
'new _BigIntMontgomeryReduction@0150898.',
'_BigIntMontgomeryReduction',
'_setIndexed@0150898',
'_convert@0150898',
'_sqr@0150898',
'_mulDigits@0150898',
'_reduce@0150898',
'_sqrDigits@0150898',
'_revert@0150898',
'_sqrAdd@0150898',
'_mulMod@0150898',
'_drShiftDigits@0150898',
'modInverse',
'_binaryGcd@0150898',
'_max@0150898',
'~',
'sqrt',
'_testBit@645069709',
'new SecureRandom.',
'SecureRandom',
'_lucasSequence@645069709',
'_lbit@645069709',
'decodeBigInt',
'_byteMask@570469613',
'init:_byteMask@570469613',
'new ECCurveBase.',
'_tryParse@0150898',
'_parseRE@0150898',
'init:_parseRE@0150898',
'_parseHex@0150898',
'new ECCurve_secp384r1.',
'[tear-off] _make@643249435',
'_make@643249435',
'new ECCurve_secp384r1._super@643249435',
'new ECCurve_secp256r1.',
'[tear-off] _make@642493561',
'_make@642493561',
'new ECCurve_secp256r1._super@642493561',
'new ECCurve_secp256k1.',
'[tear-off] _make@641069956',
'_make@641069956',
'new ECCurve_secp256k1._super@641069956',
'new ECCurve_secp224r1.',
'[tear-off] _make@640309820',
'_make@640309820',
'new ECCurve_secp224r1._super@640309820',
'new ECCurve_secp224k1.',
'[tear-off] _make@639009234',
'_make@639009234',
'new ECCurve_secp224k1._super@639009234',
'new ECCurve_secp192r1.',
'[tear-off] _make@638226699',
'_make@638226699',
'new ECCurve_secp192r1._super@638226699',
'new ECCurve_secp192k1.',
'[tear-off] _make@637159089',
'_make@637159089',
'new ECCurve_secp192k1._super@637159089',
'new ECCurve_secp160r2.',
'[tear-off] _make@636166658',
'_make@636166658',
'new ECCurve_secp160r2._super@636166658',
'new ECCurve_secp160r1.',
'[tear-off] _make@635308126',
'_make@635308126',
'new ECCurve_secp160r1._super@635308126',
'new ECCurve_secp160k1.',
'[tear-off] _make@634280080',
'_make@634280080',
'new ECCurve_secp160k1._super@634280080',
'new ECCurve_secp128r2.',
'[tear-off] _make@633417788',
'_make@633417788',
'new ECCurve_secp128r2._super@633417788',
'new ECCurve_secp128r1.',
'[tear-off] _make@632377861',
'_make@632377861',
'new ECCurve_secp128r1._super@632377861',
'new ECCurve_secp112r2.',
'[tear-off] _make@631397283',
'_make@631397283',
'new ECCurve_secp112r2._super@631397283',
'new ECCurve_secp112r1.',
'[tear-off] _make@630485455',
'_make@630485455',
'new ECCurve_secp112r1._super@630485455',
'init:FACTORY_CONFIG.<anonymous closure @627>',
'new ECCurve_prime256v1.',
'[tear-off] _make@629383858',
'_make@629383858',
'new ECCurve_prime256v1._super@629383858',
'new ECCurve_prime239v3.',
'[tear-off] _make@628315396',
'_make@628315396',
'new ECCurve_prime239v3._super@628315396',
'new ECCurve_prime239v2.',
'[tear-off] _make@627456944',
'_make@627456944',
'new ECCurve_prime239v2._super@627456944',
'new ECCurve_prime239v1.',
'[tear-off] _make@626209703',
'_make@626209703',
'new ECCurve_prime239v1._super@626209703',
'new ECCurve_prime192v3.',
'[tear-off] _make@625166994',
'_make@625166994',
'new ECCurve_prime192v3._super@625166994',
'new ECCurve_prime192v2.',
'[tear-off] _make@624358284',
'_make@624358284',
'new ECCurve_prime192v2._super@624358284',
'new ECCurve_prime192v1.',
'[tear-off] _make@623050614',
'_make@623050614',
'new ECCurve_prime192v1._super@623050614',
'init:FACTORY_CONFIG.<anonymous closure @696>',
'new ECCurve_gostr3410_2001_cryptopro_xchb.',
'[tear-off] _make@622510465',
'_make@622510465',
'new ECCurve_gostr3410_2001_cryptopro_xchb._super@622510465',
'new ECCurve_gostr3410_2001_cryptopro_xcha.',
'[tear-off] _make@621493575',
'_make@621493575',
'new ECCurve_gostr3410_2001_cryptopro_xcha._super@621493575',
'init:FACTORY_CONFIG.<anonymous closure @687>',
'new ECCurve_gostr3410_2001_cryptopro_c.',
'[tear-off] _make@620029833',
'_make@620029833',
'new ECCurve_gostr3410_2001_cryptopro_c._super@620029833',
'new ECCurve_gostr3410_2001_cryptopro_b.',
'[tear-off] _make@619271363',
'_make@619271363',
'new ECCurve_gostr3410_2001_cryptopro_b._super@619271363',
'new ECCurve_gostr3410_2001_cryptopro_a.',
'[tear-off] _make@618201361',
'_make@618201361',
'new ECCurve_gostr3410_2001_cryptopro_a._super@618201361',
'init:FACTORY_CONFIG.<anonymous closure @642>',
'new ECCurve_brainpoolp512t1.',
'[tear-off] _make@617113648',
'_make@617113648',
'new ECCurve_brainpoolp512t1._super@617113648',
'new ECCurve_brainpoolp512r1.',
'[tear-off] _make@616215992',
'_make@616215992',
'new ECCurve_brainpoolp512r1._super@616215992',
'new ECCurve_brainpoolp384t1.',
'[tear-off] _make@615104730',
'_make@615104730',
'new ECCurve_brainpoolp384t1._super@615104730',
'new ECCurve_brainpoolp384r1.',
'[tear-off] _make@614278996',
'_make@614278996',
'new ECCurve_brainpoolp384r1._super@614278996',
'new ECCurve_brainpoolp320t1.',
'[tear-off] _make@613083086',
'_make@613083086',
'new ECCurve_brainpoolp320t1._super@613083086',
'new ECCurve_brainpoolp320r1.',
'[tear-off] _make@612072419',
'_make@612072419',
'new ECCurve_brainpoolp320r1._super@612072419',
'new ECCurve_brainpoolp256t1.',
'[tear-off] _make@611262991',
'_make@611262991',
'new ECCurve_brainpoolp256t1._super@611262991',
'new ECCurve_brainpoolp256r1.',
'[tear-off] _make@610275808',
'_make@610275808',
'new ECCurve_brainpoolp256r1._super@610275808',
'new ECCurve_brainpoolp224t1.',
'[tear-off] _make@609044209',
'_make@609044209',
'new ECCurve_brainpoolp224t1._super@609044209',
'new ECCurve_brainpoolp224r1.',
'[tear-off] _make@608447697',
'_make@608447697',
'new ECCurve_brainpoolp224r1._super@608447697',
'new ECCurve_brainpoolp192t1.',
'[tear-off] _make@607366774',
'_make@607366774',
'new ECCurve_brainpoolp192t1._super@607366774',
'new ECCurve_brainpoolp192r1.',
'[tear-off] _make@606452040',
'_make@606452040',
'new ECCurve_brainpoolp192r1._super@606452040',
'new ECCurve_brainpoolp160t1.',
'[tear-off] _make@605372507',
'_make@605372507',
'new ECCurve_brainpoolp160t1._super@605372507',
'new ECCurve_brainpoolp160r1.',
'[tear-off] _make@602296239',
'_make@602296239',
'new ECCurve_brainpoolp160r1._super@602296239',
'package:pointycastle/digests/blake2b.dart',
'Blake2bDigest',
'package:pointycastle/digests/md2.dart',
'MD2Digest',
'package:pointycastle/digests/md4.dart',
'MD4Digest',
'package:pointycastle/digests/md5.dart',
'MD5Digest',
'package:pointycastle/digests/ripemd128.dart',
'RIPEMD128Digest',
'package:pointycastle/digests/ripemd160.dart',
'RIPEMD160Digest',
'package:pointycastle/digests/ripemd256.dart',
'RIPEMD256Digest',
'package:pointycastle/digests/ripemd320.dart',
'RIPEMD320Digest',
'package:pointycastle/digests/sha1.dart',
'SHA1Digest',
'package:pointycastle/digests/sha3.dart',
'SHA3Digest',
'package:pointycastle/digests/sha224.dart',
'SHA224Digest',
'package:pointycastle/digests/sha256.dart',
'SHA256Digest',
'package:pointycastle/digests/sha384.dart',
'SHA384Digest',
'package:pointycastle/digests/sha512.dart',
'SHA512Digest',
'package:pointycastle/digests/sha512t.dart',
'SHA512tDigest',
'package:pointycastle/digests/tiger.dart',
'TigerDigest',
'package:pointycastle/digests/whirlpool.dart',
'WhirlpoolDigest',
'init:FACTORY_CONFIG.<anonymous closure @650>',
'package:pointycastle/src/impl/base_digest.dart',
'BaseDigest',
'new WhirlpoolDigest.',
'package:pointycastle/src/ufixnum.dart',
'Register64',
'set',
'Register64List',
'init:FACTORY_CONFIG.<anonymous closure @634>',
'new TigerDigest.',
'_NAME_REGEX@598210196',
'init:_NAME_REGEX@598210196',
'init:FACTORY_CONFIG.<anonymous closure @805>',
'init:FACTORY_CONFIG.<anonymous closure @805>.<anonymous closure @831>',
'package:pointycastle/src/impl/long_sha2_family_digest.dart',
'LongSHA2FamilyDigest',
'new SHA512tDigest.',
'new LongSHA2FamilyDigest.',
'_generateIVs@598210196',
'_H_MASK@598210196',
'init:_H_MASK@598210196',
'xor',
'updateByte',
'_adjustByteCounts@596182471',
'shiftl',
'_processLength@596182471',
'_processBlock@596182471',
'_K@596182471',
'init:_K@596182471',
'_Sigma1@596182471',
'sum',
'_Sigma0@596182471',
'_Sum1@596182471',
'and',
'not',
'_Sum0@596182471',
'_Maj@596182471',
'rotl',
'shiftl32',
'_MASK32_HI_BITS@572143242',
'init:_MASK32_HI_BITS@572143242',
'shiftr',
'_MAX_BYTE_COUNT1@596182471',
'init:_MAX_BYTE_COUNT1@596182471',
'_processWord@596182471',
'unpack',
'Endian',
'unpack32',
'new ByteData.view',
'init:FACTORY_CONFIG.<anonymous closure @614>',
'init:FACTORY_CONFIG.<anonymous closure @651>',
'package:pointycastle/src/impl/md4_family_digest.dart',
'MD4FamilyDigest',
'new MD4FamilyDigest.',
'_NAME_REGEX@594312058',
'init:_NAME_REGEX@594312058',
'init:FACTORY_CONFIG.<anonymous closure @754>',
'init:FACTORY_CONFIG.<anonymous closure @754>.<anonymous closure @780>',
'new SHA3Digest.',
'_init@594312058',
'_initSponge@594312058',
'init:FACTORY_CONFIG.<anonymous closure @663>',
'init:FACTORY_CONFIG.<anonymous closure @662>',
'init:FACTORY_CONFIG.<anonymous closure @636>',
'init:FACTORY_CONFIG.<anonymous closure @621>',
'new MD2Digest.',
'init:FACTORY_CONFIG.<anonymous closure @604>',
'new Blake2bDigest.',
'init',
'_blake2b_IV@582051828',
'init:_blake2b_IV@582051828',
'new Register64List.from',
'package:pointycastle/block/modes/cfb.dart',
'CFBBlockCipher',
'package:pointycastle/block/modes/ctr.dart',
'CTRBlockCipher',
'package:pointycastle/block/modes/ecb.dart',
'ECBBlockCipher',
'package:pointycastle/block/modes/gctr.dart',
'GCTRBlockCipher',
'package:pointycastle/block/modes/ofb.dart',
'OFBBlockCipher',
'package:pointycastle/block/modes/sic.dart',
'SICBlockCipher',
'init:FACTORY_CONFIG.<anonymous closure @690>',
'init:FACTORY_CONFIG.<anonymous closure @690>.<anonymous closure @716>',
'package:pointycastle/adapters/stream_cipher_as_block_cipher.dart',
'StreamCipherAsBlockCipher',
'init:FACTORY_CONFIG.<anonymous closure @705>',
'init:FACTORY_CONFIG.<anonymous closure @705>.<anonymous closure @731>',
'new OFBBlockCipher.',
'new RegistryFactoryException.invalid',
'init:FACTORY_CONFIG.<anonymous closure @749>',
'init:FACTORY_CONFIG.<anonymous closure @749>.<anonymous closure @775>',
'new GCTRBlockCipher.',
'init:FACTORY_CONFIG.<anonymous closure @695>',
'init:FACTORY_CONFIG.<anonymous closure @695>.<anonymous closure @721>',
'init:FACTORY_CONFIG.<anonymous closure @656>',
'init:FACTORY_CONFIG.<anonymous closure @656>.<anonymous closure @682>',
'new CFBBlockCipher.',
'init:FACTORY_CONFIG.<anonymous closure @1601>',
'package:pointycastle/asymmetric/oaep.dart',
'OAEPEncoding',
'package:pointycastle/asymmetric/rsa.dart',
'RSAEngine',
'init:FACTORY_CONFIG.<anonymous closure @731>',
'init:FACTORY_CONFIG.<anonymous closure @731>.<anonymous closure @757>',
'new AsymmetricBlockCipher.',
'AsymmetricBlockCipher',
'init:FACTORY_CONFIG.<anonymous closure @777>',
'init:FACTORY_CONFIG.<anonymous closure @777>.<anonymous closure @803>',
'new OAEPEncoding.',
'doFinal',
'_processPadding@586461525',
'_processLength@586461525',
'_doProcessBlock@586461525',
'_packState@586461525',
'processBlock',
'_processWordIfBufferFull@586461525',
'_processWord@586461525',
'new _RegistryImpl@562301108.',
'new Flex.',
'CrossAxisAlignment',
'package:flutter/src/painting/basic_types.dart',
'Axis',
'MainAxisSize',
'VerticalDirection',
'new TextEditingController.',
'nextBigInteger',
'_randomBits@667302708',
'nextUint8',
'processBytes',
'_salsa20Core@663412779',
'_setUint32@7027147',
'rotl32',
'_setKey@663412779',
'_sigma@663412779',
'init:_sigma@663412779',
'_tau@663412779',
'init:_tau@663412779',
'get:codeUnits',
'CodeUnits',
'_autoReseedIfNeededAfter@659025418',
'nextBigInteger.<anonymous closure @2353>',
'_doAutoReseed@659025418',
'nextBytes',
'seed',
'nextBytes.<anonymous closure @2482>',
'get:blockSize',
'get:macSize',
'get:digestSize',
'resetState',
'_bytesToint@578283055',
'_intTobytes@578283055',
'pack32',
'_encryptBlock@574171941',
'_decryptBlock@574171941',
'_encryptBlock@573520057',
'_decryptBlock@573520057',
'_padWrite@572143242',
'get:_lo32@572143242',
'_unpackBlock@571039921',
'_encryptBlock@571039921',
'_packBlock@571039921',
'_decryptBlock@571039921',
'_Tinv0@571039921',
'init:_Tinv0@571039921',
'_Tinv1@571039921',
'init:_Tinv1@571039921',
'_Tinv2@571039921',
'init:_Tinv2@571039921',
'_Tinv3@571039921',
'init:_Tinv3@571039921',
'_Si@571039921',
'init:_Si@571039921',
'_T0@571039921',
'init:_T0@571039921',
'_T1@571039921',
'init:_T1@571039921',
'_T2@571039921',
'init:_T2@571039921',
'_T3@571039921',
'init:_T3@571039921',
'_S@571039921',
'init:_S@571039921',
'_rcon@571039921',
'init:_rcon@571039921',
'floor',
'rotr32',
'_subWord@571039921',
'floorToDouble',
'Directionality',
'package:flutter/src/widgets/icon_theme.dart',
'IconTheme',
'SizedBox',
'Semantics',
'new Semantics.',
'package:flutter/src/painting/text_span.dart',
'TextSpan',
'package:flutter/src/painting/inline_span.dart',
'InlineSpan',
'RichText',
'new RichText.',
'scale',
'Transform',
'Center',
'Align',
'ExcludeSemantics',
'package:flutter/src/rendering/paragraph.dart',
'TextOverflow',
'package:flutter/src/painting/alignment.dart',
'Alignment',
'AlignmentGeometry',
'_extractChildren@433167661',
'package:flutter/src/painting/text_painter.dart',
'TextWidthBasis',
'_extractChildren@433167661.<anonymous closure @198146>',
'SemanticsProperties',
'_getInheritedIconThemeData@522033112',
'package:flutter/src/cupertino/colors.dart',
'CupertinoDynamicColor',
'package:flutter/src/cupertino/icon_theme_data.dart',
'CupertinoIconThemeData',
'get:isConcrete',
'_CupertinoIconThemeData&IconThemeData&Diagnosticable',
'resolveFrom',
'get:_isPlatformBrightnessDependent@96482824',
'brightnessOf',
'package:flutter/src/cupertino/theme.dart',
'CupertinoTheme',
'get:_isHighContrastDependent@96482824',
'get:_isInterfaceElevationDependent@96482824',
'package:flutter/src/cupertino/interface_level.dart',
'CupertinoUserInterfaceLevel',
'_CupertinoDynamicColor&Color&Diagnosticable',
'get:brightness',
'MaterialBasedCupertinoThemeData',
'DefaultTextStyle',
'merge',
'boldTextOverride',
'textScaleFactorOf',
'DefaultTextHeightBehavior',
'package:flutter/src/widgets/inherited_theme.dart',
'InheritedTheme',
'didPopRoute',
'invokeCallback',
'invokeCallback.<anonymous closure @33215>',
'invokeCallback.<anonymous closure @33215>{body}',
'invokeCallback.<anonymous closure @33215>{body}.<anonymous closure @33215>',
'didChangeAccessibilityFeatures',
'didHaveMemoryPressure',
'didChangeAppLifecycleState',
'didChangeLocales',
'didChangePlatformBrightness',
'didChangeTextScaleFactor',
'didChangeMetrics',
'didPushRouteInformation',
'didPushRoute',
'_WidgetsAppState',
'__WidgetsAppState&State&WidgetsBindingObserver',
'set:padding',
'package:flutter/src/rendering/shifted_box.dart',
'RenderPadding',
'_markNeedResolution@375204652',
'RenderShiftedBox',
'_RenderShiftedBox&RenderBox&RenderObjectWithChildMixin',
'new RenderPadding.',
'set:direction',
'RenderFlex',
'set:mainAxisAlignment',
'set:mainAxisSize',
'set:crossAxisAlignment',
'getEffectiveTextDirection',
'set:verticalDirection',
'set:textBaseline',
'set:clipBehavior',
'_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin',
'_RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin',
'_RenderFlex&RenderBox&ContainerRenderObjectMixin',
'new RenderFlex.',
'new _RenderFlex&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&DebugOverflowIndicatorMixin@360478290.',
'TextPainter',
'_AnimatedThemeState',
'AnimatedWidgetBaseState',
'ImplicitlyAnimatedWidgetState',
'_ImplicitlyAnimatedWidgetState&State&SingleTickerProviderStateMixin',
'_TextFieldState',
'__TextFieldState&State&RestorationMixin',
'new _TextFieldState@282181401.',
'ScaffoldState',
'_ScaffoldState&State&TickerProviderStateMixin',
'new ScaffoldState.',
'package:flutter/src/widgets/scroll_controller.dart',
'ScrollController',
'new ScrollController.',
'Theme',
'ButtonTheme',
'getFillColor',
'getTextColor',
'getHighlightColor',
'getSplashColor',
'getPadding',
'getConstraints',
'getShape',
'package:flutter/src/material/button.dart',
'RawMaterialButton',
'EdgeInsetsDirectional',
'getDisabledTextColor',
'getDisabledFillColor',
'_kFallbackTheme@287067045',
'init:_kFallbackTheme@287067045',
'MaterialLocalizations',
'localize',
'ScriptCategory',
'_localizedThemeDataCache@288408314',
'init:_localizedThemeDataCache@288408314',
'_IdentityThemeDataCacheKey',
'_FifoCache',
'localize.<anonymous closure @56412>',
'Localizations',
'resourcesFor',
'_LocalizationsState',
'new ThemeData.fallback',
'new ThemeData.light',
'Hero',
'MergeSemantics',
'package:flutter/src/painting/circle_border.dart',
'CircleBorder',
'_ButtonStyleState',
'get:beginArc',
'get:endArc',
'_initialize@179458455',
'_maxBy@179458455',
'_cornerFor@179458455',
'MaterialPointArcTween',
'_initialize@179458455.<anonymous closure @8099>',
'_Diagonal',
'_CornerId',
'_diagonalSupport@179458455',
'get:distance',
'get:topRight',
'get:bottomLeft',
'_AppBarState',
'toStringDetails',
'dependOnInheritedElement',
'updateDependencies',
'InheritedElement',
'setDependencies',
'SingleChildRenderObjectElement',
'MultiChildRenderObjectElement',
'equals',
'package:collection/src/equality.dart',
'ListEquality',
'DefaultEquality',
'get:groupCount',
'_shrFromInteger@0150898',
'_mul@0150898',
'_remDigits@0150898',
'_rShiftDigits@0150898',
'get:_normModulusUsed@0150898',
'_oneBillion@0150898',
'init:_oneBillion@0150898',
'_div@0150898',
'padCount',
'addPadding',
'_HeroState',
'showPerformanceOverlayOverride',
'init:showPerformanceOverlayOverride',
'defaultActions',
'init:defaultActions',
'get:_usesRouter@477236006',
'get:_effectiveRouteInformationProvider@477236006',
'Router',
'get:_initialRouteName@477236006',
'Navigator',
'Builder',
'package:flutter/src/widgets/performance_overlay.dart',
'PerformanceOverlay',
'Positioned',
'ParentDataWidget',
'Stack',
'package:flutter/src/widgets/title.dart',
'Title',
'new Title.',
'get:defaultShortcuts',
'package:flutter/src/widgets/focus_traversal.dart',
'ReadingOrderTraversalPolicy',
'_WidgetOrderTraversalPolicy&FocusTraversalPolicy&DirectionalFocusTraversalPolicyMixin',
'FocusTraversalPolicy',
'get:_localizationsDelegates@477236006',
'new Localizations.',
'_MediaQueryFromWindow',
'FocusTraversalGroup',
'package:flutter/src/widgets/actions.dart',
'Actions',
'package:flutter/src/widgets/shortcuts.dart',
'Shortcuts',
'[tear-off] _onGenerateRoute@477236006',
'[tear-off] _onUnknownRoute@477236006',
'[tear-off] defaultGenerateInitialRoutes',
'DefaultTransitionDelegate',
'TransitionDelegate',
'build.<anonymous closure @65087>',
'AlignmentDirectional',
'package:flutter/src/rendering/stack.dart',
'StackFit',
'Overflow',
'defaultGenerateInitialRoutes',
'_routeNamed@480124995',
'NavigatorState',
'removeWhere',
'defaultGenerateInitialRoutes.<anonymous closure @93750>',
'_filter@3220832',
'_onUnknownRoute@477236006',
'_onGenerateRoute@477236006',
'_onGenerateRoute@477236006.<anonymous closure @50676>',
'get:_localizationsDelegates@477236006{body}',
'get:_localizationsDelegates@477236006{body}.<anonymous closure @61869>',
'_WidgetsLocalizationsDelegate',
'_defaultShortcuts@477236006',
'init:_defaultShortcuts@477236006',
'_defaultMacOsShortcuts@477236006',
'init:_defaultMacOsShortcuts@477236006',
'LogicalKeySet',
'_LogicalKeySet&KeySet&Diagnosticable',
'KeySet',
'new KeySet.',
'ActivateIntent',
'Intent',
'DismissIntent',
'NextFocusIntent',
'PreviousFocusIntent',
'DirectionalFocusIntent',
'TraversalDirection',
'package:flutter/src/widgets/scrollable.dart',
'ScrollIntent',
'AxisDirection',
'ScrollIncrementType',
'_defaultRouteName@16065589',
'get:defaultRouteName',
'DoNothingAction',
'Action',
'new Action.',
'RequestFocusAction',
'NextFocusAction',
'PreviousFocusAction',
'DirectionalFocusAction',
'ScrollAction',
'_resolveLocales@477236006',
'didChangeLocales.<anonymous closure @61434>',
'basicLocaleListResolution',
'didPushRoute{body}',
'get:currentState',
'pushNamed',
'_RouteEntry',
'RouteTransitionRecord',
'new _RouteEntry@480124995.',
'_flushHistoryUpdates@480124995',
'_afterNavigation@480124995',
'_RouteLifecycle',
'_cancelActivePointers@480124995',
'get:currentContext',
'findAncestorRenderObjectOfType',
'_cancelActivePointers@480124995.<anonymous closure @158099>',
'set:absorbing',
'package:flutter/src/rendering/proxy_box.dart',
'RenderAbsorbPointer',
'isPresentPredicate',
'init:isPresentPredicate',
'willBePresentPredicate',
'init:willBePresentPredicate',
'_getIndexBefore@480124995',
'_NavigatorPushObservation',
'_NavigatorObservation',
'handlePush',
'_NavigatorPopObservation',
'_NavigatorRemoveObservation',
'_flushObserverNotifications@480124995',
'_flushRouteAnnouncement@480124995',
'lastWhere',
'routeUpdated',
'get:overlay',
'get:_allRouteOverlayEntries@480124995',
'rearrange',
'package:flutter/src/widgets/overlay.dart',
'OverlayState',
'OverlayEntry',
'_flushHistoryUpdates@480124995.<anonymous closure @132238>',
'_remove@462319124',
'remove.<anonymous closure @5736>',
'_remove@462319124.<anonymous closure @16242>',
'rearrange.<anonymous closure @15991>',
'removeAll',
'insertAll',
'get:_allRouteOverlayEntries@480124995{body}',
'get:_allRouteOverlayEntries@480124995{body}.<anonymous closure @115687>',
'suitableForTransitionAnimationPredicate',
'init:suitableForTransitionAnimationPredicate',
'_getRouteAfter@480124995',
'init:suitableForTransitionAnimationPredicate.<anonymous closure @105403>',
'removeLast',
'whenCompleteOrCancel',
'package:flutter/src/scheduler/ticker.dart',
'TickerFuture',
'_NavigatorReplaceObservation',
'handlePush.<anonymous closure @100368>',
'get:orCancel',
'whenCompleteOrCancel.thunk',
'TickerCanceled',
'init:willBePresentPredicate.<anonymous closure @105525>',
'init:isPresentPredicate.<anonymous closure @105285>',
'notAnnounced',
'init:notAnnounced',
'_NotAnnounced',
'didPopRoute{body}',
'maybePop',
'maybePop{body}',
'maybePop.<anonymous closure @148780>',
'maybePop.<anonymous closure @149214>',
'RoutePopDisposition',
'get:hasPage',
'removeObserver',
'PlatformRouteInformationProvider',
'get:hasListeners',
'_PlatformRouteInformationProvider&RouteInformationProvider&WidgetsBindingObserver&ChangeNotifier',
'_updateNavigator@477236006',
'debugFillDescription',
'get:offset',
'get:position',
'package:flutter/src/widgets/ticker_provider.dart',
'TickerMode',
'set:muted',
'Ticker',
'unscheduleTick',
'get:shouldScheduleTick',
'scheduleTick',
'scheduleFrameCallback',
'_FrameCallbackEntry',
'cancelFrameCallbackWithId',
'package:flutter/src/animation/animation_controller.dart',
'_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin',
'[tear-off] _handleAnimationChanged@448443363',
'_handleAnimationChanged@448443363',
'_handleAnimationChanged@448443363.<anonymous closure @21872>',
'AnimationController',
'_cancel@397494659',
'_updateCurve@448443363',
'_constructTweens@448443363',
'forward',
'drive',
'didUpdateWidget.<anonymous closure @15699>',
'_updateTween@448443363',
'evaluate',
'animate',
'_AnimatedEvaluation',
'__AnimatedEvaluation&Animation&AnimationWithParentMixin',
'_animateToInternal@84066280',
'_AnimationDirection',
'get:disableAnimations',
'_checkStatusChanged@84066280',
'new TickerFuture.complete',
'_InterpolationSimulation',
'package:flutter/src/physics/simulation.dart',
'Simulation',
'new _InterpolationSimulation@84066280.',
'_startSimulation@84066280',
'AnimationBehavior',
'_value@84066280',
'new TickerFuture._@397494659',
'package:flutter/src/physics/tolerance.dart',
'Tolerance',
'_complete@397494659',
'get:status',
'notifyStatusListeners',
'_AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin',
'_status@84066280',
'_accessibilityFeatures@398275577',
'_internalSetValue@84066280',
'_constructTweens@448443363.<anonymous closure @16619>',
'_shouldAnimateTween@448443363',
'CurvedAnimation',
'_CurvedAnimation&Animation&AnimationWithParentMixin',
'new CurvedAnimation.',
'_updateCurveDirection@85411118',
'_AnimationController&Animation&AnimationEagerListenerMixin',
'new AnimationController.',
'addStatusListener',
'initState.<anonymous closure @15079>',
'new _AnimationController&Animation&AnimationEagerListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@84066280.',
'RenderMergeSemantics',
'RenderProxyBox',
'_RenderProxyBox&RenderBox&RenderObjectWithChildMixin&RenderProxyBoxMixin',
'new RenderProxyBox.',
'set:excluding',
'RenderExcludeSemantics',
'new RenderExcludeSemantics.',
'set:container',
'RenderSemanticsAnnotations',
'set:explicitChildNodes',
'set:excludeSemantics',
'set:scopesRoute',
'set:enabled',
'set:checked',
'set:toggled',
'set:selected',
'set:button',
'set:link',
'set:header',
'set:textField',
'set:readOnly',
'set:focusable',
'set:focused',
'set:inMutuallyExclusiveGroup',
'set:obscured',
'set:multiline',
'set:hidden',
'set:image',
'set:liveRegion',
'set:maxValueLength',
'set:currentValueLength',
'set:label',
'set:increasedValue',
'set:decreasedValue',
'set:hint',
'set:hintOverrides',
'set:namesRoute',
'_getTextDirection@433167661',
'set:sortKey',
'set:onTap',
'set:onLongPress',
'set:onScrollLeft',
'set:onScrollRight',
'set:onScrollUp',
'set:onScrollDown',
'set:onIncrease',
'set:onDismiss',
'set:onDecrease',
'set:onCopy',
'set:onCut',
'set:onPaste',
'set:onMoveCursorForwardByCharacter',
'set:onMoveCursorBackwardByCharacter',
'set:onMoveCursorForwardByWord',
'set:onMoveCursorBackwardByWord',
'set:onSetSelection',
'set:onDidGainAccessibilityFocus',
'set:onDidLoseAccessibilityFocus',
'set:customSemanticsActions',
'new RenderSemanticsAnnotations.',
'set:text',
'RenderParagraph',
'set:textAlign',
'set:softWrap',
'set:overflow',
'set:textScaleFactor',
'set:maxLines',
'set:strutStyle',
'set:textWidthBasis',
'set:textHeightBehavior',
'localeOf',
'set:locale',
'set:ellipsis',
'_extractPlaceholderSpans@369149678',
'RenderComparison',
'_extractPlaceholderSpans@369149678.<anonymous closure @4470>',
'_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin&RelayoutWhenSystemFontsChangeMixin',
'_RenderParagraph&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin',
'_RenderParagraph&RenderBox&ContainerRenderObjectMixin',
'new RenderParagraph.',
'RenderTransform',
'set:origin',
'set:alignment',
'new RenderTransform.',
'RenderAligningShiftedBox',
'set:widthFactor',
'RenderPositionedBox',
'set:heightFactor',
'new RenderPositionedBox.',
'get:_additionalConstraints@433167661',
'set:additionalConstraints',
'RenderConstrainedBox',
'new RenderConstrainedBox.',
'_resolve@375204652',
'deflate',
'get:horizontal',
'get:vertical',
'addWithPaintOffset',
'hitTestChildren.<anonymous closure @2373>',
'popTransform',
'_OffsetTransformPart',
'_TransformPart',
'defaultPaint',
'pushClipRect',
'[tear-off] defaultPaint',
'shift',
'ClipRectLayer',
'set:clipRect',
'pushLayer',
'clipRectAndPaint',
'pushClipRect.<anonymous closure @17355>',
'_clipAndPaint@311104375',
'clipRectAndPaint.<anonymous closure @2169>',
'clipRect',
'_clipRect@16065589',
'saveLayer',
'_saveLayer@16065589',
'createChildContext',
'defaultHitTestChildren',
'defaultHitTestChildren.<anonymous closure @109795>',
'getDistanceToActualBaseline',
'_startIsTopLeft@360478290',
'FlexFit',
'getDistanceToActualBaseline.<anonymous closure @82227>',
'FlexParentData',
'ContainerBoxParentData',
'_ContainerBoxParentData&BoxParentData&ContainerParentDataMixin',
'insert',
'_insertIntoChildList@368266271',
'_stringify@300341779',
'_MixedAlignment',
'cupertinoTextSelectionControls',
'package:flutter/src/cupertino/text_selection.dart',
'init:cupertinoTextSelectionControls',
'materialTextSelectionControls',
'package:flutter/src/material/text_selection.dart',
'init:materialTextSelectionControls',
'TextSelectionTheme',
'get:_effectiveController@282181401',
'get:_effectiveFocusNode@282181401',
'EditableText',
'new EditableText.',
'package:flutter/src/widgets/restoration.dart',
'UnmanagedRestorationScope',
'RepaintBoundary',
'_MergingListenable',
'package:flutter/src/widgets/transitions.dart',
'AnimatedBuilder',
'AnimatedWidget',
'get:_hasError@282181401',
'resolveAs',
'MaterialStateProperty',
'get:_isEnabled@282181401',
'buildGestureDetector',
'package:flutter/src/widgets/text_selection.dart',
'TextSelectionGestureDetectorBuilder',
'IgnorePointer',
'MouseRegion',
'[tear-off] _handleSelectionChanged@282181401',
'[tear-off] _handleSelectionHandleTapped@282181401',
'build.<anonymous closure @49326>',
'_EnabledAndDisabledMouseCursor',
'MaterialStateMouseCursor',
'build.<anonymous closure @50305>',
'build.<anonymous closure @50368>',
'build.<anonymous closure @50590>',
'HitTestBehavior',
'get:_currentLength@282181401',
'build.<anonymous closure @50590>.<anonymous closure @50900>',
'get:selection',
'set:selection',
'_requestKeyboard@282181401',
'get:_editableText@282181401',
'requestKeyboard',
'EditableTextState',
'get:_hasFocus@512183791',
'_openInputConnection@512183791',
'requestFocus',
'get:_shouldCreateInputConnection@512183791',
'get:_hasInputConnection@512183791',
'get:_value@512183791',
'_createTextInputConfiguration@512183791',
'TextInput',
'show',
'TextInputConnection',
'_updateSizeAndTransform@512183791',
'get:_needsAutofill@512183791',
'get:_textDirection@512183791',
'setStyle',
'setEditingState',
'_instance@431206165',
'init:_instance@431206165',
'_setEditingState@431206165',
'toJSON',
'_channel@431206165',
'new TextInput._@431206165',
'[tear-off] _handleTextInputInvocation@431206165',
'_handleTextInputInvocation@431206165',
'_handleTextInputInvocation@431206165{body}',
'_attach@431206165',
'get:currentTextEditingValue',
'new TextEditingValue.fromJSON',
'updateEditingValue',
'_toTextInputAction@431206165',
'performPrivateCommand',
'_toTextCursorAction@431206165',
'_toTextPoint@431206165',
'updateFloatingCursor',
'connectionClosed',
'showAutocorrectionPromptRect',
'_currentConfiguration@431206165',
'showAutocorrectionPromptRect.<anonymous closure @96194>',
'get:attached',
'connectionClosedReceived',
'_finalizeEditing@512183791',
'TextInputAction',
'clearComposing',
'unfocus',
'nextFocus',
'previousFocus',
'previous',
'_moveFocus@479280150',
'invalidateScopeData',
'get:focusedChild',
'findFirstFocus',
'findLastFocus',
'_focusAndEnsureVisible@479280150',
'_sortAllDescendants@479280150',
'package:flutter/src/widgets/scroll_position.dart',
'ScrollPositionAlignmentPolicy',
'_getMarker@479280150',
'get:descendants',
'toSet',
'sortDescendants',
'getElementForInheritedWidgetOfExactType',
'_FocusTraversalGroupInfo',
'get:canRequestFocus',
'[email protected]',
'_getAncestor@479280150.<anonymous closure @1014>',
'get:enclosingScope',
'firstWhere',
'get:enclosingScope.<anonymous closure @28191>',
'get:enclosingScope.<anonymous closure @28243>',
'_pickNext@479280150',
'_ReadingOrderSortData',
'get:rect',
'_findDirectionality@479280150',
'findRenderObject',
'getTransformTo',
'mergeSort',
'commonDirectionalityOf',
'sortWithDirectionality',
'_collectDirectionalityGroups@479280150',
'_ReadingOrderDirectionalGroupData',
'_pickNext@479280150.<anonymous closure @44705>',
'[email protected].<anonymous closure @45205>',
'sortWithDirectionality.<anonymous closure @40849>',
'expandToInclude',
'get:rect.<anonymous closure @40180>',
'sortWithDirectionality.<anonymous closure @38164>',
'get:directionalAncestors',
'commonDirectionalityOf.<anonymous closure @37132>',
'get:directionalAncestors.getDirectionalityAncestors',
'_insertionSort@132414040',
'_mergeSort@132414040',
'_merge@132414040',
'_defaultCompare@132414040.<anonymous closure @6379>',
'_movingInsertionSort@132414040',
'new LinkedHashSet.of',
'ensureVisible',
'Scrollable',
'ScrollPosition',
'ensureVisible.<anonymous closure @13650>',
'package:flutter/src/rendering/viewport.dart',
'RenderAbstractViewport',
'jumpTo',
'package:flutter/src/widgets/scroll_position_with_single_context.dart',
'ScrollPositionWithSingleContext',
'animateTo',
'get:tolerance',
'package:flutter/src/widgets/scroll_physics.dart',
'ScrollPhysics',
'nearEqual',
'package:flutter/src/physics/utils.dart',
'package:flutter/src/widgets/scroll_activity.dart',
'DrivenScrollActivity',
'ScrollActivity',
'new DrivenScrollActivity.',
'beginActivity',
'ScrollDragController',
'updateUserScrollDirection',
'package:flutter/src/rendering/viewport_offset.dart',
'ScrollDirection',
'didUpdateScrollDirection',
'_ScrollPosition&ViewportOffset&ScrollMetrics',
'get:notificationContext',
'ScrollableState',
'package:flutter/src/widgets/scroll_notification.dart',
'UserScrollNotification',
'ScrollNotification',
'_ScrollNotification&LayoutChangedNotification&ViewportNotificationMixin',
'package:flutter/src/widgets/notification_listener.dart',
'LayoutChangedNotification',
'Notification',
'dispatch',
'get:axisDirection',
'package:flutter/src/widgets/scroll_metrics.dart',
'FixedScrollMetrics',
'ScrollMetrics',
'didEndScroll',
'setIgnorePointer',
'didStartScroll',
'set:ignoring',
'RenderIgnorePointer',
'saveOffset',
'saveScrollOffset',
'PageStorage',
'get:storageContext',
'writeState',
'_computeIdentifier@539357337',
'_StorageEntryIdentifier',
'_allKeys@539357337',
'_maybeAddKey@539357337',
'_allKeys@539357337.<anonymous closure @2216>',
'findAncestorWidgetOfExactType',
'package:flutter/src/widgets/restoration_properties.dart',
'RestorableValue',
'flushData',
'didUpdateValue',
'_RestorableScrollOffset',
'new AnimationController.unbounded',
'[tear-off] _tick@533498029',
'[tear-off] _end@533498029',
'_end@533498029',
'get:velocity',
'goBallistic',
'BallisticScrollActivity',
'new BallisticScrollActivity.',
'goIdle',
'IdleScrollActivity',
'animateWith',
'_tick@533498029',
'applyMoveTo',
'setPixels',
'applyBoundaryConditions',
'didUpdateScrollPositionBy',
'didOverscrollBy',
'_updateSemanticActions@508085019',
'setSemanticsActions',
'replaceSemanticsActions',
'package:flutter/src/widgets/gesture_detector.dart',
'RawGestureDetectorState',
'set:validActions',
'RenderSemanticsGestureHandler',
'get:isAnimating',
'createTicker',
'_ScrollableState&State&TickerProviderStateMixin',
'_WidgetTicker',
'_kDefaultTolerance@472316757',
'init:_kDefaultTolerance@472316757',
'forcePixels',
'forcePixels.<anonymous closure @15532>',
'_findInitialFocus@479280150',
'next',
'_doRequestFocus@465042876',
'UnfocusDisposition',
'_setAsFocusedChildForScope@465042876',
'_markNextFocus@465042876',
'_notify@465042876',
'_markNeedsUpdate@465042876',
'[tear-off] _applyFocusChange@465042876',
'_applyFocusChange@465042876',
'difference',
'_onFloatingCursorResetTick@512183791',
'TextPosition',
'getLocalRectForCaret',
'package:flutter/src/rendering/editable.dart',
'RenderEditable',
'get:_floatingCursorOffset@512183791',
'setFloatingCursor',
'get:renderEditable',
'calculateBoundedFloatingCursorOffset',
'localToGlobal',
'getPositionForPoint',
'FloatingCursorDragState',
'_DecelerateCurve',
'_layoutText@358245603',
'get:_paintOffset@358245603',
'globalToLocal',
'getPositionForOffset',
'_getPositionForOffset@16065589',
'scaled',
'get:_viewportAxis@358245603',
'get:_isMultiline@358245603',
'get:_caretMargin@358245603',
'_createParagraphStyle@337105366',
'get:maxIntrinsicWidth',
'getBoxesForPlaceholders',
'_getBoxesForPlaceholders@16065589',
'_decodeTextBoxes@16065589',
'getTextStyle',
'getParagraphStyle',
'StrutStyle',
'new StrutStyle.',
'_encodeStrut@16065589',
'get:preferredLineHeight',
'getOffsetForCaret',
'get:cursorHeight',
'_getPixelPerfectCursorOffset@358245603',
'_computeCaretMetrics@337105366',
'_caretMetrics@337105366',
'_getRectFromUpstream@337105366',
'_getRectFromDownstream@337105366',
'get:_emptyOffset@337105366',
'_CaretMetrics',
'toPlainText',
'_getBoxesForRange@16065589',
'Accumulator',
'codeUnitAt.<anonymous closure @11619>',
'codeUnitAtVisitor',
'increment',
'computeToPlainText',
'get:centerLeft',
'_handleSelectionChanged@512183791',
'SelectionChangedCause',
'isSelectionWithinTextBounds',
'hide',
'TextSelectionOverlay',
'new TextSelectionOverlay.',
'set:handlesVisible',
'showHandles',
'Overlay',
'showHandles.<anonymous closure @16721>',
'showHandles.<anonymous closure @16835>',
'_buildHandle@438111801',
'_TextSelectionHandlePosition',
'package:flutter/src/widgets/container.dart',
'Container',
'new Container.',
'_TextSelectionHandleOverlay',
'package:flutter/src/widgets/visibility.dart',
'Visibility',
'_buildHandle@438111801.<anonymous closure @20090>',
'_handleSelectionHandleChanged@438111801',
'get:extent',
'set:textEditingValue',
'bringIntoView',
'_getOffsetToRevealCaret@512183791',
'get:allowImplicitScrolling',
'get:_isMultiline@512183791',
'RevealedOffset',
'_formatAndSetValue@512183791',
'_WhitespaceDirectionalityFormatter',
'package:flutter/src/services/text_formatter.dart',
'TextInputFormatter',
'new _WhitespaceDirectionalityFormatter@512183791.',
'formatEditUpdate',
'set:_value@512183791',
'_updateRemoteEditingValueIfNeeded@512183791',
'Runes',
'RuneIterator',
'formatEditUpdate.addToLength',
'formatEditUpdate.subtractFromLength',
'_markNeedsBuild@438111801',
'[tear-off] _markNeedsBuild@438111801',
'_markNeedsBuild@462319124',
'_OverlayEntryWidgetState',
'_markNeedsBuild@462319124.<anonymous closure @6890>',
'tighten',
'insertAll.<anonymous closure @13257>',
'findRootAncestorStateOfType',
'findAncestorStateOfType',
'hideToolbar',
'RawFloatingCursorPoint',
'_showCaretOnScreen@512183791',
'_stopCursorTimer@512183791',
'_startCursorTimer@512183791',
'debugDeterministicCursor',
'init:debugDeterministicCursor',
'new Timer.periodic',
'[tear-off] _cursorWaitForStart@512183791',
'[tear-off] _cursorTick@512183791',
'_cursorTick@512183791',
'_cursorTick@512183791.<anonymous closure @89358>',
'_cursorWaitForStart@512183791',
'_showCaretOnScreen@512183791.<anonymous closure @83464>',
'get:hasClients',
'inflateRect',
'TextSelectionHandleType',
'animateTo.<anonymous closure @7023>',
'TextInputConfiguration',
'package:flutter/src/services/autofill.dart',
'AutofillConfiguration',
'_setStyle@431206165',
'setEditableSizeAndTransform',
'_updateSizeAndTransform@512183791.<anonymous closure @92387>',
'_setEditableSizeAndTransform@431206165',
'_show@431206165',
'_nextId@431206165',
'init:_nextId@431206165',
'get:autofillId',
'StringCharacters|get#characters',
'package:characters/src/extensions.dart',
'package:characters/src/characters_impl.dart',
'StringCharacters',
'package:characters/src/grapheme_clusters/breaks.dart',
'Breaks',
'nextBreak',
'_handleHover@282181401',
'_handleHover@282181401.<anonymous closure @43130>',
'_getEffectiveDecoration@282181401',
'InputDecorator',
'applyDefaults',
'_handleSelectionHandleTapped@282181401',
'toggleToolbar',
'showToolbar',
'[tear-off] _buildToolbar@438111801',
'_buildToolbar@438111801',
'getEndpointsForSelection',
'bottomRight',
'new Rect.fromPoints',
'get:_toolbarOpacity@438111801',
'CompositedTransformFollower',
'FadeTransition',
'getBoxesForSelection',
'TextSelectionPoint',
'getBoxesForRange',
'insert.<anonymous closure @12189>',
'_handleSelectionChanged@282181401',
'_shouldShowSelectionHandles@282181401',
'_handleSelectionChanged@282181401.<anonymous closure @42345>',
'TextSelectionGestureDetector',
'singleLineFormatter',
'FilteringTextInputFormatter',
'init:singleLineFormatter',
'_NoDefaultCupertinoThemeData',
'CupertinoThemeData',
'new MaterialBasedCupertinoThemeData._@288408314',
'_CupertinoThemeDefaults',
'_CupertinoTextThemeDefaults',
'_MaterialTextSelectionControls',
'TextSelectionControls',
'_CupertinoTextSelectionControls',
'RestorableTextEditingController',
'RestorableListenable',
'_disposeControllerIfNecessary@544066365',
'RestorableProperty',
'[tear-off] notifyListeners',
'FocusAttachment',
'_markDetached@465042876',
'_removeChild@465042876',
'_createLocalController@282181401',
'unregisterFromRestoration',
'get:_canRequestFocus@282181401',
'set:canRequestFocus',
'_markPropertiesChanged@465042876',
'NavigationMode',
'_unregister@459384654',
'new RestorableTextEditingController.',
'new RestorableProperty.',
'get:restorePending',
'_registerController@282181401',
'registerForRestoration',
'createDefaultValue',
'_register@459384654',
'initWithValue',
'registerForRestoration.<anonymous closure @38106>',
'new TextEditingController.fromValue',
'get:restorationId',
'_TextFieldSelectionGestureDetectorBuilder',
'dispose.<anonymous closure @45834>',
'RestorationScope',
'_updateBucketIfNecessary@459384654',
'_doRestore@459384654',
'restoreState',
'_setNewBucketIfNecessary@459384654',
'get:isCurrent',
'_BodyBuilder',
'_addIfNonNull@264420462',
'package:flutter/src/widgets/modal_barrier.dart',
'ModalBarrier',
'createSettings',
'package:flutter/src/material/flexible_space_bar.dart',
'FlexibleSpaceBar',
'ConstrainedBox',
'_FloatingActionButtonTransition',
'GestureDetector',
'new GestureDetector.',
'_buildDrawer@264420462',
'_buildEndDrawer@264420462',
'get:_resizeToAvoidBottomInset@264420462',
'get:hasDrawer',
'package:flutter/src/material/material.dart',
'Material',
'package:flutter/src/widgets/primary_scroll_controller.dart',
'PrimaryScrollController',
'_ScaffoldScope',
'_ScaffoldSlot',
'[tear-off] _handleStatusBarTap@264420462',
'build.<anonymous closure @98287>',
'MaterialType',
'_ScaffoldLayout',
'package:flutter/src/rendering/custom_layout.dart',
'MultiChildLayoutDelegate',
'new _ScaffoldLayout@264420462.',
'CustomMultiChildLayout',
'_handleStatusBarTap@264420462',
'FlexibleSpaceBarSettings',
'removePadding',
'MediaQueryData',
'removeViewInsets',
'LayoutId',
'new LayoutId.',
'ValueKey',
'get:isCurrent.<anonymous closure @16919>',
'_maybeBuildPersistentBottomSheet@264420462',
'_ScaffoldGeometryNotifier',
'new _ScaffoldGeometryNotifier@264420462.',
'ScaffoldGeometry',
'package:flutter/src/material/floating_action_button_location.dart',
'_EndFloatFabLocation',
'__EndFloatFabLocation&StandardFabLocation&FabEndOffsetX&FabFloatOffsetY',
'__EndTopFabLocation&StandardFabLocation&FabEndOffsetX',
'StandardFabLocation',
'FloatingActionButtonLocation',
'_ScalingFabMotionAnimator',
'FloatingActionButtonAnimator',
'themeStyleOf',
'defaultStyleOf',
'_MouseCursor',
'resolveWith',
'get:baseSizeAdjustment',
'effectiveConstraints',
'InkWell',
'InkResponse',
'_InputPadding',
'build.effectiveValue',
'build.resolve',
'build.<anonymous closure @8903>',
'build.<anonymous closure @9002>',
'build.<anonymous closure @9107>',
'build.<anonymous closure @9208>',
'build.<anonymous closure @9305>',
'build.<anonymous closure @9422>',
'build.<anonymous closure @9513>',
'build.<anonymous closure @9613>',
'build.<anonymous closure @9715>',
'build.<anonymous closure @9831>',
'build.<anonymous closure @10048>',
'build.<anonymous closure @10227>',
'build.<anonymous closure @10344>',
'build.<anonymous closure @10452>',
'build.<anonymous closure @10557>',
'[tear-off] _handleHighlightChanged@193219276',
'[tear-off] _handleHoveredChanged@193219276',
'[tear-off] _handleFocusedChanged@193219276',
'package:flutter/src/painting/box_border.dart',
'BoxShape',
'package:flutter/src/material/ink_ripple.dart',
'_InkRippleFactory',
'_handleFocusedChanged@193219276',
'get:_focused@193219276',
'_handleFocusedChanged@193219276.<anonymous closure @7331>',
'_updateState@193219276',
'_handleHoveredChanged@193219276',
'get:_hovered@193219276',
'_handleHoveredChanged@193219276.<anonymous closure @7166>',
'_handleHighlightChanged@193219276',
'get:_pressed@193219276',
'_handleHighlightChanged@193219276.<anonymous closure @7001>',
'build.<anonymous closure @10048>.<anonymous closure @10094>',
'build.<anonymous closure @9831>.<anonymous closure @9877>',
'_TextButtonDefaultMouseCursor',
'build.resolve.<anonymous closure @8767>',
'merge.<anonymous closure @1221>',
'_MaterialStatePropertyWith',
'scaledPadding',
'styleFrom',
'_TextButtonDefaultForeground',
'_TextButtonDefaultOverlay',
'package:flutter/src/material/elevated_button.dart',
'__ElevatedButtonDefaultMouseCursor&MaterialStateProperty&Diagnosticable',
'allOrNull',
'package:flutter/src/material/button_style.dart',
'ButtonStyle',
'all',
'_MaterialStatePropertyAll',
'lerp',
'TextButtonTheme',
'get:_disabled@193219276',
'_RawMaterialButtonState',
'get:radius',
'get:beginAngle',
'get:endAngle',
'get:hasEndDrawer',
'get:canPop',
'transform',
'package:flutter/src/material/icon_button.dart',
'IconButton',
'_AppBarTitleBox',
'_getEffectiveCenterTitle@177187611',
'package:flutter/src/widgets/navigation_toolbar.dart',
'NavigationToolbar',
'_ToolbarContainerLayout',
'SingleChildLayoutDelegate',
'CustomSingleChildLayout',
'ClipRect',
'package:flutter/src/widgets/safe_area.dart',
'SafeArea',
'package:flutter/src/widgets/annotated_region.dart',
'AnnotatedRegion',
'Interval',
'[tear-off] _handleDrawerButton@177187611',
'package:flutter/src/material/back_button.dart',
'BackButton',
'[tear-off] _handleDrawerButtonEnd@177187611',
'_handleDrawerButtonEnd@177187611',
'openEndDrawer',
'package:flutter/src/material/drawer.dart',
'DrawerControllerState',
'open',
'fling',
'_kFlingSpringDescription@84066280',
'init:_kFlingSpringDescription@84066280',
'package:flutter/src/physics/spring_simulation.dart',
'SpringSimulation',
'new SpringSimulation.',
'new _SpringSolution@345485910.',
'_SpringSolution',
'new _CriticalSolution@345485910.',
'_CriticalSolution',
'new _OverdampedSolution@345485910.',
'_OverdampedSolution',
'new _UnderdampedSolution@345485910.',
'_UnderdampedSolution',
'SpringDescription',
'_handleDrawerButton@177187611',
'openDrawer',
'get:isFirst',
'get:willHandlePopInternally',
'get:isFirst.<anonymous closure @17581>',
'ErrorHint',
'updateChildren',
'IndexedSlot',
'updated',
'notifyClients',
'_applyParentData@35042623',
'[email protected]',
'_setRange@670423996',
'new MediaQuery.removePadding',
'[tear-off-extractor] get:dispose',
'[tear-off] dispose',
'get:isScrolling',
'get:shouldIgnorePointer',
'dispatchOverscrollNotification',
'OverscrollNotification',
'dispatchScrollEndNotification',
'ScrollEndNotification',
'dispatchScrollUpdateNotification',
'ScrollUpdateNotification',
'dispatchScrollStartNotification',
'ScrollStartNotification',
'updateShouldNotify',
'_ToolbarLayout',
'_ToolbarSlot',
'package:flutter/src/painting/box_decoration.dart',
'BoxDecoration',
'package:flutter/src/painting/decoration.dart',
'Decoration',
'DecoratedBox',
'_ModalBarrierGestureDetector',
'BlockSemantics',
'build.<anonymous closure @3763>',
'DecorationPosition',
'play',
'package:flutter/src/services/system_sound.dart',
'SystemSound',
'SystemSoundType',
'play{body}',
'get:extentInside',
'didPop',
'_notifyRemoved@519188637',
'LocalHistoryEntry',
'changedInternalState',
'set:maintainState',
'changedInternalState.<anonymous closure @54367>',
'_didChangeEntryOpacity@462319124',
'_didChangeEntryOpacity@462319124.<anonymous closure @17102>',
'_routeSetState@519188637',
'_ModalScopeState',
'get:_shouldIgnoreFocusRequest@519188637',
'setFirstFocus',
'_reparent@465042876',
'_updateManager@465042876',
'changedScope',
'changedScope.<anonymous closure @20653>',
'get:userGestureInProgress',
'willPop',
'willPop{body}',
'get:finishedWhenPopped',
'finalizeRoute',
'finalize',
'isRoutePredicate.<anonymous closure @105652>',
'install',
'createOverlayEntries',
'createOverlayEntries{body}',
'createOverlayEntries{body}.<anonymous closure @57707>',
'get:overlayEntries',
'didChangeNext',
'_updateSecondaryAnimation@519188637',
'_setSecondaryAnimation@519188637',
'TrainHoppingAnimation',
'new TrainHoppingAnimation.',
'_updateSecondaryAnimation@519188637._jumpOnAnimationEnd',
'_updateSecondaryAnimation@519188637.<anonymous closure @12574>',
'_updateSecondaryAnimation@519188637.<anonymous closure @12880>',
'removeStatusListener',
'[tear-off] _statusChangeHandler@85411118',
'[tear-off] _valueChangeHandler@85411118',
'_valueChangeHandler@85411118',
'_statusChangeHandler@85411118',
'_TrainHoppingMode',
'set:parent',
'_setSecondaryAnimation@519188637.<anonymous closure @14180>',
'didStopListening',
'didStartListening',
'[tear-off] notifyStatusListeners',
'didPopNext',
'reverse',
'didReplace',
'didAdd',
'didPush',
'createAnimationController',
'createAnimation',
'set:opaque',
'[tear-off] _handleStatusChanged@519188637',
'_handleStatusChanged@519188637',
'get:isActive',
'get:isActive.<anonymous closure @18404>',
'get:reverseTransitionDuration',
'get:debugLabel',
'didChangePrevious',
'KeyedSubtree',
'Offstage',
'_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver&TickerProviderStateMixin',
'_EditableTextState&State&AutomaticKeepAliveClientMixin&WidgetsBindingObserver',
'_EditableTextState&State&AutomaticKeepAliveClientMixin',
'new EditableTextState.',
'ClipboardStatusNotifier',
'_ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver',
'new _ClipboardStatusNotifier&ValueNotifier&WidgetsBindingObserver@438111801.',
'LayerLink',
'ClipboardStatus',
'[tear-off-extractor] get:visitAncestor',
'[tear-off] visitAncestor',
'visitAncestor',
'_dispatch@490140401',
'NotificationListener',
'GestureRecognizerFactoryWithHandlers',
'GestureRecognizerFactory',
'RawGestureDetector',
'build.<anonymous closure @27806>',
'build.<anonymous closure @27860>',
'build.<anonymous closure @28591>',
'build.<anonymous closure @28651>',
'build.<anonymous closure @29392>',
'build.<anonymous closure @29452>',
'build.<anonymous closure @30428>',
'build.<anonymous closure @30491>',
'build.<anonymous closure @31184>',
'build.<anonymous closure @31249>',
'build.<anonymous closure @31877>',
'build.<anonymous closure @31931>',
'package:flutter/src/gestures/monodrag.dart',
'PanGestureRecognizer',
'DragGestureRecognizer',
'OneSequenceGestureRecognizer',
'GestureRecognizer',
'_GestureRecognizer&GestureArenaMember&DiagnosticableTreeMixin',
'GestureArenaMember',
'new DragGestureRecognizer.',
'new OneSequenceGestureRecognizer.',
'[tear-off] _defaultBuilder@163099969',
'_DragState',
'_defaultBuilder@163099969',
'package:flutter/src/gestures/velocity_tracker.dart',
'VelocityTracker',
'HorizontalDragGestureRecognizer',
'VerticalDragGestureRecognizer',
'package:flutter/src/gestures/long_press.dart',
'LongPressGestureRecognizer',
'PrimaryPointerGestureRecognizer',
'new PrimaryPointerGestureRecognizer.',
'GestureRecognizerState',
'package:flutter/src/gestures/multitap.dart',
'DoubleTapGestureRecognizer',
'new DoubleTapGestureRecognizer.',
'package:flutter/src/gestures/tap.dart',
'TapGestureRecognizer',
'BaseTapGestureRecognizer',
'LimitedBox',
'get:_paddingIncludingDecoration@496235064',
'ColoredBox',
'get:padding',
'ApplicationSwitcherDescription',
'setApplicationSwitcherDescription',
'setApplicationSwitcherDescription{body}',
'_RouterState',
'set:optionsMask',
'package:flutter/src/rendering/performance_overlay.dart',
'RenderPerformanceOverlay',
'[tear-off-extractor] get:notify',
'[tear-off] notify',
'notify',
'_maybeStartHeroTransition@518011697',
'HeroFlightDirection',
'_startHeroTransition@518011697',
'set:offstage',
'_maybeStartHeroTransition@518011697.<anonymous closure @32742>',
'set:offstage.<anonymous closure @48287>',
'_AlwaysCompleteAnimation',
'_defaultHeroFlightShuttleBuilder@518011697',
'init:_defaultHeroFlightShuttleBuilder@518011697',
'_boundingBoxFor@518011697',
'get:subtreeContext',
'_allHeroesFor@518011697',
'_HeroFlightManifest',
'divert',
'_HeroFlight',
'[tear-off] _handleFlightEnded@518011697',
'[tear-off] _handleAnimationUpdate@518011697',
'ensurePlaceholderIsHidden.<anonymous closure @15133>',
'_handleAnimationUpdate@518011697',
'endFlight',
'ensurePlaceholderIsHidden',
'_handleFlightEnded@518011697',
'get:tag',
'get:animation',
'ReverseAnimation',
'_ReverseAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalStatusListenersMixin',
'startFlight',
'_doCreateRectTween@518011697',
'[tear-off] _buildOverlay@518011697',
'_buildOverlay@518011697',
'_buildOverlay@518011697.<anonymous closure @19128>',
'_reverseTween@518011697',
'init:_reverseTween@518011697',
'CurveTween',
'chain',
'get:size',
'new RelativeRect.fromSize',
'RelativeRect',
'Opacity',
'_ChainedEvaluation',
'startFlight.<anonymous closure @15009>',
'get:flipped',
'FlippedCurve',
'ReverseTween',
'new ReverseTween.',
'visitChildElements',
'[email protected]',
'[email protected]',
'init:_defaultHeroFlightShuttleBuilder@518011697.<anonymous closure @35695>',
'didComplete',
'didAdd.<anonymous closure @8083>',
'didPush.<anonymous closure @6956>',
'_NavigatorState&State&TickerProviderStateMixin',
'new NavigatorState.',
'_FocusTraversalGroupState',
'_MediaQueryFromWindowsState',
'__MediaQueryFromWindowsState&State&WidgetsBindingObserver',
'RenderAnnotatedRegion',
'set:sized',
'new RenderAnnotatedRegion.',
'_tempHashStore3@467043213',
'init:_tempHashStore3@467043213',
'_tempHashStore4@467043213',
'init:_tempHashStore4@467043213',
'_ShortcutsState',
'get:nearestScope',
'_ActionsState',
'new _ActionsState@464441002.',
'[tear-off-extractor] get:cancelPointer',
'[tear-off] cancelPointer',
'cancelPointer',
'[tear-off] _flushPointerEventQueue@151304576',
'_AnimatedState',
'set:opacity',
'_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin&RenderAnimatedOpacityMixin',
'set:alwaysIncludeSemantics',
'_updateOpacity@372160605',
'[tear-off] _updateOpacity@372160605',
'getAlphaFromOpacity',
'RenderAnimatedOpacity',
'_RenderAnimatedOpacity&RenderProxyBox&RenderProxyBoxMixin',
'new RenderAnimatedOpacity.',
'_TextSelectionHandleOverlayState',
'__TextSelectionHandleOverlayState&State&SingleTickerProviderStateMixin',
'_TextSelectionGestureDetectorState',
'[tear-off-extractor] get:onDragSelectionEnd',
'[tear-off] onDragSelectionEnd',
'[tear-off-extractor] get:onDragSelectionUpdate',
'[tear-off] onDragSelectionUpdate',
'onDragSelectionUpdate',
'selectPositionAt',
'_handleSelectionChange@358245603',
'get:editableText',
'[tear-off-extractor] get:onDragSelectionStart',
'[tear-off] onDragSelectionStart',
'onDragSelectionStart',
'[tear-off-extractor] get:onDoubleTapDown',
'[tear-off] onDoubleTapDown',
'onDoubleTapDown',
'get:selectionEnabled',
'selectWord',
'selectWordsInRange',
'_selectWordAtOffset@358245603',
'getWordBoundary',
'_getWordBoundary@16065589',
'[tear-off-extractor] get:onSingleLongTapEnd',
'[tear-off] onSingleLongTapEnd',
'onSingleLongTapEnd',
'[tear-off-extractor] get:onSingleTapCancel',
'[tear-off] onSingleTapCancel',
'[tear-off-extractor] get:onForcePressStart',
'[tear-off] onForcePressStart',
'onForcePressStart',
'[tear-off-extractor] get:onTapDown',
'[tear-off] onTapDown',
'onTapDown',
'handleTapDown',
'describeEnum',
'_MouseRegionState',
'RenderRepaintBoundary',
'set:delegate',
'RenderCustomMultiChildLayoutBox',
'package:flutter/src/cupertino/action_sheet.dart',
'__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin',
'__RenderCupertinoAlertActions&RenderBox&ContainerRenderObjectMixin',
'new RenderCustomMultiChildLayoutBox.',
'applyParentData',
'set:clipper',
'_RenderCustomClip',
'_markNeedsClip@372160605',
'RenderClipRect',
'new RenderClipRect.',
'RenderStack',
'set:fit',
'_markNeedResolution@384419958',
'_RenderStack&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin',
'__RenderTheatre&RenderBox&ContainerRenderObjectMixin',
'new RenderStack.',
'set:ignoringSemantics',
'get:_effectiveIgnoringSemantics@372160605',
'new RenderIgnorePointer.',
'RenderFollowerLayer',
'set:showWhenUnlinked',
'new RenderFollowerLayer.',
'RenderCustomSingleChildLayoutBox',
'new RenderCustomSingleChildLayoutBox.',
'_selectionAwareTextManipulation@430124616',
'formatEditUpdate.<anonymous closure @8404>',
'formatEditUpdate.<anonymous closure @8404>.<anonymous closure @8517>',
'[tear-off-extractor] get:_tick@397494659',
'[tear-off] _tick@397494659',
'_tick@397494659',
'loosen',
'alignChild',
'alongOffset',
'computeDistanceToActualBaseline',
'set:isSemanticBoundary',
'set:isMergingSemanticsOfDescendants',
'enforce',
'set:isEnabled',
'set:isButton',
'set:isHeader',
'set:isFocusable',
'set:isFocused',
'[tear-off] _performTap@372160605',
'[tear-off] _performDismiss@372160605',
'[tear-off] _performCopy@372160605',
'[tear-off] _performCut@372160605',
'[tear-off] _performPaste@372160605',
'_performPaste@372160605',
'_performCut@372160605',
'_performCopy@372160605',
'_performDismiss@372160605',
'_performTap@372160605',
'_addArgumentlessAction@400082469',
'_addAction@400082469',
'_addArgumentlessAction@400082469.<anonymous closure @110355>',
'get:_effectiveTransform@372160605',
'alongSize',
'getAsTranslation',
'set:layer',
'[tear-off] paint',
'_transform@16065589',
'addWithPaintTransform',
'hitTestChildren.<anonymous closure @75732>',
'addWithRawTransform',
'_MatrixTransformPart',
'[tear-off] systemFontsDidChange',
'systemFontsDidChange',
'get:textDirection',
'get:firstChild',
'_combineSemanticsInfo@369149678',
'_layoutTextWithConstraints@369149678',
'setPlaceholderDimensions',
'_layoutText@369149678',
'InlineSpanSemanticsInformation',
'getSemanticsInformation',
'any',
'describeSemanticsConfiguration.<anonymous closure @29949>',
'computeSemanticsInformation',
'set:blendMode',
'_ensureObjectsInitialized@16065589',
'paint.<anonymous closure @25541>',
'BlendMode',
'_kBlendModeDefault@16065589',
'init:_kBlendModeDefault@16065589',
'_layoutChildren@369149678',
'_setParentData@369149678',
'get:didExceedMaxLines',
'get:textScaleFactor',
'Gradient',
'new Gradient.linear',
'_validateColorStops@16065589',
'_encodeTwoPoints@16065589',
'_encodeColorList@16065589',
'_initLinear@16065589',
'PlaceholderAlignment',
'getSpanForPosition',
'getSpanForPosition.<anonymous closure @8061>',
'getSpanForPositionVisitor',
'hitTestChildren.<anonymous closure @15462>',
'get:alphabeticBaseline',
'get:ideographicBaseline',
'TextParentData',
'move',
'_removeFromChildList@368266271',
'_pushClipRect@16065589',
'ClipRectEngineLayer',
'defaultComputeDistanceToHighestActualBaseline',
'defaultComputeDistanceToFirstActualBaseline',
'get:type',
'dx',
'x',
'get:_x@300341779',
'forEachTween',
'forEachTween.<anonymous closure @9462>',
'ThemeDataTween',
'noDefault',
'_InheritedTheme',
'getHandleAnchor',
'buildToolbar',
'_TextSelectionToolbarLayout',
'canCut',
'canCopy',
'canPaste',
'canSelectAll',
'_TextSelectionToolbar',
'buildToolbar.<anonymous closure @26834>',
'buildToolbar.<anonymous closure @26912>',
'buildToolbar.<anonymous closure @27010>',
'buildToolbar.<anonymous closure @27100>',
'handleSelectAll',
'get:textEditingValue',
'handlePaste',
'handlePaste{body}',
'getData',
'package:flutter/src/services/clipboard.dart',
'Clipboard',
'textBefore',
'textAfter',
'getData{body}',
'ClipboardData',
'handleCopy',
'textInside',
'setData',
'update{body}',
'setData{body}',
'handleCut',
'get:selectAllEnabled',
'get:pasteEnabled',
'get:copyEnabled',
'get:cutEnabled',
'getHandleSize',
'[tear-off-extractor] get:onSingleLongTapStart',
'[tear-off] onSingleLongTapStart',
'onSingleLongTapStart',
'forLongPress',
'package:flutter/src/material/feedback.dart',
'Feedback',
'sendSemanticsEvent',
'_platform@222191779',
'vibrate',
'package:flutter/src/services/haptic_feedback.dart',
'HapticFeedback',
'package:flutter/src/semantics/semantics_event.dart',
'LongPressSemanticsEvent',
'SemanticsEvent',
'vibrate{body}',
'sendEvent',
'toMap',
'send{body}',
'[tear-off-extractor] get:onSingleTapUp',
'[tear-off] onSingleTapUp',
'onSingleTapUp',
'selectPosition',
'selectWordEdge',
'[tear-off-extractor] get:onSingleLongTapMoveUpdate',
'[tear-off] onSingleLongTapMoveUpdate',
'onSingleLongTapMoveUpdate',
'[tear-off-extractor] get:onForcePressEnd',
'[tear-off] onForcePressEnd',
'_scaleFloatingActionButton@264420462',
'_removeTicker@432311458',
'_FloatingActionButtonTransitionState',
'__FloatingActionButtonTransitionState&State&TickerProviderStateMixin',
'_MaterialState',
'__MaterialState&State&TickerProviderStateMixin',
'_InputBorderGap',
'new _InputBorderGap@239019562.',
'_InputDecoratorState',
'__InputDecoratorState&State&TickerProviderStateMixin',
'_ParentInkResponseProvider',
'_InkResponseStateWidget',
'[tear-off] getRectCallback',
'package:flutter/src/material/tooltip.dart',
'Tooltip',
'set:minSize',
'_RenderInputPadding',
'new _RenderInputPadding@193219276.',
'get:_effectiveElevation@189412912',
'[tear-off] _handleFocusedChanged@189412912',
'[tear-off] _handleHighlightChanged@189412912',
'[tear-off] _handleHoveredChanged@189412912',
'_handleHoveredChanged@189412912',
'get:_hovered@189412912',
'_handleHoveredChanged@189412912.<anonymous closure @11702>',
'_updateState@189412912',
'_handleHighlightChanged@189412912',
'get:_pressed@189412912',
'_handleHighlightChanged@189412912.<anonymous closure @11434>',
'_handleFocusedChanged@189412912',
'get:_focused@189412912',
'_handleFocusedChanged@189412912.<anonymous closure @11867>',
'get:_disabled@189412912',
'build.<anonymous closure @3963>',
'BackButtonIcon',
'set:begin',
'_RenderAppBarTitleBox',
'new _RenderAppBarTitleBox@177187611.',
'leftTranslate',
'[tear-off-extractor] get:contains',
'[tear-off] contains',
'_CupertinoTextSelectionToolbarWrapper',
'buildToolbar.<anonymous closure @16603>',
'buildToolbar.<anonymous closure @16675>',
'buildToolbar.<anonymous closure @16767>',
'buildToolbar.<anonymous closure @16851>',
'transformInternal',
'[tear-off-extractor] get:_updateCurveDirection@85411118',
'[tear-off] _updateCurveDirection@85411118',
'get:_useForwardCurve@85411118',
'didRegisterListener',
'[tear-off-extractor] get:_tick@84066280',
'[tear-off] _tick@84066280',
'_tick@84066280',
'_explodeReplace@22424462',
'StringCharacterRange',
'asInt8List',
'new List.empty',
'_setUint8@7027147',
'_setUint64@7027147',
'_setUint16@7027147',
'_setInt16@7027147',
'_setFloat64@7027147',
'_setInt8@7027147',
'_setFloat32@7027147',
'_setInt64@7027147',
'_setInt32@7027147',
'createPeriodicTimer',
'bindUnaryCallbackGuarded',
'bindUnaryCallbackGuarded.<anonymous closure @51909>',
'bindUnaryCallbackGuarded.<anonymous closure @38900>',
'intersection',
'_CustomHashSet',
'new _CustomHashSet@3220832.',
'_IdentityHashSet',
'_TypeTest',
'[tear-off] test',
'new List.filled',
'round',
'_mulFromInteger@0150898',
'shouldRelayout',
'_AnyTapGestureRecognizerFactory',
'_ModalBarrierSemanticsDelegate',
'SemanticsGestureDelegate',
'[tear-off-extractor] get:_buildModalScope@519188637',
'[tear-off] _buildModalScope@519188637',
'_buildModalScope@519188637',
'_ModalScope',
'[tear-off-extractor] get:_buildModalBarrier@519188637',
'[tear-off] _buildModalBarrier@519188637',
'_buildModalBarrier@519188637',
'reparent',
'build.<anonymous closure @97742>',
'_semanticsOnCopy@512183791',
'_semanticsOnCut@512183791',
'_semanticsOnPaste@512183791',
'buildTextSpan',
'get:_cursorColor@512183791',
'get:strutStyle',
'get:_devicePixelRatio@512183791',
'_Editable',
'CompositedTransformTarget',
'package:flutter/src/painting/strut_style.dart',
'new StrutStyle.fromTextStyle',
'get:isComposingRangeValid',
'_semanticsOnPaste@512183791.<anonymous closure @96999>',
'_semanticsOnCut@512183791.<anonymous closure @96689>',
'_semanticsOnCopy@512183791.<anonymous closure @96451>',
'package:flutter/src/widgets/focus_scope.dart',
'Focus',
'_closeInputConnectionIfNeeded@512183791',
'[tear-off] _didChangeTextEditingValue@512183791',
'[tear-off] _onCursorColorTick@512183791',
'[tear-off] _onFloatingCursorResetTick@512183791',
'[tear-off] _handleFocusChanged@512183791',
'[tear-off] _onChangedClipboardStatus@512183791',
'_onChangedClipboardStatus@512183791',
'_onChangedClipboardStatus@512183791.<anonymous closure @62279>',
'_handleFocusChanged@512183791',
'_openOrCloseInputConnectionIfNeeded@512183791',
'_startOrStopCursorTimerIfNeeded@512183791',
'_updateOrDisposeSelectionOverlayIfNeeded@512183791',
'updateKeepAlive',
'get:wantKeepAlive',
'_ensureKeepAlive@446490736',
'_releaseKeepAlive@446490736',
'release',
'package:flutter/src/widgets/automatic_keep_alive.dart',
'KeepAliveHandle',
'new KeepAliveHandle.',
'KeepAliveNotification',
'consumeKeyboardToken',
'_onCursorColorTick@512183791',
'set:cursorColor',
'_didChangeTextEditingValue@512183791',
'_didChangeTextEditingValue@512183791.<anonymous closure @91083>',
'_clearClient@431206165',
'_scheduleHide@431206165',
'_scheduleHide@431206165.<anonymous closure @44305>',
'get:_shouldBeInAutofillContext@512183791',
'package:flutter/src/widgets/autofill.dart',
'AutofillGroup',
'initState.<anonymous closure @62792>',
'updateForScroll',
'set:decoration',
'RenderDecoratedBox',
'createLocalImageConfiguration',
'package:flutter/src/widgets/image.dart',
'set:position',
'package:flutter/src/painting/image_provider.dart',
'ImageConfiguration',
'DefaultAssetBundle',
'new RenderDecoratedBox.',
'removeCallback',
'[tear-off] _handleRouteInformationProviderNotification@482049130',
'[tear-off] _handleBackButtonDispatcherNotification@482049130',
'[tear-off] _handleRouterDelegateNotification@482049130',
'_handleRouterDelegateNotification@482049130',
'_maybeNeedToReportRouteInformation@482049130',
'_handleRouterDelegateNotification@482049130.<anonymous closure @29318>',
'_scheduleRouteInformationReportingTask@482049130',
'_IntentionToReportRouteInformation',
'[tear-off] _reportRouteInformation@482049130',
'_reportRouteInformation@482049130',
'_retrieveNewRouteInformation@482049130',
'_handleBackButtonDispatcherNotification@482049130',
'_handleRouteInformationProviderNotification@482049130',
'get:hasCallbacks',
'addCallback',
'_processInitialRoute@482049130',
'FocusScope',
'AbsorbPointer',
'Listener',
'[tear-off] _handlePointerDown@480124995',
'[tear-off] _handlePointerUpOrCancel@480124995',
'_handlePointerUpOrCancel@480124995',
'_handlePointerDown@480124995',
'_updateHeroController@480124995',
'_updateEffectiveObservers@480124995',
'initState.<anonymous closure @111657>',
'_FocusTraversalGroupMarker',
'new MediaQueryData.fromWindow',
'new EdgeInsets.fromWindowPadding',
'didChangePlatformBrightness.<anonymous closure @69974>',
'didChangeTextScaleFactor.<anonymous closure @69679>',
'didChangeMetrics.<anonymous closure @69448>',
'didChangeAccessibilityFeatures.<anonymous closure @69211>',
'get:manager',
'_ShortcutsMarker',
'package:flutter/src/widgets/inherited_notifier.dart',
'InheritedNotifier',
'[tear-off] _handleOnKey@467043213',
'_handleOnKey@467043213',
'handleKeypress',
'ShortcutManager',
'_synonyms@410369999',
'init:_synonyms@410369999',
'get:keysPressed',
'new HashSet.from',
'get:primaryFocus',
'invoke',
'_visitActionsAncestors@464441002',
'_findDispatcher@464441002',
'invokeAction',
'ActionDispatcher',
'invoke.<anonymous closure @23332>',
'_findDispatcher@464441002.<anonymous closure @18183>',
'_getParent@464441002.<anonymous closure @939>',
'set:shortcuts',
'_ShortcutManager&ChangeNotifier&Diagnosticable',
'new _ShortcutManager&ChangeNotifier&Diagnosticable@467043213.',
'_ActionsMarker',
'[tear-off] _handleActionChanged@464441002',
'_handleActionChanged@464441002',
'_handleActionChanged@464441002.<anonymous closure @25542>',
'_updateActionListeners@464441002',
'getDataMap',
'[tear-off] _handleChange@447170175',
'_handleChange@447170175',
'_handleChange@447170175.<anonymous closure @6109>',
'build.<anonymous closure @50262>',
'build.<anonymous closure @50326>',
'build.<anonymous closure @50787>',
'build.<anonymous closure @50878>',
'build.<anonymous closure @51542>',
'build.<anonymous closure @51638>',
'build.<anonymous closure @52216>',
'build.<anonymous closure @52277>',
'package:flutter/src/gestures/force_press.dart',
'ForcePressGestureRecognizer',
'new ForcePressGestureRecognizer.',
'[tear-off] _inverseLerp@159518508',
'_ForceState',
'_inverseLerp@159518508',
'_TransparentTapGestureRecognizer',
'_chooseType@438111801',
'get:_opacity@438111801',
'[tear-off] _handleDragStart@438111801',
'[tear-off] _handleDragUpdate@438111801',
'[tear-off] _handleTap@438111801',
'_handleTap@438111801',
'_handleDragUpdate@438111801',
'_handleDragStart@438111801',
'get:_visibility@438111801',
'[tear-off] _handleVisibilityChanged@438111801',
'_handleVisibilityChanged@438111801',
'get:_textDirection@436081674',
'_LocalizationsScope',
'_anyDelegatesShouldReload@436081674',
'_loadAll@436081674',
'deferFirstFrame',
'load.<anonymous closure @20121>',
'load.<anonymous closure @20782>',
'allowFirstFrame',
'load.<anonymous closure @20782>.<anonymous closure @20853>',
'package:flutter/src/foundation/synchronous_future.dart',
'SynchronousFuture',
'_Pending',
'_loadAll@436081674.<anonymous closure @3038>',
'_loadAll@436081674.<anonymous closure @3100>',
'_OffstageElement',
'RenderOffstage',
'markNeedsLayoutForSizedByParentChange',
'new RenderOffstage.',
'RenderOpacity',
'new RenderOpacity.',
'set:maxWidth',
'RenderLimitedBox',
'set:maxHeight',
'new RenderLimitedBox.',
'_RawMouseRegion',
'_RenderColoredBox',
'RenderProxyBoxWithHitTestBehavior',
'new RenderProxyBoxWithHitTestBehavior.',
'set:blocking',
'RenderBlockSemantics',
'_EffectiveTickerMode',
'paintStack',
'[tear-off] paintStack',
'_resolve@384419958',
'get:biggest',
'layoutPositionedChild',
'StackParentData',
'_getSize@375204652',
'positionDependentBox',
'package:flutter/src/painting/geometry.dart',
'getApproximateClipRect',
'CustomClipper',
'pushOpacity',
'OpacityLayer',
'set:alpha',
'AnnotatedRegionLayer',
'new AnnotatedRegionLayer.',
'getCurrentTransform',
'get:layer',
'getLastTransform',
'FollowerLayer',
'hitTestChildren.<anonymous closure @167649>',
'_updateClip@372160605',
'getClipPath',
'addRect',
'_addRect@16065589',
'get:shortestSide',
'toRRect',
'new RRect.fromRectAndCorners',
'PerformanceOverlayLayer',
'addLayer',
'get:_intrinsicHeight@370266397',
'_getSize@354472081',
'_callPerformLayout@354472081',
'getSize',
'MultiChildLayoutParentData',
'SpringType',
'isDone',
'nearZero',
'_TooltipState',
'__TooltipState&State&SingleTickerProviderStateMixin',
'_lerpProperties@192404313',
'_lerpSides@192404313',
'_lerpShapes@192404313',
'[tear-off] lerp',
'[tear-off] lerpDouble',
'lerpDouble',
'_LerpShapes',
'_LerpSides',
'_LerpProperties',
'_scaleAlpha@16065589',
'_TextSelectionToolbarState',
'__TextSelectionToolbarState&State&TickerProviderStateMixin',
'RotationTransition',
'ScaleTransition',
'_updateAnimations@264420462',
'_updateGeometryScale@264420462',
'[tear-off] _handlePreviousAnimationStatusChanged@264420462',
'_handlePreviousAnimationStatusChanged@264420462',
'_handlePreviousAnimationStatusChanged@264420462.<anonymous closure @30669>',
'_updateWith@264420462',
'_entranceTurnTween@264420462',
'init:_entranceTurnTween@264420462',
'getScaleAnimation',
'getRotationAnimation',
'AnimationMin',
'CompoundAnimation',
'_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin',
'_CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin',
'_CompoundAnimation&Animation&AnimationLazyListenerMixin',
'new _CompoundAnimation&Animation&AnimationLazyListenerMixin&AnimationLocalListenersMixin&AnimationLocalStatusListenersMixin@85411118.',
'[tear-off] _onProgressChanged@264420462',
'_onProgressChanged@264420462',
'[tear-off] _maybeNotifyListeners@85411118',
'[tear-off] _maybeNotifyStatusListeners@85411118',
'_maybeNotifyStatusListeners@85411118',
'_maybeNotifyListeners@85411118',
'_rotationTween@226063916',
'init:_rotationTween@226063916',
'_thresholdCenterTween@226063916',
'init:_thresholdCenterTween@226063916',
'_AnimationSwap',
'Threshold',
'_getBackgroundColor@241372823',
'AnimatedDefaultTextStyle',
'_InkFeatures',
'applyOverlay',
'package:flutter/src/material/elevation_overlay.dart',
'ElevationOverlay',
'AnimatedPhysicalModel',
'_getShape@241372823',
'_transparentInterior@241372823',
'_MaterialInterior',
'build.<anonymous closure @14773>',
'_didChangeLayout@241372823',
'_RenderInkFeatures',
'_ShapeBorderPaint',
'ShapeBorderClipper',
'ClipPath',
'kMaterialEdges',
'init:kMaterialEdges',
'_getInlineStyle@239019562',
'get:decoration',
'_getDefaultBorder@239019562',
'_getFillColor@239019562',
'_getHoverColor@239019562',
'get:isHovering',
'_BorderContainer',
'_getActiveColor@239019562',
'_getDefaultIconColor@239019562',
'get:textAlign',
'_getHelperStyle@239019562',
'_getErrorStyle@239019562',
'_HelperError',
'_Decoration',
'get:isFocused',
'_Decorator',
'_getDefaultBorderColor@239019562',
'package:flutter/src/material/input_border.dart',
'UnderlineInputBorder',
'InputBorder',
'alphaBlend',
'get:_floatingLabelEnabled@239019562',
'[tear-off] _handleChange@239019562',
'_handleChange@239019562',
'_handleChange@239019562.<anonymous closure @62295>',
'_InkResponseState',
'__InkResponseState&State&AutomaticKeepAliveClientMixin',
'new _InkResponseState@237059085.',
'center',
'forceToPoint',
'hitTest.<anonymous closure @16433>',
'new _RenderInputPadding@189412912.',
'_getIconData@180114528',
'cos',
'sin',
'_sin@12383281',
'_cos@12383281',
'rejectGesture',
'_checkCancel@171069716',
'_reset@171069716',
'acceptGesture',
'_checkDown@171069716',
'_checkUp@171069716',
'_stopTimer@168296176',
'_reject@165391311',
'_freezeTracker@165391311',
'_reset@165391311',
'GestureDisposition',
'_stopDoubleTapTimer@165391311',
'_clearTrackers@165391311',
'[tear-off] _reject@165391311',
'stopTrackingPointer',
'_TapTracker',
'[tear-off] _handleEvent@165391311',
'_handleEvent@165391311',
'_registerFirstTap@165391311',
'_registerSecondTap@165391311',
'isWithinGlobalTolerance',
'_checkUp@165391311',
'_startDoubleTapTimer@165391311',
'hold',
'[tear-off] _reset@165391311',
'removeRoute',
'_resolve@150060655',
'_giveUpPointer@163099969',
'resolvePointer',
'OffsetPair',
'_checkStart@163099969',
'_checkUpdate@163099969',
'_pendingDragOffset@163099969',
'_initialPosition@163099969',
'package:flutter/src/gestures/drag_details.dart',
'DragUpdateDetails',
'_checkUpdate@163099969.<anonymous closure @16222>',
'DragStartDetails',
'_checkStart@163099969.<anonymous closure @15671>',
'multiplied',
'_InheritedCupertinoTheme',
'_CupertinoTextSelectionToolbarWrapperState',
'didUnregisterListener',
'[tear-off-extractor] get:_valueChangeHandler@85411118',
'[tear-off-extractor] get:_statusChangeHandler@85411118',
'get:string',
'_advanceEnd@22424462',
'_move@22424462',
'hasChild',
'layoutChild',
'positionChild',
'new _ModalScopeState@519188637.',
'changedExternalState',
'_forceRebuildPage@519188637',
'_forceRebuildPage@519188637.<anonymous closure @27544>',
'[tear-off-extractor] get:_handleCaretChanged@512183791',
'[tear-off] _handleCaretChanged@512183791',
'_handleCaretChanged@512183791',
'[tear-off-extractor] get:_handleSelectionChanged@512183791',
'[tear-off] _handleSelectionChanged@512183791',
'set:startHandleLayerLink',
'set:endHandleLayerLink',
'set:showCursor',
'set:forceLine',
'set:hasFocus',
'set:minLines',
'set:expands',
'set:selectionColor',
'set:obscureText',
'set:cursorWidth',
'set:cursorHeight',
'set:cursorRadius',
'set:cursorOffset',
'set:selectionHeightStyle',
'set:selectionWidthStyle',
'set:devicePixelRatio',
'set:paintCursorAboveText',
'set:promptRectColor',
'setPromptRectRange',
'get:promptRectColor',
'get:color',
'markNeedsTextLayout',
'[tear-off] markNeedsPaint',
'[tear-off] _handleKeyEvent@358245603',
'_handleKeyEvent@358245603',
'_nonModifierKeys@358245603',
'init:_nonModifierKeys@358245603',
'_macOsModifierKeys@358245603',
'init:_macOsModifierKeys@358245603',
'_modifierKeys@358245603',
'init:_modifierKeys@358245603',
'_interestingKeys@358245603',
'init:_interestingKeys@358245603',
'_movementKeys@358245603',
'init:_movementKeys@358245603',
'_shortcutKeys@358245603',
'init:_shortcutKeys@358245603',
'collapseSynonyms',
'get:isAltPressed',
'get:isControlPressed',
'get:isMetaPressed',
'get:isShiftPressed',
'_handleMovement@358245603',
'_handleShortcuts@358245603',
'_handleDelete@358245603',
'get:_plainText@358245603',
'nextCharacter',
'skipWhile',
'nextCharacter.<anonymous closure @22177>',
'_isWhitespace@358245603',
'_handleShortcuts@358245603{body}',
'previousCharacter',
'_selectLineAtOffset@358245603',
'getLineBoundary',
'_getLineBoundary@16065589',
'isKeyPressed',
'package:flutter/src/material/range_slider.dart',
'__RenderRangeSlider&RenderBox&RelayoutWhenSystemFontsChangeMixin',
'new RenderEditable.',
'_InheritedNotifierElement',
'new _InheritedNotifierElement@504313948.',
'[tear-off] _handleUpdate@504313948',
'_handleUpdate@504313948',
'get:_defaultBehavior@500132872',
'_GestureSemantics',
'[tear-off] _handlePointerDown@500132872',
'[tear-off] _updateSemanticsForRenderObject@500132872',
'_updateSemanticsForRenderObject@500132872',
'_handlePointerDown@500132872',
'_DefaultSemanticsGestureDelegate',
'_syncAll@500132872',
'_ScrollableState&State&TickerProviderStateMixin&RestorationMixin',
'new ScrollableState.',
'_getIncrement@483019050',
'ViewportOffset',
'_calculateScrollIncrement@483019050',
'isEnabled',
'focusInDirection',
'inDirection',
'findFirstFocusInDirection',
'_popPolicyDataIfNeeded@479280150',
'get:traversalDescendants',
'_sortAndFilterVertically@479280150',
'get:atEdge',
'_sortAndFilterHorizontally@479280150',
'_pushPolicyData@479280150',
'inDirection.<anonymous closure @31193>',
'inDirection.<anonymous closure @31866>',
'inDirection.<anonymous closure @32294>',
'inDirection.<anonymous closure @32867>',
'inDirection.<anonymous closure @33542>',
'inDirection.<anonymous closure @33966>',
'_DirectionalPolicyDataEntry',
'_DirectionalPolicyData',
'get:traversalDescendants.<anonymous closure @24940>',
'_sortAndFilterHorizontally@479280150.<anonymous closure @23277>',
'_sortAndFilterHorizontally@479280150.<anonymous closure @23477>',
'_sortAndFilterHorizontally@479280150.<anonymous closure @23639>',
'_sortAndFilterVertically@479280150.<anonymous closure @24283>',
'_sortAndFilterVertically@479280150.<anonymous closure @24447>',
'_sortAndFilterVertically@479280150.<anonymous closure @24590>',
'[email protected]',
'_sortAndFindInitial@479280150',
'_sortAndFindInitial@479280150.<anonymous closure @21953>',
'_FocusScopeState',
'_FocusState',
'_OverlayState&State&TickerProviderStateMixin',
'_AnimatedDefaultTextStyleState',
'_AnimatedPhysicalModelState',
'new Matrix4.rotationZ',
'setRotationZ',
'[tear-off-extractor] get:_handleLongPressEnd@438111801',
'[tear-off] _handleLongPressEnd@438111801',
'_handleLongPressEnd@438111801',
'[tear-off-extractor] get:_handleLongPressMoveUpdate@438111801',
'[tear-off] _handleLongPressMoveUpdate@438111801',
'_handleLongPressMoveUpdate@438111801',
'[tear-off-extractor] get:_handleLongPressStart@438111801',
'[tear-off] _handleLongPressStart@438111801',
'_handleLongPressStart@438111801',
'[tear-off-extractor] get:_forcePressEnded@438111801',
'[tear-off] _forcePressEnded@438111801',
'_forcePressEnded@438111801',
'[tear-off-extractor] get:_forcePressStarted@438111801',
'[tear-off] _forcePressStarted@438111801',
'_forcePressStarted@438111801',
'[tear-off-extractor] get:_handleDragEnd@438111801',
'[tear-off] _handleDragEnd@438111801',
'_handleDragEnd@438111801',
'_handleDragUpdateThrottled@438111801',
'[tear-off-extractor] get:_handleDragUpdate@438111801',
'[tear-off] _handleDragUpdateThrottled@438111801',
'[tear-off-extractor] get:_handleDragStart@438111801',
'[tear-off-extractor] get:_handleTapCancel@438111801',
'[tear-off] _handleTapCancel@438111801',
'_handleTapCancel@438111801',
'[tear-off-extractor] get:_handleTapUp@438111801',
'[tear-off] _handleTapUp@438111801',
'_handleTapUp@438111801',
'[tear-off] _doubleTapTimeout@438111801',
'_doubleTapTimeout@438111801',
'[tear-off-extractor] get:_handleTapDown@438111801',
'[tear-off] _handleTapDown@438111801',
'_handleTapDown@438111801',
'_isWithinDoubleTapTolerance@438111801',
'shouldReload',
'DefaultWidgetsLocalizations',
'isSupported',
'_PointerListener',
'RenderLeaderLayer',
'new RenderLeaderLayer.',
'getHandleExit',
'set:cursor',
'RenderMouseRegion',
'[tear-off] handleExit',
'handleExit',
'new RenderMouseRegion.',
'RenderClipPath',
'new RenderClipPath.',
'_limitConstraints@372160605',
'get:_defaultClip@372160605',
'setIsComplexHint',
'set:isComplexHint',
'_pushOpacity@16065589',
'OpacityEngineLayer',
'_establishTransform@363518307',
'_collectTransformForLayerChain@363518307',
'addPerformanceOverlay',
'setRasterizerTracingThreshold',
'setCheckerboardRasterCacheImages',
'setCheckerboardOffscreenLayers',
'_addPerformanceOverlay@16065589',
'AnnotationEntry',
'getOuterPath',
'new RRect.fromRectAndRadius',
'lerpTo',
'_StadiumToCircleBorder',
'_StadiumToRoundedRectangleBorder',
'lerpFrom',
'_RoundedRectangleToCircleBorder',
'subtract',
'TooltipTheme',
'[tear-off] _handleLongPress@295220820',
'build.<anonymous closure @14910>',
'build.<anonymous closure @14971>',
'_hideTooltip@295220820',
'_removeEntry@295220820',
'_showTooltip@295220820',
'_handleLongPress@295220820',
'ensureTooltipVisible',
'_createNewEntry@295220820',
'_TooltipOverlay',
'tooltip',
'package:flutter/src/semantics/semantics_service.dart',
'SemanticsService',
'_createNewEntry@295220820.<anonymous closure @11511>',
'tooltip{body}',
'TooltipSemanticsEvent',
'removeGlobalRoute',
'[tear-off] _handlePointerEvent@295220820',
'[tear-off] _handleMouseTrackerChange@295220820',
'_handleMouseTrackerChange@295220820',
'_handleMouseTrackerChange@295220820.<anonymous closure @8927>',
'_handlePointerEvent@295220820',
'[tear-off] _handleStatusChanged@295220820',
'_handleStatusChanged@295220820',
'getPositionForChild',
'_ItemData',
'_getItem@284283233',
'_TextSelectionToolbarItems',
'new _TextSelectionToolbarItems@284283233.',
'package:flutter/src/widgets/animated_size.dart',
'AnimatedSize',
'_TextSelectionToolbarContainer',
'build.<anonymous closure @8402>',
'build.<anonymous closure @8402>.<anonymous closure @8436>',
'new Border.all',
'Border',
'package:flutter/src/material/flat_button.dart',
'TextButton',
'BoxBorder',
'[tear-off] _onChangedClipboardStatus@284283233',
'_onChangedClipboardStatus@284283233',
'_onChangedClipboardStatus@284283233.<anonymous closure @3925>',
'_reset@284283233',
'buildHandle',
'_TextSelectionHandlePainter',
'package:flutter/src/rendering/custom_paint.dart',
'CustomPainter',
'CustomPaint',
'new Transform.rotate',
'_BodyBoxConstraints',
'ScaffoldPrelayoutGeometry',
'getOffset',
'getOffsetX',
'getOffsetY',
'_rightOffsetX@226063916',
'DefaultMaterialLocalizations',
'new _RenderInkFeatures@241372823.',
'_ShapeBorderPainter',
'_MaterialInteriorState',
'_RenderDecoration',
'set:textAlignVertical',
'new _RenderDecoration@239019562.',
'_DecorationElement',
'_BorderContainerState',
'__BorderContainerState&State&TickerProviderStateMixin',
'_HelperErrorState',
'__HelperErrorState&State&SingleTickerProviderStateMixin',
'getHighlightColorForType',
'InteractiveInkFeature',
'get:_canRequestFocus@237059085',
'get:enabled',
'_UnmodifiableSet',
'[tear-off] _handleFocusUpdate@237059085',
'[tear-off] _handleMouseEnter@237059085',
'[tear-off] _handleMouseExit@237059085',
'[tear-off] _handleTapDown@237059085',
'build.<anonymous closure @40319>',
'[tear-off] _handleTapCancel@237059085',
'_handleTapCancel@237059085',
'updateHighlight',
'_HighlightType',
'markChildInkResponsePressed',
'package:flutter/src/material/ink_highlight.dart',
'InkHighlight',
'InkFeature',
'new InkHighlight.',
'updateHighlight.handleInkRemoval',
'get:highlightsExist',
'get:highlightsExist.<anonymous closure @27902>',
'IntTween',
'addInkFeature',
'[tear-off] _handleAlphaStatusChanged@234209331',
'_handleAlphaStatusChanged@234209331',
'_removeFeature@241372823',
'get:_anyChildInkResponsePressed@237059085',
'_handleTap@237059085',
'forTap',
'forTap{body}',
'TapSemanticEvent',
'_handleTapDown@237059085',
'_startSplash@237059085',
'_createInkFeature@237059085',
'InkSplash',
'new InkSplash.',
'InkRipple',
'new InkRipple.',
'[email protected]',
'_easeCurveTween@235110234',
'init:_easeCurveTween@235110234',
'_fadeOutIntervalTween@235110234',
'init:_fadeOutIntervalTween@235110234',
'_getTargetRadius@235110234',
'_getClipCallback@235110234.<anonymous closure @1024>',
'[tear-off] _handleAlphaStatusChanged@235110234',
'_handleAlphaStatusChanged@235110234',
'topRight',
'bottomLeft',
'_getTargetRadius@236036029',
'_getClipCallback@236036029.<anonymous closure @844>',
'[tear-off] _handleAlphaStatusChanged@236036029',
'_handleAlphaStatusChanged@236036029',
'_getSplashRadiusForPositionInSize@236036029',
'_handleMouseExit@237059085',
'_handleHoverChange@237059085',
'_handleMouseEnter@237059085',
'_handleFocusUpdate@237059085',
'_updateFocusHighlights@237059085',
'get:_shouldShowFocus@237059085',
'removeHighlightModeListener',
'[tear-off] _handleFocusHighlightModeChange@237059085',
'_handleFocusHighlightModeChange@237059085',
'_handleFocusHighlightModeChange@237059085.<anonymous closure @34382>',
'CallbackAction',
'addHighlightModeListener',
'[tear-off] _handleAction@237059085',
'_handleAction@237059085',
'hitTest.<anonymous closure @18825>',
'handleTapCancel',
'handleTapUp',
'TapUpDetails',
'handleTapUp.<anonymous closure @22706>',
'getKindForPointer',
'TapDownDetails',
'handleTapDown.<anonymous closure @21909>',
'[tear-off-extractor] get:handleEvent',
'[tear-off] handleEvent',
'_getGlobalDistance@168296176',
'_reset@161232524',
'stopTrackingIfPointerNoLongerDown',
'didStopTrackingLastPointer',
'_globalDistanceMoved@163099969',
'_checkCancel@163099969',
'_checkEnd@163099969',
'get:distanceSquared',
'Velocity',
'clampMagnitude',
'DragEndDetails',
'_checkEnd@163099969.<anonymous closure @17011>',
'_checkEnd@163099969.<anonymous closure @17211>',
'_checkEnd@163099969.<anonymous closure @17399>',
'new OffsetPair.fromEventPosition',
'handleEvent.<anonymous closure @11396>',
'ForcePressDetails',
'_lastPosition@159518508',
'didStopTrackingLastPointer.<anonymous closure @13207>',
'acceptGesture.<anonymous closure @12664>',
'_lastPressure@159518508',
'whenComplete.<anonymous closure @1901>',
'new SizedBox.fromSize',
'rotateZ',
'CupertinoLocalizations',
'_CupertinoTextSelectionToolbarContent',
'CupertinoTextSelectionToolbar',
'build.addToolbarButton',
'package:flutter/src/cupertino/button.dart',
'CupertinoButton',
'[tear-off] _onChangedClipboardStatus@119300207',
'_onChangedClipboardStatus@119300207',
'_onChangedClipboardStatus@119300207.<anonymous closure @3322>',
'DefaultCupertinoLocalizations',
'assignSemantics',
'initializer',
'constructor',
'_AnyTapGestureRecognizer',
'new _AnyTapGestureRecognizer@529005443.',
'_actionMap@519188637',
'init:_actionMap@519188637',
'_ModalScopeStatus',
'build.<anonymous closure @29057>',
'build.<anonymous closure @30467>',
'buildPage',
'buildTransitions',
'build.<anonymous closure @29057>.<anonymous closure @29787>',
'isPopGestureInProgress',
'package:flutter/src/cupertino/route.dart',
'CupertinoRouteTransitionMixin',
'_DismissModalAction',
'DismissAction',
'_getTapHandler@500132872',
'_getLongPressHandler@500132872',
'_getHorizontalDragUpdateHandler@500132872',
'set:onHorizontalDragUpdate',
'_getVerticalDragUpdateHandler@500132872',
'set:onVerticalDragUpdate',
'_getVerticalDragUpdateHandler@500132872.<anonymous closure @52561>',
'_getVerticalDragUpdateHandler@500132872.<anonymous closure @53088>',
'_getVerticalDragUpdateHandler@500132872.<anonymous closure @53544>',
'DragDownDetails',
'_getHorizontalDragUpdateHandler@500132872.<anonymous closure @50963>',
'_getHorizontalDragUpdateHandler@500132872.<anonymous closure @51510>',
'_getHorizontalDragUpdateHandler@500132872.<anonymous closure @51968>',
'_getLongPressHandler@500132872.<anonymous closure @50086>',
'LongPressStartDetails',
'LongPressEndDetails',
'_getTapHandler@500132872.<anonymous closure @49549>',
'_ScrollableScope',
'[tear-off] _receivedPointerSignal@483019050',
'_receivedPointerSignal@483019050',
'_targetScrollOffsetForPointerScroll@483019050',
'[tear-off] _handlePointerScroll@483019050',
'_handlePointerScroll@483019050',
'shouldAcceptUserOffset',
'get:axis',
'_shouldUpdatePosition@483019050',
'_updatePosition@483019050',
'getScrollPhysics',
'createScrollPosition',
'new ScrollPositionWithSingleContext.',
'new ScrollPosition.',
'correctPixels',
'new ViewportOffset.',
'restoreScrollOffset',
'readState',
'updateDelegate',
'BouncingScrollPhysics',
'RangeMaintainingScrollPhysics',
'ClampingScrollPhysics',
'restoreOffset',
'set:duration',
'package:flutter/src/rendering/animated_size.dart',
'RenderAnimatedSize',
'set:reverseDuration',
'set:curve',
'set:vsync',
'resync',
'absorbTicker',
'new RenderAnimatedSize.',
'SizeTween',
'RenderAnimatedSizeState',
'new RenderAnimatedSize..<anonymous closure @3385>',
'get:focusNode',
'_FocusMarker',
'set:skipTraversal',
'set:descendantsAreFocusable',
'_initNode@466492240',
'_handleAutofocus@466492240',
'[tear-off] _handleFocusChanged@466492240',
'_handleFocusChanged@466492240',
'_handleFocusChanged@466492240.<anonymous closure @24266>',
'_handleFocusChanged@466492240.<anonymous closure @24393>',
'_handleFocusChanged@466492240.<anonymous closure @24536>',
'autofocus',
'_OverlayEntryWidget',
'_Theatre',
'PhysicalModel',
'forEachTween.<anonymous closure @69169>',
'forEachTween.<anonymous closure @69314>',
'forEachTween.<anonymous closure @69433>',
'forEachTween.<anonymous closure @69563>',
'ColorTween',
'BorderRadiusTween',
'forEachTween.<anonymous closure @64756>',
'TextStyleTween',
'set:painter',
'RenderCustomPaint',
'set:foregroundPainter',
'_didUpdatePainter@355012902',
'shouldRebuildSemantics',
'set:preferredSize',
'new RenderCustomPaint.',
'RenderPointerListener',
'new RenderPointerListener.',
'pushClipPath',
'ClipPathLayer',
'set:clipPath',
'clipPathAndPaint',
'pushClipPath.<anonymous closure @20489>',
'clipPathAndPaint.<anonymous closure @1315>',
'clipPath',
'_clipPath@16065589',
'_shift@16065589',
'_contains@16065589',
'LeaderLayer',
'applyTransform',
'get:_hasVisualOverflow@358245603',
'_paintContents@358245603',
'_paintHandleLayers@358245603',
'[tear-off] _paintContents@358245603',
'_updateSelectionExtentsVisibility@358245603',
'_paintSelection@358245603',
'_paintPromptRectIfNeeded@358245603',
'_paintCaret@358245603',
'_paintFloatingCaret@358245603',
'drawRRect',
'_drawRRect@16065589',
'getFullHeightForCaret',
'_computeCaretPrototype@358245603',
'_preferredHeight@358245603',
'_getMaxScrollExtent@358245603',
'get:_viewportExtent@358245603',
'applyViewportDimension',
'applyContentDimensions',
'correctForNewDimensions',
'applyNewDimensions',
'setCanDrag',
'replaceGestureRecognizers',
'setCanDrag.<anonymous closure @19445>',
'setCanDrag.<anonymous closure @19498>',
'setCanDrag.<anonymous closure @20443>',
'setCanDrag.<anonymous closure @20498>',
'get:minFlingDistance',
'get:minFlingVelocity',
'get:maxFlingVelocity',
'velocityTrackerBuilder',
'velocityTrackerBuilder.<anonymous closure @2841>',
'velocityTrackerBuilder.<anonymous closure @3052>',
'velocityTrackerBuilder.<anonymous closure @3128>',
'IOSScrollViewFlingVelocityTracker',
'adjustPositionForNewDimensions',
'[tear-off] _handleTapDown@358245603',
'[tear-off] _handleTap@358245603',
'[tear-off] _handleLongPress@358245603',
'_handleLongPress@358245603',
'handleLongPress',
'_handleTap@358245603',
'handleTap',
'_handleTapDown@358245603',
'set:isObscured',
'set:isMultiline',
'set:isTextField',
'set:isReadOnly',
'set:textSelection',
'getOffsetBefore',
'getOffsetAfter',
'[tear-off] _handleSetSelection@358245603',
'[tear-off] _handleMoveCursorBackwardByWord@358245603',
'[tear-off] _handleMoveCursorBackwardByCharacter@358245603',
'[tear-off] _handleMoveCursorForwardByWord@358245603',
'[tear-off] _handleMoveCursorForwardByCharacter@358245603',
'_handleMoveCursorForwardByCharacter@358245603',
'_handleMoveCursorForwardByWord@358245603',
'_getNextWord@358245603',
'_handleMoveCursorBackwardByCharacter@358245603',
'_handleMoveCursorBackwardByWord@358245603',
'_getPreviousWord@358245603',
'_handleSetSelection@358245603',
'set:onMoveCursorForwardByCharacter.<anonymous closure @120238>',
'set:onMoveCursorForwardByWord.<anonymous closure @121832>',
'set:onMoveCursorBackwardByCharacter.<anonymous closure @121055>',
'set:onMoveCursorBackwardByWord.<anonymous closure @122614>',
'set:onSetSelection.<anonymous closure @123396>',
'_adjustBorderRadius@335467860',
'_adjustRect@335467860',
'_adjustBorderRadius@332493913',
'_adjustRect@332493913',
'get:isComplex',
'createBoxPainter',
'_BoxDecorationPainter',
'BoxPainter',
'scaleRadii',
'get:isUniform',
'get:_colorIsUniform@306461502',
'canMerge',
'[tear-off-extractor] get:ensureTooltipVisible',
'[tear-off] ensureTooltipVisible',
'_TooltipPositionDelegate',
'set:overflowOpen',
'_TextSelectionToolbarContainerRenderBox',
'_TextSelectionToolbarItemsElement',
'set:isAbove',
'_TextSelectionToolbarItemsRenderBox',
'__TextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin',
'PhysicalShape',
'forEachTween.<anonymous closure @27081>',
'forEachTween.<anonymous closure @27243>',
'forEachTween.<anonymous closure @27382>',
'ShapeBorderTween',
'_paint@241372823',
'_InputBorderPainter',
'new _InputBorderPainter@239019562.',
'_InputBorderTween',
'_updateRenderObject@239019562',
'set:icon',
'set:input',
'set:prefix',
'set:suffix',
'set:prefixIcon',
'set:suffixIcon',
'set:helperError',
'set:counter',
'_DecorationSlot',
'_updateChild@239019562',
'_mountChild@239019562',
'get:isDismissed',
'_buildError@239019562',
'FractionalTranslation',
'_handleChange@239019562.<anonymous closure @9629>',
'get:_children@239019562',
'hitTestChildren.<anonymous closure @47139>',
'get:_children@239019562{body}',
'get:_children@239019562{body}.<anonymous closure @19995>',
'get:contentPadding',
'[tear-off] _paintLabel@239019562',
'_paintLabel@239019562',
'_layout@239019562',
'_boxSize@239019562',
'get:_isOutlineAligned@239019562',
'set:extent',
'performLayout.centerLayout',
'performLayout.baselineLayout',
'_layoutLineBox@239019562',
'_RenderDecorationLayout',
'TextAlignVertical',
'getDistanceToBaseline',
'confirm',
'getVelocityEstimate',
'package:flutter/src/gestures/lsq_solver.dart',
'LeastSquaresSolver',
'solve',
'VelocityEstimate',
'confidence',
'PolynomialFit',
'_Matrix',
'norm',
'_Vector',
'get',
'addPosition',
'_PointAtTime',
'isPointerAllowed',
'handlePrimaryPointer',
'addAllowedPointer',
'startTrackingPointer',
'addRoute',
'_addPointerToArena@168296176',
'addAllowedPointer.<anonymous closure @17512>',
'didExceedDeadlineWithEvent',
'_checkLongPressStart@161232524',
'_checkLongPressStart@161232524.<anonymous closure @15955>',
'addRoute.<anonymous closure @1057>',
'handleNonAllowedPointer',
'hasElapsedMinTime',
'_trackTap@165391311',
'new _TapTracker@165391311.',
'_CountdownZoned',
'new _CountdownZoned@165391311.',
'[tear-off] _onTimeout@165391311',
'_onTimeout@165391311',
'isFlingGesture',
'_checkDown@163099969',
'_checkDown@163099969.<anonymous closure @15302>',
'_checkLongPressEnd@161232524',
'_checkLongPressMoveUpdate@161232524',
'LongPressMoveUpdateDetails',
'_checkLongPressMoveUpdate@161232524.<anonymous closure @17821>',
'_checkLongPressEnd@161232524.<anonymous closure @19053>',
'_CupertinoTextSelectionToolbarContentState',
'__CupertinoTextSelectionToolbarContentState&State&TickerProviderStateMixin',
'set:barTopY',
'_ToolbarRenderBox',
'set:arrowTipX',
'set:isArrowPointingDown',
'_CupertinoButtonState',
'__CupertinoButtonState&State&SingleTickerProviderStateMixin',
'[tear-off-extractor] get:reverse',
'[tear-off] reverse',
'_ImmutableMapValueIterable',
'get:sign',
'resetActivity',
'[tear-off-extractor] get:_handleDragCancel@483019050',
'[tear-off] _handleDragCancel@483019050',
'_handleDragCancel@483019050',
'HoldScrollActivity',
'[tear-off-extractor] get:_handleDragEnd@483019050',
'[tear-off] _handleDragEnd@483019050',
'_handleDragEnd@483019050',
'get:_reversed@533498029',
'[tear-off-extractor] get:_handleDragUpdate@483019050',
'[tear-off] _handleDragUpdate@483019050',
'_handleDragUpdate@483019050',
'_maybeLoseMomentum@533498029',
'_adjustForScrollStartThreshold@533498029',
'applyUserOffset',
'[tear-off-extractor] get:_handleDragStart@483019050',
'[tear-off] _handleDragStart@483019050',
'_handleDragStart@483019050',
'drag',
'[tear-off] _disposeDrag@483019050',
'_disposeDrag@483019050',
'DragScrollActivity',
'[tear-off-extractor] get:_handleDragDown@483019050',
'[tear-off] _handleDragDown@483019050',
'_handleDragDown@483019050',
'[tear-off] _disposeHold@483019050',
'_disposeHold@483019050',
'createBallisticSimulation',
'get:outOfRange',
'get:spring',
'package:flutter/src/widgets/scroll_simulation.dart',
'BouncingScrollSimulation',
'new BouncingScrollSimulation.',
'_underscrollSimulation@510443839',
'_overscrollSimulation@510443839',
'package:flutter/src/physics/friction_simulation.dart',
'FrictionSimulation',
'new FrictionSimulation.',
'timeAtX',
'_log@12383281',
'ScrollSpringSimulation',
'_kDefaultSpring@472316757',
'init:_kDefaultSpring@472316757',
'ClampingScrollSimulation',
'new ClampingScrollSimulation.',
'_flingDuration@510443839',
'_kDecelerationRate@510443839',
'init:_kDecelerationRate@510443839',
'_exp@12383281',
'_createNode@466492240',
'set:skipCount',
'_RenderTheatre',
'_markNeedResolution@462319124',
'new _RenderTheatre@462319124.',
'_TheatreElement',
'buildViewportChrome',
'getPlatform',
'package:flutter/src/widgets/overscroll_indicator.dart',
'GlowingOverscrollIndicator',
'[tear-off] defaultScrollNotificationPredicate',
'defaultScrollNotificationPredicate',
'_RenderPhysicalModelBase',
'set:shadowColor',
'RenderPhysicalShape',
'new RenderPhysicalShape.',
'new _RenderPhysicalModelBase@372160605.',
'set:shape',
'RenderPhysicalModel',
'set:borderRadius',
'new RenderPhysicalModel.',
'set:translation',
'RenderFractionalTranslation',
'new RenderFractionalTranslation.',
'_isValidAction@372160605',
'[tear-off] _performSemanticScrollRight@372160605',
'[tear-off] _performSemanticScrollLeft@372160605',
'[tear-off] _performSemanticScrollUp@372160605',
'[tear-off] _performSemanticScrollDown@372160605',
'_performSemanticScrollDown@372160605',
'_performSemanticScrollUp@372160605',
'_performSemanticScrollLeft@372160605',
'_performSemanticScrollRight@372160605',
'_pushClipPath@16065589',
'ClipPathEngineLayer',
'_updateSemanticsChildren@355012902',
'_paintWithPainter@355012902',
'_layoutStart@351160358',
'_layoutStable@351160358',
'_layoutChanged@351160358',
'_layoutUnstable@351160358',
'get:_animatedSize@351160358',
'_restartAnimation@351160358',
'_paintShadows@307196095',
'_paintBackgroundColor@307196095',
'_getBackgroundPaint@307196095',
'_paintBox@307196095',
'drawCircle',
'_drawCircle@16065589',
'toPaint',
'package:flutter/src/painting/box_shadow.dart',
'BoxShadow',
'ToolbarItemsParentData',
'hitTestChildren.<anonymous closure @12279>',
'shouldRepaint',
'visitChildrenForSemantics.<anonymous closure @21680>',
'hitTestChildren.<anonymous closure @21220>',
'paint.<anonymous closure @20087>',
'_layoutChildren@284283233',
'_placeChildren@284283233',
'_shouldPaintChild@284283233',
'_placeChildren@284283233.<anonymous closure @17966>',
'_layoutChildren@284283233.<anonymous closure @15765>',
'buildPageTransitions',
'_CupertinoBackGestureDetector',
'CupertinoPageTransition',
'new CupertinoPageTransition.',
'buildPageTransitions.<anonymous closure @10904>',
'buildPageTransitions.<anonymous closure @10971>',
'_startPopGesture@110053933',
'_CupertinoBackGestureController',
'didStartUserGesture',
'set:_userGesturesInProgress@480124995',
'_getRouteBefore@480124995',
'_isPopGestureEnabled@110053933',
'get:hasScopedWillPopCallback',
'_kRightMiddleTween@110053933',
'init:_kRightMiddleTween@110053933',
'_kMiddleLeftTween@110053933',
'init:_kMiddleLeftTween@110053933',
'_kGradientShadowTween@110053933',
'init:_kGradientShadowTween@110053933',
'DecorationTween',
'_CupertinoEdgeShadowDecoration',
'package:flutter/src/painting/gradient.dart',
'LinearGradient',
'TileMode',
'_FadeUpwardsPageTransition',
'new _FadeUpwardsPageTransition@252490068.',
'_bottomUpTween@252490068',
'init:_bottomUpTween@252490068',
'_fastOutSlowInTween@252490068',
'init:_fastOutSlowInTween@252490068',
'_easeInTween@252490068',
'init:_easeInTween@252490068',
'paintFeature',
'paintInkCircle',
'_paintHighlight@234209331',
'_previousVelocityAt@173010635',
'get:pixelsPerSecond',
'_CupertinoTextSelectionToolbarItems',
'new _CupertinoTextSelectionToolbarItems@119300207.',
'[tear-off] _handlePreviousPage@119300207',
'[tear-off] _handleNextPage@119300207',
'_handleNextPage@119300207',
'[tear-off] _statusListener@119300207',
'_statusListener@119300207',
'_statusListener@119300207.<anonymous closure @20853>',
'_handlePreviousPage@119300207',
'_clipPath@119300207',
'paint.<anonymous closure @12518>',
'PathOperation',
'_op@16065589',
'_ToolbarParentData',
'get:textTheme',
'get:textStyle',
'_DefaultCupertinoTextThemeData',
'[tear-off] _handleTapDown@95145554',
'[tear-off] _handleTapUp@95145554',
'[tear-off] _handleTapCancel@95145554',
'_handleTapCancel@95145554',
'_animate@95145554',
'_animate@95145554.<anonymous closure @6463>',
'_handleTapUp@95145554',
'_handleTapDown@95145554',
'package:flutter/src/cupertino/text_theme.dart',
'CupertinoTextThemeData',
'_TextThemeDefaultsBuilder',
'_applyLabelColor@120439196',
'createDefaults',
'_setTween@95145554',
'cast',
'castFrom',
'CastMap',
'_ImmutableMapValueIterator',
'_GlowingOverscrollIndicatorState',
'__GlowingOverscrollIndicatorState&State&TickerProviderStateMixin',
'new _GlowingOverscrollIndicatorState@538442496.',
'_simulation@510443839',
'get:dragStartDistanceMotionThreshold',
'carriedMomentum',
'applyPhysicsToUserOffset',
'get:_firstOnstageChild@462319124',
'get:_lastOnstageChild@462319124',
'hitTestChildren.<anonymous closure @24929>',
'_resolve@462319124',
'lerpList',
'BorderDirectional',
'_interpolateColorsAndStops@321499651',
'SplayTreeSet',
'_SplayTreeSet&_SplayTree&IterableMixin&SetMixin',
'_SplayTreeSet&_SplayTree&IterableMixin',
'_SplayTree',
'new SplayTreeSet.',
'_ColorsAndStops',
'_interpolateColorsAndStops@321499651.<anonymous closure @1725>',
'_sample@321499651',
'_sample@321499651.<anonymous closure @991>',
'_splay@3220832',
'_SplayTreeSetNode',
'_SplayTreeNode',
'_addNewRoot@3220832',
'[tear-off] _dynamicCompare@3220832',
'new SplayTreeSet..<anonymous closure @23181>',
'_dynamicCompare@3220832',
'scale.<anonymous closure @17224>',
'PhysicalModelLayer',
'get:outerRect',
'new RRect.fromRectXY',
'hitTestChildren.<anonymous closure @86356>',
'drawDRRect',
'_drawDRRect@16065589',
'_paintUniformBorderWithRadius@306461502',
'_paintUniformBorderWithRectangle@306461502',
'paintBorder',
'drawPath',
'SlideTransition',
'get:blendedColor',
'drawLine',
'_drawLine@16065589',
'_CupertinoTextSelectionToolbarItemsElement',
'new _CupertinoTextSelectionToolbarItemsElement@119300207.',
'set:page',
'_CupertinoTextSelectionToolbarItemsRenderBox',
'set:dividerWidth',
'__CupertinoTextSelectionToolbarItemsRenderBox&RenderBox&ContainerRenderObjectMixin&RenderBoxContainerDefaultsMixin',
'new _CupertinoTextSelectionToolbarItemsRenderBox@119300207.',
'_CupertinoBackGestureDetectorState',
'_CupertinoEdgeShadowPainter',
'DecoratedBoxTransition',
'new CastIterable.',
'CastIterable',
'_EfficientLengthCastIterable',
'_CastIterableBase',
'forEach.<anonymous closure @7878>',
'_GlowingOverscrollIndicatorPainter',
'[tear-off] _handleScrollNotification@538442496',
'_handleScrollNotification@538442496',
'OverscrollIndicatorNotification',
'package:flutter/src/widgets/draggable_scrollable_sheet.dart',
'_DraggableScrollableNotification&Notification&ViewportNotificationMixin',
'absorbImpact',
'_GlowController',
'pull',
'scrollEnd',
'_recede@538442496',
'_GlowState',
'get:isTicking',
'pull.<anonymous closure @19080>',
'set:axis',
'new _GlowController@538442496.',
'[tear-off] _changePhase@538442496',
'[tear-off] _tickDisplacement@538442496',
'_tickDisplacement@538442496',
'_crossAxisHalfTime@538442496',
'init:_crossAxisHalfTime@538442496',
'_changePhase@538442496',
'pushPhysicalShape',
'_pushPhysicalShape@16065589',
'PhysicalShapeEngineLayer',
'_mountChild@119300207',
'_CupertinoTextSelectionToolbarItemsSlot',
'_updateRenderObject@119300207',
'set:backButton',
'set:nextButton',
'set:nextButtonDisabled',
'_updateChild@119300207',
'visitChildrenForSemantics.<anonymous closure @40756>',
'redepthChildren.<anonymous closure @40091>',
'hitTestChild',
'hitTestChild.<anonymous closure @38410>',
'paint.<anonymous closure @37434>',
'performLayout.<anonymous closure @33663>',
'PositionedDirectional',
'[tear-off] _handlePointerDown@110053933',
'_handlePointerDown@110053933',
'addPointer',
'[tear-off] _handleDragStart@110053933',
'[tear-off] _handleDragUpdate@110053933',
'[tear-off] _handleDragEnd@110053933',
'[tear-off] _handleDragCancel@110053933',
'_handleDragCancel@110053933',
'dragEnd',
'animateBack',
'didStopUserGesture',
'dragEnd.<anonymous closure @28550>',
'didStopUserGesture.isInvalidFlight',
'_handleDragEnd@110053933',
'_convertToLogical@110053933',
'_handleDragUpdate@110053933',
'dragUpdate',
'_handleDragStart@110053933',
'createShader',
'withinRect',
'CastIterator',
'lastIndexWhere',
'_SplayTreeIterator',
'_rebuildWorkList@3220832',
'_SplayTreeKeyIterator',
'new _SplayTreeIterator@3220832.',
'_paintSide@538442496',
'package:flutter/src/rendering/sliver.dart',
'GrowthDirection',
'applyGrowthDirectionToAxisDirection',
'rotate',
'_scale@16065589',
'get:dragDetails',
'new Positioned.directional',
],
};
| devtools/packages/devtools_app/test/test_infra/test_data/app_size/precompiler_trace.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/test_infra/test_data/app_size/precompiler_trace.dart",
"repo_id": "devtools",
"token_count": 877717
} | 122 |
// Copyright 2022 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:devtools_app/devtools_app.dart';
import 'package:devtools_app/src/screens/vm_developer/object_inspector/vm_library_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() {
setUp(() {
setGlobal(IdeTheme, IdeTheme());
setGlobal(BreakpointManager, BreakpointManager());
setGlobal(ServiceConnectionManager, FakeServiceConnectionManager());
setGlobal(
DevToolsEnvironmentParameters,
ExternalDevToolsEnvironmentParameters(),
);
setGlobal(PreferencesController, PreferencesController());
setGlobal(NotificationService, NotificationService());
});
group('test build library display', () {
late Library testLibCopy;
late MockLibraryObject mockLibraryObject;
const windowSize = Size(4000.0, 4000.0);
setUpAll(() {
setUpMockScriptManager();
mockLibraryObject = MockLibraryObject();
final json = testLib.toJson();
testLibCopy = Library.parse(json)!;
testLibCopy.size = 1024;
mockVmObject(mockLibraryObject);
when(mockLibraryObject.obj).thenReturn(testLibCopy);
when(mockLibraryObject.vmName).thenReturn('fooDartLibrary');
when(mockLibraryObject.scriptRef).thenReturn(testScript);
});
testWidgetsWithWindowSize(
' - basic layout',
windowSize,
(WidgetTester tester) async {
await tester.pumpWidget(
wrap(
VmLibraryDisplay(
library: mockLibraryObject,
controller: ObjectInspectorViewController(),
),
),
);
expect(find.byType(VmObjectDisplayBasicLayout), findsOneWidget);
expect(find.byType(VMInfoCard), findsOneWidget);
expect(find.text('General Information'), findsOneWidget);
expect(find.text('1.0 KB'), findsOneWidget);
expect(find.text('URI:'), findsOneWidget);
expect(find.text('fooLib.dart', findRichText: true), findsOneWidget);
expect(find.text('VM Name:'), findsOneWidget);
expect(find.text('fooDartLibrary'), findsOneWidget);
expect(find.byType(RequestableSizeWidget), findsNWidgets(2));
expect(find.byType(RetainingPathWidget), findsOneWidget);
expect(find.byType(InboundReferencesTree), findsOneWidget);
expect(find.byType(LibraryDependencies), findsOneWidget);
},
);
testWidgetsWithWindowSize(
' - with null dependencies',
windowSize,
(WidgetTester tester) async {
testLibCopy.dependencies = null;
await tester.pumpWidget(
wrap(
VmLibraryDisplay(
library: mockLibraryObject,
controller: ObjectInspectorViewController(),
),
),
);
expect(find.byType(LibraryDependencies), findsNothing);
},
);
});
group('test LibraryDependencyExtension description method: ', () {
late Library targetLib1;
late Library targetLib2;
late Library targetLib3;
late LibraryDependency dependency1;
late LibraryDependency dependency2;
late LibraryDependency dependency3;
setUpAll(() {
final libJson = testLib.toJson();
targetLib1 = Library.parse(libJson)!;
targetLib2 = Library.parse(libJson)!;
targetLib3 = Library.parse(libJson)!;
targetLib1.name = 'dart:core';
targetLib2.name = 'dart:math';
targetLib3.name = 'dart:collection';
dependency1 = LibraryDependency(
isImport: true,
target: targetLib1,
);
dependency2 = LibraryDependency(
isImport: false,
target: targetLib2,
);
dependency3 = LibraryDependency(
target: targetLib3,
);
dependency1.target = targetLib1;
dependency2.target = targetLib2;
});
test('just the libraries', () {
expect(dependency1.description, 'import dart:core');
expect(dependency2.description, 'export dart:math');
expect(dependency3.description, 'dart:collection');
});
test('libraries with prefix', () {
dependency1.prefix = 'core';
dependency2.prefix = 'math';
dependency3.prefix = 'collection';
expect(dependency1.description, 'import dart:core as core');
expect(dependency2.description, 'export dart:math as math');
expect(dependency3.description, 'dart:collection as collection');
});
test('libraries with prefix and deferred', () {
dependency1.isDeferred = true;
dependency2.isDeferred = true;
dependency3.isDeferred = true;
expect(dependency1.description, 'import dart:core as core deferred');
expect(dependency2.description, 'export dart:math as math deferred');
expect(dependency3.description, 'dart:collection as collection deferred');
});
test('libraries deferred', () {
dependency1.prefix = null;
dependency2.prefix = null;
dependency3.prefix = null;
expect(dependency1.description, 'import dart:core deferred');
expect(dependency2.description, 'export dart:math deferred');
expect(dependency3.description, 'dart:collection deferred');
});
test('target library is missing', () {
dependency1.target = null;
dependency1.prefix = 'foo';
dependency1.isDeferred = null;
expect(dependency1.description, 'import <Library name> as foo');
});
});
group('test LibraryDependencies widget: ', () {
late LibraryDependency dependency;
late List<LibraryDependency> dependencies;
setUpAll(() {
dependency = LibraryDependency(
isImport: true,
target: testLib,
);
dependencies = [dependency, dependency, dependency];
});
testWidgets('builds widget', (WidgetTester tester) async {
await tester
.pumpWidget(wrap(LibraryDependencies(dependencies: dependencies)));
expect(find.byType(VmExpansionTile), findsOneWidget);
expect(find.text('Dependencies (3)'), findsOneWidget);
await tester.tap(find.text('Dependencies (3)'));
await tester.pumpAndSettle();
expect(find.byType(SelectableText), findsNWidgets(3));
});
});
}
| devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_library_display_test.dart/0 | {
"file_path": "devtools/packages/devtools_app/test/vm_developer/object_inspector/vm_library_display_test.dart",
"repo_id": "devtools",
"token_count": 2540
} | 123 |
include: ../analysis_options.yaml
analyzer:
exclude:
- bin/**
- example/**
| devtools/packages/devtools_app_shared/analysis_options.yaml/0 | {
"file_path": "devtools/packages/devtools_app_shared/analysis_options.yaml",
"repo_id": "devtools",
"token_count": 34
} | 124 |
// 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 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/rendering.dart';
import 'package:flutter/scheduler.dart';
import 'package:flutter/services.dart';
class ServiceExtension<T> {
ServiceExtension({
required this.extension,
required this.values,
this.shouldCallOnAllIsolates = false,
});
final String extension;
final List<T> values;
final bool shouldCallOnAllIsolates;
}
class ToggleableServiceExtension<T extends Object> extends ServiceExtension<T> {
ToggleableServiceExtension({
required super.extension,
required T enabledValue,
required T disabledValue,
super.shouldCallOnAllIsolates = false,
this.inverted = false,
}) : super(values: [enabledValue, disabledValue]);
static const enabledValueIndex = 0;
static const disabledValueIndex = 1;
T get disabledValue => values[disabledValueIndex];
T get enabledValue => values[enabledValueIndex];
/// Whether this service extension will be inverted where it is exposed in
/// DevTools.
///
/// For example, when [inverted] is true, a service extension may have a value
/// of 'false' in the framework, but will have a perceived value of 'true' in
/// DevTools, where the language describing the service extension toggle will
/// also be inverted.
final bool inverted;
}
final debugAllowBanner = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${WidgetsServiceExtensions.debugAllowBanner.name}',
enabledValue: true,
disabledValue: false,
);
final debugPaint = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.debugPaint.name}',
enabledValue: true,
disabledValue: false,
);
final debugPaintBaselines = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.debugPaintBaselinesEnabled.name}',
enabledValue: true,
disabledValue: false,
);
final disableClipLayers = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.debugDisableClipLayers.name}',
inverted: true,
enabledValue: true,
disabledValue: false,
);
final disableOpacityLayers = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.debugDisableOpacityLayers.name}',
inverted: true,
enabledValue: true,
disabledValue: false,
);
final disablePhysicalShapeLayers = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.debugDisablePhysicalShapeLayers.name}',
inverted: true,
enabledValue: true,
disabledValue: false,
);
/// Toggle whether the inspector on-device overlay is enabled.
///
/// When available, the inspector overlay can be enabled at any time as it will
/// not interfere with user interaction with the app unless inspector select
/// mode is triggered.
final enableOnDeviceInspector = ToggleableServiceExtension<bool>(
extension: '$inspectorExtensionPrefix.enable',
enabledValue: true,
disabledValue: false,
);
final httpEnableTimelineLogging = ToggleableServiceExtension<bool>(
extension: '${dartIOExtensionPrefix}httpEnableTimelineLogging',
enabledValue: true,
disabledValue: false,
shouldCallOnAllIsolates: true,
);
final invertOversizedImages = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.invertOversizedImages.name}',
enabledValue: true,
disabledValue: false,
);
final performanceOverlay = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${WidgetsServiceExtensions.showPerformanceOverlay.name}',
enabledValue: true,
disabledValue: false,
);
final profileRenderObjectLayouts = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.profileRenderObjectLayouts.name}',
enabledValue: true,
disabledValue: false,
);
final profileRenderObjectPaints = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.profileRenderObjectPaints.name}',
enabledValue: true,
disabledValue: false,
);
final profileUserWidgetBuilds = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${WidgetsServiceExtensions.profileUserWidgetBuilds.name}',
enabledValue: true,
disabledValue: false,
);
final profileWidgetBuilds = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${WidgetsServiceExtensions.profileWidgetBuilds.name}',
enabledValue: true,
disabledValue: false,
);
final repaintRainbow = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${RenderingServiceExtensions.repaintRainbow.name}',
enabledValue: true,
disabledValue: false,
);
final slowAnimations = ToggleableServiceExtension<num>(
extension:
'$flutterExtensionPrefix${SchedulerServiceExtensions.timeDilation.name}',
enabledValue: 5.0,
disabledValue: 1.0,
);
final socketProfiling = ToggleableServiceExtension<bool>(
extension: '${dartIOExtensionPrefix}socketProfilingEnabled',
enabledValue: true,
disabledValue: false,
shouldCallOnAllIsolates: true,
);
final structuredErrors = ToggleableServiceExtension<bool>(
extension:
'$inspectorExtensionPrefix.${WidgetInspectorServiceExtensions.structuredErrors.name}',
enabledValue: true,
disabledValue: false,
);
// TODO(kenz): remove this if it is not needed. According to the comments,
// [toggleOnDeviceWidgetInspector] should be the legacy extension, but that is
// the only extension available, and [toggleSelectWidgetMode] is not.
// Legacy extension to show the inspector and enable inspector select mode.
final toggleOnDeviceWidgetInspector = ToggleableServiceExtension<bool>(
extension:
'$inspectorExtensionPrefix.${WidgetInspectorServiceExtensions.show.name}',
// Technically this enables the on-device widget inspector but for older
// versions of package:flutter it makes sense to describe this extension as
// toggling widget select mode as it is the only way to toggle that mode.
enabledValue: true,
disabledValue: false,
);
final togglePlatformMode = ServiceExtension<String>(
extension:
'$flutterExtensionPrefix${FoundationServiceExtensions.platformOverride.name}',
values: ['iOS', 'android', 'fuchsia', 'macOS', 'linux'],
);
/// Toggle whether interacting with the device selects widgets or triggers
/// normal interactions.
final toggleSelectWidgetMode = ToggleableServiceExtension<bool>(
extension: '$inspectorExtensionPrefix.selectMode',
enabledValue: true,
disabledValue: false,
);
final trackRebuildWidgets = ToggleableServiceExtension<bool>(
extension:
'$inspectorExtensionPrefix.${WidgetInspectorServiceExtensions.trackRebuildDirtyWidgets.name}',
enabledValue: true,
disabledValue: false,
);
final profilePlatformChannels = ToggleableServiceExtension<bool>(
extension:
'$flutterExtensionPrefix${ServicesServiceExtensions.profilePlatformChannels.name}',
enabledValue: true,
disabledValue: false,
);
// This extensions below should never be displayed as a button so does not need
// a ServiceExtensionDescription object.
final String didSendFirstFrameEvent =
'$flutterExtensionPrefix${WidgetsServiceExtensions.didSendFirstFrameEvent.name}';
final serviceExtensionsAllowlist = <String, ServiceExtension<Object>>{
for (var extension in _extensionDescriptions) extension.extension: extension,
};
final List<ServiceExtension<Object>> _extensionDescriptions = [
debugAllowBanner,
debugPaint,
debugPaintBaselines,
disableClipLayers,
disableOpacityLayers,
disablePhysicalShapeLayers,
enableOnDeviceInspector,
httpEnableTimelineLogging,
invertOversizedImages,
performanceOverlay,
profileRenderObjectLayouts,
profileRenderObjectPaints,
profileUserWidgetBuilds,
profileWidgetBuilds,
repaintRainbow,
slowAnimations,
socketProfiling,
structuredErrors,
toggleOnDeviceWidgetInspector,
togglePlatformMode,
toggleSelectWidgetMode,
trackRebuildWidgets,
profilePlatformChannels,
];
/// Service extensions that are not safe to call unless a frame has already
/// been rendered.
///
/// Flutter can sometimes crash if these extensions are called before the first
/// frame is done rendering. We are intentionally conservative about which
/// extensions are safe to run before the first frame as there is little harm
/// in setting these extensions after one frame has rendered without the
/// extension set.
final Set<String> _unsafeBeforeFirstFrameFlutterExtensions =
<ServiceExtension<Object>>[
debugPaint,
debugPaintBaselines,
repaintRainbow,
performanceOverlay,
debugAllowBanner,
toggleOnDeviceWidgetInspector,
toggleSelectWidgetMode,
enableOnDeviceInspector,
togglePlatformMode,
slowAnimations,
].map((extension) => extension.extension).toSet();
bool isUnsafeBeforeFirstFlutterFrame(String? extensionName) {
return _unsafeBeforeFirstFrameFlutterExtensions.contains(extensionName);
}
const dartIOExtensionPrefix = 'ext.dart.io.';
const flutterExtensionPrefix = 'ext.flutter.';
const inspectorExtensionPrefix = 'ext.flutter.inspector';
bool isFlutterExtension(String extensionName) {
return extensionName.startsWith(flutterExtensionPrefix);
}
bool isDartIoExtension(String extensionName) {
return extensionName.startsWith(dartIOExtensionPrefix);
}
const hotReloadServiceName = 'reloadSources';
const hotRestartServiceName = 'hotRestart';
| devtools/packages/devtools_app_shared/lib/src/service/service_extensions.dart/0 | {
"file_path": "devtools/packages/devtools_app_shared/lib/src/service/service_extensions.dart",
"repo_id": "devtools",
"token_count": 2856
} | 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_shared/utils.dart';
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
group('pluralize', () {
test('zero', () {
expect(pluralize('cat', 0), 'cats');
});
test('one', () {
expect(pluralize('cat', 1), 'cat');
});
test('many', () {
expect(pluralize('cat', 2), 'cats');
});
test('irregular plurals', () {
expect(pluralize('index', 1, plural: 'indices'), 'index');
expect(pluralize('index', 2, plural: 'indices'), 'indices');
});
});
group('parseCssHexColor', () {
test('parses 6 digit hex colors', () {
expect(parseCssHexColor('#000000'), equals(Colors.black));
expect(parseCssHexColor('000000'), equals(Colors.black));
expect(parseCssHexColor('#ffffff'), equals(Colors.white));
expect(parseCssHexColor('ffffff'), equals(Colors.white));
expect(parseCssHexColor('#ff0000'), equals(const Color(0xFFFF0000)));
expect(parseCssHexColor('ff0000'), equals(const Color(0xFFFF0000)));
});
test('parses 3 digit hex colors', () {
expect(parseCssHexColor('#000'), equals(Colors.black));
expect(parseCssHexColor('000'), equals(Colors.black));
expect(parseCssHexColor('#fff'), equals(Colors.white));
expect(parseCssHexColor('fff'), equals(Colors.white));
expect(parseCssHexColor('#f30'), equals(const Color(0xFFFF3300)));
expect(parseCssHexColor('f30'), equals(const Color(0xFFFF3300)));
});
test('parses 8 digit hex colors', () {
expect(parseCssHexColor('#000000ff'), equals(Colors.black));
expect(parseCssHexColor('000000ff'), equals(Colors.black));
expect(
parseCssHexColor('#00000000'),
equals(Colors.black.withAlpha(0)),
);
expect(parseCssHexColor('00000000'), equals(Colors.black.withAlpha(0)));
expect(parseCssHexColor('#ffffffff'), equals(Colors.white));
expect(parseCssHexColor('ffffffff'), equals(Colors.white));
expect(
parseCssHexColor('#ffffff00'),
equals(Colors.white.withAlpha(0)),
);
expect(parseCssHexColor('ffffff00'), equals(Colors.white.withAlpha(0)));
expect(
parseCssHexColor('#ff0000bb'),
equals(const Color(0x00ff0000).withAlpha(0xbb)),
);
expect(
parseCssHexColor('ff0000bb'),
equals(const Color(0x00ff0000).withAlpha(0xbb)),
);
});
test('parses 4 digit hex colors', () {
expect(parseCssHexColor('#000f'), equals(Colors.black));
expect(parseCssHexColor('000f'), equals(Colors.black));
expect(parseCssHexColor('#0000'), equals(Colors.black.withAlpha(0)));
expect(parseCssHexColor('0000'), equals(Colors.black.withAlpha(0)));
expect(parseCssHexColor('#ffff'), equals(Colors.white));
expect(parseCssHexColor('ffff'), equals(Colors.white));
expect(parseCssHexColor('#fff0'), equals(Colors.white.withAlpha(0)));
expect(parseCssHexColor('ffffff00'), equals(Colors.white.withAlpha(0)));
expect(
parseCssHexColor('#f00b'),
equals(const Color(0x00ff0000).withAlpha(0xbb)),
);
expect(
parseCssHexColor('f00b'),
equals(const Color(0x00ff0000).withAlpha(0xbb)),
);
});
});
group('toCssHexColor', () {
test('generates correct 8 digit CSS colors', () {
expect(toCssHexColor(Colors.black), equals('#000000ff'));
expect(toCssHexColor(Colors.white), equals('#ffffffff'));
expect(toCssHexColor(const Color(0xFFAABBCC)), equals('#aabbccff'));
});
});
}
| devtools/packages/devtools_app_shared/test/utils/utils_test.dart/0 | {
"file_path": "devtools/packages/devtools_app_shared/test/utils/utils_test.dart",
"repo_id": "devtools",
"token_count": 1565
} | 126 |
# app_that_uses_foo
This is an example application that uses a package, `package:foo`, that includes a
DevTools extension.
| devtools/packages/devtools_extensions/example/app_that_uses_foo/README.md/0 | {
"file_path": "devtools/packages/devtools_extensions/example/app_that_uses_foo/README.md",
"repo_id": "devtools",
"token_count": 34
} | 127 |
!build
| devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo/extension/.pubignore/0 | {
"file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/dart_foo/packages/dart_foo/extension/.pubignore",
"repo_id": "devtools",
"token_count": 3
} | 128 |
// 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.
// ignore_for_file: avoid_print
import 'dart:async';
import 'package:devtools_app_shared/ui.dart';
import 'package:devtools_extensions/devtools_extensions.dart';
import 'package:flutter/material.dart';
/// A widget that shows an example of how to call a service extension over the
/// VM Service protocol.
///
/// This service extension was registered in the parent package (package:foo)
/// using [registerExtension] from dart:developer
/// (https://api.flutter.dev/flutter/dart-developer/registerExtension.html) and
/// then we use the [serviceManager] to call the extension from this DevTools
/// extension.
///
/// Service extensions can only be called when the app is unpaused. In contrast,
/// expression evaluations can be called both when the app is paused and
/// unpaused (see expression_evaluation.dart).
class ServiceExtensionExample extends StatefulWidget {
const ServiceExtensionExample({super.key});
@override
State<ServiceExtensionExample> createState() =>
_ServiceExtensionExampleState();
}
class _ServiceExtensionExampleState extends State<ServiceExtensionExample> {
int selectedId = 1;
void _changeId({required bool increment}) {
setState(() {
if (increment) {
selectedId++;
} else {
selectedId--;
}
});
}
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'1. Example of calling service extensions to fetch data from your package',
style: Theme.of(context).textTheme.titleMedium,
),
const PaddedDivider.thin(),
SelectedThing(
selectedThingId: selectedId,
onIncrement: () => _changeId(increment: true),
onDecrement: () => _changeId(increment: false),
),
const SizedBox(height: denseSpacing),
const Flexible(
child: Padding(
padding: EdgeInsets.symmetric(vertical: denseSpacing),
child: TableOfThings(),
),
),
],
);
}
}
class TableOfThings extends StatefulWidget {
const TableOfThings({super.key});
@override
State<TableOfThings> createState() => _TableOfThingsState();
}
class _TableOfThingsState extends State<TableOfThings> {
final things = ValueNotifier<List<String>>([]);
/// Here we call the service extension 'ext.foo.getAllThings' on the main
/// isolate.
///
/// This service extension was registered in `FooController.initFoo` in
/// package:foo (see devtools_extensions/example/packages_with_extensions/foo/packages/foo/lib/src/foo_controller.dart).
///
/// It is important to note that we are calling the service extension on the
/// main isolate here using the [serviceManager.callServiceExtensionOnMainIsolate].
///
/// To call a service extension that was registered in a different isolate,
/// you can use [serviceManager.service.callServiceExtension], but this call
/// MUST include the isolate id of the isolate that the service extension was
/// registered in.
Future<void> _refreshThings() async {
try {
final response = await serviceManager
.callServiceExtensionOnMainIsolate('ext.foo.getAllThings');
final responseThings = response.json?['things'] as List<String>?;
things.value = responseThings ?? <String>[];
} catch (e) {
print('Error fetching all things: $e');
}
}
@override
void initState() {
super.initState();
unawaited(_refreshThings());
}
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
ElevatedButton(
onPressed: _refreshThings,
child: const Text('Refresh things'),
),
const SizedBox(height: denseSpacing),
ValueListenableBuilder(
valueListenable: things,
builder: (context, things, _) {
return Table(
border: TableBorder.all(
color: Theme.of(context).colorScheme.onSurface,
),
columnWidths: const <int, TableColumnWidth>{
0: FlexColumnWidth(),
1: FlexColumnWidth(),
},
defaultVerticalAlignment: TableCellVerticalAlignment.middle,
children: <TableRow>[
TableRow(
children: <Widget>[
_GridEntry(
text: 'Id',
style: Theme.of(context).textTheme.headlineSmall,
),
_GridEntry(
text: 'Thing',
style: Theme.of(context).textTheme.headlineSmall,
),
],
),
for (int i = 0; i < things.length; i++)
TableRow(
children: [
_GridEntry(text: '$i'),
_GridEntry(text: things[i]),
],
),
],
);
},
),
],
);
}
}
class _GridEntry extends StatelessWidget {
const _GridEntry({required this.text, this.style});
final String text;
final TextStyle? style;
@override
Widget build(BuildContext context) {
return Center(
child: Text(
text,
style: style ?? Theme.of(context).textTheme.bodyMedium,
),
);
}
}
class SelectedThing extends StatefulWidget {
const SelectedThing({
required this.selectedThingId,
required this.onIncrement,
required this.onDecrement,
});
final int selectedThingId;
final VoidCallback onIncrement;
final VoidCallback onDecrement;
@override
State<SelectedThing> createState() => _SelectedThingState();
}
class _SelectedThingState extends State<SelectedThing> {
String selectedThing = 'unknown';
/// Here we call the service extension 'ext.foo.getThing' on the main isolate.
///
/// This service extension was registered in `FooController.initFoo` in
/// package:foo (see devtools_extensions/example/packages_with_extensions/foo/packages/foo/lib/src/foo_controller.dart).
///
/// It is important to note that we are calling the service extension on the
/// main isolate here using the [serviceManager.callServiceExtensionOnMainIsolate].
///
/// To call a service extension that was registered in a different isolate,
/// you can use [serviceManager.service.callServiceExtension], but this call
/// MUST include the isolate id of the isolate that the service extension was
/// registered in.
Future<void> _updateSelectedThing(int id) async {
try {
final response = await serviceManager.callServiceExtensionOnMainIsolate(
'ext.foo.getThing',
args: {'id': id},
);
setState(() {
selectedThing = response.json?['value'] as String? ?? 'unknown';
});
} catch (e) {
print('error fetching thing $id');
setState(() {
selectedThing = 'unknown';
});
}
}
@override
void initState() {
super.initState();
unawaited(_updateSelectedThing(widget.selectedThingId));
}
@override
void didUpdateWidget(SelectedThing oldWidget) {
super.didUpdateWidget(oldWidget);
if (oldWidget.selectedThingId != widget.selectedThingId) {
unawaited(_updateSelectedThing(widget.selectedThingId));
}
}
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Row(
mainAxisSize: MainAxisSize.min,
children: [
Text('Selected thing id: ${widget.selectedThingId}'),
const SizedBox(width: defaultSpacing),
IconButton.filled(
onPressed: widget.onIncrement,
icon: const Icon(Icons.arrow_upward_rounded),
),
const SizedBox(
width: densePadding,
),
IconButton.filled(
onPressed: widget.onDecrement,
icon: const Icon(Icons.arrow_downward_rounded),
),
],
),
const SizedBox(height: denseSpacing),
Text('Selected thing value: $selectedThing'),
],
);
}
}
| devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/service_extension_example.dart/0 | {
"file_path": "devtools/packages/devtools_extensions/example/packages_with_extensions/foo/packages/foo_devtools_extension/lib/src/service_extension_example.dart",
"repo_id": "devtools",
"token_count": 3414
} | 129 |
// 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 'api.dart';
/// Data model for a devtools extension event that will be sent and received
/// over 'postMessage' between DevTools and an embedded extension iFrame.
///
/// See [DevToolsExtensionEventType] for different types of events that are
/// supported over this communication channel.
class DevToolsExtensionEvent {
DevToolsExtensionEvent(
this.type, {
this.data,
this.source,
});
factory DevToolsExtensionEvent.parse(Map<String, Object?> json) {
final eventType =
DevToolsExtensionEventType.from(json[_typeKey]! as String);
final data = (json[_dataKey] as Map?)?.cast<String, Object?>();
final source = json[sourceKey] as String?;
return DevToolsExtensionEvent(eventType, data: data, source: source);
}
static DevToolsExtensionEvent? tryParse(Object data) {
try {
final dataAsMap = (data as Map).cast<String, Object?>();
return DevToolsExtensionEvent.parse(dataAsMap);
} catch (_) {
return null;
}
}
static const _typeKey = 'type';
static const _dataKey = 'data';
static const sourceKey = 'source';
final DevToolsExtensionEventType type;
final Map<String, Object?>? data;
/// Optional field to describe the source that created and sent this event.
final String? source;
Map<String, Object?> toJson() {
return {
_typeKey: type.name,
if (data != null) _dataKey: data!,
};
}
@override
String toString() {
return '[$type, data: ${data.toString()}'
'${source != null ? ', source: $source' : ''}]';
}
}
/// A void callback that handles a [DevToolsExtensionEvent].
typedef ExtensionEventHandler = void Function(DevToolsExtensionEvent event);
/// An extension event of type [DevToolsExtensionEventType.showNotification]
/// that is sent from an extension to DevTools asking DevTools to post a
/// notification the the DevTools notification framework.
class ShowNotificationExtensionEvent extends DevToolsExtensionEvent {
ShowNotificationExtensionEvent({required String message})
: super(
DevToolsExtensionEventType.showNotification,
data: {_messageKey: message},
);
factory ShowNotificationExtensionEvent.from(DevToolsExtensionEvent event) {
assert(event.type == DevToolsExtensionEventType.showNotification);
final message = event.data!.checkValid<String>(_messageKey);
return ShowNotificationExtensionEvent(message: message);
}
static const _messageKey = 'message';
String get message => data![_messageKey] as String;
}
/// An extension event of type [DevToolsExtensionEventType.showBannerMessage]
/// that is sent from an extension to DevTools asking DevTools to post a
/// banner message to the extension's screen using the DevTools banner message
/// framework.
class ShowBannerMessageExtensionEvent extends DevToolsExtensionEvent {
ShowBannerMessageExtensionEvent({
required String id,
required String bannerMessageType,
required String message,
required String extensionName,
bool ignoreIfAlreadyDismissed = true,
}) : assert(bannerMessageType == 'warning' || bannerMessageType == 'error'),
super(
DevToolsExtensionEventType.showBannerMessage,
data: {
_idKey: id,
_bannerMessageTypeKey: bannerMessageType,
_messageKey: message,
_extensionNameKey: extensionName,
_ignoreIfAlreadyDismissedKey: ignoreIfAlreadyDismissed,
},
);
factory ShowBannerMessageExtensionEvent.from(DevToolsExtensionEvent event) {
assert(event.type == DevToolsExtensionEventType.showBannerMessage);
final eventData = event.data!;
final id = eventData.checkValid<String>(_idKey);
final message = eventData.checkValid<String>(_messageKey);
final type = eventData.checkValid<String>(_bannerMessageTypeKey);
final extensionName = eventData.checkValid<String>(_extensionNameKey);
final ignoreIfAlreadyDismissed =
(eventData[_ignoreIfAlreadyDismissedKey] as bool?) ?? true;
return ShowBannerMessageExtensionEvent(
id: id,
bannerMessageType: type,
message: message,
extensionName: extensionName,
ignoreIfAlreadyDismissed: ignoreIfAlreadyDismissed,
);
}
static const _messageKey = 'message';
static const _idKey = 'id';
static const _bannerMessageTypeKey = 'bannerMessageType';
static const _extensionNameKey = 'extensionName';
static const _ignoreIfAlreadyDismissedKey = 'ignoreIfAlreadyDismissed';
String get messageId => data![_idKey] as String;
String get bannerMessageType => data![_bannerMessageTypeKey] as String;
String get message => data![_messageKey] as String;
String get extensionName => data![_extensionNameKey] as String;
bool get ignoreIfAlreadyDismissed =>
(data![_ignoreIfAlreadyDismissedKey] as bool?) ?? true;
}
extension ParseExtension on Map<String, Object?> {
T checkValid<T>(String key) {
final element = this[key];
if (element == null) {
throw FormatException("Missing key '$key'");
}
if (element is! T) {
throw FormatException(
'Expected element of type $T but got element of type '
'${element.runtimeType}.',
);
}
return element as T;
}
}
| devtools/packages/devtools_extensions/lib/src/api/model.dart/0 | {
"file_path": "devtools/packages/devtools_extensions/lib/src/api/model.dart",
"repo_id": "devtools",
"token_count": 1787
} | 130 |
# 8.0.1
* **Breaking change:** rename `ServerApi.getCompleted` to `ServerApi.success` and make the
`value` parameter optional.
* **Breaking change:** remove the `String? dtdUri` parameter from `ServerApi.handle` and replace
it with a parameter `DTDConnectionInfo? dtd`.
* Introduce a new typedef `DTDConnectionInfo`.
* Add a new API `apiNotifyForVmServiceConnection` that DevTools will call when a
VM service connection is connected or disconnected from the client.
* Add a helper method `packageRootFromFileUriString`.
* Refactor yaml extension methods.
* Add intent filters checking functionality for deep link validation.
# 7.0.0
* **Breaking change:** remove the `ServerApi.setCompleted` method that was a
duplicate of `ServerApi.getCompleted`.
* **Breaking change:** add required parameter `analytics` to `ServerApi.handle`, which accepts
an instance of `Analytics` from `package:unified_analytics`.
* Add the ability to send debug logs in DevTools server request responses.
* Add an optional positional parameter `logs` to the `ServerApi.serverError` method.
* Include debug logs with the `ExtensionsApi.apiServeAvailableExtensions` API response.
* Devtools server API `apiGetConsentMessage` added to fetch the consent message from
`package:unified_analytics`.
* Devtools server API `apiMarkConsentMessageAsShown` added to mark the consent message for
`package:unified_analytics` as shown to enable telemetry.
# 6.0.4
* Add `apiGetDtdUri` to the server api.
* Add a description and link to documentation to the `devtools_options.yaml` file that
is created in a user's project.
# 6.0.3
* `CompareMixin` is now generic, implementing `Comparable<T>` instead of
`Comparable<dynamic>`, and it's operators each therefore accept a `T`
argument.
* `SemanticVersion` now mixes in `CompareMixin<SemanticVersion>`, and it's
`compareTo` method therefore now accepts a `SemanticVersion`.
* Fix an issue parsing file paths that could prevent extensions from being detected.
* Bump `package:vm_service` dependency to `>=13.0.0 <15.0.0`.
# 6.0.2
* Fix an issue parsing file paths on Windows that could prevent extensions from being detected.
# 6.0.1
* Bump minimum Dart SDK version to `3.3.0-91.0.dev` and minimum Flutter SDK version to `3.17.0-0.0.pre`.
* Add field `isPublic` to `DevToolsExtensionConfig`.
* Add validation for `DevToolsExtensionConfig.name` field to ensure it is a valid
Dart package name.
* Pass warnings and errors for DevTools extension APIs from the DevTools server to
DevTools app.
# 6.0.0
* Bump `package:vm_service` dependency to ^13.0.0.
* Remove `ServiceCreator` typedef and replace usages with `VmServiceFactory` typedef from `package:vm_service`.
# 5.0.0
* Split deeplink exports into `devtools_deeplink_io.dart` and `devtools_deeplink.dart`.
* Bump `package:vm_service` to ^12.0.0.
* Adds `DeeplinkApi.androidAppLinkSettings`, `DeeplinkApi.iosBuildOptions`, and
`DeeplinkApi.iosUniversalLinkSettings` endpoints to ServerApi.
* Add shared integration test utilities to `package:devtools_shared`. These test
utilities are exported as part of the existing `devtools_test_utils.dart` library.
# 4.0.1
* Override equality operator and hashCode for `DevToolsExtensionConfig`
to be based on the values of its fields.
# 4.0.0
* Bump `package:extension_discovery` version to ^2.0.0
* Adds a `DeeplinkApi.androidBuildVariants` endpoint to ServerApi.
* **BREAKING CHANGE**:
- `ServerApi.handle` parameters `extensionsManager` and `api` were converted to named
parameters
- Adds a new required named parameter `deeplinkManager` to `ServerApi.handle`.
# 3.0.1
* Bump `package:extension_discovery` version to ^1.0.1
# 3.0.0
* Separate extension-related libraries into those that require `dart:io` (exported as
`devtools_extensions_io.dart`) and those that do not (exported as `devtools_extensions.dart`).
Prior to version 3.0.0, `package:devtools_shared` was versioned in lockstep with
`package:devtools_app`. Both of these packages are developed as part of the broader
[DevTools project](https://github.com/flutter/devtools). To see changes and commits
for `package:devtools_shared`, prior to version 3.0.0 please view the git log
[here](https://github.com/flutter/devtools/commits/master/packages/devtools_shared).
| devtools/packages/devtools_shared/CHANGELOG.md/0 | {
"file_path": "devtools/packages/devtools_shared/CHANGELOG.md",
"repo_id": "devtools",
"token_count": 1298
} | 131 |
// 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.
/// All server APIs prefix:
const apiPrefix = 'api/';
/// Key used for any request or response to specify a value argument.
const apiParameterValueKey = 'value';
/// Notifies the DevTools server when a DevTools app client connects to a new
/// VM service.
const apiNotifyForVmServiceConnection =
'${apiPrefix}notifyForVmServiceConnection';
const apiParameterVmServiceConnected = 'connected';
/// Flutter GA properties APIs:
const apiGetFlutterGAEnabled = '${apiPrefix}getFlutterGAEnabled';
const apiGetFlutterGAClientId = '${apiPrefix}getFlutterGAClientId';
/// DevTools GA properties APIs:
const apiResetDevTools = '${apiPrefix}resetDevTools';
const apiGetDevToolsFirstRun = '${apiPrefix}getDevToolsFirstRun';
const apiGetDevToolsEnabled = '${apiPrefix}getDevToolsEnabled';
const apiSetDevToolsEnabled = '${apiPrefix}setDevToolsEnabled';
/// package:unified_analytics properties APIs:
const apiGetConsentMessage = '${apiPrefix}getConsentMessage';
const apiMarkConsentMessageAsShown = '${apiPrefix}markConsentMessageAsShown';
/// Property name to apiSetDevToolsEnabled the DevToolsEnabled is the name used
/// in queryParameter:
const devToolsEnabledPropertyName = 'enabled';
/// Survey properties APIs:
/// setActiveSurvey sets the survey property to fetch and save JSON values e.g., Q1-2020
const apiSetActiveSurvey = '${apiPrefix}setActiveSurvey';
/// Survey name passed in apiSetActiveSurvey, the activeSurveyName is the property name
/// passed as a queryParameter and is the property in ~/.devtools too.
const activeSurveyName = 'activeSurveyName';
/// Returns the surveyActionTaken of the activeSurvey (apiSetActiveSurvey).
const apiGetSurveyActionTaken = '${apiPrefix}getSurveyActionTaken';
/// Sets the surveyActionTaken of the of the activeSurvey (apiSetActiveSurvey).
const apiSetSurveyActionTaken = '${apiPrefix}setSurveyActionTaken';
/// Property name to apiSetSurveyActionTaken the surveyActionTaken is the name
/// passed in queryParameter:
const surveyActionTakenPropertyName = 'surveyActionTaken';
/// Returns the surveyShownCount of the of the activeSurvey (apiSetActiveSurvey).
const apiGetSurveyShownCount = '${apiPrefix}getSurveyShownCount';
/// Increments the surveyShownCount of the of the activeSurvey (apiSetActiveSurvey).
const apiIncrementSurveyShownCount = '${apiPrefix}incrementSurveyShownCount';
const lastReleaseNotesVersionPropertyName = 'lastReleaseNotesVersion';
/// Returns the last DevTools version for which we have shown release notes.
const apiGetLastReleaseNotesVersion = '${apiPrefix}getLastReleaseNotesVersion';
/// Sets the last DevTools version for which we have shown release notes.
const apiSetLastReleaseNotesVersion = '${apiPrefix}setLastReleaseNotesVersion';
/// Returns the base app size file, if present.
const apiGetBaseAppSizeFile = '${apiPrefix}getBaseAppSizeFile';
/// Returns the test app size file used for comparing two files in a diff, if
/// present.
const apiGetTestAppSizeFile = '${apiPrefix}getTestAppSizeFile';
const baseAppSizeFilePropertyName = 'appSizeBase';
const testAppSizeFilePropertyName = 'appSizeTest';
abstract class DtdApi {
static const apiGetDtdUri = '${apiPrefix}getDtdUri';
static const uriPropertyName = 'dtdUri';
}
abstract class ExtensionsApi {
/// Serves any available extensions and returns a list of their configurations
/// to DevTools.
static const apiServeAvailableExtensions =
'${apiPrefix}serveAvailableExtensions';
/// The property name for the query parameter passed along with
/// extension-related requests to the server that describes the package root
/// for the app whose extensions are being queried.
///
/// This field is a file:// URI string and NOT a path.
static const extensionRootPathPropertyName = 'rootPath';
/// The property name for the response that the server sends back upon
/// receiving a [apiServeAvailableExtensions] request.
static const extensionsResultPropertyName = 'extensions';
/// The property name for an optional warning message field in the response
/// that the server sends back upon receiving a [apiServeAvailableExtensions]
/// request.
static const extensionsResultWarningPropertyName = 'warning';
/// Returns and optionally sets the enabled state for a DevTools extension.
static const apiExtensionEnabledState = '${apiPrefix}extensionEnabledState';
/// The property name for the query parameter passed along with
/// [apiExtensionEnabledState] requests to the server that describes the
/// name of the extension whose state is being queried.
static const extensionNamePropertyName = 'name';
/// The property name for the query parameter that is optionally passed along
/// with [apiExtensionEnabledState] requests to the server to set the
/// enabled state for the extension.
static const enabledStatePropertyName = 'enable';
}
abstract class DeeplinkApi {
/// Returns a list of available build variants of the android sub-project.
///
/// The [deeplinkRootPathPropertyName] must be provided.
static const androidBuildVariants = '${apiPrefix}androidBuildVariants';
/// Returns app link settings of the android sub-project in json format.
///
/// The [androidBuildVariantPropertyName] and [deeplinkRootPathPropertyName]
/// must be provided.
static const androidAppLinkSettings = '${apiPrefix}androidAppLinkSettings';
/// The property name for the query parameter passed along with
/// [androidAppLinkSettings] requests to the server that describes the
/// build variant the api is targeting.
static const androidBuildVariantPropertyName = 'buildVariant';
/// Returns available build options of the ios sub-project in json format.
///
/// The [deeplinkRootPathPropertyName] must be provided.
static const iosBuildOptions = '${apiPrefix}iosBuildOptions';
/// Returns universal link settings of the ios sub-project in json format.
///
/// The [deeplinkRootPathPropertyName], [xcodeConfigurationPropertyName],
/// and [xcodeTargetPropertyName] must be provided.
static const iosUniversalLinkSettings =
'${apiPrefix}iosUniversalLinkSettings';
/// The property name for the query parameter passed along with
/// [iosUniversalLinkSettings] requests to the server that describes the
/// Xcode configuration the api is targeting.
static const xcodeConfigurationPropertyName = 'configuration';
/// The property name for the query parameter passed along with
/// [iosUniversalLinkSettings] requests to the server that describes the
/// Xcode `target` the api is targeting.
static const xcodeTargetPropertyName = 'target';
/// The property name for the query parameter passed along with
/// deeplink-related requests to the server that describes the package root
/// for the app.
static const deeplinkRootPathPropertyName = 'rootPath';
}
| devtools/packages/devtools_shared/lib/src/devtools_api.dart/0 | {
"file_path": "devtools/packages/devtools_shared/lib/src/devtools_api.dart",
"repo_id": "devtools",
"token_count": 1848
} | 132 |
// 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.
// ignore_for_file: avoid_classes_with_only_static_members, avoid_print
import 'dart:async';
import 'dart:convert';
import 'dart:io';
import 'package:collection/collection.dart';
import 'package:dtd/dtd.dart';
import 'package:meta/meta.dart';
import 'package:shelf/shelf.dart' as shelf;
import 'package:unified_analytics/unified_analytics.dart';
import 'package:vm_service/vm_service.dart';
import '../deeplink/deeplink_manager.dart';
import '../devtools_api.dart';
import '../extensions/extension_enablement.dart';
import '../extensions/extension_manager.dart';
import '../service/service.dart';
import '../service_utils.dart';
import '../utils/file_utils.dart';
import 'file_system.dart';
import 'usage.dart';
// TODO(kenz): consider using Dart augmentation libraries instead of part files
// if there is a clear benefit.
part 'handlers/_deeplink.dart';
part 'handlers/_devtools_extensions.dart';
part 'handlers/_dtd.dart';
part 'handlers/_general.dart';
/// Describes an instance of the Dart Tooling Daemon.
typedef DTDConnectionInfo = ({String? uri, String? secret});
/// The DevTools server API.
///
/// This defines endpoints that serve all requests that come in over api/.
class ServerApi {
static const logsKey = 'logs';
static const errorKey = 'error';
static const errorNoActiveSurvey = 'ERROR: setActiveSurvey not called.';
/// Determines whether or not [request] is an API call.
static bool canHandle(shelf.Request request) {
return request.url.path.startsWith(apiPrefix);
}
/// Handles all requests.
///
/// To override an API call, pass in a subclass of [ServerApi].
static FutureOr<shelf.Response> handle(
shelf.Request request, {
required ExtensionsManager extensionsManager,
required DeeplinkManager deeplinkManager,
required Analytics analytics,
ServerApi? api,
DTDConnectionInfo? dtd,
}) {
api ??= ServerApi();
final queryParams = request.requestedUri.queryParameters;
// TODO(kenz): break this switch statement up so that it uses helper methods
// for each case. Also use [_checkRequiredParameters] helper.
switch (request.url.path) {
case apiNotifyForVmServiceConnection:
return Handler.handleNotifyForVmServiceConnection(
api,
queryParams,
dtd,
);
// ----- Flutter Tool GA store. -----
case apiGetFlutterGAEnabled:
// Is Analytics collection enabled?
return _encodeResponse(
FlutterUsage.doesStoreExist ? _usage!.enabled : '',
api: api,
);
case apiGetFlutterGAClientId:
// Flutter Tool GA clientId - ONLY get Flutter's clientId if enabled is
// true.
return (FlutterUsage.doesStoreExist)
? _encodeResponse(
_usage!.enabled ? _usage!.clientId : '',
api: api,
)
: _encodeResponse('', api: api);
// ----- DevTools GA store. -----
case apiResetDevTools:
_devToolsUsage.reset();
return _encodeResponse(true, api: api);
case apiGetDevToolsFirstRun:
// Has DevTools been run first time? To bring up analytics dialog.
//
// Additionally, package:unified_analytics will show a message if it
// is the first run with the package or the consent message version has
// been updated
final isFirstRun =
_devToolsUsage.isFirstRun || analytics.shouldShowMessage;
return _encodeResponse(isFirstRun, api: api);
case apiGetDevToolsEnabled:
// Is DevTools Analytics collection enabled?
final isEnabled =
_devToolsUsage.analyticsEnabled && analytics.telemetryEnabled;
return _encodeResponse(isEnabled, api: api);
case apiSetDevToolsEnabled:
// Enable or disable DevTools analytics collection.
if (queryParams.containsKey(devToolsEnabledPropertyName)) {
final analyticsEnabled =
json.decode(queryParams[devToolsEnabledPropertyName]!);
_devToolsUsage.analyticsEnabled = analyticsEnabled;
analytics.setTelemetry(analyticsEnabled);
}
return _encodeResponse(_devToolsUsage.analyticsEnabled, api: api);
case apiGetConsentMessage:
return api.success(analytics.getConsentMessage);
case apiMarkConsentMessageAsShown:
analytics.clientShowedMessage();
return _encodeResponse(true, api: api);
// ----- DevTools survey store. -----
case apiSetActiveSurvey:
// Assume failure.
bool result = false;
// Set the active survey used to store subsequent apiGetSurveyActionTaken,
// apiSetSurveyActionTaken, apiGetSurveyShownCount, and
// apiIncrementSurveyShownCount calls.
if (queryParams.keys.length == 1 &&
queryParams.containsKey(activeSurveyName)) {
final String theSurveyName = queryParams[activeSurveyName]!;
// Set the current activeSurvey.
_devToolsUsage.activeSurvey = theSurveyName;
result = true;
}
return _encodeResponse(result, api: api);
case apiGetSurveyActionTaken:
// Request setActiveSurvey has not been requested.
if (_devToolsUsage.activeSurvey == null) {
return api.badRequest(
'$errorNoActiveSurvey '
'- $apiGetSurveyActionTaken',
);
}
// SurveyActionTaken has the survey been acted upon (taken or dismissed)
return _encodeResponse(_devToolsUsage.surveyActionTaken, api: api);
// TODO(terry): remove the query param logic for this request.
// setSurveyActionTaken should only be called with the value of true, so
// we can remove the extra complexity.
case apiSetSurveyActionTaken:
// Request setActiveSurvey has not been requested.
if (_devToolsUsage.activeSurvey == null) {
return api.badRequest(
'$errorNoActiveSurvey '
'- $apiSetSurveyActionTaken',
);
}
// Set the SurveyActionTaken.
// Has the survey been taken or dismissed..
if (queryParams.containsKey(surveyActionTakenPropertyName)) {
_devToolsUsage.surveyActionTaken =
json.decode(queryParams[surveyActionTakenPropertyName]!);
}
return _encodeResponse(_devToolsUsage.surveyActionTaken, api: api);
case apiGetSurveyShownCount:
// Request setActiveSurvey has not been requested.
if (_devToolsUsage.activeSurvey == null) {
return api.badRequest(
'$errorNoActiveSurvey '
'- $apiGetSurveyShownCount',
);
}
// SurveyShownCount how many times have we asked to take survey.
return _encodeResponse(_devToolsUsage.surveyShownCount, api: api);
case apiIncrementSurveyShownCount:
// Request setActiveSurvey has not been requested.
if (_devToolsUsage.activeSurvey == null) {
return api.badRequest(
'$errorNoActiveSurvey '
'- $apiIncrementSurveyShownCount',
);
}
// Increment the SurveyShownCount, we've asked about the survey.
_devToolsUsage.incrementSurveyShownCount();
return _encodeResponse(_devToolsUsage.surveyShownCount, api: api);
// ----- Release notes api. -----
case apiGetLastReleaseNotesVersion:
return _encodeResponse(
_devToolsUsage.lastReleaseNotesVersion,
api: api,
);
case apiSetLastReleaseNotesVersion:
if (queryParams.containsKey(lastReleaseNotesVersionPropertyName)) {
_devToolsUsage.lastReleaseNotesVersion =
queryParams[lastReleaseNotesVersionPropertyName]!;
}
return _encodeResponse(
_devToolsUsage.lastReleaseNotesVersion,
api: api,
);
// ----- App size api. -----
case apiGetBaseAppSizeFile:
if (queryParams.containsKey(baseAppSizeFilePropertyName)) {
final filePath = queryParams[baseAppSizeFilePropertyName]!;
final fileJson = LocalFileSystem.devToolsFileAsJson(filePath);
if (fileJson == null) {
return api.badRequest('No JSON file available at $filePath.');
}
return api.success(fileJson);
}
return api.badRequest(
'Request for base app size file does not '
'contain a query parameter with the expected key: '
'$baseAppSizeFilePropertyName',
);
case apiGetTestAppSizeFile:
if (queryParams.containsKey(testAppSizeFilePropertyName)) {
final filePath = queryParams[testAppSizeFilePropertyName]!;
final fileJson = LocalFileSystem.devToolsFileAsJson(filePath);
if (fileJson == null) {
return api.badRequest('No JSON file available at $filePath.');
}
return api.success(fileJson);
}
return api.badRequest(
'Request for test app size file does not '
'contain a query parameter with the expected key: '
'$testAppSizeFilePropertyName',
);
// ----- Extensions api. -----
case ExtensionsApi.apiServeAvailableExtensions:
return _ExtensionsApiHandler.handleServeAvailableExtensions(
api,
queryParams,
extensionsManager,
);
case ExtensionsApi.apiExtensionEnabledState:
return _ExtensionsApiHandler.handleExtensionEnabledState(
api,
queryParams,
);
// ----- deeplink api. -----
case DeeplinkApi.androidBuildVariants:
return _DeeplinkApiHandler.handleAndroidBuildVariants(
api,
queryParams,
deeplinkManager,
);
case DeeplinkApi.androidAppLinkSettings:
return _DeeplinkApiHandler.handleAndroidAppLinkSettings(
api,
queryParams,
deeplinkManager,
);
case DeeplinkApi.iosBuildOptions:
return _DeeplinkApiHandler.handleIosBuildOptions(
api,
queryParams,
deeplinkManager,
);
case DeeplinkApi.iosUniversalLinkSettings:
return _DeeplinkApiHandler.handleIosUniversalLinkSettings(
api,
queryParams,
deeplinkManager,
);
case DtdApi.apiGetDtdUri:
return _DtdApiHandler.handleGetDtdUri(api, dtd);
default:
return api.notImplemented();
}
}
static shelf.Response _encodeResponse(
Object? object, {
required ServerApi api,
}) {
return api.success(json.encode(object));
}
static Map<String, Object?> _wrapWithLogs(
Map<String, Object?> result,
List<String> logs,
) {
result[logsKey] = logs;
return result;
}
static shelf.Response? _checkRequiredParameters(
List<String> expectedParams, {
required Map<String, String> queryParams,
required ServerApi api,
required String requestName,
}) {
final missing = expectedParams.where(
(param) => !queryParams.containsKey(param),
);
return missing.isNotEmpty
? api.badRequest(
'[$requestName] missing required query parameters: '
'${missing.toList()}',
)
: null;
}
// Accessing Flutter usage file e.g., ~/.flutter.
// NOTE: Only access the file if it exists otherwise Flutter Tool hasn't yet
// been run.
static final FlutterUsage? _usage =
FlutterUsage.doesStoreExist ? FlutterUsage() : null;
// Accessing DevTools usage file e.g., ~/.flutter-devtools/.devtools
static final _devToolsUsage = DevToolsUsage();
static DevToolsUsage get devToolsPreferences => _devToolsUsage;
/// Provides read and write access to DevTools options files
/// (e.g. path/to/app/root/devtools_options.yaml).
static final _devToolsOptions = DevToolsOptions();
/// Logs a page view in the DevTools server.
///
/// In the open-source version of DevTools, Google Analytics handles this
/// without any need to involve the server.
shelf.Response logScreenView() => notImplemented();
/// A [shelf.Response] for API calls that succeeded.
///
/// The response optionally contains a single String [value].
shelf.Response success([String? value]) => shelf.Response.ok(value);
/// A [shelf.Response] for API calls that are forbidden for the current state
/// of the server.
shelf.Response forbidden([String? reason]) =>
shelf.Response.forbidden(reason);
/// A [shelf.Response] for API calls that encountered a request problem e.g.,
/// setActiveSurvey not called.
///
/// This is a 400 Bad Request response.
shelf.Response badRequest([String? error]) {
if (error != null) print(error);
return shelf.Response(HttpStatus.badRequest, body: error);
}
/// A [shelf.Response] for API calls that encountered a server error e.g.,
/// setActiveSurvey not called.
///
/// This is a 500 Internal Server Error response.
shelf.Response serverError([String? error, List<String>? logs]) {
if (error != null) print(error);
return shelf.Response(
HttpStatus.internalServerError,
body: error != null || logs != null
? jsonEncode(<String, Object?>{
if (error != null) errorKey: error,
if (logs != null) logsKey: logs,
})
: null,
);
}
/// A [shelf.Response] for API calls that have not been implemented in this
/// server.
///
/// This is a no-op 204 No Content response because returning 404 Not Found
/// creates unnecessary noise in the console.
shelf.Response notImplemented() => shelf.Response(HttpStatus.noContent);
}
| devtools/packages/devtools_shared/lib/src/server/server_api.dart/0 | {
"file_path": "devtools/packages/devtools_shared/lib/src/server/server_api.dart",
"repo_id": "devtools",
"token_count": 5377
} | 133 |
// Copyright 2023 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'dart:io';
import 'package:collection/collection.dart';
import 'package:devtools_shared/src/deeplink/deeplink_manager.dart';
import 'package:test/test.dart';
void main() {
group('DeeplinkManager', () {
late StubbedDeeplinkManager manager;
late Directory tmpDir;
setUp(() {
manager = StubbedDeeplinkManager();
tmpDir = Directory.current.createTempSync();
});
tearDown(() {
expect(
manager.expectedCommands.isEmpty,
true,
reason:
'stub does not receive expected command ${manager.expectedCommands}',
);
tmpDir.deleteSync(recursive: true);
});
test('getBuildVariants calls flutter command correctly', () async {
const projectRoot = '/abc';
manager.expectedCommands.add(
TestCommand(
executable: manager.mockedFlutterBinary,
arguments: <String>[
'analyze',
'--android',
'--list-build-variants',
projectRoot,
],
result: ProcessResult(
0,
0,
r'''
Running Gradle task 'printBuildVariants'... 10.4s
["debug","release","profile"]
''',
'',
),
),
);
final response = await manager.getAndroidBuildVariants(
rootPath: projectRoot,
);
expect(response[DeeplinkManager.kErrorField], isNull);
expect(
response[DeeplinkManager.kOutputJsonField],
'["debug","release","profile"]',
);
});
test(
'getBuildVariants return internal server error if command failed',
() async {
const String projectRoot = '/abc';
manager.expectedCommands.add(
TestCommand(
executable: manager.mockedFlutterBinary,
arguments: <String>[
'analyze',
'--android',
'--list-build-variants',
projectRoot,
],
result: ProcessResult(
0,
1,
'',
'unknown error',
),
),
);
final response = await manager.getAndroidBuildVariants(
rootPath: projectRoot,
);
expect(
response[DeeplinkManager.kErrorField],
contains('unknown error'),
);
},
);
test('getAndroidAppLinkSettings calls flutter command correctly', () async {
const String projectRoot = '/abc';
const String json = '"some json"';
const String buildVariant = 'someVariant';
final File jsonFile = File('${tmpDir.path}/some-output.json');
jsonFile.writeAsStringSync(json);
manager.expectedCommands.add(
TestCommand(
executable: manager.mockedFlutterBinary,
arguments: <String>[
'analyze',
'--android',
'--output-app-link-settings',
'--build-variant=$buildVariant',
projectRoot,
],
result: ProcessResult(
0,
0,
'''
Running Gradle task 'printBuildVariants'... 10.4s
result saved in ${jsonFile.absolute.path}
''',
'',
),
),
);
final response = await manager.getAndroidAppLinkSettings(
buildVariant: buildVariant,
rootPath: projectRoot,
);
expect(response[DeeplinkManager.kErrorField], isNull);
expect(
response[DeeplinkManager.kOutputJsonField],
json,
);
});
test(
'getIosUniversalLinkSettings calls flutter command correctly',
() async {
const String projectRoot = '/abc';
const String json = '"some json"';
const String configuration = 'someConfig';
const String target = 'someTarget';
final File jsonFile = File('${tmpDir.path}/some-output.json');
jsonFile.writeAsStringSync(json);
manager.expectedCommands.add(
TestCommand(
executable: manager.mockedFlutterBinary,
arguments: <String>[
'analyze',
'--ios',
'--output-universal-link-settings',
'--configuration=$configuration',
'--target=$target',
projectRoot,
],
result: ProcessResult(
0,
0,
'''
Running Gradle task 'printBuildVariants'... 10.4s
result saved in ${jsonFile.absolute.path}
''',
'',
),
),
);
final response = await manager.getIosUniversalLinkSettings(
configuration: configuration,
target: target,
rootPath: projectRoot,
);
expect(response[DeeplinkManager.kErrorField], isNull);
expect(
response[DeeplinkManager.kOutputJsonField],
json,
);
},
);
test('getIosBuildOptions calls flutter command correctly', () async {
const String projectRoot = '/abc';
manager.expectedCommands.add(
TestCommand(
executable: manager.mockedFlutterBinary,
arguments: <String>[
'analyze',
'--ios',
'--list-build-options',
projectRoot,
],
result: ProcessResult(
0,
0,
r'''
{"configurations":["Debug","Release","Profile"],"targets":["Runner","RunnerTests"]}
''',
'',
),
),
);
final response = await manager.getIosBuildOptions(
rootPath: projectRoot,
);
expect(response[DeeplinkManager.kErrorField], isNull);
expect(
response[DeeplinkManager.kOutputJsonField],
'{"configurations":["Debug","Release","Profile"],"targets":["Runner","RunnerTests"]}',
);
});
});
}
class StubbedDeeplinkManager extends DeeplinkManager {
final List<TestCommand> expectedCommands = <TestCommand>[];
String mockedFlutterBinary = 'somebinary';
@override
String getFlutterBinary() => mockedFlutterBinary;
@override
Future<ProcessResult> runProcess(
String executable, {
required List<String> arguments,
}) async {
if (expectedCommands.isNotEmpty) {
final TestCommand expectedCommand = expectedCommands.removeAt(0);
expect(expectedCommand.executable, executable);
expect(
const ListEquality<String>()
.equals(expectedCommand.arguments, arguments),
isTrue,
);
return expectedCommand.result;
}
throw 'Received unexpected command: $executable ${arguments.join(' ')}';
}
}
class TestCommand {
const TestCommand({
required this.executable,
required this.arguments,
required this.result,
});
final String executable;
final List<String> arguments;
final ProcessResult result;
@override
String toString() {
return '"$executable ${arguments.join(' ')}"';
}
}
| devtools/packages/devtools_shared/test/deeplink/deeplink_manager_test.dart/0 | {
"file_path": "devtools/packages/devtools_shared/test/deeplink/deeplink_manager_test.dart",
"repo_id": "devtools",
"token_count": 3270
} | 134 |
targets:
$default:
builders:
mockito|mockBuilder:
generate_for:
- lib/src/mocks/generated.dart
| devtools/packages/devtools_test/build.yaml/0 | {
"file_path": "devtools/packages/devtools_test/build.yaml",
"repo_id": "devtools",
"token_count": 63
} | 135 |
// 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_shared/service.dart';
import 'package:mockito/annotations.dart';
import 'package:vm_service/vm_service.dart';
// See https://github.com/dart-lang/mockito/blob/master/NULL_SAFETY_README.md
// Run `devtools_tool generate-code` to regenerate mocks.
@GenerateNiceMocks([
MockSpec<ConnectedApp>(),
MockSpec<DebuggerController>(),
MockSpec<EnhanceTracingController>(),
MockSpec<ErrorBadgeManager>(),
MockSpec<ExtensionService>(),
MockSpec<FrameAnalysis>(),
MockSpec<FramePhase>(),
MockSpec<HeapSnapshotGraph>(),
MockSpec<InspectorController>(),
MockSpec<PerformanceController>(),
MockSpec<FlutterFramesController>(),
MockSpec<TimelineEventsController>(),
MockSpec<LoggingController>(),
MockSpec<RasterStatsController>(),
MockSpec<ProgramExplorerController>(),
MockSpec<ScriptManager>(),
MockSpec<ServiceConnectionManager>(),
MockSpec<ServiceManager>(),
MockSpec<VmService>(),
MockSpec<VmServiceWrapper>(),
MockSpec<InspectorObjectGroupBase>(),
MockSpec<VmObject>(),
MockSpec<ClassObject>(),
MockSpec<CodeObject>(),
MockSpec<FieldObject>(),
MockSpec<FuncObject>(),
MockSpec<ScriptObject>(),
MockSpec<LibraryObject>(),
MockSpec<ObjectPoolObject>(),
MockSpec<ICDataObject>(),
MockSpec<SubtypeTestCacheObject>(),
MockSpec<CodeViewController>(),
MockSpec<BreakpointManager>(),
MockSpec<EvalService>(),
MockSpec<BannerMessagesController>(),
MockSpec<Isolate>(),
MockSpec<IsolateState>(),
MockSpec<Obj>(),
MockSpec<VM>(),
MockSpec<VsCodeApi>(),
MockSpec<PerfettoTrackDescriptorEvent>(),
MockSpec<PerfettoTrackEvent>(),
])
void main() {}
| devtools/packages/devtools_test/lib/src/mocks/generated.dart/0 | {
"file_path": "devtools/packages/devtools_test/lib/src/mocks/generated.dart",
"repo_id": "devtools",
"token_count": 607
} | 136 |
include: package:lints/recommended.yaml
| devtools/third_party/packages/ansi_up/analysis_options.yaml/0 | {
"file_path": "devtools/third_party/packages/ansi_up/analysis_options.yaml",
"repo_id": "devtools",
"token_count": 13
} | 137 |
/**
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.
**/
:root {
/* Perfetto CSS variable overrides. */
--details-content-height: 180px! important;
--selection-fill-color: #13b9fd4d !important;
--selection-stroke-color: #13b9fd !important;
--sidebar-width: 0px! important;
--topbar-height: 36px! important;
}
body {
overscroll-behavior-x: none !important;
}
.topbar .omnibox {
height: 28px !important;
border-radius: 14px !important;
border: solid 1px !important;
border-width: thin !important;
}
.topbar .omnibox::before {
font-size: 18px !important;
margin-top: 4px !important;
margin-left: 5px !important;
padding-top: 0px !important;
}
.topbar .omnibox input {
height: 26px !important;
font-size: 16px !important;
}
.topbar .omnibox .stepthrough {
align-items: center !important;
height: 28px !important;
}
.topbar .omnibox.command-mode {
margin-left: 4px !important;
margin-right: 4px !important;
}
.overview-timeline {
height: 50px !important;
}
.query-table, .query-table thead td {
font-size: 13px !important;
}
.query-table tbody tr {
font-size: 12px !important;
}
.modal-dialog > header {
height: 16px !important;
}
.modal-dialog main {
font-size: 14px !important;
margin-top: 0px !important;
margin-bottom: 0px !important;
line-height: 1.25 !important;
}
.help h2 {
padding-top: 8px !important;
}
.keycap {
line-height: 14px !important;
}
::-webkit-scrollbar {
width: 10px !important;
height: 10px !important;
}
::-webkit-scrollbar-track {
border-radius: 2px !important;
}
::-webkit-scrollbar-thumb {
border-radius: 5px !important;
}
| devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_shared.css/0 | {
"file_path": "devtools/third_party/packages/perfetto_ui_compiled/lib/dist/devtools/devtools_shared.css",
"repo_id": "devtools",
"token_count": 686
} | 138 |
name: widget_icons_example
description: Example usage of widget_icons.
publish_to: none
version: 0.0.2
environment:
sdk: ^3.0.0
dependencies:
flutter:
sdk: flutter
widget_icons:
path: ../
dev_dependencies:
flutter_test:
sdk: flutter
flutter_lints: ^3.0.1
flutter:
uses-material-design: true
| devtools/third_party/packages/widget_icons/example/pubspec.yaml/0 | {
"file_path": "devtools/third_party/packages/widget_icons/example/pubspec.yaml",
"repo_id": "devtools",
"token_count": 132
} | 139 |
#!/bin/bash
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Fast fail the script on failures.
set -ex
source ./tool/ci/setup.sh
# Change the CI to the packages/devtools_app directory.
pushd $DEVTOOLS_DIR/packages/devtools_app
echo `pwd`
if [ "$BOT" = "main" ]; then
# Verify that dart format has been run.
echo "Checking formatting..."
# Here, we use the dart instance from the flutter sdk.
$(dirname $(which flutter))/dart format --output=none --set-exit-if-changed .
# Make sure the app versions are in sync.
devtools_tool repo-check
# Get packages
devtools_tool pub-get
# Analyze the code
devtools_tool analyze
elif [ "$BOT" = "build_ddc" ]; then
# TODO(https://github.com/flutter/flutter/issues/43538): Remove workaround.
flutter build web --pwa-strategy=none --no-tree-shake-icons
elif [ "$BOT" = "build_dart2js" ]; then
flutter build web --release --no-tree-shake-icons
elif [[ "$BOT" == "test_ddc" || "$BOT" == "test_dart2js" ]]; then
if [ "$BOT" == "test_dart2js" ]; then
USE_WEBDEV_RELEASE=true
else
USE_WEBDEV_RELEASE=false
fi
echo "USE_WEBDEV_RELEASE = $USE_WEBDEV_RELEASE"
FILES="test/"
if [ "$ONLY_GOLDEN" = "true" ]; then
# Set the test files to only those containing golden test
FILES=$(grep -rl "matchesDevToolsGolden\|matchesGoldenFile" test | grep "_test.dart$" | tr '\n' ' ')
fi
# TODO(https://github.com/flutter/devtools/issues/1987): once this issue is fixed,
# we may need to explicitly exclude running integration_tests here (this is what we
# used to do when integration tests were enabled).
if [ "$PLATFORM" = "vm" ]; then
WEBDEV_RELEASE=$USE_WEBDEV_RELEASE flutter test $FILES
elif [ "$PLATFORM" = "chrome" ]; then
WEBDEV_RELEASE=$USE_WEBDEV_RELEASE flutter test --platform chrome $FILES
else
echo "unknown test platform"
exit 1
fi
# TODO(https://github.com/flutter/devtools/issues/1987): consider running integration tests
# for a DDC build of DevTools
# elif [ "$BOT" = "integration_ddc" ]; then
# TODO(https://github.com/flutter/devtools/issues/1987): rewrite legacy integration tests.
elif [ "$BOT" = "integration_dart2js" ]; then
if [ "$DEVTOOLS_PACKAGE" = "devtools_app" ]; then
flutter pub get
# TODO(https://github.com/flutter/flutter/issues/118470): remove this warning.
echo "Preparing to run integration tests. Warning: if you see the exception \
'Web Driver Command WebDriverCommandType.screenshot failed while waiting for driver side', \
this is a known issue and likely means that the golden image check failed (see \
https://github.com/flutter/flutter/issues/118470). Run the test locally to see if new \
images under a 'failures/' directory are created as a result of the test run: \
$ dart run integration_test/run_tests.dart --headless"
if [ "$DEVICE" = "flutter" ]; then
dart run integration_test/run_tests.dart --headless --shard="$SHARD"
elif [ "$DEVICE" = "flutter-web" ]; then
dart run integration_test/run_tests.dart --test-app-device=chrome --headless --shard="$SHARD"
elif [ "$DEVICE" = "dart-cli" ]; then
dart run integration_test/run_tests.dart --test-app-device=cli --headless --shard="$SHARD"
fi
elif [ "$DEVTOOLS_PACKAGE" = "devtools_extensions" ]; then
pushd $DEVTOOLS_DIR/packages/devtools_extensions
dart run integration_test/run_tests.dart --headless
popd
fi
fi
popd
| devtools/tool/ci/bots.sh/0 | {
"file_path": "devtools/tool/ci/bots.sh",
"repo_id": "devtools",
"token_count": 1385
} | 140 |
// 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:cli_util/cli_logging.dart';
import 'package:io/io.dart';
import 'package:path/path.dart' as path;
import '../model.dart';
import '../utils.dart';
const _upgradeFlag = 'upgrade';
const _onlyMainFlag = 'only-main';
class PubGetCommand extends Command {
PubGetCommand() {
argParser
..addFlag(_upgradeFlag, negatable: false, help: 'Run pub upgrade.')
..addFlag(
_onlyMainFlag,
negatable: false,
help: 'Only execute on the top-level `devtools/packages/devtools_*` '
'packages and any of their subdirectories',
);
}
@override
String get name => 'pub-get';
@override
String get description => "Run 'flutter pub get' in all DevTools packages.";
@override
Future run() async {
final log = Logger.standard();
final repo = DevToolsRepo.getInstance();
final processManager = ProcessManager();
final packages = repo.getPackages();
final upgrade = argResults![_upgradeFlag] as bool;
final onlyMainPackages = argResults![_onlyMainFlag] as bool;
final command = upgrade ? 'upgrade' : 'get';
log.stdout('Running flutter pub $command...');
int failureCount = 0;
for (Package p in packages) {
final packagePathParts = path.split(p.relativePath);
final isMainPackageOrSubdirectory = packagePathParts.length >= 2 &&
packagePathParts.first == 'packages' &&
packagePathParts[1].startsWith('devtools_');
if (onlyMainPackages && !isMainPackageOrSubdirectory) continue;
final progress = log.progress(' ${p.relativePath}');
final process = await processManager.runProcess(
CliCommand.flutter(
['pub', command],
// Run all so we can see the full set of results instead of stopping
// on the first error.
throwOnException: false,
),
workingDirectory: p.packagePath,
);
final exitCode = process.exitCode;
if (exitCode == 0) {
progress.finish(showTiming: true);
} else {
failureCount++;
progress.finish(message: 'failed (exit code $exitCode)');
}
}
return failureCount == 0 ? 0 : 1;
}
}
| devtools/tool/lib/commands/pub_get.dart/0 | {
"file_path": "devtools/tool/lib/commands/pub_get.dart",
"repo_id": "devtools",
"token_count": 889
} | 141 |
#!/usr/bin/env python3
#
# 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.
"""Copies and renames android artifacts."""
import argparse
import os
import shutil
import sys
def cp_files(args):
"""Copies files from source to destination.
It creates the destination folder if it does not exists yet.
"""
for src, dst in args.input_pairs:
os.makedirs(os.path.dirname(dst), exist_ok=True)
shutil.copyfile(src, dst)
def main():
parser = argparse.ArgumentParser()
parser.add_argument(
'-i',
dest='input_pairs',
nargs=2,
action='append',
help='The input file and its destination.'
)
cp_files(parser.parse_args())
return 0
if __name__ == '__main__':
sys.exit(main())
| engine/build/android_artifacts.py/0 | {
"file_path": "engine/build/android_artifacts.py",
"repo_id": "engine",
"token_count": 293
} | 142 |
# 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.
_src_root = "//flutter/third_party/flatbuffers"
config("flatbuffers_public_configs") {
include_dirs = [ "$_src_root/include" ]
cflags = [ "-Wno-newline-eof" ]
}
source_set("flatbuffers") {
sources = [
"$_src_root/include/flatbuffers/allocator.h",
"$_src_root/include/flatbuffers/array.h",
"$_src_root/include/flatbuffers/base.h",
"$_src_root/include/flatbuffers/bfbs_generator.h",
"$_src_root/include/flatbuffers/buffer.h",
"$_src_root/include/flatbuffers/buffer_ref.h",
"$_src_root/include/flatbuffers/default_allocator.h",
"$_src_root/include/flatbuffers/detached_buffer.h",
"$_src_root/include/flatbuffers/flatbuffer_builder.h",
"$_src_root/include/flatbuffers/flatbuffers.h",
"$_src_root/include/flatbuffers/flex_flat_util.h",
"$_src_root/include/flatbuffers/flexbuffers.h",
"$_src_root/include/flatbuffers/hash.h",
"$_src_root/include/flatbuffers/idl.h",
"$_src_root/include/flatbuffers/minireflect.h",
"$_src_root/include/flatbuffers/reflection.h",
"$_src_root/include/flatbuffers/reflection_generated.h",
"$_src_root/include/flatbuffers/registry.h",
"$_src_root/include/flatbuffers/stl_emulation.h",
"$_src_root/include/flatbuffers/string.h",
"$_src_root/include/flatbuffers/struct.h",
"$_src_root/include/flatbuffers/table.h",
"$_src_root/include/flatbuffers/util.h",
"$_src_root/include/flatbuffers/vector.h",
"$_src_root/include/flatbuffers/vector_downward.h",
"$_src_root/include/flatbuffers/verifier.h",
"$_src_root/src/idl_gen_text.cpp",
"$_src_root/src/idl_parser.cpp",
"$_src_root/src/reflection.cpp",
"$_src_root/src/util.cpp",
]
public_configs = [ ":flatbuffers_public_configs" ]
}
executable("flatc") {
sources = [
"$_src_root/grpc/src/compiler/cpp_generator.cc",
"$_src_root/grpc/src/compiler/cpp_generator.h",
"$_src_root/grpc/src/compiler/go_generator.cc",
"$_src_root/grpc/src/compiler/go_generator.h",
"$_src_root/grpc/src/compiler/java_generator.cc",
"$_src_root/grpc/src/compiler/java_generator.h",
"$_src_root/grpc/src/compiler/python_generator.cc",
"$_src_root/grpc/src/compiler/python_generator.h",
"$_src_root/grpc/src/compiler/schema_interface.h",
"$_src_root/grpc/src/compiler/swift_generator.cc",
"$_src_root/grpc/src/compiler/swift_generator.h",
"$_src_root/grpc/src/compiler/ts_generator.cc",
"$_src_root/grpc/src/compiler/ts_generator.h",
"$_src_root/include/flatbuffers/code_generators.h",
"$_src_root/src/annotated_binary_text_gen.cpp",
"$_src_root/src/annotated_binary_text_gen.h",
"$_src_root/src/bfbs_gen.h",
"$_src_root/src/bfbs_gen_lua.cpp",
"$_src_root/src/bfbs_gen_lua.h",
"$_src_root/src/bfbs_namer.h",
"$_src_root/src/binary_annotator.cpp",
"$_src_root/src/binary_annotator.h",
"$_src_root/src/code_generators.cpp",
"$_src_root/src/flatc.cpp",
"$_src_root/src/flatc_main.cpp",
"$_src_root/src/idl_gen_cpp.cpp",
"$_src_root/src/idl_gen_csharp.cpp",
"$_src_root/src/idl_gen_dart.cpp",
"$_src_root/src/idl_gen_fbs.cpp",
"$_src_root/src/idl_gen_go.cpp",
"$_src_root/src/idl_gen_grpc.cpp",
"$_src_root/src/idl_gen_java.cpp",
"$_src_root/src/idl_gen_json_schema.cpp",
"$_src_root/src/idl_gen_kotlin.cpp",
"$_src_root/src/idl_gen_lobster.cpp",
"$_src_root/src/idl_gen_lua.cpp",
"$_src_root/src/idl_gen_php.cpp",
"$_src_root/src/idl_gen_python.cpp",
"$_src_root/src/idl_gen_rust.cpp",
"$_src_root/src/idl_gen_swift.cpp",
"$_src_root/src/idl_gen_ts.cpp",
"$_src_root/src/idl_namer.h",
"$_src_root/src/namer.h",
]
include_dirs = [ "$_src_root/grpc" ]
deps = [ ":flatbuffers" ]
}
| engine/build/secondary/flutter/third_party/flatbuffers/BUILD.gn/0 | {
"file_path": "engine/build/secondary/flutter/third_party/flatbuffers/BUILD.gn",
"repo_id": "engine",
"token_count": 1791
} | 143 |
# Copyright 2014 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.
config("gmock_config") {
# Gmock headers need to be able to find themselves.
include_dirs = [ "include" ]
}
static_library("gmock") {
# TODO http://crbug.com/412064 enable this flag all the time.
testonly = !is_component_build
sources = [
# Sources based on files in r173 of gmock.
"include/gmock/gmock-actions.h",
"include/gmock/gmock-cardinalities.h",
"include/gmock/gmock-generated-actions.h",
"include/gmock/gmock-generated-function-mockers.h",
"include/gmock/gmock-generated-matchers.h",
"include/gmock/gmock-generated-nice-strict.h",
"include/gmock/gmock-matchers.h",
"include/gmock/gmock-spec-builders.h",
"include/gmock/gmock.h",
"include/gmock/internal/gmock-generated-internal-utils.h",
"include/gmock/internal/gmock-internal-utils.h",
"include/gmock/internal/gmock-port.h",
#"src/gmock-all.cc", # Not needed by our build.
"src/gmock-cardinalities.cc",
"src/gmock-internal-utils.cc",
"src/gmock-matchers.cc",
"src/gmock-spec-builders.cc",
"src/gmock.cc",
]
# This project includes some stuff form gtest's guts.
include_dirs = [ "../gtest/include" ]
public_configs = [
":gmock_config",
"//testing/gtest:gtest_config",
]
}
static_library("gmock_main") {
# TODO http://crbug.com/412064 enable this flag all the time.
testonly = !is_component_build
sources = [ "src/gmock_main.cc" ]
deps = [ ":gmock" ]
}
| engine/build/secondary/testing/gmock/BUILD.gn/0 | {
"file_path": "engine/build/secondary/testing/gmock/BUILD.gn",
"repo_id": "engine",
"token_count": 626
} | 144 |
# 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 = [ "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",
]
}
}
# 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 = [
"src",
"$root_gen_dir",
]
}
static_library("protobuf_lite") {
sources = [
"src/google/protobuf/any_lite.cc",
"src/google/protobuf/arena.cc",
"src/google/protobuf/arenastring.cc",
"src/google/protobuf/arenaz_sampler.cc",
"src/google/protobuf/extension_set.cc",
"src/google/protobuf/generated_enum_util.cc",
"src/google/protobuf/generated_message_tctable_lite.cc",
"src/google/protobuf/generated_message_util.cc",
"src/google/protobuf/implicit_weak_message.cc",
"src/google/protobuf/inlined_string_field.cc",
"src/google/protobuf/io/coded_stream.cc",
"src/google/protobuf/io/io_win32.cc",
"src/google/protobuf/io/strtod.cc",
"src/google/protobuf/io/zero_copy_stream.cc",
"src/google/protobuf/io/zero_copy_stream_impl.cc",
"src/google/protobuf/io/zero_copy_stream_impl_lite.cc",
"src/google/protobuf/map.cc",
"src/google/protobuf/message_lite.cc",
"src/google/protobuf/parse_context.cc",
"src/google/protobuf/repeated_field.cc",
"src/google/protobuf/repeated_ptr_field.cc",
"src/google/protobuf/stubs/bytestream.cc",
"src/google/protobuf/stubs/common.cc",
"src/google/protobuf/stubs/int128.cc",
"src/google/protobuf/stubs/status.cc",
"src/google/protobuf/stubs/statusor.cc",
"src/google/protobuf/stubs/stringpiece.cc",
"src/google/protobuf/stubs/stringprintf.cc",
"src/google/protobuf/stubs/structurally_valid.cc",
"src/google/protobuf/stubs/strutil.cc",
"src/google/protobuf/stubs/time.cc",
"src/google/protobuf/wire_format_lite.cc",
]
# git ls-files -- ':!*/compiler/*' ':!*/testing/*' ':!*/util/*' 'src/google/protobuf/*.h' | sed 's/^/"/' | sed 's/$/",/'
public = [ PROTOBUF_LITE_PUBLIC ]
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 = [
"src/google/protobuf/any.cc",
"src/google/protobuf/any.pb.cc",
"src/google/protobuf/api.pb.cc",
"src/google/protobuf/compiler/importer.cc",
"src/google/protobuf/compiler/parser.cc",
"src/google/protobuf/descriptor.cc",
"src/google/protobuf/descriptor.pb.cc",
"src/google/protobuf/descriptor_database.cc",
"src/google/protobuf/duration.pb.cc",
"src/google/protobuf/dynamic_message.cc",
"src/google/protobuf/empty.pb.cc",
"src/google/protobuf/extension_set_heavy.cc",
"src/google/protobuf/field_mask.pb.cc",
"src/google/protobuf/generated_message_bases.cc",
"src/google/protobuf/generated_message_reflection.cc",
"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.
# "src/google/protobuf/io/gzip_stream.cc",
"src/google/protobuf/io/printer.cc",
"src/google/protobuf/io/tokenizer.cc",
"src/google/protobuf/map_field.cc",
"src/google/protobuf/message.cc",
"src/google/protobuf/reflection_ops.cc",
"src/google/protobuf/service.cc",
"src/google/protobuf/source_context.pb.cc",
"src/google/protobuf/struct.pb.cc",
"src/google/protobuf/stubs/substitute.cc",
"src/google/protobuf/text_format.cc",
"src/google/protobuf/timestamp.pb.cc",
"src/google/protobuf/type.pb.cc",
"src/google/protobuf/unknown_field_set.cc",
"src/google/protobuf/util/delimited_message_util.cc",
"src/google/protobuf/util/field_comparator.cc",
"src/google/protobuf/util/field_mask_util.cc",
"src/google/protobuf/util/internal/datapiece.cc",
"src/google/protobuf/util/internal/default_value_objectwriter.cc",
"src/google/protobuf/util/internal/error_listener.cc",
"src/google/protobuf/util/internal/field_mask_utility.cc",
"src/google/protobuf/util/internal/json_escaping.cc",
"src/google/protobuf/util/internal/json_objectwriter.cc",
"src/google/protobuf/util/internal/json_stream_parser.cc",
"src/google/protobuf/util/internal/object_writer.cc",
"src/google/protobuf/util/internal/proto_writer.cc",
"src/google/protobuf/util/internal/protostream_objectsource.cc",
"src/google/protobuf/util/internal/protostream_objectwriter.cc",
"src/google/protobuf/util/internal/type_info.cc",
"src/google/protobuf/util/internal/utility.cc",
"src/google/protobuf/util/json_util.cc",
"src/google/protobuf/util/message_differencer.cc",
"src/google/protobuf/util/time_util.cc",
"src/google/protobuf/util/type_resolver_util.cc",
"src/google/protobuf/wire_format.cc",
"src/google/protobuf/wrappers.pb.cc",
]
# git ls-files -- ':!*/compiler/*' ':!*/testing/*' 'src/google/protobuf/*.h' | sed 's/^/"/' | sed 's/$/",/'
public = [ PROTOBUF_FULL_PUBLIC ]
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 = [ PROTOC_LIB_SOURCES ]
configs += [ ":protobuf_warnings" ]
public_deps = [ ":protobuf_full" ]
}
executable("protoc") {
sources = [ "src/google/protobuf/compiler/main.cc" ]
deps = [ ":protoc_lib" ]
}
}
| engine/build/secondary/third_party/protobuf/BUILD.input.gn/0 | {
"file_path": "engine/build/secondary/third_party/protobuf/BUILD.input.gn",
"repo_id": "engine",
"token_count": 3432
} | 145 |
{
"builds": [
{
"archives": [
{
"name": "android_jit_release_x86",
"type": "gcs",
"base_path": "out/android_jit_release_x86/zip_archives/",
"include_paths": [
"out/android_jit_release_x86/zip_archives/android-x86-jit-release/artifacts.zip",
"out/android_jit_release_x86/zip_archives/download.flutter.io"
],
"realm": "production"
}
],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--android",
"--android-cpu=x86",
"--runtime-mode=jit_release",
"--rbe",
"--no-goma"
],
"name": "android_jit_release_x86",
"ninja": {
"config": "android_jit_release_x86",
"targets": [
"flutter",
"flutter/shell/platform/android:embedding_jars",
"flutter/shell/platform/android:abi_jars",
"flutter/shell/platform/android:robolectric_tests"
]
},
"tests": [
{
"language": "python3",
"name": "Host Tests for android_jit_release_x86",
"script": "flutter/testing/run_tests.py",
"parameters": [
"--variant",
"android_jit_release_x86",
"--type",
"java",
"--engine-capture-core-dump",
"--android-variant",
"android_jit_release_x86"
]
}
]
},
{
"archives": [
{
"name": "android_debug",
"type": "gcs",
"base_path": "out/android_debug/zip_archives/",
"include_paths": [
"out/android_debug/zip_archives/android-arm/artifacts.zip",
"out/android_debug/zip_archives/android-arm/symbols.zip",
"out/android_debug/zip_archives/download.flutter.io",
"out/android_debug/zip_archives/sky_engine.zip",
"out/android_debug/zip_archives/android-javadoc.zip"
],
"realm": "production"
}
],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--android",
"--android-cpu=arm",
"--no-lto",
"--rbe",
"--no-goma"
],
"name": "android_debug",
"ninja": {
"config": "android_debug",
"targets": [
"flutter",
"flutter/sky/dist:zip_old_location",
"flutter/shell/platform/android:embedding_jars",
"flutter/shell/platform/android:abi_jars",
"flutter/shell/platform/android:robolectric_tests"
]
},
"tests": [
{
"language": "python3",
"name": "Host Tests for android_debug",
"script": "flutter/testing/run_tests.py",
"parameters": [
"--variant",
"android_debug",
"--type",
"java",
"--engine-capture-core-dump",
"--android-variant",
"android_debug"
]
}
]
},
{
"archives": [
{
"name": "android_debug_arm64",
"type": "gcs",
"base_path": "out/android_debug_arm64/zip_archives/",
"include_paths": [
"out/android_debug_arm64/zip_archives/android-arm64/artifacts.zip",
"out/android_debug_arm64/zip_archives/android-arm64/symbols.zip",
"out/android_debug_arm64/zip_archives/download.flutter.io"
],
"realm": "production"
}
],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--android",
"--android-cpu=arm64",
"--no-lto",
"--rbe",
"--no-goma"
],
"name": "android_debug_arm64",
"ninja": {
"config": "android_debug_arm64",
"targets": [
"flutter",
"flutter/shell/platform/android:abi_jars"
]
}
},
{
"archives": [
{
"name": "android_debug_x86",
"type": "gcs",
"base_path": "out/android_debug_x86/zip_archives/",
"include_paths": [
"out/android_debug_x86/zip_archives/android-x86/artifacts.zip",
"out/android_debug_x86/zip_archives/android-x86/symbols.zip",
"out/android_debug_x86/zip_archives/download.flutter.io"
],
"realm": "production"
}
],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--android",
"--android-cpu=x86",
"--no-lto",
"--rbe",
"--no-goma"
],
"name": "android_debug_x86",
"ninja": {
"config": "android_debug_x86",
"targets": [
"flutter",
"flutter/shell/platform/android:abi_jars"
]
}
},
{
"archives": [
{
"name": "android_debug_x64",
"type": "gcs",
"base_path": "out/android_debug_x64/zip_archives/",
"include_paths": [
"out/android_debug_x64/zip_archives/android-x64/artifacts.zip",
"out/android_debug_x64/zip_archives/android-x64/symbols.zip",
"out/android_debug_x64/zip_archives/download.flutter.io"
],
"realm": "production"
}
],
"drone_dimensions": [
"device_type=none",
"os=Linux"
],
"gclient_variables": {
"use_rbe": true
},
"gn": [
"--android",
"--android-cpu=x64",
"--no-lto",
"--rbe",
"--no-goma"
],
"name": "android_debug_x64",
"ninja": {
"config": "android_debug_x64",
"targets": [
"flutter",
"flutter/shell/platform/android:abi_jars"
]
}
}
],
"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_debug_engine.json/0 | {
"file_path": "engine/ci/builders/linux_android_debug_engine.json",
"repo_id": "engine",
"token_count": 5519
} | 146 |
{
"builds": [
{
"name": "impeller-cmake-example",
"archives": [],
"drone_dimensions": [
"device_type=none",
"os=Mac-13",
"cpu=arm64"
],
"gclient_variables": {
"download_android_deps": false,
"download_impeller_cmake_example": true
},
"gn": [
"--impeller-cmake-example",
"--xcode-symlinks"
],
"ninja": {
"config": "impeller-cmake-example",
"targets": [
]
}
}
]
}
| engine/ci/builders/mac_impeller_cmake_example.json/0 | {
"file_path": "engine/ci/builders/mac_impeller_cmake_example.json",
"repo_id": "engine",
"token_count": 443
} | 147 |
#!/usr/bin/env vpython3
# 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 argparse
import os
import subprocess
import sys
# When passed the --setup flag, this script fetches git submodules and other
# dependencies for the impeller-cmake-example. When passed the --cmake flag,
# this script runs cmake on impeller-cmake-example. That will create
# a build output directory for impeller-cmake-example under
# out/impeller-cmake-example, so the build can then be performed with
# e.g. ninja -C out/impeller-cmake-example-out.
SRC_ROOT = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
def parse_args(argv):
parser = argparse.ArgumentParser(
description='A script that tests the impeller-cmake-example build.',
)
parser.add_argument(
'--cmake',
'-c',
default=False,
action='store_true',
help='Run cmake for impeller-cmake-example.',
)
parser.add_argument(
'--goma-dir',
'-g',
type=str,
default=os.getenv('GOMA_DIR'),
help=(
'The path to the Goma install. Defaults to the value of the '
'GOMA_DIR environment variable.'
),
)
parser.add_argument(
'--path',
'-p',
type=str,
help='The path to the impeller-cmake-example source.',
)
parser.add_argument(
'--setup',
'-s',
default=False,
action='store_true',
help='Clone the git submodules.',
)
parser.add_argument(
'--verbose',
'-v',
default=False,
action='store_true',
help='Emit verbose output.',
)
parser.add_argument(
'--xcode-symlinks',
default=False,
action='store_true',
help='Symlink the Xcode sysroot to help Goma be successful.',
)
return parser.parse_args(argv)
def validate_args(args):
if not os.path.isdir(os.path.join(SRC_ROOT, args.path)):
print(
'The --path argument must be a valid directory relative to the '
'engine src/ directory.'
)
return False
return True
def create_xcode_symlink():
find_sdk_command = [
'python3',
os.path.join(SRC_ROOT, 'build', 'mac', 'find_sdk.py'),
'--print_sdk_path',
'10.15',
'--symlink',
os.path.join(SRC_ROOT, 'out', 'impeller-cmake-example-xcode-sysroot'),
]
find_sdk_output = subprocess.check_output(find_sdk_command).decode('utf-8')
return find_sdk_output.split('\n')[0]
def main(argv):
args = parse_args(argv[1:])
if not validate_args(args):
return 1
impeller_cmake_dir = os.path.join(SRC_ROOT, args.path)
if args.setup:
git_command = [
'git',
'-C',
impeller_cmake_dir,
'submodule',
'update',
'--init',
'--recursive',
'--depth',
'1',
'--jobs',
str(os.cpu_count()),
]
subprocess.check_call(git_command)
# Run the deps.sh shell script in the repo.
subprocess.check_call(['bash', 'deps.sh'], cwd=impeller_cmake_dir)
return 0
if args.cmake:
cmake_path = os.path.join(SRC_ROOT, 'buildtools', 'mac-x64', 'cmake', 'bin', 'cmake')
cmake_command = [
cmake_path,
'--preset',
'flutter-ci-mac-debug-x64',
'-B',
os.path.join(SRC_ROOT, 'out', 'impeller-cmake-example'),
]
cmake_env = os.environ.copy()
ninja_path = os.path.join(SRC_ROOT, 'flutter', 'third_party', 'ninja')
cmake_env.update({
'PATH': os.environ['PATH'] + ':' + ninja_path,
'FLUTTER_ENGINE_SRC_DIR': SRC_ROOT,
'FLUTTER_GOMA_DIR': args.goma_dir,
})
if args.xcode_symlinks:
xcode_symlink_path = create_xcode_symlink()
cmake_env.update({
'FLUTTER_OSX_SYSROOT': xcode_symlink_path,
})
subprocess.check_call(cmake_command, env=cmake_env, cwd=impeller_cmake_dir)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv))
| engine/ci/impeller_cmake_build_test.py/0 | {
"file_path": "engine/ci/impeller_cmake_build_test.py",
"repo_id": "engine",
"token_count": 1788
} | 148 |
# Copyright 2013 The Flutter Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
if (is_android) {
import("//build/config/android/config.gni")
}
if (target_cpu == "arm" || target_cpu == "arm64") {
import("//build/config/arm.gni")
}
declare_args() {
# The runtime mode ("debug", "profile", "release", or "jit_release")
flutter_runtime_mode = "debug"
# Whether to use a prebuilt Dart SDK instead of building one.
flutter_prebuilt_dart_sdk = false
# Whether to build host-side development artifacts.
flutter_build_engine_artifacts = true
# Whether to include backtrace support.
enable_backtrace = true
# Whether to include --fapplication-extension when build iOS framework.
# This is currently a test flag and does not work properly.
#TODO(cyanglaz): Remove above comment about test flag when the entire iOS embedder supports app extension
#https://github.com/flutter/flutter/issues/124289
darwin_extension_safe = false
}
# feature_defines_list ---------------------------------------------------------
feature_defines_list = [
"FLUTTER_RUNTIME_MODE_DEBUG=1",
"FLUTTER_RUNTIME_MODE_PROFILE=2",
"FLUTTER_RUNTIME_MODE_RELEASE=3",
"FLUTTER_RUNTIME_MODE_JIT_RELEASE=4",
"DART_LEGACY_API=[[deprecated]]",
]
if (flutter_runtime_mode == "debug") {
feature_defines_list += [
"FLUTTER_RUNTIME_MODE=1",
"FLUTTER_JIT_RUNTIME=1",
]
} else if (flutter_runtime_mode == "profile") {
feature_defines_list += [ "FLUTTER_RUNTIME_MODE=2" ]
} else if (flutter_runtime_mode == "release") {
feature_defines_list += [
"FLUTTER_RUNTIME_MODE=3",
"FLUTTER_RELEASE=1",
]
} else if (flutter_runtime_mode == "jit_release") {
feature_defines_list += [
"FLUTTER_RUNTIME_MODE=4",
"FLUTTER_RELEASE=1",
"FLUTTER_JIT_RUNTIME=1",
]
} else {
feature_defines_list += [ "FLUTTER_RUNTIME_MODE=0" ]
}
if (is_ios || is_mac) {
flutter_cflags_objc = [
"-Werror=overriding-method-mismatch",
"-Werror=undeclared-selector",
]
if (is_mac) {
flutter_cflags_objc += [ "-fapplication-extension" ]
}
flutter_cflags_objcc = flutter_cflags_objc
flutter_cflags_objc_arc = flutter_cflags_objc + [ "-fobjc-arc" ]
flutter_cflags_objcc_arc = flutter_cflags_objc_arc
}
# A combo of host os name and cpu is used in several locations to
# generate the names of the archived artifacts.
platform_name = host_os
if (platform_name == "mac") {
platform_name = "darwin"
} else if (platform_name == "win") {
platform_name = "windows"
}
full_platform_name = "$platform_name-$host_cpu"
target_platform_name = target_os
if (target_platform_name == "mac") {
platform_target_name = "darwin"
} else if (target_platform_name == "win") {
target_platform_name = "windows"
}
full_target_platform_name = "$target_platform_name-$target_cpu"
# Prebuilt Dart SDK location
_target_os_name = target_os
if (_target_os_name == "mac") {
_target_os_name = "macos"
} else if (_target_os_name == "win") {
_target_os_name = "windows"
}
_host_os_name = host_os
if (_host_os_name == "mac") {
_host_os_name = "macos"
} else if (_host_os_name == "win") {
_host_os_name = "windows"
}
# When building 32-bit Android development artifacts for Windows host (like
# gen_snapshot), the host_cpu is set to x86. However, the correct prebuilt
# Dart SDK to use during this build is still the 64-bit one.
_host_cpu = host_cpu
if (host_os == "win" && host_cpu == "x86") {
_host_cpu = "x64"
}
_target_prebuilt_config = "$_target_os_name-$target_cpu"
_host_prebuilt_config = "$_host_os_name-$_host_cpu"
target_prebuilts_path = "//flutter/prebuilts/$_target_prebuilt_config"
host_prebuilts_path = "//flutter/prebuilts/$_host_prebuilt_config"
if (flutter_prebuilt_dart_sdk) {
target_prebuilt_dart_sdk = "$target_prebuilts_path/dart-sdk"
host_prebuilt_dart_sdk = "$host_prebuilts_path/dart-sdk"
# There is no prebuilt Dart SDK targeting Fuchsia, iOS, and Android, but we
# also don't need one, so even when the build is targeting one of these
# platforms, we use the prebuilt Dart SDK for the host.
if (current_toolchain == host_toolchain || target_os == "android" ||
target_os == "fuchsia" || target_os == "ios" || target_os == "wasm") {
prebuilt_dart_sdk = host_prebuilt_dart_sdk
prebuilt_dart_sdk_config = _host_prebuilt_config
} else {
prebuilt_dart_sdk = target_prebuilt_dart_sdk
prebuilt_dart_sdk_config = _target_prebuilt_config
}
}
# Flutter SDK artifacts should only be built when either doing host builds, or
# for cross-compiled desktop targets.
# TODO: We can't build the engine artifacts for arm (32-bit) right now;
# see https://github.com/flutter/flutter/issues/74322
build_engine_artifacts =
flutter_build_engine_artifacts &&
(current_toolchain == host_toolchain ||
(is_linux && !is_chromeos && current_cpu != "arm") || is_mac || is_win)
| engine/common/config.gni/0 | {
"file_path": "engine/common/config.gni",
"repo_id": "engine",
"token_count": 1810
} | 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.
#ifndef FLUTTER_COMMON_SETTINGS_H_
#define FLUTTER_COMMON_SETTINGS_H_
#include <fcntl.h>
#include <chrono>
#include <cstdint>
#include <memory>
#include <optional>
#include <string>
#include <vector>
#include "flutter/fml/build_config.h"
#include "flutter/fml/closure.h"
#include "flutter/fml/mapping.h"
#include "flutter/fml/time/time_point.h"
#include "flutter/fml/unique_fd.h"
namespace flutter {
// The combination of targeted graphics API and Impeller support.
enum class AndroidRenderingAPI {
kSoftware,
kImpellerOpenGLES,
kImpellerVulkan,
kSkiaOpenGLES
};
class FrameTiming {
public:
enum Phase {
kVsyncStart,
kBuildStart,
kBuildFinish,
kRasterStart,
kRasterFinish,
kRasterFinishWallTime,
kCount
};
static constexpr Phase kPhases[kCount] = {
kVsyncStart, kBuildStart, kBuildFinish,
kRasterStart, kRasterFinish, kRasterFinishWallTime};
static constexpr int kStatisticsCount = kCount + 5;
fml::TimePoint Get(Phase phase) const { return data_[phase]; }
fml::TimePoint Set(Phase phase, fml::TimePoint value) {
return data_[phase] = value;
}
uint64_t GetFrameNumber() const { return frame_number_; }
void SetFrameNumber(uint64_t frame_number) { frame_number_ = frame_number; }
uint64_t GetLayerCacheCount() const { return layer_cache_count_; }
uint64_t GetLayerCacheBytes() const { return layer_cache_bytes_; }
uint64_t GetPictureCacheCount() const { return picture_cache_count_; }
uint64_t GetPictureCacheBytes() const { return picture_cache_bytes_; }
void SetRasterCacheStatistics(size_t layer_cache_count,
size_t layer_cache_bytes,
size_t picture_cache_count,
size_t picture_cache_bytes) {
layer_cache_count_ = layer_cache_count;
layer_cache_bytes_ = layer_cache_bytes;
picture_cache_count_ = picture_cache_count;
picture_cache_bytes_ = picture_cache_bytes;
}
private:
fml::TimePoint data_[kCount];
uint64_t frame_number_;
size_t layer_cache_count_;
size_t layer_cache_bytes_;
size_t picture_cache_count_;
size_t picture_cache_bytes_;
};
using TaskObserverAdd =
std::function<void(intptr_t /* key */, fml::closure /* callback */)>;
using TaskObserverRemove = std::function<void(intptr_t /* key */)>;
using UnhandledExceptionCallback =
std::function<bool(const std::string& /* error */,
const std::string& /* stack trace */)>;
using LogMessageCallback =
std::function<void(const std::string& /* tag */,
const std::string& /* message */)>;
// TODO(26783): Deprecate all the "path" struct members in favor of the
// callback that generates the mapping from these paths.
using MappingCallback = std::function<std::unique_ptr<fml::Mapping>(void)>;
using Mappings = std::vector<std::unique_ptr<const fml::Mapping>>;
using MappingsCallback = std::function<Mappings(void)>;
using FrameRasterizedCallback = std::function<void(const FrameTiming&)>;
class DartIsolate;
// TODO(https://github.com/flutter/flutter/issues/138750): Re-order fields to
// reduce padding.
// NOLINTNEXTLINE(clang-analyzer-optin.performance.Padding)
struct Settings {
Settings();
Settings(const Settings& other);
~Settings();
/// Determines if attempts at grabbing the Surface's SurfaceData can be
/// attempted.
static constexpr bool kSurfaceDataAccessible =
#ifdef _NDEBUG
false;
#else
true;
#endif
// VM settings
std::string vm_snapshot_data_path; // deprecated
MappingCallback vm_snapshot_data;
std::string vm_snapshot_instr_path; // deprecated
MappingCallback vm_snapshot_instr;
std::string isolate_snapshot_data_path; // deprecated
MappingCallback isolate_snapshot_data;
std::string isolate_snapshot_instr_path; // deprecated
MappingCallback isolate_snapshot_instr;
std::string route;
// Returns the Mapping to a kernel buffer which contains sources for dart:*
// libraries.
MappingCallback dart_library_sources_kernel;
// Path to a library containing the application's compiled Dart code.
// This is a vector so that the embedder can provide fallback paths in
// case the primary path to the library can not be loaded.
std::vector<std::string> application_library_path;
// Path to a library containing compiled Dart code usable for launching
// the VM service isolate.
std::vector<std::string> vmservice_snapshot_library_path;
std::string application_kernel_asset; // deprecated
std::string application_kernel_list_asset; // deprecated
MappingsCallback application_kernels;
std::string temp_directory_path;
std::vector<std::string> dart_flags;
// Isolate settings
bool enable_checked_mode = false;
bool start_paused = false;
bool trace_skia = false;
std::vector<std::string> trace_allowlist;
std::optional<std::vector<std::string>> trace_skia_allowlist;
bool trace_startup = false;
bool trace_systrace = false;
std::string trace_to_file;
bool enable_timeline_event_handler = true;
bool dump_skp_on_shader_compilation = false;
bool cache_sksl = false;
bool purge_persistent_cache = false;
bool endless_trace_buffer = false;
bool enable_dart_profiling = false;
bool disable_dart_asserts = false;
bool enable_serial_gc = false;
// Whether embedder only allows secure connections.
bool may_insecurely_connect_to_all_domains = true;
// JSON-formatted domain network policy.
std::string domain_network_policy;
// Used as the script URI in debug messages. Does not affect how the Dart code
// is executed.
std::string advisory_script_uri = "main.dart";
// Used as the script entrypoint in debug messages. Does not affect how the
// Dart code is executed.
std::string advisory_script_entrypoint = "main";
// The executable path associated with this process. This is returned by
// Platform.executable from dart:io. If unknown, defaults to "Flutter".
std::string executable_name = "Flutter";
// VM Service settings
// Whether the Dart VM service should be enabled.
bool enable_vm_service = false;
// Whether to publish the VM Service URL over mDNS.
// On iOS 14 this prompts a local network permission dialog,
// which cannot be accepted or dismissed in a CI environment.
bool enable_vm_service_publication = true;
// The IP address to which the Dart VM service is bound.
std::string vm_service_host;
// The port to which the Dart VM service is bound. When set to `0`, a free
// port will be automatically selected by the OS. A message is logged on the
// target indicating the URL at which the VM service can be accessed.
uint32_t vm_service_port = 0;
// Determines whether an authentication code is required to communicate with
// the VM service.
bool disable_service_auth_codes = true;
// Determine whether the vmservice should fallback to automatic port selection
// after failing to bind to a specified port.
bool enable_service_port_fallback = false;
// Font settings
bool use_test_fonts = false;
bool use_asset_fonts = true;
// Indicates whether the embedding started a prefetch of the default font
// manager before creating the engine.
bool prefetched_default_font_manager = false;
// Enable the rendering of colors outside of the sRGB gamut.
bool enable_wide_gamut = false;
// Enable the Impeller renderer on supported platforms. Ignored if Impeller is
// not supported on the platform.
#if FML_OS_IOS || FML_OS_IOS_SIMULATOR
bool enable_impeller = true;
#else
bool enable_impeller = false;
#endif
// The selected Android rendering API.
AndroidRenderingAPI android_rendering_api =
AndroidRenderingAPI::kSkiaOpenGLES;
// Requests a specific rendering backend.
std::optional<std::string> requested_rendering_backend;
// Enable Vulkan validation on backends that support it. The validation layers
// must be available to the application.
bool enable_vulkan_validation = false;
// Enable GPU tracing in GLES backends.
// Some devices claim to support the required APIs but crash on their usage.
bool enable_opengl_gpu_tracing = false;
// Enable GPU tracing in Vulkan backends.
bool enable_vulkan_gpu_tracing = false;
// Data set by platform-specific embedders for use in font initialization.
uint32_t font_initialization_data = 0;
// All shells in the process share the same VM. The last shell to shutdown
// should typically shut down the VM as well. However, applications depend on
// the behavior of "warming-up" the VM by creating a shell that does not do
// anything. This used to work earlier when the VM could not be shut down (and
// hence never was). Shutting down the VM now breaks such assumptions in
// existing embedders. To keep this behavior consistent and allow existing
// embedders the chance to migrate, this flag defaults to true. Any shell
// launched with this flag set to true will leak the VM in the process. There
// is no way to shut down the VM once such a shell has been started. All
// shells in the platform (via their embedding APIs) should cooperate to make
// sure this flag is never set if they want the VM to shutdown and free all
// associated resources.
// It can be customized by application, more detail:
// https://github.com/flutter/flutter/issues/95903
// TODO(eggfly): Should it be set to false by default?
// https://github.com/flutter/flutter/issues/96843
bool leak_vm = true;
// Engine settings
TaskObserverAdd task_observer_add;
TaskObserverRemove task_observer_remove;
// The main isolate is current when this callback is made. This is a good spot
// to perform native Dart bindings for libraries not built in.
std::function<void(const DartIsolate&)> root_isolate_create_callback;
// TODO(68738): Update isolate callbacks in settings to accept an additional
// DartIsolate parameter.
fml::closure isolate_create_callback;
// The isolate is not current and may have already been destroyed when this
// call is made.
fml::closure root_isolate_shutdown_callback;
fml::closure isolate_shutdown_callback;
// A callback made in the isolate scope of the service isolate when it is
// launched. Care must be taken to ensure that callers are assigning callbacks
// to the settings object used to launch the VM. If an existing VM is used to
// launch an isolate using these settings, the callback will be ignored as the
// service isolate has already been launched. Also, this callback will only be
// made in the modes in which the service isolate is eligible for launch
// (debug and profile).
fml::closure service_isolate_create_callback;
// The callback made on the UI thread in an isolate scope when the engine
// detects that the framework is idle. The VM also uses this time to perform
// tasks suitable when idling. Due to this, embedders are still advised to be
// as fast as possible in returning from this callback. Long running
// operations in this callback do have the capability of introducing jank.
std::function<void(int64_t)> idle_notification_callback;
// A callback given to the embedder to react to unhandled exceptions in the
// running Flutter application. This callback is made on an internal engine
// managed thread and embedders must re-thread as necessary. Performing
// blocking calls in this callback will cause applications to jank.
UnhandledExceptionCallback unhandled_exception_callback;
// A callback given to the embedder to log print messages from the running
// Flutter application. This callback is made on an internal engine managed
// thread and embedders must re-thread if necessary. Performing blocking
// calls in this callback will cause applications to jank.
LogMessageCallback log_message_callback;
bool enable_software_rendering = false;
bool skia_deterministic_rendering_on_cpu = false;
bool verbose_logging = false;
std::string log_tag = "flutter";
// The icu_initialization_required setting does not have a corresponding
// switch because it is intended to be decided during build time, not runtime.
// Some companies apply source modification here because their build system
// brings its own ICU data files.
bool icu_initialization_required = true;
std::string icu_data_path;
MappingCallback icu_mapper;
// Assets settings
fml::UniqueFD::element_type assets_dir =
fml::UniqueFD::traits_type::InvalidValue();
std::string assets_path;
// Callback to handle the timings of a rasterized frame. This is called as
// soon as a frame is rasterized.
FrameRasterizedCallback frame_rasterized_callback;
// This data will be available to the isolate immediately on launch via the
// PlatformDispatcher.getPersistentIsolateData callback. This is meant for
// information that the isolate cannot request asynchronously (platform
// messages can be used for that purpose). This data is held for the lifetime
// of the shell and is available on isolate restarts in the shell instance.
// Due to this, the buffer must be as small as possible.
std::shared_ptr<const fml::Mapping> persistent_isolate_data;
/// Max size of old gen heap size in MB, or 0 for unlimited, -1 for default
/// value.
///
/// See also:
/// https://github.com/dart-lang/sdk/blob/ca64509108b3e7219c50d6c52877c85ab6a35ff2/runtime/vm/flag_list.h#L150
int64_t old_gen_heap_size = -1;
// Max bytes threshold of resource cache, or 0 for unlimited.
size_t resource_cache_max_bytes_threshold = 0;
/// The minimum number of samples to require in multipsampled anti-aliasing.
///
/// Setting this value to 0 or 1 disables MSAA.
/// If it is not 0 or 1, it must be one of 2, 4, 8, or 16. However, if the
/// GPU does not support the requested sampling value, MSAA will be disabled.
uint8_t msaa_samples = 0;
/// Enable embedder api on the embedder.
///
/// This is currently only used by iOS.
bool enable_embedder_api = false;
};
} // namespace flutter
#endif // FLUTTER_COMMON_SETTINGS_H_
| engine/common/settings.h/0 | {
"file_path": "engine/common/settings.h",
"repo_id": "engine",
"token_count": 4287
} | 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.
#include <functional>
#include "flutter/benchmarking/benchmarking.h"
#include "flutter/impeller/geometry/matrix.h"
#include "flutter/impeller/geometry/rect.h"
#include "third_party/skia/include/core/SkM44.h"
#include "third_party/skia/include/core/SkMatrix.h"
namespace flutter {
namespace {
static constexpr float kPiOver4 = impeller::kPiOver4;
static constexpr float kFieldOfView = impeller::kPiOver2 + impeller::kPiOver4;
enum class AdapterType {
kSkMatrix,
kSkM44,
kImpellerMatrix,
};
union TestPoint {
TestPoint() {}
SkPoint sk_point;
impeller::Point impeller_point;
};
union TestRect {
TestRect() {}
SkRect sk_rect;
impeller::Rect impeller_rect;
};
union TestTransform {
TestTransform() {}
SkMatrix sk_matrix;
SkM44 sk_m44;
impeller::Matrix impeller_matrix;
};
// We use a virtual adapter class rather than templating the BM_* methods
// to prevent the compiler from optimizing the benchmark bodies into a
// null set of instructions because the calculation can be proven to have
// no side effects and the result is never used.
class TransformAdapter {
public:
TransformAdapter() = default;
virtual ~TransformAdapter() = default;
// Two methods to test the overhead of just calling a virtual method on
// the adapter (should be the same for all inheriting subclasses) and
// for a method that does a conversion to and from the TestRect object
// (which should be the same as the method call overhead since it does
// no work).
virtual void DoNothing(TestTransform& ignored) const = 0;
virtual void InitRectLTRB(TestRect& rect,
float left,
float top,
float right,
float bottom) const = 0;
virtual void InitPoint(TestPoint& point, float x, float y) const = 0;
// The actual methods that do work and are the meat of the benchmarks.
virtual void SetIdentity(TestTransform& result) const = 0;
virtual void SetPerspective(TestTransform& result,
float fov_radians,
float near,
float far) const = 0;
virtual void Translate(TestTransform& result, float tx, float ty) const = 0;
virtual void Scale(TestTransform& result, float sx, float sy) const = 0;
virtual void RotateRadians(TestTransform& result, float radians) const = 0;
virtual void Concat(const TestTransform& a,
const TestTransform& b,
TestTransform& result) const = 0;
virtual void TransformPoint(const TestTransform& transform,
const TestPoint& in,
TestPoint& out) const = 0;
virtual void TransformPoints(const TestTransform& transform,
const TestPoint in[],
TestPoint out[],
int n) const = 0;
virtual void TransformRect(const TestTransform& transform,
const TestRect& in,
TestRect& out) const = 0;
virtual void InvertUnchecked(const TestTransform& transform,
TestTransform& result) const = 0;
virtual bool InvertAndCheck(const TestTransform& transform,
TestTransform& result) const = 0;
};
class SkiaAdapterBase : public TransformAdapter {
public:
// DoNothing methods used to measure overhead for various operations
void DoNothing(TestTransform& ignored) const override {}
void InitPoint(TestPoint& point, float x, float y) const override {
point.sk_point.set(x, y);
}
void InitRectLTRB(TestRect& rect,
float left,
float top,
float right,
float bottom) const override {
rect.sk_rect.setLTRB(left, top, right, bottom);
}
protected:
static SkM44 MakePerspective(float fov_radians, float near, float far) {
return SkM44::Perspective(near, far, fov_radians);
}
};
class SkMatrixAdapter : public SkiaAdapterBase {
public:
SkMatrixAdapter() = default;
~SkMatrixAdapter() = default;
void SetIdentity(TestTransform& result) const override {
result.sk_matrix.setIdentity();
}
virtual void SetPerspective(TestTransform& result,
float fov_radians,
float near,
float far) const override {
result.sk_matrix = MakePerspective(fov_radians, near, far).asM33();
}
void Translate(TestTransform& result, float tx, float ty) const override {
result.sk_matrix.preTranslate(tx, ty);
}
void Scale(TestTransform& result, float sx, float sy) const override {
result.sk_matrix.preScale(sx, sy);
}
void RotateRadians(TestTransform& result, float radians) const override {
result.sk_matrix.preRotate(SkRadiansToDegrees(radians));
}
void Concat(const TestTransform& a,
const TestTransform& b,
TestTransform& result) const override {
result.sk_matrix = SkMatrix::Concat(a.sk_matrix, b.sk_matrix);
}
void TransformPoint(const TestTransform& transform,
const TestPoint& in,
TestPoint& out) const override {
out.sk_point = transform.sk_matrix.mapPoint(in.sk_point);
}
void TransformPoints(const TestTransform& transform,
const TestPoint in[],
TestPoint out[],
int n) const override {
static_assert(sizeof(TestPoint) == sizeof(SkPoint));
transform.sk_matrix.mapPoints(reinterpret_cast<SkPoint*>(out),
reinterpret_cast<const SkPoint*>(in), n);
}
void TransformRect(const TestTransform& transform,
const TestRect& in,
TestRect& out) const override {
out.sk_rect = transform.sk_matrix.mapRect(in.sk_rect);
}
void InvertUnchecked(const TestTransform& transform,
TestTransform& result) const override {
[[maybe_unused]]
bool ret = transform.sk_matrix.invert(&result.sk_matrix);
}
bool InvertAndCheck(const TestTransform& transform,
TestTransform& result) const override {
return transform.sk_matrix.invert(&result.sk_matrix);
}
};
class SkM44Adapter : public SkiaAdapterBase {
public:
SkM44Adapter() = default;
~SkM44Adapter() = default;
void SetIdentity(TestTransform& storage) const override {
storage.sk_m44.setIdentity();
}
virtual void SetPerspective(TestTransform& result,
float fov_radians,
float near,
float far) const override {
result.sk_m44 = MakePerspective(fov_radians, near, far);
}
void Translate(TestTransform& storage, float tx, float ty) const override {
storage.sk_m44.preTranslate(tx, ty);
}
void Scale(TestTransform& storage, float sx, float sy) const override {
storage.sk_m44.preScale(sx, sy);
}
void RotateRadians(TestTransform& storage, float radians) const override {
storage.sk_m44.preConcat(SkM44::Rotate({0, 0, 1}, radians));
}
void Concat(const TestTransform& a,
const TestTransform& b,
TestTransform& result) const override {
result.sk_m44.setConcat(a.sk_m44, b.sk_m44);
}
void TransformPoint(const TestTransform& transform,
const TestPoint& in,
TestPoint& out) const override {
out.sk_point = transform.sk_m44.asM33().mapPoint(in.sk_point);
}
void TransformPoints(const TestTransform& transform,
const TestPoint in[],
TestPoint out[],
int n) const override {
static_assert(sizeof(TestPoint) == sizeof(SkPoint));
transform.sk_m44.asM33().mapPoints(reinterpret_cast<SkPoint*>(out),
reinterpret_cast<const SkPoint*>(in), n);
}
void TransformRect(const TestTransform& transform,
const TestRect& in,
TestRect& out) const override {
out.sk_rect = transform.sk_m44.asM33().mapRect(in.sk_rect);
}
void InvertUnchecked(const TestTransform& transform,
TestTransform& result) const override {
[[maybe_unused]]
bool ret = transform.sk_m44.invert(&result.sk_m44);
}
bool InvertAndCheck(const TestTransform& transform,
TestTransform& result) const override {
return transform.sk_m44.invert(&result.sk_m44);
}
};
class ImpellerMatrixAdapter : public TransformAdapter {
public:
ImpellerMatrixAdapter() = default;
~ImpellerMatrixAdapter() = default;
void DoNothing(TestTransform& ignored) const override {}
void InitPoint(TestPoint& point, float x, float y) const override {
point.impeller_point = impeller::Point(x, y);
}
void InitRectLTRB(TestRect& rect,
float left,
float top,
float right,
float bottom) const override {
rect.impeller_rect = impeller::Rect::MakeLTRB(left, top, right, bottom);
}
void SetIdentity(TestTransform& storage) const override {
storage.impeller_matrix = impeller::Matrix();
}
virtual void SetPerspective(TestTransform& result,
float fov_radians,
float near,
float far) const override {
impeller::Radians fov = impeller::Radians(fov_radians);
result.impeller_matrix =
impeller::Matrix::MakePerspective(fov, 1.0f, near, far);
}
void Translate(TestTransform& storage, float tx, float ty) const override {
storage.impeller_matrix = storage.impeller_matrix.Translate({tx, ty});
}
void Scale(TestTransform& storage, float sx, float sy) const override {
storage.impeller_matrix = storage.impeller_matrix.Scale({sx, sy, 1.0f});
}
void RotateRadians(TestTransform& storage, float radians) const override {
storage.impeller_matrix =
storage.impeller_matrix *
impeller::Matrix::MakeRotationZ(impeller::Radians(radians));
}
void Concat(const TestTransform& a,
const TestTransform& b,
TestTransform& result) const override {
result.impeller_matrix = a.impeller_matrix * b.impeller_matrix;
}
void TransformPoint(const TestTransform& transform,
const TestPoint& in,
TestPoint& out) const override {
out.impeller_point = transform.impeller_matrix * in.impeller_point;
}
void TransformPoints(const TestTransform& transform,
const TestPoint in[],
TestPoint out[],
int n) const override {
for (int i = 0; i < n; i++) {
out[i].impeller_point = transform.impeller_matrix * in[i].impeller_point;
}
}
void TransformRect(const TestTransform& transform,
const TestRect& in,
TestRect& out) const override {
out.impeller_rect =
in.impeller_rect.TransformBounds(transform.impeller_matrix);
}
void InvertUnchecked(const TestTransform& transform,
TestTransform& result) const override {
result.impeller_matrix = transform.impeller_matrix.Invert();
}
bool InvertAndCheck(const TestTransform& transform,
TestTransform& result) const override {
result.impeller_matrix = transform.impeller_matrix.Invert();
return transform.impeller_matrix.GetDeterminant() != 0.0f;
}
};
using SetupFunction = std::function<void(TransformAdapter*, TestTransform&)>;
static void SetupIdentity(const TransformAdapter* adapter,
TestTransform& transform) {
adapter->SetIdentity(transform);
}
static void SetupTranslate(const TransformAdapter* adapter,
TestTransform& transform) {
adapter->SetIdentity(transform);
adapter->Translate(transform, 10.2, 12.3);
}
static void SetupScale(const TransformAdapter* adapter,
TestTransform& transform) {
adapter->SetIdentity(transform);
adapter->Scale(transform, 2.0, 2.0);
}
static void SetupScaleTranslate(const TransformAdapter* adapter,
TestTransform& transform) {
adapter->SetIdentity(transform);
adapter->Scale(transform, 2.0, 2.0);
adapter->Translate(transform, 10.2, 12.3);
}
static void SetupRotate(const TransformAdapter* adapter,
TestTransform& transform) {
adapter->SetIdentity(transform);
adapter->RotateRadians(transform, kPiOver4);
}
static void SetupPerspective(const TransformAdapter* adapter,
TestTransform& transform) {
auto fov_radians = kFieldOfView;
auto near = 1.0f;
auto far = 100.0f;
adapter->SetPerspective(transform, fov_radians, near, far);
}
// We use a function to return the appropriate adapter so that all methods
// used in benchmarking are "pure virtual" and cannot be optimized out
// due to issues such as the arguments being constexpr and the result
// simplified to a constant value.
static std::unique_ptr<TransformAdapter> GetAdapter(AdapterType type) {
switch (type) {
case AdapterType::kSkMatrix:
return std::make_unique<SkMatrixAdapter>();
case AdapterType::kSkM44:
return std::make_unique<SkM44Adapter>();
case AdapterType::kImpellerMatrix:
return std::make_unique<ImpellerMatrixAdapter>();
}
FML_UNREACHABLE();
}
} // namespace
static void BM_AdapterDispatchOverhead(benchmark::State& state,
AdapterType type) {
auto adapter = GetAdapter(type);
TestTransform transform;
while (state.KeepRunning()) {
adapter->DoNothing(transform);
}
}
static void BM_SetIdentity(benchmark::State& state, AdapterType type) {
auto adapter = GetAdapter(type);
TestTransform transform;
while (state.KeepRunning()) {
adapter->SetIdentity(transform);
}
}
static void BM_SetPerspective(benchmark::State& state, AdapterType type) {
auto adapter = GetAdapter(type);
TestTransform transform;
auto fov_radians = kFieldOfView;
auto near = 1.0f;
auto far = 100.0f;
while (state.KeepRunning()) {
adapter->SetPerspective(transform, fov_radians, near, far);
}
}
static void BM_Translate(benchmark::State& state,
AdapterType type,
float tx,
float ty) {
auto adapter = GetAdapter(type);
TestTransform transform;
adapter->SetIdentity(transform);
bool flip = true;
while (state.KeepRunning()) {
if (flip) {
adapter->Translate(transform, tx, ty);
} else {
adapter->Translate(transform, -tx, -ty);
}
flip = !flip;
}
}
static void BM_Scale(benchmark::State& state, AdapterType type, float scale) {
auto adapter = GetAdapter(type);
TestTransform transform;
adapter->SetIdentity(transform);
float inv_scale = 1.0f / scale;
bool flip = true;
while (state.KeepRunning()) {
if (flip) {
adapter->Scale(transform, scale, scale);
} else {
adapter->Scale(transform, inv_scale, inv_scale);
}
flip = !flip;
}
}
static void BM_Rotate(benchmark::State& state,
AdapterType type,
float radians) {
auto adapter = GetAdapter(type);
TestTransform transform;
adapter->SetIdentity(transform);
while (state.KeepRunning()) {
adapter->RotateRadians(transform, radians);
}
}
static void BM_Concat(benchmark::State& state,
AdapterType type,
const SetupFunction& a_setup,
const SetupFunction& b_setup) {
auto adapter = GetAdapter(type);
TestTransform a, b, result;
a_setup(adapter.get(), a);
b_setup(adapter.get(), b);
while (state.KeepRunning()) {
adapter->Concat(a, b, result);
}
}
static void BM_TransformPoint(benchmark::State& state,
AdapterType type,
const SetupFunction& setup) {
auto adapter = GetAdapter(type);
TestTransform transform;
setup(adapter.get(), transform);
TestPoint point, result;
adapter->InitPoint(point, 25.7, 32.4);
while (state.KeepRunning()) {
adapter->TransformPoint(transform, point, result);
}
}
static void BM_TransformPoints(benchmark::State& state,
AdapterType type,
const SetupFunction& setup) {
auto adapter = GetAdapter(type);
TestTransform transform;
setup(adapter.get(), transform);
const int Xs = 10;
const int Ys = 10;
const int N = Xs * Ys;
TestPoint points[N];
for (int i = 0; i < Xs; i++) {
for (int j = 0; j < Ys; j++) {
int index = i * Xs + j;
FML_CHECK(index < N);
adapter->InitPoint(points[index], i * 23.3 + 17, j * 32.7 + 12);
}
}
TestPoint results[N];
int64_t item_count = 0;
while (state.KeepRunning()) {
adapter->TransformPoints(transform, points, results, N);
item_count += N;
}
state.SetItemsProcessed(item_count);
}
static void BM_TransformRect(benchmark::State& state,
AdapterType type,
const SetupFunction& setup) {
auto adapter = GetAdapter(type);
TestTransform transform;
setup(adapter.get(), transform);
TestRect rect, result;
adapter->InitRectLTRB(rect, 100, 100, 200, 200);
while (state.KeepRunning()) {
adapter->TransformRect(transform, rect, result);
}
}
static void BM_InvertUnchecked(benchmark::State& state,
AdapterType type,
const SetupFunction& setup) {
auto adapter = GetAdapter(type);
TestTransform transform;
setup(adapter.get(), transform);
TestTransform result;
while (state.KeepRunning()) {
adapter->InvertUnchecked(transform, result);
}
}
static void BM_InvertAndCheck(benchmark::State& state,
AdapterType type,
const SetupFunction& setup) {
auto adapter = GetAdapter(type);
TestTransform transform;
setup(adapter.get(), transform);
TestTransform result;
while (state.KeepRunning()) {
adapter->InvertAndCheck(transform, result);
}
}
#define BENCHMARK_CAPTURE_TYPE(name, type) \
BENCHMARK_CAPTURE(name, type, AdapterType::k##type)
#define BENCHMARK_CAPTURE_TYPE_ARGS(name, type, ...) \
BENCHMARK_CAPTURE(name, type, AdapterType::k##type, __VA_ARGS__)
#define BENCHMARK_CAPTURE_ALL(name) \
BENCHMARK_CAPTURE_TYPE(name, SkMatrix); \
BENCHMARK_CAPTURE_TYPE(name, SkM44); \
BENCHMARK_CAPTURE_TYPE(name, ImpellerMatrix)
#define BENCHMARK_CAPTURE_ALL_ARGS(name, ...) \
BENCHMARK_CAPTURE_TYPE_ARGS(name, SkMatrix, __VA_ARGS__); \
BENCHMARK_CAPTURE_TYPE_ARGS(name, SkM44, __VA_ARGS__); \
BENCHMARK_CAPTURE_TYPE_ARGS(name, ImpellerMatrix, __VA_ARGS__)
BENCHMARK_CAPTURE_ALL(BM_AdapterDispatchOverhead);
BENCHMARK_CAPTURE_ALL(BM_SetIdentity);
BENCHMARK_CAPTURE_ALL(BM_SetPerspective);
BENCHMARK_CAPTURE_ALL_ARGS(BM_Translate, 10.0f, 15.0f);
BENCHMARK_CAPTURE_ALL_ARGS(BM_Scale, 2.0f);
BENCHMARK_CAPTURE_ALL_ARGS(BM_Rotate, kPiOver4);
// clang-format off
#define BENCHMARK_CAPTURE_TYPE_SETUP(name, type, setup) \
BENCHMARK_CAPTURE(name, setup/type, AdapterType::k##type, Setup##setup)
// clang-format on
#define BENCHMARK_CAPTURE_ALL_SETUP(name, setup) \
BENCHMARK_CAPTURE_TYPE_SETUP(name, SkMatrix, setup); \
BENCHMARK_CAPTURE_TYPE_SETUP(name, SkM44, setup); \
BENCHMARK_CAPTURE_TYPE_SETUP(name, ImpellerMatrix, setup)
// clang-format off
#define BENCHMARK_CAPTURE_TYPE_SETUP2(name, type, setup1, setup2) \
BENCHMARK_CAPTURE(name, setup1*setup2/type, AdapterType::k##type, \
Setup##setup1, Setup##setup2)
// clang-format on
#define BENCHMARK_CAPTURE_ALL_SETUP2(name, setup1, setup2) \
BENCHMARK_CAPTURE_TYPE_SETUP2(name, SkMatrix, setup1, setup2); \
BENCHMARK_CAPTURE_TYPE_SETUP2(name, SkM44, setup1, setup2); \
BENCHMARK_CAPTURE_TYPE_SETUP2(name, ImpellerMatrix, setup1, setup2)
BENCHMARK_CAPTURE_ALL_SETUP2(BM_Concat, Scale, Translate);
BENCHMARK_CAPTURE_ALL_SETUP2(BM_Concat, ScaleTranslate, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP2(BM_Concat, ScaleTranslate, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP2(BM_Concat, ScaleTranslate, Perspective);
BENCHMARK_CAPTURE_ALL_SETUP2(BM_Concat, Perspective, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, Identity);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, Translate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, Scale);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertUnchecked, Perspective);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, Identity);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, Translate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, Scale);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_InvertAndCheck, Perspective);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, Identity);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, Translate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, Scale);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoint, Perspective);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, Identity);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, Translate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, Scale);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformPoints, Perspective);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, Identity);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, Translate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, Scale);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, ScaleTranslate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, Rotate);
BENCHMARK_CAPTURE_ALL_SETUP(BM_TransformRect, Perspective);
} // namespace flutter
| engine/display_list/benchmarking/dl_transform_benchmarks.cc/0 | {
"file_path": "engine/display_list/benchmarking/dl_transform_benchmarks.cc",
"repo_id": "engine",
"token_count": 9312
} | 151 |
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_DISPLAY_LIST_DL_OP_RECEIVER_H_
#define FLUTTER_DISPLAY_LIST_DL_OP_RECEIVER_H_
#include "flutter/display_list/display_list.h"
#include "flutter/display_list/dl_blend_mode.h"
#include "flutter/display_list/dl_canvas.h"
#include "flutter/display_list/dl_paint.h"
#include "flutter/display_list/dl_sampling_options.h"
#include "flutter/display_list/dl_vertices.h"
#include "flutter/display_list/effects/dl_color_filter.h"
#include "flutter/display_list/effects/dl_color_source.h"
#include "flutter/display_list/effects/dl_image_filter.h"
#include "flutter/display_list/effects/dl_mask_filter.h"
#include "flutter/display_list/effects/dl_path_effect.h"
#include "flutter/display_list/image/dl_image.h"
#include "flutter/impeller/geometry/path.h"
namespace flutter {
class DisplayList;
//------------------------------------------------------------------------------
/// @brief Internal API for rendering recorded display lists to backends.
///
/// The |DisplayList| object will play back recorded operations in this format.
/// Most developers should not need to deal with this interface unless they are
/// writing a utility that needs to examine the contents of a display list.
///
/// Similar to |DlCanvas|, this interface carries clip and transform state
/// which are saved and restored by the |save|, |saveLayer|, and |restore|
/// calls.
///
/// Unlike DlCanvas, this interface has attribute state which is global across
/// an entire DisplayList (not affected by save/restore).
///
/// @see DlSkCanvasDispatcher
/// @see impeller::DlDispatcher
/// @see DlOpSpy
class DlOpReceiver {
protected:
using ClipOp = DlCanvas::ClipOp;
using PointMode = DlCanvas::PointMode;
using SrcRectConstraint = DlCanvas::SrcRectConstraint;
public:
// MaxDrawPointsCount * sizeof(SkPoint) must be less than 1 << 32
static constexpr int kMaxDrawPointsCount = ((1 << 29) - 1);
// ---------------------------------------------------------------------
// The CacheablePath forms of the drawPath, clipPath, and drawShadow
// methods are only called if the DlOpReceiver indicates that it prefers
// impeller paths by returning true from |PrefersImpellerPaths|.
// Note that we pass in both the SkPath and (a place to cache the)
// impeller::Path forms of the path since the SkPath version can contain
// information about the type of path that lets the receiver optimize
// the operation (and potentially avoid the need to cache it).
// It is up to the receiver to convert the path to Impeller form and
// cache it to avoid needing to do a lot of Impeller-specific processing
// inside the DisplayList code.
virtual bool PrefersImpellerPaths() const { return false; }
struct CacheablePath {
explicit CacheablePath(const SkPath& path) : sk_path(path) {}
const SkPath sk_path;
mutable impeller::Path cached_impeller_path;
bool operator==(const CacheablePath& other) const {
return sk_path == other.sk_path;
}
};
virtual void clipPath(const CacheablePath& cache,
ClipOp clip_op,
bool is_aa) {
FML_UNREACHABLE();
}
virtual void drawPath(const CacheablePath& cache) { FML_UNREACHABLE(); }
virtual void drawShadow(const CacheablePath& cache,
const DlColor color,
const SkScalar elevation,
bool transparent_occluder,
SkScalar dpr) {
FML_UNREACHABLE();
}
// ---------------------------------------------------------------------
// The following methods are nearly 1:1 with the methods on DlPaint and
// carry the same meanings. Each method sets a persistent value for the
// attribute for the rest of the display list or until it is reset by
// another method that changes the same attribute. The current set of
// attributes is not affected by |save| and |restore|.
virtual void setAntiAlias(bool aa) = 0;
virtual void setDrawStyle(DlDrawStyle style) = 0;
virtual void setColor(DlColor color) = 0;
virtual void setStrokeWidth(float width) = 0;
virtual void setStrokeMiter(float limit) = 0;
virtual void setStrokeCap(DlStrokeCap cap) = 0;
virtual void setStrokeJoin(DlStrokeJoin join) = 0;
virtual void setColorSource(const DlColorSource* source) = 0;
virtual void setColorFilter(const DlColorFilter* filter) = 0;
// setInvertColors is a quick way to set a ColorFilter that inverts the
// rgb values of all rendered colors.
// It is not reset by |setColorFilter|, but instead composed with that
// filter so that the color inversion happens after the ColorFilter.
virtual void setInvertColors(bool invert) = 0;
virtual void setBlendMode(DlBlendMode mode) = 0;
virtual void setPathEffect(const DlPathEffect* effect) = 0;
virtual void setMaskFilter(const DlMaskFilter* filter) = 0;
virtual void setImageFilter(const DlImageFilter* filter) = 0;
// All of the following methods are nearly 1:1 with their counterparts
// in |SkCanvas| and have the same behavior and output.
virtual void save() = 0;
// The |options| parameter can specify whether the existing rendering
// attributes will be applied to the save layer surface while rendering
// it back to the current surface. If the flag is false then this method
// is equivalent to |SkCanvas::saveLayer| with a null paint object.
//
// The |options| parameter can also specify whether the bounds came from
// the caller who recorded the operation, or whether they were calculated
// by the DisplayListBuilder.
//
// The |options| parameter may contain other options that indicate some
// specific optimizations may be made by the underlying implementation
// to avoid creating a temporary layer, these optimization options will
// be determined as the |DisplayList| is constructed and should not be
// specified in calling a |DisplayListBuilder| as they will be ignored.
// The |backdrop| filter, if not null, is used to initialize the new
// layer before further rendering happens.
virtual void saveLayer(const SkRect& bounds,
const SaveLayerOptions options,
const DlImageFilter* backdrop = nullptr) = 0;
virtual void restore() = 0;
// ---------------------------------------------------------------------
// Legacy helper method for older callers that use the null-ness of
// the bounds to indicate if they should be recorded or computed.
// This method will not be called on a |DlOpReceiver| that is passed
// to the |DisplayList::Dispatch()| method, so client receivers should
// ignore it for their implementation purposes.
//
// DlOpReceiver methods are generally meant to ONLY be output from a
// previously recorded DisplayList so this method is really only used
// from testing methods that bypass the public builder APIs for legacy
// convenience or for internal white-box testing of the DisplayList
// internals. Such methods should eventually be converted to using the
// public DisplayListBuilder/DlCanvas public interfaces where possible,
// as tracked in:
// https://github.com/flutter/flutter/issues/144070
virtual void saveLayer(const SkRect* bounds,
const SaveLayerOptions options,
const DlImageFilter* backdrop = nullptr) final {
if (bounds) {
saveLayer(*bounds, options.with_bounds_from_caller(), backdrop);
} else {
saveLayer(SkRect(), options.without_bounds_from_caller(), backdrop);
}
}
// ---------------------------------------------------------------------
virtual void translate(SkScalar tx, SkScalar ty) = 0;
virtual void scale(SkScalar sx, SkScalar sy) = 0;
virtual void rotate(SkScalar degrees) = 0;
virtual void skew(SkScalar sx, SkScalar sy) = 0;
// The transform methods all assume the following math for transforming
// an arbitrary 3D homogenous point (x, y, z, w).
// All coordinates in the rendering methods (and SkPoint and SkRect objects)
// represent a simplified coordinate (x, y, 0, 1).
// x' = x * mxx + y * mxy + z * mxz + w * mxt
// y' = x * myx + y * myy + z * myz + w * myt
// z' = x * mzx + y * mzy + z * mzz + w * mzt
// w' = x * mwx + y * mwy + z * mwz + w * mwt
// Note that for non-homogenous 2D coordinates, the last column in those
// equations is multiplied by 1 and is simply adding a translation and
// so is referred to with the final letter "t" here instead of "w".
//
// In 2D coordinates, z=0 and so the 3rd column always evaluates to 0.
//
// In non-perspective transforms, the 4th row has identity values
// and so w` = w. (i.e. w'=1 for 2d points transformed by a matrix
// with identity values in the last row).
//
// In affine 2D transforms, the 3rd and 4th row and 3rd column are all
// identity values and so z` = z (which is 0 for 2D coordinates) and
// the x` and y` equations don't see a contribution from a z coordinate
// and the w' ends up being the same as the w from the source coordinate
// (which is 1 for a 2D coordinate).
//
// Here is the math for transforming a 2D source coordinate and
// looking for the destination 2D coordinate (for a surface that
// does not have a Z buffer or track the Z coordinates in any way)
// Source coordinate = (x, y, 0, 1)
// x' = x * mxx + y * mxy + 0 * mxz + 1 * mxt
// y' = x * myx + y * myy + 0 * myz + 1 * myt
// z' = x * mzx + y * mzy + 0 * mzz + 1 * mzt
// w' = x * mwx + y * mwy + 0 * mwz + 1 * mwt
// Destination coordinate does not need z', so this reduces to:
// x' = x * mxx + y * mxy + mxt
// y' = x * myx + y * myy + myt
// w' = x * mwx + y * mwy + mwt
// Destination coordinate is (x' / w', y' / w', 0, 1)
// Note that these are the matrix values in SkMatrix which means that
// an SkMatrix contains enough data to transform a 2D source coordinate
// and place it on a 2D surface, but is otherwise not enough to continue
// concatenating with further matrices as its missing elements will not
// be able to model the interplay between the rows and columns that
// happens during a full 4x4 by 4x4 matrix multiplication.
//
// If the transform doesn't have any perspective parts (the last
// row is identity - 0, 0, 0, 1), then this further simplifies to:
// x' = x * mxx + y * mxy + mxt
// y' = x * myx + y * myy + myt
// w' = x * 0 + y * 0 + 1 = 1
//
// In short, while the full 4x4 set of matrix entries needs to be
// maintained for accumulating transform mutations accurately, the
// actual end work of transforming a single 2D coordinate (or, in
// the case of bounds transformations, 4 of them) can be accomplished
// with the 9 values from transform3x3 or SkMatrix.
//
// The only need for the w value here is for homogenous coordinates
// which only come up if the perspective elements (the 4th row) of
// a transform are non-identity. Otherwise the w always ends up
// being 1 in all calculations. If the matrix has perspecitve elements
// then the final transformed coordinates will have a w that is not 1
// and the actual coordinates are determined by dividing out that w
// factor resulting in a real-world point expressed as (x, y, z, 1).
//
// Because of the predominance of 2D affine transforms the
// 2x3 subset of the 4x4 transform matrix is special cased with
// its own dispatch method that omits the last 2 rows and the 3rd
// column. Even though a 3x3 subset is enough for transforming
// leaf coordinates as shown above, no method is provided for
// representing a 3x3 transform in the DisplayList since if there
// is perspective involved then a full 4x4 matrix should be provided
// for accurate concatenations. Providing a 3x3 method or record
// in the stream would encourage developers to prematurely subset
// a full perspective matrix.
// clang-format off
// |transform2DAffine| is equivalent to concatenating the internal
// 4x4 transform with the following row major transform matrix:
// [ mxx mxy 0 mxt ]
// [ myx myy 0 myt ]
// [ 0 0 1 0 ]
// [ 0 0 0 1 ]
virtual void transform2DAffine(SkScalar mxx, SkScalar mxy, SkScalar mxt,
SkScalar myx, SkScalar myy, SkScalar myt) = 0;
// |transformFullPerspective| is equivalent to concatenating the internal
// 4x4 transform with the following row major transform matrix:
// [ mxx mxy mxz mxt ]
// [ myx myy myz myt ]
// [ mzx mzy mzz mzt ]
// [ mwx mwy mwz mwt ]
virtual void transformFullPerspective(
SkScalar mxx, SkScalar mxy, SkScalar mxz, SkScalar mxt,
SkScalar myx, SkScalar myy, SkScalar myz, SkScalar myt,
SkScalar mzx, SkScalar mzy, SkScalar mzz, SkScalar mzt,
SkScalar mwx, SkScalar mwy, SkScalar mwz, SkScalar mwt) = 0;
// clang-format on
// Clears the transformation stack.
virtual void transformReset() = 0;
virtual void clipRect(const SkRect& rect, ClipOp clip_op, bool is_aa) = 0;
virtual void clipRRect(const SkRRect& rrect, ClipOp clip_op, bool is_aa) = 0;
virtual void clipPath(const SkPath& path, ClipOp clip_op, bool is_aa) = 0;
// The following rendering methods all take their rendering attributes
// from the last value set by the attribute methods above (regardless
// of any |save| or |restore| operations which do not affect attributes).
// In cases where a paint object may have been optional in the SkCanvas
// method, the methods here will generally offer a boolean parameter
// which specifies whether to honor the attributes of the display list
// stream, or assume default attributes.
virtual void drawColor(DlColor color, DlBlendMode mode) = 0;
virtual void drawPaint() = 0;
virtual void drawLine(const SkPoint& p0, const SkPoint& p1) = 0;
virtual void drawRect(const SkRect& rect) = 0;
virtual void drawOval(const SkRect& bounds) = 0;
virtual void drawCircle(const SkPoint& center, SkScalar radius) = 0;
virtual void drawRRect(const SkRRect& rrect) = 0;
virtual void drawDRRect(const SkRRect& outer, const SkRRect& inner) = 0;
virtual void drawPath(const SkPath& path) = 0;
virtual void drawArc(const SkRect& oval_bounds,
SkScalar start_degrees,
SkScalar sweep_degrees,
bool use_center) = 0;
virtual void drawPoints(PointMode mode,
uint32_t count,
const SkPoint points[]) = 0;
virtual void drawVertices(const DlVertices* vertices, DlBlendMode mode) = 0;
virtual void drawImage(const sk_sp<DlImage> image,
const SkPoint point,
DlImageSampling sampling,
bool render_with_attributes) = 0;
virtual void drawImageRect(
const sk_sp<DlImage> image,
const SkRect& src,
const SkRect& dst,
DlImageSampling sampling,
bool render_with_attributes,
SrcRectConstraint constraint = SrcRectConstraint::kFast) = 0;
virtual void drawImageNine(const sk_sp<DlImage> image,
const SkIRect& center,
const SkRect& dst,
DlFilterMode filter,
bool render_with_attributes) = 0;
virtual void drawAtlas(const sk_sp<DlImage> atlas,
const SkRSXform xform[],
const SkRect tex[],
const DlColor colors[],
int count,
DlBlendMode mode,
DlImageSampling sampling,
const SkRect* cull_rect,
bool render_with_attributes) = 0;
virtual void drawDisplayList(const sk_sp<DisplayList> display_list,
SkScalar opacity = SK_Scalar1) = 0;
virtual void drawTextBlob(const sk_sp<SkTextBlob> blob,
SkScalar x,
SkScalar y) = 0;
virtual void drawTextFrame(
const std::shared_ptr<impeller::TextFrame>& text_frame,
SkScalar x,
SkScalar y) = 0;
virtual void drawShadow(const SkPath& path,
const DlColor color,
const SkScalar elevation,
bool transparent_occluder,
SkScalar dpr) = 0;
};
} // namespace flutter
#endif // FLUTTER_DISPLAY_LIST_DL_OP_RECEIVER_H_
| engine/display_list/dl_op_receiver.h/0 | {
"file_path": "engine/display_list/dl_op_receiver.h",
"repo_id": "engine",
"token_count": 5849
} | 152 |
// 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 <vector>
#include "display_list/dl_color.h"
#include "flutter/display_list/dl_sampling_options.h"
#include "flutter/display_list/effects/dl_color_source.h"
#include "flutter/display_list/effects/dl_runtime_effect.h"
#include "flutter/display_list/image/dl_image.h"
#include "flutter/display_list/testing/dl_test_equality.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkSurface.h"
namespace flutter {
namespace testing {
static sk_sp<DlImage> MakeTestImage(int w, int h, SkColor color) {
sk_sp<SkSurface> surface;
if (SkColorGetA(color) < 255) {
surface = SkSurfaces::Raster(SkImageInfo::MakeN32Premul(w, h));
} else {
SkImageInfo info =
SkImageInfo::MakeN32(w, h, SkAlphaType::kOpaque_SkAlphaType);
surface = SkSurfaces::Raster(info);
}
SkCanvas* canvas = surface->getCanvas();
canvas->drawColor(color);
return DlImage::Make(surface->makeImageSnapshot());
}
static const sk_sp<DlRuntimeEffect> kTestRuntimeEffect1 =
DlRuntimeEffect::MakeSkia(
SkRuntimeEffect::MakeForShader(
SkString("vec4 main(vec2 p) { return vec4(0); }"))
.effect);
static const sk_sp<DlRuntimeEffect> kTestRuntimeEffect2 =
DlRuntimeEffect::MakeSkia(
SkRuntimeEffect::MakeForShader(
SkString("vec4 main(vec2 p) { return vec4(1); }"))
.effect);
static const sk_sp<DlImage> kTestImage1 = MakeTestImage(10, 10, SK_ColorGREEN);
static const sk_sp<DlImage> kTestAlphaImage1 =
MakeTestImage(10, 10, SK_ColorTRANSPARENT);
// clang-format off
static const SkMatrix kTestMatrix1 =
SkMatrix::MakeAll(2, 0, 10,
0, 3, 12,
0, 0, 1);
static const SkMatrix kTestMatrix2 =
SkMatrix::MakeAll(4, 0, 15,
0, 7, 17,
0, 0, 1);
// clang-format on
static constexpr int kTestStopCount = 3;
static constexpr DlColor kTestColors[kTestStopCount] = {
DlColor::kRed(),
DlColor::kGreen(),
DlColor::kBlue(),
};
static const DlColor kTestAlphaColors[kTestStopCount] = {
DlColor::kBlue().withAlpha(0x7F),
DlColor::kRed().withAlpha(0x2F),
DlColor::kGreen().withAlpha(0xCF),
};
static constexpr float kTestStops[kTestStopCount] = {
0.0f,
0.7f,
1.0f,
};
static constexpr float kTestStops2[kTestStopCount] = {
0.0f,
0.3f,
1.0f,
};
static constexpr SkPoint kTestPoints[2] = {
SkPoint::Make(5, 15),
SkPoint::Make(7, 18),
};
static constexpr SkPoint kTestPoints2[2] = {
SkPoint::Make(100, 115),
SkPoint::Make(107, 118),
};
TEST(DisplayListColorSource, ColorConstructor) {
DlColorColorSource source(DlColor::kRed());
}
TEST(DisplayListColorSource, ColorShared) {
DlColorColorSource source(DlColor::kRed());
ASSERT_NE(source.shared().get(), &source);
ASSERT_EQ(*source.shared(), source);
}
TEST(DisplayListColorSource, ColorAsColor) {
DlColorColorSource source(DlColor::kRed());
ASSERT_NE(source.asColor(), nullptr);
ASSERT_EQ(source.asColor(), &source);
ASSERT_EQ(source.asImage(), nullptr);
ASSERT_EQ(source.asLinearGradient(), nullptr);
ASSERT_EQ(source.asRadialGradient(), nullptr);
ASSERT_EQ(source.asConicalGradient(), nullptr);
ASSERT_EQ(source.asSweepGradient(), nullptr);
ASSERT_EQ(source.asRuntimeEffect(), nullptr);
}
TEST(DisplayListColorSource, ColorContents) {
DlColorColorSource source(DlColor::kRed());
ASSERT_EQ(source.color(), DlColor::kRed());
ASSERT_EQ(source.is_opaque(), true);
for (int i = 0; i < 255; i++) {
SkColor alpha_color = SkColorSetA(SK_ColorRED, i);
auto const alpha_source = DlColorColorSource(DlColor(alpha_color));
ASSERT_EQ(alpha_source.color(), alpha_color);
ASSERT_EQ(alpha_source.is_opaque(), false);
}
}
TEST(DisplayListColorSource, ColorEquals) {
DlColorColorSource source1(DlColor::kRed());
DlColorColorSource source2(DlColor::kRed());
TestEquals(source1, source2);
}
TEST(DisplayListColorSource, ColorNotEquals) {
DlColorColorSource source1(DlColor::kRed());
DlColorColorSource source2(DlColor::kBlue());
TestNotEquals(source1, source2, "Color differs");
}
TEST(DisplayListColorSource, ImageConstructor) {
DlImageColorSource source(kTestImage1, DlTileMode::kClamp, DlTileMode::kClamp,
DlImageSampling::kLinear, &kTestMatrix1);
}
TEST(DisplayListColorSource, ImageShared) {
DlImageColorSource source(kTestImage1, DlTileMode::kClamp, DlTileMode::kClamp,
DlImageSampling::kLinear, &kTestMatrix1);
ASSERT_NE(source.shared().get(), &source);
ASSERT_EQ(*source.shared(), source);
}
TEST(DisplayListColorSource, ImageAsImage) {
DlImageColorSource source(kTestImage1, DlTileMode::kClamp, DlTileMode::kClamp,
DlImageSampling::kLinear, &kTestMatrix1);
ASSERT_NE(source.asImage(), nullptr);
ASSERT_EQ(source.asImage(), &source);
ASSERT_EQ(source.asColor(), nullptr);
ASSERT_EQ(source.asLinearGradient(), nullptr);
ASSERT_EQ(source.asRadialGradient(), nullptr);
ASSERT_EQ(source.asConicalGradient(), nullptr);
ASSERT_EQ(source.asSweepGradient(), nullptr);
}
TEST(DisplayListColorSource, ImageContents) {
DlImageColorSource source(kTestImage1, DlTileMode::kRepeat,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
ASSERT_EQ(source.image(), kTestImage1);
ASSERT_EQ(source.horizontal_tile_mode(), DlTileMode::kRepeat);
ASSERT_EQ(source.vertical_tile_mode(), DlTileMode::kMirror);
ASSERT_EQ(source.sampling(), DlImageSampling::kLinear);
ASSERT_EQ(source.matrix(), kTestMatrix1);
ASSERT_EQ(source.is_opaque(), true);
}
TEST(DisplayListColorSource, AlphaImageContents) {
DlImageColorSource source(kTestAlphaImage1, DlTileMode::kRepeat,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
ASSERT_EQ(source.image(), kTestAlphaImage1);
ASSERT_EQ(source.horizontal_tile_mode(), DlTileMode::kRepeat);
ASSERT_EQ(source.vertical_tile_mode(), DlTileMode::kMirror);
ASSERT_EQ(source.sampling(), DlImageSampling::kLinear);
ASSERT_EQ(source.matrix(), kTestMatrix1);
ASSERT_EQ(source.is_opaque(), false);
}
TEST(DisplayListColorSource, ImageEquals) {
DlImageColorSource source1(kTestImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
DlImageColorSource source2(kTestImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
TestEquals(source1, source2);
}
TEST(DisplayListColorSource, ImageNotEquals) {
DlImageColorSource source1(kTestImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
{
DlImageColorSource source2(kTestAlphaImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
TestNotEquals(source1, source2, "Image differs");
}
{
DlImageColorSource source2(kTestImage1, DlTileMode::kRepeat,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix1);
TestNotEquals(source1, source2, "hTileMode differs");
}
{
DlImageColorSource source2(kTestImage1, DlTileMode::kClamp,
DlTileMode::kRepeat, DlImageSampling::kLinear,
&kTestMatrix1);
TestNotEquals(source1, source2, "vTileMode differs");
}
{
DlImageColorSource source2(kTestImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kCubic,
&kTestMatrix1);
TestNotEquals(source1, source2, "Sampling differs");
}
{
DlImageColorSource source2(kTestImage1, DlTileMode::kClamp,
DlTileMode::kMirror, DlImageSampling::kLinear,
&kTestMatrix2);
TestNotEquals(source1, source2, "Matrix differs");
}
}
TEST(DisplayListColorSource, LinearGradientConstructor) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
}
TEST(DisplayListColorSource, LinearGradientShared) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->shared().get(), source.get());
ASSERT_EQ(*source->shared().get(), *source.get());
}
TEST(DisplayListColorSource, LinearGradientAsLinear) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->asLinearGradient(), nullptr);
ASSERT_EQ(source->asLinearGradient(), source.get());
ASSERT_EQ(source->asColor(), nullptr);
ASSERT_EQ(source->asImage(), nullptr);
ASSERT_EQ(source->asRadialGradient(), nullptr);
ASSERT_EQ(source->asConicalGradient(), nullptr);
ASSERT_EQ(source->asSweepGradient(), nullptr);
ASSERT_EQ(source->asRuntimeEffect(), nullptr);
}
TEST(DisplayListColorSource, LinearGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asLinearGradient()->start_point(), kTestPoints[0]);
ASSERT_EQ(source->asLinearGradient()->end_point(), kTestPoints[1]);
ASSERT_EQ(source->asLinearGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asLinearGradient()->colors()[i], kTestColors[i]);
ASSERT_EQ(source->asLinearGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asLinearGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asLinearGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), true);
}
TEST(DisplayListColorSource, AlphaLinearGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestAlphaColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asLinearGradient()->start_point(), kTestPoints[0]);
ASSERT_EQ(source->asLinearGradient()->end_point(), kTestPoints[1]);
ASSERT_EQ(source->asLinearGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asLinearGradient()->colors()[i], kTestAlphaColors[i]);
ASSERT_EQ(source->asLinearGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asLinearGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asLinearGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), false);
}
TEST(DisplayListColorSource, LinearGradientEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestEquals(*source1, *source2);
}
TEST(DisplayListColorSource, LinearGradientNotEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints2[0], kTestPoints[1], kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Point 0 differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints2[1], kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Point 1 differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], 2, kTestColors, kTestStops, //
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stop count differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestAlphaColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Colors differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors,
kTestStops2, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stops differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kMirror, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Tile Mode differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeLinear(
kTestPoints[0], kTestPoints[1], kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix2);
TestNotEquals(*source1, *source2, "Matrix differs");
}
}
TEST(DisplayListColorSource, RadialGradientConstructor) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
}
TEST(DisplayListColorSource, RadialGradientShared) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->shared().get(), source.get());
ASSERT_EQ(*source->shared().get(), *source.get());
}
TEST(DisplayListColorSource, RadialGradientAsRadial) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->asRadialGradient(), nullptr);
ASSERT_EQ(source->asRadialGradient(), source.get());
ASSERT_EQ(source->asColor(), nullptr);
ASSERT_EQ(source->asImage(), nullptr);
ASSERT_EQ(source->asLinearGradient(), nullptr);
ASSERT_EQ(source->asConicalGradient(), nullptr);
ASSERT_EQ(source->asSweepGradient(), nullptr);
ASSERT_EQ(source->asRuntimeEffect(), nullptr);
}
TEST(DisplayListColorSource, RadialGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asRadialGradient()->center(), kTestPoints[0]);
ASSERT_EQ(source->asRadialGradient()->radius(), 10.0);
ASSERT_EQ(source->asRadialGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asRadialGradient()->colors()[i], kTestColors[i]);
ASSERT_EQ(source->asRadialGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asRadialGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asRadialGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), true);
}
TEST(DisplayListColorSource, AlphaRadialGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestAlphaColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asRadialGradient()->center(), kTestPoints[0]);
ASSERT_EQ(source->asRadialGradient()->radius(), 10.0);
ASSERT_EQ(source->asRadialGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asRadialGradient()->colors()[i], kTestAlphaColors[i]);
ASSERT_EQ(source->asRadialGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asRadialGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asRadialGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), false);
}
TEST(DisplayListColorSource, RadialGradientEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestEquals(*source1, *source2);
}
TEST(DisplayListColorSource, RadialGradientNotEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints2[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Center differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Radius differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, 2, kTestColors, kTestStops, //
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stop count differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestAlphaColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Colors differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops2,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stops differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kMirror, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Tile Mode differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeRadial(
kTestPoints[0], 10.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix2);
TestNotEquals(*source1, *source2, "Matrix differs");
}
}
TEST(DisplayListColorSource, ConicalGradientConstructor) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
}
TEST(DisplayListColorSource, ConicalGradientShared) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->shared().get(), source.get());
ASSERT_EQ(*source->shared().get(), *source.get());
}
TEST(DisplayListColorSource, ConicalGradientAsConical) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->asConicalGradient(), nullptr);
ASSERT_EQ(source->asConicalGradient(), source.get());
ASSERT_EQ(source->asColor(), nullptr);
ASSERT_EQ(source->asImage(), nullptr);
ASSERT_EQ(source->asLinearGradient(), nullptr);
ASSERT_EQ(source->asRadialGradient(), nullptr);
ASSERT_EQ(source->asSweepGradient(), nullptr);
ASSERT_EQ(source->asRuntimeEffect(), nullptr);
}
TEST(DisplayListColorSource, ConicalGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asConicalGradient()->start_center(), kTestPoints[0]);
ASSERT_EQ(source->asConicalGradient()->start_radius(), 10.0);
ASSERT_EQ(source->asConicalGradient()->end_center(), kTestPoints[1]);
ASSERT_EQ(source->asConicalGradient()->end_radius(), 20.0);
ASSERT_EQ(source->asConicalGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asConicalGradient()->colors()[i], kTestColors[i]);
ASSERT_EQ(source->asConicalGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asConicalGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asConicalGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), true);
}
TEST(DisplayListColorSource, AlphaConicalGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount,
kTestAlphaColors, kTestStops, DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asConicalGradient()->start_center(), kTestPoints[0]);
ASSERT_EQ(source->asConicalGradient()->start_radius(), 10.0);
ASSERT_EQ(source->asConicalGradient()->end_center(), kTestPoints[1]);
ASSERT_EQ(source->asConicalGradient()->end_radius(), 20.0);
ASSERT_EQ(source->asConicalGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asConicalGradient()->colors()[i], kTestAlphaColors[i]);
ASSERT_EQ(source->asConicalGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asConicalGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asConicalGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), false);
}
TEST(DisplayListColorSource, ConicalGradientEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestEquals(*source1, *source2);
}
TEST(DisplayListColorSource, ConicalGradientNotEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints2[0], 10.0, kTestPoints[1], 20.0, kTestStopCount,
kTestColors, kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Start Center differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 15.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Start Radius differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints2[1], 20.0, kTestStopCount,
kTestColors, kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "End Center differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 25.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "End Radius differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, 2, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stop count differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount,
kTestAlphaColors, kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Colors differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops2, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stops differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kMirror, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Tile Mode differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeConical(
kTestPoints[0], 10.0, kTestPoints[1], 20.0, kTestStopCount, kTestColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix2);
TestNotEquals(*source1, *source2, "Matrix differs");
}
}
TEST(DisplayListColorSource, SweepGradientConstructor) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
}
TEST(DisplayListColorSource, SweepGradientShared) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->shared().get(), source.get());
ASSERT_EQ(*source->shared().get(), *source.get());
}
TEST(DisplayListColorSource, SweepGradientAsSweep) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_NE(source->asSweepGradient(), nullptr);
ASSERT_EQ(source->asSweepGradient(), source.get());
ASSERT_EQ(source->asColor(), nullptr);
ASSERT_EQ(source->asImage(), nullptr);
ASSERT_EQ(source->asLinearGradient(), nullptr);
ASSERT_EQ(source->asRadialGradient(), nullptr);
ASSERT_EQ(source->asConicalGradient(), nullptr);
ASSERT_EQ(source->asRuntimeEffect(), nullptr);
}
TEST(DisplayListColorSource, SweepGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asSweepGradient()->center(), kTestPoints[0]);
ASSERT_EQ(source->asSweepGradient()->start(), 10.0);
ASSERT_EQ(source->asSweepGradient()->end(), 20.0);
ASSERT_EQ(source->asSweepGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asSweepGradient()->colors()[i], kTestColors[i]);
ASSERT_EQ(source->asSweepGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asSweepGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asSweepGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), true);
}
TEST(DisplayListColorSource, AlphaSweepGradientContents) {
std::shared_ptr<DlColorSource> source = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestAlphaColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
ASSERT_EQ(source->asSweepGradient()->center(), kTestPoints[0]);
ASSERT_EQ(source->asSweepGradient()->start(), 10.0);
ASSERT_EQ(source->asSweepGradient()->end(), 20.0);
ASSERT_EQ(source->asSweepGradient()->stop_count(), kTestStopCount);
for (int i = 0; i < kTestStopCount; i++) {
ASSERT_EQ(source->asSweepGradient()->colors()[i], kTestAlphaColors[i]);
ASSERT_EQ(source->asSweepGradient()->stops()[i], kTestStops[i]);
}
ASSERT_EQ(source->asSweepGradient()->tile_mode(), DlTileMode::kClamp);
ASSERT_EQ(source->asSweepGradient()->matrix(), kTestMatrix1);
ASSERT_EQ(source->is_opaque(), false);
}
TEST(DisplayListColorSource, SweepGradientEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestEquals(*source1, *source2);
}
TEST(DisplayListColorSource, SweepGradientNotEquals) {
std::shared_ptr<DlColorSource> source1 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints2[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Center differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 15.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Start Angle differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 25.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "End Angle differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, 2, kTestColors, kTestStops, //
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stop count differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestAlphaColors,
kTestStops, DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Colors differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops2,
DlTileMode::kClamp, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Stops differ");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kMirror, &kTestMatrix1);
TestNotEquals(*source1, *source2, "Tile Mode differs");
}
{
std::shared_ptr<DlColorSource> source2 = DlColorSource::MakeSweep(
kTestPoints[0], 10.0, 20.0, kTestStopCount, kTestColors, kTestStops,
DlTileMode::kClamp, &kTestMatrix2);
TestNotEquals(*source1, *source2, "Matrix differs");
}
}
TEST(DisplayListColorSource, RuntimeEffect) {
std::shared_ptr<DlRuntimeEffectColorSource> source1 =
DlColorSource::MakeRuntimeEffect(
kTestRuntimeEffect1, {}, std::make_shared<std::vector<uint8_t>>());
std::shared_ptr<DlRuntimeEffectColorSource> source2 =
DlColorSource::MakeRuntimeEffect(
kTestRuntimeEffect2, {}, std::make_shared<std::vector<uint8_t>>());
std::shared_ptr<DlRuntimeEffectColorSource> source3 =
DlColorSource::MakeRuntimeEffect(
nullptr, {}, std::make_shared<std::vector<uint8_t>>());
ASSERT_EQ(source1->type(), DlColorSourceType::kRuntimeEffect);
ASSERT_EQ(source1->asRuntimeEffect(), source1.get());
ASSERT_NE(source2->asRuntimeEffect(), source1.get());
ASSERT_EQ(source1->asImage(), nullptr);
ASSERT_EQ(source1->asColor(), nullptr);
ASSERT_EQ(source1->asLinearGradient(), nullptr);
ASSERT_EQ(source1->asRadialGradient(), nullptr);
ASSERT_EQ(source1->asConicalGradient(), nullptr);
ASSERT_EQ(source1->asSweepGradient(), nullptr);
TestEquals(source1, source1);
TestEquals(source3, source3);
TestNotEquals(source1, source2, "SkRuntimeEffect differs");
TestNotEquals(source2, source3, "SkRuntimeEffect differs");
}
} // namespace testing
} // namespace flutter
| engine/display_list/effects/dl_color_source_unittests.cc/0 | {
"file_path": "engine/display_list/effects/dl_color_source_unittests.cc",
"repo_id": "engine",
"token_count": 13676
} | 153 |
// 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_GEOMETRY_DL_RTREE_H_
#define FLUTTER_DISPLAY_LIST_GEOMETRY_DL_RTREE_H_
#include <list>
#include <optional>
#include <vector>
#include "flutter/display_list/geometry/dl_region.h"
#include "flutter/fml/logging.h"
#include "third_party/skia/include/core/SkColorSpace.h"
#include "third_party/skia/include/core/SkRect.h"
#include "third_party/skia/include/core/SkRefCnt.h"
namespace flutter {
/// An R-Tree that stores a list of bounding rectangles with optional
/// associated IDs.
///
/// The R-Tree can be searched in one of two ways:
/// - Query for a list of hits among the original rectangles
/// @see |search|
/// - Query for a set of non-overlapping rectangles that are joined
/// from the original rectangles that intersect a query rect
/// @see |searchAndConsolidateRects|
class DlRTree : public SkRefCnt {
private:
static constexpr int kMaxChildren = 11;
// Leaf nodes at start of vector have an ID,
// Internal nodes after that have child index and count.
struct Node {
SkRect bounds;
union {
struct {
uint32_t index;
uint32_t count;
} child;
int id;
};
};
public:
/// Construct an R-Tree from the list of rectangles respecting the
/// order in which they appear in the list. An optional array of
/// IDs can be provided to tag each rectangle with information needed
/// by the caller as well as an optional predicate that can filter
/// out rectangles with IDs that should not be stored in the R-Tree.
///
/// If an array of IDs is not specified then all leaf nodes will be
/// represented by the |invalid_id| (which defaults to -1).
///
/// Invalid rects that are empty or contain a NaN value will not be
/// stored in the R-Tree. And, if a |predicate| function is provided,
/// that function will be called to query if the rectangle associated
/// with the ID should be included.
///
/// Duplicate rectangles and IDs are allowed and not processed in any
/// way except to eliminate invalid rectangles and IDs that are rejected
/// by the optional predicate function.
DlRTree(
const SkRect rects[],
int N,
const int ids[] = nullptr,
bool predicate(int id) = [](int) { return true; },
int invalid_id = -1);
/// Search the rectangles and return a vector of leaf node indices for
/// rectangles that intersect the query.
///
/// Note that the indices are internal indices of the stored data
/// and not the index of the rectangles or ids in the constructor.
/// The returned indices may not themselves be in numerical order,
/// but they will represent the rectangles and IDs in the order in
/// which they were passed into the constructor. The actual rectangle
/// and ID associated with each index can be retrieved using the
/// |DlRTree::id| and |DlRTree::bounds| methods.
void search(const SkRect& query, std::vector<int>* results) const;
/// Return the ID for the indicated result of a query or
/// invalid_id if the index is not a valid leaf node index.
int id(int result_index) const {
return (result_index >= 0 && result_index < leaf_count_)
? nodes_[result_index].id
: invalid_id_;
}
/// Returns maximum and minimum axis values of rectangles in this R-Tree.
/// If R-Tree is empty returns an empty SkRect.
const SkRect& bounds() const;
/// Return the rectangle bounds for the indicated result of a query
/// or an empty rect if the index is not a valid leaf node index.
const SkRect& bounds(int result_index) const {
return (result_index >= 0 && result_index < leaf_count_)
? nodes_[result_index].bounds
: kEmpty;
}
/// Returns the bytes used by the object and all of its node data.
size_t bytes_used() const {
return sizeof(DlRTree) + sizeof(Node) * nodes_.size();
}
/// Returns the number of leaf nodes corresponding to non-empty
/// rectangles that were passed in the constructor and not filtered
/// out by the predicate.
int leaf_count() const { return leaf_count_; }
/// Return the total number of nodes used in the R-Tree, both leaf
/// and internal consolidation nodes.
int node_count() const { return nodes_.size(); }
/// Finds the rects in the tree that intersect with the query rect.
///
/// The returned list of rectangles will be non-overlapping.
/// In other words, the bounds of each rect in the result list are mutually
/// exclusive.
///
/// If |deband| is true, then matching rectangles from adjacent DlRegion
/// spanlines will be joined together. This reduces the number of
/// rectangles returned, but requires some extra computation.
std::list<SkRect> searchAndConsolidateRects(const SkRect& query,
bool deband = true) const;
/// Returns DlRegion that represents the union of all rectangles in the
/// R-Tree.
const DlRegion& region() const;
/// Returns DlRegion that represents the union of all rectangles in the
/// R-Tree intersected with the query rect.
DlRegion region(const SkRect& query) const {
return DlRegion::MakeIntersection(region(), DlRegion(query.roundOut()));
}
private:
static constexpr SkRect kEmpty = SkRect::MakeEmpty();
void search(const Node& parent,
const SkRect& query,
std::vector<int>* results) const;
std::vector<Node> nodes_;
int leaf_count_ = 0;
int invalid_id_;
mutable std::optional<DlRegion> region_;
};
} // namespace flutter
#endif // FLUTTER_DISPLAY_LIST_GEOMETRY_DL_RTREE_H_
| engine/display_list/geometry/dl_rtree.h/0 | {
"file_path": "engine/display_list/geometry/dl_rtree.h",
"repo_id": "engine",
"token_count": 1805
} | 154 |
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_DISPLAY_LIST_SKIA_DL_SK_TYPES_H_
#define FLUTTER_DISPLAY_LIST_SKIA_DL_SK_TYPES_H_
#include "flutter/fml/macros.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkBlendMode.h"
#include "third_party/skia/include/core/SkBlurTypes.h"
#include "third_party/skia/include/core/SkCanvas.h"
#include "third_party/skia/include/core/SkClipOp.h"
#include "third_party/skia/include/core/SkColorFilter.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkImageFilter.h"
#include "third_party/skia/include/core/SkMaskFilter.h"
#include "third_party/skia/include/core/SkPaint.h"
#include "third_party/skia/include/core/SkPath.h"
#include "third_party/skia/include/core/SkPathEffect.h"
#include "third_party/skia/include/core/SkPicture.h"
#include "third_party/skia/include/core/SkPoint.h"
#include "third_party/skia/include/core/SkPoint3.h"
#include "third_party/skia/include/core/SkRRect.h"
#include "third_party/skia/include/core/SkRSXform.h"
#include "third_party/skia/include/core/SkRect.h"
#include "third_party/skia/include/core/SkSamplingOptions.h"
#include "third_party/skia/include/core/SkShader.h"
#include "third_party/skia/include/core/SkTextBlob.h"
#include "third_party/skia/include/core/SkTileMode.h"
#include "third_party/skia/include/core/SkVertices.h"
#include "third_party/skia/include/effects/SkCornerPathEffect.h"
#include "third_party/skia/include/effects/SkDashPathEffect.h"
#include "third_party/skia/include/effects/SkDiscretePathEffect.h"
#include "third_party/skia/include/gpu/GrTypes.h"
#endif // FLUTTER_DISPLAY_LIST_SKIA_DL_SK_TYPES_H_
| engine/display_list/skia/dl_sk_types.h/0 | {
"file_path": "engine/display_list/skia/dl_sk_types.h",
"repo_id": "engine",
"token_count": 708
} | 155 |
// 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_COMPARABLE_H_
#define FLUTTER_DISPLAY_LIST_UTILS_DL_COMPARABLE_H_
#include <memory>
namespace flutter {
// These templates implement deep pointer comparisons that compare not
// just the pointers to the objects, but also their contents (provided
// that the <T> class implements the == operator override).
// Any combination of shared_ptr<T> or T* are supported and null pointers
// are not equal to anything but another null pointer.
template <class T>
bool Equals(const T* a, const T* b) {
if (a == b) {
return true;
}
if (!a || !b) {
return false;
}
return *a == *b;
}
template <class T>
bool Equals(std::shared_ptr<const T> a, const T* b) {
return Equals(a.get(), b);
}
template <class T>
bool Equals(std::shared_ptr<T> a, const T* b) {
return Equals(a.get(), b);
}
template <class T>
bool Equals(const T* a, std::shared_ptr<const T> b) {
return Equals(a, b.get());
}
template <class T>
bool Equals(const T* a, std::shared_ptr<T> b) {
return Equals(a, b.get());
}
template <class T>
bool Equals(std::shared_ptr<const T> a, std::shared_ptr<const T> b) {
return Equals(a.get(), b.get());
}
template <class T>
bool Equals(std::shared_ptr<T> a, std::shared_ptr<const T> b) {
return Equals(a.get(), b.get());
}
template <class T>
bool Equals(std::shared_ptr<const T> a, std::shared_ptr<T> b) {
return Equals(a.get(), b.get());
}
template <class T>
bool Equals(std::shared_ptr<T> a, std::shared_ptr<T> b) {
return Equals(a.get(), b.get());
}
template <class T>
bool NotEquals(const T* a, const T* b) {
return !Equals<T>(a, b);
}
template <class T>
bool NotEquals(std::shared_ptr<const T> a, const T* b) {
return !Equals(a.get(), b);
}
template <class T>
bool NotEquals(std::shared_ptr<T> a, const T* b) {
return !Equals(a.get(), b);
}
template <class T>
bool NotEquals(const T* a, std::shared_ptr<const T> b) {
return !Equals(a, b.get());
}
template <class T>
bool NotEquals(const T* a, std::shared_ptr<T> b) {
return !Equals(a, b.get());
}
template <class T>
bool NotEquals(std::shared_ptr<const T> a, std::shared_ptr<const T> b) {
return !Equals(a.get(), b.get());
}
template <class T>
bool NotEquals(std::shared_ptr<T> a, std::shared_ptr<const T> b) {
return !Equals(a.get(), b.get());
}
template <class T>
bool NotEquals(std::shared_ptr<const T> a, std::shared_ptr<T> b) {
return !Equals(a.get(), b.get());
}
template <class T>
bool NotEquals(std::shared_ptr<T> a, std::shared_ptr<T> b) {
return !Equals(a.get(), b.get());
}
} // namespace flutter
#endif // FLUTTER_DISPLAY_LIST_UTILS_DL_COMPARABLE_H_
| engine/display_list/utils/dl_comparable.h/0 | {
"file_path": "engine/display_list/utils/dl_comparable.h",
"repo_id": "engine",
"token_count": 1078
} | 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 <chrono>
#include <cstdlib>
#include <iostream>
#include <optional>
#include <tuple>
#include <vector>
// Use vulkan.hpp's convenient proc table and resolver.
#define VULKAN_HPP_NO_EXCEPTIONS 1
#define VULKAN_HPP_DISPATCH_LOADER_DYNAMIC 1
#include "vulkan/vulkan.hpp"
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE
// Convenient reference to vulkan.hpp's global proc table.
auto& d = vk::defaultDispatchLoaderDynamic;
// GLFW needs to be included after Vulkan.
#include "GLFW/glfw3.h"
#include "embedder.h" // Flutter's Embedder ABI.
static const bool g_enable_validation_layers = true;
// This value is calculated after the window is created.
static double g_pixelRatio = 1.0;
static const size_t kInitialWindowWidth = 800;
static const size_t kInitialWindowHeight = 600;
// Use `VK_PRESENT_MODE_FIFO_KHR` for full vsync (one swap per screen refresh),
// `VK_PRESENT_MODE_MAILBOX_KHR` for continual swap without horizontal tearing,
// or `VK_PRESENT_MODE_IMMEDIATE_KHR` for no vsync.
static const VkPresentModeKHR kPreferredPresentMode = VK_PRESENT_MODE_FIFO_KHR;
static constexpr FlutterViewId kImplicitViewId = 0;
static_assert(FLUTTER_ENGINE_VERSION == 1,
"This Flutter Embedder was authored against the stable Flutter "
"API at version 1. There has been a serious breakage in the "
"API. Please read the ChangeLog and take appropriate action "
"before updating this assertion");
/// Global struct for holding the Window+Vulkan state.
struct {
GLFWwindow* window;
std::vector<const char*> enabled_instance_extensions;
VkInstance instance;
VkSurfaceKHR surface;
VkPhysicalDevice physical_device;
std::vector<const char*> enabled_device_extensions;
VkDevice device;
uint32_t queue_family_index;
VkQueue queue;
VkCommandPool swapchain_command_pool;
std::vector<VkCommandBuffer> present_transition_buffers;
VkFence image_ready_fence;
VkSemaphore present_transition_semaphore;
VkSurfaceFormatKHR surface_format;
VkSwapchainKHR swapchain;
std::vector<VkImage> swapchain_images;
uint32_t last_image_index;
FlutterEngine engine;
bool resize_pending = false;
} g_state;
void GLFW_ErrorCallback(int error, const char* description) {
std::cerr << "GLFW Error: (" << error << ") " << description << std::endl;
}
void GLFWcursorPositionCallbackAtPhase(GLFWwindow* window,
FlutterPointerPhase phase,
double x,
double y) {
FlutterPointerEvent event = {};
event.struct_size = sizeof(event);
event.phase = phase;
event.x = x * g_pixelRatio;
event.y = y * g_pixelRatio;
event.timestamp =
std::chrono::duration_cast<std::chrono::microseconds>(
std::chrono::high_resolution_clock::now().time_since_epoch())
.count();
// This example only supports a single window, therefore we assume the event
// occurred in the only view, the implicit view.
event.view_id = kImplicitViewId;
FlutterEngineSendPointerEvent(g_state.engine, &event, 1);
}
void GLFWcursorPositionCallback(GLFWwindow* window, double x, double y) {
GLFWcursorPositionCallbackAtPhase(window, FlutterPointerPhase::kMove, x, y);
}
void GLFWmouseButtonCallback(GLFWwindow* window,
int key,
int action,
int mods) {
if (key == GLFW_MOUSE_BUTTON_1 && action == GLFW_PRESS) {
double x, y;
glfwGetCursorPos(window, &x, &y);
GLFWcursorPositionCallbackAtPhase(window, FlutterPointerPhase::kDown, x, y);
glfwSetCursorPosCallback(window, GLFWcursorPositionCallback);
}
if (key == GLFW_MOUSE_BUTTON_1 && action == GLFW_RELEASE) {
double x, y;
glfwGetCursorPos(window, &x, &y);
GLFWcursorPositionCallbackAtPhase(window, FlutterPointerPhase::kUp, x, y);
glfwSetCursorPosCallback(window, nullptr);
}
}
void GLFWKeyCallback(GLFWwindow* window,
int key,
int scancode,
int action,
int mods) {
if (key == GLFW_KEY_ESCAPE && action == GLFW_PRESS) {
glfwSetWindowShouldClose(window, GLFW_TRUE);
}
}
void GLFWframebufferSizeCallback(GLFWwindow* window, int width, int height) {
g_state.resize_pending = true;
FlutterWindowMetricsEvent event = {};
event.struct_size = sizeof(event);
event.width = width;
event.height = height;
event.pixel_ratio = g_pixelRatio;
// This example only supports a single window, therefore we assume the event
// occurred in the only view, the implicit view.
event.view_id = kImplicitViewId;
FlutterEngineSendWindowMetricsEvent(g_state.engine, &event);
}
void PrintUsage() {
std::cerr
<< "usage: embedder_example_vulkan <path to project> <path to icudtl.dat>"
<< std::endl;
}
bool InitializeSwapchain() {
if (g_state.resize_pending) {
g_state.resize_pending = false;
d.vkDestroySwapchainKHR(g_state.device, g_state.swapchain, nullptr);
d.vkQueueWaitIdle(g_state.queue);
d.vkResetCommandPool(g_state.device, g_state.swapchain_command_pool,
VK_COMMAND_POOL_RESET_RELEASE_RESOURCES_BIT);
}
/// --------------------------------------------------------------------------
/// Choose an image format that can be presented to the surface, preferring
/// the common BGRA+sRGB if available.
/// --------------------------------------------------------------------------
uint32_t format_count;
d.vkGetPhysicalDeviceSurfaceFormatsKHR(
g_state.physical_device, g_state.surface, &format_count, nullptr);
std::vector<VkSurfaceFormatKHR> formats(format_count);
d.vkGetPhysicalDeviceSurfaceFormatsKHR(
g_state.physical_device, g_state.surface, &format_count, formats.data());
assert(!formats.empty()); // Shouldn't be possible.
g_state.surface_format = formats[0];
for (const auto& format : formats) {
if (format.format == VK_FORMAT_B8G8R8A8_UNORM &&
format.colorSpace == VK_COLOR_SPACE_SRGB_NONLINEAR_KHR) {
g_state.surface_format = format;
}
}
/// --------------------------------------------------------------------------
/// Choose the presentable image size that's as close as possible to the
/// window size.
/// --------------------------------------------------------------------------
VkExtent2D extent;
VkSurfaceCapabilitiesKHR surface_capabilities;
d.vkGetPhysicalDeviceSurfaceCapabilitiesKHR(
g_state.physical_device, g_state.surface, &surface_capabilities);
if (surface_capabilities.currentExtent.width != UINT32_MAX) {
// If the surface reports a specific extent, we must use it.
extent = surface_capabilities.currentExtent;
} else {
// `glfwGetWindowSize` returns the window size in screen coordinates, so we
// instead use `glfwGetFramebufferSize` to get the size in pixels in order
// to properly support high DPI displays.
int width, height;
glfwGetFramebufferSize(g_state.window, &width, &height);
VkExtent2D actual_extent = {
.width = static_cast<uint32_t>(width),
.height = static_cast<uint32_t>(height),
};
actual_extent.width =
std::max(surface_capabilities.minImageExtent.width,
std::min(surface_capabilities.maxImageExtent.width,
actual_extent.width));
actual_extent.height =
std::max(surface_capabilities.minImageExtent.height,
std::min(surface_capabilities.maxImageExtent.height,
actual_extent.height));
}
/// --------------------------------------------------------------------------
/// Choose the present mode.
/// --------------------------------------------------------------------------
uint32_t mode_count;
d.vkGetPhysicalDeviceSurfacePresentModesKHR(
g_state.physical_device, g_state.surface, &mode_count, nullptr);
std::vector<VkPresentModeKHR> modes(mode_count);
d.vkGetPhysicalDeviceSurfacePresentModesKHR(
g_state.physical_device, g_state.surface, &mode_count, modes.data());
assert(!formats.empty()); // Shouldn't be possible.
// If the preferred mode isn't available, just choose the first one.
VkPresentModeKHR present_mode = modes[0];
for (const auto& mode : modes) {
if (mode == kPreferredPresentMode) {
present_mode = mode;
break;
}
}
/// --------------------------------------------------------------------------
/// Create the swapchain.
/// --------------------------------------------------------------------------
VkSwapchainCreateInfoKHR info = {
.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR,
.surface = g_state.surface,
.minImageCount = surface_capabilities.minImageCount + 1,
.imageFormat = g_state.surface_format.format,
.imageColorSpace = g_state.surface_format.colorSpace,
.imageExtent = extent,
.imageArrayLayers = 1,
.imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT,
.imageSharingMode = VK_SHARING_MODE_EXCLUSIVE,
.queueFamilyIndexCount = 0,
.pQueueFamilyIndices = nullptr,
.preTransform = surface_capabilities.currentTransform,
.compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR,
.presentMode = present_mode,
.clipped = true,
};
if (d.vkCreateSwapchainKHR(g_state.device, &info, nullptr,
&g_state.swapchain) != VK_SUCCESS) {
return false;
}
/// --------------------------------------------------------------------------
/// Fetch swapchain images.
/// --------------------------------------------------------------------------
uint32_t image_count;
d.vkGetSwapchainImagesKHR(g_state.device, g_state.swapchain, &image_count,
nullptr);
g_state.swapchain_images.resize(image_count);
d.vkGetSwapchainImagesKHR(g_state.device, g_state.swapchain, &image_count,
g_state.swapchain_images.data());
/// --------------------------------------------------------------------------
/// Record a command buffer for each of the images to be executed prior to
/// presenting.
/// --------------------------------------------------------------------------
g_state.present_transition_buffers.resize(g_state.swapchain_images.size());
VkCommandBufferAllocateInfo buffers_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO,
.commandPool = g_state.swapchain_command_pool,
.level = VK_COMMAND_BUFFER_LEVEL_PRIMARY,
.commandBufferCount =
static_cast<uint32_t>(g_state.present_transition_buffers.size()),
};
d.vkAllocateCommandBuffers(g_state.device, &buffers_info,
g_state.present_transition_buffers.data());
for (size_t i = 0; i < g_state.swapchain_images.size(); i++) {
auto image = g_state.swapchain_images[i];
auto buffer = g_state.present_transition_buffers[i];
VkCommandBufferBeginInfo begin_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO};
d.vkBeginCommandBuffer(buffer, &begin_info);
// Flutter Engine hands back the image after writing to it
VkImageMemoryBarrier barrier = {
.sType = VK_STRUCTURE_TYPE_IMAGE_MEMORY_BARRIER,
.srcAccessMask = 0,
.dstAccessMask = VK_ACCESS_MEMORY_READ_BIT,
.oldLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL,
.newLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR,
.srcQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
.dstQueueFamilyIndex = VK_QUEUE_FAMILY_IGNORED,
.image = image,
.subresourceRange = {
.aspectMask = VK_IMAGE_ASPECT_COLOR_BIT,
.baseMipLevel = 0,
.levelCount = 1,
.baseArrayLayer = 0,
.layerCount = 1,
}};
d.vkCmdPipelineBarrier(
buffer, // commandBuffer
VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT, // srcStageMask
VK_PIPELINE_STAGE_BOTTOM_OF_PIPE_BIT, // dstStageMask
0, // dependencyFlags
0, // memoryBarrierCount
nullptr, // pMemoryBarriers
0, // bufferMemoryBarrierCount
nullptr, // pBufferMemoryBarriers
1, // imageMemoryBarrierCount
&barrier // pImageMemoryBarriers
);
d.vkEndCommandBuffer(buffer);
}
return true; // \o/
}
FlutterVulkanImage FlutterGetNextImageCallback(
void* user_data,
const FlutterFrameInfo* frame_info) {
// If the GLFW framebuffer has been resized, discard the swapchain and create
// a new one.
if (g_state.resize_pending) {
InitializeSwapchain();
}
d.vkAcquireNextImageKHR(g_state.device, g_state.swapchain, UINT64_MAX,
nullptr, g_state.image_ready_fence,
&g_state.last_image_index);
// Flutter Engine expects the image to be available for transitioning and
// attaching immediately, and so we need to force a host sync here before
// returning.
d.vkWaitForFences(g_state.device, 1, &g_state.image_ready_fence, true,
UINT64_MAX);
d.vkResetFences(g_state.device, 1, &g_state.image_ready_fence);
return {
.struct_size = sizeof(FlutterVulkanImage),
.image = reinterpret_cast<uint64_t>(
g_state.swapchain_images[g_state.last_image_index]),
.format = g_state.surface_format.format,
};
}
bool FlutterPresentCallback(void* user_data, const FlutterVulkanImage* image) {
VkPipelineStageFlags stage_flags =
VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT;
VkSubmitInfo submit_info = {
.sType = VK_STRUCTURE_TYPE_SUBMIT_INFO,
.waitSemaphoreCount = 0,
.pWaitSemaphores = nullptr,
.pWaitDstStageMask = &stage_flags,
.commandBufferCount = 1,
.pCommandBuffers =
&g_state.present_transition_buffers[g_state.last_image_index],
.signalSemaphoreCount = 1,
.pSignalSemaphores = &g_state.present_transition_semaphore,
};
d.vkQueueSubmit(g_state.queue, 1, &submit_info, nullptr);
VkPresentInfoKHR present_info = {
.sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR,
.waitSemaphoreCount = 1,
.pWaitSemaphores = &g_state.present_transition_semaphore,
.swapchainCount = 1,
.pSwapchains = &g_state.swapchain,
.pImageIndices = &g_state.last_image_index,
};
VkResult result = d.vkQueuePresentKHR(g_state.queue, &present_info);
// If the swapchain is no longer compatible with the surface, discard the
// swapchain and create a new one.
if (result == VK_SUBOPTIMAL_KHR || result == VK_ERROR_OUT_OF_DATE_KHR) {
InitializeSwapchain();
}
d.vkQueueWaitIdle(g_state.queue);
return result == VK_SUCCESS;
}
void* FlutterGetInstanceProcAddressCallback(
void* user_data,
FlutterVulkanInstanceHandle instance,
const char* procname) {
auto* proc = glfwGetInstanceProcAddress(
reinterpret_cast<VkInstance>(instance), procname);
return reinterpret_cast<void*>(proc);
}
int main(int argc, char** argv) {
if (argc != 3) {
PrintUsage();
return 1;
}
std::string project_path = argv[1];
std::string icudtl_path = argv[2];
/// --------------------------------------------------------------------------
/// Create a GLFW window.
/// --------------------------------------------------------------------------
{
if (!glfwInit()) {
std::cerr << "Failed to initialize GLFW." << std::endl;
return EXIT_FAILURE;
}
glfwWindowHint(GLFW_CLIENT_API, GLFW_NO_API);
g_state.window = glfwCreateWindow(kInitialWindowWidth, kInitialWindowHeight,
"Flutter", nullptr, nullptr);
if (!g_state.window) {
std::cerr << "Failed to create GLFW window." << std::endl;
return EXIT_FAILURE;
}
int framebuffer_width, framebuffer_height;
glfwGetFramebufferSize(g_state.window, &framebuffer_width,
&framebuffer_height);
g_pixelRatio = framebuffer_width / kInitialWindowWidth;
glfwSetErrorCallback(GLFW_ErrorCallback);
}
/// --------------------------------------------------------------------------
/// Dynamically load the Vulkan loader with GLFW and use it to populate GLAD's
/// proc table.
/// --------------------------------------------------------------------------
if (!glfwVulkanSupported()) {
std::cerr << "GLFW was unable to resolve either a Vulkan loader or a "
"compatible physical device!"
<< std::endl;
#if defined(__APPLE__)
std::cerr
<< "NOTE: Apple platforms don't ship with a Vulkan loader or any "
"Vulkan drivers. Follow this guide to set up a Vulkan loader on "
"macOS and use the MoltenVK ICD: "
"https://vulkan.lunarg.com/doc/sdk/latest/mac/getting_started.html"
<< std::endl;
#endif
return EXIT_FAILURE;
}
VULKAN_HPP_DEFAULT_DISPATCHER.init(glfwGetInstanceProcAddress);
/// --------------------------------------------------------------------------
/// Create a Vulkan instance.
/// --------------------------------------------------------------------------
{
uint32_t extension_count;
const char** glfw_extensions =
glfwGetRequiredInstanceExtensions(&extension_count);
g_state.enabled_instance_extensions.resize(extension_count);
memcpy(g_state.enabled_instance_extensions.data(), glfw_extensions,
extension_count * sizeof(char*));
if (g_enable_validation_layers) {
g_state.enabled_instance_extensions.push_back(
VK_EXT_DEBUG_REPORT_EXTENSION_NAME);
}
std::cout << "Enabling " << g_state.enabled_instance_extensions.size()
<< " instance extensions:" << std::endl;
for (const auto& extension : g_state.enabled_instance_extensions) {
std::cout << " - " << extension << std::endl;
}
VkApplicationInfo app_info = {
.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO,
.pNext = nullptr,
.pApplicationName = "Flutter",
.applicationVersion = VK_MAKE_VERSION(1, 0, 0),
.pEngineName = "No Engine",
.engineVersion = VK_MAKE_VERSION(1, 0, 0),
.apiVersion = VK_MAKE_VERSION(1, 1, 0),
};
VkInstanceCreateInfo info = {};
info.sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;
info.flags = 0;
info.pApplicationInfo = &app_info;
info.enabledExtensionCount = g_state.enabled_instance_extensions.size();
info.ppEnabledExtensionNames = g_state.enabled_instance_extensions.data();
if (g_enable_validation_layers) {
auto available_layers = vk::enumerateInstanceLayerProperties();
const char* layer = "VK_LAYER_KHRONOS_validation";
for (const auto& l : available_layers.value) {
if (strcmp(l.layerName, layer) == 0) {
info.enabledLayerCount = 1;
info.ppEnabledLayerNames = &layer;
break;
}
}
}
if (d.vkCreateInstance(&info, nullptr, &g_state.instance) != VK_SUCCESS) {
std::cerr << "Failed to create Vulkan instance." << std::endl;
return EXIT_FAILURE;
}
}
// Load instance procs.
VULKAN_HPP_DEFAULT_DISPATCHER.init(vk::Instance(g_state.instance));
/// --------------------------------------------------------------------------
/// Create the window surface.
/// --------------------------------------------------------------------------
if (glfwCreateWindowSurface(g_state.instance, g_state.window, NULL,
&g_state.surface) != VK_SUCCESS) {
std::cerr << "Failed to create window surface." << std::endl;
return EXIT_FAILURE;
}
/// --------------------------------------------------------------------------
/// Select a compatible physical device.
/// --------------------------------------------------------------------------
{
uint32_t count;
d.vkEnumeratePhysicalDevices(g_state.instance, &count, nullptr);
std::vector<VkPhysicalDevice> physical_devices(count);
d.vkEnumeratePhysicalDevices(g_state.instance, &count,
physical_devices.data());
std::cout << "Enumerating " << count << " physical device(s)." << std::endl;
uint32_t selected_score = 0;
for (const auto& pdevice : physical_devices) {
VkPhysicalDeviceProperties properties;
VkPhysicalDeviceFeatures features;
d.vkGetPhysicalDeviceProperties(pdevice, &properties);
d.vkGetPhysicalDeviceFeatures(pdevice, &features);
std::cout << "Checking device: " << properties.deviceName << std::endl;
uint32_t score = 0;
std::vector<const char*> supported_extensions;
uint32_t qfp_count;
d.vkGetPhysicalDeviceQueueFamilyProperties(pdevice, &qfp_count, nullptr);
std::vector<VkQueueFamilyProperties> qfp(qfp_count);
d.vkGetPhysicalDeviceQueueFamilyProperties(pdevice, &qfp_count,
qfp.data());
std::optional<uint32_t> graphics_queue_family;
for (uint32_t i = 0; i < qfp.size(); i++) {
// Only pick graphics queues that can also present to the surface.
// Graphics queues that can't present are rare if not nonexistent, but
// the spec allows for this, so check it anyways.
VkBool32 surface_present_supported;
d.vkGetPhysicalDeviceSurfaceSupportKHR(pdevice, i, g_state.surface,
&surface_present_supported);
if (!graphics_queue_family.has_value() &&
qfp[i].queueFlags & VK_QUEUE_GRAPHICS_BIT &&
surface_present_supported) {
graphics_queue_family = i;
}
}
// Skip physical devices that don't have a graphics queue.
if (!graphics_queue_family.has_value()) {
std::cout << " - Skipping due to no suitable graphics queues."
<< std::endl;
continue;
}
// Prefer discrete GPUs.
if (properties.deviceType == VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU) {
score += 1 << 30;
}
uint32_t extension_count;
d.vkEnumerateDeviceExtensionProperties(pdevice, nullptr, &extension_count,
nullptr);
std::vector<VkExtensionProperties> available_extensions(extension_count);
d.vkEnumerateDeviceExtensionProperties(pdevice, nullptr, &extension_count,
available_extensions.data());
bool supports_swapchain = false;
for (const auto& available_extension : available_extensions) {
if (strcmp(VK_KHR_SWAPCHAIN_EXTENSION_NAME,
available_extension.extensionName) == 0) {
supports_swapchain = true;
supported_extensions.push_back(VK_KHR_SWAPCHAIN_EXTENSION_NAME);
}
// The spec requires VK_KHR_portability_subset be enabled whenever it's
// available on a device. It's present on compatibility ICDs like
// MoltenVK.
else if (strcmp("VK_KHR_portability_subset",
available_extension.extensionName) == 0) {
supported_extensions.push_back("VK_KHR_portability_subset");
}
// Prefer GPUs that support VK_KHR_get_memory_requirements2.
else if (strcmp(VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME,
available_extension.extensionName) == 0) {
score += 1 << 29;
supported_extensions.push_back(
VK_KHR_GET_MEMORY_REQUIREMENTS_2_EXTENSION_NAME);
}
}
// Skip physical devices that don't have swapchain support.
if (!supports_swapchain) {
std::cout << " - Skipping due to lack of swapchain support."
<< std::endl;
continue;
}
// Prefer GPUs with larger max texture sizes.
score += properties.limits.maxImageDimension2D;
if (selected_score < score) {
std::cout << " - This is the best device so far. Score: 0x" << std::hex
<< score << std::dec << std::endl;
selected_score = score;
g_state.physical_device = pdevice;
g_state.enabled_device_extensions = supported_extensions;
g_state.queue_family_index = graphics_queue_family.value_or(
std::numeric_limits<uint32_t>::max());
}
}
if (g_state.physical_device == nullptr) {
std::cerr << "Failed to find a compatible Vulkan physical device."
<< std::endl;
return EXIT_FAILURE;
}
}
/// --------------------------------------------------------------------------
/// Create a logical device and a graphics queue handle.
/// --------------------------------------------------------------------------
std::cout << "Enabling " << g_state.enabled_device_extensions.size()
<< " device extensions:" << std::endl;
for (const char* extension : g_state.enabled_device_extensions) {
std::cout << " - " << extension << std::endl;
}
{
VkPhysicalDeviceFeatures device_features = {};
VkDeviceQueueCreateInfo graphics_queue = {};
graphics_queue.sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO;
graphics_queue.queueFamilyIndex = g_state.queue_family_index;
graphics_queue.queueCount = 1;
float priority = 1.0f;
graphics_queue.pQueuePriorities = &priority;
VkDeviceCreateInfo device_info = {};
device_info.sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO;
device_info.enabledExtensionCount =
g_state.enabled_device_extensions.size();
device_info.ppEnabledExtensionNames =
g_state.enabled_device_extensions.data();
device_info.pEnabledFeatures = &device_features;
device_info.queueCreateInfoCount = 1;
device_info.pQueueCreateInfos = &graphics_queue;
if (d.vkCreateDevice(g_state.physical_device, &device_info, nullptr,
&g_state.device) != VK_SUCCESS) {
std::cerr << "Failed to create Vulkan logical device." << std::endl;
return EXIT_FAILURE;
}
}
d.vkGetDeviceQueue(g_state.device, g_state.queue_family_index, 0,
&g_state.queue);
/// --------------------------------------------------------------------------
/// Create sync primitives and command pool to use in the render loop
/// callbacks.
/// --------------------------------------------------------------------------
{
VkFenceCreateInfo f_info = {.sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO};
d.vkCreateFence(g_state.device, &f_info, nullptr,
&g_state.image_ready_fence);
VkSemaphoreCreateInfo s_info = {
.sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO};
d.vkCreateSemaphore(g_state.device, &s_info, nullptr,
&g_state.present_transition_semaphore);
VkCommandPoolCreateInfo pool_info = {
.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
.queueFamilyIndex = g_state.queue_family_index,
};
d.vkCreateCommandPool(g_state.device, &pool_info, nullptr,
&g_state.swapchain_command_pool);
}
/// --------------------------------------------------------------------------
/// Create swapchain.
/// --------------------------------------------------------------------------
if (!InitializeSwapchain()) {
std::cerr << "Failed to create swapchain." << std::endl;
return EXIT_FAILURE;
}
/// --------------------------------------------------------------------------
/// Start Flutter Engine.
/// --------------------------------------------------------------------------
{
FlutterRendererConfig config = {};
config.type = kVulkan;
config.vulkan.struct_size = sizeof(config.vulkan);
config.vulkan.version = VK_MAKE_VERSION(1, 1, 0);
config.vulkan.instance = g_state.instance;
config.vulkan.physical_device = g_state.physical_device;
config.vulkan.device = g_state.device;
config.vulkan.queue_family_index = g_state.queue_family_index;
config.vulkan.queue = g_state.queue;
config.vulkan.enabled_instance_extension_count =
g_state.enabled_instance_extensions.size();
config.vulkan.enabled_instance_extensions =
g_state.enabled_instance_extensions.data();
config.vulkan.enabled_device_extension_count =
g_state.enabled_device_extensions.size();
config.vulkan.enabled_device_extensions =
g_state.enabled_device_extensions.data();
config.vulkan.get_instance_proc_address_callback =
FlutterGetInstanceProcAddressCallback;
config.vulkan.get_next_image_callback = FlutterGetNextImageCallback;
config.vulkan.present_image_callback = FlutterPresentCallback;
// This directory is generated by `flutter build bundle`.
std::string assets_path = project_path + "/build/flutter_assets";
FlutterProjectArgs args = {
.struct_size = sizeof(FlutterProjectArgs),
.assets_path = assets_path.c_str(),
.icu_data_path =
icudtl_path.c_str(), // Find this in your bin/cache directory.
};
FlutterEngineResult result =
FlutterEngineRun(FLUTTER_ENGINE_VERSION, &config, &args, g_state.window,
&g_state.engine);
if (result != kSuccess || g_state.engine == nullptr) {
std::cerr << "Failed to start Flutter Engine." << std::endl;
return EXIT_FAILURE;
}
// Trigger a FlutterEngineSendWindowMetricsEvent to communicate the initial
// size of the window.
int width, height;
glfwGetFramebufferSize(g_state.window, &width, &height);
GLFWframebufferSizeCallback(g_state.window, width, height);
g_state.resize_pending = false;
}
/// --------------------------------------------------------------------------
/// GLFW render loop.
/// --------------------------------------------------------------------------
glfwSetKeyCallback(g_state.window, GLFWKeyCallback);
glfwSetFramebufferSizeCallback(g_state.window, GLFWframebufferSizeCallback);
glfwSetMouseButtonCallback(g_state.window, GLFWmouseButtonCallback);
while (!glfwWindowShouldClose(g_state.window)) {
glfwWaitEvents();
}
/// --------------------------------------------------------------------------
/// Cleanup.
/// --------------------------------------------------------------------------
if (FlutterEngineShutdown(g_state.engine) != kSuccess) {
std::cerr << "Flutter Engine shutdown failed." << std::endl;
}
d.vkDestroyCommandPool(g_state.device, g_state.swapchain_command_pool,
nullptr);
d.vkDestroySemaphore(g_state.device, g_state.present_transition_semaphore,
nullptr);
d.vkDestroyFence(g_state.device, g_state.image_ready_fence, nullptr);
d.vkDestroyDevice(g_state.device, nullptr);
d.vkDestroySurfaceKHR(g_state.instance, g_state.surface, nullptr);
d.vkDestroyInstance(g_state.instance, nullptr);
glfwDestroyWindow(g_state.window);
glfwTerminate();
return 0;
}
| engine/examples/vulkan_glfw/src/main.cc/0 | {
"file_path": "engine/examples/vulkan_glfw/src/main.cc",
"repo_id": "engine",
"token_count": 12134
} | 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 <thread>
#include "flutter/flow/frame_timings.h"
#include "flutter/flow/testing/layer_test.h"
#include "flutter/flow/testing/mock_layer.h"
#include "flutter/flow/testing/mock_raster_cache.h"
#include "flutter/fml/time/time_delta.h"
#include "flutter/fml/time/time_point.h"
#include "gtest/gtest.h"
namespace flutter {
using testing::MockRasterCache;
TEST(FrameTimingsRecorderTest, RecordVsync) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto st = fml::TimePoint::Now();
const auto en = st + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordVsync(st, en);
ASSERT_EQ(st, recorder->GetVsyncStartTime());
ASSERT_EQ(en, recorder->GetVsyncTargetTime());
}
TEST(FrameTimingsRecorderTest, RecordBuildTimes) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto st = fml::TimePoint::Now();
const auto en = st + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordVsync(st, en);
const auto build_start = fml::TimePoint::Now();
const auto build_end = build_start + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordBuildStart(build_start);
recorder->RecordBuildEnd(build_end);
ASSERT_EQ(build_start, recorder->GetBuildStartTime());
ASSERT_EQ(build_end, recorder->GetBuildEndTime());
}
TEST(FrameTimingsRecorderTest, RecordRasterTimes) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto st = fml::TimePoint::Now();
const auto en = st + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordVsync(st, en);
const auto build_start = fml::TimePoint::Now();
const auto build_end = build_start + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordBuildStart(build_start);
recorder->RecordBuildEnd(build_end);
using namespace std::chrono_literals;
const auto raster_start = fml::TimePoint::Now();
recorder->RecordRasterStart(raster_start);
const auto before_raster_end_wall_time = fml::TimePoint::CurrentWallTime();
std::this_thread::sleep_for(1ms);
const auto timing = recorder->RecordRasterEnd();
std::this_thread::sleep_for(1ms);
const auto after_raster_end_wall_time = fml::TimePoint::CurrentWallTime();
ASSERT_EQ(raster_start, recorder->GetRasterStartTime());
ASSERT_GT(recorder->GetRasterEndWallTime(), before_raster_end_wall_time);
ASSERT_LT(recorder->GetRasterEndWallTime(), after_raster_end_wall_time);
ASSERT_EQ(recorder->GetFrameNumber(), timing.GetFrameNumber());
ASSERT_EQ(recorder->GetLayerCacheCount(), 0u);
ASSERT_EQ(recorder->GetLayerCacheBytes(), 0u);
ASSERT_EQ(recorder->GetPictureCacheCount(), 0u);
ASSERT_EQ(recorder->GetPictureCacheBytes(), 0u);
}
TEST(FrameTimingsRecorderTest, RecordRasterTimesWithCache) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto st = fml::TimePoint::Now();
const auto en = st + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordVsync(st, en);
const auto build_start = fml::TimePoint::Now();
const auto build_end = build_start + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordBuildStart(build_start);
recorder->RecordBuildEnd(build_end);
using namespace std::chrono_literals;
MockRasterCache cache(1, 10);
cache.BeginFrame();
const auto raster_start = fml::TimePoint::Now();
recorder->RecordRasterStart(raster_start);
cache.AddMockLayer(100, 100);
size_t layer_bytes = cache.EstimateLayerCacheByteSize();
EXPECT_GT(layer_bytes, 0u);
cache.AddMockPicture(100, 100);
size_t picture_bytes = cache.EstimatePictureCacheByteSize();
EXPECT_GT(picture_bytes, 0u);
cache.EvictUnusedCacheEntries();
cache.EndFrame();
const auto before_raster_end_wall_time = fml::TimePoint::CurrentWallTime();
std::this_thread::sleep_for(1ms);
const auto timing = recorder->RecordRasterEnd(&cache);
std::this_thread::sleep_for(1ms);
const auto after_raster_end_wall_time = fml::TimePoint::CurrentWallTime();
ASSERT_EQ(raster_start, recorder->GetRasterStartTime());
ASSERT_GT(recorder->GetRasterEndWallTime(), before_raster_end_wall_time);
ASSERT_LT(recorder->GetRasterEndWallTime(), after_raster_end_wall_time);
ASSERT_EQ(recorder->GetFrameNumber(), timing.GetFrameNumber());
ASSERT_EQ(recorder->GetLayerCacheCount(), 1u);
ASSERT_EQ(recorder->GetLayerCacheBytes(), layer_bytes);
ASSERT_EQ(recorder->GetPictureCacheCount(), 1u);
ASSERT_EQ(recorder->GetPictureCacheBytes(), picture_bytes);
}
// Windows and Fuchsia don't allow testing with killed by signal.
#if !defined(OS_FUCHSIA) && !defined(FML_OS_WIN) && \
(FLUTTER_RUNTIME_MODE == FLUTTER_RUNTIME_MODE_DEBUG)
TEST(FrameTimingsRecorderTest, ThrowWhenRecordBuildBeforeVsync) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto build_start = fml::TimePoint::Now();
fml::Status status = recorder->RecordBuildStartImpl(build_start);
EXPECT_FALSE(status.ok());
EXPECT_EQ(status.message(), "Check failed: state_ == State::kVsync.");
}
TEST(FrameTimingsRecorderTest, ThrowWhenRecordRasterBeforeBuildEnd) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto st = fml::TimePoint::Now();
const auto en = st + fml::TimeDelta::FromMillisecondsF(16);
recorder->RecordVsync(st, en);
const auto raster_start = fml::TimePoint::Now();
fml::Status status = recorder->RecordRasterStartImpl(raster_start);
EXPECT_FALSE(status.ok());
EXPECT_EQ(status.message(), "Check failed: state_ == State::kBuildEnd.");
}
#endif
TEST(FrameTimingsRecorderTest, RecordersHaveUniqueFrameNumbers) {
auto recorder1 = std::make_unique<FrameTimingsRecorder>();
auto recorder2 = std::make_unique<FrameTimingsRecorder>();
ASSERT_TRUE(recorder2->GetFrameNumber() > recorder1->GetFrameNumber());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameFrameNumber) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
auto cloned =
recorder->CloneUntil(FrameTimingsRecorder::State::kUninitialized);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameVsyncStartAndTarget) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kVsync);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameBuildStart) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
recorder->RecordBuildStart(fml::TimePoint::Now());
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kBuildStart);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
ASSERT_EQ(recorder->GetBuildStartTime(), cloned->GetBuildStartTime());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameBuildEnd) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
recorder->RecordBuildStart(fml::TimePoint::Now());
recorder->RecordBuildEnd(fml::TimePoint::Now());
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kBuildEnd);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
ASSERT_EQ(recorder->GetBuildStartTime(), cloned->GetBuildStartTime());
ASSERT_EQ(recorder->GetBuildEndTime(), cloned->GetBuildEndTime());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameRasterStart) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
recorder->RecordBuildStart(fml::TimePoint::Now());
recorder->RecordBuildEnd(fml::TimePoint::Now());
recorder->RecordRasterStart(fml::TimePoint::Now());
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kRasterStart);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
ASSERT_EQ(recorder->GetBuildStartTime(), cloned->GetBuildStartTime());
ASSERT_EQ(recorder->GetBuildEndTime(), cloned->GetBuildEndTime());
ASSERT_EQ(recorder->GetRasterStartTime(), cloned->GetRasterStartTime());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameRasterEnd) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
recorder->RecordBuildStart(fml::TimePoint::Now());
recorder->RecordBuildEnd(fml::TimePoint::Now());
recorder->RecordRasterStart(fml::TimePoint::Now());
recorder->RecordRasterEnd();
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kRasterEnd);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
ASSERT_EQ(recorder->GetBuildStartTime(), cloned->GetBuildStartTime());
ASSERT_EQ(recorder->GetBuildEndTime(), cloned->GetBuildEndTime());
ASSERT_EQ(recorder->GetRasterStartTime(), cloned->GetRasterStartTime());
ASSERT_EQ(recorder->GetRasterEndTime(), cloned->GetRasterEndTime());
ASSERT_EQ(recorder->GetRasterEndWallTime(), cloned->GetRasterEndWallTime());
ASSERT_EQ(recorder->GetLayerCacheCount(), cloned->GetLayerCacheCount());
ASSERT_EQ(recorder->GetLayerCacheBytes(), cloned->GetLayerCacheBytes());
ASSERT_EQ(recorder->GetPictureCacheCount(), cloned->GetPictureCacheCount());
ASSERT_EQ(recorder->GetPictureCacheBytes(), cloned->GetPictureCacheBytes());
}
TEST(FrameTimingsRecorderTest, ClonedHasSameRasterEndWithCache) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
MockRasterCache cache(1, 10);
cache.BeginFrame();
const auto now = fml::TimePoint::Now();
recorder->RecordVsync(now, now + fml::TimeDelta::FromMilliseconds(16));
recorder->RecordBuildStart(fml::TimePoint::Now());
recorder->RecordBuildEnd(fml::TimePoint::Now());
recorder->RecordRasterStart(fml::TimePoint::Now());
cache.AddMockLayer(100, 100);
size_t layer_bytes = cache.EstimateLayerCacheByteSize();
EXPECT_GT(layer_bytes, 0u);
cache.AddMockPicture(100, 100);
size_t picture_bytes = cache.EstimatePictureCacheByteSize();
EXPECT_GT(picture_bytes, 0u);
cache.EvictUnusedCacheEntries();
cache.EndFrame();
recorder->RecordRasterEnd(&cache);
auto cloned = recorder->CloneUntil(FrameTimingsRecorder::State::kRasterEnd);
ASSERT_EQ(recorder->GetFrameNumber(), cloned->GetFrameNumber());
ASSERT_EQ(recorder->GetVsyncStartTime(), cloned->GetVsyncStartTime());
ASSERT_EQ(recorder->GetVsyncTargetTime(), cloned->GetVsyncTargetTime());
ASSERT_EQ(recorder->GetBuildStartTime(), cloned->GetBuildStartTime());
ASSERT_EQ(recorder->GetBuildEndTime(), cloned->GetBuildEndTime());
ASSERT_EQ(recorder->GetRasterStartTime(), cloned->GetRasterStartTime());
ASSERT_EQ(recorder->GetRasterEndTime(), cloned->GetRasterEndTime());
ASSERT_EQ(recorder->GetRasterEndWallTime(), cloned->GetRasterEndWallTime());
ASSERT_EQ(recorder->GetLayerCacheCount(), cloned->GetLayerCacheCount());
ASSERT_EQ(recorder->GetLayerCacheBytes(), cloned->GetLayerCacheBytes());
ASSERT_EQ(recorder->GetPictureCacheCount(), cloned->GetPictureCacheCount());
ASSERT_EQ(recorder->GetPictureCacheBytes(), cloned->GetPictureCacheBytes());
}
TEST(FrameTimingsRecorderTest, FrameNumberTraceArgIsValid) {
auto recorder = std::make_unique<FrameTimingsRecorder>();
char buff[50];
sprintf(buff, "%d", static_cast<int>(recorder->GetFrameNumber()));
std::string actual_arg = buff;
std::string expected_arg = recorder->GetFrameNumberTraceArg();
ASSERT_EQ(actual_arg, expected_arg);
}
} // namespace flutter
| engine/flow/frame_timings_recorder_unittests.cc/0 | {
"file_path": "engine/flow/frame_timings_recorder_unittests.cc",
"repo_id": "engine",
"token_count": 4207
} | 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.
#include "flutter/flow/layers/clip_rrect_layer.h"
namespace flutter {
ClipRRectLayer::ClipRRectLayer(const SkRRect& clip_rrect, Clip clip_behavior)
: ClipShapeLayer(clip_rrect, clip_behavior) {}
const SkRect& ClipRRectLayer::clip_shape_bounds() const {
return clip_shape().getBounds();
}
void ClipRRectLayer::ApplyClip(LayerStateStack::MutatorContext& mutator) const {
mutator.clipRRect(clip_shape(), clip_behavior() != Clip::kHardEdge);
}
} // namespace flutter
| engine/flow/layers/clip_rrect_layer.cc/0 | {
"file_path": "engine/flow/layers/clip_rrect_layer.cc",
"repo_id": "engine",
"token_count": 210
} | 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.
#ifndef FLUTTER_FLOW_LAYERS_IMAGE_FILTER_LAYER_H_
#define FLUTTER_FLOW_LAYERS_IMAGE_FILTER_LAYER_H_
#include <memory>
#include "flutter/flow/layers/cacheable_layer.h"
namespace flutter {
class ImageFilterLayer : public CacheableContainerLayer {
public:
explicit ImageFilterLayer(std::shared_ptr<const DlImageFilter> filter,
const SkPoint& offset = SkPoint::Make(0, 0));
void Diff(DiffContext* context, const Layer* old_layer) override;
void Preroll(PrerollContext* context) override;
void Paint(PaintContext& context) const override;
private:
SkPoint offset_;
std::shared_ptr<const DlImageFilter> filter_;
std::shared_ptr<const DlImageFilter> transformed_filter_;
FML_DISALLOW_COPY_AND_ASSIGN(ImageFilterLayer);
};
} // namespace flutter
#endif // FLUTTER_FLOW_LAYERS_IMAGE_FILTER_LAYER_H_
| engine/flow/layers/image_filter_layer.h/0 | {
"file_path": "engine/flow/layers/image_filter_layer.h",
"repo_id": "engine",
"token_count": 362
} | 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.
#ifndef FLUTTER_FLOW_LAYERS_OPACITY_LAYER_H_
#define FLUTTER_FLOW_LAYERS_OPACITY_LAYER_H_
#include "flutter/flow/layers/cacheable_layer.h"
#include "flutter/flow/layers/layer.h"
#include "include/core/SkMatrix.h"
namespace flutter {
// Don't add an OpacityLayer with no children to the layer tree. Painting an
// OpacityLayer is very costly due to the saveLayer call. If there's no child,
// having the OpacityLayer or not has the same effect. In debug_unopt build,
// |Preroll| will assert if there are no children.
class OpacityLayer : public CacheableContainerLayer {
public:
// An offset is provided here because OpacityLayer.addToScene method in the
// Flutter framework can take an optional offset argument.
//
// By default, that offset is always zero, and all the offsets are handled by
// some parent TransformLayers. But we allow the offset to be non-zero for
// backward compatibility. If it's non-zero, the old behavior is to propage
// that offset to all the leaf layers (e.g., DisplayListLayer). That will make
// the retained rendering inefficient as a small offset change could propagate
// to many leaf layers. Therefore we try to capture that offset here to stop
// the propagation as repainting the OpacityLayer is expensive.
OpacityLayer(SkAlpha alpha, const SkPoint& offset);
void Diff(DiffContext* context, const Layer* old_layer) override;
void Preroll(PrerollContext* context) override;
void Paint(PaintContext& context) const override;
// Returns whether the children are capable of inheriting an opacity value
// and modifying their rendering accordingly. This value is only guaranteed
// to be valid after the local |Preroll| method is called.
bool children_can_accept_opacity() const {
return children_can_accept_opacity_;
}
void set_children_can_accept_opacity(bool value) {
children_can_accept_opacity_ = value;
}
SkScalar opacity() const { return alpha_ * 1.0f / SK_AlphaOPAQUE; }
private:
SkAlpha alpha_;
SkPoint offset_;
bool children_can_accept_opacity_ = false;
FML_DISALLOW_COPY_AND_ASSIGN(OpacityLayer);
};
} // namespace flutter
#endif // FLUTTER_FLOW_LAYERS_OPACITY_LAYER_H_
| engine/flow/layers/opacity_layer.h/0 | {
"file_path": "engine/flow/layers/opacity_layer.h",
"repo_id": "engine",
"token_count": 698
} | 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.
#include "flutter/flow/layers/transform_layer.h"
#include "flutter/flow/testing/diff_context_test.h"
#include "flutter/flow/testing/layer_test.h"
#include "flutter/flow/testing/mock_layer.h"
#include "flutter/fml/macros.h"
namespace flutter {
namespace testing {
using TransformLayerTest = LayerTest;
#ifndef NDEBUG
TEST_F(TransformLayerTest, PaintingEmptyLayerDies) {
auto layer = std::make_shared<TransformLayer>(SkMatrix()); // identity
layer->Preroll(preroll_context());
EXPECT_EQ(layer->paint_bounds(), SkRect::MakeEmpty());
EXPECT_EQ(layer->child_paint_bounds(), SkRect::MakeEmpty());
EXPECT_FALSE(layer->needs_painting(paint_context()));
EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()),
"needs_painting\\(context\\)");
}
TEST_F(TransformLayerTest, PaintBeforePrerollDies) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer = std::make_shared<TransformLayer>(SkMatrix()); // identity
layer->Add(mock_layer);
EXPECT_DEATH_IF_SUPPORTED(layer->Paint(paint_context()),
"needs_painting\\(context\\)");
}
#endif
TEST_F(TransformLayerTest, Identity) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkRect cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer = std::make_shared<TransformLayer>(SkMatrix()); // identity
layer->Add(mock_layer);
preroll_context()->state_stack.set_preroll_delegate(cull_rect);
layer->Preroll(preroll_context());
EXPECT_EQ(mock_layer->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer->paint_bounds(), mock_layer->paint_bounds());
EXPECT_EQ(layer->child_paint_bounds(), mock_layer->paint_bounds());
EXPECT_TRUE(mock_layer->needs_painting(paint_context()));
EXPECT_TRUE(layer->needs_painting(paint_context()));
EXPECT_EQ(mock_layer->parent_matrix(), SkMatrix()); // identity
EXPECT_EQ(mock_layer->parent_cull_rect(), cull_rect);
EXPECT_EQ(mock_layer->parent_mutators().stack_count(), 0u);
EXPECT_EQ(mock_layer->parent_mutators(), MutatorsStack());
layer->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(SkMatrix());
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, DlPaint());
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, Simple) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkMatrix initial_transform = SkMatrix::Translate(-0.5f, -0.5f);
SkRect local_cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
SkRect device_cull_rect = initial_transform.mapRect(local_cull_rect);
SkMatrix layer_transform = SkMatrix::Translate(2.5f, 2.5f);
SkMatrix inverse_layer_transform;
EXPECT_TRUE(layer_transform.invert(&inverse_layer_transform));
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer = std::make_shared<TransformLayer>(layer_transform);
layer->Add(mock_layer);
preroll_context()->state_stack.set_preroll_delegate(device_cull_rect,
initial_transform);
layer->Preroll(preroll_context());
EXPECT_EQ(mock_layer->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer->paint_bounds(),
layer_transform.mapRect(mock_layer->paint_bounds()));
EXPECT_EQ(layer->child_paint_bounds(), mock_layer->paint_bounds());
EXPECT_TRUE(mock_layer->needs_painting(paint_context()));
EXPECT_TRUE(layer->needs_painting(paint_context()));
EXPECT_EQ(mock_layer->parent_matrix(),
SkMatrix::Concat(initial_transform, layer_transform));
EXPECT_EQ(mock_layer->parent_cull_rect(),
inverse_layer_transform.mapRect(local_cull_rect));
EXPECT_EQ(mock_layer->parent_mutators(),
std::vector({Mutator(layer_transform)}));
layer->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer_transform);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, DlPaint());
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, SimpleM44) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkMatrix initial_transform = SkMatrix::Translate(-0.5f, -0.5f);
SkRect local_cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
SkRect device_cull_rect = initial_transform.mapRect(local_cull_rect);
SkMatrix layer_transform = SkMatrix::Translate(2.5f, 3.5f);
SkMatrix inverse_layer_transform;
EXPECT_TRUE(layer_transform.invert(&inverse_layer_transform));
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer = std::make_shared<TransformLayer>(SkM44::Translate(2.5f, 3.5f));
layer->Add(mock_layer);
preroll_context()->state_stack.set_preroll_delegate(device_cull_rect,
initial_transform);
layer->Preroll(preroll_context());
EXPECT_EQ(mock_layer->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer->paint_bounds(),
layer_transform.mapRect(mock_layer->paint_bounds()));
EXPECT_EQ(layer->child_paint_bounds(), mock_layer->paint_bounds());
EXPECT_TRUE(mock_layer->needs_painting(paint_context()));
EXPECT_TRUE(layer->needs_painting(paint_context()));
EXPECT_EQ(mock_layer->parent_matrix(),
SkMatrix::Concat(initial_transform, layer_transform));
EXPECT_EQ(mock_layer->parent_cull_rect(),
inverse_layer_transform.mapRect(local_cull_rect));
EXPECT_EQ(mock_layer->parent_mutators(),
std::vector({Mutator(layer_transform)}));
layer->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer_transform);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, DlPaint());
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, ComplexM44) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkMatrix initial_transform = SkMatrix::Translate(-0.5f, -0.5f);
SkRect local_cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
SkRect device_cull_rect = initial_transform.mapRect(local_cull_rect);
SkM44 layer_transform44 = SkM44();
layer_transform44.preTranslate(2.5f, 2.5f);
// 20 degrees around the X axis
layer_transform44.preConcat(SkM44::Rotate({1.0f, 0.0f, 0.0f}, M_PI / 9.0f));
// 10 degrees around the Y axis
layer_transform44.preConcat(SkM44::Rotate({0.0f, 1.0f, 0.0f}, M_PI / 18.0f));
SkMatrix layer_transform = layer_transform44.asM33();
SkMatrix inverse_layer_transform;
EXPECT_TRUE(layer_transform.invert(&inverse_layer_transform));
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer = std::make_shared<TransformLayer>(layer_transform44);
layer->Add(mock_layer);
preroll_context()->state_stack.set_preroll_delegate(device_cull_rect,
initial_transform);
layer->Preroll(preroll_context());
EXPECT_EQ(mock_layer->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer->paint_bounds(),
layer_transform.mapRect(mock_layer->paint_bounds()));
EXPECT_EQ(layer->child_paint_bounds(), mock_layer->paint_bounds());
EXPECT_TRUE(mock_layer->needs_painting(paint_context()));
EXPECT_TRUE(layer->needs_painting(paint_context()));
EXPECT_EQ(mock_layer->parent_matrix(),
SkMatrix::Concat(initial_transform, layer_transform));
EXPECT_EQ(mock_layer->parent_cull_rect(),
inverse_layer_transform.mapRect(local_cull_rect));
EXPECT_EQ(mock_layer->parent_mutators(),
std::vector({Mutator(layer_transform)}));
layer->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer_transform44);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, DlPaint());
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, Nested) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkMatrix initial_transform = SkMatrix::Translate(-0.5f, -0.5f);
SkRect local_cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
SkRect device_cull_rect = initial_transform.mapRect(local_cull_rect);
SkMatrix layer1_transform = SkMatrix::Translate(2.5f, 2.5f);
SkMatrix layer2_transform = SkMatrix::Translate(3.5f, 3.5f);
SkMatrix inverse_layer1_transform, inverse_layer2_transform;
EXPECT_TRUE(layer1_transform.invert(&inverse_layer1_transform));
EXPECT_TRUE(layer2_transform.invert(&inverse_layer2_transform));
auto mock_layer = std::make_shared<MockLayer>(child_path, DlPaint());
auto layer1 = std::make_shared<TransformLayer>(layer1_transform);
auto layer2 = std::make_shared<TransformLayer>(layer2_transform);
layer1->Add(layer2);
layer2->Add(mock_layer);
preroll_context()->state_stack.set_preroll_delegate(device_cull_rect,
initial_transform);
layer1->Preroll(preroll_context());
EXPECT_EQ(mock_layer->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer2->paint_bounds(),
layer2_transform.mapRect(mock_layer->paint_bounds()));
EXPECT_EQ(layer2->child_paint_bounds(), mock_layer->paint_bounds());
EXPECT_EQ(layer1->paint_bounds(),
layer1_transform.mapRect(layer2->paint_bounds()));
EXPECT_EQ(layer1->child_paint_bounds(), layer2->paint_bounds());
EXPECT_TRUE(mock_layer->needs_painting(paint_context()));
EXPECT_TRUE(layer2->needs_painting(paint_context()));
EXPECT_TRUE(layer1->needs_painting(paint_context()));
EXPECT_EQ(
mock_layer->parent_matrix(),
SkMatrix::Concat(SkMatrix::Concat(initial_transform, layer1_transform),
layer2_transform));
EXPECT_EQ(mock_layer->parent_cull_rect(),
inverse_layer2_transform.mapRect(
inverse_layer1_transform.mapRect(local_cull_rect)));
EXPECT_EQ(
mock_layer->parent_mutators(),
std::vector({Mutator(layer1_transform), Mutator(layer2_transform)}));
layer1->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer1::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer1_transform);
/* (Transform)layer1::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer2_transform);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, DlPaint());
}
}
expected_builder.Restore();
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, NestedSeparated) {
SkPath child_path;
child_path.addRect(5.0f, 6.0f, 20.5f, 21.5f);
SkMatrix initial_transform = SkMatrix::Translate(-0.5f, -0.5f);
SkRect local_cull_rect = SkRect::MakeXYWH(2.0f, 2.0f, 14.0f, 14.0f);
SkRect device_cull_rect = initial_transform.mapRect(local_cull_rect);
SkMatrix layer1_transform = SkMatrix::Translate(2.5f, 2.5f);
SkMatrix layer2_transform = SkMatrix::Translate(3.5f, 3.5f);
SkMatrix inverse_layer1_transform, inverse_layer2_transform;
EXPECT_TRUE(layer1_transform.invert(&inverse_layer1_transform));
EXPECT_TRUE(layer2_transform.invert(&inverse_layer2_transform));
DlPaint child_paint1(DlColor::kBlue());
DlPaint child_paint2(DlColor::kGreen());
auto mock_layer1 = std::make_shared<MockLayer>(child_path, child_paint1);
auto mock_layer2 = std::make_shared<MockLayer>(child_path, child_paint2);
auto layer1 = std::make_shared<TransformLayer>(layer1_transform);
auto layer2 = std::make_shared<TransformLayer>(layer2_transform);
layer1->Add(mock_layer1);
layer1->Add(layer2);
layer2->Add(mock_layer2);
preroll_context()->state_stack.set_preroll_delegate(device_cull_rect,
initial_transform);
layer1->Preroll(preroll_context());
SkRect layer1_child_bounds = layer2->paint_bounds();
layer1_child_bounds.join(mock_layer1->paint_bounds());
SkRect expected_layer1_bounds = layer1_child_bounds;
layer1_transform.mapRect(&expected_layer1_bounds);
EXPECT_EQ(mock_layer2->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer2->paint_bounds(),
layer2_transform.mapRect(mock_layer2->paint_bounds()));
EXPECT_EQ(layer2->child_paint_bounds(), mock_layer2->paint_bounds());
EXPECT_EQ(mock_layer1->paint_bounds(), child_path.getBounds());
EXPECT_EQ(layer1->paint_bounds(), expected_layer1_bounds);
EXPECT_EQ(layer1->child_paint_bounds(), layer1_child_bounds);
EXPECT_TRUE(mock_layer2->needs_painting(paint_context()));
EXPECT_TRUE(layer2->needs_painting(paint_context()));
EXPECT_TRUE(mock_layer1->needs_painting(paint_context()));
EXPECT_TRUE(layer1->needs_painting(paint_context()));
EXPECT_EQ(mock_layer1->parent_matrix(),
SkMatrix::Concat(initial_transform, layer1_transform));
EXPECT_EQ(
mock_layer2->parent_matrix(),
SkMatrix::Concat(SkMatrix::Concat(initial_transform, layer1_transform),
layer2_transform));
EXPECT_EQ(mock_layer1->parent_cull_rect(),
inverse_layer1_transform.mapRect(local_cull_rect));
EXPECT_EQ(mock_layer2->parent_cull_rect(),
inverse_layer2_transform.mapRect(
inverse_layer1_transform.mapRect(local_cull_rect)));
EXPECT_EQ(mock_layer1->parent_mutators(),
std::vector({Mutator(layer1_transform)}));
EXPECT_EQ(
mock_layer2->parent_mutators(),
std::vector({Mutator(layer1_transform), Mutator(layer2_transform)}));
layer1->Paint(display_list_paint_context());
DisplayListBuilder expected_builder;
/* (Transform)layer1::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer1_transform);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, child_paint1);
}
/* (Transform)layer1::Paint */ {
expected_builder.Save();
{
expected_builder.Transform(layer2_transform);
/* mock_layer::Paint */ {
expected_builder.DrawPath(child_path, child_paint2);
}
}
expected_builder.Restore();
}
}
expected_builder.Restore();
}
EXPECT_TRUE(DisplayListsEQ_Verbose(display_list(), expected_builder.Build()));
}
TEST_F(TransformLayerTest, OpacityInheritance) {
auto path1 = SkPath().addRect({10, 10, 30, 30});
auto mock1 = MockLayer::MakeOpacityCompatible(path1);
auto transform1 = std::make_shared<TransformLayer>(SkMatrix::Scale(2, 2));
transform1->Add(mock1);
// TransformLayer will pass through compatibility from a compatible child
PrerollContext* context = preroll_context();
transform1->Preroll(context);
EXPECT_EQ(context->renderable_state_flags,
LayerStateStack::kCallerCanApplyOpacity);
auto path2 = SkPath().addRect({40, 40, 50, 50});
auto mock2 = MockLayer::MakeOpacityCompatible(path2);
transform1->Add(mock2);
// TransformLayer will pass through compatibility from multiple
// non-overlapping compatible children
transform1->Preroll(context);
EXPECT_EQ(context->renderable_state_flags,
LayerStateStack::kCallerCanApplyOpacity);
auto path3 = SkPath().addRect({20, 20, 40, 40});
auto mock3 = MockLayer::MakeOpacityCompatible(path3);
transform1->Add(mock3);
// TransformLayer will not pass through compatibility from multiple
// overlapping children even if they are individually compatible
transform1->Preroll(context);
EXPECT_EQ(context->renderable_state_flags, 0);
auto transform2 = std::make_shared<TransformLayer>(SkMatrix::Scale(2, 2));
transform2->Add(mock1);
transform2->Add(mock2);
// Double check first two children are compatible and non-overlapping
transform2->Preroll(context);
EXPECT_EQ(context->renderable_state_flags,
LayerStateStack::kCallerCanApplyOpacity);
auto path4 = SkPath().addRect({60, 60, 70, 70});
auto mock4 = MockLayer::Make(path4);
transform2->Add(mock4);
// The third child is non-overlapping, but not compatible so the
// TransformLayer should end up incompatible
transform2->Preroll(context);
EXPECT_EQ(context->renderable_state_flags, 0);
}
TEST_F(TransformLayerTest, 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);
auto transform = SkMatrix::Scale(2, 2);
auto transform_layer = std::make_shared<TransformLayer>(transform);
transform_layer->Add(mock1);
transform_layer->Add(mock2);
// TransformLayer will pass through compatibility from multiple
// non-overlapping compatible children
PrerollContext* context = preroll_context();
transform_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(transform_layer);
opacity_layer->Preroll(context);
EXPECT_TRUE(opacity_layer->children_can_accept_opacity());
DisplayListBuilder expected_builder;
/* opacity_layer paint */ {
expected_builder.Save();
{
expected_builder.Translate(offset.fX, offset.fY);
/* transform_layer paint */ {
expected_builder.Save();
expected_builder.Transform(transform);
/* 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(display_list(), expected_builder.Build()));
}
using TransformLayerLayerDiffTest = DiffContextTest;
TEST_F(TransformLayerLayerDiffTest, Transform) {
auto path1 = SkPath().addRect(SkRect::MakeLTRB(0, 0, 50, 50));
auto m1 = std::make_shared<MockLayer>(path1);
auto transform1 =
std::make_shared<TransformLayer>(SkMatrix::Translate(10, 10));
transform1->Add(m1);
MockLayerTree t1;
t1.root()->Add(transform1);
auto damage = DiffLayerTree(t1, MockLayerTree());
EXPECT_EQ(damage.frame_damage, SkIRect::MakeLTRB(10, 10, 60, 60));
auto transform2 =
std::make_shared<TransformLayer>(SkMatrix::Translate(20, 20));
transform2->Add(m1);
transform2->AssignOldLayer(transform1.get());
MockLayerTree t2;
t2.root()->Add(transform2);
damage = DiffLayerTree(t2, t1);
EXPECT_EQ(damage.frame_damage, SkIRect::MakeLTRB(10, 10, 70, 70));
auto transform3 =
std::make_shared<TransformLayer>(SkMatrix::Translate(20, 20));
transform3->Add(m1);
transform3->AssignOldLayer(transform2.get());
MockLayerTree t3;
t3.root()->Add(transform3);
damage = DiffLayerTree(t3, t2);
EXPECT_EQ(damage.frame_damage, SkIRect::MakeEmpty());
}
TEST_F(TransformLayerLayerDiffTest, TransformNested) {
auto path1 = SkPath().addRect(SkRect::MakeLTRB(0, 0, 50, 50));
auto m1 = CreateContainerLayer(std::make_shared<MockLayer>(path1));
auto m2 = CreateContainerLayer(std::make_shared<MockLayer>(path1));
auto m3 = CreateContainerLayer(std::make_shared<MockLayer>(path1));
auto transform1 = std::make_shared<TransformLayer>(SkMatrix::Scale(2.0, 2.0));
auto transform1_1 =
std::make_shared<TransformLayer>(SkMatrix::Translate(10, 10));
transform1_1->Add(m1);
transform1->Add(transform1_1);
auto transform1_2 =
std::make_shared<TransformLayer>(SkMatrix::Translate(100, 100));
transform1_2->Add(m2);
transform1->Add(transform1_2);
auto transform1_3 =
std::make_shared<TransformLayer>(SkMatrix::Translate(200, 200));
transform1_3->Add(m3);
transform1->Add(transform1_3);
MockLayerTree l1;
l1.root()->Add(transform1);
auto damage = DiffLayerTree(l1, MockLayerTree());
EXPECT_EQ(damage.frame_damage, SkIRect::MakeLTRB(20, 20, 500, 500));
auto transform2 = std::make_shared<TransformLayer>(SkMatrix::Scale(2.0, 2.0));
auto transform2_1 =
std::make_shared<TransformLayer>(SkMatrix::Translate(10, 10));
transform2_1->Add(m1);
transform2_1->AssignOldLayer(transform1_1.get());
transform2->Add(transform2_1);
// Offset 1px from transform1_2 so that they're not the same
auto transform2_2 =
std::make_shared<TransformLayer>(SkMatrix::Translate(100, 101));
transform2_2->Add(m2);
transform2_2->AssignOldLayer(transform1_2.get());
transform2->Add(transform2_2);
auto transform2_3 =
std::make_shared<TransformLayer>(SkMatrix::Translate(200, 200));
transform2_3->Add(m3);
transform2_3->AssignOldLayer(transform1_3.get());
transform2->Add(transform2_3);
MockLayerTree l2;
l2.root()->Add(transform2);
damage = DiffLayerTree(l2, l1);
// transform2 has not transform1 assigned as old layer, so it should be
// invalidated completely
EXPECT_EQ(damage.frame_damage, SkIRect::MakeLTRB(20, 20, 500, 500));
// now diff the tree properly, the only difference being transform2_2 and
// transform_2_1
transform2->AssignOldLayer(transform1.get());
damage = DiffLayerTree(l2, l1);
EXPECT_EQ(damage.frame_damage, SkIRect::MakeLTRB(200, 200, 300, 302));
}
} // namespace testing
} // namespace flutter
| engine/flow/layers/transform_layer_unittests.cc/0 | {
"file_path": "engine/flow/layers/transform_layer_unittests.cc",
"repo_id": "engine",
"token_count": 8848
} | 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.
#include "flutter/flow/stopwatch.h"
namespace flutter {
static const size_t kMaxSamples = 120;
Stopwatch::Stopwatch(const RefreshRateUpdater& updater)
: refresh_rate_updater_(updater), start_(fml::TimePoint::Now()) {
const fml::TimeDelta delta = fml::TimeDelta::Zero();
laps_.resize(kMaxSamples, delta);
}
Stopwatch::~Stopwatch() = default;
FixedRefreshRateStopwatch::FixedRefreshRateStopwatch(
fml::Milliseconds frame_budget)
: Stopwatch(fixed_delegate_), fixed_delegate_(frame_budget) {}
FixedRefreshRateUpdater::FixedRefreshRateUpdater(
fml::Milliseconds fixed_frame_budget)
: fixed_frame_budget_(fixed_frame_budget) {}
void Stopwatch::Start() {
start_ = fml::TimePoint::Now();
current_sample_ = (current_sample_ + 1) % kMaxSamples;
}
void Stopwatch::Stop() {
laps_[current_sample_] = fml::TimePoint::Now() - start_;
}
void Stopwatch::SetLapTime(const fml::TimeDelta& delta) {
current_sample_ = (current_sample_ + 1) % kMaxSamples;
laps_[current_sample_] = delta;
}
const fml::TimeDelta& Stopwatch::LastLap() const {
return laps_[(current_sample_ - 1) % kMaxSamples];
}
const fml::TimeDelta& Stopwatch::GetLap(size_t index) const {
return laps_[index];
}
size_t Stopwatch::GetLapsCount() const {
return laps_.size();
}
size_t Stopwatch::GetCurrentSample() const {
return current_sample_;
}
double StopwatchVisualizer::UnitFrameInterval(double raster_time_ms) const {
return raster_time_ms / frame_budget_.count();
}
double StopwatchVisualizer::UnitHeight(double raster_time_ms,
double max_unit_interval) const {
double unit_height = UnitFrameInterval(raster_time_ms) / max_unit_interval;
if (unit_height > 1.0) {
unit_height = 1.0;
}
return unit_height;
}
fml::TimeDelta Stopwatch::MaxDelta() const {
fml::TimeDelta max_delta;
for (size_t i = 0; i < kMaxSamples; i++) {
if (laps_[i] > max_delta) {
max_delta = laps_[i];
}
}
return max_delta;
}
fml::TimeDelta Stopwatch::AverageDelta() const {
fml::TimeDelta sum; // default to 0
for (size_t i = 0; i < kMaxSamples; i++) {
sum = sum + laps_[i];
}
return sum / kMaxSamples;
}
fml::Milliseconds Stopwatch::GetFrameBudget() const {
return refresh_rate_updater_.GetFrameBudget();
}
fml::Milliseconds FixedRefreshRateUpdater::GetFrameBudget() const {
return fixed_frame_budget_;
}
} // namespace flutter
| engine/flow/stopwatch.cc/0 | {
"file_path": "engine/flow/stopwatch.cc",
"repo_id": "engine",
"token_count": 958
} | 163 |
// 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_TESTING_GL_CONTEXT_SWITCH_TEST_H_
#define FLUTTER_FLOW_TESTING_GL_CONTEXT_SWITCH_TEST_H_
#include "flutter/common/graphics/gl_context_switch.h"
#include "gtest/gtest.h"
namespace flutter {
namespace testing {
//------------------------------------------------------------------------------
/// The renderer context used for testing
class TestSwitchableGLContext : public SwitchableGLContext {
public:
explicit TestSwitchableGLContext(int context);
~TestSwitchableGLContext() override;
bool SetCurrent() override;
bool RemoveCurrent() override;
int GetContext();
static int GetCurrentContext();
//------------------------------------------------------------------------------
/// Set the current context
///
/// This is to mimic how other programs outside flutter sets the context.
static void SetCurrentContext(int context);
private:
int context_;
FML_DISALLOW_COPY_AND_ASSIGN(TestSwitchableGLContext);
};
} // namespace testing
} // namespace flutter
#endif // FLUTTER_FLOW_TESTING_GL_CONTEXT_SWITCH_TEST_H_
| engine/flow/testing/gl_context_switch_test.h/0 | {
"file_path": "engine/flow/testing/gl_context_switch_test.h",
"repo_id": "engine",
"token_count": 348
} | 164 |
{
"configVersion": 2,
"packages": [
{
"name": "flutter_frontend_fixtures",
"rootUri": "../",
"packageUri": "lib",
"languageVersion": "2.12"
}
]
}
| engine/flutter_frontend_server/test/fixtures/.dart_tool/package_config.json/0 | {
"file_path": "engine/flutter_frontend_server/test/fixtures/.dart_tool/package_config.json",
"repo_id": "engine",
"token_count": 133
} | 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 <unordered_map>
#include "flutter/fml/container.h"
#include "gtest/gtest.h"
namespace fml {
namespace {
TEST(ContainerTest, MapEraseIf) {
std::unordered_map<int, int> map = {{0, 1}, {2, 3}, {4, 5}};
fml::erase_if(map, [](std::unordered_map<int, int>::iterator it) {
return it->first == 0 || it->second == 5;
});
EXPECT_EQ(map.size(), 1u);
EXPECT_TRUE(map.find(2) != map.end());
}
} // namespace
} // namespace fml
| engine/fml/container_unittests.cc/0 | {
"file_path": "engine/fml/container_unittests.cc",
"repo_id": "engine",
"token_count": 233
} | 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.
#ifndef FLUTTER_FML_HEX_CODEC_H_
#define FLUTTER_FML_HEX_CODEC_H_
#include <string_view>
namespace fml {
std::string HexEncode(std::string_view input);
} // namespace fml
#endif // FLUTTER_FML_HEX_CODEC_H_
| engine/fml/hex_codec.h/0 | {
"file_path": "engine/fml/hex_codec.h",
"repo_id": "engine",
"token_count": 141
} | 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.
#ifndef FLUTTER_FML_MATH_H_
#define FLUTTER_FML_MATH_H_
namespace flutter {
namespace math {
// e
constexpr float kE = 2.7182818284590452354;
// log_2 e
constexpr float kLog2E = 1.4426950408889634074;
// log_10 e
constexpr float kLog10E = 0.43429448190325182765;
// log_e 2
constexpr float kLogE2 = 0.69314718055994530942;
// log_e 10
constexpr float kLogE10 = 2.30258509299404568402;
// pi
constexpr float kPi = 3.14159265358979323846;
// pi/2
constexpr float kPiOver2 = 1.57079632679489661923;
// pi/4
constexpr float kPiOver4 = 0.78539816339744830962;
// 1/pi
constexpr float k1OverPi = 0.31830988618379067154;
// 2/pi
constexpr float k2OverPi = 0.63661977236758134308;
// 2/sqrt(pi)
constexpr float k2OverSqrtPi = 1.12837916709551257390;
// sqrt(2)
constexpr float kSqrt2 = 1.41421356237309504880;
// 1/sqrt(2)
constexpr float k1OverSqrt2 = 0.70710678118654752440;
} // namespace math
} // namespace flutter
#endif // FLUTTER_FML_MATH_H_
| engine/fml/math.h/0 | {
"file_path": "engine/fml/math.h",
"repo_id": "engine",
"token_count": 470
} | 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.
#include "flutter/fml/message_loop.h"
#include <memory>
#include <utility>
#include "flutter/fml/memory/ref_counted.h"
#include "flutter/fml/memory/ref_ptr.h"
#include "flutter/fml/message_loop_impl.h"
#include "flutter/fml/task_runner.h"
namespace fml {
static thread_local std::unique_ptr<MessageLoop> tls_message_loop;
MessageLoop& MessageLoop::GetCurrent() {
auto* loop = tls_message_loop.get();
FML_CHECK(loop != nullptr)
<< "MessageLoop::EnsureInitializedForCurrentThread was not called on "
"this thread prior to message loop use.";
return *loop;
}
void MessageLoop::EnsureInitializedForCurrentThread() {
if (tls_message_loop.get() != nullptr) {
// Already initialized.
return;
}
tls_message_loop.reset(new MessageLoop());
}
bool MessageLoop::IsInitializedForCurrentThread() {
return tls_message_loop.get() != nullptr;
}
MessageLoop::MessageLoop()
: loop_(MessageLoopImpl::Create()),
task_runner_(fml::MakeRefCounted<fml::TaskRunner>(loop_)) {
FML_CHECK(loop_);
FML_CHECK(task_runner_);
}
MessageLoop::~MessageLoop() = default;
void MessageLoop::Run() {
loop_->DoRun();
}
void MessageLoop::Terminate() {
loop_->DoTerminate();
}
fml::RefPtr<fml::TaskRunner> MessageLoop::GetTaskRunner() const {
return task_runner_;
}
fml::RefPtr<MessageLoopImpl> MessageLoop::GetLoopImpl() const {
return loop_;
}
void MessageLoop::AddTaskObserver(intptr_t key, const fml::closure& callback) {
loop_->AddTaskObserver(key, callback);
}
void MessageLoop::RemoveTaskObserver(intptr_t key) {
loop_->RemoveTaskObserver(key);
}
void MessageLoop::RunExpiredTasksNow() {
loop_->RunExpiredTasksNow();
}
TaskQueueId MessageLoop::GetCurrentTaskQueueId() {
auto* loop = tls_message_loop.get();
FML_CHECK(loop != nullptr)
<< "MessageLoop::EnsureInitializedForCurrentThread was not called on "
"this thread prior to message loop use.";
return loop->GetLoopImpl()->GetTaskQueueId();
}
} // namespace fml
| engine/fml/message_loop.cc/0 | {
"file_path": "engine/fml/message_loop.cc",
"repo_id": "engine",
"token_count": 742
} | 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/fml/platform/android/jni_util.h"
#include <sys/prctl.h>
#include <memory>
#include <string>
#include "flutter/fml/logging.h"
#include "flutter/fml/string_conversion.h"
namespace fml {
namespace jni {
static JavaVM* g_jvm = nullptr;
#define ASSERT_NO_EXCEPTION() FML_CHECK(env->ExceptionCheck() == JNI_FALSE);
struct JNIDetach {
~JNIDetach() { DetachFromVM(); }
};
// Thread-local object that will detach from JNI during thread shutdown;
static thread_local std::unique_ptr<JNIDetach> tls_jni_detach;
void InitJavaVM(JavaVM* vm) {
FML_DCHECK(g_jvm == nullptr);
g_jvm = vm;
}
JNIEnv* AttachCurrentThread() {
FML_DCHECK(g_jvm != nullptr)
<< "Trying to attach to current thread without calling InitJavaVM first.";
JNIEnv* env = nullptr;
if (g_jvm->GetEnv(reinterpret_cast<void**>(&env), JNI_VERSION_1_4) ==
JNI_OK) {
return env;
}
JavaVMAttachArgs args;
args.version = JNI_VERSION_1_4;
args.group = nullptr;
// 16 is the maximum size for thread names on Android.
char thread_name[16];
int err = prctl(PR_GET_NAME, thread_name);
if (err < 0) {
args.name = nullptr;
} else {
args.name = thread_name;
}
[[maybe_unused]] jint ret = g_jvm->AttachCurrentThread(&env, &args);
FML_DCHECK(JNI_OK == ret);
FML_DCHECK(tls_jni_detach.get() == nullptr);
tls_jni_detach.reset(new JNIDetach());
return env;
}
void DetachFromVM() {
if (g_jvm) {
g_jvm->DetachCurrentThread();
}
}
std::string JavaStringToString(JNIEnv* env, jstring str) {
if (env == nullptr || str == nullptr) {
return "";
}
const jchar* chars = env->GetStringChars(str, NULL);
if (chars == nullptr) {
return "";
}
std::u16string u16_string(reinterpret_cast<const char16_t*>(chars),
env->GetStringLength(str));
std::string u8_string = Utf16ToUtf8(u16_string);
env->ReleaseStringChars(str, chars);
ASSERT_NO_EXCEPTION();
return u8_string;
}
ScopedJavaLocalRef<jstring> StringToJavaString(JNIEnv* env,
const std::string& u8_string) {
std::u16string u16_string = Utf8ToUtf16(u8_string);
auto result = ScopedJavaLocalRef<jstring>(
env, env->NewString(reinterpret_cast<const jchar*>(u16_string.data()),
u16_string.length()));
ASSERT_NO_EXCEPTION();
return result;
}
std::vector<std::string> StringArrayToVector(JNIEnv* env, jobjectArray array) {
std::vector<std::string> out;
if (env == nullptr || array == nullptr) {
return out;
}
jsize length = env->GetArrayLength(array);
if (length == -1) {
return out;
}
out.resize(length);
for (jsize i = 0; i < length; ++i) {
ScopedJavaLocalRef<jstring> java_string(
env, static_cast<jstring>(env->GetObjectArrayElement(array, i)));
out[i] = JavaStringToString(env, java_string.obj());
}
return out;
}
std::vector<std::string> StringListToVector(JNIEnv* env, jobject list) {
std::vector<std::string> out;
if (env == nullptr || list == nullptr) {
return out;
}
ScopedJavaLocalRef<jclass> list_clazz(env, env->FindClass("java/util/List"));
FML_DCHECK(!list_clazz.is_null());
jmethodID list_get =
env->GetMethodID(list_clazz.obj(), "get", "(I)Ljava/lang/Object;");
jmethodID list_size = env->GetMethodID(list_clazz.obj(), "size", "()I");
jint size = env->CallIntMethod(list, list_size);
if (size == 0) {
return out;
}
out.resize(size);
for (jint i = 0; i < size; ++i) {
ScopedJavaLocalRef<jstring> java_string(
env, static_cast<jstring>(env->CallObjectMethod(list, list_get, i)));
out[i] = JavaStringToString(env, java_string.obj());
}
return out;
}
ScopedJavaLocalRef<jobjectArray> VectorToStringArray(
JNIEnv* env,
const std::vector<std::string>& vector) {
FML_DCHECK(env);
ScopedJavaLocalRef<jclass> string_clazz(env,
env->FindClass("java/lang/String"));
FML_DCHECK(!string_clazz.is_null());
jobjectArray java_array =
env->NewObjectArray(vector.size(), string_clazz.obj(), NULL);
ASSERT_NO_EXCEPTION();
for (size_t i = 0; i < vector.size(); ++i) {
ScopedJavaLocalRef<jstring> item = StringToJavaString(env, vector[i]);
env->SetObjectArrayElement(java_array, i, item.obj());
}
return ScopedJavaLocalRef<jobjectArray>(env, java_array);
}
ScopedJavaLocalRef<jobjectArray> VectorToBufferArray(
JNIEnv* env,
const std::vector<std::vector<uint8_t>>& vector) {
FML_DCHECK(env);
ScopedJavaLocalRef<jclass> byte_buffer_clazz(
env, env->FindClass("java/nio/ByteBuffer"));
FML_DCHECK(!byte_buffer_clazz.is_null());
jobjectArray java_array =
env->NewObjectArray(vector.size(), byte_buffer_clazz.obj(), NULL);
ASSERT_NO_EXCEPTION();
for (size_t i = 0; i < vector.size(); ++i) {
uint8_t* data = const_cast<uint8_t*>(vector[i].data());
ScopedJavaLocalRef<jobject> item(
env, env->NewDirectByteBuffer(reinterpret_cast<void*>(data),
vector[i].size()));
env->SetObjectArrayElement(java_array, i, item.obj());
}
return ScopedJavaLocalRef<jobjectArray>(env, java_array);
}
bool HasException(JNIEnv* env) {
return env->ExceptionCheck() != JNI_FALSE;
}
bool ClearException(JNIEnv* env, bool silent) {
if (!HasException(env)) {
return false;
}
if (!silent) {
env->ExceptionDescribe();
}
env->ExceptionClear();
return true;
}
bool CheckException(JNIEnv* env) {
if (!HasException(env)) {
return true;
}
jthrowable exception = env->ExceptionOccurred();
env->ExceptionClear();
FML_LOG(ERROR) << fml::jni::GetJavaExceptionInfo(env, exception);
env->DeleteLocalRef(exception);
return false;
}
std::string GetJavaExceptionInfo(JNIEnv* env, jthrowable java_throwable) {
ScopedJavaLocalRef<jclass> throwable_clazz(
env, env->FindClass("java/lang/Throwable"));
jmethodID throwable_printstacktrace = env->GetMethodID(
throwable_clazz.obj(), "printStackTrace", "(Ljava/io/PrintStream;)V");
// Create an instance of ByteArrayOutputStream.
ScopedJavaLocalRef<jclass> bytearray_output_stream_clazz(
env, env->FindClass("java/io/ByteArrayOutputStream"));
jmethodID bytearray_output_stream_constructor =
env->GetMethodID(bytearray_output_stream_clazz.obj(), "<init>", "()V");
jmethodID bytearray_output_stream_tostring = env->GetMethodID(
bytearray_output_stream_clazz.obj(), "toString", "()Ljava/lang/String;");
ScopedJavaLocalRef<jobject> bytearray_output_stream(
env, env->NewObject(bytearray_output_stream_clazz.obj(),
bytearray_output_stream_constructor));
// Create an instance of PrintStream.
ScopedJavaLocalRef<jclass> printstream_clazz(
env, env->FindClass("java/io/PrintStream"));
jmethodID printstream_constructor = env->GetMethodID(
printstream_clazz.obj(), "<init>", "(Ljava/io/OutputStream;)V");
ScopedJavaLocalRef<jobject> printstream(
env, env->NewObject(printstream_clazz.obj(), printstream_constructor,
bytearray_output_stream.obj()));
// Call Throwable.printStackTrace(PrintStream)
env->CallVoidMethod(java_throwable, throwable_printstacktrace,
printstream.obj());
// Call ByteArrayOutputStream.toString()
ScopedJavaLocalRef<jstring> exception_string(
env,
static_cast<jstring>(env->CallObjectMethod(
bytearray_output_stream.obj(), bytearray_output_stream_tostring)));
if (ClearException(env)) {
return "Java OOM'd in exception handling, check logcat";
}
return JavaStringToString(env, exception_string.obj());
}
} // namespace jni
} // namespace fml
| engine/fml/platform/android/jni_util.cc/0 | {
"file_path": "engine/fml/platform/android/jni_util.cc",
"repo_id": "engine",
"token_count": 3165
} | 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 "flutter/fml/paths.h"
#include <Foundation/Foundation.h>
#include "flutter/fml/file.h"
namespace fml {
namespace paths {
std::pair<bool, std::string> GetExecutablePath() {
@autoreleasepool {
return {true, [NSBundle mainBundle].executablePath.UTF8String};
}
}
fml::UniqueFD GetCachesDirectory() {
@autoreleasepool {
auto items = [[NSFileManager defaultManager] URLsForDirectory:NSCachesDirectory
inDomains:NSUserDomainMask];
if (items.count == 0) {
return {};
}
return OpenDirectory(items[0].fileSystemRepresentation, false, FilePermission::kRead);
}
}
} // namespace paths
} // namespace fml
| engine/fml/platform/darwin/paths_darwin.mm/0 | {
"file_path": "engine/fml/platform/darwin/paths_darwin.mm",
"repo_id": "engine",
"token_count": 333
} | 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.
#ifndef FLUTTER_FML_PLATFORM_DARWIN_WEAK_NSOBJECT_H_
#define FLUTTER_FML_PLATFORM_DARWIN_WEAK_NSOBJECT_H_
#import <Foundation/Foundation.h>
#import <objc/runtime.h>
#include <stdlib.h>
#include <utility>
#include "flutter/fml/compiler_specific.h"
#include "flutter/fml/logging.h"
#include "flutter/fml/memory/ref_counted.h"
#include "flutter/fml/memory/ref_ptr.h"
#include "flutter/fml/memory/thread_checker.h"
namespace debug {
struct DebugThreadChecker {
FML_DECLARE_THREAD_CHECKER(checker);
};
} // namespace debug
// WeakNSObject<> is patterned after scoped_nsobject<>, but instead of
// maintaining ownership of an NSObject subclass object, it will nil itself out
// when the object is deallocated.
//
// WeakNSProtocol<> has the same behavior as WeakNSObject, but can be used
// with protocols.
//
// Example usage (fml::WeakNSObject<T>):
// WeakNSObjectFactory factory([[Foo alloc] init]);
// WeakNSObject<Foo> weak_foo; // No pointer
// weak_foo = factory.GetWeakNSObject() // Now a weak reference is kept.
// [weak_foo description]; // Returns [foo description].
// foo.reset(); // The reference is released.
// [weak_foo description]; // Returns nil, as weak_foo is pointing to nil.
//
//
// Implementation wise a WeakNSObject keeps a reference to a refcounted
// WeakContainer. There is one unique instance of a WeakContainer per watched
// NSObject, this relationship is maintained via the ObjectiveC associated
// object API, indirectly via an ObjectiveC CRBWeakNSProtocolSentinel class.
//
// Threading restrictions:
// - Several WeakNSObject pointing to the same underlying object must all be
// created and dereferenced on the same thread;
// - thread safety is enforced by the implementation, except:
// - it is allowed to destroy a WeakNSObject on any thread;
// - the implementation assumes that the tracked object will be released on the
// same thread that the WeakNSObject is created on.
//
// fml specifics:
// WeakNSObjects can only originate from a |WeakNSObjectFactory| (see below), though WeakNSObjects
// are copyable and movable.
//
// WeakNSObjects are not in general thread-safe. They may only be *used* on
// a single thread, namely the same thread as the "originating"
// |WeakNSObjectFactory| (which can invalidate the WeakNSObjects that it
// generates).
//
// However, WeakNSObject may be passed to other threads, reset on other
// threads, or destroyed on other threads. They may also be reassigned on
// other threads (in which case they should then only be used on the thread
// corresponding to the new "originating" |WeakNSObjectFactory|).
namespace fml {
// Forward declaration, so |WeakNSObject<NST>| can friend it.
template <typename NST>
class WeakNSObjectFactory;
// WeakContainer keeps a weak pointer to an object and clears it when it
// receives nullify() from the object's sentinel.
class WeakContainer : public fml::RefCountedThreadSafe<WeakContainer> {
public:
explicit WeakContainer(id object, const debug::DebugThreadChecker& checker);
id object() {
CheckThreadSafety();
return object_;
}
void nullify() { object_ = nil; }
private:
friend fml::RefCountedThreadSafe<WeakContainer>;
~WeakContainer();
__unsafe_unretained id object_;
void CheckThreadSafety() const { FML_DCHECK_CREATION_THREAD_IS_CURRENT(checker_.checker); }
// checker_ is unused in non-unopt mode.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
debug::DebugThreadChecker checker_;
#pragma clang diagnostic pop
};
} // namespace fml
// Sentinel for observing the object contained in the weak pointer. The object
// will be deleted when the weak object is deleted and will notify its
// container.
@interface CRBWeakNSProtocolSentinel : NSObject
// Return the only associated container for this object. There can be only one.
// Will return null if object is nil .
+ (fml::RefPtr<fml::WeakContainer>)containerForObject:(id)object
threadChecker:(debug::DebugThreadChecker)checker;
@end
namespace fml {
// Base class for all WeakNSObject derivatives.
template <typename NST>
class WeakNSProtocol {
public:
WeakNSProtocol() = default;
// A WeakNSProtocol object can be copied on one thread and used on
// another.
WeakNSProtocol(const WeakNSProtocol<NST>& that)
: container_(that.container_), checker_(that.checker_) {}
~WeakNSProtocol() = default;
void reset() {
container_ = [CRBWeakNSProtocolSentinel containerForObject:nil threadChecker:checker_];
}
NST get() const {
CheckThreadSafety();
if (!container_.get()) {
return nil;
}
return container_->object();
}
WeakNSProtocol& operator=(const WeakNSProtocol<NST>& that) {
// A WeakNSProtocol object can be copied on one thread and used on
// another.
container_ = that.container_;
checker_ = that.checker_;
return *this;
}
bool operator==(NST that) const {
CheckThreadSafety();
return get() == that;
}
bool operator!=(NST that) const {
CheckThreadSafety();
return get() != that;
}
// This appears to be intentional to allow truthiness?
// NOLINTNEXTLINE(google-explicit-constructor)
operator NST() const {
CheckThreadSafety();
return get();
}
protected:
friend class WeakNSObjectFactory<NST>;
explicit WeakNSProtocol(RefPtr<fml::WeakContainer> container,
const debug::DebugThreadChecker& checker)
: container_(std::move(container)), checker_(checker) {}
// Refecounted reference to the container tracking the ObjectiveC object this
// class encapsulates.
RefPtr<fml::WeakContainer> container_;
void CheckThreadSafety() const { FML_DCHECK_CREATION_THREAD_IS_CURRENT(checker_.checker); }
debug::DebugThreadChecker checker_;
};
// Free functions
template <class NST>
bool operator==(NST p1, const WeakNSProtocol<NST>& p2) {
return p1 == p2.get();
}
template <class NST>
bool operator!=(NST p1, const WeakNSProtocol<NST>& p2) {
return p1 != p2.get();
}
template <typename NST>
class WeakNSObject : public WeakNSProtocol<NST*> {
public:
WeakNSObject() = default;
WeakNSObject(const WeakNSObject<NST>& that) : WeakNSProtocol<NST*>(that) {}
WeakNSObject& operator=(const WeakNSObject<NST>& that) {
WeakNSProtocol<NST*>::operator=(that);
return *this;
}
private:
friend class WeakNSObjectFactory<NST>;
explicit WeakNSObject(RefPtr<fml::WeakContainer> container, debug::DebugThreadChecker checker)
: WeakNSProtocol<NST*>(container, checker) {}
};
// Specialization to make WeakNSObject<id> work.
template <>
class WeakNSObject<id> : public WeakNSProtocol<id> {
public:
WeakNSObject() = default;
WeakNSObject(const WeakNSObject<id>& that) : WeakNSProtocol<id>(that) {}
WeakNSObject& operator=(const WeakNSObject<id>& that) {
WeakNSProtocol<id>::operator=(that);
return *this;
}
private:
friend class WeakNSObjectFactory<id>;
explicit WeakNSObject(const RefPtr<fml::WeakContainer>& container,
const debug::DebugThreadChecker& checker)
: WeakNSProtocol<id>(container, checker) {}
};
// Class that produces (valid) |WeakNSObject<NST>|s. Typically, this is used as a
// member variable of |NST| (preferably the last one -- see below), and |NST|'s
// methods control how WeakNSObjects to it are vended. This class is not
// thread-safe, and should only be created, destroyed and used on a single
// thread.
//
// Example:
//
// ```objc
// @implementation Controller {
// std::unique_ptr<fml::WeakNSObjectFactory<Controller>> _weakFactory;
// }
//
// - (instancetype)init {
// self = [super init];
// _weakFactory = std::make_unique<fml::WeakNSObjectFactory<Controller>>(self)
// }
// - (fml::WeakNSObject<Controller>) {
// return _weakFactory->GetWeakNSObject()
// }
//
// @end
// ```
template <typename NST>
class WeakNSObjectFactory {
public:
explicit WeakNSObjectFactory(NST* object) {
FML_DCHECK(object);
container_ = [CRBWeakNSProtocolSentinel containerForObject:object threadChecker:checker_];
}
~WeakNSObjectFactory() { CheckThreadSafety(); }
// Gets a new weak pointer, which will be valid until this object is
// destroyed.e
WeakNSObject<NST> GetWeakNSObject() const { return WeakNSObject<NST>(container_, checker_); }
private:
// Refecounted reference to the container tracking the ObjectiveC object this
// class encapsulates.
RefPtr<fml::WeakContainer> container_;
void CheckThreadSafety() const { FML_DCHECK_CREATION_THREAD_IS_CURRENT(checker_.checker); }
debug::DebugThreadChecker checker_;
FML_DISALLOW_COPY_AND_ASSIGN(WeakNSObjectFactory);
};
} // namespace fml
#endif // FLUTTER_FML_PLATFORM_DARWIN_WEAK_NSOBJECT_H_
| engine/fml/platform/darwin/weak_nsobject.h/0 | {
"file_path": "engine/fml/platform/darwin/weak_nsobject.h",
"repo_id": "engine",
"token_count": 2882
} | 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.
#include <unistd.h>
#include "flutter/fml/paths.h"
namespace fml {
namespace paths {
std::pair<bool, std::string> GetExecutablePath() {
const int path_size = 255;
char path[path_size] = {0};
auto read_size = ::readlink("/proc/self/exe", path, path_size);
if (read_size == -1) {
return {false, ""};
}
return {true, std::string{path, static_cast<size_t>(read_size)}};
}
fml::UniqueFD GetCachesDirectory() {
// Unsupported on this platform.
return {};
}
} // namespace paths
} // namespace fml
| engine/fml/platform/linux/paths_linux.cc/0 | {
"file_path": "engine/fml/platform/linux/paths_linux.cc",
"repo_id": "engine",
"token_count": 239
} | 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.
#include "flutter/fml/file.h"
#include <Fileapi.h>
#include "flutter/fml/platform/win/wstring_conversion.h"
#include "gtest/gtest.h"
namespace fml {
namespace testing {
TEST(FileWin, OpenDirectoryShare) {
fml::ScopedTemporaryDirectory temp_dir;
auto temp_path = Utf8ToWideString({temp_dir.path()});
fml::UniqueFD handle(
CreateFile(temp_path.c_str(), GENERIC_WRITE,
FILE_SHARE_READ | FILE_SHARE_WRITE, nullptr, OPEN_EXISTING,
FILE_ATTRIBUTE_NORMAL | FILE_FLAG_BACKUP_SEMANTICS, nullptr));
ASSERT_TRUE(handle.is_valid());
// Check that fml::OpenDirectory(FilePermission::kRead) works with a
// directory that has also been opened for writing.
auto dir = fml::OpenDirectory(temp_dir.path().c_str(), false,
fml::FilePermission::kRead);
ASSERT_TRUE(dir.is_valid());
}
} // namespace testing
} // namespace fml | engine/fml/platform/win/file_win_unittests.cc/0 | {
"file_path": "engine/fml/platform/win/file_win_unittests.cc",
"repo_id": "engine",
"token_count": 414
} | 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.
#define FML_USED_ON_EMBEDDER
#include "flutter/fml/shared_thread_merger.h"
#include <algorithm>
#include <set>
namespace fml {
SharedThreadMerger::SharedThreadMerger(fml::TaskQueueId owner,
fml::TaskQueueId subsumed)
: owner_(owner),
subsumed_(subsumed),
task_queues_(fml::MessageLoopTaskQueues::GetInstance()),
enabled_(true) {}
bool SharedThreadMerger::MergeWithLease(RasterThreadMergerId caller,
size_t lease_term) {
FML_DCHECK(lease_term > 0) << "lease_term should be positive.";
std::scoped_lock lock(mutex_);
if (IsMergedUnSafe()) {
return true;
}
bool success = task_queues_->Merge(owner_, subsumed_);
FML_CHECK(success) << "Unable to merge the raster and platform threads.";
// Save the lease term
lease_term_by_caller_[caller] = lease_term;
return success;
}
bool SharedThreadMerger::UnMergeNowUnSafe() {
FML_CHECK(IsAllLeaseTermsZeroUnSafe())
<< "all lease term records must be zero before calling "
"UnMergeNowUnSafe()";
bool success = task_queues_->Unmerge(owner_, subsumed_);
FML_CHECK(success) << "Unable to un-merge the raster and platform threads.";
return success;
}
bool SharedThreadMerger::UnMergeNowIfLastOne(RasterThreadMergerId caller) {
std::scoped_lock lock(mutex_);
lease_term_by_caller_.erase(caller);
if (lease_term_by_caller_.empty() || IsAllLeaseTermsZeroUnSafe()) {
return UnMergeNowUnSafe();
}
return true;
}
bool SharedThreadMerger::DecrementLease(RasterThreadMergerId caller) {
std::scoped_lock lock(mutex_);
auto entry = lease_term_by_caller_.find(caller);
bool exist = entry != lease_term_by_caller_.end();
if (exist) {
std::atomic_size_t& lease_term_ref = entry->second;
FML_CHECK(lease_term_ref > 0)
<< "lease_term should always be positive when merged, lease_term="
<< lease_term_ref;
lease_term_ref--;
} else {
FML_LOG(WARNING) << "The caller does not exist when calling "
"DecrementLease(), ignored. This may happens after "
"caller is erased in UnMergeNowIfLastOne(). caller="
<< caller;
}
if (IsAllLeaseTermsZeroUnSafe()) {
// Unmerge now because lease_term_ decreased to zero.
UnMergeNowUnSafe();
return true;
}
return false;
}
void SharedThreadMerger::ExtendLeaseTo(RasterThreadMergerId caller,
size_t lease_term) {
FML_DCHECK(lease_term > 0) << "lease_term should be positive.";
std::scoped_lock lock(mutex_);
FML_DCHECK(IsMergedUnSafe())
<< "should be merged state when calling this method";
lease_term_by_caller_[caller] = lease_term;
}
bool SharedThreadMerger::IsMergedUnSafe() const {
return !IsAllLeaseTermsZeroUnSafe();
}
bool SharedThreadMerger::IsEnabledUnSafe() const {
return enabled_;
}
void SharedThreadMerger::SetEnabledUnSafe(bool enabled) {
enabled_ = enabled;
}
bool SharedThreadMerger::IsAllLeaseTermsZeroUnSafe() const {
return std::all_of(lease_term_by_caller_.begin(), lease_term_by_caller_.end(),
[&](const auto& item) { return item.second == 0; });
}
} // namespace fml
| engine/fml/shared_thread_merger.cc/0 | {
"file_path": "engine/fml/shared_thread_merger.cc",
"repo_id": "engine",
"token_count": 1348
} | 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/synchronization/shared_mutex_std.h"
namespace fml {
SharedMutex* SharedMutex::Create() {
return new SharedMutexStd();
}
void SharedMutexStd::Lock() {
mutex_.lock();
}
void SharedMutexStd::LockShared() {
mutex_.lock_shared();
}
void SharedMutexStd::Unlock() {
mutex_.unlock();
}
void SharedMutexStd::UnlockShared() {
mutex_.unlock_shared();
}
} // namespace fml
| engine/fml/synchronization/shared_mutex_std.cc/0 | {
"file_path": "engine/fml/synchronization/shared_mutex_std.cc",
"repo_id": "engine",
"token_count": 201
} | 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.
#ifndef FLUTTER_FML_THREAD_H_
#define FLUTTER_FML_THREAD_H_
#include <atomic>
#include <functional>
#include <memory>
#include <string>
#include "flutter/fml/macros.h"
#include "flutter/fml/task_runner.h"
namespace fml {
class ThreadHandle;
class Thread {
public:
/// Valid values for priority of Thread.
enum class ThreadPriority : int {
/// Suitable for threads that shouldn't disrupt high priority work.
kBackground,
/// Default priority level.
kNormal,
/// Suitable for threads which generate data for the display.
kDisplay,
/// Suitable for thread which raster data.
kRaster,
};
/// The ThreadConfig is the thread info include thread name, thread priority.
struct ThreadConfig {
ThreadConfig(const std::string& name, ThreadPriority priority)
: name(name), priority(priority) {}
explicit ThreadConfig(const std::string& name)
: ThreadConfig(name, ThreadPriority::kNormal) {}
ThreadConfig() : ThreadConfig("", ThreadPriority::kNormal) {}
std::string name;
ThreadPriority priority;
};
using ThreadConfigSetter = std::function<void(const ThreadConfig&)>;
explicit Thread(const std::string& name = "");
explicit Thread(const ThreadConfigSetter& setter,
const ThreadConfig& config = ThreadConfig());
~Thread();
fml::RefPtr<fml::TaskRunner> GetTaskRunner() const;
void Join();
static void SetCurrentThreadName(const ThreadConfig& config);
static size_t GetDefaultStackSize();
private:
std::unique_ptr<ThreadHandle> thread_;
fml::RefPtr<fml::TaskRunner> task_runner_;
std::atomic_bool joined_;
FML_DISALLOW_COPY_AND_ASSIGN(Thread);
};
} // namespace fml
#endif // FLUTTER_FML_THREAD_H_
| engine/fml/thread.h/0 | {
"file_path": "engine/fml/thread.h",
"repo_id": "engine",
"token_count": 616
} | 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_WAKEABLE_H_
#define FLUTTER_FML_WAKEABLE_H_
#include "flutter/fml/time/time_point.h"
namespace fml {
/// Interface over the ability to \p WakeUp a \p fml::MessageLoopImpl.
/// \see fml::MessageLoopTaskQueues
class Wakeable {
public:
virtual ~Wakeable() {}
virtual void WakeUp(fml::TimePoint time_point) = 0;
};
} // namespace fml
#endif // FLUTTER_FML_WAKEABLE_H_
| engine/fml/wakeable.h/0 | {
"file_path": "engine/fml/wakeable.h",
"repo_id": "engine",
"token_count": 196
} | 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 "impeller/aiks/paint.h"
#include <memory>
#include "impeller/entity/contents/color_source_contents.h"
#include "impeller/entity/contents/filters/color_filter_contents.h"
#include "impeller/entity/contents/filters/filter_contents.h"
#include "impeller/entity/contents/filters/gaussian_blur_filter_contents.h"
#include "impeller/entity/contents/solid_color_contents.h"
#include "impeller/entity/geometry/geometry.h"
namespace impeller {
/// A color matrix which inverts colors.
// clang-format off
constexpr ColorMatrix kColorInversion = {
.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 //
}
};
// clang-format on
std::shared_ptr<Contents> Paint::CreateContentsForGeometry(
const std::shared_ptr<Geometry>& geometry) const {
auto contents = color_source.GetContents(*this);
// Attempt to apply the color filter on the CPU first.
// Note: This is not just an optimization; some color sources rely on
// CPU-applied color filters to behave properly.
auto color_filter = GetColorFilter();
bool needs_color_filter = !!color_filter;
if (color_filter &&
contents->ApplyColorFilter(color_filter->GetCPUColorFilterProc())) {
needs_color_filter = false;
}
contents->SetGeometry(geometry);
if (mask_blur_descriptor.has_value()) {
// If there's a mask blur and we need to apply the color filter on the GPU,
// we need to be careful to only apply the color filter to the source
// colors. CreateMaskBlur is able to handle this case.
return mask_blur_descriptor->CreateMaskBlur(
contents, needs_color_filter ? color_filter : nullptr);
}
return contents;
}
std::shared_ptr<Contents> Paint::WithFilters(
std::shared_ptr<Contents> input) const {
input = WithColorFilter(input, ColorFilterContents::AbsorbOpacity::kYes);
auto image_filter =
WithImageFilter(input, Matrix(), Entity::RenderingMode::kDirect);
if (image_filter) {
input = image_filter;
}
return input;
}
std::shared_ptr<Contents> Paint::WithFiltersForSubpassTarget(
std::shared_ptr<Contents> input,
const Matrix& effect_transform) const {
auto image_filter =
WithImageFilter(input, effect_transform, Entity::RenderingMode::kSubpass);
if (image_filter) {
input = image_filter;
}
input = WithColorFilter(input, ColorFilterContents::AbsorbOpacity::kYes);
return input;
}
std::shared_ptr<Contents> Paint::WithMaskBlur(std::shared_ptr<Contents> input,
bool is_solid_color) const {
if (mask_blur_descriptor.has_value()) {
input = mask_blur_descriptor->CreateMaskBlur(FilterInput::Make(input),
is_solid_color);
}
return input;
}
std::shared_ptr<FilterContents> Paint::WithImageFilter(
const FilterInput::Variant& input,
const Matrix& effect_transform,
Entity::RenderingMode rendering_mode) const {
if (!image_filter) {
return nullptr;
}
auto filter = image_filter->WrapInput(FilterInput::Make(input));
filter->SetRenderingMode(rendering_mode);
filter->SetEffectTransform(effect_transform);
return filter;
}
std::shared_ptr<Contents> Paint::WithColorFilter(
std::shared_ptr<Contents> input,
ColorFilterContents::AbsorbOpacity absorb_opacity) const {
// Image input types will directly set their color filter,
// if any. See `TiledTextureContents.SetColorFilter`.
if (color_source.GetType() == ColorSource::Type::kImage) {
return input;
}
auto color_filter = GetColorFilter();
if (!color_filter) {
return input;
}
// Attempt to apply the color filter on the CPU first.
// Note: This is not just an optimization; some color sources rely on
// CPU-applied color filters to behave properly.
if (input->ApplyColorFilter(color_filter->GetCPUColorFilterProc())) {
return input;
}
return color_filter->WrapWithGPUColorFilter(FilterInput::Make(input),
absorb_opacity);
}
std::shared_ptr<FilterContents> Paint::MaskBlurDescriptor::CreateMaskBlur(
std::shared_ptr<TextureContents> texture_contents) const {
Scalar expand_amount = GaussianBlurFilterContents::CalculateBlurRadius(
GaussianBlurFilterContents::ScaleSigma(sigma.sigma));
texture_contents->SetSourceRect(
texture_contents->GetSourceRect().Expand(expand_amount, expand_amount));
auto mask = std::make_shared<SolidColorContents>();
mask->SetColor(Color::White());
std::optional<Rect> coverage = texture_contents->GetCoverage({});
std::shared_ptr<Geometry> geometry;
if (coverage) {
texture_contents->SetDestinationRect(
coverage.value().Expand(expand_amount, expand_amount));
geometry = Geometry::MakeRect(coverage.value());
}
mask->SetGeometry(geometry);
auto descriptor = texture_contents->GetSamplerDescriptor();
texture_contents->SetSamplerDescriptor(descriptor);
std::shared_ptr<FilterContents> blurred_mask =
FilterContents::MakeGaussianBlur(FilterInput::Make(mask), sigma, sigma,
Entity::TileMode::kDecal, style,
geometry);
return ColorFilterContents::MakeBlend(
BlendMode::kSourceIn,
{FilterInput::Make(blurred_mask), FilterInput::Make(texture_contents)});
}
std::shared_ptr<FilterContents> Paint::MaskBlurDescriptor::CreateMaskBlur(
std::shared_ptr<ColorSourceContents> color_source_contents,
const std::shared_ptr<ColorFilter>& color_filter) const {
// If it's a solid color and there is no color filter, then we can just get
// away with doing one Gaussian blur.
if (color_source_contents->IsSolidColor() && !color_filter) {
return FilterContents::MakeGaussianBlur(
FilterInput::Make(color_source_contents), sigma, sigma,
Entity::TileMode::kDecal, style, color_source_contents->GetGeometry());
}
/// 1. Create an opaque white mask of the original geometry.
auto mask = std::make_shared<SolidColorContents>();
mask->SetColor(Color::White());
mask->SetGeometry(color_source_contents->GetGeometry());
/// 2. Blur the mask.
auto blurred_mask = FilterContents::MakeGaussianBlur(
FilterInput::Make(mask), sigma, sigma, Entity::TileMode::kDecal, style,
color_source_contents->GetGeometry());
/// 3. Replace the geometry of the original color source with a rectangle that
/// covers the full region of the blurred mask. Note that geometry is in
/// local bounds.
auto expanded_local_bounds = blurred_mask->GetCoverage({});
if (!expanded_local_bounds.has_value()) {
expanded_local_bounds = Rect();
}
color_source_contents->SetGeometry(
Geometry::MakeRect(*expanded_local_bounds));
std::shared_ptr<Contents> color_contents = color_source_contents;
/// 4. Apply the user set color filter on the GPU, if applicable.
if (color_filter) {
color_contents = color_filter->WrapWithGPUColorFilter(
FilterInput::Make(color_source_contents),
ColorFilterContents::AbsorbOpacity::kYes);
}
/// 5. Composite the color source with the blurred mask.
return ColorFilterContents::MakeBlend(
BlendMode::kSourceIn,
{FilterInput::Make(blurred_mask), FilterInput::Make(color_contents)});
}
std::shared_ptr<FilterContents> Paint::MaskBlurDescriptor::CreateMaskBlur(
const FilterInput::Ref& input,
bool is_solid_color) const {
if (is_solid_color) {
return FilterContents::MakeGaussianBlur(input, sigma, sigma,
Entity::TileMode::kDecal, style);
}
return FilterContents::MakeBorderMaskBlur(input, sigma, sigma, style);
}
std::shared_ptr<ColorFilter> Paint::GetColorFilter() const {
if (invert_colors && color_filter) {
auto filter = ColorFilter::MakeMatrix(kColorInversion);
return ColorFilter::MakeComposed(filter, color_filter);
}
if (invert_colors) {
return ColorFilter::MakeMatrix(kColorInversion);
}
if (color_filter) {
return color_filter;
}
return nullptr;
}
bool Paint::HasColorFilter() const {
return !!color_filter || invert_colors;
}
} // namespace impeller
| engine/impeller/aiks/paint.cc/0 | {
"file_path": "engine/impeller/aiks/paint.cc",
"repo_id": "engine",
"token_count": 3004
} | 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 "impeller/base/allocation.h"
#include <algorithm>
#include <cstring>
#include "impeller/base/validation.h"
namespace impeller {
Allocation::Allocation() = default;
Allocation::~Allocation() {
::free(buffer_);
}
uint8_t* Allocation::GetBuffer() const {
return buffer_;
}
size_t Allocation::GetLength() const {
return length_;
}
size_t Allocation::GetReservedLength() const {
return reserved_;
}
bool Allocation::Truncate(size_t length, bool npot) {
const auto reserved = npot ? ReserveNPOT(length) : Reserve(length);
if (!reserved) {
return false;
}
length_ = length;
return true;
}
uint32_t Allocation::NextPowerOfTwoSize(uint32_t x) {
if (x == 0) {
return 1;
}
--x;
x |= x >> 1;
x |= x >> 2;
x |= x >> 4;
x |= x >> 8;
x |= x >> 16;
return x + 1;
}
bool Allocation::ReserveNPOT(size_t reserved) {
// Reserve at least one page of data.
reserved = std::max<size_t>(4096u, reserved);
return Reserve(NextPowerOfTwoSize(reserved));
}
bool Allocation::Reserve(size_t reserved) {
if (reserved <= reserved_) {
return true;
}
auto new_allocation = ::realloc(buffer_, reserved);
if (!new_allocation) {
// If new length is zero, a minimum non-zero sized allocation is returned.
// So this check will not trip and this routine will indicate success as
// expected.
VALIDATION_LOG << "Allocation failed. Out of host memory.";
return false;
}
buffer_ = static_cast<uint8_t*>(new_allocation);
reserved_ = reserved;
return true;
}
std::shared_ptr<fml::Mapping> CreateMappingWithCopy(const uint8_t* contents,
size_t length) {
if (contents == nullptr) {
return nullptr;
}
auto allocation = std::make_shared<Allocation>();
if (!allocation->Truncate(length)) {
return nullptr;
}
std::memmove(allocation->GetBuffer(), contents, length);
return CreateMappingFromAllocation(allocation);
}
std::shared_ptr<fml::Mapping> CreateMappingFromAllocation(
const std::shared_ptr<Allocation>& allocation) {
if (!allocation) {
return nullptr;
}
return std::make_shared<fml::NonOwnedMapping>(
reinterpret_cast<const uint8_t*>(allocation->GetBuffer()), //
allocation->GetLength(), //
[allocation](auto, auto) {} //
);
}
std::shared_ptr<fml::Mapping> CreateMappingWithString(std::string string) {
auto buffer = std::make_shared<std::string>(std::move(string));
return std::make_unique<fml::NonOwnedMapping>(
reinterpret_cast<const uint8_t*>(buffer->c_str()), buffer->length(),
[buffer](auto, auto) {});
}
} // namespace impeller
| engine/impeller/base/allocation.cc/0 | {
"file_path": "engine/impeller/base/allocation.cc",
"repo_id": "engine",
"token_count": 1098
} | 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_IMPELLER_BASE_TIMING_H_
#define FLUTTER_IMPELLER_BASE_TIMING_H_
#include <chrono>
namespace impeller {
using MillisecondsF = std::chrono::duration<float, std::milli>;
using SecondsF = std::chrono::duration<float>;
using Clock = std::chrono::high_resolution_clock;
using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock>;
} // namespace impeller
#endif // FLUTTER_IMPELLER_BASE_TIMING_H_
| engine/impeller/base/timing.h/0 | {
"file_path": "engine/impeller/base/timing.h",
"repo_id": "engine",
"token_count": 212
} | 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.
#ifndef TRANSFORM_GLSL_
#define TRANSFORM_GLSL_
/// Returns the Cartesian coordinates of `position` in `transform` space.
vec2 IPVec2TransformPosition(mat4 matrix, vec2 point) {
vec4 transformed = matrix * vec4(point, 0, 1);
return transformed.xy / transformed.w;
}
// Returns the transformed gl_Position for a given glyph position in a glyph
// atlas.
vec4 IPPositionForGlyphPosition(mat4 mvp,
vec2 unit_position,
vec2 destination_position,
vec2 destination_size) {
mat4 translation = mat4(1, 0, 0, 0, //
0, 1, 0, 0, //
0, 0, 1, 0, //
destination_position.xy, 0, 1);
return mvp * translation *
vec4(unit_position.x * destination_size.x,
unit_position.y * destination_size.y, 0.0, 1.0);
}
#ifdef IMPELLER_TARGET_OPENGLES
// Shim matrix `inverse` for versions that lack it.
// TODO: This could be gated on GLSL < 1.4.
mat3 IPMat3Inverse(mat3 m) {
float a00 = m[0][0], a01 = m[0][1], a02 = m[0][2];
float a10 = m[1][0], a11 = m[1][1], a12 = m[1][2];
float a20 = m[2][0], a21 = m[2][1], a22 = m[2][2];
float b01 = a22 * a11 - a12 * a21;
float b11 = -a22 * a10 + a12 * a20;
float b21 = a21 * a10 - a11 * a20;
float det = a00 * b01 + a01 * b11 + a02 * b21;
return mat3(b01, (-a22 * a01 + a02 * a21), (a12 * a01 - a02 * a11), b11,
(a22 * a00 - a02 * a20), (-a12 * a00 + a02 * a10), b21,
(-a21 * a00 + a01 * a20), (a11 * a00 - a01 * a10)) /
det;
}
#else // IMPELLER_TARGET_OPENGLES
mat3 IPMat3Inverse(mat3 m) {
return inverse(m);
}
#endif // IMPELLER_TARGET_OPENGLES
#endif // TRANSFORM_GLSL_
| engine/impeller/compiler/shader_lib/impeller/transform.glsl/0 | {
"file_path": "engine/impeller/compiler/shader_lib/impeller/transform.glsl",
"repo_id": "engine",
"token_count": 917
} | 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.
#ifndef FLUTTER_IMPELLER_COMPILER_UTILITIES_H_
#define FLUTTER_IMPELLER_COMPILER_UTILITIES_H_
#include <filesystem>
#include <string>
#include <string_view>
namespace impeller {
namespace compiler {
/// @brief Sets the file access mode of the file at path 'p' to 0644.
bool SetPermissiveAccess(const std::filesystem::path& p);
/// @brief Converts a native format path to a utf8 string.
///
/// This utility uses `path::u8string()` to convert native paths to
/// utf8. If the given path doesn't match the underlying native path
/// format, and the native path format isn't utf8 (i.e. Windows, which
/// has utf16 paths), the path will get mangled.
std::string Utf8FromPath(const std::filesystem::path& path);
std::string InferShaderNameFromPath(std::string_view path);
std::string ToCamelCase(std::string_view string);
std::string ToLowerCase(std::string_view string);
/// @brief Ensure that the entrypoint name is a valid identifier in the target
/// language.
std::string ConvertToEntrypointName(std::string_view string);
bool StringStartsWith(const std::string& target, const std::string& prefix);
} // namespace compiler
} // namespace impeller
#endif // FLUTTER_IMPELLER_COMPILER_UTILITIES_H_
| engine/impeller/compiler/utilities.h/0 | {
"file_path": "engine/impeller/compiler/utilities.h",
"repo_id": "engine",
"token_count": 475
} | 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_IMPELLER_CORE_HOST_BUFFER_H_
#define FLUTTER_IMPELLER_CORE_HOST_BUFFER_H_
#include <algorithm>
#include <array>
#include <functional>
#include <memory>
#include <string>
#include <type_traits>
#include "impeller/core/allocator.h"
#include "impeller/core/buffer_view.h"
#include "impeller/core/platform.h"
namespace impeller {
/// Approximately the same size as the max frames in flight.
static const constexpr size_t kHostBufferArenaSize = 3u;
/// The host buffer class manages one more 1024 Kb blocks of device buffer
/// allocations.
///
/// These are reset per-frame.
class HostBuffer {
public:
static std::shared_ptr<HostBuffer> Create(
const std::shared_ptr<Allocator>& allocator);
// |Buffer|
virtual ~HostBuffer();
void SetLabel(std::string label);
//----------------------------------------------------------------------------
/// @brief Emplace uniform data onto the host buffer. Ensure that backend
/// specific uniform alignment requirements are respected.
///
/// @param[in] uniform The uniform struct to emplace onto the buffer.
///
/// @tparam UniformType The type of the uniform struct.
///
/// @return The buffer view.
///
template <class UniformType,
class = std::enable_if_t<std::is_standard_layout_v<UniformType>>>
[[nodiscard]] BufferView EmplaceUniform(const UniformType& uniform) {
const auto alignment =
std::max(alignof(UniformType), DefaultUniformAlignment());
return Emplace(reinterpret_cast<const void*>(&uniform), // buffer
sizeof(UniformType), // size
alignment // alignment
);
}
//----------------------------------------------------------------------------
/// @brief Emplace storage buffer data onto the host buffer. Ensure that
/// backend specific uniform alignment requirements are respected.
///
/// @param[in] uniform The storage buffer to emplace onto the buffer.
///
/// @tparam StorageBufferType The type of the shader storage buffer.
///
/// @return The buffer view.
///
template <
class StorageBufferType,
class = std::enable_if_t<std::is_standard_layout_v<StorageBufferType>>>
[[nodiscard]] BufferView EmplaceStorageBuffer(
const StorageBufferType& buffer) {
const auto alignment =
std::max(alignof(StorageBufferType), DefaultUniformAlignment());
return Emplace(&buffer, // buffer
sizeof(StorageBufferType), // size
alignment // alignment
);
}
//----------------------------------------------------------------------------
/// @brief Emplace non-uniform data (like contiguous vertices) onto the
/// host buffer.
///
/// @param[in] buffer The buffer data.
///
/// @tparam BufferType The type of the buffer data.
///
/// @return The buffer view.
///
template <class BufferType,
class = std::enable_if_t<std::is_standard_layout_v<BufferType>>>
[[nodiscard]] BufferView Emplace(const BufferType& buffer) {
return Emplace(reinterpret_cast<const void*>(&buffer), // buffer
sizeof(BufferType), // size
alignof(BufferType) // alignment
);
}
[[nodiscard]] BufferView Emplace(const void* buffer,
size_t length,
size_t align);
using EmplaceProc = std::function<void(uint8_t* buffer)>;
//----------------------------------------------------------------------------
/// @brief Emplaces undefined data onto the managed buffer and gives the
/// caller a chance to update it using the specified callback. The
/// buffer is guaranteed to have enough space for length bytes. It
/// is the responsibility of the caller to not exceed the bounds
/// of the buffer returned in the EmplaceProc.
///
/// @param[in] cb A callback that will be passed a ptr to the
/// underlying host buffer.
///
/// @return The buffer view.
///
BufferView Emplace(size_t length, size_t align, const EmplaceProc& cb);
//----------------------------------------------------------------------------
/// @brief Resets the contents of the HostBuffer to nothing so it can be
/// reused.
void Reset();
/// Test only internal state.
struct TestStateQuery {
size_t current_frame;
size_t current_buffer;
size_t total_buffer_count;
};
/// @brief Retrieve internal buffer state for test expectations.
TestStateQuery GetStateForTest();
private:
[[nodiscard]] std::tuple<Range, std::shared_ptr<DeviceBuffer>>
EmplaceInternal(const void* buffer, size_t length);
std::tuple<Range, std::shared_ptr<DeviceBuffer>>
EmplaceInternal(size_t length, size_t align, const EmplaceProc& cb);
std::tuple<Range, std::shared_ptr<DeviceBuffer>>
EmplaceInternal(const void* buffer, size_t length, size_t align);
size_t GetLength() const { return offset_; }
void MaybeCreateNewBuffer();
std::shared_ptr<DeviceBuffer>& GetCurrentBuffer() {
return device_buffers_[frame_index_][current_buffer_];
}
[[nodiscard]] BufferView Emplace(const void* buffer, size_t length);
explicit HostBuffer(const std::shared_ptr<Allocator>& allocator);
HostBuffer(const HostBuffer&) = delete;
HostBuffer& operator=(const HostBuffer&) = delete;
std::shared_ptr<Allocator> allocator_;
std::array<std::vector<std::shared_ptr<DeviceBuffer>>, kHostBufferArenaSize>
device_buffers_;
size_t current_buffer_ = 0u;
size_t offset_ = 0u;
size_t frame_index_ = 0u;
std::string label_;
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_CORE_HOST_BUFFER_H_
| engine/impeller/core/host_buffer.h/0 | {
"file_path": "engine/impeller/core/host_buffer.h",
"repo_id": "engine",
"token_count": 2191
} | 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.
#ifndef FLUTTER_IMPELLER_CORE_TEXTURE_H_
#define FLUTTER_IMPELLER_CORE_TEXTURE_H_
#include <string_view>
#include "flutter/fml/mapping.h"
#include "impeller/core/formats.h"
#include "impeller/core/texture_descriptor.h"
#include "impeller/geometry/size.h"
namespace impeller {
class Texture {
public:
virtual ~Texture();
virtual void SetLabel(std::string_view label) = 0;
[[nodiscard]] bool SetContents(const uint8_t* contents,
size_t length,
size_t slice = 0,
bool is_opaque = false);
[[nodiscard]] bool SetContents(std::shared_ptr<const fml::Mapping> mapping,
size_t slice = 0,
bool is_opaque = false);
virtual bool IsValid() const = 0;
virtual ISize GetSize() const = 0;
bool IsOpaque() const;
size_t GetMipCount() const;
const TextureDescriptor& GetTextureDescriptor() const;
void SetCoordinateSystem(TextureCoordinateSystem coordinate_system);
TextureCoordinateSystem GetCoordinateSystem() const;
virtual Scalar GetYCoordScale() const;
/// Returns true if mipmaps have never been generated.
/// The contents of the mipmap may be out of date if the root texture has been
/// modified and the mipmaps hasn't been regenerated.
bool NeedsMipmapGeneration() const;
protected:
explicit Texture(TextureDescriptor desc);
[[nodiscard]] virtual bool OnSetContents(const uint8_t* contents,
size_t length,
size_t slice) = 0;
[[nodiscard]] virtual bool OnSetContents(
std::shared_ptr<const fml::Mapping> mapping,
size_t slice) = 0;
bool mipmap_generated_ = false;
private:
TextureCoordinateSystem coordinate_system_ =
TextureCoordinateSystem::kRenderToTexture;
const TextureDescriptor desc_;
bool is_opaque_ = false;
bool IsSliceValid(size_t slice) const;
Texture(const Texture&) = delete;
Texture& operator=(const Texture&) = delete;
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_CORE_TEXTURE_H_
| engine/impeller/core/texture.h/0 | {
"file_path": "engine/impeller/core/texture.h",
"repo_id": "engine",
"token_count": 922
} | 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_IMPELLER_DISPLAY_LIST_NINE_PATCH_CONVERTER_H_
#define FLUTTER_IMPELLER_DISPLAY_LIST_NINE_PATCH_CONVERTER_H_
#include <memory>
#include "impeller/aiks/canvas_type.h"
#include "impeller/aiks/image.h"
#include "impeller/aiks/paint.h"
#include "impeller/core/sampler_descriptor.h"
namespace impeller {
// Converts a call to draw a nine patch image into a draw atlas call.
class NinePatchConverter {
public:
NinePatchConverter();
~NinePatchConverter();
void DrawNinePatch(const std::shared_ptr<Image>& image,
Rect center,
Rect dst,
const SamplerDescriptor& sampler,
CanvasType* canvas,
Paint* paint);
private:
// Return a list of slice coordinates based on the size of the nine-slice
// parameters in one dimension. Each set of slice coordinates contains a
// begin/end pair for each of the source (image) and dest (screen) in the
// order (src0, dst0, src1, dst1). The area from src0 => src1 of the image is
// painted on the screen from dst0 => dst1 The slices for each dimension are
// generated independently.
std::vector<double> InitSlices(double img0,
double imgC0,
double imgC1,
double img1,
double dst0,
double dst1);
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_DISPLAY_LIST_NINE_PATCH_CONVERTER_H_
| engine/impeller/display_list/nine_patch_converter.h/0 | {
"file_path": "engine/impeller/display_list/nine_patch_converter.h",
"repo_id": "engine",
"token_count": 741
} | 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.
import("//flutter/impeller/tools/impeller.gni")
impeller_shaders("entity_shaders") {
name = "entity"
if (impeller_enable_vulkan) {
vulkan_language_version = 130
}
use_half_textures = true
shaders = [
"shaders/blending/advanced_blend.vert",
"shaders/blending/advanced_blend.frag",
"shaders/blending/blend.frag",
"shaders/blending/blend.vert",
"shaders/border_mask_blur.frag",
"shaders/border_mask_blur.vert",
"shaders/clip.frag",
"shaders/clip.vert",
"shaders/color_matrix_color_filter.frag",
"shaders/color_matrix_color_filter.vert",
"shaders/conical_gradient_fill.frag",
"shaders/gaussian_blur/gaussian_blur.vert",
"shaders/gaussian_blur/gaussian_blur_noalpha_decal.frag",
"shaders/gaussian_blur/gaussian_blur_noalpha_nodecal.frag",
"shaders/gaussian_blur/kernel_decal.frag",
"shaders/gaussian_blur/kernel_nodecal.frag",
"shaders/glyph_atlas.frag",
"shaders/glyph_atlas_color.frag",
"shaders/glyph_atlas.vert",
"shaders/gradient_fill.vert",
"shaders/linear_to_srgb_filter.frag",
"shaders/linear_to_srgb_filter.vert",
"shaders/linear_gradient_fill.frag",
"shaders/morphology_filter.frag",
"shaders/morphology_filter.vert",
"shaders/position_color.vert",
"shaders/radial_gradient_fill.frag",
"shaders/rrect_blur.vert",
"shaders/rrect_blur.frag",
"shaders/runtime_effect.vert",
"shaders/solid_fill.frag",
"shaders/solid_fill.vert",
"shaders/srgb_to_linear_filter.frag",
"shaders/srgb_to_linear_filter.vert",
"shaders/sweep_gradient_fill.frag",
"shaders/texture_fill.frag",
"shaders/texture_fill.vert",
"shaders/texture_fill_external.frag",
"shaders/texture_fill_strict_src.frag",
"shaders/tiled_texture_fill.frag",
"shaders/tiled_texture_fill_external.frag",
"shaders/vertices.frag",
"shaders/yuv_to_rgb_filter.frag",
"shaders/yuv_to_rgb_filter.vert",
"shaders/blending/porter_duff_blend.frag",
"shaders/blending/porter_duff_blend.vert",
]
if (impeller_debug) {
shaders += [
"shaders/debug/checkerboard.frag",
"shaders/debug/checkerboard.vert",
]
}
}
impeller_shaders("modern_entity_shaders") {
name = "modern"
if (impeller_enable_opengles) {
gles_language_version = 460
}
if (impeller_enable_vulkan) {
vulkan_language_version = 130
}
shaders = [
"shaders/conical_gradient_ssbo_fill.frag",
"shaders/linear_gradient_ssbo_fill.frag",
"shaders/radial_gradient_ssbo_fill.frag",
"shaders/sweep_gradient_ssbo_fill.frag",
"shaders/geometry/points.comp",
"shaders/geometry/uv.comp",
]
}
impeller_shaders("framebuffer_blend_entity_shaders") {
name = "framebuffer_blend"
require_framebuffer_fetch = true
# malioc does not support analyzing shaders that use the framebuffer fetch extension on some GPUs.
analyze = false
if (is_mac && !is_ios) {
# Note: this needs to correspond to the Apple7 Support family
# for M1 and M2.
metal_version = "2.3"
}
shaders = [
"shaders/blending/framebuffer_blend.vert",
"shaders/blending/framebuffer_blend.frag",
]
}
impeller_component("entity") {
sources = [
"contents/anonymous_contents.cc",
"contents/anonymous_contents.h",
"contents/atlas_contents.cc",
"contents/atlas_contents.h",
"contents/clip_contents.cc",
"contents/clip_contents.h",
"contents/color_source_contents.cc",
"contents/color_source_contents.h",
"contents/conical_gradient_contents.cc",
"contents/conical_gradient_contents.h",
"contents/content_context.cc",
"contents/content_context.h",
"contents/contents.cc",
"contents/contents.h",
"contents/filters/blend_filter_contents.cc",
"contents/filters/blend_filter_contents.h",
"contents/filters/border_mask_blur_filter_contents.cc",
"contents/filters/border_mask_blur_filter_contents.h",
"contents/filters/color_filter_contents.cc",
"contents/filters/color_filter_contents.h",
"contents/filters/color_matrix_filter_contents.cc",
"contents/filters/color_matrix_filter_contents.h",
"contents/filters/filter_contents.cc",
"contents/filters/filter_contents.h",
"contents/filters/gaussian_blur_filter_contents.cc",
"contents/filters/gaussian_blur_filter_contents.h",
"contents/filters/inputs/contents_filter_input.cc",
"contents/filters/inputs/contents_filter_input.h",
"contents/filters/inputs/filter_contents_filter_input.cc",
"contents/filters/inputs/filter_contents_filter_input.h",
"contents/filters/inputs/filter_input.cc",
"contents/filters/inputs/filter_input.h",
"contents/filters/inputs/placeholder_filter_input.cc",
"contents/filters/inputs/placeholder_filter_input.h",
"contents/filters/inputs/texture_filter_input.cc",
"contents/filters/inputs/texture_filter_input.h",
"contents/filters/linear_to_srgb_filter_contents.cc",
"contents/filters/linear_to_srgb_filter_contents.h",
"contents/filters/local_matrix_filter_contents.cc",
"contents/filters/local_matrix_filter_contents.h",
"contents/filters/matrix_filter_contents.cc",
"contents/filters/matrix_filter_contents.h",
"contents/filters/morphology_filter_contents.cc",
"contents/filters/morphology_filter_contents.h",
"contents/filters/srgb_to_linear_filter_contents.cc",
"contents/filters/srgb_to_linear_filter_contents.h",
"contents/filters/yuv_to_rgb_filter_contents.cc",
"contents/filters/yuv_to_rgb_filter_contents.h",
"contents/framebuffer_blend_contents.cc",
"contents/framebuffer_blend_contents.h",
"contents/gradient_generator.cc",
"contents/gradient_generator.h",
"contents/linear_gradient_contents.cc",
"contents/linear_gradient_contents.h",
"contents/radial_gradient_contents.cc",
"contents/radial_gradient_contents.h",
"contents/runtime_effect_contents.cc",
"contents/runtime_effect_contents.h",
"contents/solid_color_contents.cc",
"contents/solid_color_contents.h",
"contents/solid_rrect_blur_contents.cc",
"contents/solid_rrect_blur_contents.h",
"contents/sweep_gradient_contents.cc",
"contents/sweep_gradient_contents.h",
"contents/text_contents.cc",
"contents/text_contents.h",
"contents/texture_contents.cc",
"contents/texture_contents.h",
"contents/tiled_texture_contents.cc",
"contents/tiled_texture_contents.h",
"contents/vertices_contents.cc",
"contents/vertices_contents.h",
"entity.cc",
"entity.h",
"entity_pass.cc",
"entity_pass.h",
"entity_pass_delegate.cc",
"entity_pass_delegate.h",
"entity_pass_target.cc",
"entity_pass_target.h",
"geometry/circle_geometry.cc",
"geometry/circle_geometry.h",
"geometry/cover_geometry.cc",
"geometry/cover_geometry.h",
"geometry/ellipse_geometry.cc",
"geometry/ellipse_geometry.h",
"geometry/fill_path_geometry.cc",
"geometry/fill_path_geometry.h",
"geometry/geometry.cc",
"geometry/geometry.h",
"geometry/line_geometry.cc",
"geometry/line_geometry.h",
"geometry/point_field_geometry.cc",
"geometry/point_field_geometry.h",
"geometry/rect_geometry.cc",
"geometry/rect_geometry.h",
"geometry/round_rect_geometry.cc",
"geometry/round_rect_geometry.h",
"geometry/stroke_path_geometry.cc",
"geometry/stroke_path_geometry.h",
"geometry/vertices_geometry.cc",
"geometry/vertices_geometry.h",
"inline_pass_context.cc",
"inline_pass_context.h",
"render_target_cache.cc",
"render_target_cache.h",
]
if (impeller_debug) {
sources += [
"contents/checkerboard_contents.cc",
"contents/checkerboard_contents.h",
]
}
public_deps = [
":entity_shaders",
":framebuffer_blend_entity_shaders",
":modern_entity_shaders",
"../renderer",
"../typographer",
]
if (impeller_enable_3d) {
sources += [
"contents/scene_contents.cc",
"contents/scene_contents.h",
]
public_deps += [ "../scene" ]
}
deps = [ "//flutter/fml" ]
defines = [ "_USE_MATH_DEFINES" ]
}
impeller_component("entity_test_helpers") {
testonly = true
sources = [
"contents/test/contents_test_helpers.cc",
"contents/test/contents_test_helpers.h",
"contents/test/recording_render_pass.cc",
"contents/test/recording_render_pass.h",
]
deps = [ ":entity" ]
}
impeller_component("entity_unittests") {
testonly = true
sources = [
"contents/checkerboard_contents_unittests.cc",
"contents/content_context_unittests.cc",
"contents/filters/gaussian_blur_filter_contents_unittests.cc",
"contents/filters/inputs/filter_input_unittests.cc",
"contents/host_buffer_unittests.cc",
"contents/tiled_texture_contents_unittests.cc",
"contents/vertices_contents_unittests.cc",
"entity_pass_target_unittests.cc",
"entity_playground.cc",
"entity_playground.h",
"entity_unittests.cc",
"geometry/geometry_unittests.cc",
"render_target_cache_unittests.cc",
]
deps = [
":entity",
":entity_test_helpers",
"../geometry:geometry_asserts",
"../playground:playground_test",
"//flutter/display_list/testing:display_list_testing",
"//flutter/impeller/typographer/backends/skia:typographer_skia_backend",
]
}
| engine/impeller/entity/BUILD.gn/0 | {
"file_path": "engine/impeller/entity/BUILD.gn",
"repo_id": "engine",
"token_count": 4081
} | 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.
#include <cstdint>
#include <future>
#include <memory>
#include <utility>
#include <vector>
#include "fml/logging.h"
#include "gtest/gtest.h"
#include "impeller/base/backend_cast.h"
#include "impeller/base/comparable.h"
#include "impeller/core/allocator.h"
#include "impeller/core/device_buffer_descriptor.h"
#include "impeller/core/formats.h"
#include "impeller/core/texture_descriptor.h"
#include "impeller/entity/contents/content_context.h"
#include "impeller/entity/contents/test/recording_render_pass.h"
#include "impeller/geometry/color.h"
#include "impeller/renderer/capabilities.h"
#include "impeller/renderer/command_buffer.h"
#include "impeller/renderer/command_queue.h"
#include "impeller/renderer/pipeline.h"
#include "impeller/renderer/pipeline_descriptor.h"
#include "impeller/renderer/pipeline_library.h"
#include "impeller/renderer/render_pass.h"
#include "impeller/renderer/shader_function.h"
#include "impeller/renderer/shader_library.h"
namespace impeller {
namespace testing {
namespace {
class FakeTexture : public Texture {
public:
explicit FakeTexture(const TextureDescriptor& desc) : Texture(desc) {}
~FakeTexture() override {}
void SetLabel(std::string_view label) {}
bool IsValid() const override { return true; }
ISize GetSize() const override { return {1, 1}; }
Scalar GetYCoordScale() const override { return 1.0; }
bool OnSetContents(const uint8_t* contents,
size_t length,
size_t slice) override {
if (GetTextureDescriptor().GetByteSizeOfBaseMipLevel() != length) {
return false;
}
did_set_contents = true;
return true;
}
bool OnSetContents(std::shared_ptr<const fml::Mapping> mapping,
size_t slice) override {
did_set_contents = true;
return true;
}
bool did_set_contents = false;
};
class FakeAllocator : public Allocator,
public BackendCast<FakeAllocator, Allocator> {
public:
FakeAllocator() : Allocator() {}
uint16_t MinimumBytesPerRow(PixelFormat format) const override { return 0; }
ISize GetMaxTextureSizeSupported() const override { return ISize(1, 1); }
std::shared_ptr<DeviceBuffer> OnCreateBuffer(
const DeviceBufferDescriptor& desc) override {
return nullptr;
}
std::shared_ptr<Texture> OnCreateTexture(
const TextureDescriptor& desc) override {
if (desc.size == ISize{1, 1}) {
auto result = std::make_shared<FakeTexture>(desc);
textures.push_back(result);
return result;
}
return nullptr;
}
std::vector<std::shared_ptr<FakeTexture>> textures = {};
};
class FakePipeline : public Pipeline<PipelineDescriptor> {
public:
FakePipeline(std::weak_ptr<PipelineLibrary> library,
const PipelineDescriptor& desc)
: Pipeline(std::move(library), desc) {}
~FakePipeline() override {}
bool IsValid() const override { return true; }
};
class FakeComputePipeline : public Pipeline<ComputePipelineDescriptor> {
public:
FakeComputePipeline(std::weak_ptr<PipelineLibrary> library,
const ComputePipelineDescriptor& desc)
: Pipeline(std::move(library), desc) {}
~FakeComputePipeline() override {}
bool IsValid() const override { return true; }
};
class FakePipelineLibrary : public PipelineLibrary {
public:
FakePipelineLibrary() {}
~FakePipelineLibrary() override {}
bool IsValid() const override { return true; }
PipelineFuture<PipelineDescriptor> GetPipeline(
PipelineDescriptor descriptor) override {
auto pipeline =
std::make_shared<FakePipeline>(weak_from_this(), descriptor);
std::promise<std::shared_ptr<Pipeline<PipelineDescriptor>>> promise;
promise.set_value(std::move(pipeline));
return PipelineFuture<PipelineDescriptor>{
.descriptor = descriptor,
.future =
std::shared_future<std::shared_ptr<Pipeline<PipelineDescriptor>>>(
promise.get_future())};
}
PipelineFuture<ComputePipelineDescriptor> GetPipeline(
ComputePipelineDescriptor descriptor) override {
auto pipeline =
std::make_shared<FakeComputePipeline>(weak_from_this(), descriptor);
std::promise<std::shared_ptr<Pipeline<ComputePipelineDescriptor>>> promise;
promise.set_value(std::move(pipeline));
return PipelineFuture<ComputePipelineDescriptor>{
.descriptor = descriptor,
.future = std::shared_future<
std::shared_ptr<Pipeline<ComputePipelineDescriptor>>>(
promise.get_future())};
}
void RemovePipelinesWithEntryPoint(
std::shared_ptr<const ShaderFunction> function) {}
};
class FakeShaderFunction : public ShaderFunction {
public:
FakeShaderFunction(UniqueID parent_library_id,
std::string name,
ShaderStage stage)
: ShaderFunction(parent_library_id, std::move(name), stage){};
~FakeShaderFunction() override {}
};
class FakeShaderLibrary : public ShaderLibrary {
public:
~FakeShaderLibrary() override {}
bool IsValid() const override { return true; }
std::shared_ptr<const ShaderFunction> GetFunction(std::string_view name,
ShaderStage stage) {
return std::make_shared<FakeShaderFunction>(UniqueID{}, std::string(name),
stage);
}
void RegisterFunction(std::string name,
ShaderStage stage,
std::shared_ptr<fml::Mapping> code,
RegistrationCallback callback) override {}
void UnregisterFunction(std::string name, ShaderStage stage) override {}
};
class FakeCommandBuffer : public CommandBuffer {
public:
explicit FakeCommandBuffer(std::weak_ptr<const Context> context)
: CommandBuffer(std::move(context)) {}
~FakeCommandBuffer() {}
bool IsValid() const override { return true; }
void SetLabel(const std::string& label) const override {}
std::shared_ptr<RenderPass> OnCreateRenderPass(
RenderTarget render_target) override {
return std::make_shared<RecordingRenderPass>(nullptr, context_.lock(),
render_target);
}
std::shared_ptr<BlitPass> OnCreateBlitPass() override { FML_UNREACHABLE() }
virtual bool OnSubmitCommands(CompletionCallback callback) { return true; }
void OnWaitUntilScheduled() {}
std::shared_ptr<ComputePass> OnCreateComputePass() override {
FML_UNREACHABLE();
}
};
class FakeContext : public Context,
public std::enable_shared_from_this<FakeContext> {
public:
explicit FakeContext(
const std::string& gpu_model = "",
PixelFormat default_color_format = PixelFormat::kR8G8B8A8UNormInt)
: Context(),
allocator_(std::make_shared<FakeAllocator>()),
capabilities_(std::shared_ptr<Capabilities>(
CapabilitiesBuilder()
.SetDefaultColorFormat(default_color_format)
.Build())),
pipelines_(std::make_shared<FakePipelineLibrary>()),
queue_(std::make_shared<CommandQueue>()),
shader_library_(std::make_shared<FakeShaderLibrary>()),
gpu_model_(gpu_model) {}
BackendType GetBackendType() const override { return BackendType::kVulkan; }
std::string DescribeGpuModel() const override { return gpu_model_; }
bool IsValid() const override { return true; }
const std::shared_ptr<const Capabilities>& GetCapabilities() const override {
return capabilities_;
}
std::shared_ptr<Allocator> GetResourceAllocator() const override {
return allocator_;
}
std::shared_ptr<ShaderLibrary> GetShaderLibrary() const {
return shader_library_;
}
std::shared_ptr<SamplerLibrary> GetSamplerLibrary() const { return nullptr; }
std::shared_ptr<PipelineLibrary> GetPipelineLibrary() const {
return pipelines_;
}
std::shared_ptr<CommandQueue> GetCommandQueue() const { return queue_; }
std::shared_ptr<CommandBuffer> CreateCommandBuffer() const {
return std::make_shared<FakeCommandBuffer>(shared_from_this());
}
void Shutdown() {}
private:
std::shared_ptr<Allocator> allocator_;
std::shared_ptr<const Capabilities> capabilities_;
std::shared_ptr<FakePipelineLibrary> pipelines_;
std::shared_ptr<CommandQueue> queue_;
std::shared_ptr<ShaderLibrary> shader_library_;
std::string gpu_model_;
};
} // namespace
TEST(ContentContext, CachesPipelines) {
auto context = std::make_shared<FakeContext>();
auto create_callback = [&]() {
return std::make_shared<FakePipeline>(context->GetPipelineLibrary(),
PipelineDescriptor{});
};
ContentContext content_context(context, nullptr);
ContentContextOptions optionsA{.blend_mode = BlendMode::kSourceOver};
ContentContextOptions optionsB{.blend_mode = BlendMode::kSource};
auto pipelineA = content_context.GetCachedRuntimeEffectPipeline(
"A", optionsA, create_callback);
auto pipelineA2 = content_context.GetCachedRuntimeEffectPipeline(
"A", optionsA, create_callback);
auto pipelineA3 = content_context.GetCachedRuntimeEffectPipeline(
"A", optionsB, create_callback);
auto pipelineB = content_context.GetCachedRuntimeEffectPipeline(
"B", optionsB, create_callback);
ASSERT_EQ(pipelineA.get(), pipelineA2.get());
ASSERT_NE(pipelineA.get(), pipelineA3.get());
ASSERT_NE(pipelineB.get(), pipelineA.get());
}
TEST(ContentContext, InvalidatesAllPipelinesWithSameUniqueNameOnClear) {
auto context = std::make_shared<FakeContext>();
ContentContext content_context(context, nullptr);
ContentContextOptions optionsA{.blend_mode = BlendMode::kSourceOver};
ContentContextOptions optionsB{.blend_mode = BlendMode::kSource};
auto create_callback = [&]() {
return std::make_shared<FakePipeline>(context->GetPipelineLibrary(),
PipelineDescriptor{});
};
auto pipelineA = content_context.GetCachedRuntimeEffectPipeline(
"A", optionsA, create_callback);
auto pipelineA2 = content_context.GetCachedRuntimeEffectPipeline(
"A", optionsB, create_callback);
auto pipelineB = content_context.GetCachedRuntimeEffectPipeline(
"B", optionsB, create_callback);
ASSERT_TRUE(pipelineA);
ASSERT_TRUE(pipelineA2);
ASSERT_TRUE(pipelineB);
ASSERT_EQ(pipelineA, content_context.GetCachedRuntimeEffectPipeline(
"A", optionsA, create_callback));
ASSERT_EQ(pipelineA2, content_context.GetCachedRuntimeEffectPipeline(
"A", optionsB, create_callback));
ASSERT_EQ(pipelineB, content_context.GetCachedRuntimeEffectPipeline(
"B", optionsB, create_callback));
content_context.ClearCachedRuntimeEffectPipeline("A");
ASSERT_NE(pipelineA, content_context.GetCachedRuntimeEffectPipeline(
"A", optionsA, create_callback));
ASSERT_NE(pipelineA2, content_context.GetCachedRuntimeEffectPipeline(
"A", optionsB, create_callback));
ASSERT_EQ(pipelineB, content_context.GetCachedRuntimeEffectPipeline(
"B", optionsB, create_callback));
content_context.ClearCachedRuntimeEffectPipeline("B");
ASSERT_NE(pipelineB, content_context.GetCachedRuntimeEffectPipeline(
"B", optionsB, create_callback));
}
TEST(ContentContext, InitializeCommonlyUsedShadersIfNeeded) {
ScopedValidationFatal fatal_validations;
// Set a pixel format that is larger than 32bpp.
auto context = std::make_shared<FakeContext>("Mali G70",
PixelFormat::kR16G16B16A16Float);
ContentContext content_context(context, nullptr);
FakeAllocator& fake_allocator =
FakeAllocator::Cast(*context->GetResourceAllocator());
#if IMPELLER_ENABLE_3D
EXPECT_EQ(fake_allocator.textures.size(), 2u);
#else
EXPECT_EQ(fake_allocator.textures.size(), 1u);
#endif // IMPELLER_ENABLE_3D
}
} // namespace testing
} // namespace impeller
| engine/impeller/entity/contents/content_context_unittests.cc/0 | {
"file_path": "engine/impeller/entity/contents/content_context_unittests.cc",
"repo_id": "engine",
"token_count": 4653
} | 188 |
// 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/inputs/contents_filter_input.h"
#include <optional>
#include <utility>
#include "impeller/base/strings.h"
namespace impeller {
ContentsFilterInput::ContentsFilterInput(std::shared_ptr<Contents> contents,
bool msaa_enabled)
: contents_(std::move(contents)), msaa_enabled_(msaa_enabled) {}
ContentsFilterInput::~ContentsFilterInput() = default;
FilterInput::Variant ContentsFilterInput::GetInput() const {
return contents_;
}
std::optional<Snapshot> ContentsFilterInput::GetSnapshot(
const std::string& label,
const ContentContext& renderer,
const Entity& entity,
std::optional<Rect> coverage_limit,
int32_t mip_count) const {
if (!coverage_limit.has_value() && entity.GetContents()) {
coverage_limit = entity.GetContents()->GetCoverageHint();
}
if (!snapshot_.has_value()) {
snapshot_ = contents_->RenderToSnapshot(
renderer, // renderer
entity, // entity
coverage_limit, // coverage_limit
std::nullopt, // sampler_descriptor
msaa_enabled_, // msaa_enabled
/*mip_count=*/mip_count,
SPrintF("Contents to %s Filter Snapshot", label.c_str())); // label
}
return snapshot_;
}
std::optional<Rect> ContentsFilterInput::GetCoverage(
const Entity& entity) const {
return contents_->GetCoverage(entity);
}
void ContentsFilterInput::PopulateGlyphAtlas(
const std::shared_ptr<LazyGlyphAtlas>& lazy_glyph_atlas,
Scalar scale) {
contents_->PopulateGlyphAtlas(lazy_glyph_atlas, scale);
}
} // namespace impeller
| engine/impeller/entity/contents/filters/inputs/contents_filter_input.cc/0 | {
"file_path": "engine/impeller/entity/contents/filters/inputs/contents_filter_input.cc",
"repo_id": "engine",
"token_count": 674
} | 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_ENTITY_CONTENTS_FILTERS_MATRIX_FILTER_CONTENTS_H_
#define FLUTTER_IMPELLER_ENTITY_CONTENTS_FILTERS_MATRIX_FILTER_CONTENTS_H_
#include "impeller/entity/contents/filters/filter_contents.h"
#include "impeller/entity/contents/filters/inputs/filter_input.h"
namespace impeller {
class MatrixFilterContents final : public FilterContents {
public:
MatrixFilterContents();
~MatrixFilterContents() override;
void SetMatrix(Matrix matrix);
// |FilterContents|
void SetRenderingMode(Entity::RenderingMode rendering_mode) override;
// |FilterContents|
bool IsTranslationOnly() const override;
void SetSamplerDescriptor(SamplerDescriptor desc);
// |FilterContents|
std::optional<Rect> GetFilterCoverage(
const FilterInput::Vector& inputs,
const Entity& entity,
const Matrix& effect_transform) const override;
private:
// |FilterContents|
std::optional<Entity> RenderFilter(
const FilterInput::Vector& input_textures,
const ContentContext& renderer,
const Entity& entity,
const Matrix& effect_transform,
const Rect& coverage,
const std::optional<Rect>& coverage_hint) const override;
// |FilterContents|
std::optional<Rect> GetFilterSourceCoverage(
const Matrix& effect_transform,
const Rect& output_limit) const override;
Matrix matrix_;
SamplerDescriptor sampler_descriptor_ = {};
Entity::RenderingMode rendering_mode_ = Entity::RenderingMode::kDirect;
MatrixFilterContents(const MatrixFilterContents&) = delete;
MatrixFilterContents& operator=(const MatrixFilterContents&) = delete;
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_ENTITY_CONTENTS_FILTERS_MATRIX_FILTER_CONTENTS_H_
| engine/impeller/entity/contents/filters/matrix_filter_contents.h/0 | {
"file_path": "engine/impeller/entity/contents/filters/matrix_filter_contents.h",
"repo_id": "engine",
"token_count": 613
} | 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/entity/contents/runtime_effect_contents.h"
#include <future>
#include <memory>
#include "flutter/fml/logging.h"
#include "flutter/fml/make_copyable.h"
#include "impeller/base/validation.h"
#include "impeller/core/formats.h"
#include "impeller/core/runtime_types.h"
#include "impeller/core/shader_types.h"
#include "impeller/entity/contents/content_context.h"
#include "impeller/entity/runtime_effect.vert.h"
#include "impeller/renderer/capabilities.h"
#include "impeller/renderer/pipeline_library.h"
#include "impeller/renderer/render_pass.h"
#include "impeller/renderer/shader_function.h"
namespace impeller {
void RuntimeEffectContents::SetRuntimeStage(
std::shared_ptr<RuntimeStage> runtime_stage) {
runtime_stage_ = std::move(runtime_stage);
}
void RuntimeEffectContents::SetUniformData(
std::shared_ptr<std::vector<uint8_t>> uniform_data) {
uniform_data_ = std::move(uniform_data);
}
void RuntimeEffectContents::SetTextureInputs(
std::vector<TextureInput> texture_inputs) {
texture_inputs_ = std::move(texture_inputs);
}
bool RuntimeEffectContents::CanInheritOpacity(const Entity& entity) const {
return false;
}
static ShaderType GetShaderType(RuntimeUniformType type) {
switch (type) {
case kSampledImage:
return ShaderType::kSampledImage;
case kFloat:
return ShaderType::kFloat;
case kStruct:
return ShaderType::kStruct;
}
}
static std::shared_ptr<ShaderMetadata> MakeShaderMetadata(
const RuntimeUniformDescription& uniform) {
auto metadata = std::make_shared<ShaderMetadata>();
metadata->name = uniform.name;
metadata->members.emplace_back(ShaderStructMemberMetadata{
.type = GetShaderType(uniform.type),
.size = uniform.GetSize(),
.byte_length = uniform.bit_width / 8,
});
return metadata;
}
bool RuntimeEffectContents::Render(const ContentContext& renderer,
const Entity& entity,
RenderPass& pass) const {
const std::shared_ptr<Context>& context = renderer.GetContext();
const std::shared_ptr<ShaderLibrary>& library = context->GetShaderLibrary();
//--------------------------------------------------------------------------
/// Get or register shader.
///
// TODO(113719): Register the shader function earlier.
std::shared_ptr<const ShaderFunction> function = library->GetFunction(
runtime_stage_->GetEntrypoint(), ShaderStage::kFragment);
//--------------------------------------------------------------------------
/// Resolve runtime stage function.
///
if (function && runtime_stage_->IsDirty()) {
renderer.ClearCachedRuntimeEffectPipeline(runtime_stage_->GetEntrypoint());
context->GetPipelineLibrary()->RemovePipelinesWithEntryPoint(function);
library->UnregisterFunction(runtime_stage_->GetEntrypoint(),
ShaderStage::kFragment);
function = nullptr;
}
if (!function) {
std::promise<bool> promise;
auto future = promise.get_future();
library->RegisterFunction(
runtime_stage_->GetEntrypoint(),
ToShaderStage(runtime_stage_->GetShaderStage()),
runtime_stage_->GetCodeMapping(),
fml::MakeCopyable([promise = std::move(promise)](bool result) mutable {
promise.set_value(result);
}));
if (!future.get()) {
VALIDATION_LOG << "Failed to build runtime effect (entry point: "
<< runtime_stage_->GetEntrypoint() << ")";
return false;
}
function = library->GetFunction(runtime_stage_->GetEntrypoint(),
ShaderStage::kFragment);
if (!function) {
VALIDATION_LOG
<< "Failed to fetch runtime effect function immediately after "
"registering it (entry point: "
<< runtime_stage_->GetEntrypoint() << ")";
return false;
}
runtime_stage_->SetClean();
}
//--------------------------------------------------------------------------
/// Set up the command. Defer setting up the pipeline until the descriptor set
/// layouts are known from the uniforms.
///
const std::shared_ptr<const Capabilities>& caps = context->GetCapabilities();
const auto color_attachment_format = caps->GetDefaultColorFormat();
const auto stencil_attachment_format = caps->GetDefaultDepthStencilFormat();
using VS = RuntimeEffectVertexShader;
//--------------------------------------------------------------------------
/// Fragment stage uniforms.
///
std::vector<DescriptorSetLayout> descriptor_set_layouts;
BindFragmentCallback bind_callback = [this, &renderer, &context,
&descriptor_set_layouts](
RenderPass& pass) {
descriptor_set_layouts.clear();
size_t minimum_sampler_index = 100000000;
size_t buffer_index = 0;
size_t buffer_offset = 0;
for (const auto& uniform : runtime_stage_->GetUniforms()) {
std::shared_ptr<ShaderMetadata> metadata = MakeShaderMetadata(uniform);
switch (uniform.type) {
case kSampledImage: {
// Sampler uniforms are ordered in the IPLR according to their
// declaration and the uniform location reflects the correct offset to
// be mapped to - except that it may include all proceeding float
// uniforms. For example, a float sampler that comes after 4 float
// uniforms may have a location of 4. To convert to the actual offset
// we need to find the largest location assigned to a float uniform
// and then subtract this from all uniform locations. This is more or
// less the same operation we previously performed in the shader
// compiler.
minimum_sampler_index =
std::min(minimum_sampler_index, uniform.location);
break;
}
case kFloat: {
FML_DCHECK(renderer.GetContext()->GetBackendType() !=
Context::BackendType::kVulkan)
<< "Uniform " << uniform.name
<< " had unexpected type kFloat for Vulkan backend.";
size_t alignment =
std::max(uniform.bit_width / 8, DefaultUniformAlignment());
auto buffer_view = renderer.GetTransientsBuffer().Emplace(
uniform_data_->data() + buffer_offset, uniform.GetSize(),
alignment);
ShaderUniformSlot uniform_slot;
uniform_slot.name = uniform.name.c_str();
uniform_slot.ext_res_0 = uniform.location;
pass.BindResource(ShaderStage::kFragment,
DescriptorType::kUniformBuffer, uniform_slot,
metadata, buffer_view);
buffer_index++;
buffer_offset += uniform.GetSize();
break;
}
case kStruct: {
FML_DCHECK(renderer.GetContext()->GetBackendType() ==
Context::BackendType::kVulkan);
descriptor_set_layouts.emplace_back(DescriptorSetLayout{
static_cast<uint32_t>(uniform.location),
DescriptorType::kUniformBuffer,
ShaderStage::kFragment,
});
ShaderUniformSlot uniform_slot;
uniform_slot.name = uniform.name.c_str();
uniform_slot.binding = uniform.location;
std::vector<float> uniform_buffer;
uniform_buffer.reserve(uniform.struct_layout.size());
size_t uniform_byte_index = 0u;
for (const auto& byte_type : uniform.struct_layout) {
if (byte_type == 0) {
uniform_buffer.push_back(0.f);
} else if (byte_type == 1) {
uniform_buffer.push_back(reinterpret_cast<float*>(
uniform_data_->data())[uniform_byte_index++]);
} else {
FML_UNREACHABLE();
}
}
size_t alignment = std::max(sizeof(float) * uniform_buffer.size(),
DefaultUniformAlignment());
auto buffer_view = renderer.GetTransientsBuffer().Emplace(
reinterpret_cast<const void*>(uniform_buffer.data()),
sizeof(float) * uniform_buffer.size(), alignment);
pass.BindResource(ShaderStage::kFragment,
DescriptorType::kUniformBuffer, uniform_slot,
ShaderMetadata{}, buffer_view);
}
}
}
size_t sampler_index = 0;
for (const auto& uniform : runtime_stage_->GetUniforms()) {
std::shared_ptr<ShaderMetadata> metadata = MakeShaderMetadata(uniform);
switch (uniform.type) {
case kSampledImage: {
FML_DCHECK(sampler_index < texture_inputs_.size());
auto& input = texture_inputs_[sampler_index];
const std::unique_ptr<const Sampler>& sampler =
context->GetSamplerLibrary()->GetSampler(
input.sampler_descriptor);
SampledImageSlot image_slot;
image_slot.name = uniform.name.c_str();
uint32_t sampler_binding_location = 0u;
if (!descriptor_set_layouts.empty()) {
sampler_binding_location =
descriptor_set_layouts.back().binding + 1;
}
descriptor_set_layouts.emplace_back(DescriptorSetLayout{
sampler_binding_location,
DescriptorType::kSampledImage,
ShaderStage::kFragment,
});
image_slot.binding = sampler_binding_location;
image_slot.texture_index = uniform.location - minimum_sampler_index;
pass.BindResource(ShaderStage::kFragment,
DescriptorType::kSampledImage, image_slot,
*metadata, input.texture, sampler);
sampler_index++;
break;
}
default:
continue;
}
}
return true;
};
/// Now that the descriptor set layouts are known, get the pipeline.
PipelineBuilderCallback pipeline_callback = [&](ContentContextOptions
options) {
// Pipeline creation callback for the cache handler to call.
auto create_callback =
[&]() -> std::shared_ptr<Pipeline<PipelineDescriptor>> {
PipelineDescriptor desc;
desc.SetLabel("Runtime Stage");
desc.AddStageEntrypoint(
library->GetFunction(VS::kEntrypointName, ShaderStage::kVertex));
desc.AddStageEntrypoint(library->GetFunction(
runtime_stage_->GetEntrypoint(), ShaderStage::kFragment));
auto vertex_descriptor = std::make_shared<VertexDescriptor>();
vertex_descriptor->SetStageInputs(VS::kAllShaderStageInputs,
VS::kInterleavedBufferLayout);
vertex_descriptor->RegisterDescriptorSetLayouts(
VS::kDescriptorSetLayouts);
vertex_descriptor->RegisterDescriptorSetLayouts(
descriptor_set_layouts.data(), descriptor_set_layouts.size());
desc.SetVertexDescriptor(std::move(vertex_descriptor));
desc.SetColorAttachmentDescriptor(
0u, {.format = color_attachment_format, .blending_enabled = true});
desc.SetStencilAttachmentDescriptors(StencilAttachmentDescriptor{});
desc.SetStencilPixelFormat(stencil_attachment_format);
desc.SetDepthStencilAttachmentDescriptor(DepthAttachmentDescriptor{});
desc.SetDepthPixelFormat(stencil_attachment_format);
options.ApplyToPipelineDescriptor(desc);
auto pipeline = context->GetPipelineLibrary()->GetPipeline(desc).Get();
if (!pipeline) {
VALIDATION_LOG << "Failed to get or create runtime effect pipeline.";
return nullptr;
}
return pipeline;
};
return renderer.GetCachedRuntimeEffectPipeline(
runtime_stage_->GetEntrypoint(), options, create_callback);
};
return ColorSourceContents::DrawGeometry<VS>(renderer, entity, pass,
pipeline_callback,
VS::FrameInfo{}, bind_callback);
}
} // namespace impeller
| engine/impeller/entity/contents/runtime_effect_contents.cc/0 | {
"file_path": "engine/impeller/entity/contents/runtime_effect_contents.cc",
"repo_id": "engine",
"token_count": 5070
} | 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.
#include "impeller/entity/contents/texture_contents.h"
#include <memory>
#include <optional>
#include <utility>
#include "impeller/core/formats.h"
#include "impeller/entity/contents/content_context.h"
#include "impeller/entity/entity.h"
#include "impeller/entity/texture_fill.frag.h"
#include "impeller/entity/texture_fill.vert.h"
#include "impeller/entity/texture_fill_external.frag.h"
#include "impeller/geometry/constants.h"
#include "impeller/renderer/render_pass.h"
#include "impeller/renderer/vertex_buffer_builder.h"
namespace impeller {
TextureContents::TextureContents() = default;
TextureContents::~TextureContents() = default;
std::shared_ptr<TextureContents> TextureContents::MakeRect(Rect destination) {
auto contents = std::make_shared<TextureContents>();
contents->destination_rect_ = destination;
return contents;
}
void TextureContents::SetLabel(std::string label) {
label_ = std::move(label);
}
void TextureContents::SetDestinationRect(Rect rect) {
destination_rect_ = rect;
}
void TextureContents::SetTexture(std::shared_ptr<Texture> texture) {
texture_ = std::move(texture);
}
std::shared_ptr<Texture> TextureContents::GetTexture() const {
return texture_;
}
void TextureContents::SetOpacity(Scalar opacity) {
opacity_ = opacity;
}
void TextureContents::SetStencilEnabled(bool enabled) {
stencil_enabled_ = enabled;
}
bool TextureContents::CanInheritOpacity(const Entity& entity) const {
return true;
}
void TextureContents::SetInheritedOpacity(Scalar opacity) {
inherited_opacity_ = opacity;
}
Scalar TextureContents::GetOpacity() const {
return opacity_ * inherited_opacity_;
}
std::optional<Rect> TextureContents::GetCoverage(const Entity& entity) const {
if (GetOpacity() == 0) {
return std::nullopt;
}
return destination_rect_.TransformBounds(entity.GetTransform());
};
std::optional<Snapshot> TextureContents::RenderToSnapshot(
const ContentContext& renderer,
const Entity& entity,
std::optional<Rect> coverage_limit,
const std::optional<SamplerDescriptor>& sampler_descriptor,
bool msaa_enabled,
int32_t mip_count,
const std::string& label) const {
// Passthrough textures that have simple rectangle paths and complete source
// rects.
auto bounds = destination_rect_;
auto opacity = GetOpacity();
if (source_rect_ == Rect::MakeSize(texture_->GetSize()) &&
(opacity >= 1 - kEhCloseEnough || defer_applying_opacity_)) {
auto scale = Vector2(bounds.GetSize() / Size(texture_->GetSize()));
return Snapshot{
.texture = texture_,
.transform = entity.GetTransform() *
Matrix::MakeTranslation(bounds.GetOrigin()) *
Matrix::MakeScale(scale),
.sampler_descriptor = sampler_descriptor.value_or(sampler_descriptor_),
.opacity = opacity};
}
return Contents::RenderToSnapshot(
renderer, // renderer
entity, // entity
std::nullopt, // coverage_limit
sampler_descriptor.value_or(sampler_descriptor_), // sampler_descriptor
true, // msaa_enabled
/*mip_count=*/mip_count,
label); // label
}
bool TextureContents::Render(const ContentContext& renderer,
const Entity& entity,
RenderPass& pass) const {
auto capture = entity.GetCapture().CreateChild("TextureContents");
using VS = TextureFillVertexShader;
using FS = TextureFillFragmentShader;
using FSStrictSrc = TextureFillStrictSrcFragmentShader;
using FSExternal = TextureFillExternalFragmentShader;
if (destination_rect_.IsEmpty() || source_rect_.IsEmpty() ||
texture_ == nullptr || texture_->GetSize().IsEmpty()) {
return true; // Nothing to render.
}
bool is_external_texture =
texture_->GetTextureDescriptor().type == TextureType::kTextureExternalOES;
auto source_rect = capture.AddRect("Source rect", source_rect_);
auto texture_coords =
Rect::MakeSize(texture_->GetSize()).Project(source_rect);
VertexBufferBuilder<VS::PerVertexData> vertex_builder;
auto destination_rect =
capture.AddRect("Destination rect", destination_rect_);
vertex_builder.AddVertices({
{destination_rect.GetLeftTop(), texture_coords.GetLeftTop()},
{destination_rect.GetRightTop(), texture_coords.GetRightTop()},
{destination_rect.GetLeftBottom(), texture_coords.GetLeftBottom()},
{destination_rect.GetRightBottom(), texture_coords.GetRightBottom()},
});
auto& host_buffer = renderer.GetTransientsBuffer();
VS::FrameInfo frame_info;
frame_info.depth = entity.GetShaderClipDepth();
frame_info.mvp = pass.GetOrthographicTransform() *
capture.AddMatrix("Transform", entity.GetTransform());
frame_info.texture_sampler_y_coord_scale = texture_->GetYCoordScale();
frame_info.alpha = capture.AddScalar("Alpha", GetOpacity());
#ifdef IMPELLER_DEBUG
if (label_.empty()) {
pass.SetCommandLabel("Texture Fill");
} else {
pass.SetCommandLabel("Texture Fill: " + label_);
}
#endif // IMPELLER_DEBUG
auto pipeline_options = OptionsFromPassAndEntity(pass, entity);
if (!stencil_enabled_) {
pipeline_options.stencil_mode = ContentContextOptions::StencilMode::kIgnore;
}
pipeline_options.primitive_type = PrimitiveType::kTriangleStrip;
std::shared_ptr<Pipeline<PipelineDescriptor>> pipeline;
#ifdef IMPELLER_ENABLE_OPENGLES
if (is_external_texture) {
pipeline = renderer.GetTextureExternalPipeline(pipeline_options);
}
#endif // IMPELLER_ENABLE_OPENGLES
if (!pipeline) {
if (strict_source_rect_enabled_) {
pipeline = renderer.GetTextureStrictSrcPipeline(pipeline_options);
} else {
pipeline = renderer.GetTexturePipeline(pipeline_options);
}
}
pass.SetPipeline(pipeline);
pass.SetStencilReference(entity.GetClipDepth());
pass.SetVertexBuffer(vertex_builder.CreateVertexBuffer(host_buffer));
VS::BindFrameInfo(pass, host_buffer.EmplaceUniform(frame_info));
if (is_external_texture) {
FSExternal::BindSAMPLEREXTERNALOESTextureSampler(
pass, texture_,
renderer.GetContext()->GetSamplerLibrary()->GetSampler(
sampler_descriptor_));
} else if (strict_source_rect_enabled_) {
// For a strict source rect, shrink the texture coordinate range by half a
// texel to ensure that linear filtering does not sample anything outside
// the source rect bounds.
auto strict_texture_coords =
Rect::MakeSize(texture_->GetSize()).Project(source_rect.Expand(-0.5));
FSStrictSrc::FragInfo frag_info;
frag_info.source_rect = Vector4(strict_texture_coords.GetLTRB());
FSStrictSrc::BindFragInfo(pass, host_buffer.EmplaceUniform(frag_info));
FSStrictSrc::BindTextureSampler(
pass, texture_,
renderer.GetContext()->GetSamplerLibrary()->GetSampler(
sampler_descriptor_));
} else {
FS::BindTextureSampler(
pass, texture_,
renderer.GetContext()->GetSamplerLibrary()->GetSampler(
sampler_descriptor_));
}
return pass.Draw().ok();
}
void TextureContents::SetSourceRect(const Rect& source_rect) {
source_rect_ = source_rect;
}
const Rect& TextureContents::GetSourceRect() const {
return source_rect_;
}
void TextureContents::SetStrictSourceRect(bool strict) {
strict_source_rect_enabled_ = strict;
}
bool TextureContents::GetStrictSourceRect() const {
return strict_source_rect_enabled_;
}
void TextureContents::SetSamplerDescriptor(SamplerDescriptor desc) {
sampler_descriptor_ = std::move(desc);
}
const SamplerDescriptor& TextureContents::GetSamplerDescriptor() const {
return sampler_descriptor_;
}
void TextureContents::SetDeferApplyingOpacity(bool defer_applying_opacity) {
defer_applying_opacity_ = defer_applying_opacity;
}
} // namespace impeller
| engine/impeller/entity/contents/texture_contents.cc/0 | {
"file_path": "engine/impeller/entity/contents/texture_contents.cc",
"repo_id": "engine",
"token_count": 2990
} | 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 <memory>
#include "flutter/testing/testing.h"
#include "gtest/gtest.h"
#include "impeller/core/formats.h"
#include "impeller/entity/entity_pass_target.h"
#include "impeller/entity/entity_playground.h"
namespace impeller {
namespace testing {
using EntityPassTargetTest = EntityPlayground;
INSTANTIATE_PLAYGROUND_SUITE(EntityPassTargetTest);
TEST_P(EntityPassTargetTest, SwapWithMSAATexture) {
if (GetContentContext()
->GetDeviceCapabilities()
.SupportsImplicitResolvingMSAA()) {
GTEST_SKIP() << "Implicit MSAA is used on this device.";
}
auto content_context = GetContentContext();
auto buffer = content_context->GetContext()->CreateCommandBuffer();
auto render_target =
GetContentContext()->GetRenderTargetCache()->CreateOffscreenMSAA(
*content_context->GetContext(), {100, 100},
/*mip_count=*/1);
auto entity_pass_target = EntityPassTarget(render_target, false, false);
auto color0 = entity_pass_target.GetRenderTarget()
.GetColorAttachments()
.find(0u)
->second;
auto msaa_tex = color0.texture;
auto resolve_tex = color0.resolve_texture;
entity_pass_target.Flip(
*content_context->GetContext()->GetResourceAllocator());
color0 = entity_pass_target.GetRenderTarget()
.GetColorAttachments()
.find(0u)
->second;
ASSERT_EQ(msaa_tex, color0.texture);
ASSERT_NE(resolve_tex, color0.resolve_texture);
}
TEST_P(EntityPassTargetTest, SwapWithMSAAImplicitResolve) {
auto content_context = GetContentContext();
auto buffer = content_context->GetContext()->CreateCommandBuffer();
auto context = content_context->GetContext();
auto& allocator = *context->GetResourceAllocator();
// Emulate implicit MSAA resolve by making color resolve and msaa texture the
// same.
RenderTarget render_target;
{
PixelFormat pixel_format =
context->GetCapabilities()->GetDefaultColorFormat();
// Create MSAA color texture.
TextureDescriptor color0_tex_desc;
color0_tex_desc.storage_mode = StorageMode::kDevicePrivate;
color0_tex_desc.type = TextureType::kTexture2DMultisample;
color0_tex_desc.sample_count = SampleCount::kCount4;
color0_tex_desc.format = pixel_format;
color0_tex_desc.size = ISize{100, 100};
color0_tex_desc.usage = TextureUsage::kRenderTarget;
auto color0_msaa_tex = allocator.CreateTexture(color0_tex_desc);
// Color attachment.
ColorAttachment color0;
color0.load_action = LoadAction::kDontCare;
color0.store_action = StoreAction::kStoreAndMultisampleResolve;
color0.texture = color0_msaa_tex;
color0.resolve_texture = color0_msaa_tex;
render_target.SetColorAttachment(color0, 0u);
render_target.SetStencilAttachment(std::nullopt);
}
auto entity_pass_target = EntityPassTarget(render_target, false, true);
auto color0 = entity_pass_target.GetRenderTarget()
.GetColorAttachments()
.find(0u)
->second;
auto msaa_tex = color0.texture;
auto resolve_tex = color0.resolve_texture;
ASSERT_EQ(msaa_tex, resolve_tex);
entity_pass_target.Flip(
*content_context->GetContext()->GetResourceAllocator());
color0 = entity_pass_target.GetRenderTarget()
.GetColorAttachments()
.find(0u)
->second;
ASSERT_NE(msaa_tex, color0.texture);
ASSERT_NE(resolve_tex, color0.resolve_texture);
ASSERT_EQ(color0.texture, color0.resolve_texture);
}
} // namespace testing
} // namespace impeller
| engine/impeller/entity/entity_pass_target_unittests.cc/0 | {
"file_path": "engine/impeller/entity/entity_pass_target_unittests.cc",
"repo_id": "engine",
"token_count": 1440
} | 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.
#ifndef FLUTTER_IMPELLER_ENTITY_GEOMETRY_LINE_GEOMETRY_H_
#define FLUTTER_IMPELLER_ENTITY_GEOMETRY_LINE_GEOMETRY_H_
#include <type_traits>
#include "impeller/entity/geometry/geometry.h"
namespace impeller {
class LineGeometry final : public Geometry {
public:
explicit LineGeometry(Point p0, Point p1, Scalar width, Cap cap);
~LineGeometry() = default;
static Scalar ComputePixelHalfWidth(const Matrix& transform, Scalar width);
// |Geometry|
bool CoversArea(const Matrix& transform, const Rect& rect) const override;
// |Geometry|
bool IsAxisAlignedRect() const override;
private:
// Computes the 4 corners of a rectangle that defines the line and
// possibly extended endpoints which will be rendered under the given
// transform, and returns true if such a rectangle is defined.
//
// The coordinates will be generated in the original coordinate system
// of the line end points and the transform will only be used to determine
// the minimum line width.
//
// For kButt and kSquare end caps the ends should always be exteded as
// per that decoration, but for kRound caps the ends might be extended
// if the goal is to get a conservative bounds and might not be extended
// if the calling code is planning to draw the round caps on the ends.
//
// @return true if the transform and width were not degenerate
bool ComputeCorners(Point corners[4],
const Matrix& transform,
bool extend_endpoints) const;
Vector2 ComputeAlongVector(const Matrix& transform,
bool allow_zero_length) const;
// |Geometry|
GeometryResult GetPositionBuffer(const ContentContext& renderer,
const Entity& entity,
RenderPass& pass) const override;
// |Geometry|
GeometryVertexType GetVertexType() const override;
// |Geometry|
std::optional<Rect> GetCoverage(const Matrix& transform) const override;
// |Geometry|
GeometryResult GetPositionUVBuffer(Rect texture_coverage,
Matrix effect_transform,
const ContentContext& renderer,
const Entity& entity,
RenderPass& pass) const override;
Point p0_;
Point p1_;
Scalar width_;
Cap cap_;
LineGeometry(const LineGeometry&) = delete;
LineGeometry& operator=(const LineGeometry&) = delete;
};
static_assert(std::is_trivially_destructible<LineGeometry>::value);
} // namespace impeller
#endif // FLUTTER_IMPELLER_ENTITY_GEOMETRY_LINE_GEOMETRY_H_
| engine/impeller/entity/geometry/line_geometry.h/0 | {
"file_path": "engine/impeller/entity/geometry/line_geometry.h",
"repo_id": "engine",
"token_count": 1031
} | 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/blending.glsl>
#include <impeller/color.glsl>
#include <impeller/texture.glsl>
#include <impeller/types.glsl>
#include "blend_select.glsl"
layout(constant_id = 0) const float blend_type = 0.0;
layout(constant_id = 1) const float supports_decal = 1.0;
uniform BlendInfo {
float16_t dst_input_alpha;
float16_t src_input_alpha;
float16_t color_factor;
f16vec4 color; // This color input is expected to be unpremultiplied.
float supports_decal_sampler_address_mode;
}
blend_info;
uniform f16sampler2D texture_sampler_dst;
uniform f16sampler2D texture_sampler_src;
in vec2 v_dst_texture_coords;
in vec2 v_src_texture_coords;
out f16vec4 frag_color;
f16vec4 Sample(f16sampler2D texture_sampler, vec2 texture_coords) {
if (supports_decal > 0.0) {
return texture(texture_sampler, texture_coords);
}
return IPHalfSampleDecal(texture_sampler, texture_coords);
}
void main() {
f16vec4 dst =
IPHalfUnpremultiply(Sample(texture_sampler_dst, // sampler
v_dst_texture_coords // texture coordinates
));
dst *= blend_info.dst_input_alpha;
f16vec4 src = blend_info.color_factor > 0.0hf
? blend_info.color
: IPHalfUnpremultiply(Sample(
texture_sampler_src, // sampler
v_src_texture_coords // texture coordinates
));
if (blend_info.color_factor == 0.0hf) {
src.a *= blend_info.src_input_alpha;
}
f16vec3 blend_result = AdvancedBlend(dst.rgb, src.rgb, int(blend_type));
frag_color = IPApplyBlendedColor(dst, src, blend_result);
}
| engine/impeller/entity/shaders/blending/advanced_blend.frag/0 | {
"file_path": "engine/impeller/entity/shaders/blending/advanced_blend.frag",
"repo_id": "engine",
"token_count": 808
} | 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.
precision mediump float;
#include <impeller/color.glsl>
#include <impeller/constants.glsl>
#include <impeller/texture.glsl>
#include <impeller/types.glsl>
uniform sampler2D texture_sampler;
uniform FragInfo {
highp vec2 center;
float bias;
float scale;
float tile_mode;
vec4 decal_border_color;
float texture_sampler_y_coord_scale;
float alpha;
vec2 half_texel;
}
frag_info;
highp in vec2 v_position;
out vec4 frag_color;
void main() {
vec2 coord = v_position - frag_info.center;
float angle = atan(-coord.y, -coord.x);
float t = (angle * k1Over2Pi + 0.5 + frag_info.bias) * frag_info.scale;
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/sweep_gradient_fill.frag/0 | {
"file_path": "engine/impeller/entity/shaders/sweep_gradient_fill.frag",
"repo_id": "engine",
"token_count": 654
} | 196 |
// 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_FIXTURES_GOLDEN_PATHS_H_
#define FLUTTER_IMPELLER_FIXTURES_GOLDEN_PATHS_H_
#include <vector>
#include "impeller/geometry/path_component.h"
#include "impeller/geometry/point.h"
namespace impeller {
namespace testing {
std::vector<Point> golden_cubic_and_quad_points = {
{139.982, 19.5003}, {140.018, 20.4997}, {131.747, 19.8026},
{131.783, 20.802}, {131.715, 19.8048}, {131.815, 20.7998},
{123.622, 20.6102}, {123.721, 21.6053}, {123.59, 20.6145},
{123.753, 21.601}, {115.652, 21.9306}, {115.816, 22.9171},
{115.619, 21.9372}, {115.848, 22.9105}, {107.85, 23.7687},
{108.08, 24.742}, {107.817, 23.7777}, {108.113, 24.733},
{100.23, 26.1264}, {100.526, 27.0817}, {100.197, 26.1378},
{100.558, 27.0703}, {92.8037, 29.0025}, {93.165, 29.935},
{92.7736, 29.0154}, {93.1952, 29.9221}, {85.708, 32.3003},
{86.1296, 33.2071}, {85.68, 32.3144}, {86.1576, 33.193},
{78.8865, 36.008}, {79.3641, 36.8865}, {78.8588, 36.0242},
{79.3918, 36.8703}, {72.3485, 40.125}, {72.8815, 40.9711},
{72.3216, 40.1432}, {72.9084, 40.9529}, {66.1045, 44.6479},
{66.6913, 45.4577}, {66.0788, 44.6679}, {66.717, 45.4378},
{60.1632, 49.5711}, {60.8014, 50.341}, {60.139, 49.5924},
{60.8255, 50.3196}, {54.5317, 54.8864}, {55.2183, 55.6136},
{54.5094, 54.909}, {55.2406, 55.591}, {49.254, 60.5436},
{49.9853, 61.2257}, {49.2329, 60.5677}, {50.0063, 61.2016},
{44.3684, 66.5025}, {45.1418, 67.1364}, {44.3488, 66.5281},
{45.1614, 67.1108}, {39.8827, 72.7564}, {40.6954, 73.3391},
{39.8648, 72.7832}, {40.7133, 73.3123}, {35.8029, 79.297},
{36.6515, 79.8261}, {35.7869, 79.3246}, {36.6675, 79.7985},
{32.1328, 86.1144}, {33.0134, 86.5883}, {32.1188, 86.1424},
{33.0273, 86.5603}, {28.8739, 93.1973}, {29.7824, 93.6152},
{28.8613, 93.2272}, {29.795, 93.5853}, {26.0399, 100.583},
{26.9736, 100.941}, {26.0288, 100.615}, {26.9847, 100.908},
{23.7144, 108.15}, {24.6704, 108.444}, {23.7056, 108.183},
{24.6792, 108.411}, {21.9002, 115.886}, {22.8738, 116.115},
{21.8937, 115.919}, {22.8804, 116.082}, {20.5962, 123.779},
{21.5828, 123.942}, {20.592, 123.812}, {21.5871, 123.91},
{19.7985, 131.816}, {20.7936, 131.914}, {19.7964, 131.847},
{20.7957, 131.883}, {19.5003, 139.982}, {20.4997, 140.018},
{20.2883, 140.409}, {19.7117, 139.591}, {29.9421, 133.595},
{29.3655, 132.778}, {29.9544, 133.586}, {29.3532, 132.787},
{39.1905, 126.639}, {38.5894, 125.839}, {39.2039, 126.628},
{38.576, 125.85}, {47.9822, 119.545}, {47.3542, 118.767},
{47.9968, 119.533}, {47.3396, 118.779}, {56.2739, 112.316},
{55.6167, 111.562}, {56.2898, 112.302}, {55.6008, 111.577},
{64.0197, 104.952}, {63.3307, 104.228}, {64.0369, 104.935},
{63.3134, 104.245}, {71.1714, 97.4578}, {70.4479, 96.7675},
{71.1899, 97.4373}, {70.4294, 96.7879}, {77.6791, 89.8381},
{76.9187, 89.1887}, {77.6987, 89.8137}, {76.8991, 89.2131},
{83.4923, 82.1009}, {82.6928, 81.5003}, {83.5125, 82.0718},
{82.6725, 81.5293}, {88.5609, 74.2563}, {87.7209, 73.7138},
{88.5812, 74.2221}, {87.7007, 73.748}, {92.8369, 66.3173},
{91.9564, 65.8432}, {92.8562, 66.2772}, {91.9371, 65.8833},
{96.2756, 58.299}, {95.3564, 57.9051}, {96.2927, 58.253},
{95.3393, 57.951}, {98.8374, 50.2196}, {97.8841, 49.9176},
{98.8508, 50.1681}, {97.8708, 49.969}, {100.49, 42.0995},
{99.51, 41.9005}, {100.49, 42.0995}, {99.51, 41.9005},
};
} // namespace testing
} // namespace impeller
#endif // FLUTTER_IMPELLER_FIXTURES_GOLDEN_PATHS_H_
| engine/impeller/fixtures/golden_paths.h/0 | {
"file_path": "engine/impeller/fixtures/golden_paths.h",
"repo_id": "engine",
"token_count": 2015
} | 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.
// Declare samplers in different order than usage.
uniform sampler2D textureA;
uniform sampler2D textureB;
out vec4 frag_color;
void main() {
vec4 sample_1 = texture(textureB, vec2(1.0));
vec4 sample_2 = texture(textureA, vec2(1.0));
frag_color = sample_1 + sample_2;
}
| engine/impeller/fixtures/ordering/shader_with_samplers.frag/0 | {
"file_path": "engine/impeller/fixtures/ordering/shader_with_samplers.frag",
"repo_id": "engine",
"token_count": 146
} | 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.
out vec4 frag_color;
layout(input_attachment_index = 0) uniform subpassInputMS subpass_input;
void main() {
frag_color = subpassLoad(subpass_input, 0).gbra;
}
| engine/impeller/fixtures/swizzle.frag/0 | {
"file_path": "engine/impeller/fixtures/swizzle.frag",
"repo_id": "engine",
"token_count": 101
} | 199 |
# The Impeller Geometry Library
Set of utilities used by most graphics operations. While the utilities
themselves are rendering backend agnostic, the layout and packing of the various
POD structs is arranged such that these can be copied into device memory
directly. The supported operations also mimic GLSL to some extent. For this
reason, the Impeller shader compiler and reflector uses these utilities in
generated code.
| engine/impeller/geometry/README.md/0 | {
"file_path": "engine/impeller/geometry/README.md",
"repo_id": "engine",
"token_count": 93
} | 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.
#include "impeller/geometry/path.h"
#include <optional>
#include <variant>
#include "flutter/fml/logging.h"
#include "impeller/geometry/path_component.h"
#include "impeller/geometry/point.h"
namespace impeller {
Path::Path() : data_(new Data()) {}
Path::Path(Data data) : data_(std::make_shared<Data>(std::move(data))) {}
Path::~Path() = default;
std::tuple<size_t, size_t> Path::Polyline::GetContourPointBounds(
size_t contour_index) const {
if (contour_index >= contours.size()) {
return {points->size(), points->size()};
}
const size_t start_index = contours.at(contour_index).start_index;
const size_t end_index = (contour_index >= contours.size() - 1)
? points->size()
: contours.at(contour_index + 1).start_index;
return std::make_tuple(start_index, end_index);
}
size_t Path::GetComponentCount(std::optional<ComponentType> type) const {
if (!type.has_value()) {
return data_->components.size();
}
auto type_value = type.value();
if (type_value == ComponentType::kContour) {
return data_->contours.size();
}
size_t count = 0u;
for (const auto& component : data_->components) {
if (component.type == type_value) {
count++;
}
}
return count;
}
FillType Path::GetFillType() const {
return data_->fill;
}
bool Path::IsConvex() const {
return data_->convexity == Convexity::kConvex;
}
bool Path::IsEmpty() const {
return data_->points.empty();
}
void Path::EnumerateComponents(
const Applier<LinearPathComponent>& linear_applier,
const Applier<QuadraticPathComponent>& quad_applier,
const Applier<CubicPathComponent>& cubic_applier,
const Applier<ContourComponent>& contour_applier) const {
auto& points = data_->points;
size_t currentIndex = 0;
for (const auto& component : data_->components) {
switch (component.type) {
case ComponentType::kLinear:
if (linear_applier) {
linear_applier(currentIndex,
LinearPathComponent(points[component.index],
points[component.index + 1]));
}
break;
case ComponentType::kQuadratic:
if (quad_applier) {
quad_applier(currentIndex,
QuadraticPathComponent(points[component.index],
points[component.index + 1],
points[component.index + 2]));
}
break;
case ComponentType::kCubic:
if (cubic_applier) {
cubic_applier(currentIndex,
CubicPathComponent(points[component.index],
points[component.index + 1],
points[component.index + 2],
points[component.index + 3]));
}
break;
case ComponentType::kContour:
if (contour_applier) {
contour_applier(currentIndex, data_->contours[component.index]);
}
break;
}
currentIndex++;
}
}
bool Path::GetLinearComponentAtIndex(size_t index,
LinearPathComponent& linear) const {
auto& components = data_->components;
if (index >= components.size()) {
return false;
}
if (components[index].type != ComponentType::kLinear) {
return false;
}
auto& points = data_->points;
auto point_index = components[index].index;
linear = LinearPathComponent(points[point_index], points[point_index + 1]);
return true;
}
bool Path::GetQuadraticComponentAtIndex(
size_t index,
QuadraticPathComponent& quadratic) const {
auto& components = data_->components;
if (index >= components.size()) {
return false;
}
if (components[index].type != ComponentType::kQuadratic) {
return false;
}
auto& points = data_->points;
auto point_index = components[index].index;
quadratic = QuadraticPathComponent(
points[point_index], points[point_index + 1], points[point_index + 2]);
return true;
}
bool Path::GetCubicComponentAtIndex(size_t index,
CubicPathComponent& cubic) const {
auto& components = data_->components;
if (index >= components.size()) {
return false;
}
if (components[index].type != ComponentType::kCubic) {
return false;
}
auto& points = data_->points;
auto point_index = components[index].index;
cubic = CubicPathComponent(points[point_index], points[point_index + 1],
points[point_index + 2], points[point_index + 3]);
return true;
}
bool Path::GetContourComponentAtIndex(size_t index,
ContourComponent& move) const {
auto& components = data_->components;
if (index >= components.size()) {
return false;
}
if (components[index].type != ComponentType::kContour) {
return false;
}
move = data_->contours[components[index].index];
return true;
}
Path::Polyline::Polyline(Path::Polyline::PointBufferPtr point_buffer,
Path::Polyline::ReclaimPointBufferCallback reclaim)
: points(std::move(point_buffer)), reclaim_points_(std::move(reclaim)) {
FML_DCHECK(points);
}
Path::Polyline::Polyline(Path::Polyline&& other) {
points = std::move(other.points);
reclaim_points_ = std::move(other.reclaim_points_);
contours = std::move(other.contours);
}
Path::Polyline::~Polyline() {
if (reclaim_points_) {
points->clear();
reclaim_points_(std::move(points));
}
}
Path::Polyline Path::CreatePolyline(
Scalar scale,
Path::Polyline::PointBufferPtr point_buffer,
Path::Polyline::ReclaimPointBufferCallback reclaim) const {
Polyline polyline(std::move(point_buffer), std::move(reclaim));
auto& path_components = data_->components;
auto& path_points = data_->points;
auto get_path_component = [&path_components, &path_points](
size_t component_i) -> PathComponentVariant {
if (component_i >= path_components.size()) {
return std::monostate{};
}
const auto& component = path_components[component_i];
switch (component.type) {
case ComponentType::kLinear:
return reinterpret_cast<const LinearPathComponent*>(
&path_points[component.index]);
case ComponentType::kQuadratic:
return reinterpret_cast<const QuadraticPathComponent*>(
&path_points[component.index]);
case ComponentType::kCubic:
return reinterpret_cast<const CubicPathComponent*>(
&path_points[component.index]);
case ComponentType::kContour:
return std::monostate{};
}
};
auto compute_contour_start_direction =
[&get_path_component](size_t current_path_component_index) {
size_t next_component_index = current_path_component_index + 1;
while (!std::holds_alternative<std::monostate>(
get_path_component(next_component_index))) {
auto next_component = get_path_component(next_component_index);
auto maybe_vector =
std::visit(PathComponentStartDirectionVisitor(), next_component);
if (maybe_vector.has_value()) {
return maybe_vector.value();
} else {
next_component_index++;
}
}
return Vector2(0, -1);
};
std::vector<PolylineContour::Component> poly_components;
std::optional<size_t> previous_path_component_index;
auto end_contour = [&polyline, &previous_path_component_index,
&get_path_component, &poly_components]() {
// Whenever a contour has ended, extract the exact end direction from
// the last component.
if (polyline.contours.empty()) {
return;
}
if (!previous_path_component_index.has_value()) {
return;
}
auto& contour = polyline.contours.back();
contour.end_direction = Vector2(0, 1);
contour.components = poly_components;
poly_components.clear();
size_t previous_index = previous_path_component_index.value();
while (!std::holds_alternative<std::monostate>(
get_path_component(previous_index))) {
auto previous_component = get_path_component(previous_index);
auto maybe_vector =
std::visit(PathComponentEndDirectionVisitor(), previous_component);
if (maybe_vector.has_value()) {
contour.end_direction = maybe_vector.value();
break;
} else {
if (previous_index == 0) {
break;
}
previous_index--;
}
}
};
for (size_t component_i = 0; component_i < path_components.size();
component_i++) {
const auto& path_component = path_components[component_i];
switch (path_component.type) {
case ComponentType::kLinear:
poly_components.push_back({
.component_start_index = polyline.points->size() - 1,
.is_curve = false,
});
reinterpret_cast<const LinearPathComponent*>(
&path_points[path_component.index])
->AppendPolylinePoints(*polyline.points);
previous_path_component_index = component_i;
break;
case ComponentType::kQuadratic:
poly_components.push_back({
.component_start_index = polyline.points->size() - 1,
.is_curve = true,
});
reinterpret_cast<const QuadraticPathComponent*>(
&path_points[path_component.index])
->AppendPolylinePoints(scale, *polyline.points);
previous_path_component_index = component_i;
break;
case ComponentType::kCubic:
poly_components.push_back({
.component_start_index = polyline.points->size() - 1,
.is_curve = true,
});
reinterpret_cast<const CubicPathComponent*>(
&path_points[path_component.index])
->AppendPolylinePoints(scale, *polyline.points);
previous_path_component_index = component_i;
break;
case ComponentType::kContour:
if (component_i == path_components.size() - 1) {
// If the last component is a contour, that means it's an empty
// contour, so skip it.
continue;
}
end_contour();
Vector2 start_direction = compute_contour_start_direction(component_i);
const auto& contour = data_->contours[path_component.index];
polyline.contours.push_back({.start_index = polyline.points->size(),
.is_closed = contour.is_closed,
.start_direction = start_direction,
.components = poly_components});
polyline.points->push_back(contour.destination);
break;
}
}
end_contour();
return polyline;
}
std::optional<Rect> Path::GetBoundingBox() const {
return data_->bounds;
}
std::optional<Rect> Path::GetTransformedBoundingBox(
const Matrix& transform) const {
auto bounds = GetBoundingBox();
if (!bounds.has_value()) {
return std::nullopt;
}
return bounds->TransformBounds(transform);
}
} // namespace impeller
| engine/impeller/geometry/path.cc/0 | {
"file_path": "engine/impeller/geometry/path.cc",
"repo_id": "engine",
"token_count": 4804
} | 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_GEOMETRY_SCALAR_H_
#define FLUTTER_IMPELLER_GEOMETRY_SCALAR_H_
#include <cfloat>
#include <type_traits>
#include <valarray>
#include "impeller/geometry/constants.h"
namespace impeller {
// NOLINTBEGIN(google-explicit-constructor)
using Scalar = float;
template <class T, class = std::enable_if_t<std::is_arithmetic_v<T>>>
constexpr T Absolute(const T& val) {
return val >= T{} ? val : -val;
}
constexpr inline bool ScalarNearlyZero(Scalar x,
Scalar tolerance = kEhCloseEnough) {
return Absolute(x) <= tolerance;
}
constexpr inline bool ScalarNearlyEqual(Scalar x,
Scalar y,
Scalar tolerance = kEhCloseEnough) {
return ScalarNearlyZero(x - y, tolerance);
}
struct Degrees;
struct Radians {
Scalar radians = 0.0;
constexpr Radians() = default;
explicit constexpr Radians(Scalar p_radians) : radians(p_radians) {}
};
struct Degrees {
Scalar degrees = 0.0;
constexpr Degrees() = default;
explicit constexpr Degrees(Scalar p_degrees) : degrees(p_degrees) {}
constexpr operator Radians() const {
return Radians{degrees * kPi / 180.0f};
};
};
// NOLINTEND(google-explicit-constructor)
} // namespace impeller
#endif // FLUTTER_IMPELLER_GEOMETRY_SCALAR_H_
| engine/impeller/geometry/scalar.h/0 | {
"file_path": "engine/impeller/geometry/scalar.h",
"repo_id": "engine",
"token_count": 619
} | 202 |
# Impeller Golden Tests
This is the executable that will generate the golden image results that can then
be sent to Skia Gold vial the
[golden_tests_harvester]("../../tools/golden_tests_harvester").
Running these tests should happen from
[//flutter/testing/run_tests.py](../../testing/run_tests.py). That will do all
the steps to generate the golden images and transmit them to Skia Gold. If you
run the tests locally it will not actually upload anything. That only happens if
the script is executed from LUCI.
Example invocation:
```sh
./run_tests.py --variant="host_debug_unopt_arm64" --type="impeller-golden"
```
Currently these tests are only supported on macOS and only test the Metal
backend to Impeller.
## Adding tests
To add a golden image test, the `impeller_golden_tests` target must be modified
to generate the correct image and modification to its generated `digest.json`.
If a test case is added to [golden_tests.cc](./golden_tests.cc), for example
"GoldenTests.FooBar", that will turn into the golden test
"impeller_GoldenTests_Foobar" automatically if the `SaveScreenshot()` function
is used.
The examples in `golden_tests.cc` use GLFW for rendering the tests, but
technically anything could be used. Using the `SaveScreenshot()` function will
automatically update the `GoldenDigest::Instance()` which will make sure that it
is included in the generated `digest.json`. If that function isn't used the
`GoldenDigest` should be updated manually.
| engine/impeller/golden_tests/README.md/0 | {
"file_path": "engine/impeller/golden_tests/README.md",
"repo_id": "engine",
"token_count": 411
} | 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/golden_tests/working_directory.h"
#include "flutter/fml/paths.h"
namespace impeller {
namespace testing {
WorkingDirectory* WorkingDirectory::instance_ = nullptr;
WorkingDirectory::WorkingDirectory() {}
WorkingDirectory* WorkingDirectory::Instance() {
if (!instance_) {
instance_ = new WorkingDirectory();
}
return instance_;
}
std::string WorkingDirectory::GetFilenamePath(
const std::string& filename) const {
return fml::paths::JoinPaths({path_, filename});
}
void WorkingDirectory::SetPath(const std::string& path) {
FML_CHECK(did_set_ == false);
path_ = path;
did_set_ = true;
}
} // namespace testing
} // namespace impeller
| engine/impeller/golden_tests/working_directory.cc/0 | {
"file_path": "engine/impeller/golden_tests/working_directory.cc",
"repo_id": "engine",
"token_count": 259
} | 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 "impeller/playground/image/backends/skia/compressed_image_skia.h"
#include <memory>
#include "impeller/base/validation.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "third_party/skia/include/core/SkData.h"
#include "third_party/skia/include/core/SkImage.h"
#include "third_party/skia/include/core/SkPixmap.h"
#include "third_party/skia/include/core/SkRefCnt.h"
namespace impeller {
std::shared_ptr<CompressedImage> CompressedImageSkia::Create(
std::shared_ptr<const fml::Mapping> allocation) {
// There is only one backend today.
if (!allocation) {
return nullptr;
}
return std::make_shared<CompressedImageSkia>(std::move(allocation));
}
CompressedImageSkia::CompressedImageSkia(
std::shared_ptr<const fml::Mapping> allocation)
: CompressedImage(std::move(allocation)) {}
CompressedImageSkia::~CompressedImageSkia() = default;
// |CompressedImage|
DecompressedImage CompressedImageSkia::Decode() const {
if (!IsValid()) {
return {};
}
if (source_->GetSize() == 0u) {
return {};
}
auto src = new std::shared_ptr<const fml::Mapping>(source_);
auto sk_data = SkData::MakeWithProc(
source_->GetMapping(), source_->GetSize(),
[](const void* ptr, void* context) {
delete reinterpret_cast<decltype(src)>(context);
},
src);
auto image = SkImages::DeferredFromEncodedData(sk_data);
if (!image) {
return {};
}
const auto dims = image->imageInfo().dimensions();
auto info = SkImageInfo::Make(dims.width(), dims.height(),
kRGBA_8888_SkColorType, kPremul_SkAlphaType);
auto bitmap = std::make_shared<SkBitmap>();
if (!bitmap->tryAllocPixels(info)) {
VALIDATION_LOG << "Could not allocate arena for decompressing image.";
return {};
}
if (!image->readPixels(nullptr, bitmap->pixmap(), 0, 0)) {
VALIDATION_LOG << "Could not decompress image into arena.";
return {};
}
auto mapping = std::make_shared<fml::NonOwnedMapping>(
reinterpret_cast<const uint8_t*>(bitmap->pixmap().addr()), // data
bitmap->pixmap().rowBytes() * bitmap->pixmap().height(), // size
[bitmap](const uint8_t* data, size_t size) mutable {
bitmap.reset();
} // proc
);
return {
{bitmap->pixmap().dimensions().fWidth,
bitmap->pixmap().dimensions().fHeight}, // size
DecompressedImage::Format::kRGBA, // format
mapping // allocation
};
}
} // namespace impeller
| engine/impeller/playground/image/backends/skia/compressed_image_skia.cc/0 | {
"file_path": "engine/impeller/playground/image/backends/skia/compressed_image_skia.cc",
"repo_id": "engine",
"token_count": 1050
} | 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.
#ifndef FLUTTER_IMPELLER_PLAYGROUND_PLAYGROUND_TEST_H_
#define FLUTTER_IMPELLER_PLAYGROUND_PLAYGROUND_TEST_H_
#include <memory>
#include "flutter/fml/macros.h"
#include "flutter/testing/test_args.h"
#include "flutter/testing/testing.h"
#include "impeller/geometry/scalar.h"
#include "impeller/playground/playground.h"
#include "impeller/playground/switches.h"
#if FML_OS_MACOSX
#include "flutter/fml/platform/darwin/scoped_nsautorelease_pool.h"
#endif
namespace impeller {
class PlaygroundTest : public Playground,
public ::testing::TestWithParam<PlaygroundBackend> {
public:
PlaygroundTest();
virtual ~PlaygroundTest();
void SetUp() override;
void TearDown() override;
PlaygroundBackend GetBackend() const;
// |Playground|
std::unique_ptr<fml::Mapping> OpenAssetAsMapping(
std::string asset_name) const override;
RuntimeStage::Map OpenAssetAsRuntimeStage(const char* asset_name) const;
// |Playground|
std::string GetWindowTitle() const override;
private:
// |Playground|
bool ShouldKeepRendering() const;
#if FML_OS_MACOSX
fml::ScopedNSAutoreleasePool autorelease_pool_;
#endif
PlaygroundTest(const PlaygroundTest&) = delete;
PlaygroundTest& operator=(const PlaygroundTest&) = delete;
};
#define INSTANTIATE_PLAYGROUND_SUITE(playground) \
[[maybe_unused]] const char* kYouInstantiated##playground##MultipleTimes = \
""; \
INSTANTIATE_TEST_SUITE_P( \
Play, playground, \
::testing::Values(PlaygroundBackend::kMetal, \
PlaygroundBackend::kOpenGLES, \
PlaygroundBackend::kVulkan), \
[](const ::testing::TestParamInfo<PlaygroundTest::ParamType>& info) { \
return PlaygroundBackendToString(info.param); \
});
#define INSTANTIATE_METAL_PLAYGROUND_SUITE(playground) \
[[maybe_unused]] const char* kYouInstantiated##playground##MultipleTimes = \
""; \
INSTANTIATE_TEST_SUITE_P( \
Play, playground, ::testing::Values(PlaygroundBackend::kMetal), \
[](const ::testing::TestParamInfo<PlaygroundTest::ParamType>& info) { \
return PlaygroundBackendToString(info.param); \
});
#define INSTANTIATE_VULKAN_PLAYGROUND_SUITE(playground) \
[[maybe_unused]] const char* kYouInstantiated##playground##MultipleTimes = \
""; \
INSTANTIATE_TEST_SUITE_P( \
Play, playground, ::testing::Values(PlaygroundBackend::kVulkan), \
[](const ::testing::TestParamInfo<PlaygroundTest::ParamType>& info) { \
return PlaygroundBackendToString(info.param); \
});
#define INSTANTIATE_OPENGLES_PLAYGROUND_SUITE(playground) \
[[maybe_unused]] const char* kYouInstantiated##playground##MultipleTimes = \
""; \
INSTANTIATE_TEST_SUITE_P( \
Play, playground, ::testing::Values(PlaygroundBackend::kOpenGLES), \
[](const ::testing::TestParamInfo<PlaygroundTest::ParamType>& info) { \
return PlaygroundBackendToString(info.param); \
});
} // namespace impeller
#endif // FLUTTER_IMPELLER_PLAYGROUND_PLAYGROUND_TEST_H_
| engine/impeller/playground/playground_test.h/0 | {
"file_path": "engine/impeller/playground/playground_test.h",
"repo_id": "engine",
"token_count": 2007
} | 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/renderer/backend/gles/capabilities_gles.h"
#include "impeller/core/formats.h"
#include "impeller/renderer/backend/gles/proc_table_gles.h"
namespace impeller {
// https://registry.khronos.org/OpenGL/extensions/EXT/EXT_shader_framebuffer_fetch.txt
static const constexpr char* kFramebufferFetchExt =
"GL_EXT_shader_framebuffer_fetch";
static const constexpr char* kTextureBorderClampExt =
"GL_EXT_texture_border_clamp";
static const constexpr char* kNvidiaTextureBorderClampExt =
"GL_NV_texture_border_clamp";
// https://www.khronos.org/registry/OpenGL/extensions/EXT/EXT_multisampled_render_to_texture.txt
static const constexpr char* kMultisampledRenderToTextureExt =
"GL_EXT_multisampled_render_to_texture";
CapabilitiesGLES::CapabilitiesGLES(const ProcTableGLES& gl) {
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS, &value);
max_combined_texture_image_units = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_CUBE_MAP_TEXTURE_SIZE, &value);
max_cube_map_texture_size = value;
}
auto const desc = gl.GetDescription();
if (desc->IsES()) {
GLint value = 0;
gl.GetIntegerv(GL_MAX_FRAGMENT_UNIFORM_VECTORS, &value);
max_fragment_uniform_vectors = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_RENDERBUFFER_SIZE, &value);
max_renderbuffer_size = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_TEXTURE_IMAGE_UNITS, &value);
max_texture_image_units = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_TEXTURE_SIZE, &value);
max_texture_size = ISize{value, value};
}
if (desc->IsES()) {
GLint value = 0;
gl.GetIntegerv(GL_MAX_VARYING_VECTORS, &value);
max_varying_vectors = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_VERTEX_ATTRIBS, &value);
max_vertex_attribs = value;
}
{
GLint value = 0;
gl.GetIntegerv(GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS, &value);
max_vertex_texture_image_units = value;
}
if (desc->IsES()) {
GLint value = 0;
gl.GetIntegerv(GL_MAX_VERTEX_UNIFORM_VECTORS, &value);
max_vertex_uniform_vectors = value;
}
{
GLint values[2] = {};
gl.GetIntegerv(GL_MAX_VIEWPORT_DIMS, values);
max_viewport_dims = ISize{values[0], values[1]};
}
{
GLint value = 0;
gl.GetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS, &value);
num_compressed_texture_formats = value;
}
if (desc->IsES()) {
GLint value = 0;
gl.GetIntegerv(GL_NUM_SHADER_BINARY_FORMATS, &value);
num_shader_binary_formats = value;
}
if (desc->IsES()) {
default_glyph_atlas_format_ = PixelFormat::kA8UNormInt;
} else {
default_glyph_atlas_format_ = PixelFormat::kR8UNormInt;
}
supports_framebuffer_fetch_ = desc->HasExtension(kFramebufferFetchExt);
if (desc->HasExtension(kTextureBorderClampExt) ||
desc->HasExtension(kNvidiaTextureBorderClampExt)) {
supports_decal_sampler_address_mode_ = true;
}
if (desc->HasExtension(kMultisampledRenderToTextureExt)) {
supports_implicit_msaa_ = true;
// We hard-code 4x MSAA, so let's make sure it's supported.
GLint value = 0;
gl.GetIntegerv(GL_MAX_SAMPLES_EXT, &value);
supports_offscreen_msaa_ = value >= 4;
}
is_angle_ = desc->IsANGLE();
}
size_t CapabilitiesGLES::GetMaxTextureUnits(ShaderStage stage) const {
switch (stage) {
case ShaderStage::kVertex:
return max_vertex_texture_image_units;
case ShaderStage::kFragment:
return max_texture_image_units;
case ShaderStage::kUnknown:
case ShaderStage::kCompute:
return 0u;
}
FML_UNREACHABLE();
}
bool CapabilitiesGLES::SupportsOffscreenMSAA() const {
return supports_offscreen_msaa_;
}
bool CapabilitiesGLES::SupportsImplicitResolvingMSAA() const {
return supports_implicit_msaa_;
}
bool CapabilitiesGLES::SupportsSSBO() const {
return false;
}
bool CapabilitiesGLES::SupportsBufferToTextureBlits() const {
return false;
}
bool CapabilitiesGLES::SupportsTextureToTextureBlits() const {
return false;
}
bool CapabilitiesGLES::SupportsFramebufferFetch() const {
return supports_framebuffer_fetch_;
}
bool CapabilitiesGLES::SupportsCompute() const {
return false;
}
bool CapabilitiesGLES::SupportsComputeSubgroups() const {
return false;
}
bool CapabilitiesGLES::SupportsReadFromResolve() const {
return false;
}
bool CapabilitiesGLES::SupportsDecalSamplerAddressMode() const {
return supports_decal_sampler_address_mode_;
}
bool CapabilitiesGLES::SupportsDeviceTransientTextures() const {
return false;
}
PixelFormat CapabilitiesGLES::GetDefaultColorFormat() const {
return PixelFormat::kR8G8B8A8UNormInt;
}
PixelFormat CapabilitiesGLES::GetDefaultStencilFormat() const {
return PixelFormat::kS8UInt;
}
PixelFormat CapabilitiesGLES::GetDefaultDepthStencilFormat() const {
return PixelFormat::kD24UnormS8Uint;
}
bool CapabilitiesGLES::IsANGLE() const {
return is_angle_;
}
PixelFormat CapabilitiesGLES::GetDefaultGlyphAtlasFormat() const {
return default_glyph_atlas_format_;
}
} // namespace impeller
| engine/impeller/renderer/backend/gles/capabilities_gles.cc/0 | {
"file_path": "engine/impeller/renderer/backend/gles/capabilities_gles.cc",
"repo_id": "engine",
"token_count": 2039
} | 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.
#ifndef FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_HANDLE_GLES_H_
#define FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_HANDLE_GLES_H_
#include <optional>
#include <sstream>
#include <string>
#include <type_traits>
#include <unordered_map>
#include <unordered_set>
#include "flutter/fml/hash_combine.h"
#include "flutter/fml/macros.h"
#include "impeller/base/comparable.h"
#include "impeller/renderer/backend/gles/gles.h"
namespace impeller {
enum class HandleType {
kUnknown,
kTexture,
kBuffer,
kProgram,
kRenderBuffer,
kFrameBuffer,
};
std::string HandleTypeToString(HandleType type);
class ReactorGLES;
struct HandleGLES {
HandleType type = HandleType::kUnknown;
std::optional<UniqueID> name;
static HandleGLES DeadHandle() {
return HandleGLES{HandleType::kUnknown, std::nullopt};
}
constexpr bool IsDead() const { return !name.has_value(); }
struct Hash {
std::size_t operator()(const HandleGLES& handle) const {
return fml::HashCombine(
std::underlying_type_t<decltype(handle.type)>(handle.type),
handle.name);
}
};
struct Equal {
bool operator()(const HandleGLES& lhs, const HandleGLES& rhs) const {
return lhs.type == rhs.type && lhs.name == rhs.name;
}
};
private:
friend class ReactorGLES;
HandleGLES(HandleType p_type, UniqueID p_name) : type(p_type), name(p_name) {}
HandleGLES(HandleType p_type, std::optional<UniqueID> p_name)
: type(p_type), name(p_name) {}
static HandleGLES Create(HandleType type) {
return HandleGLES{type, UniqueID{}};
}
};
} // namespace impeller
namespace std {
inline std::ostream& operator<<(std::ostream& out,
const impeller::HandleGLES& handle) {
out << HandleTypeToString(handle.type) << "(";
if (handle.IsDead()) {
out << "DEAD";
} else {
if (handle.name.has_value()) {
out << handle.name.value().id;
} else {
out << "UNNAMED";
}
}
out << ")";
return out;
}
} // namespace std
#endif // FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_HANDLE_GLES_H_
| engine/impeller/renderer/backend/gles/handle_gles.h/0 | {
"file_path": "engine/impeller/renderer/backend/gles/handle_gles.h",
"repo_id": "engine",
"token_count": 888
} | 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.
#ifndef FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SHADER_FUNCTION_GLES_H_
#define FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SHADER_FUNCTION_GLES_H_
#include <string>
#include "flutter/fml/macros.h"
#include "flutter/fml/mapping.h"
#include "impeller/base/backend_cast.h"
#include "impeller/renderer/shader_function.h"
namespace impeller {
class ShaderLibraryGLES;
class ShaderFunctionGLES final
: public ShaderFunction,
public BackendCast<ShaderFunctionGLES, ShaderFunction> {
public:
// |ShaderFunction|
~ShaderFunctionGLES() override;
const std::shared_ptr<const fml::Mapping>& GetSourceMapping() const;
private:
friend ShaderLibraryGLES;
std::shared_ptr<const fml::Mapping> mapping_;
ShaderFunctionGLES(UniqueID library_id,
ShaderStage stage,
std::string name,
std::shared_ptr<const fml::Mapping> mapping);
ShaderFunctionGLES(const ShaderFunctionGLES&) = delete;
ShaderFunctionGLES& operator=(const ShaderFunctionGLES&) = delete;
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_RENDERER_BACKEND_GLES_SHADER_FUNCTION_GLES_H_
| engine/impeller/renderer/backend/gles/shader_function_gles.h/0 | {
"file_path": "engine/impeller/renderer/backend/gles/shader_function_gles.h",
"repo_id": "engine",
"token_count": 511
} | 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.
import("../../../tools/impeller.gni")
impeller_component("metal") {
sources = [
"allocator_mtl.h",
"allocator_mtl.mm",
"blit_command_mtl.h",
"blit_command_mtl.mm",
"blit_pass_mtl.h",
"blit_pass_mtl.mm",
"command_buffer_mtl.h",
"command_buffer_mtl.mm",
"compute_pass_bindings_cache_mtl.h",
"compute_pass_bindings_cache_mtl.mm",
"compute_pass_mtl.h",
"compute_pass_mtl.mm",
"compute_pipeline_mtl.h",
"compute_pipeline_mtl.mm",
"context_mtl.h",
"context_mtl.mm",
"device_buffer_mtl.h",
"device_buffer_mtl.mm",
"formats_mtl.h",
"formats_mtl.mm",
"gpu_tracer_mtl.h",
"gpu_tracer_mtl.mm",
"lazy_drawable_holder.h",
"lazy_drawable_holder.mm",
"pass_bindings_cache_mtl.h",
"pass_bindings_cache_mtl.mm",
"pipeline_library_mtl.h",
"pipeline_library_mtl.mm",
"pipeline_mtl.h",
"pipeline_mtl.mm",
"render_pass_mtl.h",
"render_pass_mtl.mm",
"sampler_library_mtl.h",
"sampler_library_mtl.mm",
"sampler_mtl.h",
"sampler_mtl.mm",
"shader_function_mtl.h",
"shader_function_mtl.mm",
"shader_library_mtl.h",
"shader_library_mtl.mm",
"surface_mtl.h",
"surface_mtl.mm",
"texture_mtl.h",
"texture_mtl.mm",
"texture_wrapper_mtl.h",
"texture_wrapper_mtl.mm",
"vertex_descriptor_mtl.h",
"vertex_descriptor_mtl.mm",
]
public_deps = [
"../../:renderer",
"//flutter/fml",
]
frameworks = [ "Metal.framework" ]
}
impeller_component("metal_unittests") {
testonly = true
sources = [ "texture_mtl_unittests.mm" ]
deps = [
":metal",
"//flutter/testing:testing_lib",
]
frameworks = [
"AppKit.framework",
"QuartzCore.framework",
]
}
| engine/impeller/renderer/backend/metal/BUILD.gn/0 | {
"file_path": "engine/impeller/renderer/backend/metal/BUILD.gn",
"repo_id": "engine",
"token_count": 928
} | 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 "impeller/renderer/backend/metal/context_mtl.h"
#include <memory>
#include "flutter/fml/concurrent_message_loop.h"
#include "flutter/fml/file.h"
#include "flutter/fml/logging.h"
#include "flutter/fml/paths.h"
#include "flutter/fml/synchronization/sync_switch.h"
#include "impeller/core/formats.h"
#include "impeller/core/sampler_descriptor.h"
#include "impeller/renderer/backend/metal/gpu_tracer_mtl.h"
#include "impeller/renderer/backend/metal/sampler_library_mtl.h"
#include "impeller/renderer/capabilities.h"
namespace impeller {
static bool DeviceSupportsFramebufferFetch(id<MTLDevice> device) {
// The iOS simulator lies about supporting framebuffer fetch.
#if FML_OS_IOS_SIMULATOR
return false;
#else // FML_OS_IOS_SIMULATOR
if (@available(macOS 10.15, iOS 13, tvOS 13, *)) {
return [device supportsFamily:MTLGPUFamilyApple2];
}
// According to
// https://developer.apple.com/metal/Metal-Feature-Set-Tables.pdf , Apple2
// corresponds to iOS GPU family 2, which supports A8 devices.
#if FML_OS_IOS
return [device supportsFeatureSet:MTLFeatureSet_iOS_GPUFamily2_v1];
#else
return false;
#endif // FML_OS_IOS
#endif // FML_OS_IOS_SIMULATOR
}
static bool DeviceSupportsComputeSubgroups(id<MTLDevice> device) {
bool supports_subgroups = false;
// Refer to the "SIMD-scoped reduction operations" feature in the table
// below: https://developer.apple.com/metal/Metal-Feature-Set-Tables.pdf
if (@available(ios 13.0, tvos 13.0, macos 10.15, *)) {
supports_subgroups = [device supportsFamily:MTLGPUFamilyApple7] ||
[device supportsFamily:MTLGPUFamilyMac2];
}
return supports_subgroups;
}
static std::unique_ptr<Capabilities> InferMetalCapabilities(
id<MTLDevice> device,
PixelFormat color_format) {
return CapabilitiesBuilder()
.SetSupportsOffscreenMSAA(true)
.SetSupportsSSBO(true)
.SetSupportsBufferToTextureBlits(true)
.SetSupportsTextureToTextureBlits(true)
.SetSupportsDecalSamplerAddressMode(true)
.SetSupportsFramebufferFetch(DeviceSupportsFramebufferFetch(device))
.SetDefaultColorFormat(color_format)
.SetDefaultStencilFormat(PixelFormat::kS8UInt)
.SetDefaultDepthStencilFormat(PixelFormat::kD32FloatS8UInt)
.SetSupportsCompute(true)
.SetSupportsComputeSubgroups(DeviceSupportsComputeSubgroups(device))
.SetSupportsReadFromResolve(true)
.SetSupportsDeviceTransientTextures(true)
.SetDefaultGlyphAtlasFormat(PixelFormat::kA8UNormInt)
.Build();
}
ContextMTL::ContextMTL(
id<MTLDevice> device,
id<MTLCommandQueue> command_queue,
NSArray<id<MTLLibrary>>* shader_libraries,
std::shared_ptr<const fml::SyncSwitch> is_gpu_disabled_sync_switch)
: device_(device),
command_queue_(command_queue),
is_gpu_disabled_sync_switch_(std::move(is_gpu_disabled_sync_switch)) {
// Validate device.
if (!device_) {
VALIDATION_LOG << "Could not set up valid Metal device.";
return;
}
sync_switch_observer_.reset(new SyncSwitchObserver(*this));
is_gpu_disabled_sync_switch_->AddObserver(sync_switch_observer_.get());
// Setup the shader library.
{
if (shader_libraries == nil) {
VALIDATION_LOG << "Shader libraries were null.";
return;
}
// std::make_shared disallowed because of private friend ctor.
auto library = std::shared_ptr<ShaderLibraryMTL>(
new ShaderLibraryMTL(shader_libraries));
if (!library->IsValid()) {
VALIDATION_LOG << "Could not create valid Metal shader library.";
return;
}
shader_library_ = std::move(library);
}
// Setup the pipeline library.
{
pipeline_library_ =
std::shared_ptr<PipelineLibraryMTL>(new PipelineLibraryMTL(device_));
}
// Setup the sampler library.
{
sampler_library_ =
std::shared_ptr<SamplerLibraryMTL>(new SamplerLibraryMTL(device_));
}
// Setup the resource allocator.
{
resource_allocator_ = std::shared_ptr<AllocatorMTL>(
new AllocatorMTL(device_, "Impeller Permanents Allocator"));
if (!resource_allocator_) {
VALIDATION_LOG << "Could not set up the resource allocator.";
return;
}
}
device_capabilities_ =
InferMetalCapabilities(device_, PixelFormat::kB8G8R8A8UNormInt);
command_queue_ip_ = std::make_shared<CommandQueue>();
#ifdef IMPELLER_DEBUG
gpu_tracer_ = std::make_shared<GPUTracerMTL>();
#endif // IMPELLER_DEBUG
is_valid_ = true;
}
static NSArray<id<MTLLibrary>>* MTLShaderLibraryFromFilePaths(
id<MTLDevice> device,
const std::vector<std::string>& libraries_paths) {
NSMutableArray<id<MTLLibrary>>* found_libraries = [NSMutableArray array];
for (const auto& library_path : libraries_paths) {
if (!fml::IsFile(library_path)) {
VALIDATION_LOG << "Shader library does not exist at path '"
<< library_path << "'";
return nil;
}
NSError* shader_library_error = nil;
auto library = [device newLibraryWithFile:@(library_path.c_str())
error:&shader_library_error];
if (!library) {
FML_LOG(ERROR) << "Could not create shader library: "
<< shader_library_error.localizedDescription.UTF8String;
return nil;
}
[found_libraries addObject:library];
}
return found_libraries;
}
static NSArray<id<MTLLibrary>>* MTLShaderLibraryFromFileData(
id<MTLDevice> device,
const std::vector<std::shared_ptr<fml::Mapping>>& libraries_data,
const std::string& label) {
NSMutableArray<id<MTLLibrary>>* found_libraries = [NSMutableArray array];
for (const auto& library_data : libraries_data) {
if (library_data == nullptr) {
FML_LOG(ERROR) << "Shader library data was null.";
return nil;
}
__block auto data = library_data;
auto dispatch_data =
::dispatch_data_create(library_data->GetMapping(), // buffer
library_data->GetSize(), // size
dispatch_get_main_queue(), // queue
^() {
// We just need a reference.
data.reset();
} // destructor
);
if (!dispatch_data) {
FML_LOG(ERROR) << "Could not wrap shader data in dispatch data.";
return nil;
}
NSError* shader_library_error = nil;
auto library = [device newLibraryWithData:dispatch_data
error:&shader_library_error];
if (!library) {
FML_LOG(ERROR) << "Could not create shader library: "
<< shader_library_error.localizedDescription.UTF8String;
return nil;
}
if (!label.empty()) {
library.label = @(label.c_str());
}
[found_libraries addObject:library];
}
return found_libraries;
}
static id<MTLDevice> CreateMetalDevice() {
return ::MTLCreateSystemDefaultDevice();
}
static id<MTLCommandQueue> CreateMetalCommandQueue(id<MTLDevice> device) {
auto command_queue = device.newCommandQueue;
if (!command_queue) {
VALIDATION_LOG << "Could not set up the command queue.";
return nullptr;
}
command_queue.label = @"Impeller Command Queue";
return command_queue;
}
std::shared_ptr<ContextMTL> ContextMTL::Create(
const std::vector<std::string>& shader_library_paths,
std::shared_ptr<const fml::SyncSwitch> is_gpu_disabled_sync_switch) {
auto device = CreateMetalDevice();
auto command_queue = CreateMetalCommandQueue(device);
if (!command_queue) {
return nullptr;
}
auto context = std::shared_ptr<ContextMTL>(new ContextMTL(
device, command_queue,
MTLShaderLibraryFromFilePaths(device, shader_library_paths),
std::move(is_gpu_disabled_sync_switch)));
if (!context->IsValid()) {
FML_LOG(ERROR) << "Could not create Metal context.";
return nullptr;
}
return context;
}
std::shared_ptr<ContextMTL> ContextMTL::Create(
const std::vector<std::shared_ptr<fml::Mapping>>& shader_libraries_data,
std::shared_ptr<const fml::SyncSwitch> is_gpu_disabled_sync_switch,
const std::string& library_label) {
auto device = CreateMetalDevice();
auto command_queue = CreateMetalCommandQueue(device);
if (!command_queue) {
return nullptr;
}
auto context = std::shared_ptr<ContextMTL>(
new ContextMTL(device, command_queue,
MTLShaderLibraryFromFileData(device, shader_libraries_data,
library_label),
std::move(is_gpu_disabled_sync_switch)));
if (!context->IsValid()) {
FML_LOG(ERROR) << "Could not create Metal context.";
return nullptr;
}
return context;
}
std::shared_ptr<ContextMTL> ContextMTL::Create(
id<MTLDevice> device,
id<MTLCommandQueue> command_queue,
const std::vector<std::shared_ptr<fml::Mapping>>& shader_libraries_data,
std::shared_ptr<const fml::SyncSwitch> is_gpu_disabled_sync_switch,
const std::string& library_label) {
auto context = std::shared_ptr<ContextMTL>(
new ContextMTL(device, command_queue,
MTLShaderLibraryFromFileData(device, shader_libraries_data,
library_label),
std::move(is_gpu_disabled_sync_switch)));
if (!context->IsValid()) {
FML_LOG(ERROR) << "Could not create Metal context.";
return nullptr;
}
return context;
}
ContextMTL::~ContextMTL() {
is_gpu_disabled_sync_switch_->RemoveObserver(sync_switch_observer_.get());
}
Context::BackendType ContextMTL::GetBackendType() const {
return Context::BackendType::kMetal;
}
// |Context|
std::string ContextMTL::DescribeGpuModel() const {
return std::string([[device_ name] UTF8String]);
}
// |Context|
bool ContextMTL::IsValid() const {
return is_valid_;
}
// |Context|
std::shared_ptr<ShaderLibrary> ContextMTL::GetShaderLibrary() const {
return shader_library_;
}
// |Context|
std::shared_ptr<PipelineLibrary> ContextMTL::GetPipelineLibrary() const {
return pipeline_library_;
}
// |Context|
std::shared_ptr<SamplerLibrary> ContextMTL::GetSamplerLibrary() const {
return sampler_library_;
}
// |Context|
std::shared_ptr<CommandBuffer> ContextMTL::CreateCommandBuffer() const {
return CreateCommandBufferInQueue(command_queue_);
}
// |Context|
void ContextMTL::Shutdown() {}
#ifdef IMPELLER_DEBUG
std::shared_ptr<GPUTracerMTL> ContextMTL::GetGPUTracer() const {
return gpu_tracer_;
}
#endif // IMPELLER_DEBUG
std::shared_ptr<const fml::SyncSwitch> ContextMTL::GetIsGpuDisabledSyncSwitch()
const {
return is_gpu_disabled_sync_switch_;
}
std::shared_ptr<CommandBuffer> ContextMTL::CreateCommandBufferInQueue(
id<MTLCommandQueue> queue) const {
if (!IsValid()) {
return nullptr;
}
auto buffer = std::shared_ptr<CommandBufferMTL>(
new CommandBufferMTL(weak_from_this(), queue));
if (!buffer->IsValid()) {
return nullptr;
}
return buffer;
}
std::shared_ptr<Allocator> ContextMTL::GetResourceAllocator() const {
return resource_allocator_;
}
id<MTLDevice> ContextMTL::GetMTLDevice() const {
return device_;
}
const std::shared_ptr<const Capabilities>& ContextMTL::GetCapabilities() const {
return device_capabilities_;
}
void ContextMTL::SetCapabilities(
const std::shared_ptr<const Capabilities>& capabilities) {
device_capabilities_ = capabilities;
}
// |Context|
bool ContextMTL::UpdateOffscreenLayerPixelFormat(PixelFormat format) {
device_capabilities_ = InferMetalCapabilities(device_, format);
return true;
}
id<MTLCommandBuffer> ContextMTL::CreateMTLCommandBuffer(
const std::string& label) const {
auto buffer = [command_queue_ commandBuffer];
if (!label.empty()) {
[buffer setLabel:@(label.data())];
}
return buffer;
}
void ContextMTL::StoreTaskForGPU(const std::function<void()>& task) {
tasks_awaiting_gpu_.emplace_back(task);
while (tasks_awaiting_gpu_.size() > kMaxTasksAwaitingGPU) {
tasks_awaiting_gpu_.front()();
tasks_awaiting_gpu_.pop_front();
}
}
void ContextMTL::FlushTasksAwaitingGPU() {
for (const auto& task : tasks_awaiting_gpu_) {
task();
}
tasks_awaiting_gpu_.clear();
}
ContextMTL::SyncSwitchObserver::SyncSwitchObserver(ContextMTL& parent)
: parent_(parent) {}
void ContextMTL::SyncSwitchObserver::OnSyncSwitchUpdate(bool new_is_disabled) {
if (!new_is_disabled) {
parent_.FlushTasksAwaitingGPU();
}
}
// |Context|
std::shared_ptr<CommandQueue> ContextMTL::GetCommandQueue() const {
return command_queue_ip_;
}
} // namespace impeller
| engine/impeller/renderer/backend/metal/context_mtl.mm/0 | {
"file_path": "engine/impeller/renderer/backend/metal/context_mtl.mm",
"repo_id": "engine",
"token_count": 4987
} | 211 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.