hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 98
values | lang stringclasses 21
values | max_stars_repo_path stringlengths 3 945 | max_stars_repo_name stringlengths 4 118 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 3 945 | max_issues_repo_name stringlengths 4 118 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 945 | max_forks_repo_name stringlengths 4 135 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1 1.03M | max_line_length int64 2 1.03M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3fcd0b31374d916bf52fbaf84660b1375e2c8a2c | 5,735 | dart | Dart | lib/audio/handlers/audio_player_handler.dart | delletenebre/Yamus | 1c2b9d57ffb9436084829cad35b74268dd1d0348 | [
"Apache-2.0"
] | 54 | 2019-09-30T19:39:22.000Z | 2022-03-21T10:02:55.000Z | lib/audio/handlers/audio_player_handler.dart | delletenebre/Yamus | 1c2b9d57ffb9436084829cad35b74268dd1d0348 | [
"Apache-2.0"
] | 13 | 2019-10-21T12:08:50.000Z | 2021-07-28T13:14:05.000Z | lib/audio/handlers/audio_player_handler.dart | delletenebre/Yamus | 1c2b9d57ffb9436084829cad35b74268dd1d0348 | [
"Apache-2.0"
] | 13 | 2019-11-14T16:11:01.000Z | 2021-09-07T13:23:29.000Z | import 'package:audio_service/audio_service.dart';
import 'package:just_audio/just_audio.dart';
import 'package:rxdart/rxdart.dart';
import 'package:yamus/audio/medial_library.dart';
import 'package:yamus/main.dart';
class AudioPlayerHandler extends BaseAudioHandler
with QueueHandler, SeekHandler {
// ignore: close_sinks
final BehaviorSubject<List<MediaItem>> _recentSubject =
BehaviorSubject<List<MediaItem>>();
final _mediaLibrary = MediaLibrary();
int? get index => audioPlayer.currentIndex;
AudioPlayerHandler() {
_init();
}
Future<void> _init() async {
// Load and broadcast the queue
queue.add(_mediaLibrary.items[MediaLibrary.albumsRootId]);
// For Android 11, record the most recent item so it can be resumed.
mediaItem
.whereType<MediaItem>()
.listen((item) => _recentSubject.add([item]));
// Broadcast media item changes.
audioPlayer.currentIndexStream.listen((index) {
if (index != null) mediaItem.add(queue.value![index]);
});
// Propagate all events from the audio player to AudioService clients.
audioPlayer.playbackEventStream.listen(_broadcastState);
// In this example, the service stops when reaching the end.
audioPlayer.processingStateStream.listen((state) {
if (state == ProcessingState.completed) stop();
});
try {
print("### audioPlayer.load");
// After a cold restart (on Android), audioPlayer.load jumps straight from
// the loading state to the completed state. Inserting a delay makes it
// work. Not sure why!
await Future.delayed(Duration(seconds: 2)); // magic delay
await audioPlayer.setAudioSource(ConcatenatingAudioSource(
children: queue.value!
.map((item) => AudioSource.uri(Uri.parse(item.id)))
.toList(),
));
print("### loaded");
} catch (e) {
print("Error: $e");
}
}
@override
Future<void> prepareFromMediaId(String mediaId, [Map<String, dynamic>? extras]) {
print('^^^^^^^^^^^^^^^^^^^^^^^^^^^');
return super.prepareFromMediaId(mediaId, extras);
}
@override
Future<void> prepare() {
print('^^^^^^^^^^^^^^^^^^^^^^^^^^^2222');
return super.prepare();
}
@override
Future<List<MediaItem>> getChildren(String parentMediaId,
[Map<String, dynamic>? options]) async {
print('getChildren parentMediaId $parentMediaId');
switch (parentMediaId) {
case AudioService.recentRootId:
// When the user resumes a media session, tell the system what the most
// recently played item was.
print("### get recent children: ${_recentSubject.value}:");
return _recentSubject.value ?? [];
default:
// Allow client to browse the media library.
print(
"### get $parentMediaId children: ${_mediaLibrary.items[parentMediaId]}:");
return _mediaLibrary.items[parentMediaId]!;
}
}
@override
ValueStream<Map<String, dynamic>> subscribeToChildren(String parentMediaId) {
print('-------------------------------------------');
print('subscribeToChildren parentMediaId $parentMediaId');
switch (parentMediaId) {
case AudioService.recentRootId:
print('AudioService.recentRootId');
return _recentSubject.map((_) => <String, dynamic>{});
default:
final BehaviorSubject<List<MediaItem>> a =
BehaviorSubject<List<MediaItem>>();
//a.add(_mediaLibrary.items[parentMediaId]!);
return a.map((_) => <String, dynamic>{});
// return Stream.value(_mediaLibrary.items[parentMediaId])
// .map((_) => <String, dynamic>{}).cast()
// as ValueStream<Map<String, dynamic>>;
}
}
@override
Future<void> skipToQueueItem(int index) async {
// Then default implementations of skipToNext and skipToPrevious provided by
// the [QueueHandler] mixin will delegate to this method.
if (index < 0 || index >= queue.value!.length) return;
// This jumps to the beginning of the queue item at newIndex.
audioPlayer.seek(Duration.zero, index: index);
// Demonstrate custom events.
customEventSubject.add('skip to $index');
}
@override
Future<void> play() => audioPlayer.play();
@override
Future<void> pause() => audioPlayer.pause();
@override
Future<void> seek(Duration position) => audioPlayer.seek(position);
@override
Future<void> stop() async {
await audioPlayer.stop();
await playbackState.firstWhere(
(state) => state.processingState == AudioProcessingState.idle);
}
/// Broadcasts the current state to all clients.
void _broadcastState(PlaybackEvent event) {
final playing = audioPlayer.playing;
playbackState.add(playbackState.value!.copyWith(
controls: [
MediaControl.skipToPrevious,
if (playing) MediaControl.pause else MediaControl.play,
MediaControl.stop,
MediaControl.skipToNext,
],
systemActions: const {
MediaAction.seek,
MediaAction.seekForward,
MediaAction.seekBackward,
},
androidCompactActionIndices: const [0, 1, 3],
processingState: const {
ProcessingState.idle: AudioProcessingState.idle,
ProcessingState.loading: AudioProcessingState.loading,
ProcessingState.buffering: AudioProcessingState.buffering,
ProcessingState.ready: AudioProcessingState.ready,
ProcessingState.completed: AudioProcessingState.completed,
}[audioPlayer.processingState]!,
playing: playing,
updatePosition: audioPlayer.position,
bufferedPosition: audioPlayer.bufferedPosition,
speed: audioPlayer.speed,
queueIndex: event.currentIndex,
));
}
} | 35.401235 | 87 | 0.660331 |
600c179d32b55f88d088ca6d5b4407796f057a82 | 4,900 | sql | SQL | casahogar.sql | Aliciaardila/casahogar | fb240c551d05175c821d42030125b57e9c5d290d | [
"MIT"
] | null | null | null | casahogar.sql | Aliciaardila/casahogar | fb240c551d05175c821d42030125b57e9c5d290d | [
"MIT"
] | null | null | null | casahogar.sql | Aliciaardila/casahogar | fb240c551d05175c821d42030125b57e9c5d290d | [
"MIT"
] | null | null | null | -- phpMyAdmin SQL Dump
-- version 5.0.4
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 12-11-2021 a las 22:59:30
-- Versión del servidor: 10.4.17-MariaDB
-- Versión de PHP: 7.3.27
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `casahogar`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `animales`
--
CREATE TABLE `animales` (
`id` int(5) NOT NULL,
`nombre` varchar(50) NOT NULL,
`edad` varchar(20) NOT NULL,
`foto` varchar(200) NOT NULL,
`descripcion` varchar(200) NOT NULL,
`tipo` int(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `animales`
--
INSERT INTO `animales` (`id`, `nombre`, `edad`, `foto`, `descripcion`, `tipo`) VALUES
(5, 'Nemo', '1 año', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/pez.jpg?alt=media&token=04cf1a17-2ed6-44d9-96c0-8ec9f005530f', 'Pez payaso', 5),
(6, 'flor', '4 meses', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/ave.jpg?alt=media&token=b5111988-c017-4bf3-a732-bb337220a904', 'Búho ', 3),
(7, 'Rocinante', '5 años', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/caballo.jpg?alt=media&token=83af6abd-120b-45b8-926b-a72a9b4b5182', 'caballo, macho', 4),
(8, 'Fiona', '1años', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/perro1.jpg?alt=media&token=c2e6e56f-234f-4099-86ca-9411bad8b956', 'Hembra, Esterilizada, vacunas al día, lista para adopción.', 1),
(9, 'Emma', '5 meses', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/gato2.jpg?alt=media&token=73bacf29-90dc-4200-b3c9-c285bf25a29c', 'Hembra ', 2),
(10, 'Julia', '10 años', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/iguanaazul.jpg?alt=media&token=2c196083-326e-482a-a9a2-7b2de693c707', 'Iguana Azul', 5),
(11, 'Blue', '5 años', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/gato1.jpg?alt=media&token=0fda4718-f840-44ad-8441-d0175b8d9393', 'Hembra, esterilizada.', 2);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `productos`
--
CREATE TABLE `productos` (
`id` int(5) NOT NULL,
`nombre` varchar(50) NOT NULL,
`foto` varchar(200) NOT NULL,
`precio` int(20) NOT NULL,
`descripcion` varchar(200) NOT NULL,
`tipo` int(3) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
--
-- Volcado de datos para la tabla `productos`
--
INSERT INTO `productos` (`id`, `nombre`, `foto`, `precio`, `descripcion`, `tipo`) VALUES
(5, 'cuido alimento seco', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/cuido1.jpg?alt=media&token=78ae9ad7-6516-4f0c-927f-b44b2b636fb4', 12500, 'cuido perro cachorro', 1),
(6, 'Felix alimento humedo', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/cuido3.jpg?alt=media&token=a7faa61f-9b00-4aec-9407-93f945a7b6a3', 11500, 'Cuido para gato, gama medio', 2),
(7, 'Arena popys litter', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/areana1.png?alt=media&token=041a905c-b1a0-4c58-8ec7-f9d15112dd8d', 364500, 'Arena altamente aglomerante', 2),
(10, 'Alimento Reptil', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/comidaReptil.jpg?alt=media&token=0c7f0047-82c1-4180-a198-21926cca9271', 8700, 'Alimento seco', 4),
(11, 'Alimento seco', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/comidaequino.png?alt=media&token=98d4bd46-d98e-4e5b-9e6e-72a70972e0a6', 35700, 'Alimento para equinos', 5),
(12, 'Baño Seco', 'https://firebasestorage.googleapis.com/v0/b/fotocasahogarali.appspot.com/o/ba%C3%B1o%20seco.png?alt=media&token=9e265f2c-c3ba-4d24-ad38-190f111f81f2', 9500, 'Baño seco', 1);
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `animales`
--
ALTER TABLE `animales`
ADD PRIMARY KEY (`id`);
--
-- Indices de la tabla `productos`
--
ALTER TABLE `productos`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `animales`
--
ALTER TABLE `animales`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT de la tabla `productos`
--
ALTER TABLE `productos`
MODIFY `id` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
| 42.608696 | 229 | 0.714694 |
64ee37a39afdd3054b5801842c33f6578451fcae | 518 | java | Java | src/org/santhoshkumar/Misc/CatalanNumber.java | skcodeworks/MissionInterview | ef2368b758d351b159f3b48eb9f13b043ed787d0 | [
"MIT"
] | null | null | null | src/org/santhoshkumar/Misc/CatalanNumber.java | skcodeworks/MissionInterview | ef2368b758d351b159f3b48eb9f13b043ed787d0 | [
"MIT"
] | null | null | null | src/org/santhoshkumar/Misc/CatalanNumber.java | skcodeworks/MissionInterview | ef2368b758d351b159f3b48eb9f13b043ed787d0 | [
"MIT"
] | null | null | null | package org.santhoshkumar.Misc;
/**
* Created by santhoshkumar on 18/10/15.
*/
public class CatalanNumber {
public static void print(){
int n = 7;
System.out.println("\nCatalan Number");
int[] a = new int[n+1];
a[0]= a[1] = 1;
for(int i = 2; i <= n ; i++){
for( int j = 0; j < i; j++){
a[i] += a[j]*a[i-j-1];
}
}
for(int v:a){
System.out.print(v+" ");
}
System.out.println();
}
}
| 19.923077 | 47 | 0.430502 |
40fb5fec2b146e146a23785f222c9aee8be6c225 | 228 | py | Python | Ogrenciler/Eren/tekmiciftmii.py | ProEgitim/Python-Dersleri-BEM | b25e9fdb1fa3026925a46b2fcbcba348726b775c | [
"MIT"
] | 1 | 2021-04-18T17:35:22.000Z | 2021-04-18T17:35:22.000Z | Ogrenciler/Eren/tekmiciftmii.py | waroi/Python-Dersleri-BEM | b25e9fdb1fa3026925a46b2fcbcba348726b775c | [
"MIT"
] | null | null | null | Ogrenciler/Eren/tekmiciftmii.py | waroi/Python-Dersleri-BEM | b25e9fdb1fa3026925a46b2fcbcba348726b775c | [
"MIT"
] | 2 | 2021-04-18T18:22:26.000Z | 2021-04-24T17:16:19.000Z | #kullanıcıdan alınan bir sayının tek mi ya da çift mi olduğunu bulan kodu yazınız
sayi = int(input("Bir Sayı Giriniz : "))
if sayi%2==0:
print(" Sayısı Çift Sayıdır. ",sayi)
else:
print(" Sayısı Tek Sayıdır. ",sayi ) | 28.5 | 81 | 0.684211 |
0463f3145d44767743a35b1a0a45c6b42cf82d9a | 248 | java | Java | src/test/java/test/ignore/issue2396/FirstTest.java | t-rasmud/testng | 47aa43b5d88be43da4d476a15398d0cffee491c7 | [
"Apache-2.0"
] | null | null | null | src/test/java/test/ignore/issue2396/FirstTest.java | t-rasmud/testng | 47aa43b5d88be43da4d476a15398d0cffee491c7 | [
"Apache-2.0"
] | 1 | 2021-03-16T08:49:56.000Z | 2021-03-16T08:49:56.000Z | src/test/java/test/ignore/issue2396/FirstTest.java | t-rasmud/testng | 47aa43b5d88be43da4d476a15398d0cffee491c7 | [
"Apache-2.0"
] | 4 | 2021-05-13T05:00:07.000Z | 2021-05-13T08:56:44.000Z | package test.ignore.issue2396;
import org.testng.annotations.Ignore;
import org.testng.annotations.Test;
@Test
public class FirstTest {
public void testShouldBeInvoked() {
}
@Ignore
public void testShouldBeIgnored(String name) {
}
} | 14.588235 | 48 | 0.75 |
6524869e78875d68bc7830017790dd24a2253209 | 738 | py | Python | app/libpinanny/__init__.py | MelonSmasher/piNanny | 2bc3a7b5eda83615e21518a2f36c3844b241d201 | [
"MIT"
] | null | null | null | app/libpinanny/__init__.py | MelonSmasher/piNanny | 2bc3a7b5eda83615e21518a2f36c3844b241d201 | [
"MIT"
] | 2 | 2021-03-10T05:28:36.000Z | 2021-09-02T05:40:44.000Z | app/libpinanny/__init__.py | MelonSmasher/piNanny | 2bc3a7b5eda83615e21518a2f36c3844b241d201 | [
"MIT"
] | null | null | null | from subprocess import PIPE, Popen
# Converts celsius temps to fahrenheit
def c2f(celsius):
return (9.0 / 5) * celsius + 32
# Gets the CPU temperature in degrees C
def get_cpu_temperature():
process = Popen(['vcgencmd', 'measure_temp'], stdout=PIPE)
output, _error = process.communicate()
return float(str(str(output).split('=')[1]).split("'")[0])
def debugOutCFH(sensor, valueC, valueF, valueH):
print('Debug Values [' + sensor + ']:')
print('C: ' + str(valueC))
print('F: ' + str(valueF))
print('H: ' + str(valueH) + '%')
print('')
def debugOutCF(sensor, valueC, valueF):
print('Debug Values [' + sensor + ']:')
print('C: ' + str(valueC))
print('F: ' + str(valueF))
print('')
| 25.448276 | 62 | 0.609756 |
625f8f7bcbff4a07e1c48de9c5c63aefc148c0f6 | 788 | sql | SQL | odev4.sql | Nasdicle/SQLProje | 95b464ca704b7041931470b866f9510b5d5471da | [
"MIT"
] | null | null | null | odev4.sql | Nasdicle/SQLProje | 95b464ca704b7041931470b866f9510b5d5471da | [
"MIT"
] | null | null | null | odev4.sql | Nasdicle/SQLProje | 95b464ca704b7041931470b866f9510b5d5471da | [
"MIT"
] | null | null | null | 1. film tablosunda bulunan replacement_cost sütununda bulunan birbirinden farklı değerleri sıralayınız.
select distinct(replacement_cost) from film
2. film tablosunda bulunan replacement_cost sütununda birbirinden farklı kaç tane veri vardır?
select count(distinct(replacement_cost)) from film
3. film tablosunda bulunan film isimlerinde (title) kaç tanesini T karakteri ile başlar ve aynı zamanda rating 'G' ye eşittir?
select count(title) from film where title like 'T%' and rating = 'G'
4. country tablosunda bulunan ülke isimlerinden (country) kaç tanesi 5 karakterden oluşmaktadır?
select count(country) from country where country like '_____'
5. city tablosundaki şehir isimlerinin kaç tanesi 'R' veya r karakteri ile biter?
select count(şehir) from city where sehir like 'R%r'
| 52.533333 | 126 | 0.810914 |
0c619836cbb98385e9d64fe6430236b99a8352af | 657 | html | HTML | quickinfo_and_error_popup.html | bertilnilsson/TypeScript-Sublime-Plugin | 268ddfec73ff33394c6cf5bc70ca36a30899fa20 | [
"Apache-2.0"
] | 1,688 | 2015-04-01T19:48:34.000Z | 2019-05-06T10:18:55.000Z | quickinfo_and_error_popup.html | bertilnilsson/TypeScript-Sublime-Plugin | 268ddfec73ff33394c6cf5bc70ca36a30899fa20 | [
"Apache-2.0"
] | 584 | 2015-04-01T19:21:43.000Z | 2019-05-05T23:50:05.000Z | quickinfo_and_error_popup.html | bertilnilsson/TypeScript-Sublime-Plugin | 268ddfec73ff33394c6cf5bc70ca36a30899fa20 | [
"Apache-2.0"
] | 268 | 2015-04-02T19:05:38.000Z | 2019-04-28T15:08:57.000Z | <style>
div.wrapper {
margin: 5px;
}
div.error {
color: red;
margin-bottom: 5px;
}
span.punctuation {
${punctuationStyles}
}
span.text {
${textStyles}
}
span.className {
${typeStyles}
}
span.propertyName {
${propertyStyles}
}
span.keyword {
${keywordStyles}
}
span.localName {
${variableStyles}
}
span.stringLiteral {
${stringStyles}
}
span.numericLiteral {
${numberStyles}
}
span.aliasName {
${typeStyles}
}
span.interfaceName {
${interfaceStyles}
}
span.parameterName {
${paramStyles}
}
</style>
<div class="wrapper">
<div class="error">${error}</div>
<div class="info">${info_str}</div>
<div class="doc">${doc_str}</div>
</div>
| 13.6875 | 36 | 0.668189 |
3e225c730b25d6afbfaca7b23c0123c247097127 | 41,198 | c | C | net/ipsec/spd/server/mmspecific.c | npocmaka/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 17 | 2020-11-13T13:42:52.000Z | 2021-09-16T09:13:13.000Z | net/ipsec/spd/server/mmspecific.c | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 2 | 2020-10-19T08:02:06.000Z | 2020-10-19T08:23:18.000Z | net/ipsec/spd/server/mmspecific.c | sancho1952007/Windows-Server-2003 | 5c6fe3db626b63a384230a1aa6b92ac416b0765f | [
"Unlicense"
] | 14 | 2020-11-14T09:43:20.000Z | 2021-08-28T08:59:57.000Z | /*++
Copyright (c) 1999 Microsoft Corporation
Module Name:
mmspecific.c
Abstract:
This module contains all of the code to drive the
mm specific filter list management of IPSecSPD Service.
Author:
abhisheV 08-December-1999
Environment
User Level: Win32
Revision History:
--*/
#include "precomp.h"
DWORD
ApplyMMTransform(
PINIMMFILTER pFilter,
MATCHING_ADDR * pMatchingAddresses,
DWORD dwAddrCnt,
PSPECIAL_ADDR pSpecialAddrsList,
PINIMMSFILTER * ppSpecificFilters
)
/*++
Routine Description:
This function expands a generic mm filter into its
corresponding specific filters.
Arguments:
pFilter - Generic filter to expand.
pMatchingAddresses - List of local ip addresses whose interface
type matches that of the filter.
dwAddrCnt - Number of local ip addresses in the list.
ppSpecificFilters - List of specific filters expanded for the
given generic filter.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
PINIMMSFILTER pSpecificFilters = NULL;
PINIMMSFILTER pOutboundSpecificFilters = NULL;
PINIMMSFILTER pInboundSpecificFilters = NULL;
PADDR_V4 pOutSrcAddrList = NULL;
DWORD dwOutSrcAddrCnt = 0;
PADDR_V4 pInSrcAddrList = NULL;
DWORD dwInSrcAddrCnt = 0;
PADDR_V4 pOutDesAddrList = NULL;
DWORD dwOutDesAddrCnt = 0;
PADDR_V4 pInDesAddrList = NULL;
DWORD dwInDesAddrCnt = 0;
//
// Form the outbound and inbound source and destination
// address lists.
//
dwError = FormMMOutboundInboundAddresses(
pFilter,
pMatchingAddresses,
dwAddrCnt,
pSpecialAddrsList,
&pOutSrcAddrList,
&dwOutSrcAddrCnt,
&pInSrcAddrList,
&dwInSrcAddrCnt,
&pOutDesAddrList,
&dwOutDesAddrCnt,
&pInDesAddrList,
&dwInDesAddrCnt
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Form outbound specific filters.
//
dwError = FormSpecificMMFilters(
pFilter,
pOutSrcAddrList,
dwOutSrcAddrCnt,
pOutDesAddrList,
dwOutDesAddrCnt,
FILTER_DIRECTION_OUTBOUND,
&pOutboundSpecificFilters
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Form inbound specific filters.
//
dwError = FormSpecificMMFilters(
pFilter,
pInSrcAddrList,
dwInSrcAddrCnt,
pInDesAddrList,
dwInDesAddrCnt,
FILTER_DIRECTION_INBOUND,
&pInboundSpecificFilters
);
BAIL_ON_WIN32_ERROR(dwError);
pSpecificFilters = pOutboundSpecificFilters;
AddToSpecificMMList(
&pSpecificFilters,
pInboundSpecificFilters
);
*ppSpecificFilters = pSpecificFilters;
cleanup:
if (pOutSrcAddrList) {
FreeSPDMemory(pOutSrcAddrList);
}
if (pInSrcAddrList) {
FreeSPDMemory(pInSrcAddrList);
}
if (pOutDesAddrList) {
FreeSPDMemory(pOutDesAddrList);
}
if (pInDesAddrList) {
FreeSPDMemory(pInDesAddrList);
}
return (dwError);
error:
if (pOutboundSpecificFilters) {
FreeIniMMSFilterList(pOutboundSpecificFilters);
}
if (pInboundSpecificFilters) {
FreeIniMMSFilterList(pInboundSpecificFilters);
}
*ppSpecificFilters = NULL;
goto cleanup;
}
DWORD
FormMMOutboundInboundAddresses(
PINIMMFILTER pFilter,
MATCHING_ADDR * pMatchingAddresses,
DWORD dwAddrCnt,
PSPECIAL_ADDR pSpecialAddrsList,
PADDR_V4 * ppOutSrcAddrList,
PDWORD pdwOutSrcAddrCnt,
PADDR_V4 * ppInSrcAddrList,
PDWORD pdwInSrcAddrCnt,
PADDR_V4 * ppOutDesAddrList,
PDWORD pdwOutDesAddrCnt,
PADDR_V4 * ppInDesAddrList,
PDWORD pdwInDesAddrCnt
)
/*++
Routine Description:
This function forms the outbound and inbound source and
destination address sets for a generic filter.
Arguments:
pFilter - Generic filter under consideration.
pMatchingAddresses - List of local ip addresses whose interface
type matches that of the filter.
dwAddrCnt - Number of local ip addresses in the list.
ppOutSrcAddrList - List of outbound source addresses.
pdwOutSrcAddrCnt - Number of addresses in the outbound
source address list.
ppInSrcAddrList - List of inbound source addresses.
pdwInSrcAddrCnt - Number of addresses in the inbound
source address list.
ppOutDesAddrList - List of outbound destination addresses.
pdwOutDesAddrCnt - Number of addresses in the outbound
destination address list.
ppInDesAddrList - List of inbound destination addresses.
pdwInDesAddrCnt - Number of addresses in the inbound
destination address list.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
PADDR_V4 pSrcAddrList = NULL;
DWORD dwSrcAddrCnt = 0;
PADDR_V4 pDesAddrList = NULL;
DWORD dwDesAddrCnt = 0;
PADDR_V4 pOutSrcAddrList = NULL;
DWORD dwOutSrcAddrCnt = 0;
PADDR_V4 pInSrcAddrList = NULL;
DWORD dwInSrcAddrCnt = 0;
PADDR_V4 pOutDesAddrList = NULL;
DWORD dwOutDesAddrCnt = 0;
PADDR_V4 pInDesAddrList = NULL;
DWORD dwInDesAddrCnt = 0;
//
// Replace wild card information to generate the new source
// address list.
//
dwError = FormAddressList(
pFilter->SrcAddr,
pMatchingAddresses,
dwAddrCnt,
pSpecialAddrsList,
pFilter->InterfaceType,
&pSrcAddrList,
&dwSrcAddrCnt
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Replace wild card information to generate the new destination
// address list.
//
dwError = FormAddressList(
pFilter->DesAddr,
pMatchingAddresses,
dwAddrCnt,
pSpecialAddrsList,
pFilter->InterfaceType,
&pDesAddrList,
&dwDesAddrCnt
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Separate the source address list into outbound and inbound
// source address sets based on the local machine's ip addresses.
//
dwError = SeparateAddrList(
pFilter->SrcAddr.AddrType,
pSrcAddrList,
dwSrcAddrCnt,
pMatchingAddresses,
dwAddrCnt,
&pOutSrcAddrList,
&dwOutSrcAddrCnt,
&pInSrcAddrList,
&dwInSrcAddrCnt
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Separate the destination address list into outbound and inbound
// destination address sets based on the local machine's ip
// addresses.
//
dwError = SeparateAddrList(
pFilter->DesAddr.AddrType,
pDesAddrList,
dwDesAddrCnt,
pMatchingAddresses,
dwAddrCnt,
&pInDesAddrList,
&dwInDesAddrCnt,
&pOutDesAddrList,
&dwOutDesAddrCnt
);
BAIL_ON_WIN32_ERROR(dwError);
*ppOutSrcAddrList = pOutSrcAddrList;
*pdwOutSrcAddrCnt = dwOutSrcAddrCnt;
*ppInSrcAddrList = pInSrcAddrList;
*pdwInSrcAddrCnt = dwInSrcAddrCnt;
*ppOutDesAddrList = pOutDesAddrList;
*pdwOutDesAddrCnt = dwOutDesAddrCnt;
*ppInDesAddrList = pInDesAddrList;
*pdwInDesAddrCnt = dwInDesAddrCnt;
cleanup:
if (pSrcAddrList) {
FreeSPDMemory(pSrcAddrList);
}
if (pDesAddrList) {
FreeSPDMemory(pDesAddrList);
}
return (dwError);
error:
if (pOutSrcAddrList) {
FreeSPDMemory(pOutSrcAddrList);
}
if (pInSrcAddrList) {
FreeSPDMemory(pInSrcAddrList);
}
if (pOutDesAddrList) {
FreeSPDMemory(pOutDesAddrList);
}
if (pInDesAddrList) {
FreeSPDMemory(pInDesAddrList);
}
*ppOutSrcAddrList = NULL;
*pdwOutSrcAddrCnt = 0;
*ppInSrcAddrList = NULL;
*pdwInSrcAddrCnt = 0;
*ppOutDesAddrList = NULL;
*pdwOutDesAddrCnt = 0;
*ppInDesAddrList = NULL;
*pdwInDesAddrCnt = 0;
goto cleanup;
}
DWORD
FormSpecificMMFilters(
PINIMMFILTER pFilter,
PADDR_V4 pSrcAddrList,
DWORD dwSrcAddrCnt,
PADDR_V4 pDesAddrList,
DWORD dwDesAddrCnt,
DWORD dwDirection,
PINIMMSFILTER * ppSpecificFilters
)
/*++
Routine Description:
This function forms the specific main mode filters
for the given generic filter and the source and
destination address sets.
Arguments:
pFilter - Generic filter for which specific filters
are to be created.
pSrcAddrList - List of source addresses.
dwSrcAddrCnt - Number of addresses in the source
address list.
pDesAddrList - List of destination addresses.
dwDesAddrCnt - Number of addresses in the destination
address list.
ppSpecificFilters - Specific filters created for the given
generic filter and the given addresses.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
PINIMMSFILTER pSpecificFilters = NULL;
DWORD i = 0, j = 0;
PINIMMSFILTER pSpecificFilter = NULL;
for (i = 0; i < dwSrcAddrCnt; i++) {
for (j = 0; j < dwDesAddrCnt; j++) {
dwError = CreateSpecificMMFilter(
pFilter,
pSrcAddrList[i],
pDesAddrList[j],
&pSpecificFilter
);
BAIL_ON_WIN32_ERROR(dwError);
//
// Set the direction of the filter.
//
pSpecificFilter->dwDirection = dwDirection;
AssignMMFilterWeight(pSpecificFilter);
AddToSpecificMMList(
&pSpecificFilters,
pSpecificFilter
);
}
}
*ppSpecificFilters = pSpecificFilters;
return (dwError);
error:
if (pSpecificFilters) {
FreeIniMMSFilterList(pSpecificFilters);
}
*ppSpecificFilters = NULL;
return (dwError);
}
DWORD
CreateSpecificMMFilter(
PINIMMFILTER pGenericFilter,
ADDR_V4 SrcAddr,
ADDR_V4 DesAddr,
PINIMMSFILTER * ppSpecificFilter
)
{
DWORD dwError = 0;
PINIMMSFILTER pSpecificFilter = NULL;
dwError = AllocateSPDMemory(
sizeof(INIMMSFILTER),
&pSpecificFilter
);
BAIL_ON_WIN32_ERROR(dwError);
pSpecificFilter->cRef = 0;
pSpecificFilter->IpVersion = pGenericFilter->IpVersion;
CopyGuid(pGenericFilter->gFilterID, &(pSpecificFilter->gParentID));
dwError = AllocateSPDString(
pGenericFilter->pszFilterName,
&(pSpecificFilter->pszFilterName)
);
BAIL_ON_WIN32_ERROR(dwError);
pSpecificFilter->InterfaceType = pGenericFilter->InterfaceType;
pSpecificFilter->dwFlags = pGenericFilter->dwFlags;
CopyAddresses(SrcAddr, &(pSpecificFilter->SrcAddr));
CopyAddresses(DesAddr, &(pSpecificFilter->DesAddr));
//
// Direction must be set in the calling routine.
//
pSpecificFilter->dwDirection = 0;
//
// Weight must be set in the calling routine.
//
pSpecificFilter->dwWeight = 0;
CopyGuid(pGenericFilter->gMMAuthID, &(pSpecificFilter->gMMAuthID));
CopyGuid(pGenericFilter->gPolicyID, &(pSpecificFilter->gPolicyID));
pSpecificFilter->pIniMMAuthMethods = NULL;
pSpecificFilter->pIniMMPolicy = NULL;
pSpecificFilter->pNext = NULL;
*ppSpecificFilter = pSpecificFilter;
return (dwError);
error:
if (pSpecificFilter) {
FreeIniMMSFilter(pSpecificFilter);
}
*ppSpecificFilter = NULL;
return (dwError);
}
VOID
AssignMMFilterWeight(
PINIMMSFILTER pSpecificFilter
)
/*++
Routine Description:
Computes and assigns the weight to a specific mm filter.
The mm filter weight consists of the following:
31 16 12 8 0
+-----------+--------+-----------+--------+
|AddrMaskWgt| Reserved |
+-----------+--------+-----------+--------+
Arguments:
pSpecificFilter - Specific mm filter to which the weight
is to be assigned.
Return Value:
None.
--*/
{
DWORD dwWeight = 0;
ULONG SrcMask = 0;
ULONG DesMask = 0;
DWORD dwSrcMaskWeight = 0;
DWORD dwDesMaskWeight = 0;
DWORD dwMaskWeight = 0;
DWORD i = 0;
//
// Weight Rule:
// A field with a more specific value gets a higher weight than
// the same field with a lesser specific value.
//
//
// IP addresses get the weight values based on their mask values.
// In the address case, the weight is computed as a sum of the
// bit positions starting from the position that contains the
// first least significant non-zero bit to the most significant
// bit position of the mask.
// All unique ip addresses have a mask of 0xFFFFFFFF and thus get
// the same weight, which is 1 + 2 + .... + 32.
// A subnet address has a mask with atleast the least significant
// bit zero and thus gets weight in the range (2 + .. + 32) to 0.
//
DesMask = ntohl(pSpecificFilter->DesAddr.uSubNetMask);
for (i = 0; i < sizeof(ULONG) * 8; i++) {
//
// If the bit position contains a non-zero bit, add the bit
// position to the sum.
//
if ((DesMask & 0x1) == 0x1) {
dwMaskWeight += (i+1);
dwDesMaskWeight += (i+1);
}
//
// Move to the next bit position.
//
DesMask = DesMask >> 1;
}
SrcMask = ntohl(pSpecificFilter->SrcAddr.uSubNetMask);
for (i = 0; i < sizeof(ULONG) * 8; i++) {
//
// If the bit position contains a non-zero bit, add the bit
// position to the sum.
//
if ((SrcMask & 0x1) == 0x1) {
dwMaskWeight += (i+1);
dwSrcMaskWeight += (i+1);
}
//
// Move to the next bit position.
//
SrcMask = SrcMask >> 1;
}
if (dwDesMaskWeight >= dwSrcMaskWeight) {
dwWeight |= WEIGHT_ADDRESS_TIE_BREAKER;
}
//
// Move the mask weight to the set of bits in the overall weight
// that it occupies.
//
dwMaskWeight = dwMaskWeight << 16;
dwWeight += dwMaskWeight;
pSpecificFilter->dwWeight = dwWeight;
}
VOID
AddToSpecificMMList(
PINIMMSFILTER * ppSpecificMMFilterList,
PINIMMSFILTER pSpecificMMFilters
)
{
PINIMMSFILTER pListOne = NULL;
PINIMMSFILTER pListTwo = NULL;
PINIMMSFILTER pListMerge = NULL;
PINIMMSFILTER pLast = NULL;
if (!(*ppSpecificMMFilterList) && !pSpecificMMFilters) {
return;
}
if (!(*ppSpecificMMFilterList)) {
*ppSpecificMMFilterList = pSpecificMMFilters;
return;
}
if (!pSpecificMMFilters) {
return;
}
pListOne = *ppSpecificMMFilterList;
pListTwo = pSpecificMMFilters;
while (pListOne && pListTwo) {
if ((pListOne->dwWeight) > (pListTwo->dwWeight)) {
if (!pListMerge) {
pListMerge = pListOne;
pLast = pListOne;
pListOne = pListOne->pNext;
}
else {
pLast->pNext = pListOne;
pListOne = pListOne->pNext;
pLast = pLast->pNext;
}
}
else {
if (!pListMerge) {
pListMerge = pListTwo;
pLast = pListTwo;
pListTwo = pListTwo->pNext;
}
else {
pLast->pNext = pListTwo;
pListTwo = pListTwo->pNext;
pLast = pLast->pNext;
}
}
}
if (pListMerge) {
if (pListOne) {
pLast->pNext = pListOne;
}
else {
pLast->pNext = pListTwo;
}
}
*ppSpecificMMFilterList = pListMerge;
return;
}
VOID
FreeIniMMSFilterList(
PINIMMSFILTER pIniMMSFilterList
)
{
PINIMMSFILTER pFilter = NULL;
PINIMMSFILTER pTempFilter = NULL;
pFilter = pIniMMSFilterList;
while (pFilter) {
pTempFilter = pFilter;
pFilter = pFilter->pNext;
FreeIniMMSFilter(pTempFilter);
}
}
VOID
FreeIniMMSFilter(
PINIMMSFILTER pIniMMSFilter
)
{
if (pIniMMSFilter) {
if (pIniMMSFilter->pszFilterName) {
FreeSPDString(pIniMMSFilter->pszFilterName);
}
//
// Must not ever free pIniMMSFilter->pIniMMPolicy.
//
FreeSPDMemory(pIniMMSFilter);
}
}
VOID
LinkMMSpecificFiltersToPolicy(
PINIMMPOLICY pIniMMPolicy,
PINIMMSFILTER pIniMMSFilters
)
{
PINIMMSFILTER pTemp = NULL;
pTemp = pIniMMSFilters;
while (pTemp) {
pTemp->pIniMMPolicy = pIniMMPolicy;
pTemp = pTemp->pNext;
}
return;
}
VOID
LinkMMSpecificFiltersToAuth(
PINIMMAUTHMETHODS pIniMMAuthMethods,
PINIMMSFILTER pIniMMSFilters
)
{
PINIMMSFILTER pTemp = NULL;
pTemp = pIniMMSFilters;
while (pTemp) {
pTemp->pIniMMAuthMethods = pIniMMAuthMethods;
pTemp = pTemp->pNext;
}
return;
}
VOID
RemoveIniMMSFilter(
PINIMMSFILTER pIniMMSFilter
)
{
PINIMMSFILTER * ppTemp = NULL;
ppTemp = &gpIniMMSFilter;
while (*ppTemp) {
if (*ppTemp == pIniMMSFilter) {
break;
}
ppTemp = &((*ppTemp)->pNext);
}
if (*ppTemp) {
*ppTemp = pIniMMSFilter->pNext;
}
return;
}
DWORD
EnumSpecificMMFilters(
PINIMMSFILTER pIniMMSFilterList,
DWORD dwResumeHandle,
DWORD dwPreferredNumEntries,
PMM_FILTER * ppMMFilters,
PDWORD pdwNumMMFilters
)
/*++
Routine Description:
This function creates enumerated specific filters.
Arguments:
pIniMMSFilterList - List of specific filters to enumerate.
dwResumeHandle - Location in the specific filter list from which
to resume enumeration.
dwPreferredNumEntries - Preferred number of enumeration entries.
ppMMFilters - Enumerated filters returned to the caller.
pdwNumMMFilters - Number of filters actually enumerated.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
DWORD dwNumToEnum = 0;
PINIMMSFILTER pIniMMSFilter = NULL;
DWORD i = 0;
PINIMMSFILTER pTemp = NULL;
DWORD dwNumMMFilters = 0;
PMM_FILTER pMMFilters = 0;
PMM_FILTER pMMFilter = 0;
if (!dwPreferredNumEntries ||
(dwPreferredNumEntries > MAX_MMFILTER_ENUM_COUNT)) {
dwNumToEnum = MAX_MMFILTER_ENUM_COUNT;
}
else {
dwNumToEnum = dwPreferredNumEntries;
}
pIniMMSFilter = pIniMMSFilterList;
for (i = 0; (i < dwResumeHandle) && (pIniMMSFilter != NULL); i++) {
pIniMMSFilter = pIniMMSFilter->pNext;
}
if (!pIniMMSFilter) {
dwError = ERROR_NO_DATA;
BAIL_ON_WIN32_ERROR(dwError);
}
pTemp = pIniMMSFilter;
while (pTemp && (dwNumMMFilters < dwNumToEnum)) {
dwNumMMFilters++;
pTemp = pTemp->pNext;
}
dwError = SPDApiBufferAllocate(
sizeof(MM_FILTER)*dwNumMMFilters,
&pMMFilters
);
BAIL_ON_WIN32_ERROR(dwError);
pTemp = pIniMMSFilter;
pMMFilter = pMMFilters;
for (i = 0; i < dwNumMMFilters; i++) {
dwError = CopyMMSFilter(
pTemp,
pMMFilter
);
BAIL_ON_WIN32_ERROR(dwError);
pTemp = pTemp->pNext;
pMMFilter++;
}
*ppMMFilters = pMMFilters;
*pdwNumMMFilters = dwNumMMFilters;
return (dwError);
error:
if (pMMFilters) {
FreeMMFilters(
i,
pMMFilters
);
}
*ppMMFilters = NULL;
*pdwNumMMFilters = 0;
return (dwError);
}
DWORD
CopyMMSFilter(
PINIMMSFILTER pIniMMSFilter,
PMM_FILTER pMMFilter
)
/*++
Routine Description:
This function copies an internal filter into an external filter
container.
Arguments:
pIniMMSFilter - Internal filter to copy.
pMMFilter - External filter container in which to copy.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
pMMFilter->IpVersion = pIniMMSFilter->IpVersion;
CopyGuid(pIniMMSFilter->gParentID, &(pMMFilter->gFilterID));
dwError = CopyName(
pIniMMSFilter->pszFilterName,
&(pMMFilter->pszFilterName)
);
BAIL_ON_WIN32_ERROR(dwError);
pMMFilter->InterfaceType = pIniMMSFilter->InterfaceType;
pMMFilter->bCreateMirror = FALSE;
pMMFilter->dwFlags = pIniMMSFilter->dwFlags;
dwError = CopyIntToExtAddresses(pIniMMSFilter->SrcAddr, &(pMMFilter->SrcAddr));
BAIL_ON_WIN32_ERROR(dwError);
dwError = CopyIntToExtAddresses(pIniMMSFilter->DesAddr, &(pMMFilter->DesAddr));
BAIL_ON_WIN32_ERROR(dwError);
pMMFilter->dwDirection = pIniMMSFilter->dwDirection;
pMMFilter->dwWeight = pIniMMSFilter->dwWeight;
CopyGuid(pIniMMSFilter->gMMAuthID, &(pMMFilter->gMMAuthID));
CopyGuid(pIniMMSFilter->gPolicyID, &(pMMFilter->gPolicyID));
return (dwError);
error:
if (pMMFilter->pszFilterName) {
SPDApiBufferFree(pMMFilter->pszFilterName);
pMMFilter->pszFilterName = NULL;
}
if (pMMFilter->SrcAddr.pgInterfaceID) {
SPDApiBufferFree(pMMFilter->SrcAddr.pgInterfaceID);
pMMFilter->SrcAddr.pgInterfaceID = NULL;
}
if (pMMFilter->DesAddr.pgInterfaceID) {
SPDApiBufferFree(pMMFilter->DesAddr.pgInterfaceID);
pMMFilter->DesAddr.pgInterfaceID = NULL;
}
return (dwError);
}
DWORD
EnumSelectSpecificMMFilters(
PINIMMFILTER pIniMMFilter,
DWORD dwResumeHandle,
DWORD dwPreferredNumEntries,
PMM_FILTER * ppMMFilters,
PDWORD pdwNumMMFilters
)
/*++
Routine Description:
This function creates enumerated specific filters for
the given generic filter.
Arguments:
pIniMMFilter - Generic filter for which specific filters
are to be enumerated.
dwResumeHandle - Location in the specific filter list for the
given generic filter from which to resume
enumeration.
dwPreferredNumEntries - Preferred number of enumeration entries.
ppMMFilters - Enumerated filters returned to the caller.
pdwNumMMFilters - Number of filters actually enumerated.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
DWORD dwNumToEnum = 0;
DWORD dwNumMMSFilters = 0;
PINIMMSFILTER * ppIniMMSFilters = NULL;
DWORD i = 0;
DWORD dwNumMMFilters = 0;
PMM_FILTER pMMFilters = 0;
PMM_FILTER pMMFilter = 0;
if (!dwPreferredNumEntries ||
(dwPreferredNumEntries > MAX_MMFILTER_ENUM_COUNT)) {
dwNumToEnum = MAX_MMFILTER_ENUM_COUNT;
}
else {
dwNumToEnum = dwPreferredNumEntries;
}
dwNumMMSFilters = pIniMMFilter->dwNumMMSFilters;
ppIniMMSFilters = pIniMMFilter->ppIniMMSFilters;
if (!dwNumMMSFilters || (dwNumMMSFilters <= dwResumeHandle)) {
dwError = ERROR_NO_DATA;
BAIL_ON_WIN32_ERROR(dwError);
}
dwNumMMFilters = min((dwNumMMSFilters-dwResumeHandle),
dwNumToEnum);
dwError = SPDApiBufferAllocate(
sizeof(MM_FILTER)*dwNumMMFilters,
&pMMFilters
);
BAIL_ON_WIN32_ERROR(dwError);
pMMFilter = pMMFilters;
for (i = 0; i < dwNumMMFilters; i++) {
dwError = CopyMMSFilter(
*(ppIniMMSFilters + (dwResumeHandle + i)),
pMMFilter
);
BAIL_ON_WIN32_ERROR(dwError);
pMMFilter++;
}
*ppMMFilters = pMMFilters;
*pdwNumMMFilters = dwNumMMFilters;
return (dwError);
error:
if (pMMFilters) {
FreeMMFilters(
i,
pMMFilters
);
}
*ppMMFilters = NULL;
*pdwNumMMFilters = 0;
return (dwError);
}
DWORD
IntMatchMMFilter(
LPWSTR pServerName,
DWORD dwVersion,
PMM_FILTER pMMFilter,
DWORD dwFlags,
DWORD dwPreferredNumEntries,
PMM_FILTER * ppMatchedMMFilters,
PIPSEC_MM_POLICY * ppMatchedMMPolicies,
PINT_MM_AUTH_METHODS * ppMatchedMMAuthMethods,
LPDWORD pdwNumMatches,
LPDWORD pdwResumeHandle,
LPVOID pvReserved
)
/*++
Routine Description:
This function finds the matching mm filters for the given mm
filter template. The matched filters can not be more specific
than the given filter template.
Arguments:
pServerName - Server on which a filter template is to be matched.
pMMFilter - Filter template to match.
dwFlags - Flags.
ppMatchedMMFilters - Matched main mode filters returned to the
caller.
ppMatchedMMPolicies - Main mode policies corresponding to the
matched main mode filters returned to the
caller.
ppMatchedMMAuthMethods - Main mode auth methods corresponding to the
matched main mode filters returned to the
caller.
dwPreferredNumEntries - Preferred number of matched entries.
pdwNumMatches - Number of filters actually matched.
pdwResumeHandle - Handle to the location in the matched filter
list from which to resume enumeration.
Return Value:
ERROR_SUCCESS - Success.
Win32 Error - Failure.
--*/
{
DWORD dwError = 0;
DWORD dwResumeHandle = 0;
DWORD dwNumToMatch = 0;
PINIMMSFILTER pIniMMSFilter = NULL;
DWORD i = 0;
BOOL bMatches = FALSE;
PINIMMSFILTER pTemp = NULL;
DWORD dwNumMatches = 0;
PINIMMSFILTER pLastMatchedFilter = NULL;
PMM_FILTER pMatchedMMFilters = NULL;
PIPSEC_MM_POLICY pMatchedMMPolicies = NULL;
PINT_MM_AUTH_METHODS pMatchedMMAuthMethods = NULL;
DWORD dwNumFilters = 0;
DWORD dwNumPolicies = 0;
DWORD dwNumAuthMethods = 0;
PMM_FILTER pMatchedMMFilter = NULL;
PIPSEC_MM_POLICY pMatchedMMPolicy = NULL;
PINT_MM_AUTH_METHODS pTempMMAuthMethods = NULL;
dwError = ValidateMMFilterTemplate(
pMMFilter
);
BAIL_ON_WIN32_ERROR(dwError);
dwResumeHandle = *pdwResumeHandle;
if (!dwPreferredNumEntries) {
dwNumToMatch = 1;
}
else if (dwPreferredNumEntries > MAX_MMFILTER_ENUM_COUNT) {
dwNumToMatch = MAX_MMFILTER_ENUM_COUNT;
}
else {
dwNumToMatch = dwPreferredNumEntries;
}
ENTER_SPD_SECTION();
dwError = ValidateMMSecurity(
SPD_OBJECT_SERVER,
SERVER_ACCESS_ADMINISTER,
NULL,
NULL
);
BAIL_ON_LOCK_ERROR(dwError);
pIniMMSFilter = gpIniMMSFilter;
while ((i < dwResumeHandle) && (pIniMMSFilter != NULL)) {
bMatches = MatchIniMMSFilter(
pIniMMSFilter,
pMMFilter
);
if (bMatches) {
i++;
}
pIniMMSFilter = pIniMMSFilter->pNext;
}
if (!pIniMMSFilter) {
if (!(dwFlags & RETURN_DEFAULTS_ON_NO_MATCH)) {
dwError = ERROR_NO_DATA;
BAIL_ON_LOCK_ERROR(dwError);
}
else {
dwError = CopyMMMatchDefaults(
&pMatchedMMFilters,
&pMatchedMMAuthMethods,
&pMatchedMMPolicies,
&dwNumMatches
);
BAIL_ON_LOCK_ERROR(dwError);
BAIL_ON_LOCK_SUCCESS(dwError);
}
}
pTemp = pIniMMSFilter;
while (pTemp && (dwNumMatches < dwNumToMatch)) {
bMatches = MatchIniMMSFilter(
pTemp,
pMMFilter
);
if (bMatches) {
pLastMatchedFilter = pTemp;
dwNumMatches++;
}
pTemp = pTemp->pNext;
}
if (!dwNumMatches) {
if (!(dwFlags & RETURN_DEFAULTS_ON_NO_MATCH)) {
dwError = ERROR_NO_DATA;
BAIL_ON_LOCK_ERROR(dwError);
}
else {
dwError = CopyMMMatchDefaults(
&pMatchedMMFilters,
&pMatchedMMAuthMethods,
&pMatchedMMPolicies,
&dwNumMatches
);
BAIL_ON_LOCK_ERROR(dwError);
BAIL_ON_LOCK_SUCCESS(dwError);
}
}
dwError = SPDApiBufferAllocate(
sizeof(MM_FILTER)*dwNumMatches,
&pMatchedMMFilters
);
BAIL_ON_LOCK_ERROR(dwError);
dwError = SPDApiBufferAllocate(
sizeof(IPSEC_MM_POLICY)*dwNumMatches,
&pMatchedMMPolicies
);
BAIL_ON_LOCK_ERROR(dwError);
dwError = SPDApiBufferAllocate(
sizeof(INT_MM_AUTH_METHODS)*dwNumMatches,
&pMatchedMMAuthMethods
);
BAIL_ON_LOCK_ERROR(dwError);
if (dwNumMatches == 1) {
dwError = CopyMMSFilter(
pLastMatchedFilter,
pMatchedMMFilters
);
BAIL_ON_LOCK_ERROR(dwError);
dwNumFilters++;
if (pLastMatchedFilter->pIniMMPolicy) {
dwError = CopyMMPolicy(
pLastMatchedFilter->pIniMMPolicy,
pMatchedMMPolicies
);
BAIL_ON_LOCK_ERROR(dwError);
}
else {
memset(pMatchedMMPolicies, 0, sizeof(IPSEC_MM_POLICY));
}
dwNumPolicies++;
if (pLastMatchedFilter->pIniMMAuthMethods) {
dwError = CopyMMAuthMethods(
pLastMatchedFilter->pIniMMAuthMethods,
pMatchedMMAuthMethods
);
BAIL_ON_LOCK_ERROR(dwError);
}
else {
memset(pMatchedMMAuthMethods, 0, sizeof(INT_MM_AUTH_METHODS));
}
dwNumAuthMethods++;
}
else {
pTemp = pIniMMSFilter;
pMatchedMMFilter = pMatchedMMFilters;
pMatchedMMPolicy = pMatchedMMPolicies;
pTempMMAuthMethods = pMatchedMMAuthMethods;
i = 0;
while (i < dwNumMatches) {
bMatches = MatchIniMMSFilter(
pTemp,
pMMFilter
);
if (bMatches) {
dwError = CopyMMSFilter(
pTemp,
pMatchedMMFilter
);
BAIL_ON_LOCK_ERROR(dwError);
pMatchedMMFilter++;
dwNumFilters++;
if (pTemp->pIniMMPolicy) {
dwError = CopyMMPolicy(
pTemp->pIniMMPolicy,
pMatchedMMPolicy
);
BAIL_ON_LOCK_ERROR(dwError);
}
else {
memset(pMatchedMMPolicy, 0, sizeof(IPSEC_MM_POLICY));
}
pMatchedMMPolicy++;
dwNumPolicies++;
if (pTemp->pIniMMAuthMethods) {
dwError = CopyMMAuthMethods(
pTemp->pIniMMAuthMethods,
pTempMMAuthMethods
);
BAIL_ON_LOCK_ERROR(dwError);
}
else {
memset(pTempMMAuthMethods, 0, sizeof(INT_MM_AUTH_METHODS));
}
pTempMMAuthMethods++;
dwNumAuthMethods++;
i++;
}
pTemp = pTemp->pNext;
}
}
lock_success:
LEAVE_SPD_SECTION();
*ppMatchedMMFilters = pMatchedMMFilters;
*ppMatchedMMPolicies = pMatchedMMPolicies;
*ppMatchedMMAuthMethods = pMatchedMMAuthMethods;
*pdwNumMatches = dwNumMatches;
*pdwResumeHandle = dwResumeHandle + dwNumMatches;
return (dwError);
lock:
LEAVE_SPD_SECTION();
error:
if (pMatchedMMFilters) {
FreeMMFilters(
dwNumFilters,
pMatchedMMFilters
);
}
if (pMatchedMMPolicies) {
FreeMMPolicies(
dwNumPolicies,
pMatchedMMPolicies
);
}
if (pMatchedMMAuthMethods) {
FreeMMAuthMethods(
dwNumAuthMethods,
pMatchedMMAuthMethods
);
}
*ppMatchedMMFilters = NULL;
*ppMatchedMMPolicies = NULL;
*ppMatchedMMAuthMethods = NULL;
*pdwNumMatches = 0;
*pdwResumeHandle = dwResumeHandle;
return (dwError);
}
DWORD
ValidateMMFilterTemplate(
PMM_FILTER pMMFilter
)
{
DWORD dwError = 0;
BOOL bConflicts = FALSE;
if (!pMMFilter) {
dwError = ERROR_INVALID_PARAMETER;
BAIL_ON_WIN32_ERROR(dwError);
}
dwError = VerifyAddresses(&(pMMFilter->SrcAddr), TRUE, FALSE);
BAIL_ON_WIN32_ERROR(dwError);
dwError = VerifyAddresses(&(pMMFilter->DesAddr), TRUE, TRUE);
BAIL_ON_WIN32_ERROR(dwError);
bConflicts = AddressesConflict(
pMMFilter->SrcAddr,
pMMFilter->DesAddr
);
if (bConflicts) {
dwError = ERROR_INVALID_PARAMETER;
BAIL_ON_WIN32_ERROR(dwError);
}
if (pMMFilter->dwDirection) {
if ((pMMFilter->dwDirection != FILTER_DIRECTION_INBOUND) &&
(pMMFilter->dwDirection != FILTER_DIRECTION_OUTBOUND)) {
dwError = ERROR_INVALID_PARAMETER;
BAIL_ON_WIN32_ERROR(dwError);
}
}
error:
return (dwError);
}
BOOL
MatchIniMMSFilter(
PINIMMSFILTER pIniMMSFilter,
PMM_FILTER pMMFilter
)
{
BOOL bMatches = FALSE;
if (pMMFilter->dwDirection) {
if (pMMFilter->dwDirection != pIniMMSFilter->dwDirection) {
return (FALSE);
}
}
bMatches = MatchAddresses(
pIniMMSFilter->SrcAddr,
pMMFilter->SrcAddr
);
if (!bMatches) {
return (FALSE);
}
bMatches = MatchAddresses(
pIniMMSFilter->DesAddr,
pMMFilter->DesAddr
);
if (!bMatches) {
return (FALSE);
}
return (TRUE);
}
DWORD
CopyMMMatchDefaults(
PMM_FILTER * ppMMFilters,
PINT_MM_AUTH_METHODS * ppMMAuthMethods,
PIPSEC_MM_POLICY * ppMMPolicies,
PDWORD pdwNumMatches
)
{
DWORD dwError = 0;
PMM_FILTER pMMFilters = NULL;
PINT_MM_AUTH_METHODS pMMAuthMethods = NULL;
PIPSEC_MM_POLICY pMMPolicies = NULL;
DWORD dwNumFilters = 0;
DWORD dwNumAuthMethods = 0;
DWORD dwNumPolicies = 0;
if (!gpIniDefaultMMPolicy) {
dwError = ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND;
BAIL_ON_WIN32_ERROR(dwError);
}
if (!gpIniDefaultMMAuthMethods) {
dwError = ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND;
BAIL_ON_WIN32_ERROR(dwError);
}
dwError = SPDApiBufferAllocate(
sizeof(MM_FILTER),
&pMMFilters
);
BAIL_ON_WIN32_ERROR(dwError);
dwError = SPDApiBufferAllocate(
sizeof(IPSEC_MM_POLICY),
&pMMPolicies
);
BAIL_ON_WIN32_ERROR(dwError);
dwError = SPDApiBufferAllocate(
sizeof(INT_MM_AUTH_METHODS),
&pMMAuthMethods
);
BAIL_ON_WIN32_ERROR(dwError);
dwError = CopyDefaultMMFilter(
pMMFilters,
gpIniDefaultMMAuthMethods,
gpIniDefaultMMPolicy
);
BAIL_ON_WIN32_ERROR(dwError);
dwNumFilters++;
dwError = CopyMMPolicy(
gpIniDefaultMMPolicy,
pMMPolicies
);
BAIL_ON_WIN32_ERROR(dwError);
pMMPolicies->dwFlags |= IPSEC_MM_POLICY_ON_NO_MATCH;
dwNumPolicies++;
dwError = CopyMMAuthMethods(
gpIniDefaultMMAuthMethods,
pMMAuthMethods
);
BAIL_ON_WIN32_ERROR(dwError);
pMMAuthMethods->dwFlags |= IPSEC_MM_AUTH_ON_NO_MATCH;
dwNumAuthMethods++;
*ppMMFilters = pMMFilters;
*ppMMPolicies = pMMPolicies;
*ppMMAuthMethods = pMMAuthMethods;
*pdwNumMatches = 1;
return (dwError);
error:
if (pMMFilters) {
FreeMMFilters(
dwNumFilters,
pMMFilters
);
}
if (pMMPolicies) {
FreeMMPolicies(
dwNumPolicies,
pMMPolicies
);
}
if (pMMAuthMethods) {
FreeMMAuthMethods(
dwNumAuthMethods,
pMMAuthMethods
);
}
*ppMMFilters = NULL;
*ppMMPolicies = NULL;
*ppMMAuthMethods = NULL;
*pdwNumMatches = 0;
return (dwError);
}
DWORD
CopyDefaultMMFilter(
PMM_FILTER pMMFilter,
PINIMMAUTHMETHODS pIniMMAuthMethods,
PINIMMPOLICY pIniMMPolicy
)
{
DWORD dwError = 0;
RPC_STATUS RpcStatus = RPC_S_OK;
pMMFilter->IpVersion = IPSEC_PROTOCOL_V4;
RpcStatus = UuidCreate(&(pMMFilter->gFilterID));
if (!(RpcStatus == RPC_S_OK || RpcStatus == RPC_S_UUID_LOCAL_ONLY)) {
dwError = RPC_S_CALL_FAILED;
BAIL_ON_WIN32_ERROR(dwError);
}
dwError = CopyName(
L"0",
&(pMMFilter->pszFilterName)
);
BAIL_ON_WIN32_ERROR(dwError);
pMMFilter->InterfaceType = INTERFACE_TYPE_ALL;
pMMFilter->bCreateMirror = TRUE;
pMMFilter->dwFlags = 0;
pMMFilter->dwFlags |= IPSEC_MM_POLICY_DEFAULT_POLICY;
pMMFilter->dwFlags |= IPSEC_MM_AUTH_DEFAULT_AUTH;
pMMFilter->SrcAddr.AddrType = IP_ADDR_SUBNET;
pMMFilter->SrcAddr.uIpAddr = SUBNET_ADDRESS_ANY;
pMMFilter->SrcAddr.uSubNetMask = SUBNET_MASK_ANY;
pMMFilter->SrcAddr.pgInterfaceID = NULL;
pMMFilter->DesAddr.AddrType = IP_ADDR_SUBNET;
pMMFilter->DesAddr.uIpAddr = SUBNET_ADDRESS_ANY;
pMMFilter->DesAddr.uSubNetMask = SUBNET_MASK_ANY;
pMMFilter->DesAddr.pgInterfaceID = NULL;
pMMFilter->dwDirection = 0;
pMMFilter->dwWeight = 0;
CopyGuid(pIniMMAuthMethods->gMMAuthID, &(pMMFilter->gMMAuthID));
CopyGuid(pIniMMPolicy->gPolicyID, &(pMMFilter->gPolicyID));
error:
return (dwError);
}
| 24.106495 | 84 | 0.561435 |
399451d4baf7054fba8ff4fdea1fea71e5f9454a | 2,153 | dart | Dart | lib/instagram/widgets/instagram_profile/widgets/instagram_profile_header/widgets/profile_infographics.dart | anemchinova/404fest_flutter | 12ff80827d2c0bc65005c0b5c906113a079a4eb3 | [
"MIT"
] | null | null | null | lib/instagram/widgets/instagram_profile/widgets/instagram_profile_header/widgets/profile_infographics.dart | anemchinova/404fest_flutter | 12ff80827d2c0bc65005c0b5c906113a079a4eb3 | [
"MIT"
] | null | null | null | lib/instagram/widgets/instagram_profile/widgets/instagram_profile_header/widgets/profile_infographics.dart | anemchinova/404fest_flutter | 12ff80827d2c0bc65005c0b5c906113a079a4eb3 | [
"MIT"
] | null | null | null | import 'package:fest404/instagram/data/instagram_profile_data.dart';
import 'package:fest404/instagram/widgets/instagram_profile/widgets/instagram_profile_header/widgets/circle_photo.dart';
import 'package:flutter/material.dart';
import 'package:provider/provider.dart';
class ProfileInfographics extends StatelessWidget {
const ProfileInfographics({
Key? key,
this.padding = EdgeInsets.zero,
}) : super(key: key);
final EdgeInsets padding;
@override
Widget build(BuildContext context) {
var profile = Provider.of<InstagramProfileData>(context);
var avatarUrl = profile.avatarUrl;
return Padding(
padding: padding,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
CirclePhoto.avatar(imageUrl: avatarUrl),
Expanded(
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
_StatColumn(label: 'Posts', value: profile.postsCount),
_StatColumn(label: 'Followers', value: profile.followersCount),
_StatColumn(label: 'Following', value: profile.followingsCount),
],
),
),
],
),
);
}
}
class _StatColumn extends StatelessWidget {
const _StatColumn({
required this.value,
required this.label,
Key? key,
}) : super(key: key);
final int value;
final String label;
@override
Widget build(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisSize: MainAxisSize.min,
children: [
Text(
value.toString(),
style: const TextStyle(
color: Colors.white,
fontSize: 16,
fontWeight: FontWeight.w600,
),
),
Text(
label,
style: const TextStyle(
color: Colors.white,
fontSize: 14,
fontWeight: FontWeight.w300,
),
),
],
);
}
}
| 26.9125 | 120 | 0.61542 |
66399773afc68a52c0ff18f292239c629f6a1b69 | 231 | kt | Kotlin | suspend-dialogs/src/main/java/com/xeinebiu/suspend/dialogs/SuspendDialogResult.kt | xeinebiu/android-suspend-dialogs | 40996e6151d9348b81bc7b8c52fed215e414a81d | [
"MIT"
] | 26 | 2021-07-22T19:04:06.000Z | 2021-12-18T16:01:36.000Z | suspend-dialogs/src/main/java/com/xeinebiu/suspend/dialogs/SuspendDialogResult.kt | xeinebiu/android-suspend-dialogs | 40996e6151d9348b81bc7b8c52fed215e414a81d | [
"MIT"
] | null | null | null | suspend-dialogs/src/main/java/com/xeinebiu/suspend/dialogs/SuspendDialogResult.kt | xeinebiu/android-suspend-dialogs | 40996e6151d9348b81bc7b8c52fed215e414a81d | [
"MIT"
] | 6 | 2021-07-23T07:07:07.000Z | 2022-03-30T01:03:11.000Z | package com.xeinebiu.suspend.dialogs
import androidx.fragment.app.DialogFragment
/**
* Provides [SuspendDialogResult.result] member to return from the [DialogFragment]
*/
interface SuspendDialogResult<T> {
var result: T?
}
| 21 | 83 | 0.770563 |
85882e7ab28440bdfa406cb56a2b817e7f259e16 | 1,751 | js | JavaScript | http-ntlm-req.js | IdanZel/node-red-contrib-http-ntlm-req | b117c9bca1dfd29bbe163367cbceee0658ad0141 | [
"MIT"
] | null | null | null | http-ntlm-req.js | IdanZel/node-red-contrib-http-ntlm-req | b117c9bca1dfd29bbe163367cbceee0658ad0141 | [
"MIT"
] | null | null | null | http-ntlm-req.js | IdanZel/node-red-contrib-http-ntlm-req | b117c9bca1dfd29bbe163367cbceee0658ad0141 | [
"MIT"
] | 1 | 2022-02-01T19:25:56.000Z | 2022-02-01T19:25:56.000Z | module.exports = function (RED) {
function HttpNtlmReqNode(config) {
var httpntlm = require('httpntlm');
RED.nodes.createNode(this, config);
const node = this;
const resetStatus = () => node.status({});
const raiseError = (text, msg) => {
node.status({ fill: "red", shape: "dot", text: text });
node.error(text, msg);
};
node.name = config.name;
node.url = config.url;
node.method = config.method;
node.authconf = RED.nodes.getNode(config.auth);
resetStatus();
node.on('input', function (msg) {
const requestCallback = (err, res) => {
resetStatus();
if (res !== undefined && res.body !== undefined) {
msg.payload = node.authconf.parsejson ? JSON.parse(res.body) : res.body;
if (res.statusCode !== 200) {
raiseError('Response from server: ' + res.statusCode, msg);
}
} else {
raiseError(err.message, msg);
}
node.send(msg);
};
var defaultHeader = msg.headers || {};
defaultHeader['Content-Type'] = 'application/json';
const connData = {
username: node.authconf.user,
password: node.authconf.pass,
domain: node.authconf.doman,
workstation: '',
headers: defaultHeader
};
switch (node.method) {
case 0: // GET
{
connData.url = node.url + msg.payload;
httpntlm.get(connData, requestCallback);
break;
}
case 1: // POST
{
connData.url = node.url;
connData.body = msg.payload;
httpntlm.post(connData, requestCallback);
break;
}
default:
{
raiseError('No method defined!', msg);
break;
}
}
});
}
RED.nodes.registerType("http-ntlm-req", HttpNtlmReqNode);
}
| 23.986301 | 78 | 0.576813 |
c2a52675c6353c196f5627776f2709b9b00380bc | 3,419 | go | Go | modules/multi2vec-clip/vectorizer/vectorizer.go | beholdenkey/weaviate | d6d7eba92ff9c57d7e3400983ca592b5001f7770 | [
"BSD-3-Clause"
] | 1 | 2021-12-23T05:04:47.000Z | 2021-12-23T05:04:47.000Z | modules/multi2vec-clip/vectorizer/vectorizer.go | beholdenkey/weaviate | d6d7eba92ff9c57d7e3400983ca592b5001f7770 | [
"BSD-3-Clause"
] | 17 | 2021-10-02T09:20:04.000Z | 2021-12-17T16:30:22.000Z | modules/multi2vec-clip/vectorizer/vectorizer.go | beholdenkey/weaviate | d6d7eba92ff9c57d7e3400983ca592b5001f7770 | [
"BSD-3-Clause"
] | null | null | null | // _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2021 SeMI Technologies B.V. All rights reserved.
//
// CONTACT: hello@semi.technology
//
package vectorizer
import (
"context"
"github.com/pkg/errors"
"github.com/go-openapi/strfmt"
"github.com/semi-technologies/weaviate/entities/models"
"github.com/semi-technologies/weaviate/modules/multi2vec-clip/ent"
libvectorizer "github.com/semi-technologies/weaviate/usecases/vectorizer"
)
type Vectorizer struct {
client Client
}
func New(client Client) *Vectorizer {
return &Vectorizer{
client: client,
}
}
type Client interface {
Vectorize(ctx context.Context,
texts, images []string) (*ent.VectorizationResult, error)
}
type ClassSettings interface {
ImageField(property string) bool
ImageFieldsWeights() ([]float32, error)
TextField(property string) bool
TextFieldsWeights() ([]float32, error)
}
func (v *Vectorizer) Object(ctx context.Context, object *models.Object,
settings ClassSettings) error {
vec, err := v.object(ctx, object.ID, object.Properties, settings)
if err != nil {
return err
}
object.Vector = vec
return nil
}
func (v *Vectorizer) VectorizeImage(ctx context.Context, image string) ([]float32, error) {
res, err := v.client.Vectorize(ctx, []string{}, []string{image})
if err != nil {
return nil, err
}
if len(res.ImageVectors) != 1 {
return nil, errors.New("empty vector")
}
return res.ImageVectors[0], nil
}
func (v *Vectorizer) object(ctx context.Context, id strfmt.UUID,
schema interface{}, ichek ClassSettings) ([]float32, error) {
// vectorize image and text
texts := []string{}
images := []string{}
if schema != nil {
for prop, value := range schema.(map[string]interface{}) {
if ichek.ImageField(prop) {
valueString, ok := value.(string)
if ok {
images = append(images, valueString)
}
}
if ichek.TextField(prop) {
valueString, ok := value.(string)
if ok {
texts = append(texts, valueString)
}
}
}
}
vectors := [][]float32{}
if len(texts) > 0 || len(images) > 0 {
res, err := v.client.Vectorize(ctx, texts, images)
if err != nil {
return nil, err
}
vectors = append(vectors, res.TextVectors...)
vectors = append(vectors, res.ImageVectors...)
}
weights, err := v.getWeights(ichek)
if err != nil {
return nil, err
}
return libvectorizer.CombineVectorsWithWeights(vectors, weights), nil
}
func (v *Vectorizer) getWeights(ichek ClassSettings) ([]float32, error) {
weights := []float32{}
textFieldsWeights, err := ichek.TextFieldsWeights()
if err != nil {
return nil, err
}
imageFieldsWeights, err := ichek.ImageFieldsWeights()
if err != nil {
return nil, err
}
weights = append(weights, textFieldsWeights...)
weights = append(weights, imageFieldsWeights...)
normalizedWeights := v.normalizeWeights(weights)
return normalizedWeights, nil
}
func (v *Vectorizer) normalizeWeights(weights []float32) []float32 {
if len(weights) > 0 {
var denominator float32
for i := range weights {
denominator += weights[i]
}
normalizer := 1 / denominator
normalized := make([]float32, len(weights))
for i := range weights {
normalized[i] = weights[i] * normalizer
}
return normalized
}
return nil
}
| 23.909091 | 91 | 0.661304 |
7b7571f86dbf4fd0210e12bbf040dccf63a2a61e | 46,649 | psm1 | PowerShell | stig/windows/src/PSDscResources/2.12.0.0/DscResources/MSFT_UserResource/MSFT_UserResource.psm1 | JakeDean3631/ato-toolkit | 0c8b68eb5b9df17047785d5a0fe53224566d3676 | [
"MIT"
] | 124 | 2016-10-08T02:26:59.000Z | 2022-03-30T05:17:10.000Z | stig/windows/src/PSDscResources/2.12.0.0/DscResources/MSFT_UserResource/MSFT_UserResource.psm1 | JakeDean3631/ato-toolkit | 0c8b68eb5b9df17047785d5a0fe53224566d3676 | [
"MIT"
] | 197 | 2016-10-15T11:13:22.000Z | 2022-02-28T01:41:18.000Z | stig/windows/src/PSDscResources/2.12.0.0/DscResources/MSFT_UserResource/MSFT_UserResource.psm1 | JakeDean3631/ato-toolkit | 0c8b68eb5b9df17047785d5a0fe53224566d3676 | [
"MIT"
] | 65 | 2016-10-08T02:34:57.000Z | 2022-02-25T02:38:48.000Z | # User name and password needed for this resource and Write-Verbose Used in helper functions
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingUserNameAndPassWordParams', '')]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSDSCUseVerboseMessageInDSCResource', '')]
param ()
$errorActionPreference = 'Stop'
Set-StrictMode -Version 'Latest'
Import-Module -Name (Join-Path -Path (Split-Path -Path $PSScriptRoot -Parent) `
-ChildPath 'CommonResourceHelper.psm1')
# Localized messages for Write-Verbose statements in this resource
$script:localizedData = Get-LocalizedData -ResourceName 'MSFT_UserResource'
if (-not (Test-IsNanoServer))
{
Add-Type -AssemblyName 'System.DirectoryServices.AccountManagement'
}
# get rid of this else once the fix for this is released
else
{
Import-Module -Name 'Microsoft.Powershell.LocalAccounts'
}
# Commented out until the fix is released
#Import-Module -Name 'Microsoft.Powershell.LocalAccounts'
<#
.SYNOPSIS
Retrieves the user with the given username
.PARAMETER UserName
The name of the user to retrieve.
#>
function Get-TargetResource
{
[OutputType([System.Collections.Hashtable])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName
)
if (Test-IsNanoServer)
{
Get-TargetResourceOnNanoServer @PSBoundParameters
}
else
{
Get-TargetResourceOnFullSKU @PSBoundParameters
}
}
<#
.SYNOPSIS
Creates, modifies, or deletes a user.
.PARAMETER UserName
The name of the user to create, modify, or delete.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present.
.PARAMETER FullName
The (optional) full name or display name of the user.
If not provided this value will remain blank.
.PARAMETER Description
Optional description for the user.
.PARAMETER Password
The desired password for the user.
.PARAMETER Disabled
Specifies whether the user should be disabled or not.
By default this is set to $false
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
By default this is set to $false
.PARAMETER PasswordChangeRequired
Specifies whether the user must reset their password or not.
By default this is set to $false
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user is allowed to change their password or not.
By default this is set to $false
.NOTES
If Ensure is set to 'Present' then the password parameter is required.
#>
function Set-TargetResource
{
# Should process is called in a helper functions but not directly in Set-TargetResource
[Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSShouldProcess', '')]
[CmdletBinding(SupportsShouldProcess = $true)]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
if (Test-IsNanoServer)
{
Set-TargetResourceOnNanoServer @PSBoundParameters
}
else
{
Set-TargetResourceOnFullSKU @PSBoundParameters
}
}
<#
.SYNOPSIS
Tests if a user is in the desired state.
.PARAMETER UserName
The name of the user to test the state of.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present
.PARAMETER FullName
The full name/display name that the user should have.
If not provided, this value will not be tested.
.PARAMETER Description
The description that the user should have.
If not provided, this value will not be tested.
.PARAMETER Password
The password the user should have.
.PARAMETER Disabled
Specifies whether the user account should be disabled or not.
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
.PARAMETER PasswordChangeRequired
Not used in Test-TargetResource as there is no easy way to test this value.
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user should be allowed to change their password or not.
#>
function Test-TargetResource
{
[OutputType([System.Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
if (Test-IsNanoServer)
{
Test-TargetResourceOnNanoServer @PSBoundParameters
}
else
{
Test-TargetResourceOnFullSKU @PSBoundParameters
}
}
<#
.SYNOPSIS
Retrieves the user with the given username when on a full server
.PARAMETER UserName
The name of the user to retrieve.
#>
function Get-TargetResourceOnFullSKU
{
[OutputType([System.Collections.Hashtable])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName
)
Set-StrictMode -Version Latest
Assert-UserNameValid -UserName $UserName
$disposables = @()
try
{
Write-Verbose -Message 'Starting Get-TargetResource on FullSKU'
$user = Find-UserByNameOnFullSku -UserName $UserName
$disposables += $user
$valuesToReturn = @{}
if ($null -ne $user)
{
$valuesToReturn = @{
UserName = $user.Name
Ensure = 'Present'
FullName = $user.DisplayName
Description = $user.Description
Disabled = (-not $user.Enabled)
PasswordNeverExpires = $user.PasswordNeverExpires
PasswordChangeRequired = $null
PasswordChangeNotAllowed = $user.UserCannotChangePassword
}
}
else
{
# The user is not found. Return Ensure = Absent.
$valuesToReturn = @{
UserName = $UserName
Ensure = 'Absent'
}
}
return $valuesToReturn
}
catch
{
New-InvalidOperationException -Message ($script:localizedData.MultipleMatches + $_)
}
finally
{
Remove-DisposableObject -Disposables $disposables
}
}
<#
.SYNOPSIS
Creates, modifies, or deletes a user when on a full server.
.PARAMETER UserName
The name of the user to create, modify, or delete.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present
.PARAMETER FullName
The (optional) full name or display name of the user.
If not provided this value will remain blank.
.PARAMETER Description
Optional description for the user.
.PARAMETER Password
The desired password for the user.
.PARAMETER Disabled
Specifies whether the user should be disabled or not.
By default this is set to $false
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
By default this is set to $false
.PARAMETER PasswordChangeRequired
Specifies whether the user must reset their password or not.
By default this is set to $false
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user is allowed to change their password or not.
By default this is set to $false
.NOTES
If Ensure is set to 'Present' then the Password parameter is required.
#>
function Set-TargetResourceOnFullSKU
{
[CmdletBinding(SupportsShouldProcess = $true)]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
Set-StrictMode -Version Latest
Write-Verbose -Message ($script:localizedData.ConfigurationStarted -f $UserName)
Assert-UserNameValid -UserName $UserName
$disposables = @()
try
{
if ($Ensure -eq 'Present')
{
try
{
$user = Find-UserByNameOnFullSku -UserName $UserName
}
catch
{
$disposables += $user
New-InvalidOperationException -Message ($script:localizedData.MultipleMatches + $_)
}
$disposables += $user
$userExists = $false
$saveChanges = $false
if ($null -eq $user)
{
Write-Verbose -Message ($script:localizedData.UserWithName -f $UserName, $script:localizedData.AddOperation)
}
else
{
$userExists = $true
Write-Verbose -Message ($script:localizedData.UserWithName -f $UserName, $script:localizedData.SetOperation)
}
if (-not $userExists)
{
# The user with the provided name does not exist so add a new user
if ($PSBoundParameters.ContainsKey('Password'))
{
$user = Add-UserOnFullSku -UserName $UserName -Password $Password
}
else
{
$user = Add-UserOnFullSku -UserName $UserName
}
$saveChanges = $true
}
# Set user properties.
if ($PSBoundParameters.ContainsKey('FullName') -and ((-not $userExists) -or ($FullName -ne $user.DisplayName)))
{
$user.DisplayName = $FullName
$saveChanges = $true
}
elseif (-not $userExists)
{
<#
For a newly created user, set the DisplayName property to an empty string
since by default DisplayName is set to user's name.
#>
$user.DisplayName = [String]::Empty
}
if ($PSBoundParameters.ContainsKey('Description') -and ((-not $userExists) -or ($Description -ne $user.Description)))
{
$user.Description = $Description
$saveChanges = $true
}
if ($PSBoundParameters.ContainsKey('Password') -and $userExists)
{
Set-UserPasswordOnFullSku -User $user -Password $Password
$saveChanges = $true
}
if ($PSBoundParameters.ContainsKey('Disabled') -and ((-not $userExists) -or ($Disabled -eq $user.Enabled)))
{
$user.Enabled = -not $Disabled
$saveChanges = $true
}
if ($PSBoundParameters.ContainsKey('PasswordNeverExpires') -and ((-not $userExists) -or ($PasswordNeverExpires -ne $user.PasswordNeverExpires)))
{
$user.PasswordNeverExpires = $PasswordNeverExpires
$saveChanges = $true
}
if ($PSBoundParameters.ContainsKey('PasswordChangeRequired') -and $PasswordChangeRequired)
{
# Expire the password which will force the user to change the password at the next logon
Revoke-UserPassword -User $user
$saveChanges = $true
}
if ($PSBoundParameters.ContainsKey('PasswordChangeNotAllowed') -and ((-not $userExists) -or ($PasswordChangeNotAllowed -ne $user.UserCannotChangePassword)))
{
$user.UserCannotChangePassword = $PasswordChangeNotAllowed
$saveChanges = $true
}
if ($saveChanges)
{
Save-UserOnFullSku -User $user
# Send an operation success verbose message
if ($userExists)
{
Write-Verbose -Message ($script:localizedData.UserUpdated -f $UserName)
}
else
{
Write-Verbose -Message ($script:localizedData.UserCreated -f $UserName)
}
}
else
{
Write-Verbose -Message ($script:localizedData.NoConfigurationRequired -f $UserName)
}
}
else
{
Remove-UserOnFullSku -UserName $UserName
}
Write-Verbose -Message ($script:localizedData.ConfigurationCompleted -f $UserName)
}
catch
{
New-InvalidOperationException -Message $_
}
finally
{
Remove-DisposableObject -Disposables $disposables
}
}
<#
.SYNOPSIS
Tests if a user is in the desired state when on a full server.
.PARAMETER UserName
The name of the user to test the state of.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present
.PARAMETER FullName
The full name/display name that the user should have.
If not provided, this value will not be tested.
.PARAMETER Description
The description that the user should have.
If not provided, this value will not be tested.
.PARAMETER Password
The password the user should have.
.PARAMETER Disabled
Specifies whether the user account should be disabled or not.
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
.PARAMETER PasswordChangeRequired
Not used in Test-TargetResource as there is no easy way to test this value.
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user should be allowed to change their password or not.
#>
function Test-TargetResourceOnFullSKU
{
[OutputType([System.Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
Set-StrictMode -Version Latest
Assert-UserNameValid -UserName $UserName
$disposables = @()
try
{
$user = Find-UserByNameOnFullSku -UserName $UserName
$disposables += $user
$inDesiredState = $true
if ($null -eq $user)
{
# A user with the provided name does not exist
Write-Verbose -Message ($script:localizedData.UserDoesNotExist -f $UserName)
if ($Ensure -eq 'Absent')
{
return $true
}
else
{
return $false
}
}
# A user with the provided name exists
Write-Verbose -Message ($script:localizedData.UserExists -f $UserName)
# Validate separate properties
if ($Ensure -eq 'Absent')
{
# The Ensure property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Ensure', 'Absent', 'Present')
$inDesiredState = $false
}
if ($PSBoundParameters.ContainsKey('FullName') -and $FullName -ne $user.DisplayName)
{
# The FullName property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'FullName', $FullName, $user.DisplayName)
$inDesiredState = $false
}
if ($PSBoundParameters.ContainsKey('Description') -and $Description -ne $user.Description)
{
# The Description property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Description', $Description, $user.Description)
$inDesiredState = $false
}
# Password
if ($PSBoundParameters.ContainsKey('Password'))
{
if (-not (Test-UserPasswordOnFullSku -UserName $UserName -Password $Password))
{
# The Password property does not match
Write-Verbose -Message ($script:localizedData.PasswordPropertyMismatch -f 'Password')
$inDesiredState = $false
}
}
if ($PSBoundParameters.ContainsKey('Disabled') -and $Disabled -eq $user.Enabled)
{
# The Disabled property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Disabled', $Disabled, $user.Enabled)
$inDesiredState = $false
}
if ($PSBoundParameters.ContainsKey('PasswordNeverExpires') -and $PasswordNeverExpires -ne $user.PasswordNeverExpires)
{
# The PasswordNeverExpires property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'PasswordNeverExpires', $PasswordNeverExpires, $user.PasswordNeverExpires)
$inDesiredState = $false
}
if ($PSBoundParameters.ContainsKey('PasswordChangeNotAllowed') -and $PasswordChangeNotAllowed -ne $user.UserCannotChangePassword)
{
# The PasswordChangeNotAllowed property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'PasswordChangeNotAllowed', $PasswordChangeNotAllowed, $user.UserCannotChangePassword)
$inDesiredState = $false
}
if ($inDesiredState)
{
Write-Verbose -Message ($script:localizedData.AllUserPropertiesMatch -f 'User', $UserName)
}
return $inDesiredState
}
catch
{
New-InvalidOperationException -Message ($script:localizedData.MultipleMatches + $_)
}
finally
{
Remove-DisposableObject -Disposables $disposables
}
}
<#
.SYNOPSIS
Retrieves the user with the given username when on Nano Server.
.PARAMETER UserName
The name of the user to retrieve.
#>
function Get-TargetResourceOnNanoServer
{
[OutputType([System.Collections.Hashtable])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName
)
Assert-UserNameValid -UserName $UserName
$returnValue = @{}
# Try to find a user by a name
try
{
Write-Verbose -Message 'Starting Get-TargetResource on NanoServer'
$user = Find-UserByNameOnNanoServer -UserName $UserName
# The user is found. Return all user properties and Ensure = 'Present'.
$returnValue = @{
UserName = $user.Name
Ensure = 'Present'
FullName = $user.FullName
Description = $user.Description
Disabled = -not $user.Enabled
PasswordChangeRequired = $null
PasswordChangeNotAllowed = -not $user.UserMayChangePassword
}
if ($user.PasswordExpires)
{
$returnValue.Add('PasswordNeverExpires', $false)
}
else
{
$returnValue.Add('PasswordNeverExpires', $true)
}
}
catch [System.Exception]
{
if ($_.FullyQualifiedErrorId -match 'UserNotFound')
{
# The user is not found
$returnValue = @{
UserName = $UserName
Ensure = 'Absent'
}
}
else
{
New-InvalidOperationException -ErrorRecord $_
}
}
return $returnValue
}
<#
.SYNOPSIS
Creates, modifies, or deletes a user when on Nano Server.
.PARAMETER UserName
The name of the user to create, modify, or delete.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present
.PARAMETER FullName
The (optional) full name or display name of the user.
If not provided this value will remain blank.
.PARAMETER Description
Optional description for the user.
.PARAMETER Password
The desired password for the user.
.PARAMETER Disabled
Specifies whether the user should be disabled or not.
By default this is set to $false
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
By default this is set to $false
.PARAMETER PasswordChangeRequired
Specifies whether the user must reset their password or not.
By default this is set to $false
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user is allowed to change their password or not.
By default this is set to $false
.NOTES
If Ensure is set to 'Present' then the Password parameter is required.
#>
function Set-TargetResourceOnNanoServer
{
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
Set-StrictMode -Version Latest
Write-Verbose -Message ($script:localizedData.ConfigurationStarted -f $UserName)
Assert-UserNameValid -UserName $UserName
# Try to find a user by a name.
$userExists = $false
try
{
$user = Find-UserByNameOnNanoServer -UserName $UserName
$userExists = $true
}
catch [System.Exception]
{
if ($_.FullyQualifiedErrorId -match 'UserNotFound')
{
# The user is not found.
Write-Verbose -Message ($script:localizedData.UserDoesNotExist -f $UserName)
}
else
{
New-InvalidOperationException -ErrorRecord $_
}
}
if ($Ensure -eq 'Present')
{
# Ensure is set to 'Present'
if (-not $userExists)
{
# The user with the provided name does not exist so add a new user
New-LocalUser -Name $UserName -NoPassword
Write-Verbose -Message ($script:localizedData.UserCreated -f $UserName)
}
# Set user properties
if ($PSBoundParameters.ContainsKey('FullName'))
{
if (-not $userExists -or $FullName -ne $user.FullName)
{
Set-LocalUser -Name $UserName -FullName $FullName
}
}
elseif (-not $userExists)
{
# For a newly created user, set the DisplayName property to an empty string since by default DisplayName is set to user's name.
Set-LocalUser -Name $UserName -FullName ([String]::Empty)
}
if ($PSBoundParameters.ContainsKey('Description') -and ((-not $userExists) -or ($Description -ne $user.Description)))
{
Set-LocalUser -Name $UserName -Description $Description
}
# Set the password regardless of the state of the user
if ($PSBoundParameters.ContainsKey('Password'))
{
Set-LocalUser -Name $UserName -Password $Password.Password
}
if ($PSBoundParameters.ContainsKey('Disabled') -and ((-not $userExists) -or ($Disabled -eq $user.Enabled)))
{
if ($Disabled)
{
Disable-LocalUser -Name $UserName
}
else
{
Enable-LocalUser -Name $UserName
}
}
$existingUserPasswordNeverExpires = (($userExists) -and ($null -eq $user.PasswordExpires))
if ($PSBoundParameters.ContainsKey('PasswordNeverExpires') -and ((-not $userExists) -or ($PasswordNeverExpires -ne $existingUserPasswordNeverExpires)))
{
Set-LocalUser -Name $UserName -PasswordNeverExpires:$passwordNeverExpires
}
# Only set the AccountExpires attribute if PasswordChangeRequired is set to true
if ($PSBoundParameters.ContainsKey('PasswordChangeRequired') -and ($PasswordChangeRequired))
{
Set-LocalUser -Name $UserName -AccountExpires ([DateTime]::Now)
}
# NOTE: The parameter name and the property name have opposite meaning.
$expected = (-not $PasswordChangeNotAllowed)
$actual = $expected
if ($userExists)
{
$actual = $user.UserMayChangePassword
}
if ($PSBoundParameters.ContainsKey('PasswordChangeNotAllowed') -and ((-not $userExists) -or ($expected -ne $actual)))
{
Set-LocalUser -Name $UserName -UserMayChangePassword $expected
}
}
else
{
# Ensure is set to 'Absent'
if ($userExists)
{
# The user exists
Remove-LocalUser -Name $UserName
Write-Verbose -Message ($script:localizedData.UserRemoved -f $UserName)
}
else
{
Write-Verbose -Message ($script:localizedData.NoConfigurationRequiredUserDoesNotExist -f $UserName)
}
}
Write-Verbose -Message ($script:localizedData.ConfigurationCompleted -f $UserName)
}
<#
.SYNOPSIS
Tests if a user is in the desired state when on Nano Server.
.PARAMETER UserName
The name of the user to test the state of.
.PARAMETER Ensure
Specifies whether the user should exist or not.
By default this is set to Present
.PARAMETER FullName
The full name/display name that the user should have.
If not provided, this value will not be tested.
.PARAMETER Description
The description that the user should have.
If not provided, this value will not be tested.
.PARAMETER Password
The password the user should have.
.PARAMETER Disabled
Specifies whether the user account should be disabled or not.
.PARAMETER PasswordNeverExpires
Specifies whether the password should ever expire or not.
.PARAMETER PasswordChangeRequired
Not used in Test-TargetResource as there is no easy way to test this value.
.PARAMETER PasswordChangeNotAllowed
Specifies whether the user should be allowed to change their password or not.
#>
function Test-TargetResourceOnNanoServer
{
[OutputType([System.Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateSet('Present', 'Absent')]
[System.String]
$Ensure = 'Present',
[Parameter()]
[System.String]
$FullName,
[Parameter()]
[System.String]
$Description,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password,
[Parameter()]
[System.Boolean]
$Disabled,
[Parameter()]
[System.Boolean]
$PasswordNeverExpires,
[Parameter()]
[System.Boolean]
$PasswordChangeRequired,
[Parameter()]
[System.Boolean]
$PasswordChangeNotAllowed
)
Assert-UserNameValid -UserName $UserName
# Try to find a user by a name
try
{
$user = Find-UserByNameOnNanoServer -UserName $UserName
}
catch [System.Exception]
{
if ($_.FullyQualifiedErrorId -match 'UserNotFound')
{
# The user is not found
return ($Ensure -eq 'Absent')
}
else
{
New-InvalidOperationException -ErrorRecord $_
}
}
# A user with the provided name exists
Write-Verbose -Message ($script:localizedData.UserExists -f $UserName)
# Validate separate properties
if ($Ensure -eq 'Absent')
{
# The Ensure property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Ensure', 'Absent', 'Present')
return $false
}
if ($PSBoundParameters.ContainsKey('FullName') -and $FullName -ne $user.FullName)
{
# The FullName property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'FullName', $FullName, $user.FullName)
return $false
}
if ($PSBoundParameters.ContainsKey('Description') -and $Description -ne $user.Description)
{
# The Description property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Description', $Description, $user.Description)
return $false
}
if ($PSBoundParameters.ContainsKey('Password'))
{
if(-not (Test-CredentialsValidOnNanoServer -UserName $UserName -Password $Password.Password))
{
# The Password property does not match
Write-Verbose -Message ($script:localizedData.PasswordPropertyMismatch -f 'Password')
return $false
}
}
if ($PSBoundParameters.ContainsKey('Disabled') -and ($Disabled -eq $user.Enabled))
{
# The Disabled property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'Disabled', $Disabled, $user.Enabled)
return $false
}
$existingUserPasswordNeverExpires = ($null -eq $user.PasswordExpires)
if ($PSBoundParameters.ContainsKey('PasswordNeverExpires') -and $PasswordNeverExpires -ne $existingUserPasswordNeverExpires)
{
# The PasswordNeverExpires property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'PasswordNeverExpires', $PasswordNeverExpires, $existingUserPasswordNeverExpires)
return $false
}
if ($PSBoundParameters.ContainsKey('PasswordChangeNotAllowed') -and $PasswordChangeNotAllowed -ne (-not $user.UserMayChangePassword))
{
# The PasswordChangeNotAllowed property does not match
Write-Verbose -Message ($script:localizedData.PropertyMismatch -f 'PasswordChangeNotAllowed', $PasswordChangeNotAllowed, (-not $user.UserMayChangePassword))
return $false
}
# All properties match. Return $true.
Write-Verbose -Message ($script:localizedData.AllUserPropertiesMatch -f 'User', $UserName)
return $true
}
<#
.SYNOPSIS
Checks that the username does not contain invalid characters.
.PARAMETER UserName
The username to validate.
#>
function Assert-UserNameValid
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName
)
# Check if the name consists of only periods and/or white spaces
$wrongName = $true
for ($i = 0; $i -lt $UserName.Length; $i++)
{
if (-not [System.Char]::IsWhiteSpace($UserName, $i) -and $UserName[$i] -ne '.')
{
$wrongName = $false
break
}
}
$invalidChars = @('\', '/', '"', '[', ']', ':', '|', '<', '>', '+', '=', ';', ',', '?', '*', '@')
if ($wrongName)
{
New-InvalidArgumentException `
-Message ($script:localizedData.InvalidUserName -f $UserName, [System.String]::Join(' ', $invalidChars)) `
-ArgumentName 'UserName'
}
if ($UserName.IndexOfAny($invalidChars) -ne -1)
{
New-InvalidArgumentException `
-Message ($script:localizedData.InvalidUserName -f $UserName, [System.String]::Join(' ', $invalidChars)) `
-ArgumentName 'UserName'
}
}
<#
.SYNOPSIS
Tests the local user's credentials on the local machine.
.PARAMETER UserName
The username to validate the credentials of.
.PARAMETER Password
The password of the given user.
#>
function Test-CredentialsValidOnNanoServer
{
[OutputType([System.Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.String]
$UserName,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Security.SecureString]
$Password
)
$source = @'
[Flags]
private enum LogonType
{
Logon32LogonInteractive = 2,
Logon32LogonNetwork,
Logon32LogonBatch,
Logon32LogonService,
Logon32LogonUnlock,
Logon32LogonNetworkCleartext,
Logon32LogonNewCredentials
}
[Flags]
private enum LogonProvider
{
Logon32ProviderDefault = 0,
Logon32ProviderWinnt35,
Logon32ProviderWinnt40,
Logon32ProviderWinnt50
}
[DllImport("api-ms-win-security-logon-l1-1-1.dll", CharSet = CharSet.Unicode, SetLastError = true)]
private static extern Boolean LogonUser(
String lpszUserName,
String lpszDomain,
IntPtr lpszPassword,
LogonType dwLogonType,
LogonProvider dwLogonProvider,
out IntPtr phToken
);
[DllImport("api-ms-win-core-handle-l1-1-0.dll",
EntryPoint = "CloseHandle", SetLastError = true,
CharSet = CharSet.Unicode, CallingConvention = CallingConvention.StdCall)]
internal static extern bool CloseHandle(IntPtr handle);
public static bool ValidateCredentials(string username, SecureString password)
{
IntPtr tokenHandle = IntPtr.Zero;
IntPtr unmanagedPassword = IntPtr.Zero;
unmanagedPassword = SecureStringMarshal.SecureStringToCoTaskMemUnicode(password);
try
{
return LogonUser(
username,
null,
unmanagedPassword,
LogonType.Logon32LogonInteractive,
LogonProvider.Logon32ProviderDefault,
out tokenHandle);
}
catch
{
return false;
}
finally
{
if (tokenHandle != IntPtr.Zero)
{
CloseHandle(tokenHandle);
}
if (unmanagedPassword != IntPtr.Zero) {
Marshal.ZeroFreeCoTaskMemUnicode(unmanagedPassword);
}
unmanagedPassword = IntPtr.Zero;
}
}
'@
Add-Type -PassThru -Namespace Microsoft.Windows.DesiredStateConfiguration.NanoServer.UserResource `
-Name CredentialsValidationTool -MemberDefinition $source -Using System.Security -ReferencedAssemblies System.Security.SecureString.dll | Out-Null
return [Microsoft.Windows.DesiredStateConfiguration.NanoServer.UserResource.CredentialsValidationTool]::ValidateCredentials($UserName, $Password)
}
<#
.SYNOPSIS
Queries a user by the given username. If found the function returns a UserPrincipal object.
Otherwise, the function returns $null.
.PARAMETER UserName
The username to search for.
#>
function Find-UserByNameOnFullSku
{
[OutputType([System.DirectoryServices.AccountManagement.UserPrincipal])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$UserName
)
$principalContext = New-Object `
-TypeName System.DirectoryServices.AccountManagement.PrincipalContext `
-ArgumentList ([System.DirectoryServices.AccountManagement.ContextType]::Machine)
$user = [System.DirectoryServices.AccountManagement.UserPrincipal]::FindByIdentity($principalContext, $UserName)
return $user
}
<#
.SYNOPSIS
Adds a user with the given username and returns the new user object
.PARAMETER UserName
The username for the new user
#>
function Add-UserOnFullSku
{
[OutputType([System.DirectoryServices.AccountManagement.UserPrincipal])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$UserName,
[Parameter()]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password
)
$principalContext = New-Object `
-TypeName 'System.DirectoryServices.AccountManagement.PrincipalContext' `
-ArgumentList @( [System.DirectoryServices.AccountManagement.ContextType]::Machine )
$user = New-Object -TypeName 'System.DirectoryServices.AccountManagement.UserPrincipal' `
-ArgumentList @( $principalContext )
$user.Name = $UserName
if ($PSBoundParameters.ContainsKey('Password'))
{
$user.SetPassword($Password.GetNetworkCredential().Password)
}
return $user
}
<#
.SYNOPSIS
Sets the password for the given user
.PARAMETER User
The user to set the password for
.PARAMETER Password
The credential to use for the user's password
#>
function Set-UserPasswordOnFullSku
{
[OutputType([System.DirectoryServices.AccountManagement.UserPrincipal])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.DirectoryServices.AccountManagement.UserPrincipal]
$User,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password
)
$User.SetPassword($Password.GetNetworkCredential().Password)
}
<#
.SYNOPSIS
Validates the password is correct for the given user. Returns $true if the
Password is correct for the given username, false otherwise.
.PARAMETER UserName
The UserName to check
.PARAMETER Password
The credential to check
#>
function Test-UserPasswordOnFullSku
{
[OutputType([Boolean])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$UserName,
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.Management.Automation.PSCredential]
[System.Management.Automation.Credential()]
$Password
)
$principalContext = New-Object `
-TypeName 'System.DirectoryServices.AccountManagement.PrincipalContext' `
-ArgumentList @( [System.DirectoryServices.AccountManagement.ContextType]::Machine )
try
{
$credentailsValid = $principalContext.ValidateCredentials($UserName, $Password.GetNetworkCredential().Password)
return $credentailsValid
}
finally
{
$principalContext.Dispose()
}
}
<#
.SYNOPSIS
Queries a user by the given username. If found the function returns a UserPrincipal object.
Otherwise, the function returns $null.
.PARAMETER UserName
The username to search for.
#>
function Remove-UserOnFullSku
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$UserName
)
$user = Find-UserByNameOnFullSku -Username $UserName
if ($null -ne $user)
{
try
{
Write-Verbose -Message ($script:localizedData.UserWithName -f $UserName, $script:localizedData.RemoveOperation)
$user.Delete()
Write-Verbose -Message ($script:localizedData.UserRemoved -f $UserName)
}
finally
{
$user.Dispose()
}
}
else
{
Write-Verbose -Message ($script:localizedData.NoConfigurationRequiredUserDoesNotExist -f $UserName)
}
}
<#
.SYNOPSIS
Saves changes for the given user on a machine.
.PARAMETER User
The user to save the changes of
#>
function Save-UserOnFullSku
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.DirectoryServices.AccountManagement.UserPrincipal]
$User
)
$User.Save()
}
<#
.SYNOPSIS
Expires the password of the given user.
.PARAMETER User
The user to expire the password of.
#>
function Revoke-UserPassword
{
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[System.DirectoryServices.AccountManagement.UserPrincipal]
$User
)
$User.ExpirePasswordNow()
}
<#
.SYNOPSIS
Queries a user by the given username. If found the function returns a LocalUser object.
Otherwise, the function throws an error that the user was not found.
.PARAMETER UserName
The username to search for.
#>
function Find-UserByNameOnNanoServer
{
#[OutputType([Microsoft.PowerShell.Commands.LocalUser])]
[CmdletBinding()]
param
(
[Parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[String]
$UserName
)
return Get-LocalUser -Name $UserName -ErrorAction Stop
}
<#
.SYNOPSIS
Disposes of the contents of an array list containing IDisposable objects.
.PARAMETER Disosables
The array list of IDisposable Objects to dispose of.
#>
function Remove-DisposableObject
{
[CmdletBinding()]
param
(
[Parameter()]
[System.Collections.ArrayList]
[AllowEmptyCollection()]
$Disposables
)
if ($null -ne $Disposables)
{
foreach ($disposable in $Disposables)
{
if ($disposable -is [System.IDisposable])
{
$disposable.Dispose()
}
}
}
}
Export-ModuleMember -Function *-TargetResource
| 29.228697 | 169 | 0.586272 |
b9ebbc709ddcab66f74c8842a52857abb2380037 | 1,490 | ps1 | PowerShell | PowerShell-scripts/Configure-Default-Send-Handler-for-each-Send-Ports/Configure_the_Default_SendHandler_for_each_SendPorts_v2.0.ps1 | sandroasp/BizTalk-Server-Resources | cec2007374967994074a1fe00f4aeac7072b61d6 | [
"MIT"
] | 8 | 2021-02-21T22:37:36.000Z | 2022-02-21T22:16:43.000Z | PowerShell-scripts/Configure-Default-Send-Handler-for-each-Send-Ports/Configure_the_Default_SendHandler_for_each_SendPorts_v2.0.ps1 | sandroasp/BizTalk-Server-Resources | cec2007374967994074a1fe00f4aeac7072b61d6 | [
"MIT"
] | null | null | null | PowerShell-scripts/Configure-Default-Send-Handler-for-each-Send-Ports/Configure_the_Default_SendHandler_for_each_SendPorts_v2.0.ps1 | sandroasp/BizTalk-Server-Resources | cec2007374967994074a1fe00f4aeac7072b61d6 | [
"MIT"
] | 10 | 2020-04-29T16:33:50.000Z | 2022-03-28T19:18:10.000Z | [string] $bizTalkDbServer = "BTSSQL\INSTANCE"
[string] $bizTalkDbName = "BizTalkMgmtDb"
[System.reflection.Assembly]::LoadWithPartialName("Microsoft.BizTalk.ExplorerOM") | Out-Null
$catalog = New-Object Microsoft.BizTalk.ExplorerOM.BtsCatalogExplorer
$catalog.ConnectionString = "SERVER=$bizTalkDbServer;DATABASE=$bizTalkDbName;Integrated Security=SSPI"
foreach($SendPort in $catalog.SendPorts)
{
# For each receive location in your environment
if($sendPort.IsDynamic -eq $False)
{
# Let's look for send handlers associated with Adapter configured in the send port
foreach ($handler in $catalog.SendHandlers)
{
# if the Send Handler is associated with the Adapter configured in the send port
if ($handler.TransportType.Name -eq $sendPort.PrimaryTransport.TransportType.Name)
{
# We will configured the port with the default send handler associated in each adapter in you system
# independently if it is "BizTalkServerApplication" or not.
# Note: it's is recomended that you first configure the default send handlers for each adapter
# and also not to use the "BizTalkServerApplication" (my personal recomendation)
if($handler.IsDefault)
{
$sendPort.PrimaryTransport.SendHandler = $handler
break
}
}
}
}
}
$catalog.SaveChanges() | 43.823529 | 118 | 0.656376 |
e77b69cda269bd8f3a4e65e7038c570c2d1ea291 | 2,521 | js | JavaScript | node_modules/oimo/src/shape/Shape.js | darlincode/House-fall-game | dce833a3071eccfce1da47c40d5d2cad032c40c8 | [
"MIT"
] | null | null | null | node_modules/oimo/src/shape/Shape.js | darlincode/House-fall-game | dce833a3071eccfce1da47c40d5d2cad032c40c8 | [
"MIT"
] | 5 | 2021-03-10T17:02:03.000Z | 2022-02-19T01:39:56.000Z | node_modules/oimo/src/shape/Shape.js | darlincode/House-fall-game | dce833a3071eccfce1da47c40d5d2cad032c40c8 | [
"MIT"
] | null | null | null | import { SHAPE_NULL } from '../constants';
import { printError } from '../core/Utils';
import { _Math } from '../math/Math';
import { Vec3 } from '../math/Vec3';
import { Mat33 } from '../math/Mat33';
import { AABB } from '../math/AABB';
var count = 0;
function ShapeIdCount() { return count++; }
/**
* A shape is used to detect collisions of rigid bodies.
*
* @author saharan
* @author lo-th
*/
function Shape ( config ) {
this.type = SHAPE_NULL;
// global identification of the shape should be unique to the shape.
this.id = ShapeIdCount();
// previous shape in parent rigid body. Used for fast interations.
this.prev = null;
// next shape in parent rigid body. Used for fast interations.
this.next = null;
// proxy of the shape used for broad-phase collision detection.
this.proxy = null;
// parent rigid body of the shape.
this.parent = null;
// linked list of the contacts with the shape.
this.contactLink = null;
// number of the contacts with the shape.
this.numContacts = 0;
// center of gravity of the shape in world coordinate system.
this.position = new Vec3();
// rotation matrix of the shape in world coordinate system.
this.rotation = new Mat33();
// position of the shape in parent's coordinate system.
this.relativePosition = new Vec3().copy( config.relativePosition );
// rotation matrix of the shape in parent's coordinate system.
this.relativeRotation = new Mat33().copy( config.relativeRotation );
// axis-aligned bounding box of the shape.
this.aabb = new AABB();
// density of the shape.
this.density = config.density;
// coefficient of friction of the shape.
this.friction = config.friction;
// coefficient of restitution of the shape.
this.restitution = config.restitution;
// bits of the collision groups to which the shape belongs.
this.belongsTo = config.belongsTo;
// bits of the collision groups with which the shape collides.
this.collidesWith = config.collidesWith;
};
Object.assign( Shape.prototype, {
Shape: true,
// Calculate the mass information of the shape.
calculateMassInfo: function( out ){
printError("Shape", "Inheritance error.");
},
// Update the proxy of the shape.
updateProxy: function(){
printError("Shape", "Inheritance error.");
}
});
export { Shape }; | 25.989691 | 73 | 0.637842 |
59519364b9117dc6252320001df5df587aca744d | 2,741 | cc | C++ | mojo/shell/external_application_registrar_connection.cc | domenic/mojo | 53dda76fed90a47c35ed6e06baf833a0d44495b8 | [
"BSD-3-Clause"
] | 5 | 2019-05-24T01:25:34.000Z | 2020-04-06T05:07:01.000Z | mojo/shell/external_application_registrar_connection.cc | domenic/mojo | 53dda76fed90a47c35ed6e06baf833a0d44495b8 | [
"BSD-3-Clause"
] | null | null | null | mojo/shell/external_application_registrar_connection.cc | domenic/mojo | 53dda76fed90a47c35ed6e06baf833a0d44495b8 | [
"BSD-3-Clause"
] | 5 | 2016-12-23T04:21:10.000Z | 2020-06-18T13:52:33.000Z | // 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.
#include "mojo/shell/external_application_registrar_connection.h"
#include "base/bind.h"
#include "base/files/file_path.h"
#include "base/memory/scoped_ptr.h"
#include "base/message_loop/message_loop.h"
#include "mojo/edk/embedder/channel_init.h"
#include "mojo/public/cpp/bindings/error_handler.h"
#include "mojo/public/interfaces/application/application.mojom.h"
#include "mojo/public/interfaces/application/shell.mojom.h"
#include "mojo/shell/domain_socket/net_errors.h"
#include "mojo/shell/domain_socket/socket_descriptor.h"
#include "mojo/shell/domain_socket/unix_domain_client_socket_posix.h"
#include "mojo/shell/external_application_registrar.mojom.h"
#include "url/gurl.h"
namespace mojo {
namespace shell {
ExternalApplicationRegistrarConnection::ExternalApplicationRegistrarConnection(
const base::FilePath& socket_path)
: client_socket_(new UnixDomainClientSocket(socket_path.value(), false)) {
}
ExternalApplicationRegistrarConnection::
~ExternalApplicationRegistrarConnection() {
channel_init_.WillDestroySoon();
}
void ExternalApplicationRegistrarConnection::OnConnectionError() {
channel_init_.WillDestroySoon();
}
void ExternalApplicationRegistrarConnection::Connect(
const CompletionCallback& callback) {
DCHECK(client_socket_) << "Single use only.";
int rv = client_socket_->Connect(
base::Bind(&ExternalApplicationRegistrarConnection::OnConnect,
base::Unretained(this),
callback));
if (rv != net::ERR_IO_PENDING) {
DVLOG(1) << "Connect returning immediately: " << net::ErrorToString(rv);
OnConnect(callback, rv);
return;
}
DVLOG(1) << "Waiting for connection.";
}
void ExternalApplicationRegistrarConnection::Register(
const GURL& app_url,
base::Callback<void(ShellPtr)> register_complete_callback) {
DCHECK(!client_socket_);
registrar_->Register(String::From(app_url), register_complete_callback);
}
void ExternalApplicationRegistrarConnection::OnConnect(
CompletionCallback callback,
int rv) {
DVLOG(1) << "OnConnect called: " << net::ErrorToString(rv);
if (rv != net::OK) {
callback.Run(rv);
return;
}
mojo::ScopedMessagePipeHandle ptr_message_pipe_handle =
channel_init_.Init(client_socket_->ReleaseConnectedSocket(),
base::MessageLoopProxy::current());
CHECK(ptr_message_pipe_handle.is_valid());
client_socket_.reset(); // This is dead now, ensure it can't be reused.
registrar_.Bind(ptr_message_pipe_handle.Pass());
callback.Run(rv);
}
} // namespace shell
} // namespace mojo
| 33.839506 | 79 | 0.749726 |
731de9526e1f3822309e1c1e3a9377ce2485c935 | 11,098 | rs | Rust | src/ds/flow_instructions.rs | The127/oath2 | 88ff08d06ded999faee477dd230853bbd1099f52 | [
"MIT"
] | 1 | 2019-07-19T14:19:03.000Z | 2019-07-19T14:19:03.000Z | src/ds/flow_instructions.rs | The127/oath2 | 88ff08d06ded999faee477dd230853bbd1099f52 | [
"MIT"
] | null | null | null | src/ds/flow_instructions.rs | The127/oath2 | 88ff08d06ded999faee477dd230853bbd1099f52 | [
"MIT"
] | null | null | null | use super::super::err::*;
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use num_traits::{FromPrimitive, ToPrimitive};
use std::convert::{Into, TryFrom};
use std::io::{Cursor, Seek, SeekFrom};
use super::actions;
use std::path;
#[derive(Primitive, Debug, PartialEq, Clone)]
pub enum InstructionType {
/// Setup the next table in the lookup pipeline
GotoTable = 1,
/// Setup the metadata field for use later in pipeline
WriteMetadata = 2,
/// Write the action(s) onto the datapath action set
WriteActions = 3,
/// Applies the action(s) immediately
ApplyActions = 4,
/// Clears all actions from the datapath
/// action set
Clearactions = 5,
/// Apply meter (rate limiter)
Meter = 6,
/// Experimenter instruction
Experimenter = 0xFFFF,
}
#[derive(Debug, PartialEq, Clone)]
pub struct InstructionHeader {
/// OFPIT_GOTO_TABLE
ttype: InstructionType,
/// Length of this struct in bytes.
len: u16,
payload: InstructionPayload,
}
pub fn get_instruction_slice_len(cur: &mut Cursor<&[u8]>) -> usize {
cur.seek(SeekFrom::Current(2)).unwrap(); //skip to length
let len = cur.read_u16::<BigEndian>().unwrap();
cur.seek(SeekFrom::Current(-4)).unwrap();
len as usize
}
impl Into<Vec<u8>> for InstructionHeader {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u16::<BigEndian>(self.ttype.to_u16().unwrap())
.unwrap();
res.write_u16::<BigEndian>(self.len).unwrap();
res.extend_from_slice(&Into::<Vec<u8>>::into(self.payload));
res
}
}
impl<'a> TryFrom<&'a [u8]> for InstructionHeader {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
let raw_ttype = cursor.read_u16::<BigEndian>().chain_err(|| {
let err_msg = format!(
"Could not read InstructionHeader raw_ttype!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?;
let ttype = InstructionType::from_u16(raw_ttype).ok_or::<Error>(
ErrorKind::UnknownValue(raw_ttype as u64, stringify!(InstructionType)).into(),
)?;
let length = cursor.read_u16::<BigEndian>().chain_err(|| {
let err_msg = format!(
"Could not read InstructionHeader length!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?;
let payload_slice = &bytes[4..];
let payload = match ttype {
InstructionType::GotoTable => {
InstructionPayload::GotoTable(PayloadGotoTable::try_from(payload_slice)?)
}
InstructionType::WriteMetadata => {
InstructionPayload::WriteMetaData(PayloadWriteMetaData::try_from(payload_slice)?)
}
InstructionType::WriteActions => {
InstructionPayload::WriteActions(PayloadWriteActions::try_from(payload_slice)?)
}
InstructionType::ApplyActions => {
InstructionPayload::ApplyActions(PayloadApplyActions::try_from(payload_slice)?)
}
InstructionType::Clearactions => {
InstructionPayload::ClearActions(PayloadClearActions::try_from(payload_slice)?)
}
InstructionType::Meter => {
InstructionPayload::Meter(PayloadMeter::try_from(payload_slice)?)
}
InstructionType::Experimenter => bail!(ErrorKind::UnsupportedValue(
ttype as u64,
stringify!(InstructionType),
)),
};
Ok(InstructionHeader {
ttype: ttype,
len: length,
payload: payload,
})
}
}
#[derive(Debug, PartialEq, Clone)]
pub enum InstructionPayload {
GotoTable(PayloadGotoTable),
WriteMetaData(PayloadWriteMetaData),
WriteActions(PayloadWriteActions),
ApplyActions(PayloadApplyActions),
ClearActions(PayloadClearActions),
Meter(PayloadMeter),
//Experimenter(PayloadExperimenter), // not supported
}
impl Into<Vec<u8>> for InstructionPayload {
fn into(self) -> Vec<u8> {
match self {
InstructionPayload::GotoTable(payload) => payload.into(),
InstructionPayload::WriteMetaData(payload) => payload.into(),
InstructionPayload::WriteActions(payload) => payload.into(),
InstructionPayload::ApplyActions(payload) => payload.into(),
InstructionPayload::ClearActions(payload) => payload.into(),
InstructionPayload::Meter(payload) => payload.into(),
}
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadGotoTable {
/// Set next table in the lookup pipeline
table_id: u8,
// Pad 3 bytes
}
impl<'a> TryFrom<&'a [u8]> for PayloadGotoTable {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
Ok(PayloadGotoTable {
table_id: cursor.read_u8().chain_err(|| {
let err_msg = format!(
"Could not read PayloadGotoTable table_id!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?,
})
// pad 3 bytes by ignoring them
}
}
impl Into<Vec<u8>> for PayloadGotoTable {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u8(self.table_id).unwrap();
res.write_u8(0).unwrap(); // pad 1 byte
res.write_u16::<BigEndian>(0).unwrap(); // pad 2 bytes
res
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadWriteMetaData {
// pad 4 bytes
metadata: u64,
metadata_mask: u64,
}
impl<'a> TryFrom<&'a [u8]> for PayloadWriteMetaData {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
cursor.read_u32::<BigEndian>().unwrap(); //4 bytes padding
Ok(PayloadWriteMetaData {
metadata: cursor.read_u64::<BigEndian>().chain_err(|| {
let err_msg = format!(
"Could not read PayloadWriteMetaData metadata!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?,
metadata_mask: cursor.read_u64::<BigEndian>().chain_err(|| {
let err_msg = format!(
"Could not read PayloadWriteMetaData metadata_mask!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?,
})
}
}
impl Into<Vec<u8>> for PayloadWriteMetaData {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u32::<BigEndian>(0).unwrap(); // pad 4 bytes
res.write_u64::<BigEndian>(self.metadata).unwrap(); // pad 4 bytes
res.write_u64::<BigEndian>(self.metadata_mask).unwrap(); // pad 4 bytes
res
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadWriteActions {
// pad 4 bytes
actions: Vec<actions::ActionHeader>,
}
impl<'a> TryFrom<&'a [u8]> for PayloadWriteActions {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
let mut actions = Vec::new();
let mut bytes_remaining = bytes.len();
while bytes_remaining > 0 {
let action_len = actions::ActionHeader::read_len(&mut cursor)?;
let action_slice =
&bytes[cursor.position() as usize..cursor.position() as usize + action_len];
let action = actions::ActionHeader::try_from(action_slice)?;
cursor.seek(SeekFrom::Current(action_len as i64)).unwrap();
bytes_remaining -= action_len;
actions.push(action);
}
Ok(PayloadWriteActions { actions: actions })
}
}
impl Into<Vec<u8>> for PayloadWriteActions {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u32::<BigEndian>(0).unwrap(); // pad 4 bytes
for action in self.actions {
res.extend_from_slice(&Into::<Vec<u8>>::into(action)[..]);
}
res
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadApplyActions {
// pad 4 bytes
actions: Vec<actions::ActionHeader>,
}
impl<'a> TryFrom<&'a [u8]> for PayloadApplyActions {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
let mut actions = Vec::new();
let mut bytes_remaining = bytes.len();
while bytes_remaining > 0 {
let action_len = actions::ActionHeader::read_len(&mut cursor)?;
let action_slice =
&bytes[cursor.position() as usize..cursor.position() as usize + action_len];
let action = actions::ActionHeader::try_from(action_slice)?;
cursor.seek(SeekFrom::Current(action_len as i64)).unwrap();
bytes_remaining -= action_len;
actions.push(action);
}
Ok(PayloadApplyActions { actions: actions })
}
}
impl Into<Vec<u8>> for PayloadApplyActions {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u32::<BigEndian>(0).unwrap(); // pad 4 bytes
for action in self.actions {
res.extend_from_slice(&Into::<Vec<u8>>::into(action)[..]);
}
res
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadClearActions {
//pad 4 bytes
}
impl<'a> TryFrom<&'a [u8]> for PayloadClearActions {
type Error = Error;
fn try_from(_bytes: &'a [u8]) -> Result<Self> {
Ok(PayloadClearActions {})
}
}
impl Into<Vec<u8>> for PayloadClearActions {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u32::<BigEndian>(0).unwrap(); // pad 4 bytes
res
}
}
#[derive(Debug, PartialEq, Clone)]
pub struct PayloadMeter {
meter_id: u32,
}
impl<'a> TryFrom<&'a [u8]> for PayloadMeter {
type Error = Error;
fn try_from(bytes: &'a [u8]) -> Result<Self> {
let mut cursor = Cursor::new(bytes);
Ok(PayloadMeter {
meter_id: cursor.read_u32::<BigEndian>().chain_err(|| {
let err_msg = format!(
"Could not read PayloadMeter meter_id!{}Cursor: {:?}",
path::MAIN_SEPARATOR,
cursor
);
error!("{}", err_msg);
err_msg
})?,
})
}
}
impl Into<Vec<u8>> for PayloadMeter {
fn into(self) -> Vec<u8> {
let mut res = Vec::new();
res.write_u32::<BigEndian>(self.meter_id).unwrap(); // pad 4 bytes
res
}
}
| 32.168116 | 97 | 0.568571 |
ad8b98a6d5821be0ffc2931400ab69b5d091bd6b | 735 | rs | Rust | src/formation_search/unused_slots.rs | sgrif/cotli-helper | 510f8f14d73390921a4e22a24eab9fb0a64554ad | [
"MIT"
] | 5 | 2017-05-29T04:51:21.000Z | 2020-12-18T10:10:38.000Z | src/formation_search/unused_slots.rs | sgrif/cotli-helper | 510f8f14d73390921a4e22a24eab9fb0a64554ad | [
"MIT"
] | null | null | null | src/formation_search/unused_slots.rs | sgrif/cotli-helper | 510f8f14d73390921a4e22a24eab9fb0a64554ad | [
"MIT"
] | null | null | null | use formation::Formation;
use crusader::{Crusader, Slot};
pub fn unused_slots<'a>(
formation: &Formation,
crusaders: &'a [Crusader],
) -> impl Iterator<Item=&'a Crusader> + Clone {
UnusedSlots {
crusaders: crusaders.iter(),
used_slots: formation.used_slots(),
}
}
#[derive(Debug, Clone, Copy)]
struct UnusedSlots<T> {
crusaders: T,
used_slots: Slot,
}
impl<'a, T: Iterator<Item=&'a Crusader>> Iterator for UnusedSlots<T> {
type Item = &'a Crusader;
fn next(&mut self) -> Option<Self::Item> {
while let Some(item) = self.crusaders.next() {
if !self.used_slots.contains(item.slot()) {
return Some(item);
}
}
None
}
}
| 22.96875 | 70 | 0.583673 |
c57c2c3f537cd69e94fe5f16773568adebf18d90 | 876 | hpp | C++ | framework/graphics/graphics/scene/scene_2.hpp | YiJiangFengYun/vulkan-graphics-examples | e7b788b8f47dd238b08840c019940c7c52335a54 | [
"MIT"
] | 1 | 2018-03-01T01:05:25.000Z | 2018-03-01T01:05:25.000Z | framework/graphics/graphics/scene/scene_2.hpp | YiJiangFengYun/vulkan-graphics-examples | e7b788b8f47dd238b08840c019940c7c52335a54 | [
"MIT"
] | null | null | null | framework/graphics/graphics/scene/scene_2.hpp | YiJiangFengYun/vulkan-graphics-examples | e7b788b8f47dd238b08840c019940c7c52335a54 | [
"MIT"
] | null | null | null | #ifndef VG_SCENE_2_H
#define VG_SCENE_2_H
#include "graphics/scene/space_info.hpp"
#include "graphics/scene/scene.hpp"
namespace vg
{
class Scene2 : public Scene<SpaceType::SPACE_2>
{
public:
Scene2();
virtual MatrixType getProjMatrix(const ProjectorType *pProjector) const override;
virtual BoundsType getProjectionBoundsInWorld(const ProjectorType *pProjector) const override;
virtual Bool32 isInProjection(const ProjectorType *pProjector
, const TransformType *pTransform
, BoundsType bounds
, fd::Rect2D *projectionRect = nullptr) const override;
virtual Bool32 isInProjection(const ProjectorType *pProjector
, BoundsType bounds
, fd::Rect2D *projectionRect = nullptr) const override;
private:
};
} //namespace kgs
#endif // !VG_SCENE_2_H
| 30.206897 | 102 | 0.688356 |
acc8009acf7ca6dfcde029b273c6b07612d37b60 | 17,215 | cpp | C++ | tplib/matrix/matrix/matrix.cpp | yuwang211/TriplePlus | 753d44107a63a29a675d8129012ecc512e0651c2 | [
"MIT"
] | null | null | null | tplib/matrix/matrix/matrix.cpp | yuwang211/TriplePlus | 753d44107a63a29a675d8129012ecc512e0651c2 | [
"MIT"
] | null | null | null | tplib/matrix/matrix/matrix.cpp | yuwang211/TriplePlus | 753d44107a63a29a675d8129012ecc512e0651c2 | [
"MIT"
] | null | null | null | inline void Matrix::setindex()
{
double *d = num->begin();
for (int i = 0; i < row; ++i)
{
(*index)[i] = d;
d += col;
}
}
inline void Matrix::makeonly()
{
if (uc.makeonly())
{
Block<double> *tmp = num;
num = new Block<double>(row * col);
Assert(num, "malloc failed");
index = new Block<pdouble>(row);
Assert(index, "mallow failed");
memcpy(num->begin(), tmp->begin(), row * col * sizeof(double));
setindex();
}
}
Matrix::Matrix(): row(0), col(0)
{
num = NULL;
index = NULL;
}
Matrix::Matrix(int r, int c): row(r), col(c)
{
num = new Block<double>(r * c);
Assert(num, "malloc failed");
index = new Block<pdouble>(r);
Assert(index, "mallow failed");
num->reset();
setindex();
}
Matrix::Matrix(const Matrix &m): uc(m.uc), row(m.row), col(m.col)
{
index = m.index;
num = m.num;
}
Matrix::Matrix(int n, double *d, int direction)
{
if (direction == VERTICAL)
{
row = 1;
col = n;
num = new Block<double>(n);
Assert(num, "malloc failed");
index = new Block<pdouble>(1);
Assert(index, "mallow failed");
memcpy(num->begin(), d, n * sizeof(double));
setindex();
}
else if (direction == HORIZON)
{
row = n;
col = 1;
num = new Block<double>(n);
Assert(num, "malloc failed");
index = new Block<pdouble>(n);
Assert(index, "mallow failed");
memcpy(num->begin(), d, n * sizeof(double));
setindex();
}
else if (direction == DIAGONAL)
{
row = n;
col = n;
num = new Block<double>(n * n);
Assert(num, "malloc failed");
index = new Block<pdouble>(n);
Assert(index, "mallow failed");
setindex();
double *dd = num->begin();
double *s = d;
for (int i = 0; i < n; ++i)
{
(*dd) = (*(s++));
dd += (n + 1);
}
}
}
Matrix::~Matrix()
{
if (uc.only())
{
delete index;
delete num;
}
}
Matrix& Matrix::operator=(const Matrix &m)
{
if (uc.reattach(m.uc))
{
delete index;
delete num;
}
row = m.row;
col = m.col;
index = m.index;
num = m.num;
return *this;
}
Matrix Matrix::Make(int r, int c, std::initializer_list<double> il)
{
int count = r * c;
Matrix ret(r, c);
auto it = il.begin();
for (int i = 0; i < r; ++i)
for (int j = 0; j < c; ++j)
ret[i][j] = *(it++);
return ret;
}
Matrix Matrix::Zero(int r, int c)
{
return Matrix(r, c);
}
Matrix Matrix::Identity(int n)
{
Matrix ret(n, n);
double *d = ret.num->begin();
for (int i = 0; i < n; ++i)
{
(*d) = 1.0;
d += (n + 1);
}
return ret;
}
Matrix Matrix::Random(int n, int m)
{
Matrix ret(n, m);
double *d = ret.num->begin();
while (d != ret.num->end())
{
(*(d++)) = Rand();
}
return ret;
}
Matrix Matrix::Diag(const Matrix &m)
{
Assert(m.col == 1 || m.row == 1, "not a vector");
if (m.col == 1)
{
Matrix ret(m.row, m.row);
for (int i = 0; i < m.row; ++i)
ret[i][i] = m[i][0];
return ret;
}
else
{
Matrix ret(m.col, m.col);
for (int i = 0; i < m.col; ++i)
ret[i][i] = m[0][i];
return ret;
}
}
inline void Matrix::update()
{
makeonly();
}
inline double* Matrix::operator[] (int k)
{
update();
return (*index)[k];
}
inline double& Matrix::elem(int x, int y)
{
Assert(0 <= x && x < row && 0 <= y && y < col, "matrix index exceeded");
Assert(!uc.makeonly(), "please use update() before modify this matrix");
return (*index)[x][y];
}
inline const double* Matrix::operator[] (int k) const
{
return (*index)[k];
}
Matrix operator + (const Matrix &lhs, const Matrix &rhs)
{
Assert(lhs.row == rhs.row && lhs.col == rhs.col, "matrix size not matched");
Matrix ret(lhs);
ret.update();
double *s = ret.num->begin();
double *d = rhs.num->begin();
for (int i = rhs.col * rhs.row; i > 0; --i)
(*(s++)) += (*(d++));
return ret;
}
Matrix operator - (const Matrix &lhs, const Matrix &rhs)
{
Assert(lhs.row == rhs.row && lhs.col == rhs.col, "matrix size not matched");
Matrix ret(lhs);
ret.update();
double *s = ret.num->begin();
double *d = rhs.num->begin();
for (int i = rhs.col * rhs.row; i > 0; --i)
(*(s++)) -= (*(d++));
return ret;
}
Matrix operator * (const Matrix &lhs, const Matrix &rhs)
{
Assert(lhs.col == rhs.row, "matrix size not matched");
if (lhs.row == lhs.col && rhs.col == rhs.row && lhs.row >= Matrix::FAST_MULTIPLE_SIZE)
{
Matrix l;
Matrix r;
if (lhs.row & 1)
{
l = ((lhs | Matrix(lhs.row, 1)) & Matrix(1, lhs.col + 1));
r = ((rhs | Matrix(rhs.row, 1)) & Matrix(1, rhs.col + 1));
}
else
{
l = lhs;
r = rhs;
}
int n = l.row;
int n2 = (n >> 1);
Matrix A11(l.submatrix( 0, 0, n2, n2));
Matrix A12(l.submatrix( 0, n2, n2, n));
Matrix A21(l.submatrix(n2, 0, n, n2));
Matrix A22(l.submatrix(n2, n2, n, n));
Matrix B11(r.submatrix( 0, 0, n2, n2));
Matrix B12(r.submatrix( 0, n2, n2, n));
Matrix B21(r.submatrix(n2, 0, n, n2));
Matrix B22(r.submatrix(n2, n2, n, n));
Matrix S1(B12 - B22);
Matrix S2(A11 + A12);
Matrix S3(A21 + A22);
Matrix S4(B21 - B11);
Matrix S5(A11 + A22);
Matrix S6(B11 + B22);
Matrix S7(A12 - A22);
Matrix S8(B21 + B22);
Matrix S9(A11 - A21);
Matrix S0(B11 + B12);
Matrix P1(A11 * S1);
Matrix P2(S2 * B22);
Matrix P3(S3 * B11);
Matrix P4(A22 * S4);
Matrix P5(S5 * S6);
Matrix P6(S7 * S8);
Matrix P7(S9 * S0);
Matrix ret(((P5 + P4 - P2 + P6) | (P1 + P2)) & ((P3 + P4) | (P5 + P1 - P3 - P7)));
if (lhs.row == l.row) return ret;
else return ret.submatrix(0, 0, lhs.row, lhs.col);
}
Matrix ret(lhs.row, rhs.col);
for (int i = 0; i < lhs.row; ++i)
for (int j = 0; j < rhs.row; ++j)
for (int k = 0; k < rhs.col; ++k)
ret.elem(i, k) += lhs[i][j] * rhs[j][k];
return ret;
}
Matrix operator * (const Matrix &lhs, double rhs)
{
Matrix ret(lhs);
ret.update();
double *s = ret.num->begin();
for (int i = lhs.col * lhs.row; i > 0; --i)
(*(s++)) *= rhs;
return ret;
}
Matrix operator * (double lhs, const Matrix &rhs)
{
Matrix ret(rhs);
ret.update();
double *s = ret.num->begin();
for (int i = rhs.col * rhs.row; i > 0; --i)
(*(s++)) *= lhs;
return ret;
}
Matrix operator & (const Matrix &lhs, const Matrix &rhs)
{
Assert(lhs.col == rhs.col, "matrix size not matched");
Matrix ret(lhs.row + rhs.row, rhs.col);
memcpy(ret.num->begin(), lhs.num->begin(), lhs.row * lhs.col * sizeof(double));
memcpy(ret.num->begin() + lhs.row * lhs.col, rhs.num->begin(), rhs.row * rhs.col * sizeof(double));
return ret;
}
Matrix operator | (const Matrix &lhs, const Matrix &rhs)
{
Assert(lhs.row == rhs.row, "matrix size not matched");
Matrix ret(lhs.row, lhs.col + rhs.col);
for (int i = 0; i < ret.row; ++i)
{
memcpy((*(ret.index))[i], (*(lhs.index))[i], lhs.col * sizeof(double));
memcpy((*(ret.index))[i] + lhs.col, (*(rhs.index))[i], rhs.col * sizeof(double));
}
return ret;
}
int Matrix::gauss(Matrix &m, int mode)
{
Assert(row == m.row, "matrix size not matched");
update();
m.update();
double d;
gauss_swap = 0;
for (int i = 0; i < row; ++i)
{
int l = i;
for (int j = i + 1; j < row; ++j)
if (fabs((*index)[j][i]) > fabs((*index)[l][i]))
l = j;
if (l != i) ++gauss_swap;
if (fabs((*index)[l][i]) < EPS)
return i;
for (int j = 0; j < col; ++j)
{
d = (*index)[l][j];
(*index)[l][j] = (*index)[i][j];
(*index)[i][j] = d;
}
for (int j = 0; j < m.col; ++j)
{
d = m[l][j];
m.elem(l, j) = m[i][j];
m.elem(i, j) = d;
}
for (int j = i + 1; j < row; ++j)
{
d = (*index)[j][i] / (*index)[i][i];
for (int k = 0; k < col; ++k)
(*index)[j][k] -= d * (*index)[i][k];
for (int k = 0; k < m.col; ++k)
m.elem(j, k) -= d * m.elem(i, k);
}
}
if (mode == GAUSS_UPPER) return row;
for (int i = row - 1; i >= 0; --i)
{
for (int j = i - 1; j >= 0; --j)
{
d = (*index)[j][i] / (*index)[i][i];
for (int k = 0; k < m.col; ++k)
m.elem(j, k) -= d * m.elem(i, k);
(*index)[j][i] = 0.0;
}
}
if (mode == GAUSS_DIAGONAL) return row;
for (int i = 0; i < row; ++i)
{
d = 1.0 / (*index)[i][i];
for (int k = 0; k < m.col; ++k)
m.elem(i, k) *= d;
(*index)[i][i] = 1.0;
}
return row;
}
int Matrix::rank() const
{
Matrix m(*this);
Matrix tmp(row, 0);
return m.gauss(tmp, GAUSS_UPPER);
}
double Matrix::det() const
{
Assert(row == col, "matrix size not matched");
Matrix m(*this);
Matrix tmp(row, 0);
m.gauss(tmp, GAUSS_UPPER);
double ret = 1.0;
for (int i = 0; i < row; ++i)
ret *= m.elem(i, i);
if (m.gauss_swap & 1) return -ret;
else return ret;
}
double Matrix::trace() const
{
Assert(row == col, "matrix size not matched");
double ret = 0;
for (int i = 0; i < row; ++i)
ret += (*index)[i][i];
return ret;
}
Matrix Matrix::transpose() const
{
Matrix ret(col, row);
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret.elem(j, i) = (*index)[i][j];
return ret;
}
Matrix Matrix::inverse() const
{
Assert(row == col, "matrix size not matched");
Debug(Matrix tmp);
Assert((*this).invertible(tmp), "matrix is not invertible");
Matrix m(*this);
Matrix ret(Matrix::Identity(row));
m.gauss(ret, GAUSS_UNIT);
return ret;
}
bool Matrix::invertible(Matrix &m) const
{
Matrix tmp(*this);
m = Identity(row);
return (tmp.gauss(m, GAUSS_UNIT) == row);
}
Matrix Matrix::submatrix(int x0, int y0, int x1, int y1) const
{
Assert(x0 < x1 && y0 < y1, "illegal matrix size");
Assert(x1 <= row && y1 <= col, "matrix index exceed");
Matrix ret(x1 - x0, y1 - y0);
for (int i = 0; i < ret.row; ++i)
for (int j = 0; j < ret.col; ++j)
ret.elem(i, j) = (*index)[x0 + i][y0 + j];
return ret;
}
double Matrix::max() const
{
double ret = (*index)[0][0];
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret = Max(ret, (*index)[i][j]);
return ret;
}
double Matrix::min() const
{
double ret = (*index)[0][0];
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret = Min(ret, (*index)[i][j]);
return ret;
}
double Matrix::sum() const
{
double ret = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret += (*index)[i][j];
return ret;
}
double Matrix::sumabs() const
{
double ret = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret += fabs((*index)[i][j]);
return ret;
}
double Matrix::mean() const
{
double ret = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret += (*index)[i][j];
return ret / (double)(row * col);
}
double Matrix::var() const
{
double mean = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
mean += (*index)[i][j];
mean /= (double)(row * col);
double ret = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret += Sqr((*index)[i][j] - mean);
return ret / (double)(row * col);
}
double Matrix::std() const
{
double mean = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
mean += (*index)[i][j];
mean /= (double)(row * col);
double ret = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
ret += Sqr((*index)[i][j] - mean);
return sqrt(ret / (double)(row * col));
}
Matrix Matrix::prefixsum() const
{
Matrix ret(*this);
ret.update();
for (int i = 1; i < row; ++i)
ret[i][0] += ret[i - 1][0];
for (int j = 1; j < col; ++j)
ret[0][j] += ret[0][j - 1];
for (int i = 1; i < row; ++i)
for (int j = 1; j < col; ++j)
ret[i][j] += ret[i - 1][j] + ret[i][j - 1] - ret[i - 1][j - 1];
return ret;
}
double Matrix::norm(double p) const
{
double t = 0;
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
t += pow(fabs((*index)[i][j]), p);
return pow(t, 1.0 / p);
}
bool Matrix::symmetric() const
{
if (row != col) return false;
for (int i = 0; i < row; ++i)
for (int j = i + 1; j < col; ++j)
if ((*index)[i][j] != (*index)[j][i]) return false;
return true;
}
void Matrix::eigen_greatest(double &lambda0, Matrix &v) const
{
Assert(row == col, "eigen calculation must be on a square matrix");
v = Matrix::Random(row, 1);
Matrix b = (*this) * v;
double k = b.norm(2) * Sgn(b[0][0]);
b = b * (1.0 / k);
while ((b - v).sumabs() > EPS)
{
v = b;
b = (*this) * v;
k = b.norm(2) * Sgn(b[0][0]);
b = b * (1.0 / k);
}
v = b;
b = (*this) * v;
lambda0 = b[0][0] / v[0][0];
}
void Matrix::eigen_nearest(double miu, double &lambda, Matrix &v) const
{
Assert(row == col, "eigen calculation must be on a square matrix");
v = Matrix::Random(row, 1);
Matrix a2 = ((*this) - miu * Matrix::Identity(row)).inverse();
Matrix b = a2 * v;
double k = b.norm(2) * Sgn(b[0][0]);
b = b * (1.0 / k);
while ((b - v).sumabs() > EPS)
{
v = b;
b = a2 * v;
k = b.norm(2) * Sgn(b[0][0]);;
b = b * (1.0 / k);
}
v = b;
b = (*this) * v;
lambda = b[0][0] / v[0][0];
}
void Matrix::evd(Matrix &lambda, Matrix &v) const
{
Assert(symmetric(), "eigen calculation must be on a symmetric matrix");
Matrix S(*this);
Matrix E = Matrix::Identity(row);
int n = row;
int state = n;
Block<int> ind(n);
Matrix e(n, 1);
Block<bool> changed(n);
for (int k = 0; k < n; ++k)
{
ind[k] = jacobi_maxind(S, k);
e[k][0] = S[k][k];
changed[k] = true;
}
while (state != 0)
{
double p, y, d, r, c, s, t;
int k, l;
int m = 0;
for (k = 1; k < n - 1; ++k)
if (fabs(S[k][ind[k]]) > fabs(S[m][ind[m]])) m = k;
k = m;
l = ind[m];
p = S[k][l];
y = (e[l][0] - e[k][0]) * 0.5;
d = fabs(y) + sqrt(p * p + y * y);
r = sqrt(p * p + d * d);
c = d / r;
s = p / r;
t = p * p / d;
if (y < 0)
{
s = -s;
t = -t;
}
S[k][l] = 0.0;
state += jacobi_update(changed, e, k, -t);
state += jacobi_update(changed, e, l, t);
for (int i = 0; i < k; ++i)
jacobi_rotate(S, i, k, i, l, c, s);
for (int i = k + 1; i < l; ++i)
jacobi_rotate(S, k, i, i, l, c, s);
for (int i = l + 1; i < n; ++i)
jacobi_rotate(S, k, i, l, i, c, s);
for (int i = 0; i < n; ++i)
jacobi_rotate(E, i, k, i, l, c, s);
ind[k] = jacobi_maxind(S, k);
ind[l] = jacobi_maxind(S, l);
}
lambda = e.transpose();
v = E;
for (int i = 0; i < n; ++i)
{
int k = i;
for (int j = i + 1; j < n; ++j)
if (lambda[0][j] > lambda[0][k])
k = j;
Swap(lambda[0][k], lambda[0][i]);
for (int j = 0; j < n; ++j)
Swap(v[j][k], v[j][i]);
}
}
void Matrix::svd(Matrix &u, Matrix &sigma, Matrix &v) const
{
Matrix a = (*this) * (*this).transpose();
Matrix tmp;
a.evd(tmp, u);
a = (*this).transpose() * (*this);
a.evd(tmp, v);
sigma = Matrix::Zero(row, col);
for (int i = Min(row, col) - 1; i >= 0; --i)
sigma[i][i] = sqrt(tmp[0][i]);
}
Matrix Matrix::func(Func0 f) const
{
Matrix ret(*this);
ret.update();
for (double *i = ret.num->begin(); i != ret.num->end(); ++i)
*i = (*f)();
return ret;
}
Matrix Matrix::func(Func1 f) const
{
Matrix ret(*this);
ret.update();
for (double *i = ret.num->begin(); i != ret.num->end(); ++i)
*i = (*f)(*i);
return ret;
}
Matrix Matrix::func(Func2 f) const
{
Matrix ret(*this);
ret.update();
double *d = ret.num->begin();
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
*(d++) = (*f)(i, j);
return ret;
}
Matrix Matrix::func(Func3 f) const
{
Matrix ret(*this);
ret.update();
double *d = ret.num->begin();
for (int i = 0; i < row; ++i)
for (int j = 0; j < col; ++j)
{
*(d) = (*f)(i, j, (*d));
++d;
}
return ret;
}
int Matrix::jacobi_maxind(Matrix &S, int k) const
{
int m = k + 1;
for (int i = k + 2; i < row; ++i)
if (fabs(S[k][i]) > fabs(S[k][m])) m = i;
return m;
}
int Matrix::jacobi_update(Block<bool> &changed, Matrix &e, int k, double t) const
{
e[k][0] += t;
if (changed[k] && fabs(t) < EPS)
{
changed[k] = false;
return -1;
}
else if (!changed[k] && fabs(t) > EPS)
{
changed[k] = true;
return 1;
}
else return 0;
}
void Matrix::jacobi_rotate(Matrix &S, int k, int l, int i, int j, double c, double s) const
{
double s0 = c * S[k][l] - s * S[i][j];
double s1 = s * S[k][l] + c * S[i][j];
S[k][l] = s0;
S[i][j] = s1;
}
| 22.681159 | 101 | 0.485507 |
1fa3fec191440ee24d65edb5bc0f89a3f18e95b7 | 463 | asm | Assembly | programs/oeis/131/A131136.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | 1 | 2021-03-15T11:38:20.000Z | 2021-03-15T11:38:20.000Z | programs/oeis/131/A131136.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | programs/oeis/131/A131136.asm | jmorken/loda | 99c09d2641e858b074f6344a352d13bc55601571 | [
"Apache-2.0"
] | null | null | null | ; A131136: Denominator of (exponential) expansion of log((x/2-1)/(x-1)).
; 1,2,4,4,8,4,8,8,16,4,8,8,16,8,16,16,32,4,8,8,16,8,16,16,32,8,16,16,32,16,32,32,64,4,8,8,16,8,16,16,32,8,16,16,32,16,32,32,64,8,16,16,32,16,32,32,64,16,32,32,64,32,64,64,128,4,8,8,16,8,16,16,32,8,16,16
mov $2,$0
mov $0,0
mov $3,$2
mul $2,2
lpb $2
mov $1,$2
add $3,$0
lpb $3
mul $3,2
mov $2,$3
sub $3,1
mov $0,$3
trn $3,$1
lpe
sub $2,1
lpe
mov $1,$0
add $1,1
| 21.045455 | 202 | 0.559395 |
3be4ce105ad2ea75d62e90926389a3b8dc7f5255 | 23,297 | dart | Dart | lib/screens/community_screens/forum_screen.dart | ihassanjavaid/Eye-Diagnostic-System | 1be6c76664ff995daf4736dc111e5674266f32c2 | [
"MIT"
] | 2 | 2021-05-30T11:08:59.000Z | 2021-05-31T17:56:56.000Z | lib/screens/community_screens/forum_screen.dart | ihassanjavaid/Eye-Diagnostic-System | 1be6c76664ff995daf4736dc111e5674266f32c2 | [
"MIT"
] | null | null | null | lib/screens/community_screens/forum_screen.dart | ihassanjavaid/Eye-Diagnostic-System | 1be6c76664ff995daf4736dc111e5674266f32c2 | [
"MIT"
] | 2 | 2021-06-08T15:43:52.000Z | 2021-09-09T14:45:26.000Z | import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:eye_diagnostic_system/components/header_clipper_component.dart';
import 'package:eye_diagnostic_system/models/forum_question_data.dart';
import 'package:eye_diagnostic_system/models/provider_data.dart';
import 'package:eye_diagnostic_system/screens/community_screens/forum_detail_screen.dart';
import 'package:eye_diagnostic_system/services/auth_service.dart';
import 'package:eye_diagnostic_system/services/firestore_question_services.dart';
import 'package:eye_diagnostic_system/services/firestore_user_services.dart';
import 'package:eye_diagnostic_system/utilities/constants.dart';
import 'package:eye_diagnostic_system/widgets/question_dialogue_box.dart';
import 'package:eye_diagnostic_system/widgets/tags_dialog_box.dart';
import 'package:firebase_auth/firebase_auth.dart';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:flutter/widgets.dart';
import 'package:provider/provider.dart';
class Forum extends StatefulWidget {
static const String id = 'forum_screen';
@override
_ForumState createState() => _ForumState();
}
class _ForumState extends State<Forum> {
String _uid;
bool _showSpinner = false;
FirestoreQuestionService _questionService = FirestoreQuestionService();
MessageDialog msgdlg = MessageDialog();
TagsDialog tgsdlg = TagsDialog();
User _fbuser;
Auth _auth = Auth();
List<Question> _questions = [];
FirebaseFirestore _firestore = FirebaseFirestore.instance;
FirestoreUserService _userService = FirestoreUserService();
bool _userPressed = false;
bool _tagPressed = false;
Expanded choosePosts() {
if(_userPressed){
setState(() {
_tagPressed = false;
});
return buildExpandedUserPostsSection(context);
}
else if(_tagPressed){
return buildExpandedTagPostsSection(context);
}
else
return buildExpandedQuestionSection(context);
}
@override
Widget build(BuildContext context) {
return Scaffold(
body: AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle.light,
child: Container(
color: kScaffoldBackgroundColor,
child: Column(
children: <Widget>[
Container(
decoration: BoxDecoration(
color: kTealColor,
),
),
Container(
child: _buildTopPanel(),
),
Container(
child: choosePosts(),
//buildExpandedQuestionSection(context),
),
],
),
),
),
);
}
Expanded buildExpandedQuestionSection(BuildContext context) {
return Expanded(
child: FutureBuilder(
future: _questionService.getAllPosts(),
builder: (_, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
),
);
} else {
return ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: (_, index) {
return GestureDetector(
onTap: () {
Provider.of<ProviderData>(context, listen: false).updateQuestionData(snapshot.data[index].data()['question']);
Provider.of<ProviderData>(context, listen: false).updateQuestionID(snapshot.data[index].id);
Navigator.pushNamed(context, ForumDetails.id);
},
child: Container(
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: kAmberColor,
width: 2,
))),
child: ListTile(
leading: CircleAvatar(
radius: 25.0,
backgroundColor: kTealColor.withOpacity(0.8),
child: FutureBuilder(
future: _userService.getUserInitial(
email: snapshot.data[index].data()['email']),
builder: (_, snapshot2) {
if (snapshot2.hasData) {
return Text(
snapshot2.data,
style: kAvatarTextStyle,
);
} else {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
));
}
}),
foregroundColor: kTealColor,
),
title: Padding(
padding:
const EdgeInsets.only(left: 2.0, bottom: 5.0),
child: Text(
snapshot.data[index].data()['question'],
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
color: kTealColor),
),
),
subtitle: Align(
alignment: Alignment.centerLeft,
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
Container(
height: 20.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
topRight: Radius.circular(20.0),
bottomRight: Radius.circular(20.0)),
color: kTealColor),
child: Padding(
padding: const EdgeInsets.only(
left: 8.0, right: 8.0, top: 1.5),
child: Text(
snapshot.data[index].data()['tag'],
style: TextStyle(
//fontWeight: FontWeight.bold,
color: kLightTealColor),
),
),
),
Container(
height: 20.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(8),
color: kTealColor.withOpacity(0.8)),
child: Padding(
padding: const EdgeInsets.only(
left: 8.0, right: 8.0, top: 1.5),
child: Text(
snapshot.data[index].data()['views'].toString() + ' Answers ',
style: TextStyle(
fontWeight: FontWeight.bold,
color: kLightTealColor
),
),
),
),
],
),
),
),
),
);
},
);
}
}),
);
}
Expanded buildExpandedTagPostsSection(BuildContext context) {
return Expanded(
child: FutureBuilder(
future: _questionService.getTagPosts(context),
builder: (_, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
),
);
} else {
return ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: (_, index) {
return GestureDetector(
onTap: () {
Provider.of<ProviderData>(context, listen: false).updateQuestionData(snapshot.data[index].data()['question']);
Provider.of<ProviderData>(context, listen: false).updateQuestionID(snapshot.data[index].id);
Navigator.pushNamed(context, ForumDetails.id);
},
child: Container(
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: kAmberColor,
width: 2,
))),
child: ListTile(
leading: CircleAvatar(
radius: 25.0,
backgroundColor: kTealColor.withOpacity(0.8),
child: FutureBuilder(
future: _userService.getUserInitial(
email: snapshot.data[index].data()['email']),
builder: (_, snapshot2) {
if (snapshot2.hasData) {
return Padding(
padding: const EdgeInsets.only(top: 4.0),
child: Text(
snapshot2.data,
style: kAvatarTextStyle,
),
);
} else {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
));
}
}),
foregroundColor: kTealColor,
),
title: Padding(
padding:
const EdgeInsets.only(left: 2.0, bottom: 5.0),
child: Text(
snapshot.data[index].data()['question'],
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
color: kTealColor),
),
),
subtitle: Align(
alignment: Alignment.centerLeft,
child: Container(
height: 20.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
topRight: Radius.circular(20.0),
bottomRight: Radius.circular(20.0)),
color: kTealColor),
child: Padding(
padding: const EdgeInsets.only(
left: 8.0, right: 8.0, top: 1.5),
child: Text(
snapshot.data[index].data()['tag'],
style: TextStyle(
//fontWeight: FontWeight.bold,
color: kLightTealColor),
),
),
),
),
trailing: Chip(
backgroundColor: kLightAmberColor,
shape: BeveledRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
label: Text(
snapshot.data[index].data()['views'].toString(),
style: TextStyle(
fontWeight: FontWeight.w700,
color: kLightTealColor),
),
),
),
),
);
},
);
}
}),
);
}
Expanded buildExpandedUserPostsSection(BuildContext context) {
return Expanded(
child: FutureBuilder(
future: _questionService.getUserPosts(),
builder: (_, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
),
);
} else {
return ListView.builder(
itemCount: snapshot.data.length,
itemBuilder: (_, index) {
return GestureDetector(
onTap: () {
Provider.of<ProviderData>(context, listen: false).updateQuestionData(snapshot.data[index].data()['question']);
Provider.of<ProviderData>(context, listen: false).updateQuestionID(snapshot.data[index].id);
Navigator.pushNamed(context, ForumDetails.id);
},
child: Container(
decoration: BoxDecoration(
border: Border(
bottom: BorderSide(
color: kAmberColor,
width: 2,
))),
child: ListTile(
leading: CircleAvatar(
radius: 25.0,
backgroundColor: kTealColor.withOpacity(0.8),
child: FutureBuilder(
future: _userService.getUserInitial(
email: snapshot.data[index].data()['email']),
builder: (_, snapshot2) {
if (snapshot2.hasData) {
return Padding(
padding: const EdgeInsets.only(top: 4.0),
child: Text(
snapshot2.data,
style: kAvatarTextStyle,
),
);
} else {
return Center(
child: CircularProgressIndicator(
backgroundColor: kTealColor,
));
}
}),
foregroundColor: kTealColor,
),
title: Padding(
padding:
const EdgeInsets.only(left: 2.0, bottom: 5.0),
child: Text(
snapshot.data[index].data()['question'],
style: TextStyle(
fontSize: 18.0,
fontWeight: FontWeight.bold,
color: kTealColor),
),
),
subtitle: Align(
alignment: Alignment.centerLeft,
child: Container(
height: 20.0,
decoration: BoxDecoration(
borderRadius: BorderRadius.only(
topRight: Radius.circular(20.0),
bottomRight: Radius.circular(20.0)),
color: kTealColor),
child: Padding(
padding: const EdgeInsets.only(
left: 8.0, right: 8.0, top: 1.5),
child: Text(
snapshot.data[index].data()['tag'],
style: TextStyle(
//fontWeight: FontWeight.bold,
color: kLightTealColor),
),
),
),
),
trailing: Chip(
backgroundColor: kLightAmberColor,
shape: BeveledRectangleBorder(
borderRadius: BorderRadius.circular(10),
),
label: Text(
snapshot.data[index].data()['views'].toString(),
style: TextStyle(
fontWeight: FontWeight.w700,
color: kLightTealColor),
),
),
),
),
);
},
);
}
}),
);
}
Widget _buildTopPanel() {
return ClipPath(
clipper: HeaderCustomClipper(),
child: Column(
children: [
Container(
color: kTealColor,
padding: const EdgeInsets.only(left: 15, right: 15, top: 32.0, bottom: 10.0),
alignment: Alignment.center,
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
RichText(
text: TextSpan(children: [
TextSpan(
text: 'EyeSee\t',
style: kDashboardTitleTextStyle.copyWith(
color: kAmberColor),
),
TextSpan(
text: 'Forums',
style: kDashboardTitleTextStyle.copyWith(
color: kAmberColor),
),
]),
),
],
),
),
Container(
color: kTealColor,
height: 120,
width: double.infinity,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
children: [
SizedBox(
height: 14,
),
Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [
Column(
children: [
GestureDetector(
onTap: () async {
setState(() {
_userPressed = true;
});
// Navigator.pushNamed(context, ForumUserQuestions.id);
},
child: Icon(
Icons.person,
color: kAmberColor,
size: 34.0,
),
),
SizedBox(
height: 5.0,
),
Text('Asked', style: kforumHeaderButtonLabelStyle),
],
),
Column(
children: [
GestureDetector(
onTap: () {
msgdlg.announce(context);
//selectedTagItem = selectedTag;
},
child: Icon(
Icons.add_comment_rounded,
color: kAmberColor,
size: 34.0,
),
),
SizedBox(
height: 5.0,
),
Text('New', style: kforumHeaderButtonLabelStyle),
],
),
Column(
children: [
GestureDetector(
onTap: () async {
setState(() {
_tagPressed = true;
_userPressed = false;
});
await tgsdlg.showCard(context);
},
child: Icon(
Icons.tag,
color: kAmberColor,
size: 34.0,
),
),
SizedBox(
height: 5.0,
),
Text('Tags', style: kforumHeaderButtonLabelStyle),
],
),
Column(
children: [
GestureDetector(
onTap: () async {
setState(() {
_userPressed = false;
_tagPressed = false;
Provider.of<ProviderData>(context, listen: false).updateTagData('');
});
},
child: Icon(
Icons.refresh_rounded,
color: kAmberColor,
size: 34.0,
),
),
SizedBox(
height: 5.0,
),
Text('Refresh', style: kforumHeaderButtonLabelStyle),
],
),
],
),
],
),
),
],
),
);
}
/* Future<List<Question>> _getQuestions() async {
_fbuser = await _auth.getCurrentUser();
_uid = _fbuser.uid;
List<Question> questions = await _questionService.getUserQuestions(_uid);
return questions;
}
Future<List<Question>> _getAllQuestions() async {
_questions = await _questionService.getAllQuestions();
return _questions;
}*/
/*void refreshScreen(){
setState(() {
selectedTagItem = selectedTag;
});
}*/
}
| 41.233628 | 132 | 0.379663 |
f59dbee59e69e97758529f3b25db51d3cdbe28c0 | 888 | sql | SQL | aot/optimizer_bug.sql | nenadnoveljic/tpt-oracle | b64c45cc7911b9bb4698901ba8a3eedd1c6a3e28 | [
"Apache-2.0"
] | 483 | 2018-05-16T04:52:12.000Z | 2022-03-18T18:15:28.000Z | aot/optimizer_bug.sql | nenadnoveljic/tpt-oracle | b64c45cc7911b9bb4698901ba8a3eedd1c6a3e28 | [
"Apache-2.0"
] | 27 | 2019-01-21T07:55:13.000Z | 2022-02-28T12:00:30.000Z | aot/optimizer_bug.sql | nenadnoveljic/tpt-oracle | b64c45cc7911b9bb4698901ba8a3eedd1c6a3e28 | [
"Apache-2.0"
] | 237 | 2018-05-16T04:52:25.000Z | 2022-03-24T03:48:35.000Z | -- Copyright 2018 Tanel Poder. All rights reserved. More info at http://tanelpoder.com
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
DROP TABLE t;
CREATE TABLE t AS SELECT * FROM dba_objects;
CREATE INDEX i1 ON t(owner);
CREATE INDEX i2 ON t(owner,object_name);
CREATE INDEX i3 ON t(owner,subobject_name);
CREATE INDEX i4 ON t(owner,object_id);
CREATE INDEX i5 ON t(owner,data_object_id);
CREATE INDEX i6 ON t(owner,object_type);
CREATE INDEX i7 ON t(owner,created);
CREATE INDEX i8 ON t(owner,last_ddl_time);
CREATE INDEX i9 ON t(owner,timestamp);
CREATE INDEX i10 ON t(owner,status);
EXEC DBMS_STATS.GATHER_TABLE_STATS(USER,'T',NULL,100,METHOD_OPT=>'FOR ALL COLUMNS SIZE 254');
SELECT * FROM t
WHERE owner IN (SELECT owner FROM t GROUP BY owner HAVING count(*) > 1)
AND owner NOT IN (SELECT owner FROM t WHERE owner NOT LIKE 'S%')
;
| 35.52 | 93 | 0.754505 |
8037ca093dd7949f8d296a71715bf4d481dfa8b7 | 8,194 | java | Java | hermes-test-helper/src/main/java/pl/allegro/tech/hermes/test/helper/builder/SubscriptionBuilder.java | dswiecki/hermes | 0e882de4d151abc97aa8aaf786dcd19052f4154e | [
"Apache-2.0"
] | null | null | null | hermes-test-helper/src/main/java/pl/allegro/tech/hermes/test/helper/builder/SubscriptionBuilder.java | dswiecki/hermes | 0e882de4d151abc97aa8aaf786dcd19052f4154e | [
"Apache-2.0"
] | null | null | null | hermes-test-helper/src/main/java/pl/allegro/tech/hermes/test/helper/builder/SubscriptionBuilder.java | dswiecki/hermes | 0e882de4d151abc97aa8aaf786dcd19052f4154e | [
"Apache-2.0"
] | null | null | null | package pl.allegro.tech.hermes.test.helper.builder;
import pl.allegro.tech.hermes.api.*;
import java.net.URI;
import java.util.ArrayList;
import java.util.List;
public class SubscriptionBuilder {
private final TopicName topicName;
private final String name;
private Subscription.State state = Subscription.State.PENDING;
private EndpointAddress endpoint = EndpointAddress.of("http://localhost:12345");
private ContentType contentType = ContentType.JSON;
private String description = "description";
private SubscriptionPolicy serialSubscriptionPolicy = new SubscriptionPolicy(100, 10, 1000, 1000, false, 100, 100, 0, 1, 600);
private BatchSubscriptionPolicy batchSubscriptionPolicy;
private boolean trackingEnabled = false;
private TrackingMode trackingMode = TrackingMode.TRACKING_OFF;
private boolean http2Enabled = false;
private OwnerId owner = new OwnerId("Plaintext", "some team");
private String supportTeam = "team";
private MonitoringDetails monitoringDetails = MonitoringDetails.EMPTY;
private DeliveryType deliveryType = DeliveryType.SERIAL;
private List<MessageFilterSpecification> filters = new ArrayList<>();
private SubscriptionMode mode = SubscriptionMode.ANYCAST;
private List<Header> headers = new ArrayList<>();
private EndpointAddressResolverMetadata metadata = EndpointAddressResolverMetadata.empty();
private SubscriptionOAuthPolicy oAuthPolicy;
private boolean attachingIdentityHeadersEnabled = false;
private SubscriptionBuilder(TopicName topicName, String subscriptionName, EndpointAddress endpoint) {
this.topicName = topicName;
this.name = subscriptionName;
this.endpoint = endpoint;
}
private SubscriptionBuilder(TopicName topicName, String subscriptionName) {
this.topicName = topicName;
this.name = subscriptionName;
}
public static SubscriptionBuilder subscription(SubscriptionName subscriptionName) {
return new SubscriptionBuilder(subscriptionName.getTopicName(), subscriptionName.getName());
}
public static SubscriptionBuilder subscription(TopicName topicName, String subscriptionName) {
return new SubscriptionBuilder(topicName, subscriptionName);
}
public static SubscriptionBuilder subscription(Topic topic, String subscriptionName) {
return new SubscriptionBuilder(topic.getName(), subscriptionName);
}
public static SubscriptionBuilder subscription(TopicName topicName, String subscriptionName, EndpointAddress endpoint) {
return new SubscriptionBuilder(topicName, subscriptionName, endpoint);
}
public static SubscriptionBuilder subscription(String topicQualifiedName, String subscriptionName) {
return new SubscriptionBuilder(TopicName.fromQualifiedName(topicQualifiedName), subscriptionName);
}
public static SubscriptionBuilder subscription(String topicQualifiedName, String subscriptionName, String endpoint) {
return subscription(TopicName.fromQualifiedName(topicQualifiedName), subscriptionName, EndpointAddress.of(endpoint));
}
public static SubscriptionBuilder subscription(String topicQualifiedName, String subscriptionName, URI endpoint) {
return subscription(TopicName.fromQualifiedName(topicQualifiedName), subscriptionName, EndpointAddress.of(endpoint));
}
public static SubscriptionBuilder subscription(String topicQualifiedName, String subscriptionName, EndpointAddress endpoint) {
return subscription(TopicName.fromQualifiedName(topicQualifiedName), subscriptionName, endpoint);
}
public Subscription build() {
if (deliveryType == DeliveryType.SERIAL) {
return Subscription.createSerialSubscription(
topicName, name, endpoint, state, description,
serialSubscriptionPolicy, trackingEnabled,
trackingMode, owner, supportTeam, monitoringDetails, contentType,
filters, mode, headers, metadata, oAuthPolicy, http2Enabled, attachingIdentityHeadersEnabled
);
} else {
return Subscription.createBatchSubscription(
topicName, name, endpoint, state, description,
batchSubscriptionPolicy, trackingEnabled,
trackingMode, owner, supportTeam, monitoringDetails, contentType,
filters, headers, metadata, oAuthPolicy, http2Enabled, attachingIdentityHeadersEnabled
);
}
}
public SubscriptionBuilder withEndpoint(EndpointAddress endpoint) {
this.endpoint = endpoint;
return this;
}
public SubscriptionBuilder withEndpoint(String endpoint) {
this.endpoint = EndpointAddress.of(endpoint);
return this;
}
public SubscriptionBuilder withEndpoint(URI endpoint) {
this.endpoint = EndpointAddress.of(endpoint.toString());
return this;
}
public SubscriptionBuilder withState(Subscription.State state) {
this.state = state;
return this;
}
public SubscriptionBuilder withDescription(String description) {
this.description = description;
return this;
}
public SubscriptionBuilder withSubscriptionPolicy(BatchSubscriptionPolicy subscriptionPolicy) {
this.batchSubscriptionPolicy = subscriptionPolicy;
this.deliveryType = DeliveryType.BATCH;
return this;
}
public SubscriptionBuilder withSubscriptionPolicy(SubscriptionPolicy subscriptionPolicy) {
this.serialSubscriptionPolicy = subscriptionPolicy;
this.deliveryType = DeliveryType.SERIAL;
return this;
}
public SubscriptionBuilder withRequestTimeout(int timeout) {
SubscriptionPolicy policy = this.serialSubscriptionPolicy;
this.serialSubscriptionPolicy = SubscriptionPolicy.Builder.subscriptionPolicy().withRate(policy.getRate())
.withMessageTtl(policy.getMessageTtl()).withMessageBackoff(policy.getMessageBackoff())
.withRequestTimeout(timeout).build();
return this;
}
public SubscriptionBuilder withTrackingMode(TrackingMode trackingMode) {
this.trackingMode = trackingMode;
this.trackingEnabled = trackingMode != TrackingMode.TRACKING_OFF;
return this;
}
public SubscriptionBuilder withHttp2Enabled(boolean http2Enabled) {
this.http2Enabled = http2Enabled;
return this;
}
public SubscriptionBuilder withOwner(OwnerId owner) {
this.owner = owner;
return this;
}
@Deprecated
public SubscriptionBuilder withSupportTeam(String supportTeam) {
this.supportTeam = supportTeam;
return this;
}
public SubscriptionBuilder withMonitoringDetails(MonitoringDetails monitoringDetails) {
this.monitoringDetails = monitoringDetails;
return this;
}
public SubscriptionBuilder withDeliveryType(DeliveryType deliveryType) {
this.deliveryType = deliveryType;
return this;
}
public SubscriptionBuilder withContentType(ContentType contentType) {
this.contentType = contentType;
return this;
}
public SubscriptionBuilder withFilter(MessageFilterSpecification filter) {
this.filters.add(filter);
return this;
}
public SubscriptionBuilder withMode(SubscriptionMode mode) {
this.mode = mode;
return this;
}
public SubscriptionBuilder withHeader(String name, String value) {
this.headers.add(new Header(name, value));
return this;
}
public SubscriptionBuilder withEndpointAddressResolverMetadata(EndpointAddressResolverMetadata metadata) {
this.metadata = metadata;
return this;
}
public SubscriptionBuilder withOAuthPolicy(SubscriptionOAuthPolicy oAuthPolicy) {
this.oAuthPolicy = oAuthPolicy;
return this;
}
public SubscriptionBuilder withAttachingIdentityHeadersEnabled(boolean attachingIdentityHeadersEnabled) {
this.attachingIdentityHeadersEnabled = attachingIdentityHeadersEnabled;
return this;
}
}
| 36.417778 | 130 | 0.725531 |
1f511b5cc774e91af80afea669efd8535136dac3 | 690 | css | CSS | public/theme_resources/frontend/orama/stylesheets/albums/1472.css | thangtyt/orama | f5214f60cfe24a422e67a60b00cd2576dc281e07 | [
"MIT",
"Unlicense"
] | null | null | null | public/theme_resources/frontend/orama/stylesheets/albums/1472.css | thangtyt/orama | f5214f60cfe24a422e67a60b00cd2576dc281e07 | [
"MIT",
"Unlicense"
] | null | null | null | public/theme_resources/frontend/orama/stylesheets/albums/1472.css | thangtyt/orama | f5214f60cfe24a422e67a60b00cd2576dc281e07 | [
"MIT",
"Unlicense"
] | null | null | null |
body { background:#B4D2E6; }
h1 { color: #646419 }
div#logo h1 { color: #646419 }
#menu-links ul > li a { color: #4b4b00 }
#breadcrumbs { color: #4b4b00 }
#breadcrumbs a { color: #4b4b00; }
table.album-showcast .release-date { color: #414100 }
table.album-showcast .summary { color: #55550a }
table.album-showcast a { color: #7d7d32 }
table.album-showcast .image img { border: 1px solid #c3e1f5 }
table.tracks td { color: #55550a }
table.tracks tr:nth-child(2n+1) { background-color: #cdebff }
#top-tags { background-color: #cdebff }
#tags-links li { color: #4b4b00 }
#tags-links li a { color: #7d7d32 }
div#footer { background: #96b4c8; color: #646419; }
div#footer a { color: #646419; }
| 36.315789 | 61 | 0.686957 |
39d18e7a24bfcf53ed03c10cd66529b3c254d255 | 222 | js | JavaScript | docs/search/defines_10.js | bitshares/doxygen.bitshares.org | 9a25a0fbc9d3fa2697ea7f73132c7d8d885360ee | [
"MIT"
] | 1 | 2020-09-22T21:16:48.000Z | 2020-09-22T21:16:48.000Z | docs/search/defines_10.js | bitshares/doxygen.bitshares.org | 9a25a0fbc9d3fa2697ea7f73132c7d8d885360ee | [
"MIT"
] | 3 | 2019-07-17T15:16:56.000Z | 2019-07-17T21:42:28.000Z | docs/search/defines_10.js | bitshares/doxygen.bitshares.org | 9a25a0fbc9d3fa2697ea7f73132c7d8d885360ee | [
"MIT"
] | 1 | 2019-05-02T11:07:55.000Z | 2019-05-02T11:07:55.000Z | var searchData=
[
['ulog',['ulog',['../logger_8hpp.html#ac513cc2a5da0419b4e241277d20b37fb',1,'logger.hpp']]],
['unlikely',['UNLIKELY',['../exception_8hpp.html#ab10d0a221f4d7a706701b806c8135fd7',1,'exception.hpp']]]
];
| 37 | 106 | 0.716216 |
f061b6d50d8ec8a1a7719ecfc696b74a1891da82 | 669 | js | JavaScript | src/reducers/rolesReducer.test.js | AndelaOSP/wire | 59eaac02e2014b1512f7c9678a722dfa49f8277c | [
"MIT"
] | 1 | 2020-07-26T23:45:10.000Z | 2020-07-26T23:45:10.000Z | src/reducers/rolesReducer.test.js | theartisancodes/wire | 39db85212aa0b435d3e2ce4e0b9ff49c7d979318 | [
"MIT"
] | 124 | 2017-11-06T12:41:51.000Z | 2022-02-26T09:59:33.000Z | src/reducers/rolesReducer.test.js | theartisancodes/wire | 39db85212aa0b435d3e2ce4e0b9ff49c7d979318 | [
"MIT"
] | 3 | 2018-05-04T00:39:21.000Z | 2018-06-25T12:43:40.000Z | import * as ActionTypes from '../actions/actionTypes';
import reducer from './rolesReducer';
import initialState from './initialState';
describe('Reducers :: Roles', () => {
const getInitialState = initialState.roles;
it('should get initial state by default', () => {
const action = { type: 'unknown' };
const expected = getInitialState;
expect(reducer(undefined, action)).toEqual(expected);
});
it('should handle FETCH_ROLES', () => {
const action = { type: ActionTypes.FETCH_ROLES, roles: {} };
const expected = Object.assign({}, getInitialState, action.roles);
expect(reducer(getInitialState, action)).toEqual(expected);
});
});
| 33.45 | 70 | 0.678625 |
fb37afdfe3dd27069d39e4e33e432ac8372b7f17 | 6,176 | java | Java | src-plugins/jep/src/main/java/org/lsmp/djepJUnit/VectorJepTest.java | robertb-r/fiji | 4eb8d690811c5c9d746e673dbd7c3297ec12dfdf | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | null | null | null | src-plugins/jep/src/main/java/org/lsmp/djepJUnit/VectorJepTest.java | robertb-r/fiji | 4eb8d690811c5c9d746e673dbd7c3297ec12dfdf | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | null | null | null | src-plugins/jep/src/main/java/org/lsmp/djepJUnit/VectorJepTest.java | robertb-r/fiji | 4eb8d690811c5c9d746e673dbd7c3297ec12dfdf | [
"Naumen",
"Condor-1.1",
"MS-PL"
] | null | null | null | /* @author rich
* Created on 22-Apr-2005
*
* See LICENSE.txt for license information.
*/
package org.lsmp.djepJUnit;
import org.lsmp.djep.vectorJep.VectorJep;
import org.nfunk.jep.ParseException;
import junit.framework.Test;
import junit.framework.TestResult;
import junit.framework.TestSuite;
/**
* @author Rich Morris
* Created on 22-Apr-2005
*/
public class VectorJepTest extends JepTest {
/**
* @param name
*/
public VectorJepTest(String name) {
super(name);
// TODO Auto-generated constructor stub
}
/**
* Create a test suite.
* @return the TestSuite
*/
public static Test suite() {
return new TestSuite(VectorJepTest.class);
}
/**
* Main entry point.
* @param args
*/
public static void main(String args[]) {
// Create an instance of this class and analyse the file
TestSuite suite= new TestSuite(VectorJepTest.class);
suite.run(new TestResult());
}
protected void setUp() {
j = new VectorJep();
j.addStandardConstants();
j.addStandardFunctions();
j.addComplex();
//j.setTraverse(true);
j.setAllowAssignment(true);
j.setAllowUndeclared(true);
j.setImplicitMul(true);
}
public void testMatrix() throws Exception
{
System.out.println("\nTesting vector and matrix operations");
j.getSymbolTable().clearValues();
valueTest("x=2",2);
valueTest("(x*x)*x*(x*x)",32.0);
valueTest("y=[x^3,x^2,x]","[8.0,4.0,2.0]");
valueTest("z=[3*x^2,2*x,1]","[12.0,4.0,1.0]");
valueTest("w=y^^z","[-4.0,16.0,-16.0]");
valueTest("w.y","0.0");
valueTest("w.z","0.0");
valueTest("sqrt(w . z)","0.0"); // tests result is unwrapped from scaler
valueTest("sqrt([3,4] . [3,4])","5.0"); // tests result is unwrapped from scaler
valueTest("y+z","[20.0,8.0,3.0]");
valueTest("y-z","[-4.0,0.0,1.0]");
valueTest("3*y","[24.0,12.0,6.0]");
valueTest("y*4","[32.0,16.0,8.0]");
valueTest("y*z","[[96.0,32.0,8.0],[48.0,16.0,4.0],[24.0,8.0,2.0]]");
valueTest("z*y","[[96.0,48.0,24.0],[32.0,16.0,8.0],[8.0,4.0,2.0]]");
j.getSymbolTable().clearValues();
j.evaluate(j.parse("y=[cos(x),sin(x)]"));
j.evaluate(j.parse("z=[-sin(x),cos(x)]"));
valueTest("y . y","1.0");
valueTest("y . z","0.0");
valueTest("z . z","1.0");
j.getSymbolTable().clearValues();
valueTest("x=[[1,2],[3,4]]","[[1.0,2.0],[3.0,4.0]]");
valueTest("y=[1,-1]","[1.0,-1.0]");
valueTest("x*y","[-1.0,-1.0]");
valueTest("y*x","[-2.0,-2.0]");
valueTest("x+[y,y]","[[2.0,1.0],[4.0,3.0]]");
valueTest("ele(y,1)","1.0"); // Value: 2.0
valueTest("ele(y,2)","-1.0"); // Value: 2.0
valueTest("ele(x,[1,1])","1.0"); // Value: 2.0
valueTest("ele(x,[1,2])","2.0"); // Value: 2.0
valueTest("ele(x,[2,1])","3.0"); // Value: 2.0
valueTest("ele(x,[2,2])","4.0"); // Value: 2.0
}
public void testLength() throws ParseException,Exception
{
System.out.println("\nTesting vector and matrix functions");
valueTest("len(5)","1");
valueTest("len([1,2,3])","3");
valueTest("len([[1,2,3],[4,5,6]])","6");
valueTest("size(5)","1");
valueTest("size([1,2,3])","3");
valueTest("size([[1,2,3],[4,5,6]])","[2,3]");
valueTest("size([[[1,2],[3,4],[5,6]],[[7,8],[9,10],[11,12]]])","[2,3,2]");
valueTest("diag([1,2,3])","[[1.0,0.0,0.0],[0.0,2.0,0.0],[0.0,0.0,3.0]]");
valueTest("id(3)","[[1.0,0.0,0.0],[0.0,1.0,0.0],[0.0,0.0,1.0]]");
valueTest("getdiag([[1,2],[3,4]])","[1.0,4.0]");
valueTest("trans([[1,2],[3,4]])","[[1.0,3.0],[2.0,4.0]]");
valueTest("det([[1,2],[3,4]])","-2.0");
valueTest("det([[1,2,3],[4,5,6],[9,8,9]])","-6.0");
valueTest("det([[1,2,3],[4,5,6],[7,8,9]])","0.0");
valueTest("det([[1,2,3,4],[5,6,77,8],[4,3,2,1],[17,9,23,19]])","9100.0");
valueTest("trace([[1,2],[3,4]])","5.0");
valueTest("trace([[1,2,3],[4,5,6],[7,8,9]])","15.0");
valueTest("trace([[1,2,3,4],[5,6,7,8],[9,10,11,12],[13,14,15,16]])","34.0");
valueTest("vsum([[1,2],[3,4]])","10.0");
valueTest("vsum([1,2,3])","6.0");
valueTest("Map(x^3,x,[1,2,3])","[1.0,8.0,27.0]");
valueTest("Map(x*y,[x,y],[1,2,3],[4,5,6])","[4.0,10.0,18.0]");
valueTest("Map(if(x>0,x,0),x,[-2,-1,0,1,2])","[0.0,0.0,0.0,1.0,2.0]");
valueTest("Map(abs(x),x,[[-2,-1],[1,2]])","[[2.0,1.0],[1.0,2.0]]");
}
public void testSumVector() throws Exception {
}
public void testVecCmp() throws Exception {
valueTest("[1,2,3]==[1,2,3]",1);
valueTest("[1,2,3]==[1,2,4]",0);
}
public void testDotInName() throws ParseException, Exception {
}
public void testGenMatEle() throws Exception
{
System.out.println("The following caused a problem as ele only acepted Double arguments");
valueTest("m=[1,2,3]","[1.0,2.0,3.0]");
valueTest("GenMat(3,ele(m,n)*10,n)","[10.0,20.0,30.0]");
}
public void testArrayAccess() throws Exception {
System.out.println("\nTests array access on lhs and rhs using the a[3] notation");
valueTest("a=[1,2,3]","[1.0,2.0,3.0]");
valueTest("a[2]=4",4);
valueTest("b=a[2]",4);
valueTest("b",4);
valueTest("c=[[1,2],[3,4]]","[[1.0,2.0],[3.0,4.0]]");
valueTest("c[1,2]=5",5);
valueTest("c","[[1.0,5.0],[3.0,4.0]]");
valueTest("c[2,1]",3);
}
public void testElementOperations() throws Exception {
((VectorJep) j).setElementMultiply(true);
valueTest("[1,2,3] == [2,2,2]","[0.0,1.0,0.0]");
valueTest("[1,2,3] != [2,2,2]","[1.0,0.0,1.0]");
valueTest("[1,2,3] < [2,2,2]","[1.0,0.0,0.0]");
valueTest("[1,2,3] <= [2,2,2]","[1.0,1.0,0.0]");
valueTest("[1,2,3] > [2,2,2]","[0.0,0.0,1.0]");
valueTest("[1,2,3] >= [2,2,2]","[0.0,1.0,1.0]");
valueTest("[1,2,3] * [2,2,2]","[2.0,4.0,6.0]");
valueTest("[1,2,3] / [2,2,2]","[0.5,1.0,1.5]");
}
public void testComplexMatricies() throws Exception {
valueTest("v=[1+i,1-2i]","[(1.0, 1.0),(1.0, -2.0)]");
valueTest("vsum(v)","(2.0, -1.0)");
valueTest("m=[[1+i,-1+i],[1-i,-1-i]]","[[(1.0, 1.0),(-1.0, 1.0)],[(1.0, -1.0),(-1.0, -1.0)]]");
valueTest("vsum(m)","(0.0, 0.0)");
valueTest("trace(m)","(0.0, 0.0)");
valueTest("m*v","[(1.0, 5.0),(-1.0, 1.0)]");
valueTest("v*m","[(-1.0, -1.0),(-5.0, 1.0)]");
valueTest("trans(m)","[[(1.0, 1.0),(1.0, -1.0)],[(-1.0, 1.0),(-1.0, -1.0)]]");
valueTest("det(m)","(0.0, -4.0)");
}
}
| 33.748634 | 97 | 0.544527 |
fd6f11499c232de202aca5b46b4f09cc7ba8d2b0 | 561 | swift | Swift | Package.swift | kkk669/swift-log-playground | 0f378ca5c69f3ce120dec0e8c8684ad670047af0 | [
"MIT"
] | null | null | null | Package.swift | kkk669/swift-log-playground | 0f378ca5c69f3ce120dec0e8c8684ad670047af0 | [
"MIT"
] | null | null | null | Package.swift | kkk669/swift-log-playground | 0f378ca5c69f3ce120dec0e8c8684ad670047af0 | [
"MIT"
] | null | null | null | // swift-tools-version:5.5
import PackageDescription
let package = Package(
name: "LoggingPlayground",
products: [
.library(
name: "LoggingPlayground",
targets: ["LoggingPlayground"]
)
],
dependencies: [
.package(url: "https://github.com/apple/swift-log.git", .upToNextMinor(from: "1.4.2")),
],
targets: [
.target(
name: "LoggingPlayground",
dependencies: [
.product(name: "Logging", package: "swift-log")
]
),
]
)
| 22.44 | 95 | 0.520499 |
afc1c7f9f2c4547d6d534e9e0395cef6c0a45cae | 27,615 | html | HTML | doc/manual/html/p11-kit-Deprecated.html | tizenorg/platform.upstream.p11-kit | 3d0b8da7604baf10579ecb33c45459065f4151c0 | [
"BSD-3-Clause"
] | null | null | null | doc/manual/html/p11-kit-Deprecated.html | tizenorg/platform.upstream.p11-kit | 3d0b8da7604baf10579ecb33c45459065f4151c0 | [
"BSD-3-Clause"
] | null | null | null | doc/manual/html/p11-kit-Deprecated.html | tizenorg/platform.upstream.p11-kit | 3d0b8da7604baf10579ecb33c45459065f4151c0 | [
"BSD-3-Clause"
] | null | null | null | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Deprecated</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="index.html" title="p11-kit">
<link rel="up" href="reference.html" title="API Reference">
<link rel="prev" href="p11-kit-Future.html" title="Future">
<link rel="next" href="devel.html" title="Building, Packaging, and Contributing to p11-kit">
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="p11-kit-Future.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="reference.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">p11-kit</th>
<td><a accesskey="n" href="devel.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#p11-kit-Deprecated.synopsis" class="shortcut">Top</a>
|
<a href="#p11-kit-Deprecated.description" class="shortcut">Description</a>
</td></tr>
</table>
<div class="refentry">
<a name="p11-kit-Deprecated"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="p11-kit-Deprecated.top_of_page"></a>Deprecated</span></h2>
<p>Deprecated — Deprecated functions</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="p11-kit-Deprecated.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()">p11_kit_initialize_registered</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-registered" title="p11_kit_finalize_registered ()">p11_kit_finalize_registered</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="returnvalue">CK_FUNCTION_LIST_PTR</span></a> * <a class="link" href="p11-kit-Deprecated.html#p11-kit-registered-modules" title="p11_kit_registered_modules ()">p11_kit_registered_modules</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
<span class="returnvalue">char</span> * <a class="link" href="p11-kit-Deprecated.html#p11-kit-registered-module-to-name" title="p11_kit_registered_module_to_name ()">p11_kit_registered_module_to_name</a> (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="returnvalue">CK_FUNCTION_LIST_PTR</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-registered-name-to-module" title="p11_kit_registered_name_to_module ()">p11_kit_registered_name_to_module</a> (<em class="parameter"><code>const <span class="type">char</span> *name</code></em>);
<span class="returnvalue">char</span> * <a class="link" href="p11-kit-Deprecated.html#p11-kit-registered-option" title="p11_kit_registered_option ()">p11_kit_registered_option</a> (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field</code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-module" title="p11_kit_initialize_module ()">p11_kit_initialize_module</a> (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-load-initialize-module" title="p11_kit_load_initialize_module ()">p11_kit_load_initialize_module</a> (<em class="parameter"><code>const <span class="type">char</span> *module_path</code></em>,
<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> *module</code></em>);
<a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> <a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-module" title="p11_kit_finalize_module ()">p11_kit_finalize_module</a> (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);
#define <a class="link" href="p11-kit-Deprecated.html#P11-KIT-DEPRECATED-FOR:CAPS" title="P11_KIT_DEPRECATED_FOR()">P11_KIT_DEPRECATED_FOR</a> (f)
</pre>
</div>
<div class="refsect1">
<a name="p11-kit-Deprecated.description"></a><h2>Description</h2>
<p>
These functions have been deprecated from p11-kit and are not recommended for
general usage. In large part they were deprecated because they did not adequately
insulate multiple callers of a PKCS#11 module from another, and could not
support the 'managed' mode needed to do this.
</p>
</div>
<div class="refsect1">
<a name="p11-kit-Deprecated.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="p11-kit-initialize-registered"></a><h3>p11_kit_initialize_registered ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> p11_kit_initialize_registered (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_initialize_registered</code> is deprecated and should not be used in newly-written code. Since: 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-modules-load" title="p11_kit_modules_load ()"><code class="function">p11_kit_modules_load()</code></a> instead.</p>
</div>
<p>
Initialize all the registered PKCS#11 modules.
</p>
<p>
If this is the first time this function is called multiple times
consecutively within a single process, then it merely increments an
initialization reference count for each of these modules.
</p>
<p>
Use <a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-registered" title="p11_kit_finalize_registered ()"><code class="function">p11_kit_finalize_registered()</code></a> to finalize these registered modules once
the caller is done with them.
</p>
<p>
If this function fails, then an error message will be available via the
<a class="link" href="p11-kit-Utilities.html#p11-kit-message" title="p11_kit_message ()"><code class="function">p11_kit_message()</code></a> function.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>CKR_OK if the initialization succeeded, or an error code.</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-finalize-registered"></a><h3>p11_kit_finalize_registered ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> p11_kit_finalize_registered (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_finalize_registered</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-modules-release" title="p11_kit_modules_release ()"><code class="function">p11_kit_modules_release()</code></a> instead.</p>
</div>
<p>
Finalize all the registered PKCS#11 modules. These should have been
initialized with <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()"><code class="function">p11_kit_initialize_registered()</code></a>.
</p>
<p>
If <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()"><code class="function">p11_kit_initialize_registered()</code></a> has been called more than once in this
process, then this function must be called the same number of times before
actual finalization will occur.
</p>
<p>
If this function fails, then an error message will be available via the
<a class="link" href="p11-kit-Utilities.html#p11-kit-message" title="p11_kit_message ()"><code class="function">p11_kit_message()</code></a> function.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>CKR_OK if the finalization succeeded, or an error code.</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-registered-modules"></a><h3>p11_kit_registered_modules ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="returnvalue">CK_FUNCTION_LIST_PTR</span></a> * p11_kit_registered_modules (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_registered_modules</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-modules-load" title="p11_kit_modules_load ()"><code class="function">p11_kit_modules_load()</code></a> instead.</p>
</div>
<p>
Get a list of all the registered PKCS#11 modules. This list will be valid
once the <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()"><code class="function">p11_kit_initialize_registered()</code></a> function has been called.
</p>
<p>
The returned value is a <code class="code">NULL</code> terminated array of
<code class="code">CK_FUNCTION_LIST_PTR</code> pointers.
</p>
<p>
The returned modules are unmanaged.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A list of all the registered modules. Use the <code class="function">free()</code> function to
free the list.</td>
</tr></tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-registered-module-to-name"></a><h3>p11_kit_registered_module_to_name ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> * p11_kit_registered_module_to_name (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_registered_module_to_name</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-module-get-name" title="p11_kit_module_get_name ()"><code class="function">p11_kit_module_get_name()</code></a> instead.</p>
</div>
<p>
Get the name of a registered PKCS#11 module.
</p>
<p>
You can use <a class="link" href="p11-kit-Deprecated.html#p11-kit-registered-modules" title="p11_kit_registered_modules ()"><code class="function">p11_kit_registered_modules()</code></a> to get a list of all the registered
modules. This name is specified by the registered module configuration.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>module</code></em> :</span></p></td>
<td>pointer to a registered module</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A newly allocated string containing the module name, or
<code class="code">NULL</code> if no such registered module exists. Use <code class="function">free()</code> to
free this string.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-registered-name-to-module"></a><h3>p11_kit_registered_name_to_module ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="returnvalue">CK_FUNCTION_LIST_PTR</span></a> p11_kit_registered_name_to_module (<em class="parameter"><code>const <span class="type">char</span> *name</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_registered_name_to_module</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-module-for-name" title="p11_kit_module_for_name ()"><code class="function">p11_kit_module_for_name()</code></a> instead.</p>
</div>
<p>
Lookup a registered PKCS#11 module by its name. This name is specified by
the registered module configuration.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>name of a registered module</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>a pointer to a PKCS#11 module, or <code class="code">NULL</code> if this name was
not found.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-registered-option"></a><h3>p11_kit_registered_option ()</h3>
<pre class="programlisting"><span class="returnvalue">char</span> * p11_kit_registered_option (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>,
<em class="parameter"><code>const <span class="type">char</span> *field</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_registered_option</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-config-option" title="p11_kit_config_option ()"><code class="function">p11_kit_config_option()</code></a> instead.</p>
</div>
<p>
Lookup a configured option for a registered PKCS#11 module. If a
<code class="code">NULL</code> module argument is specified, then this will lookup
the configuration option in the global config file.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>module</code></em> :</span></p></td>
<td>a pointer to a registered module</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>field</code></em> :</span></p></td>
<td>the name of the option to lookup.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>A newly allocated string containing the option value, or
<code class="code">NULL</code> if the registered module or the option were not found.
Use <code class="function">free()</code> to free the returned string.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-initialize-module"></a><h3>p11_kit_initialize_module ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> p11_kit_initialize_module (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_initialize_module</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-module-initialize" title="p11_kit_module_initialize ()"><code class="function">p11_kit_module_initialize()</code></a> instead.</p>
</div>
<p>
Initialize an arbitrary PKCS#11 module. Normally using the
<a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()"><code class="function">p11_kit_initialize_registered()</code></a> is preferred.
</p>
<p>
Using this function to initialize modules allows coordination between
multiple users of the same module in a single process. It should be called
on modules that have been loaded (with <code class="function">dlopen()</code> for example) but not yet
initialized. The caller should not yet have called the module's
<code class="code">C_Initialize</code> method. This function will call
<code class="code">C_Initialize</code> as necessary.
</p>
<p>
Subsequent calls to this function for the same module will result in an
initialization count being incremented for the module. It is safe (although
usually unnecessary) to use this function on registered modules.
</p>
<p>
The module must be finalized with <a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-module" title="p11_kit_finalize_module ()"><code class="function">p11_kit_finalize_module()</code></a> instead of
calling its <code class="code">C_Finalize</code> method directly.
</p>
<p>
This function does not accept a <code class="code">CK_C_INITIALIZE_ARGS</code> argument.
Custom initialization arguments cannot be supported when multiple consumers
load the same module.
</p>
<p>
If this function fails, then an error message will be available via the
<a class="link" href="p11-kit-Utilities.html#p11-kit-message" title="p11_kit_message ()"><code class="function">p11_kit_message()</code></a> function.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>module</code></em> :</span></p></td>
<td>loaded module to initialize.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>CKR_OK if the initialization was successful.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-load-initialize-module"></a><h3>p11_kit_load_initialize_module ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> p11_kit_load_initialize_module (<em class="parameter"><code>const <span class="type">char</span> *module_path</code></em>,
<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> *module</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_load_initialize_module</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-module-load" title="p11_kit_module_load ()"><code class="function">p11_kit_module_load()</code></a> instead.</p>
</div>
<p>
Load an arbitrary PKCS#11 module from a dynamic library file, and
initialize it. Normally using the <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-registered" title="p11_kit_initialize_registered ()"><code class="function">p11_kit_initialize_registered()</code></a> function
is preferred.
</p>
<p>
Using this function to load and initialize modules allows coordination between
multiple users of the same module in a single process. The caller should not
call the module's <code class="code">C_Initialize</code> method. This function will call
<code class="code">C_Initialize</code> as necessary.
</p>
<p>
If a module has already been loaded, then use of this function is unnecesasry.
Instead use the <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-module" title="p11_kit_initialize_module ()"><code class="function">p11_kit_initialize_module()</code></a> function to initialize it.
</p>
<p>
Subsequent calls to this function for the same module will result in an
initialization count being incremented for the module. It is safe (although
usually unnecessary) to use this function on registered modules.
</p>
<p>
The module must be finalized with <a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-module" title="p11_kit_finalize_module ()"><code class="function">p11_kit_finalize_module()</code></a> instead of
calling its <code class="code">C_Finalize</code> method directly.
</p>
<p>
This function does not accept a <code class="code">CK_C_INITIALIZE_ARGS</code> argument.
Custom initialization arguments cannot be supported when multiple consumers
load the same module.
</p>
<p>
If this function fails, then an error message will be available via the
<a class="link" href="p11-kit-Utilities.html#p11-kit-message" title="p11_kit_message ()"><code class="function">p11_kit_message()</code></a> function.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>module_path</code></em> :</span></p></td>
<td>full file path of module library</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>module</code></em> :</span></p></td>
<td>location to place loaded module pointer</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>CKR_OK if the initialization was successful.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="p11-kit-finalize-module"></a><h3>p11_kit_finalize_module ()</h3>
<pre class="programlisting"><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-RV:CAPS"><span class="returnvalue">CK_RV</span></a> p11_kit_finalize_module (<em class="parameter"><code><a href="http://developer.gnome.org/gck/stable/pkcs11-links.html#CK-FUNCTION-LIST-PTR:CAPS"><span class="type">CK_FUNCTION_LIST_PTR</span></a> module</code></em>);</pre>
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
<h3 class="title">Warning</h3>
<p><code class="literal">p11_kit_finalize_module</code> is deprecated and should not be used in newly-written code. Since 0.19.0: Use <a class="link" href="p11-kit-Modules.html#p11-kit-module-finalize" title="p11_kit_module_finalize ()"><code class="function">p11_kit_module_finalize()</code></a> and
<a class="link" href="p11-kit-Modules.html#p11-kit-module-release" title="p11_kit_module_release ()"><code class="function">p11_kit_module_release()</code></a> instead.</p>
</div>
<p>
Finalize an arbitrary PKCS#11 module. The module must have been initialized
using <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-module" title="p11_kit_initialize_module ()"><code class="function">p11_kit_initialize_module()</code></a>. In most cases callers will want to use
<a class="link" href="p11-kit-Deprecated.html#p11-kit-finalize-registered" title="p11_kit_finalize_registered ()"><code class="function">p11_kit_finalize_registered()</code></a> instead of this function.
</p>
<p>
Using this function to finalize modules allows coordination between
multiple users of the same module in a single process. The caller should not
call the module's <code class="code">C_Finalize</code> method. This function will call
<code class="code">C_Finalize</code> as necessary.
</p>
<p>
If the module was initialized more than once, then this function will
decrement an initialization count for the module. When the count reaches zero
the module will be truly finalized. It is safe (although usually unnecessary)
to use this function on registered modules if (and only if) they were
initialized using <a class="link" href="p11-kit-Deprecated.html#p11-kit-initialize-module" title="p11_kit_initialize_module ()"><code class="function">p11_kit_initialize_module()</code></a> for some reason.
</p>
<p>
If this function fails, then an error message will be available via the
<a class="link" href="p11-kit-Utilities.html#p11-kit-message" title="p11_kit_message ()"><code class="function">p11_kit_message()</code></a> function.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>module</code></em> :</span></p></td>
<td>loaded module to finalize.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>CKR_OK if the finalization was successful.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="P11-KIT-DEPRECATED-FOR:CAPS"></a><h3>P11_KIT_DEPRECATED_FOR()</h3>
<pre class="programlisting">#define P11_KIT_DEPRECATED_FOR(f) __attribute__((deprecated("Use " #f " instead")))
</pre>
</div>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.18</div>
</body>
</html> | 62.619048 | 476 | 0.714793 |
b91897e7c16444e3284c56c573abcda5a15a28ae | 669 | go | Go | meraki/products/ms/livetools.go | ddexterpark/merakictl | 1308e915e94adec584451db630a643cd0088b60e | [
"Apache-2.0"
] | 8 | 2020-10-13T01:52:29.000Z | 2022-01-09T02:23:37.000Z | meraki/products/ms/livetools.go | ddexterpark/merakictl | 1308e915e94adec584451db630a643cd0088b60e | [
"Apache-2.0"
] | null | null | null | meraki/products/ms/livetools.go | ddexterpark/merakictl | 1308e915e94adec584451db630a643cd0088b60e | [
"Apache-2.0"
] | null | null | null | package ms
import (
"github.com/ddexterpark/dashboard-api-golang/api/products/switch/livetools"
"github.com/ddexterpark/merakictl/shell"
"github.com/spf13/cobra"
)
var PostPortCycle = &cobra.Command{
Use: "cyclePorts",
Short: "Cycle a set of switch ports.",
Run: func(cmd *cobra.Command, args []string) {
_, networkId, serial := shell.ResolveFlags(cmd.Flags())
if networkId == "" {
networkId = args[0]
}
if serial == "" {
serial = args[1]
}
var format livetools.Cycle
input, _ := shell.ReadConfigFile(cmd, &format)
metadata := livetools.PostCyclePorts(networkId, serial, input)
shell.Display(metadata, "CyclePorts", cmd.Flags())
},
} | 26.76 | 76 | 0.692078 |
f18f60e138c39da4df9bbeb08f91719ab5f5ffd6 | 3,219 | swift | Swift | Smulle/TestViewController.swift | matsmorot/Smulle | 235fc612103c8e3048e3070a7aec07198e3e81f6 | [
"CC-BY-3.0"
] | null | null | null | Smulle/TestViewController.swift | matsmorot/Smulle | 235fc612103c8e3048e3070a7aec07198e3e81f6 | [
"CC-BY-3.0"
] | 6 | 2017-01-12T13:19:31.000Z | 2017-04-10T15:29:11.000Z | Smulle/TestViewController.swift | matsmorot/Smulle | 235fc612103c8e3048e3070a7aec07198e3e81f6 | [
"CC-BY-3.0"
] | null | null | null | //
// TestViewController.swift
// Smulle
//
// Created by Mattias Almén on 2017-03-16.
// Copyright © 2017 pixlig.se. All rights reserved.
//
import UIKit
class TestViewController: UIViewController {
@IBOutlet weak var stack1: UIStackView!
@IBOutlet weak var stack2: UIStackView!
let deck = Deck(numDecks: 1)
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
view.backgroundColor = ColorPalette.pink
for card in deck.deck {
let tap = UITapGestureRecognizer(target: self, action: #selector(firstTap(_:)))
card.isUserInteractionEnabled = true
card.addGestureRecognizer(tap)
card.cardImageView = UIImageView(image: card.cardImageBack)
card.setContentHuggingPriority(UILayoutPriority(rawValue: 1000), for: .horizontal)
card.setContentCompressionResistancePriority(UILayoutPriority(rawValue: 1000), for: .horizontal)
card.heightAnchor.constraint(equalToConstant: card.cardImageView.frame.height).isActive = true
card.widthAnchor.constraint(equalToConstant: card.cardImageView.frame.width).isActive = true
card.addSubview(card.cardImageView)
stack1.addArrangedSubview(card)
}
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
@objc func firstTap(_ sender: UITapGestureRecognizer) {
let card = sender.view as! Card
let nextTap = UITapGestureRecognizer(target: self, action: #selector(nextTap(_:)))
card.gestureRecognizers?.removeAll()
card.flipCard()
card.addGestureRecognizer(nextTap)
UIView.animate(withDuration: 2, animations: {
card.frame.origin = self.stack1.arrangedSubviews.last!.frame.origin
}, completion: { (finished: Bool) -> Void in
self.stack2.addArrangedSubview(card)
})
}
@objc func nextTap(_ sender: UITapGestureRecognizer) {
let card = sender.view as! Card
if stack1.arrangedSubviews.contains(card) {
UIView.animate(withDuration: 2, animations: {
card.center = self.stack2.center
}, completion: { (finished: Bool) -> Void in
self.stack2.addArrangedSubview(card)
})
} else {
UIView.animate(withDuration: 2, animations: {
card.center = self.stack1.center
}, completion: { (finished: Bool) -> Void in
self.stack1.addArrangedSubview(card)
})
}
}
/*
// MARK: - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
// Get the new view controller using segue.destinationViewController.
// Pass the selected object to the new view controller.
}
*/
}
| 32.515152 | 108 | 0.611059 |
9c32fc5543664219c073017c854d0a3d50b43b16 | 3,737 | js | JavaScript | src/Home/CreateRoom/WorkoutTable.test.js | SynchroCise/SynchroCise | 6bf51a393d594e712b0934509533dbeb7599427b | [
"MIT"
] | null | null | null | src/Home/CreateRoom/WorkoutTable.test.js | SynchroCise/SynchroCise | 6bf51a393d594e712b0934509533dbeb7599427b | [
"MIT"
] | null | null | null | src/Home/CreateRoom/WorkoutTable.test.js | SynchroCise/SynchroCise | 6bf51a393d594e712b0934509533dbeb7599427b | [
"MIT"
] | null | null | null | import React from 'react';
import { shallow } from 'enzyme';
import { findByTestAttr, initContext } from '../../utils/test';
import WorkoutTable, { Row } from './WorkoutTable';
jest.mock("../../utils/requests");
const mockPush = jest.fn();
jest.mock('react-router-dom', () => ({
useHistory: () => ({
push: mockPush,
}),
}));
describe('<WorkoutTable />', () => {
let component;
let contextValues;
let props;
const setUp = (props = {}) => {
const component = shallow(<WorkoutTable {...props} />);
return component
}
beforeEach(() => {
contextValues = {
handleSetWorkout: jest.fn()
}
props = {
workoutList: [{ "workoutName": "", "exercises": [{ "time": 1, "exercise": "" }], "id": "" },
{ "workoutName": "", "exercises": [{ "time": 1, "exercise": "" }], "id": "" }],
setWorkoutList: jest.fn(),
selectedWorkout: 0,
setSelectedWorkout: jest.fn()
}
component = initContext(contextValues, setUp, props);
});
it('Should render workoutTableComponent', () => {
const wrapper = findByTestAttr(component, 'workoutTableComponent')
expect(wrapper.length).toBe(1);
});
// it('Should render two rows', () => {
// const wrapper = findByTestAttr(component, 'rowComponent')
// expect(wrapper.length).toBe(2);
// });
});
describe('<Row />', () => {
let component;
let contextValues;
let props;
const setUp = (props = {}) => {
const component = shallow(<Row {...props} />);
return component
}
beforeEach(() => {
contextValues = {
handleSetWorkout: jest.fn()
}
props = {
row: { "workoutName": "", "exercises": [{ "time": 1, "exercise": "" }], "id": "" },
index: 0,
handleSelect: jest.fn(),
handleDeleteWorkout: jest.fn(),
handleEditWorkout: jest.fn(),
selectedWorkout: 0
}
jest.spyOn(window, 'confirm').mockImplementation(() => true);
component = initContext(contextValues, setUp, props);
});
it('Should handleSelect on TableRow click', () => {
const workoutName = findByTestAttr(component, 'workoutName');
const displayName = findByTestAttr(component, 'displayName');
const exercise = findByTestAttr(component, 'exercise');
workoutName.simulate('click');
displayName.simulate('click');
exercise.simulate('click');
expect(props.handleSelect).toHaveBeenCalledTimes(3);
});
it('Should handleDeleteWorkout on button click', () => {
const button = findByTestAttr(component, 'deleteWorkoutButton');
button.simulate('click');
expect(props.handleDeleteWorkout).toHaveBeenCalledTimes(1);
});
it('Should collapse collapseComponent on click', async () => {
let wrapper = findByTestAttr(component, 'collapseComponent');
let button = findByTestAttr(component, 'collapseButton');
expect(wrapper.prop('in')).toBe(false);
expect(button.children().prop('data-test')).toBe("arrDown");
button.simulate('click');
component.update()
wrapper = findByTestAttr(component, 'collapseComponent');
button = findByTestAttr(component, 'collapseButton');
expect(wrapper.prop('in')).toBe(true);
expect(button.children().prop('data-test')).toBe("arrUp");
});
it('Should handleEditWorkout on button click', () => {
const button = findByTestAttr(component, 'editWorkoutButton');
button.simulate('click');
expect(props.handleEditWorkout).toHaveBeenCalledTimes(1);
});
}); | 34.925234 | 104 | 0.578271 |
7b2188a41ccd32f9b8028f8d88be2cbe12de319e | 9,954 | rb | Ruby | demos/appointment.rb | movitto/cdk | d2258ae5f6167d963703e5ebf63b822b0076338d | [
"BSD-3-Clause"
] | 2 | 2018-04-01T03:55:47.000Z | 2019-11-29T23:42:01.000Z | demos/appointment.rb | movitto/cdk | d2258ae5f6167d963703e5ebf63b822b0076338d | [
"BSD-3-Clause"
] | null | null | null | demos/appointment.rb | movitto/cdk | d2258ae5f6167d963703e5ebf63b822b0076338d | [
"BSD-3-Clause"
] | null | null | null | #!/usr/bin/env ruby
require 'optparse'
require 'ostruct'
require_relative '../lib/cdk'
class Appointment
MAX_MARKERS = 2000
GPAppointmentAttributes = [
Ncurses::A_BLINK,
Ncurses::A_BOLD,
Ncurses::A_REVERSE,
Ncurses::A_UNDERLINE,
]
AppointmentType = [
:BIRTHDAY,
:ANNIVERSARY,
:APPOINTMENT,
:OTHER,
]
# This reads a given appointment file.
def Appointment.readAppointmentFile(filename, app_info)
appointments = 0
segments = 0
lines = []
# Read the appointment file.
lines_read = CDK.readFile(filename, lines)
if lines_read == -1
app_info.count = 0
return
end
# Split each line up and create an appointment.
(0...lines_read).each do |x|
temp = lines[x].split(CDK.CTRL('V').chr)
segments = temp.size
# A valid line has 5 elements:
# Day, Month, Year, Type, Description.
if segments == 5
app_info.appointment << OpenStruct.new
e_type = Appointment::AppointmentType[temp[3].to_i]
app_info.appointment[appointments].day = temp[0].to_i
app_info.appointment[appointments].month = temp[1].to_i
app_info.appointment[appointments].year = temp[2].to_i
app_info.appointment[appointments].type = e_type
app_info.appointment[appointments].description = temp[4]
appointments += 1
end
end
# Keep the amount of appointments read.
app_info.count = appointments
end
# This saves a given appointment file.
def Appointment.saveAppointmentFile(filename, app_info)
# TODO: error handling
fd = File.new(filename, 'w')
# Start writing.
app_info.appointment.each do |appointment|
if appointment.description != ''
fd.puts '%d%c%d%c%d%c%d%c%s' % [
appointment.day, CDK.CTRL('V').chr,
appointment.month, CDK.CTRL('V').chr,
appointment.year, CDK.CTRL('V').chr,
Appointment::AppointmentType.index(appointment.type),
CDK.CTRL('V').chr, appointment.description]
end
end
fd.close
end
# This program demonstrates the Cdk calendar widget.
def Appointment.main
# Get the current dates and set the default values for
# the day/month/year values for the calendar.
date_info = Time.now.gmtime
day = date_info.day
month = date_info.mon
year = date_info.year
title = "<C></U>CDK Appointment Book\n<C><#HL(30)>\n"
filename = ''
# Check the command line for options
opts = OptionParser.getopts('d:m:y:t:f:')
if opts['d']
day = opts['d'].to_i
end
if opts['m']
month = opts['m'].to_i
end
if opts['y']
year = opts['y'].to_i
end
if opts['t']
title = opts['t']
end
if opts['f']
filename = opts['f']
end
# Create the appointment book filename.
if filename == ''
home = ENV['HOME']
if home.nil?
filename = '.appointment'
else
filename = '%s/.appointment' % [home]
end
end
appointment_info = OpenStruct.new
appointment_info.count = 0
appointment_info.appointment = []
# Read the appointment book information.
readAppointmentFile(filename, appointment_info)
# Set up CDK
curses_win = Ncurses.initscr
cdkscreen = CDK::SCREEN.new(curses_win)
# Set up CDK colors
CDK::Draw.initCDKColor
# Create the calendar widget.
calendar = CDK::CALENDAR.new(cdkscreen, CDK::CENTER, CDK::CENTER,
title, day, month, year, Ncurses::A_NORMAL, Ncurses::A_NORMAL,
Ncurses::A_NORMAL, Ncurses::A_REVERSE, true, false)
# Is the widget nil?
if calendar.nil?
cdkscreen.destroy
CDK::SCREEN.endCDK
puts "Cannot create the calendar. Is the window too small?"
exit # EXIT_FAILURE
end
# This adds a marker to the calendar.
create_calendar_mark_cb = lambda do |object_type, calendar, info, key|
items = [
'Birthday',
'Anniversary',
'Appointment',
'Other',
]
# Create the itemlist widget.
itemlist = CDK::ITEMLIST.new(calendar.screen,
CDK::CENTER, CDK::CENTER, '', 'Select Appointment Type: ',
items, items.size, 0, true, false)
# Get the appointment type from the user.
selection = itemlist.activate([])
# They hit escape, kill the itemlist widget and leave.
if selection == -1
itemlist.destroy
calendar.draw(calendar.box)
return false
end
# Destroy the itemlist and set the marker.
itemlist.destroy
calendar.draw(calendar.box)
marker = Appointment::GPAppointmentAttributes[selection]
# Create the entry field for the description.
entry = CDK::ENTRY.new(calendar.screen, CDK::CENTER, CDK::CENTER,
'<C>Enter a description of the appointment.',
'Description: ', Ncurses::A_NORMAL, '.'.ord, :MIXED, 40, 1, 512,
true, false)
# Get the description.
description = entry.activate([])
if description == 0
entry.destroy
calendar.draw(calendar.box)
return false
end
# Destroy the entry and set the marker.
description = entry.info
entry.destroy
calendar.draw(calendar.box)
# Set the marker.
calendar.setMarker(calendar.day, calendar.month, calendar.year, marker)
# Keep the marker.
info.appointment << OpenStruct.new
current = info.count
info.appointment[current].day = calendar.day
info.appointment[current].month = calendar.month
info.appointment[current].year = calendar.year
info.appointment[current].type = Appointment::AppointmentType[selection]
info.appointment[current].description = description
info.count += 1
# Redraw the calendar.
calendar.draw(calendar.box)
return false
end
# This removes a marker from the calendar.
remove_calendar_mark_cb = lambda do |object_type, calendar, info, key|
info.appointment.each do |appointment|
if appointment.day == calendar.day &&
appointment.month == calendar.month &&
appointment.year == calendar.year
appointment.description = ''
break
end
end
# Remove the marker from the calendar.
calendar.removeMarker(calendar.day, calendar.month, calendar.year)
# Redraw the calendar.
calendar.draw(calendar.box)
return false
end
# This displays the marker(s) on the given day.
display_calendar_mark_cb = lambda do |object_type, calendar, info, key|
found = 0
type = ''
mesg = []
# Look for the marker in the list.
info.appointment.each do |appointment|
# Get the day month year.
day = appointment.day
month = appointment.month
year = appointment.year
# Determine the appointment type.
if appointment.type == :BIRTHDAY
type = 'Birthday'
elsif appointment.type == :ANNIVERSARY
type = 'Anniversary'
elsif appointment.type == :APPOINTMENT
type = 'Appointment'
else
type = 'Other'
end
# Find the marker by the day/month/year.
if day == calendar.day && month == calendar.month &&
year == calendar.year && appointment.description != ''
# Create the message for the label widget.
mesg << '<C>Appointment Date: %02d/%02d/%d' % [
day, month, year]
mesg << ' '
mesg << '<C><#HL(35)>'
mesg << ' Appointment Type: %s' % [type]
mesg << ' Description :'
mesg << ' %s' % [appointment.description]
mesg << '<C><#HL(35)>'
mesg << ' '
mesg << '<C>Press space to continue.'
found = 1
break
end
end
# If we didn't find the marker, create a different message.
if found == 0
mesg << '<C>There is no appointment for %02d/%02d/%d' % [
calendar.day, calendar.month, calendar.year]
mesg << '<C><#HL(30)>'
mesg << '<C>Press space to continue.'
end
# Create the label widget
label = CDK::LABEL.new(calendar.screen, CDK::CENTER, CDK::CENTER,
mesg, mesg.size, true, false)
label.draw(label.box)
label.wait(' ')
label.destroy
# Redraw the calendar
calendar.draw(calendar.box)
return false
end
# This allows the user to accelerate to a given date.
accelerate_to_date_cb = lambda do |object_type, object, client_data, key|
return false
end
# Create a key binding to mark days on the calendar.
calendar.bind(:CALENDAR, 'm', create_calendar_mark_cb, appointment_info)
calendar.bind(:CALENDAR, 'M', create_calendar_mark_cb, appointment_info)
calendar.bind(:CALENDAR, 'r', remove_calendar_mark_cb, appointment_info)
calendar.bind(:CALENDAR, 'R', remove_calendar_mark_cb, appointment_info)
calendar.bind(:CALENDAR, '?', display_calendar_mark_cb, appointment_info)
calendar.bind(:CALENDAR, 'j', accelerate_to_date_cb, appointment_info)
calendar.bind(:CALENDAR, 'J', accelerate_to_date_cb, appointment_info)
# Set all the appointments read from the file.
appointment_info.appointment.each do |appointment|
marker = Appointment::GPAppointmentAttributes[
Appointment::AppointmentType.index(appointment.type)]
calendar.setMarker(appointment.day, appointment.month,
appointment.year, marker)
end
# Draw the calendar widget.
calendar.draw(calendar.box)
# Let the user play with the widget.
calendar.activate([])
# Save the appointment information.
Appointment.saveAppointmentFile(filename, appointment_info)
# Clean up.
calendar.destroy
cdkscreen.destroy
CDK::SCREEN.endCDK
exit # EXIT_SUCCESS
end
end
Appointment.main
| 29.362832 | 78 | 0.622765 |
bd4bcb12510a5ccc7c8b5fd93edf82e107f1ef71 | 399 | asm | Assembly | libsrc/enterprise/exos_write_block.asm | andydansby/z88dk-mk2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | 1 | 2020-09-15T08:35:49.000Z | 2020-09-15T08:35:49.000Z | libsrc/enterprise/exos_write_block.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | libsrc/enterprise/exos_write_block.asm | andydansby/z88dk-MK2 | 51c15f1387293809c496f5eaf7b196f8a0e9b66b | [
"ClArtistic"
] | null | null | null | ;
; Enterprise 64/128 specific routines
; by Stefano Bodrato, 2011
;
; exos_write_block(unsigned char channel, unsigned int byte_count, unsigned char *address);
;
;
; $Id: exos_write_block.asm,v 1.1 2011/03/15 14:34:08 stefano Exp $
;
XLIB exos_write_block
exos_write_block:
pop af
pop de
pop bc
pop hl
push hl
push bc
push de
push af
ld a,l
rst 30h
defb 8
ld h,0
ld l,a
ret
| 12.870968 | 91 | 0.701754 |
afeebe97cbd92d5cf64f5531e56a919d7f577b9d | 2,116 | html | HTML | popup.html | ktsanter/infoDeck-extension | b33c561cfb7f1fb3b4eed33d974298792f1ad05d | [
"MIT"
] | null | null | null | popup.html | ktsanter/infoDeck-extension | b33c561cfb7f1fb3b4eed33d974298792f1ad05d | [
"MIT"
] | null | null | null | popup.html | ktsanter/infoDeck-extension | b33c561cfb7f1fb3b4eed33d974298792f1ad05d | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html>
<head>
<title> infoDeck popup </title>
<meta charset="utf-8">
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.2/css/all.css",
integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay"
crossorigin="anonymous"
>
<link href="styles/fuzzyinputcontrol.css" rel="stylesheet" type="text/css">
<link href="styles/popup.css" rel="stylesheet" type="text/css">
<script data-main="scripts/require_popup" src="scripts/require.js"></script>
</head>
<body class="colorscheme">
<div class="contents">
<div class="nav-container">
<ul>
<li><div class="navbar-logo"> infoDeck </div></li>
<li><div class="navbar-item" id="students"> students </div> </li>
<li><div class="navbar-item" id="mentors"> mentors </div> </li>
<li class="dropdown">
<a class="dropbtn">
<i class="fas fa-bars"> </i>
</a>
<div class="dropdown-content">
<a href="#" class="dropdown-item item-rostermanager"> roster manager </a>
<a href="#" class="dropdown-item item-enddatemanager"> end date manager </a>
<a href="#" class="dropdown-item item-accesskey"> access key </a>
<a href="#" class="dropdown-item item-help"> help </a>
</div>
</li>
</ul>
</div>
<div class="message"> </div>
<div class="error-container"> </div>
<div id="content-students" class="content-container students hide-me"> </div>
<div id="content-mentors" class="content-container mentors hide-me"> </div>
<div id="content-accesskey" class="content-container accesskey-dialog hide-me">
<div class="accesskey-text"> Please enter the access key from the Roster Manager </div>
<div class="accesskey-controls">
<input type="text" class="input-accesskey">
<button class="button-accesskey"> submit </button>
</div>
</div>
</div>
</body>
</html>
| 36.482759 | 95 | 0.57845 |
ff68f86af3ee60a004412c548df8b1eb0914ac80 | 1,578 | kt | Kotlin | src/main/java/org/mtransit/parser/db/DumpDbUtils.kt | mtransitapps/parser | 72bcff24c37ff04d90f8a1e018fd1ef87798c3b8 | [
"Apache-2.0"
] | 2 | 2015-03-09T12:40:58.000Z | 2022-01-02T22:17:01.000Z | src/main/java/org/mtransit/parser/db/DumpDbUtils.kt | mtransitapps/parser | 72bcff24c37ff04d90f8a1e018fd1ef87798c3b8 | [
"Apache-2.0"
] | 3 | 2015-03-07T17:06:59.000Z | 2015-03-31T12:58:13.000Z | src/main/java/org/mtransit/parser/db/DumpDbUtils.kt | mtransitapps/parser | 72bcff24c37ff04d90f8a1e018fd1ef87798c3b8 | [
"Apache-2.0"
] | 3 | 2015-03-07T17:33:26.000Z | 2019-08-29T06:17:21.000Z | package org.mtransit.parser.db
import org.mtransit.commons.GTFSCommons
import org.mtransit.parser.FileUtils
import java.io.File
import java.sql.Connection
import java.sql.DriverManager
object DumpDbUtils {
@JvmStatic
fun getConnection(filePath: String): Connection {
delete(filePath) // delete previous
return DriverManager.getConnection(
SQLUtils.JDBC_SQLITE + filePath
)
}
@JvmStatic
fun delete(filePath: String) {
FileUtils.deleteIfExist(File(filePath))
}
@JvmStatic
fun init(connection: Connection) {
val statement = connection.createStatement()
SQLUtils.execute(statement, "PRAGMA auto_vacuum = NONE")
// DROP IF EXIST
SQLUtils.executeUpdate(statement, GTFSCommons.T_TRIP_STOPS_SQL_DROP)
SQLUtils.executeUpdate(statement, GTFSCommons.T_STOP_SQL_DROP)
SQLUtils.executeUpdate(statement, GTFSCommons.T_TRIP_SQL_DROP)
SQLUtils.executeUpdate(statement, GTFSCommons.T_ROUTE_SQL_DROP)
SQLUtils.executeUpdate(statement, GTFSCommons.T_SERVICE_DATES_SQL_DROP)
SQLUtils.executeUpdate(statement, GTFSCommons.T_ROUTE_SQL_DROP)
// CREATE
SQLUtils.executeUpdate(statement, GTFSCommons.T_ROUTE_SQL_CREATE)
SQLUtils.executeUpdate(statement, GTFSCommons.T_TRIP_SQL_CREATE)
SQLUtils.executeUpdate(statement, GTFSCommons.T_STOP_SQL_CREATE)
SQLUtils.executeUpdate(statement, GTFSCommons.T_TRIP_STOPS_SQL_CREATE)
SQLUtils.executeUpdate(statement, GTFSCommons.T_SERVICE_DATES_SQL_CREATE)
}
} | 37.571429 | 81 | 0.742079 |
f742140c1fd7997496982bb3a7a07301bab388ba | 10,608 | c | C | fipscavs/dispatch/cavs_dispatch_l4.c | holyswordman/apple_corecrypto_mirror | 7f67b02ab1fe07817b818c4e6f0d65ac39999d06 | [
"AML"
] | 20 | 2018-07-11T17:56:35.000Z | 2021-11-03T06:49:13.000Z | fipscavs/dispatch/cavs_dispatch_l4.c | holyswordman/apple_corecrypto_mirror | 7f67b02ab1fe07817b818c4e6f0d65ac39999d06 | [
"AML"
] | null | null | null | fipscavs/dispatch/cavs_dispatch_l4.c | holyswordman/apple_corecrypto_mirror | 7f67b02ab1fe07817b818c4e6f0d65ac39999d06 | [
"AML"
] | null | null | null | /*
* Copyright (c) 2016,2017,2018 Apple Inc. All rights reserved.
*
* corecrypto Internal Use License Agreement
*
* IMPORTANT: This Apple corecrypto software is supplied to you by Apple Inc. ("Apple")
* in consideration of your agreement to the following terms, and your download or use
* of this Apple software constitutes acceptance of these terms. If you do not agree
* with these terms, please do not download or use this Apple software.
*
* 1. As used in this Agreement, the term "Apple Software" collectively means and
* includes all of the Apple corecrypto materials provided by Apple here, including
* but not limited to the Apple corecrypto software, frameworks, libraries, documentation
* and other Apple-created materials. In consideration of your agreement to abide by the
* following terms, conditioned upon your compliance with these terms and subject to
* these terms, Apple grants you, for a period of ninety (90) days from the date you
* download the Apple Software, a limited, non-exclusive, non-sublicensable license
* under Apple’s copyrights in the Apple Software to make a reasonable number of copies
* of, compile, and run the Apple Software internally within your organization only on
* devices and computers you own or control, for the sole purpose of verifying the
* security characteristics and correct functioning of the Apple Software; provided
* that you must retain this notice and the following text and disclaimers in all
* copies of the Apple Software that you make. You may not, directly or indirectly,
* redistribute the Apple Software or any portions thereof. The Apple Software is only
* licensed and intended for use as expressly stated above and may not be used for other
* purposes or in other contexts without Apple's prior written permission. Except as
* expressly stated in this notice, no other rights or licenses, express or implied, are
* granted by Apple herein.
*
* 2. The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO
* WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES
* OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING
* THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS,
* SYSTEMS, OR SERVICES. APPLE DOES NOT WARRANT THAT THE APPLE SOFTWARE WILL MEET YOUR
* REQUIREMENTS, THAT THE OPERATION OF THE APPLE SOFTWARE WILL BE UNINTERRUPTED OR
* ERROR-FREE, THAT DEFECTS IN THE APPLE SOFTWARE WILL BE CORRECTED, OR THAT THE APPLE
* SOFTWARE WILL BE COMPATIBLE WITH FUTURE APPLE PRODUCTS, SOFTWARE OR SERVICES. NO ORAL
* OR WRITTEN INFORMATION OR ADVICE GIVEN BY APPLE OR AN APPLE AUTHORIZED REPRESENTATIVE
* WILL CREATE A WARRANTY.
*
* 3. IN NO EVENT SHALL APPLE BE LIABLE FOR ANY DIRECT, SPECIAL, INDIRECT, INCIDENTAL
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING
* IN ANY WAY OUT OF THE USE, REPRODUCTION, COMPILATION OR OPERATION OF THE APPLE
* SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING
* NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* 4. This Agreement is effective until terminated. Your rights under this Agreement will
* terminate automatically without notice from Apple if you fail to comply with any term(s)
* of this Agreement. Upon termination, you agree to cease all use of the Apple Software
* and destroy all copies, full or partial, of the Apple Software. This Agreement will be
* governed and construed in accordance with the laws of the State of California, without
* regard to its choice of law rules.
*
* You may report security issues about Apple products to product-security@apple.com,
* as described here: https://www.apple.com/support/security/. Non-security bugs and
* enhancement requests can be made via https://bugreport.apple.com as described
* here: https://developer.apple.com/bug-reporting/
*
* EA1350
* 10/5/15
*/
#include <stdlib.h>
#include <stdio.h>
#include <sys/stat.h>
#include <errno.h>
#include <spawn.h>
#include <unistd.h>
#include <fcntl.h>
#include "cavs_common.h"
#include "cavs_io.h"
#include "cavs_dispatch_priv.h"
#include "cavs_driver_l4.h"
/*
* Communicating with the SEP utilizes the SEP unit test API to dispatch
* vectors through the filesystem, and then into the SEP process defined in the
* corecrypto/fipscavs/l4/main.c file.
*
* This process then acquires the information written in CAVS_TEST_IN_PATH and
* executes the vector, leaving whatever appropriate artifacts (test specific) in
* the supplied outbound buffer, which is then written to CAVS_TEST_OUT_PATH.
*
* The test writer would call cavs_l4_send() to write the necessary blobs to
* disk and execute the seputil process. Upon return from that method, a call
* to cavs_l4_receive() returns the results of the vector operation.
*/
#define CAVS_TEST_IN_PATH "/tmp/test-in.bin"
#define CAVS_TEST_OUT_PATH "/tmp/test-out.out"
static int seputil_exec();
static size_t cavs_l4_receive_file(FILE **f);
static int cavs_l4_send(void *buf, size_t buf_len);
static size_t cavs_l4_receive(uint8_t *response);
static int cavs_l4_meta_continue(void);
static int seputil_exec()
{
pid_t pid;
int ret, status;
posix_spawn_file_actions_t action;
char *argv[] = {
"/usr/libexec/seputil",
"--test-run",
"sks/cavs",
"--test-input",
CAVS_TEST_IN_PATH,
"--test-output",
CAVS_TEST_OUT_PATH,
NULL};
posix_spawn_file_actions_init(&action);
posix_spawn_file_actions_addopen (&action, STDOUT_FILENO, "/dev/null", O_RDONLY, 0);
ret = posix_spawn(&pid, argv[0], &action, NULL, argv, NULL);
posix_spawn_file_actions_destroy(&action);
if (ret != 0) {
errorf("Failed to posix_spawn: %d", ret);
return ret;
}
waitpid(pid, &status, 0);
if (WIFEXITED(status)) {
status = WEXITSTATUS(status);
if (status != 0) {
errorf("Exit Status: %d", status);
}
return status;
}
if (WIFSIGNALED(status)) {
errorf("Termination Signal: %d", WTERMSIG(status));
return WTERMSIG(status);
}
return 0;
}
static int cavs_l4_send(void *buf, size_t buf_len)
{
uint8_t *buf_wlk;
size_t ret;
/* Use the walker to send the data in CAVS_L4_MAX_MSG_SZ chunks. */
buf_wlk = buf;
while (buf_len) {
uint32_t len = CC_MIN((int)buf_len, CAVS_L4_MAX_MSG_SZ);
FILE *f = fopen(CAVS_TEST_IN_PATH, "w");
if (f == NULL) {
errorf("failed to open '%s'", CAVS_TEST_IN_PATH);
return CAVS_STATUS_FAIL;
}
ret = fwrite(buf_wlk, len, 1, f);
fclose(f);
if (ret != 1) {
errorf("failed to write send buffer");
return CAVS_STATUS_FAIL;
}
ret = seputil_exec();
if (ret != 0) {
errorf("SEPUtil call failed: %zu", ret);
return CAVS_STATUS_FAIL;
}
buf_len -= len;
buf_wlk += len;
}
return CAVS_STATUS_OK;
}
static size_t cavs_l4_receive_file(FILE **f)
{
struct stat s;
off_t buf_len;
*f = NULL;
if (stat(CAVS_TEST_OUT_PATH, &s) < 0) {
errorf("stat call failed: %d", errno);
return CAVS_STATUS_FAIL;
}
if ((size_t)s.st_size < sizeof(uint32_t)) {
errorf("result file not large enough for length");
return CAVS_STATUS_FAIL;
}
buf_len = s.st_size;
*f = fopen(CAVS_TEST_OUT_PATH, "r");
if (!*f) {
errorf("fopen call failed: %d", errno);
return CAVS_STATUS_FAIL;
}
return buf_len;
}
static int cavs_l4_meta_continue(void)
{
static struct { uint32_t len; cavs_vector vector; } cavs_l4_meta_continue = {
.len = 0,
.vector = CAVS_VECTOR_META_CONTINUE
};
assert(sizeof(cavs_l4_meta_continue) == cavs_io_sizeof_header());
return cavs_l4_send(&cavs_l4_meta_continue, cavs_io_sizeof_header());
}
/*
* Returns the size of the resulting buffer and copies the contents into
* response if supplied.
*/
static size_t cavs_l4_receive(uint8_t *response)
{
int ret;
uint32_t vector_len, len;
off_t buf_len;
FILE *f;
uint8_t *wlk = response;
buf_len = cavs_l4_receive_file(&f);
if (!f) {
errorf("fopen call failed: %d", errno);
return CAVS_STATUS_FAIL;
}
/* Get the length of the result buffer. */
ret = (int)fread(&len, sizeof(len), 1, f);
if (ret != 1) {
errorf("fread call failed");
fclose(f);
return CAVS_STATUS_FAIL;
}
if (!response) {
fclose(f);
return len;
}
/* Store for later, to report back the full response size. */
vector_len = len;
buf_len -= sizeof(len);
/* Read until satisfied. */
while (len) {
if (!f) {
if (cavs_l4_meta_continue() != CAVS_STATUS_OK) {
errorf("meta continue failed");
return CAVS_STATUS_FAIL;
}
buf_len = cavs_l4_receive_file(&f);
if (!f) {
errorf("fopen call failed: %d", errno);
return CAVS_STATUS_FAIL;
}
}
ret = (int)fread(wlk, (size_t)buf_len, 1, f);
if (ret != 1) {
errorf("fread call failed");
fclose(f);
return CAVS_STATUS_FAIL;
}
len -= buf_len;
wlk += buf_len;
/* Close the file so that it can be recreated on continue. */
fclose(f);
f = NULL;
}
if (f) {
/* If only the size was sent, and the size was 0, will it fall through here. */
fclose(f);
}
return vector_len;
}
int cavs_dispatch_l4(cavs_vector vector, uint8_t *request_buf,
size_t request_len, void *result, size_t *result_len)
{
size_t receive_len;
if (cavs_l4_send(request_buf, request_len) != CAVS_STATUS_OK) {
debugf("cavs_l4_send failed");
return CAVS_STATUS_FAIL;
}
receive_len = cavs_l4_receive(NULL);
if (receive_len == CAVS_STATUS_FAIL || receive_len > *result_len) {
debugf("invalid size returned data: %zu", receive_len);
return CAVS_STATUS_FAIL;
}
if (cavs_l4_receive(result) != receive_len) {
debugf("failed to read data");
return CAVS_STATUS_FAIL;
}
*result_len = receive_len;
return CAVS_STATUS_OK;
}
| 33.891374 | 92 | 0.673643 |
d2a2a4c9b3cbe8d379ef156b4408b532e0d26c07 | 2,455 | php | PHP | resources/views/orders/index.blade.php | hadeer-elhefnawy/EEC-Group | 2699bbebfa09227a2b7d36f214af87e61ce2767c | [
"MIT"
] | null | null | null | resources/views/orders/index.blade.php | hadeer-elhefnawy/EEC-Group | 2699bbebfa09227a2b7d36f214af87e61ce2767c | [
"MIT"
] | null | null | null | resources/views/orders/index.blade.php | hadeer-elhefnawy/EEC-Group | 2699bbebfa09227a2b7d36f214af87e61ce2767c | [
"MIT"
] | null | null | null | @extends('layouts.app')
@section('content')
<div class="row">
<div class="col-lg-12 margin-tb">
<div class="pull-left">
<h2>All orders</h2>
</div>
<div class="pull-right">
<a class="btn btn-success" href="{{ route('orders.create') }}"> Create New order</a>
</div>
</div>
</div>
@if ($message = Session::get('success'))
<div class="alert alert-success">
<p>{{ $message }}</p>
</div>
@endif
<table class="table table-bordered">
<tr>
<th>Order No</th>
<th>request date</th>
<th>department</th>
<th>section</th>
<th class="hidden">item category</th>
<th>action</th>
</tr>
@foreach ($orders as $order)
<tr>
<td>{{$order->order_number}}</td>
<td>
<input type="text" class="form-control" value="{{date('Y-m-d')}}" disabled>
</td>
<td> {{ $order->department->name}}</td>
<td>{{ $order->section->name}}</td>
<td class="hidden">
@foreach($order->products as $product)
<p>{{ $product->category->name}}</p>
@endforeach
</td>
<td>
<form action="{{ route('orders.destroy',$order->id) }}" method="POST">
<a class="btn btn-info" href="{{ route('orders.show',$order->id) }}">Show</a>
<a class="btn btn-primary" href="{{ route('orders.edit',$order->id) }}">Edit</a>
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach
{{-- @foreach ($orders as $order)
<tr>
<td>
<form action="{{ route('orders.destroy',$order->id) }}" method="POST">
<a class="btn btn-info" href="{{ route('orders.show',$order->id) }}">Show</a>
<a class="btn btn-primary" href="{{ route('orders.edit',$order->id) }}">Edit</a>
@csrf
@method('DELETE')
<button type="submit" class="btn btn-danger">Delete</button>
</form>
</td>
</tr>
@endforeach --}}
</table>
@endsection
| 29.22619 | 100 | 0.432994 |
4c27060e2a1e05a281eeec7a3f253b1a1269d0e4 | 88 | php | PHP | resources/views/client/layouts/homepagelay.blade.php | alifraz123/gameoftech | 1f4c184a6112cb98a1d65f48d1620b1ae590637a | [
"MIT"
] | null | null | null | resources/views/client/layouts/homepagelay.blade.php | alifraz123/gameoftech | 1f4c184a6112cb98a1d65f48d1620b1ae590637a | [
"MIT"
] | null | null | null | resources/views/client/layouts/homepagelay.blade.php | alifraz123/gameoftech | 1f4c184a6112cb98a1d65f48d1620b1ae590637a | [
"MIT"
] | null | null | null |
@include('client/includes/header')
@yield('content')
@include('client/includes/footer') | 22 | 34 | 0.75 |
e8c9f3d73bb4ea6a7ed71a79ed56dad91cbd8ff5 | 2,010 | swift | Swift | MuseSwift/Source/Render/SingleLineScore/SingleLineScoreLayout.swift | ocadaruma/museswift | d1b5db275f7cd208f9f46ece6ce36f48074ccd15 | [
"MIT"
] | 1 | 2016-04-07T02:01:12.000Z | 2016-04-07T02:01:12.000Z | MuseSwift/Source/Render/SingleLineScore/SingleLineScoreLayout.swift | ocadaruma/museswift | d1b5db275f7cd208f9f46ece6ce36f48074ccd15 | [
"MIT"
] | 4 | 2015-11-18T15:04:46.000Z | 2015-12-03T16:07:37.000Z | MuseSwift/Source/Render/SingleLineScore/SingleLineScoreLayout.swift | ocadaruma/museswift | d1b5db275f7cd208f9f46ece6ce36f48074ccd15 | [
"MIT"
] | null | null | null | import Foundation
let staffNum: Int = 5
public class SingleLineScoreLayout {
public let staffHeight: CGFloat
public let staffLineWidth: CGFloat
public let stemWidth: CGFloat
public let widthPerUnitNoteLength: CGFloat
public let barMarginRight: CGFloat
public let minStemHeight: CGFloat
public let maxBeamSlope: CGFloat
public let dotMarginLeft: CGFloat
public let fillingStaffLineWidth: CGFloat
public let fillingStaffLineXLength: CGFloat
public let noteHeadSize: CGSize
public let beamLineWidth: CGFloat
public let tupletFontSize: CGFloat
public let clefWidth: CGFloat
public let meterSymbolWidth: CGFloat
public init(
staffHeight: CGFloat = 60,
staffLineWidth: CGFloat = 1,
stemWidth: CGFloat = 2,
widthPerUnitNoteLength: CGFloat = 40,
barMarginRight: CGFloat = 10,
minStemHeight: CGFloat = 30,
maxBeamSlope: CGFloat = 0.2,
dotMarginLeft: CGFloat = 3,
fillingStaffLineWidth: CGFloat = 1,
fillingStaffLineXLength: CGFloat = 28.8,
noteHeadSize: CGSize = CGSize(width: 18, height: 15),
beamLineWidth: CGFloat = 5,
tupletFontSize: CGFloat = 20,
clefWidth: CGFloat = 36,
meterSymbolWidth: CGFloat = 25) {
self.staffHeight = staffHeight
self.staffLineWidth = staffLineWidth
self.stemWidth = stemWidth
self.widthPerUnitNoteLength = widthPerUnitNoteLength
self.barMarginRight = barMarginRight
self.minStemHeight = minStemHeight
self.maxBeamSlope = maxBeamSlope
self.dotMarginLeft = dotMarginLeft
self.fillingStaffLineWidth = fillingStaffLineWidth
self.fillingStaffLineXLength = fillingStaffLineXLength
self.noteHeadSize = noteHeadSize
self.beamLineWidth = beamLineWidth
self.tupletFontSize = tupletFontSize
self.clefWidth = clefWidth
self.meterSymbolWidth = meterSymbolWidth
}
public static let defaultLayout = SingleLineScoreLayout()
public var staffInterval: CGFloat {
return staffHeight / CGFloat(staffNum - 1)
}
} | 33.5 | 60 | 0.744279 |
7c81eaddae3d916682e3d0d3b33ab2412f6a7c98 | 174 | lua | Lua | resources/words/nin.lua | terrabythia/alfabeter | da422481ba223ebc6c4ded63fed8f75605193d44 | [
"MIT"
] | null | null | null | resources/words/nin.lua | terrabythia/alfabeter | da422481ba223ebc6c4ded63fed8f75605193d44 | [
"MIT"
] | null | null | null | resources/words/nin.lua | terrabythia/alfabeter | da422481ba223ebc6c4ded63fed8f75605193d44 | [
"MIT"
] | null | null | null | return {'nina','ninoofs','ninove','ninovenaar','ninovieter','ninja','nine','nini','ninja','ninke','nino','ninaber','ninjas','ninas','nines','ninis','ninjas','ninkes','ninos'} | 174 | 174 | 0.66092 |
8a50ef97fe8d916a2f429aad00048fd2dfd1dd19 | 574 | asm | Assembly | cgi-bin/contentf.asm | Konamiman/NestorWeb | 434a23176518c137731f4784046d3c472b845842 | [
"MIT"
] | 4 | 2020-01-19T11:53:25.000Z | 2021-05-10T21:13:47.000Z | cgi-bin/contentf.asm | Konamiman/NestorWeb | 434a23176518c137731f4784046d3c472b845842 | [
"MIT"
] | null | null | null | cgi-bin/contentf.asm | Konamiman/NestorWeb | 434a23176518c137731f4784046d3c472b845842 | [
"MIT"
] | 1 | 2020-01-20T05:17:46.000Z | 2020-01-20T05:17:46.000Z | ;Example of NestorWeb SCGI script that returns a response body from a content file.
;The file for this example is to be located at <base directory>\cgi-bin\contentf\datafile.dat
CR: equ 13
LF: equ 10
STDOUT: equ 1
_WRITE: equ 49h
org 100h
ld b,STDOUT
ld de,HEADERS
ld hl,HEADER_END-HEADERS
ld c,_WRITE
call 5
ret
HEADERS:
db "X-CGI-Content-File: contentf\\datafile.dat",CR,LF
db "Content-Type: text/plain",CR,LF
db CR,LF
;Note: response body is ignored (the file contents is sent instead)
HEADER_END:
| 22.96 | 94 | 0.670732 |
1f774464d3384217033bbe8be94d8b885bdf424a | 73 | asm | Assembly | gfx/pokemon/mawile/anim.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | gfx/pokemon/mawile/anim.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | gfx/pokemon/mawile/anim.asm | Ebernacher90/pokecrystal-allworld | 5d623c760e936842cf92563912c5bd64dd69baef | [
"blessing"
] | null | null | null | frame 1, 06
frame 2, 14
frame 3, 10
frame 2, 12
frame 3, 08
endanim | 12.166667 | 12 | 0.643836 |
52e0c614749839d1b813b92bb61ad8fcd1faf9cf | 3,196 | swift | Swift | Sources/Features/iOS/PassbookCapability.swift | anthonyherron/Operations | fa2ee4f3a5c14bdfc39b265c95dfa5d388513551 | [
"MIT"
] | 1 | 2021-03-04T01:56:07.000Z | 2021-03-04T01:56:07.000Z | Sources/Features/iOS/PassbookCapability.swift | anthonyherron/Operations | fa2ee4f3a5c14bdfc39b265c95dfa5d388513551 | [
"MIT"
] | null | null | null | Sources/Features/iOS/PassbookCapability.swift | anthonyherron/Operations | fa2ee4f3a5c14bdfc39b265c95dfa5d388513551 | [
"MIT"
] | null | null | null | //
// PassbookCapability.swift
// Operations
//
// Created by Daniel Thorpe on 02/10/2015.
// Copyright © 2015 Dan Thorpe. All rights reserved.
//
import PassKit
/**
A refined CapabilityRegistrarType for Capability.Passbook. This
protocol only defines whether the library is available as there
are no other permission/authorization mechaniams.
*/
public protocol PassbookCapabilityRegistrarType: CapabilityRegistrarType {
/// - returns: a true Bool is the Passkit library is available on the device.
func opr_isPassKitLibraryAvailable() -> Bool
}
extension PKPassLibrary: PassbookCapabilityRegistrarType {
/// - returns: a true Bool is the Passkit library is available on the device.
public func opr_isPassKitLibraryAvailable() -> Bool {
return PKPassLibrary.isPassLibraryAvailable()
}
}
/**
The Passbook capability, which is generic over an PassbookCapabilityRegistrarType.
Framework consumers should not use this directly, but instead
use Capability.Passbook. So that its usage is like this:
```swift
GetAuthorizationStatus(Capability.Passbook()) { status in
// check the status etc.
}
```
- see: Capability.Passbook
*/
public class _PassbookCapability<Registrar: PassbookCapabilityRegistrarType>: NSObject, CapabilityType {
/// - returns: a String, the name of the capability
public let name: String
/// - return: there is no requirement, Void.
public let requirement: Void
let registrar: Registrar
/**
Initialize the capability. There are no requirements, the type is Void
- parameter requirement: the required Void, defaults to ()
- parameter registrar: the registrar to use. Defauls to creating a Registrar.
*/
public required init(_ requirement: Void = (), registrar: Registrar = Registrar()) {
self.name = "Passbook"
self.requirement = requirement
self.registrar = registrar
super.init()
}
/// - returns: a true Bool is the Passkit library is available on the device.
public func isAvailable() -> Bool {
return registrar.opr_isPassKitLibraryAvailable()
}
/// Tests the authorization status - always VoidStatus
public func authorizationStatus(completion: Capability.VoidStatus -> Void) {
completion(Capability.VoidStatus())
}
/// requests authorization - a no-op, will just execute the completion block.
public func requestAuthorizationWithCompletion(completion: dispatch_block_t) {
completion()
}
}
extension Capability {
/**
# Capability.Passbook
This type represents the app's permission to access the PassKit Library.
For framework consumers - use with `GetAuthorizationStatus`, `Authorize` and
`AuthorizedFor`. For example
Get the current authorization status for accessing the user's passkit library:
```swift
GetAuthorizationStatus(Capability.Passkit()) { available, _ in
// etc
}
```
*/
public typealias Passbook = _PassbookCapability<PKPassLibrary>
}
@available(*, unavailable, renamed="AuthorizedFor(Capability.Passbook())")
public typealias PassbookCondition = AuthorizedFor<Capability.Passbook>
| 29.869159 | 104 | 0.716521 |
70e5f67b2530fa39c75c7dad4a4d225df032bfb7 | 363 | c | C | testing/printfpercents/strings.c | marshallmidden/m4 | 8ff1cb050efdefe6963c6d7f459fd6f3d25eea94 | [
"BSD-2-Clause"
] | null | null | null | testing/printfpercents/strings.c | marshallmidden/m4 | 8ff1cb050efdefe6963c6d7f459fd6f3d25eea94 | [
"BSD-2-Clause"
] | null | null | null | testing/printfpercents/strings.c | marshallmidden/m4 | 8ff1cb050efdefe6963c6d7f459fd6f3d25eea94 | [
"BSD-2-Clause"
] | null | null | null |
#include <stdio.h>
static char str1[] = "Thisisthestring.";
static char str2[] = "Short.";
int main(void)
{
printf(".10s=(%.10s)\n", str1);
printf("10s=(%10s)\n", str1);
printf("10.10s=(%10.10s)\n", str1);
printf("\n");
printf(".10s=(%.10s)\n", str2);
printf("10s=(%10s)\n", str2);
printf("10.10s=(%10.10s)\n", str2);
exit(0);
}
| 21.352941 | 40 | 0.534435 |
76f8f1b5cdc0baa0bc5e0d2a311691741244935f | 3,873 | dart | Dart | lib/src/bin/shell/shell_bin_command.dart | tekartik/process_run.dart | 9c95dc016765f90fe5672fcda794192bbd9eaa25 | [
"BSD-2-Clause"
] | 107 | 2017-09-04T08:16:15.000Z | 2022-03-14T03:45:54.000Z | lib/src/bin/shell/shell_bin_command.dart | tekartik/process_run.dart | 9c95dc016765f90fe5672fcda794192bbd9eaa25 | [
"BSD-2-Clause"
] | 51 | 2019-10-02T05:52:16.000Z | 2022-02-12T18:01:23.000Z | lib/src/bin/shell/shell_bin_command.dart | tekartik/process_run.dart | 9c95dc016765f90fe5672fcda794192bbd9eaa25 | [
"BSD-2-Clause"
] | 15 | 2019-04-26T03:32:14.000Z | 2022-01-15T18:39:54.000Z | import 'dart:io';
// ignore: import_of_legacy_library_into_null_safe
import 'package:args/args.dart';
import 'package:meta/meta.dart';
import 'package:process_run/src/bin/shell/shell.dart';
import 'package:process_run/src/common/import.dart';
// ignore: import_of_legacy_library_into_null_safe
import 'package:pub_semver/pub_semver.dart';
class ShellBinCommand {
// Optional parent
ShellBinCommand? parent;
String name;
ArgParser get parser => _parser ??= ArgParser(allowTrailingOptions: false);
FutureOr<bool> Function()? _onRun;
ArgParser? _parser;
late ArgResults results;
bool? _verbose;
// Set before run
bool? get verbose => _verbose ??= parent?.verbose;
String? _description;
String? get description => _description;
Version? _version;
Version? get version => _version ??= parent?.version;
// name
// description
void printNameDescription() {
stdout.writeln('$name${parent != null ? '' : ' ${version.toString()}'}');
if (description != null) {
stdout.writeln(' $description');
}
}
void printUsage() {
printNameDescription();
stdout.writeln();
stdout.writeln(parser.usage);
if (_commands.isNotEmpty) {
printCommands();
}
}
/// Prepend an em
void printCommands() {
_commands.forEach((name, value) {
value.printNameDescription();
});
stdout.writeln();
}
void printBaseUsage() {
printNameDescription();
if (_commands.isNotEmpty) {
stdout.writeln();
printCommands();
} else {
stdout.writeln();
stdout.writeln(parser.usage);
}
}
ArgResults parse(List<String> arguments) {
// Add missing common commands
parser.addFlag(flagVersion,
help: 'Print the command version', negatable: false);
parser.addFlag(flagVerbose,
abbr: 'v', help: 'Verbose mode', negatable: false);
return results = parser.parse(arguments);
}
@nonVirtual
FutureOr<bool> parseAndRun(List<String> arguments) {
parse(arguments);
return run();
}
final _commands = <String, ShellBinCommand>{};
ShellBinCommand(
{required this.name,
Version? version,
ArgParser? parser,
ShellBinCommand? parent,
@Deprecated('Do no user') FutureOr<bool> Function()? onRun,
String? description}) {
_onRun = onRun;
_parser = parser;
_description = description;
_version = version;
// read or create
parser = this.parser;
parser.addFlag(flagHelp, abbr: 'h', help: 'Usage help', negatable: false);
}
void addCommand(ShellBinCommand command) {
parser.addCommand(command.name, command.parser);
_commands[command.name] = command;
command.parent = this;
}
/// To override
///
/// return true if handled.
@visibleForOverriding
FutureOr<bool> onRun() {
if (_onRun != null) {
return _onRun!();
}
return false;
}
/// Get a flag
bool? getFlag(String name) => results[name] as bool?;
@nonVirtual
FutureOr<bool> run() async {
// Handle version first
if (parent == null) {
// Handle verbose
_verbose = getFlag(flagVerbose);
final hasVersion = getFlag(flagVersion)!;
if (hasVersion) {
stdout.writeln(version);
return true;
}
}
// Handle help
final help = results[flagHelp] as bool;
if (help) {
printUsage();
return true;
}
// Find the command if any
var command = results.command;
var shellCommand = _commands[command?.name];
if (shellCommand != null) {
// Set the result in the the shell command
shellCommand.results = command!;
return shellCommand.run();
}
var ran = await onRun();
if (!ran) {
stderr.writeln('No command ran');
printBaseUsage();
exit(1);
}
return ran;
}
@override
String toString() => 'ShellCommand($name)';
}
| 23.472727 | 78 | 0.637749 |
81a4e56a6660cde6df6ed9e1f51e5505208c7662 | 28,375 | go | Go | pkg/controller/ec2/launchtemplateversion/zz_controller.go | goober/provider-aws | 969f757b2e174cf35ad3b87fda7e869242b11270 | [
"Apache-2.0"
] | 1 | 2022-03-10T10:51:02.000Z | 2022-03-10T10:51:02.000Z | pkg/controller/ec2/launchtemplateversion/zz_controller.go | goober/provider-aws | 969f757b2e174cf35ad3b87fda7e869242b11270 | [
"Apache-2.0"
] | 1 | 2021-09-01T00:32:03.000Z | 2021-09-01T00:32:03.000Z | pkg/controller/ec2/launchtemplateversion/zz_controller.go | goober/provider-aws | 969f757b2e174cf35ad3b87fda7e869242b11270 | [
"Apache-2.0"
] | 1 | 2021-04-28T19:53:10.000Z | 2021-04-28T19:53:10.000Z | /*
Copyright 2021 The Crossplane Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
// Code generated by ack-generate. DO NOT EDIT.
package launchtemplateversion
import (
"context"
svcapi "github.com/aws/aws-sdk-go/service/ec2"
svcsdk "github.com/aws/aws-sdk-go/service/ec2"
svcsdkapi "github.com/aws/aws-sdk-go/service/ec2/ec2iface"
"github.com/google/go-cmp/cmp"
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/controller-runtime/pkg/client"
xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"
"github.com/crossplane/crossplane-runtime/pkg/meta"
"github.com/crossplane/crossplane-runtime/pkg/reconciler/managed"
cpresource "github.com/crossplane/crossplane-runtime/pkg/resource"
svcapitypes "github.com/crossplane/provider-aws/apis/ec2/v1alpha1"
awsclient "github.com/crossplane/provider-aws/pkg/clients"
)
const (
errUnexpectedObject = "managed resource is not an LaunchTemplateVersion resource"
errCreateSession = "cannot create a new session"
errCreate = "cannot create LaunchTemplateVersion in AWS"
errUpdate = "cannot update LaunchTemplateVersion in AWS"
errDescribe = "failed to describe LaunchTemplateVersion"
errDelete = "failed to delete LaunchTemplateVersion"
)
type connector struct {
kube client.Client
opts []option
}
func (c *connector) Connect(ctx context.Context, mg cpresource.Managed) (managed.ExternalClient, error) {
cr, ok := mg.(*svcapitypes.LaunchTemplateVersion)
if !ok {
return nil, errors.New(errUnexpectedObject)
}
sess, err := awsclient.GetConfigV1(ctx, c.kube, mg, cr.Spec.ForProvider.Region)
if err != nil {
return nil, errors.Wrap(err, errCreateSession)
}
return newExternal(c.kube, svcapi.New(sess), c.opts), nil
}
func (e *external) Observe(ctx context.Context, mg cpresource.Managed) (managed.ExternalObservation, error) {
cr, ok := mg.(*svcapitypes.LaunchTemplateVersion)
if !ok {
return managed.ExternalObservation{}, errors.New(errUnexpectedObject)
}
if meta.GetExternalName(cr) == "" {
return managed.ExternalObservation{
ResourceExists: false,
}, nil
}
input := GenerateDescribeLaunchTemplateVersionsInput(cr)
if err := e.preObserve(ctx, cr, input); err != nil {
return managed.ExternalObservation{}, errors.Wrap(err, "pre-observe failed")
}
resp, err := e.client.DescribeLaunchTemplateVersionsWithContext(ctx, input)
if err != nil {
return managed.ExternalObservation{ResourceExists: false}, awsclient.Wrap(cpresource.Ignore(IsNotFound, err), errDescribe)
}
resp = e.filterList(cr, resp)
if len(resp.LaunchTemplateVersions) == 0 {
return managed.ExternalObservation{ResourceExists: false}, nil
}
currentSpec := cr.Spec.ForProvider.DeepCopy()
if err := e.lateInitialize(&cr.Spec.ForProvider, resp); err != nil {
return managed.ExternalObservation{}, errors.Wrap(err, "late-init failed")
}
GenerateLaunchTemplateVersion(resp).Status.AtProvider.DeepCopyInto(&cr.Status.AtProvider)
upToDate, err := e.isUpToDate(cr, resp)
if err != nil {
return managed.ExternalObservation{}, errors.Wrap(err, "isUpToDate check failed")
}
return e.postObserve(ctx, cr, resp, managed.ExternalObservation{
ResourceExists: true,
ResourceUpToDate: upToDate,
ResourceLateInitialized: !cmp.Equal(&cr.Spec.ForProvider, currentSpec),
}, nil)
}
func (e *external) Create(ctx context.Context, mg cpresource.Managed) (managed.ExternalCreation, error) {
cr, ok := mg.(*svcapitypes.LaunchTemplateVersion)
if !ok {
return managed.ExternalCreation{}, errors.New(errUnexpectedObject)
}
cr.Status.SetConditions(xpv1.Creating())
input := GenerateCreateLaunchTemplateVersionInput(cr)
if err := e.preCreate(ctx, cr, input); err != nil {
return managed.ExternalCreation{}, errors.Wrap(err, "pre-create failed")
}
resp, err := e.client.CreateLaunchTemplateVersionWithContext(ctx, input)
if err != nil {
return managed.ExternalCreation{}, awsclient.Wrap(err, errCreate)
}
if resp.LaunchTemplateVersion != nil {
f0 := &svcapitypes.LaunchTemplateVersion_SDK{}
if resp.LaunchTemplateVersion.CreateTime != nil {
f0.CreateTime = &metav1.Time{*resp.LaunchTemplateVersion.CreateTime}
}
if resp.LaunchTemplateVersion.CreatedBy != nil {
f0.CreatedBy = resp.LaunchTemplateVersion.CreatedBy
}
if resp.LaunchTemplateVersion.DefaultVersion != nil {
f0.DefaultVersion = resp.LaunchTemplateVersion.DefaultVersion
}
if resp.LaunchTemplateVersion.LaunchTemplateData != nil {
f0f3 := &svcapitypes.ResponseLaunchTemplateData{}
if resp.LaunchTemplateVersion.LaunchTemplateData.BlockDeviceMappings != nil {
f0f3f0 := []*svcapitypes.LaunchTemplateBlockDeviceMapping{}
for _, f0f3f0iter := range resp.LaunchTemplateVersion.LaunchTemplateData.BlockDeviceMappings {
f0f3f0elem := &svcapitypes.LaunchTemplateBlockDeviceMapping{}
if f0f3f0iter.DeviceName != nil {
f0f3f0elem.DeviceName = f0f3f0iter.DeviceName
}
if f0f3f0iter.Ebs != nil {
f0f3f0elemf1 := &svcapitypes.LaunchTemplateEBSBlockDevice{}
if f0f3f0iter.Ebs.DeleteOnTermination != nil {
f0f3f0elemf1.DeleteOnTermination = f0f3f0iter.Ebs.DeleteOnTermination
}
if f0f3f0iter.Ebs.Encrypted != nil {
f0f3f0elemf1.Encrypted = f0f3f0iter.Ebs.Encrypted
}
if f0f3f0iter.Ebs.Iops != nil {
f0f3f0elemf1.IOPS = f0f3f0iter.Ebs.Iops
}
if f0f3f0iter.Ebs.KmsKeyId != nil {
f0f3f0elemf1.KMSKeyID = f0f3f0iter.Ebs.KmsKeyId
}
if f0f3f0iter.Ebs.SnapshotId != nil {
f0f3f0elemf1.SnapshotID = f0f3f0iter.Ebs.SnapshotId
}
if f0f3f0iter.Ebs.Throughput != nil {
f0f3f0elemf1.Throughput = f0f3f0iter.Ebs.Throughput
}
if f0f3f0iter.Ebs.VolumeSize != nil {
f0f3f0elemf1.VolumeSize = f0f3f0iter.Ebs.VolumeSize
}
if f0f3f0iter.Ebs.VolumeType != nil {
f0f3f0elemf1.VolumeType = f0f3f0iter.Ebs.VolumeType
}
f0f3f0elem.EBS = f0f3f0elemf1
}
if f0f3f0iter.NoDevice != nil {
f0f3f0elem.NoDevice = f0f3f0iter.NoDevice
}
if f0f3f0iter.VirtualName != nil {
f0f3f0elem.VirtualName = f0f3f0iter.VirtualName
}
f0f3f0 = append(f0f3f0, f0f3f0elem)
}
f0f3.BlockDeviceMappings = f0f3f0
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification != nil {
f0f3f1 := &svcapitypes.LaunchTemplateCapacityReservationSpecificationResponse{}
if resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationPreference != nil {
f0f3f1.CapacityReservationPreference = resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationPreference
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationTarget != nil {
f0f3f1f1 := &svcapitypes.CapacityReservationTargetResponse{}
if resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationTarget.CapacityReservationId != nil {
f0f3f1f1.CapacityReservationID = resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationTarget.CapacityReservationId
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationTarget.CapacityReservationResourceGroupArn != nil {
f0f3f1f1.CapacityReservationResourceGroupARN = resp.LaunchTemplateVersion.LaunchTemplateData.CapacityReservationSpecification.CapacityReservationTarget.CapacityReservationResourceGroupArn
}
f0f3f1.CapacityReservationTarget = f0f3f1f1
}
f0f3.CapacityReservationSpecification = f0f3f1
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CpuOptions != nil {
f0f3f2 := &svcapitypes.LaunchTemplateCPUOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.CpuOptions.CoreCount != nil {
f0f3f2.CoreCount = resp.LaunchTemplateVersion.LaunchTemplateData.CpuOptions.CoreCount
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CpuOptions.ThreadsPerCore != nil {
f0f3f2.ThreadsPerCore = resp.LaunchTemplateVersion.LaunchTemplateData.CpuOptions.ThreadsPerCore
}
f0f3.CPUOptions = f0f3f2
}
if resp.LaunchTemplateVersion.LaunchTemplateData.CreditSpecification != nil {
f0f3f3 := &svcapitypes.CreditSpecification{}
if resp.LaunchTemplateVersion.LaunchTemplateData.CreditSpecification.CpuCredits != nil {
f0f3f3.CPUCredits = resp.LaunchTemplateVersion.LaunchTemplateData.CreditSpecification.CpuCredits
}
f0f3.CreditSpecification = f0f3f3
}
if resp.LaunchTemplateVersion.LaunchTemplateData.DisableApiTermination != nil {
f0f3.DisableAPITermination = resp.LaunchTemplateVersion.LaunchTemplateData.DisableApiTermination
}
if resp.LaunchTemplateVersion.LaunchTemplateData.EbsOptimized != nil {
f0f3.EBSOptimized = resp.LaunchTemplateVersion.LaunchTemplateData.EbsOptimized
}
if resp.LaunchTemplateVersion.LaunchTemplateData.ElasticGpuSpecifications != nil {
f0f3f6 := []*svcapitypes.ElasticGPUSpecificationResponse{}
for _, f0f3f6iter := range resp.LaunchTemplateVersion.LaunchTemplateData.ElasticGpuSpecifications {
f0f3f6elem := &svcapitypes.ElasticGPUSpecificationResponse{}
if f0f3f6iter.Type != nil {
f0f3f6elem.Type = f0f3f6iter.Type
}
f0f3f6 = append(f0f3f6, f0f3f6elem)
}
f0f3.ElasticGPUSpecifications = f0f3f6
}
if resp.LaunchTemplateVersion.LaunchTemplateData.ElasticInferenceAccelerators != nil {
f0f3f7 := []*svcapitypes.LaunchTemplateElasticInferenceAcceleratorResponse{}
for _, f0f3f7iter := range resp.LaunchTemplateVersion.LaunchTemplateData.ElasticInferenceAccelerators {
f0f3f7elem := &svcapitypes.LaunchTemplateElasticInferenceAcceleratorResponse{}
if f0f3f7iter.Count != nil {
f0f3f7elem.Count = f0f3f7iter.Count
}
if f0f3f7iter.Type != nil {
f0f3f7elem.Type = f0f3f7iter.Type
}
f0f3f7 = append(f0f3f7, f0f3f7elem)
}
f0f3.ElasticInferenceAccelerators = f0f3f7
}
if resp.LaunchTemplateVersion.LaunchTemplateData.EnclaveOptions != nil {
f0f3f8 := &svcapitypes.LaunchTemplateEnclaveOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.EnclaveOptions.Enabled != nil {
f0f3f8.Enabled = resp.LaunchTemplateVersion.LaunchTemplateData.EnclaveOptions.Enabled
}
f0f3.EnclaveOptions = f0f3f8
}
if resp.LaunchTemplateVersion.LaunchTemplateData.HibernationOptions != nil {
f0f3f9 := &svcapitypes.LaunchTemplateHibernationOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.HibernationOptions.Configured != nil {
f0f3f9.Configured = resp.LaunchTemplateVersion.LaunchTemplateData.HibernationOptions.Configured
}
f0f3.HibernationOptions = f0f3f9
}
if resp.LaunchTemplateVersion.LaunchTemplateData.IamInstanceProfile != nil {
f0f3f10 := &svcapitypes.LaunchTemplateIAMInstanceProfileSpecification{}
if resp.LaunchTemplateVersion.LaunchTemplateData.IamInstanceProfile.Arn != nil {
f0f3f10.ARN = resp.LaunchTemplateVersion.LaunchTemplateData.IamInstanceProfile.Arn
}
if resp.LaunchTemplateVersion.LaunchTemplateData.IamInstanceProfile.Name != nil {
f0f3f10.Name = resp.LaunchTemplateVersion.LaunchTemplateData.IamInstanceProfile.Name
}
f0f3.IAMInstanceProfile = f0f3f10
}
if resp.LaunchTemplateVersion.LaunchTemplateData.ImageId != nil {
f0f3.ImageID = resp.LaunchTemplateVersion.LaunchTemplateData.ImageId
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceInitiatedShutdownBehavior != nil {
f0f3.InstanceInitiatedShutdownBehavior = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceInitiatedShutdownBehavior
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions != nil {
f0f3f13 := &svcapitypes.LaunchTemplateInstanceMarketOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.MarketType != nil {
f0f3f13.MarketType = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.MarketType
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions != nil {
f0f3f13f1 := &svcapitypes.LaunchTemplateSpotMarketOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.BlockDurationMinutes != nil {
f0f3f13f1.BlockDurationMinutes = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.BlockDurationMinutes
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.InstanceInterruptionBehavior != nil {
f0f3f13f1.InstanceInterruptionBehavior = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.InstanceInterruptionBehavior
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.MaxPrice != nil {
f0f3f13f1.MaxPrice = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.MaxPrice
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.SpotInstanceType != nil {
f0f3f13f1.SpotInstanceType = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.SpotInstanceType
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.ValidUntil != nil {
f0f3f13f1.ValidUntil = &metav1.Time{*resp.LaunchTemplateVersion.LaunchTemplateData.InstanceMarketOptions.SpotOptions.ValidUntil}
}
f0f3f13.SpotOptions = f0f3f13f1
}
f0f3.InstanceMarketOptions = f0f3f13
}
if resp.LaunchTemplateVersion.LaunchTemplateData.InstanceType != nil {
f0f3.InstanceType = resp.LaunchTemplateVersion.LaunchTemplateData.InstanceType
}
if resp.LaunchTemplateVersion.LaunchTemplateData.KernelId != nil {
f0f3.KernelID = resp.LaunchTemplateVersion.LaunchTemplateData.KernelId
}
if resp.LaunchTemplateVersion.LaunchTemplateData.KeyName != nil {
f0f3.KeyName = resp.LaunchTemplateVersion.LaunchTemplateData.KeyName
}
if resp.LaunchTemplateVersion.LaunchTemplateData.LicenseSpecifications != nil {
f0f3f17 := []*svcapitypes.LaunchTemplateLicenseConfiguration{}
for _, f0f3f17iter := range resp.LaunchTemplateVersion.LaunchTemplateData.LicenseSpecifications {
f0f3f17elem := &svcapitypes.LaunchTemplateLicenseConfiguration{}
if f0f3f17iter.LicenseConfigurationArn != nil {
f0f3f17elem.LicenseConfigurationARN = f0f3f17iter.LicenseConfigurationArn
}
f0f3f17 = append(f0f3f17, f0f3f17elem)
}
f0f3.LicenseSpecifications = f0f3f17
}
if resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions != nil {
f0f3f18 := &svcapitypes.LaunchTemplateInstanceMetadataOptions{}
if resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpEndpoint != nil {
f0f3f18.HTTPEndpoint = resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpEndpoint
}
if resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpPutResponseHopLimit != nil {
f0f3f18.HTTPPutResponseHopLimit = resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpPutResponseHopLimit
}
if resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpTokens != nil {
f0f3f18.HTTPTokens = resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.HttpTokens
}
if resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.State != nil {
f0f3f18.State = resp.LaunchTemplateVersion.LaunchTemplateData.MetadataOptions.State
}
f0f3.MetadataOptions = f0f3f18
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Monitoring != nil {
f0f3f19 := &svcapitypes.LaunchTemplatesMonitoring{}
if resp.LaunchTemplateVersion.LaunchTemplateData.Monitoring.Enabled != nil {
f0f3f19.Enabled = resp.LaunchTemplateVersion.LaunchTemplateData.Monitoring.Enabled
}
f0f3.Monitoring = f0f3f19
}
if resp.LaunchTemplateVersion.LaunchTemplateData.NetworkInterfaces != nil {
f0f3f20 := []*svcapitypes.LaunchTemplateInstanceNetworkInterfaceSpecification{}
for _, f0f3f20iter := range resp.LaunchTemplateVersion.LaunchTemplateData.NetworkInterfaces {
f0f3f20elem := &svcapitypes.LaunchTemplateInstanceNetworkInterfaceSpecification{}
if f0f3f20iter.AssociateCarrierIpAddress != nil {
f0f3f20elem.AssociateCarrierIPAddress = f0f3f20iter.AssociateCarrierIpAddress
}
if f0f3f20iter.AssociatePublicIpAddress != nil {
f0f3f20elem.AssociatePublicIPAddress = f0f3f20iter.AssociatePublicIpAddress
}
if f0f3f20iter.DeleteOnTermination != nil {
f0f3f20elem.DeleteOnTermination = f0f3f20iter.DeleteOnTermination
}
if f0f3f20iter.Description != nil {
f0f3f20elem.Description = f0f3f20iter.Description
}
if f0f3f20iter.DeviceIndex != nil {
f0f3f20elem.DeviceIndex = f0f3f20iter.DeviceIndex
}
if f0f3f20iter.Groups != nil {
f0f3f20elemf5 := []*string{}
for _, f0f3f20elemf5iter := range f0f3f20iter.Groups {
var f0f3f20elemf5elem string
f0f3f20elemf5elem = *f0f3f20elemf5iter
f0f3f20elemf5 = append(f0f3f20elemf5, &f0f3f20elemf5elem)
}
f0f3f20elem.Groups = f0f3f20elemf5
}
if f0f3f20iter.InterfaceType != nil {
f0f3f20elem.InterfaceType = f0f3f20iter.InterfaceType
}
if f0f3f20iter.Ipv6AddressCount != nil {
f0f3f20elem.IPv6AddressCount = f0f3f20iter.Ipv6AddressCount
}
if f0f3f20iter.Ipv6Addresses != nil {
f0f3f20elemf8 := []*svcapitypes.InstanceIPv6Address{}
for _, f0f3f20elemf8iter := range f0f3f20iter.Ipv6Addresses {
f0f3f20elemf8elem := &svcapitypes.InstanceIPv6Address{}
if f0f3f20elemf8iter.Ipv6Address != nil {
f0f3f20elemf8elem.IPv6Address = f0f3f20elemf8iter.Ipv6Address
}
f0f3f20elemf8 = append(f0f3f20elemf8, f0f3f20elemf8elem)
}
f0f3f20elem.IPv6Addresses = f0f3f20elemf8
}
if f0f3f20iter.NetworkCardIndex != nil {
f0f3f20elem.NetworkCardIndex = f0f3f20iter.NetworkCardIndex
}
if f0f3f20iter.NetworkInterfaceId != nil {
f0f3f20elem.NetworkInterfaceID = f0f3f20iter.NetworkInterfaceId
}
if f0f3f20iter.PrivateIpAddress != nil {
f0f3f20elem.PrivateIPAddress = f0f3f20iter.PrivateIpAddress
}
if f0f3f20iter.PrivateIpAddresses != nil {
f0f3f20elemf12 := []*svcapitypes.PrivateIPAddressSpecification{}
for _, f0f3f20elemf12iter := range f0f3f20iter.PrivateIpAddresses {
f0f3f20elemf12elem := &svcapitypes.PrivateIPAddressSpecification{}
if f0f3f20elemf12iter.Primary != nil {
f0f3f20elemf12elem.Primary = f0f3f20elemf12iter.Primary
}
if f0f3f20elemf12iter.PrivateIpAddress != nil {
f0f3f20elemf12elem.PrivateIPAddress = f0f3f20elemf12iter.PrivateIpAddress
}
f0f3f20elemf12 = append(f0f3f20elemf12, f0f3f20elemf12elem)
}
f0f3f20elem.PrivateIPAddresses = f0f3f20elemf12
}
if f0f3f20iter.SecondaryPrivateIpAddressCount != nil {
f0f3f20elem.SecondaryPrivateIPAddressCount = f0f3f20iter.SecondaryPrivateIpAddressCount
}
if f0f3f20iter.SubnetId != nil {
f0f3f20elem.SubnetID = f0f3f20iter.SubnetId
}
f0f3f20 = append(f0f3f20, f0f3f20elem)
}
f0f3.NetworkInterfaces = f0f3f20
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement != nil {
f0f3f21 := &svcapitypes.LaunchTemplatePlacement{}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.Affinity != nil {
f0f3f21.Affinity = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.Affinity
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.AvailabilityZone != nil {
f0f3f21.AvailabilityZone = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.AvailabilityZone
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.GroupName != nil {
f0f3f21.GroupName = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.GroupName
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.HostId != nil {
f0f3f21.HostID = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.HostId
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.HostResourceGroupArn != nil {
f0f3f21.HostResourceGroupARN = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.HostResourceGroupArn
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.PartitionNumber != nil {
f0f3f21.PartitionNumber = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.PartitionNumber
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.SpreadDomain != nil {
f0f3f21.SpreadDomain = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.SpreadDomain
}
if resp.LaunchTemplateVersion.LaunchTemplateData.Placement.Tenancy != nil {
f0f3f21.Tenancy = resp.LaunchTemplateVersion.LaunchTemplateData.Placement.Tenancy
}
f0f3.Placement = f0f3f21
}
if resp.LaunchTemplateVersion.LaunchTemplateData.RamDiskId != nil {
f0f3.RamDiskID = resp.LaunchTemplateVersion.LaunchTemplateData.RamDiskId
}
if resp.LaunchTemplateVersion.LaunchTemplateData.SecurityGroupIds != nil {
f0f3f23 := []*string{}
for _, f0f3f23iter := range resp.LaunchTemplateVersion.LaunchTemplateData.SecurityGroupIds {
var f0f3f23elem string
f0f3f23elem = *f0f3f23iter
f0f3f23 = append(f0f3f23, &f0f3f23elem)
}
f0f3.SecurityGroupIDs = f0f3f23
}
if resp.LaunchTemplateVersion.LaunchTemplateData.SecurityGroups != nil {
f0f3f24 := []*string{}
for _, f0f3f24iter := range resp.LaunchTemplateVersion.LaunchTemplateData.SecurityGroups {
var f0f3f24elem string
f0f3f24elem = *f0f3f24iter
f0f3f24 = append(f0f3f24, &f0f3f24elem)
}
f0f3.SecurityGroups = f0f3f24
}
if resp.LaunchTemplateVersion.LaunchTemplateData.TagSpecifications != nil {
f0f3f25 := []*svcapitypes.LaunchTemplateTagSpecification{}
for _, f0f3f25iter := range resp.LaunchTemplateVersion.LaunchTemplateData.TagSpecifications {
f0f3f25elem := &svcapitypes.LaunchTemplateTagSpecification{}
if f0f3f25iter.ResourceType != nil {
f0f3f25elem.ResourceType = f0f3f25iter.ResourceType
}
if f0f3f25iter.Tags != nil {
f0f3f25elemf1 := []*svcapitypes.Tag{}
for _, f0f3f25elemf1iter := range f0f3f25iter.Tags {
f0f3f25elemf1elem := &svcapitypes.Tag{}
if f0f3f25elemf1iter.Key != nil {
f0f3f25elemf1elem.Key = f0f3f25elemf1iter.Key
}
if f0f3f25elemf1iter.Value != nil {
f0f3f25elemf1elem.Value = f0f3f25elemf1iter.Value
}
f0f3f25elemf1 = append(f0f3f25elemf1, f0f3f25elemf1elem)
}
f0f3f25elem.Tags = f0f3f25elemf1
}
f0f3f25 = append(f0f3f25, f0f3f25elem)
}
f0f3.TagSpecifications = f0f3f25
}
if resp.LaunchTemplateVersion.LaunchTemplateData.UserData != nil {
f0f3.UserData = resp.LaunchTemplateVersion.LaunchTemplateData.UserData
}
f0.LaunchTemplateData = f0f3
}
if resp.LaunchTemplateVersion.LaunchTemplateId != nil {
f0.LaunchTemplateID = resp.LaunchTemplateVersion.LaunchTemplateId
}
if resp.LaunchTemplateVersion.LaunchTemplateName != nil {
f0.LaunchTemplateName = resp.LaunchTemplateVersion.LaunchTemplateName
}
if resp.LaunchTemplateVersion.VersionDescription != nil {
f0.VersionDescription = resp.LaunchTemplateVersion.VersionDescription
}
if resp.LaunchTemplateVersion.VersionNumber != nil {
f0.VersionNumber = resp.LaunchTemplateVersion.VersionNumber
}
cr.Status.AtProvider.LaunchTemplateVersion = f0
} else {
cr.Status.AtProvider.LaunchTemplateVersion = nil
}
if resp.Warning != nil {
f1 := &svcapitypes.ValidationWarning{}
if resp.Warning.Errors != nil {
f1f0 := []*svcapitypes.ValidationError{}
for _, f1f0iter := range resp.Warning.Errors {
f1f0elem := &svcapitypes.ValidationError{}
if f1f0iter.Code != nil {
f1f0elem.Code = f1f0iter.Code
}
if f1f0iter.Message != nil {
f1f0elem.Message = f1f0iter.Message
}
f1f0 = append(f1f0, f1f0elem)
}
f1.Errors = f1f0
}
cr.Status.AtProvider.Warning = f1
} else {
cr.Status.AtProvider.Warning = nil
}
return e.postCreate(ctx, cr, resp, managed.ExternalCreation{}, err)
}
func (e *external) Update(ctx context.Context, mg cpresource.Managed) (managed.ExternalUpdate, error) {
return e.update(ctx, mg)
}
func (e *external) Delete(ctx context.Context, mg cpresource.Managed) error {
cr, ok := mg.(*svcapitypes.LaunchTemplateVersion)
if !ok {
return errors.New(errUnexpectedObject)
}
cr.Status.SetConditions(xpv1.Deleting())
return e.delete(ctx, mg)
}
type option func(*external)
func newExternal(kube client.Client, client svcsdkapi.EC2API, opts []option) *external {
e := &external{
kube: kube,
client: client,
preObserve: nopPreObserve,
postObserve: nopPostObserve,
lateInitialize: nopLateInitialize,
isUpToDate: alwaysUpToDate,
filterList: nopFilterList,
preCreate: nopPreCreate,
postCreate: nopPostCreate,
delete: nopDelete,
update: nopUpdate,
}
for _, f := range opts {
f(e)
}
return e
}
type external struct {
kube client.Client
client svcsdkapi.EC2API
preObserve func(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsInput) error
postObserve func(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsOutput, managed.ExternalObservation, error) (managed.ExternalObservation, error)
filterList func(*svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsOutput) *svcsdk.DescribeLaunchTemplateVersionsOutput
lateInitialize func(*svcapitypes.LaunchTemplateVersionParameters, *svcsdk.DescribeLaunchTemplateVersionsOutput) error
isUpToDate func(*svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsOutput) (bool, error)
preCreate func(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.CreateLaunchTemplateVersionInput) error
postCreate func(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.CreateLaunchTemplateVersionOutput, managed.ExternalCreation, error) (managed.ExternalCreation, error)
delete func(context.Context, cpresource.Managed) error
update func(context.Context, cpresource.Managed) (managed.ExternalUpdate, error)
}
func nopPreObserve(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsInput) error {
return nil
}
func nopPostObserve(_ context.Context, _ *svcapitypes.LaunchTemplateVersion, _ *svcsdk.DescribeLaunchTemplateVersionsOutput, obs managed.ExternalObservation, err error) (managed.ExternalObservation, error) {
return obs, err
}
func nopFilterList(_ *svcapitypes.LaunchTemplateVersion, list *svcsdk.DescribeLaunchTemplateVersionsOutput) *svcsdk.DescribeLaunchTemplateVersionsOutput {
return list
}
func nopLateInitialize(*svcapitypes.LaunchTemplateVersionParameters, *svcsdk.DescribeLaunchTemplateVersionsOutput) error {
return nil
}
func alwaysUpToDate(*svcapitypes.LaunchTemplateVersion, *svcsdk.DescribeLaunchTemplateVersionsOutput) (bool, error) {
return true, nil
}
func nopPreCreate(context.Context, *svcapitypes.LaunchTemplateVersion, *svcsdk.CreateLaunchTemplateVersionInput) error {
return nil
}
func nopPostCreate(_ context.Context, _ *svcapitypes.LaunchTemplateVersion, _ *svcsdk.CreateLaunchTemplateVersionOutput, cre managed.ExternalCreation, err error) (managed.ExternalCreation, error) {
return cre, err
}
func nopDelete(context.Context, cpresource.Managed) error {
return nil
}
func nopUpdate(context.Context, cpresource.Managed) (managed.ExternalUpdate, error) {
return managed.ExternalUpdate{}, nil
}
| 45.692432 | 207 | 0.768493 |
969172599e514cd64d6adb5d2cf37c2553132250 | 3,263 | dart | Dart | lib/services/network_handler.dart | ashmishra1/Recyclo | 10678dc99aeeb1f8826f97d7332832178b34b1f2 | [
"Apache-2.0"
] | null | null | null | lib/services/network_handler.dart | ashmishra1/Recyclo | 10678dc99aeeb1f8826f97d7332832178b34b1f2 | [
"Apache-2.0"
] | null | null | null | lib/services/network_handler.dart | ashmishra1/Recyclo | 10678dc99aeeb1f8826f97d7332832178b34b1f2 | [
"Apache-2.0"
] | null | null | null | import 'dart:convert';
import 'package:camera/camera.dart';
import 'package:logger/logger.dart';
import 'package:http/http.dart' as http;
import 'package:recyclo/models/post.dart';
class NetworkHandler {
String baseUrl = "https://recyclo.herokuapp.com/api";
var log = Logger();
Future<bool> checkUrl(String url) async {
final response = await http.get(Uri.parse(url));
if (response.statusCode == 200) {
return true;
}
return false;
}
Future<List<PostModel>> getPosts(String url) async {
url = formater(url);
var response = await http.get(Uri.parse(url));
if (response.statusCode == 200) {
log.i(response.body);
log.i(response.statusCode);
print(jsonDecode(response.body));
Map map = jsonDecode(response.body);
List posts = map["listOfPosts"];
List<PostModel> allPosts =
posts.map((json) => PostModel.fromJson(json)).toList();
return allPosts;
} else {
throw Exception('Failed to load posts');
}
}
Future<List<PostModel>> explorePost(
String url, Map<String, String> body) async {
url = formater(url);
var response = await http.post(Uri.parse(url), body: body);
if (response.statusCode == 200 || response.statusCode == 201) {
log.i(response.body);
List posts = jsonDecode(response.body);
List<PostModel> allPosts =
posts.map((json) => PostModel.fromJson(json)).toList();
print(posts);
return allPosts;
} else {
throw Exception('Failed to load posts');
}
}
Future<List> searchPost(String url, Map<String, String> body) async {
url = formater(url);
var response = await http.post(Uri.parse(url), body: body);
if (response.statusCode == 200 || response.statusCode == 201) {
log.i(response.body);
List posts = jsonDecode(response.body);
List<PostModel> allPosts =
posts.map((json) => PostModel.fromJson(json)).toList();
print(posts);
return posts;
} else {
throw Exception('Failed to load posts');
}
}
Future<http.StreamedResponse> patchImage(String url, String filepath) async {
url = formater(url);
//String token = await storage.read(key:"token");
var request = http.MultipartRequest('POST', Uri.parse((url)));
request.files.add(await http.MultipartFile.fromPath("photo", filepath));
// request.headers.addAll({
// "Content-type": "multipart/form-data",
// "Authorization": "Bearer $token"
// });
var response = await request.send();
return response;
}
String formater(String url) {
return baseUrl + url;
}
Future<int> newPost(String url, String filepath, String caption, String tags,
String procedure, String price, String items) async {
url = formater(url);
var request = http.MultipartRequest('POST', Uri.parse(url));
request.files.add(await http.MultipartFile.fromPath("photo", filepath));
request.fields.addAll({
"caption": caption,
"tags": tags,
"procedure": procedure,
"price": price,
"items": items,
});
print("request: " + request.toString());
var res = await request.send();
print("This is response:" + res.toString());
return res.statusCode;
}
}
| 29.133929 | 79 | 0.635305 |
e35ebebcf0e113de1ffcfbb0be012b73911374a4 | 2,019 | kt | Kotlin | app/src/main/java/com/revolgenx/anilib/ui/presenter/TagPresenter.kt | rev0lgenX/AniLib | 9d38d80ef45c8f905669bf70884a8f729933bd91 | [
"Apache-2.0"
] | 35 | 2020-10-18T18:39:03.000Z | 2022-03-24T17:22:50.000Z | app/src/main/java/com/revolgenx/anilib/ui/presenter/TagPresenter.kt | rev0lgenX/AniLib | 9d38d80ef45c8f905669bf70884a8f729933bd91 | [
"Apache-2.0"
] | 8 | 2021-01-08T08:38:00.000Z | 2022-03-25T16:45:05.000Z | app/src/main/java/com/revolgenx/anilib/ui/presenter/TagPresenter.kt | rev0lgenX/AniLib | 9d38d80ef45c8f905669bf70884a8f729933bd91 | [
"Apache-2.0"
] | 2 | 2021-08-21T19:59:45.000Z | 2022-02-17T18:19:01.000Z | package com.revolgenx.anilib.ui.presenter
import android.content.Context
import android.view.LayoutInflater
import android.view.ViewGroup
import androidx.core.content.ContextCompat
import com.otaliastudios.elements.Element
import com.otaliastudios.elements.Page
import com.pranavpandey.android.dynamic.support.theme.DynamicTheme
import com.revolgenx.anilib.R
import com.revolgenx.anilib.data.field.TagField
import com.revolgenx.anilib.data.field.TagState
import com.revolgenx.anilib.databinding.TagPresenterLayoutBinding
class TagPresenter(context: Context) : BasePresenter<TagPresenterLayoutBinding, TagField>(context) {
override val elementTypes: Collection<Int>
get() = listOf(0)
private var tagRemovedListener: ((elements: String) -> Unit)? = null
private val normalTextColor = DynamicTheme.getInstance().get().tintSurfaceColor
private val redTextColor = ContextCompat.getColor(context, R.color.red)
override fun bindView(
inflater: LayoutInflater,
parent: ViewGroup?,
elementType: Int
): TagPresenterLayoutBinding {
return TagPresenterLayoutBinding.inflate(inflater, parent, false)
}
override fun onBind(page: Page, holder: Holder, element: Element<TagField>) {
super.onBind(page, holder, element)
val data = element.data ?: return
holder.getBinding()?.apply {
val textColor = when(data.tagState){
TagState.UNTAGGED ->{
redTextColor
}
else -> {
normalTextColor
}
}
tagName.setTextColor(textColor)
tagName.text = data.tag
root.setOnClickListener {
page.removeElement(element)
tagRemovedListener?.invoke(data.tag)
}
}
}
fun tagRemoved(listener: (element: String) -> Unit) {
tagRemovedListener = listener
}
fun removeListener(){
tagRemovedListener = null
}
} | 32.047619 | 100 | 0.666667 |
8193002259c38b333eb3d1b755d03a2ff9a085d5 | 580 | go | Go | pcapng/examples/dump/main.go | bearmini/pcapng-go | f495b2753bf8db55d837a9d8b34a45bcc7e7c493 | [
"MIT"
] | 1 | 2018-04-05T12:33:31.000Z | 2018-04-05T12:33:31.000Z | pcapng/examples/dump/main.go | bearmini/pcapng-go | f495b2753bf8db55d837a9d8b34a45bcc7e7c493 | [
"MIT"
] | 2 | 2018-03-08T03:56:59.000Z | 2018-07-04T08:34:10.000Z | pcapng/examples/dump/main.go | bearmini/pcapng-go | f495b2753bf8db55d837a9d8b34a45bcc7e7c493 | [
"MIT"
] | null | null | null | package main
import (
"errors"
"fmt"
"os"
"github.com/bearmini/pcapng-go/pcapng"
)
func main() {
err := run()
if err != nil {
fmt.Fprintf(os.Stderr, "ERROR: %+v\n", err)
os.Exit(1)
}
}
func run() error {
if len(os.Args) < 2 {
return errors.New("no input file name is specified")
}
fname := os.Args[1]
f, err := os.Open(fname)
if err != nil {
return err
}
defer f.Close()
r := pcapng.NewReader(f)
for {
b, err := r.ReadNextBlock()
if err != nil {
return err
}
if b == nil {
break
}
fmt.Printf("%s\n", b.String())
}
return nil
}
| 12.340426 | 54 | 0.567241 |
4fa5a3e42e6517e844b58c21ac23e415f86fdd60 | 1,443 | asm | Assembly | _maps/obj26.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | null | null | null | _maps/obj26.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | 2 | 2019-06-13T14:26:59.000Z | 2019-10-10T13:15:14.000Z | _maps/obj26.asm | vladjester2020/Sonic1TMR | 22e749a2aab74cc725729e476d6252b071c12e42 | [
"Apache-2.0"
] | null | null | null | ; --------------------------------------------------------------------------------
; Sprite mappings - output from SonMapEd - Sonic 1 format
; --------------------------------------------------------------------------------
SME_hGqPU:
dc.w SME_hGqPU_18-SME_hGqPU, SME_hGqPU_1E-SME_hGqPU
dc.w SME_hGqPU_29-SME_hGqPU, SME_hGqPU_34-SME_hGqPU
dc.w SME_hGqPU_3F-SME_hGqPU, SME_hGqPU_4A-SME_hGqPU
dc.w SME_hGqPU_55-SME_hGqPU, SME_hGqPU_60-SME_hGqPU
dc.w SME_hGqPU_6B-SME_hGqPU, SME_hGqPU_76-SME_hGqPU
dc.w SME_hGqPU_81-SME_hGqPU, SME_hGqPU_8C-SME_hGqPU
SME_hGqPU_18: dc.b 1
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_1E: dc.b 2
dc.b $F5, 5, 0, $10, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_29: dc.b 2
dc.b $F5, 5, 0, $14, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_34: dc.b 2
dc.b $F5, 5, 0, $18, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_3F: dc.b 2
dc.b $F5, 5, 0, $1C, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_4A: dc.b 2
dc.b $F5, 5, 0, $24, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_55: dc.b 2
dc.b $F5, 5, 0, $28, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_60: dc.b 2
dc.b $F5, 5, 0, $2C, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_6B: dc.b 2
dc.b $F5, 5, 0, $30, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_76: dc.b 2
dc.b $F5, 5, 0, $34, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_81: dc.b 2
dc.b $F5, 5, 0, $20, $F8
dc.b $EF, $F, 0, 0, $F0
SME_hGqPU_8C: dc.b 1
dc.b $FF, $D, 0, $38, $F0
even | 31.369565 | 82 | 0.519751 |
0c775506d8225eb85fc7190f4a2cf9049c82ec26 | 4,676 | html | HTML | www/chapter_10/templates/maintenance.html | PacktPublishing/-Learn-MongoDB-4.0 | 011f14fc66c42498dcbf07e64e760b5e9f420243 | [
"MIT"
] | 13 | 2020-08-06T17:05:50.000Z | 2021-11-08T13:12:11.000Z | www/chapter_10/templates/maintenance.html | PacktPublishing/-Learn-MongoDB-4.0 | 011f14fc66c42498dcbf07e64e760b5e9f420243 | [
"MIT"
] | 4 | 2020-09-20T05:30:39.000Z | 2021-04-01T08:35:40.000Z | www/chapter_10/templates/maintenance.html | PacktPublishing/-Learn-MongoDB-4.0 | 011f14fc66c42498dcbf07e64e760b5e9f420243 | [
"MIT"
] | 12 | 2020-08-07T06:45:43.000Z | 2021-12-08T06:58:23.000Z | {% load static %}
<style>
.td-left {
text-align: left;
}
.td-right {
text-align: right;
}
.th-right {
text-align: right;
padding: 10px;
}
</style>
<h2>Loan Maintenance</h2>
<hr>
<table>
<tr>
<!-- get borrower and accept payment -->
<td width="50%">
<h3>Loan Payment</h3>
<form action="/maintenance/payments/" method="post" enctype="multipart/form-data">
<table>
<tr>
<th class="th-right"> </th>
<td class="td-left">
<select name="borrowerKey">
{% if borrowerKey and borrowerName %}
<option value="{{ borrowerKey }}">{{ borrowerName }}</option>
{% endif %}
{% for user in borrowers %}
<option value="{{ user.key }}">{{ user.name }}</option>
{% endfor %}
</select>
</td>
</tr>
<tr>
<th class="th-right">Borrower</th>
<td class="td-left">{{ borrowerName }}</td>
</tr>
<tr>
<th class="th-right">Overpayment</th>
<td class="td-left">{{ overpayment|floatformat:2 }}</td>
</tr>
<tr>
<th class="th-right">Payment Amount</th>
<td class="td-left">{{ amountDue|floatformat:2 }}</td>
</tr>
<tr>
<th class="th-right">Amount Paid</th>
<td class="td-left"><input type="text" size="10" name="amount_paid" value="0.00" /></td>
</tr>
<tr>
<th class="th-right">Total Amount Due</th>
<td class="td-left">{{ totalDue|floatformat:2 }}</td>
</tr>
<tr>
<th class="th-right">Total Amount Paid</th>
<td class="td-left">{{ totalPaid|floatformat:2 }}</td>
</tr>
{% if not borrowerKey %}
<tr>
<th class="th-right"> </th>
<td class="td-left"><input type="submit" name="payment" value="Select" /></td>
</tr>
<tr>
<td colspan=2>Select the borrower</td>
</tr>
{% else %}
<tr>
<th class="th-right">Loan Documents Stored</th>
<td class="td-left">
{% for name in loan_docs %}
<br>{{ name }}
{% endfor %}
</td>
</tr>
<tr>
<th class="th-right">Upload Loan Document</th>
<td class="td-left"><input type="file" name="loan_doc" /></td>
</tr>
<tr>
<td colspan=2>Enter payment amount</td>
</tr>
<tr>
<th class="th-right"> </th>
<td class="td-left">
<input type="submit" name="payment" value="Process" />
<input type="hidden" name="borrowerKey" value="{{ borrowerKey }}" />
</td>
</tr>
{% endif %}
</table>
</form>
<br>{{ message }}
<hr>
<a href="/maintenance/totals/">Totals</a>
</td>
<!-- payment schedule -->
<td width="50%">
<h3>Payment Schedule</h3>
{% if payments %}
<table>
<tr>
<th style="text-align:right;padding-right:10px;">Paid</th><th>Due</th><th>Status</th>
<th style="text-align:right;padding-right:10px;">Paid</th><th>Due</th><th>Status</th>
</tr>
{% for doc in payments %}
{% if forloop.counter0|divisibleby:2 %}
<tr><td style="text-align:right;padding-right:10px;">{{ doc.amountPaid|floatformat:2 }}</td><td>{{ doc.dueDate }}</td><td>{{ doc.status }}</td>
{% else %}
<td style="text-align:right;padding-right:10px;">{{ doc.amountPaid|floatformat:2 }}</td><td>{{ doc.dueDate }}</td><td>{{ doc.status }}</td></tr>
{% endif %}
{% endfor %}
</table>
{% endif %}
</td>
</tr>
</table>
| 39.294118 | 168 | 0.386014 |
874e276366a72febf7dbec7d4242079b7522190d | 675 | html | HTML | Study/practice/RWD/icon-font.html | khsi12345/TIL | b638581527ef52dadbe97b7eb6ece503f127b76c | [
"MIT"
] | null | null | null | Study/practice/RWD/icon-font.html | khsi12345/TIL | b638581527ef52dadbe97b7eb6ece503f127b76c | [
"MIT"
] | null | null | null | Study/practice/RWD/icon-font.html | khsi12345/TIL | b638581527ef52dadbe97b7eb6ece503f127b76c | [
"MIT"
] | null | null | null | <!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>아이콘 폰트 적용하기</title>
<link rel="stylesheet" href="css/icon-font.css">
</head>
<body>
<h1 class="fontello">
Fontello 서비스 활용
</h1>
<ul class="fontello-list">
<li><i class="icon-heart"></i>아이콘 폰트 1</li>
<li><i class="icon-music"></i>아이콘 폰트 2</li>
<li><i class="icon-star"></i>아이콘 폰트 3</li>
<li><i class="icon-glass"></i>아이콘 폰트 4</li>
<li><i class="icon-camera"></i>아이콘 폰트 5</li>
</ul>
</body>
</html> | 30.681818 | 74 | 0.567407 |
681c3ce717f76965cfd9aa386d669c7056d2a767 | 546 | html | HTML | angular-src/src/app/view-list/view-list.component.html | Alweezy/bucketlist-node | b0da5056036b74aebf39b1b81a9636684fa1f6e7 | [
"MIT"
] | null | null | null | angular-src/src/app/view-list/view-list.component.html | Alweezy/bucketlist-node | b0da5056036b74aebf39b1b81a9636684fa1f6e7 | [
"MIT"
] | null | null | null | angular-src/src/app/view-list/view-list.component.html | Alweezy/bucketlist-node | b0da5056036b74aebf39b1b81a9636684fa1f6e7 | [
"MIT"
] | null | null | null | <h2> Awesome Bucketlist </h2>
<table id="table">
<thead>
<tr>
<th> Priority Level </th>
<th> Title </th>
<th> Description </th>
<th> Delete </th>
</tr>
</thead>
<tbody>
<tr ngForm="let list of lists">
<td>{{list.category }}</td>
<td>{{list.title }}</td>
<td>{{list.description }}</td>
<td> <button type="button" (click)="deleteList(); $event .stopPropagation();">Delete</button></td>
</tr>
</tbody>
</table>
<app-add-list (addList)="onAddList($event)"> </app-add-list>
| 21 | 104 | 0.53663 |
5fd2fc75765585d84cbf349757a6b38b8353dc3a | 277 | h | C | Moodie/Moodie-Bridging-Header.h | rahulrrixe/Facemoji | 009b2efead5c6deb452a4e8bbd67a342f28c1d67 | [
"MIT"
] | null | null | null | Moodie/Moodie-Bridging-Header.h | rahulrrixe/Facemoji | 009b2efead5c6deb452a4e8bbd67a342f28c1d67 | [
"MIT"
] | null | null | null | Moodie/Moodie-Bridging-Header.h | rahulrrixe/Facemoji | 009b2efead5c6deb452a4e8bbd67a342f28c1d67 | [
"MIT"
] | null | null | null | //
// Moodie-Bridging-Header.h
// Moodie
//
// Created by Rahul Ranjan on 2/6/17.
// Copyright © 2017 Rahul Ranjan. All rights reserved.
//
#ifndef Moodie_Bridging_Header_h
#define Moodie_Bridging_Header_h
#import <Affdex/Affdex.h>
#endif /* Moodie_Bridging_Header_h */
| 18.466667 | 55 | 0.729242 |
96d3bfb1c68ebe2f18f54cbd8f0c41293e2befa1 | 3,065 | inl | C++ | gui/include/gui_type_resource.inl | awarnke/crystal-facet-uml | 89da1452379c53aef473b4dc28501a6b068d66a9 | [
"Apache-2.0"
] | 1 | 2021-06-06T05:57:21.000Z | 2021-06-06T05:57:21.000Z | gui/include/gui_type_resource.inl | awarnke/crystal-facet-uml | 89da1452379c53aef473b4dc28501a6b068d66a9 | [
"Apache-2.0"
] | 1 | 2021-08-30T17:42:27.000Z | 2021-08-30T17:42:27.000Z | gui/include/gui_type_resource.inl | awarnke/crystal-facet-uml | 89da1452379c53aef473b4dc28501a6b068d66a9 | [
"Apache-2.0"
] | null | null | null | /* File: gui_type_resource.inl; Copyright and License: see below */
static inline void gui_type_resource_init_diagram ( gui_type_resource_t *this_,
data_diagram_type_t type,
const char * name,
const GdkPixbuf * icon )
{
(*this_).context = DATA_TABLE_DIAGRAM;
(*this_).type.diagram = type;
(*this_).name = name;
(*this_).icon = icon;
}
static inline void gui_type_resource_init_classifier ( gui_type_resource_t *this_,
data_classifier_type_t type,
const char * name,
const GdkPixbuf * icon )
{
(*this_).context = DATA_TABLE_CLASSIFIER;
(*this_).type.classifier = type;
(*this_).name = name;
(*this_).icon = icon;
}
static inline void gui_type_resource_init_feature ( gui_type_resource_t *this_,
data_feature_type_t type,
const char * name,
const GdkPixbuf * icon )
{
(*this_).context = DATA_TABLE_FEATURE;
(*this_).type.feature = type;
(*this_).name = name;
(*this_).icon = icon;
}
static inline void gui_type_resource_init_relationship ( gui_type_resource_t *this_,
data_relationship_type_t type,
const char * name,
const GdkPixbuf * icon )
{
(*this_).context = DATA_TABLE_RELATIONSHIP;
(*this_).type.relationship = type;
(*this_).name = name;
(*this_).icon = icon;
}
static inline void gui_type_resource_destroy ( gui_type_resource_t *this_ )
{
}
static inline data_table_t gui_type_resource_get_context ( const gui_type_resource_t *this_ )
{
return ( (*this_).context );
}
static inline union gui_type_resource_union gui_type_resource_get_type ( const gui_type_resource_t *this_ )
{
return ( (*this_).type );
}
static inline const char * gui_type_resource_get_name ( const gui_type_resource_t *this_ )
{
return ( (*this_).name );
}
static inline const GdkPixbuf * gui_type_resource_get_icon ( const gui_type_resource_t *this_ )
{
return ( (*this_).icon );
}
/*
Copyright 2020-2022 Andreas Warnke
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
| 35.229885 | 107 | 0.584339 |
f4eab7869e8d1aa599c23af519b7686d348f9bc3 | 10,052 | go | Go | lib/album.go | schnoddelbotz/albutim | 7ff4efa12f7339c8274b30309b0c2df27954ad4a | [
"MIT"
] | null | null | null | lib/album.go | schnoddelbotz/albutim | 7ff4efa12f7339c8274b30309b0c2df27954ad4a | [
"MIT"
] | null | null | null | lib/album.go | schnoddelbotz/albutim | 7ff4efa12f7339c8274b30309b0c2df27954ad4a | [
"MIT"
] | null | null | null | package lib
import (
"bytes"
"encoding/json"
"github.com/nfnt/resize"
"html/template"
"image"
"image/jpeg"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"sync"
)
type Album struct {
BackgroundImage string `json:"backgroundImage"`
Title string `json:"title"`
SubTitle string `json:"subTitle"`
CreatedAt string `json:"createdAt"`
RootPath string `json:"-"`
Data *Node `json:"data"`
ServeStatically bool `json:"serveStatically"`
AlbutimVersion string `json:"albutimVersion"`
NoScaledThumbs bool `json:"-"`
NoScaledPreviews bool `json:"-"`
NoCacheScaled bool `json:"-"`
NumThreads int `json:"-"`
}
type ExifData struct {
DateTime string `json:"dateTime,omitempty"`
Height int `json:"height,omitempty"`
Width int `json:"width,omitempty"`
ExposureBiasValue int `json:"exposureBiasValue,omitempty"`
ExposureMode string `json:"exposureMode,omitempty"`
ExposureTime string `json:"exposureTime,omitempty"`
FNum string `json:"fNum,omitempty"`
FNumber string `json:"fNumber,omitempty"`
FileSize int `json:"fileSize,omitempty"`
Flash string `json:"flash,omitempty"`
FocalLength string `json:"focalLength,omitempty"`
FocalLengthIn35mmFilm int `json:"focalLengthIn35mmFilm,omitempty"`
ISOSpeedRatings int `json:"iSOSpeedRatings,omitempty"`
Model string `json:"model,omitempty"`
WhiteBalance string `json:"whiteBalance,omitempty"`
}
type Node struct {
Parent *Node `json:"-"`
Children []*Node `json:"children"`
Album *Album `json:"-"`
FullPath string `json:"-"`
WebPath string `json:"path"`
Name string `json:"name"`
Size int64 `json:"size"`
IsDir bool `json:"is_dir"`
IsImage bool `json:"is_image"`
ExifData ExifData `json:"exifdata,omitempty"`
}
func BuildAlbum(a Album) {
log.Printf("Building Album '%s'", a.Title)
if !a.NoScaledPreviews || !a.NoScaledThumbs {
a.buildThumbsAndPreviews()
}
indexHTML := renderIndexTemplate(a)
indexFile := a.RootPath + string(filepath.Separator) + "index.html"
log.Printf("Rendering index.html into %s", indexFile)
err := ioutil.WriteFile(indexFile, indexHTML, 0644)
if err != nil {
log.Printf("write %s ERROR: %s", indexFile, err)
}
albumFile := a.RootPath + string(filepath.Separator) + "albumdata.js"
writeAlbumDataJS(a, err, albumFile)
// add zipped version?
assetsPath := filepath.FromSlash(a.RootPath + "/assets")
log.Printf("Copying assets into %s", assetsPath)
a.copyAssets(assetsPath)
log.Printf("Nice! All done. Now open %s", indexFile)
}
func writeAlbumDataJS(a Album, err error, outFile string) error {
albumData, _ := json.Marshal(a)
log.Printf("Rendering albumdata.js into %s", outFile)
f, err := os.Create(outFile)
if err != nil {
log.Printf("write %s ERROR: %s", outFile, err)
return err
}
// FIXME handleErr
f.Write([]byte("albumData = "))
f.Write(albumData)
f.Write([]byte(";\n"))
f.Close()
return nil
}
func ScanDir(root string, a *Album) (result *Node, err error) {
log.Printf("Reading images in %s ...", root)
var mutex = &sync.Mutex{}
var wg sync.WaitGroup
sem := make(chan struct{}, 128) // max 128 open files for exif reading
parents := make(map[string]*Node)
walkFunc := func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
if strings.HasPrefix(info.Name(), ".") {
// skip dotfiles. log?
return nil
}
if strings.HasPrefix(path, filepath.FromSlash(a.getPathOfThumbnails())) ||
strings.HasPrefix(path, filepath.FromSlash(a.RootPath+"/assets")) ||
strings.HasPrefix(path, filepath.FromSlash(a.getPathOfPreviews())) {
// skip folder created by us
return nil
}
mutex.Lock()
parents[path] = &Node{
FullPath: strings.TrimPrefix(path, root),
WebPath: filepath.ToSlash(strings.TrimPrefix(path, root)),
Name: info.Name(),
IsDir: info.IsDir(),
Size: info.Size(),
Album: a,
Children: make([]*Node, 0),
}
mutex.Unlock()
if !info.IsDir() && isImage(path) {
wg.Add(1)
go func() {
sem <- struct{}{}
defer func() { <-sem }()
defer wg.Done()
ed, err := getExif(path)
mutex.Lock()
if err == nil {
parents[path].ExifData = ed
}
parents[path].IsImage = true
mutex.Unlock()
}()
}
return nil
}
if err = filepath.Walk(root, walkFunc); err != nil {
return
}
wg.Wait()
close(sem)
for path, node := range parents {
parentPath := filepath.Dir(path)
parent, exists := parents[parentPath]
if !exists {
result = node
} else {
node.Parent = parent
parent.Children = append(parent.Children, node)
}
}
log.Print("Reading images: completed")
result.WebPath = "/"
return
}
func (n *Node) getAllImages() []Node {
var toVisit []*Node
var images []Node
toVisit = append(toVisit, n)
for len(toVisit) > 0 {
c := toVisit[0]
if c.IsImage {
images = append(images, *c)
} else {
toVisit = append(toVisit, c.Children...)
}
toVisit = toVisit[1:]
}
return images
}
func (a *Album) getPathOriginals() string {
return a.RootPath
}
func (a *Album) getPathOfThumbnails() string {
return a.RootPath + "/thumbs"
}
func (a *Album) getPathOfPreviews() string {
return a.RootPath + "/preview"
}
func (n *Node) getPathOfOriginal() string {
return n.Album.RootPath + n.FullPath
}
func (n *Node) getPathOfThumbnail() string {
return n.Album.RootPath + "/thumbs" + n.FullPath
}
func (n *Node) getPathOfPreview() string {
return n.Album.RootPath + "/preview" + n.FullPath
}
func (a *Album) buildThumbsAndPreviews() {
log.Printf("Building previews and thumbnails using %d threads ...", a.NumThreads)
// FIXME limits max amounts of images...
// removing 8192 will ...
// https://stackoverflow.com/questions/26927479/go-language-fatal-error-all-goroutines-are-asleep-deadlock
jobs := make(chan Node, 8192)
results := make(chan int, 8192)
for w := 0; w <= a.NumThreads-1; w++ {
go a.imageScalingWorker(w, jobs, results)
}
imageNodes := a.Data.getAllImages()
for _, path := range imageNodes {
jobs <- path
}
close(jobs)
for range imageNodes {
<-results
}
log.Print("Building previews and thumbnails: done.")
}
func (a *Album) imageScalingWorker(id int, jobs <-chan Node, results chan<- int) {
for imageNode := range jobs {
originalPath := imageNode.getPathOfOriginal()
previewPath := imageNode.getPathOfPreview()
thumbPath := imageNode.getPathOfThumbnail()
buildThumb := false
buildPreview := false
var todo []string
if _, err := os.Stat(thumbPath); os.IsNotExist(err) && !a.NoScaledThumbs {
todo = append(todo, "thumb")
buildThumb = true
}
if _, err := os.Stat(previewPath); os.IsNotExist(err) && !a.NoScaledPreviews {
todo = append(todo, "preview")
buildPreview = true
}
if len(todo) == 0 {
results <- 1
continue
}
if len(todo) > 0 {
bufP := &bytes.Buffer{}
bufT := &bytes.Buffer{}
file, err := os.Open(originalPath)
var originalImage image.Image
var previewImage image.Image
if err == nil {
originalImage, err = jpeg.Decode(file)
if err == nil {
err = file.Close()
if err != nil {
log.Printf("Decoding %s failed: %s", originalPath, err)
results <- 1
continue
}
if buildPreview {
previewImage = a.buildView(imageNode, 700, originalImage, nil, bufP, imageNode.getPathOfPreview())
}
if buildThumb {
a.buildView(imageNode, 105, originalImage, previewImage, bufT, imageNode.getPathOfThumbnail())
}
}
}
log.Printf("[thread-%d] %s created for %s", id, strings.Join(todo, "+"), originalPath)
}
results <- 1
}
}
func (a *Album) buildView(albumImage Node, height uint, original image.Image, preview image.Image, output *bytes.Buffer, outoutPath string) image.Image {
var m image.Image
//log.Printf("buildView h %d %s", height, outoutPath)
if preview == nil {
m = resize.Resize(0, height, original, resize.Bicubic)
} else {
m = resize.Resize(0, height, preview, resize.Bicubic)
}
err := jpeg.Encode(output, m, nil /* FIXME add quality config option */)
if err != nil {
log.Printf("Resizing %s error: %s", albumImage.getPathOfOriginal(), err)
} else {
err = a.addCache(outoutPath, output.Bytes())
if err != nil {
log.Printf("addCache %s error: %s", outoutPath, err)
}
}
// FIXME return err here!
return m
}
func (a *Album) addCache(file string, data []byte) (err error) {
if a.NoCacheScaled {
return nil
}
if _, err := os.Stat(file); os.IsNotExist(err) {
//log.Printf("Add to cache: %s", file)
err = os.MkdirAll(filepath.Dir(file), os.ModePerm)
if err != nil {
log.Printf("mkdir %s error: %s", filepath.Dir(file), err)
return err
}
err = ioutil.WriteFile(file, data, 0644)
if err != nil {
log.Printf("write %s error: %s", file, err)
}
}
return
}
func (a *Album) copyAssets(targetDir string) {
assets := []string{"albutim.css", "albutim.js", "folder-up.svg", "jquery-2.2.2.min.js"}
for _, asset := range assets {
log.Printf(" copying %s -> %s", asset, targetDir)
fileData := _escFSMustByte(false, "/"+asset)
filename := targetDir + string(filepath.Separator) + asset
if _, err := os.Stat(filename); os.IsNotExist(err) {
err = os.MkdirAll(filepath.Dir(filename), os.ModePerm)
if err != nil {
log.Printf("mkdir %s error: %s", filepath.Dir(filename), err)
return
}
err = ioutil.WriteFile(filename, fileData, 0644)
if err != nil {
log.Printf("write %s error: %s", filename, err)
}
}
}
}
func renderIndexTemplate(data Album) []byte {
buf := &bytes.Buffer{}
templateBinary := _escFSMustByte(false, "/index.html")
tpl, err := template.New("index").Parse(string(templateBinary))
if err != nil {
log.Fatalf("Template parsing error: %v\n", err)
}
err = tpl.Execute(buf, data)
if err != nil {
log.Printf("Template execution error: %v\n", err)
}
return buf.Bytes()
}
| 27.844875 | 153 | 0.647433 |
96749e42c3bd5b572d7b50d3b632576573d5b2b4 | 272 | swift | Swift | EssentialApp/EssentialAppTests/Helpers/UIButton+TestHelpers.swift | chihyinwang/EssentialFeedStudy | e3b13596bce9faa6fde1b4e86f1726255aeab4ec | [
"MIT"
] | 2 | 2020-11-26T09:54:20.000Z | 2021-01-24T04:41:11.000Z | EssentialApp/EssentialAppTests/Helpers/UIButton+TestHelpers.swift | chihyinwang/EssentialFeedCaseStudy | e3b13596bce9faa6fde1b4e86f1726255aeab4ec | [
"MIT"
] | 1 | 2020-08-16T09:43:20.000Z | 2020-08-16T09:43:20.000Z | EssentialApp/EssentialAppTests/Helpers/UIButton+TestHelpers.swift | chihyinwang/EssentialFeedCaseStudy | e3b13596bce9faa6fde1b4e86f1726255aeab4ec | [
"MIT"
] | null | null | null | //
// UIButton+TestHelpers.swift
// EssentialFeediOSTests
//
// Created by chihyin wang on 2020/8/23.
// Copyright © 2020 chihyinwang. All rights reserved.
//
import UIKit
extension UIButton {
func simulateTap() {
simulate(event: .touchUpInside)
}
}
| 17 | 54 | 0.676471 |
8b7c27687c01d4dc0327b082e5ab4e6e3405e1e5 | 324 | sql | SQL | Exareme-Docker/src/mip-algorithms/KMEANS/init/2/local.template.sql | tchamabe1979/exareme | 462983e4feec7808e1fd447d02901502588a8879 | [
"MIT"
] | null | null | null | Exareme-Docker/src/mip-algorithms/KMEANS/init/2/local.template.sql | tchamabe1979/exareme | 462983e4feec7808e1fd447d02901502588a8879 | [
"MIT"
] | null | null | null | Exareme-Docker/src/mip-algorithms/KMEANS/init/2/local.template.sql | tchamabe1979/exareme | 462983e4feec7808e1fd447d02901502588a8879 | [
"MIT"
] | null | null | null | requirevars 'defaultDB' 'prv_output_global_tbl';
attach database '%{defaultDB}' as defaultDB;
--var 'prv_output_global_tbl' 'defaultDB.clustercenters_global'; --DELETE
drop table if exists defaultDB.clustercenters_local;
create table defaultDB.clustercenters_local as select * from %{prv_output_global_tbl};
select "ok";
| 32.4 | 86 | 0.808642 |
a1ca1a23a2655c65197b6a5baec133c50b433b0b | 6,075 | c | C | Projects/NUCLEO-L476RG/Applications/2_Images/2_Images_SBSFU/SBSFU/Target/sfu_low_level_flash.c | pintoXD/stm32wb55LoRaFuota | 7b84971f7ac063a04a38fa825a806b33b2213b76 | [
"Apache-2.0",
"BSD-3-Clause"
] | null | null | null | Projects/NUCLEO-L476RG/Applications/2_Images/2_Images_SBSFU/SBSFU/Target/sfu_low_level_flash.c | pintoXD/stm32wb55LoRaFuota | 7b84971f7ac063a04a38fa825a806b33b2213b76 | [
"Apache-2.0",
"BSD-3-Clause"
] | null | null | null | Projects/NUCLEO-L476RG/Applications/2_Images/2_Images_SBSFU/SBSFU/Target/sfu_low_level_flash.c | pintoXD/stm32wb55LoRaFuota | 7b84971f7ac063a04a38fa825a806b33b2213b76 | [
"Apache-2.0",
"BSD-3-Clause"
] | 1 | 2021-09-25T16:44:11.000Z | 2021-09-25T16:44:11.000Z | /**
******************************************************************************
* @file sfu_low_level_flash.c
* @author MCD Application Team
* @brief SFU Flash Low Level Interface module
* This file provides set of firmware functions to manage SFU flash
* low level interface.
******************************************************************************
* @attention
*
* <h2><center>© Copyright (c) 2017 STMicroelectronics.
* All rights reserved.</center></h2>
*
* This software component is licensed by ST under Ultimate Liberty license
* SLA0044, the "License"; You may not use this file except in compliance with
* the License. You may obtain a copy of the License at:
* www.st.com/SLA0044
*
******************************************************************************
*/
/* Includes ------------------------------------------------------------------*/
#include "sfu_low_level_flash_int.h"
#include "sfu_low_level_flash_ext.h"
#include "sfu_fwimg_regions.h"
/* Functions Definition ------------------------------------------------------*/
/**
* @brief Initialize internal and external flash interface (OSPI/QSPI)
* @param none
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Init(void)
{
SFU_ErrorStatus e_ret_status = SFU_SUCCESS;
e_ret_status = SFU_LL_FLASH_INT_Init();
if (e_ret_status == SFU_SUCCESS)
{
e_ret_status = SFU_LL_FLASH_EXT_Init();
}
return e_ret_status;
}
/**
* @brief Depending on start address, this function will call internal or external (OSPI/QSPI) flash driver
* @param pFlashStatus: SFU_FLASH Status pointer
* @param pStart: flash address to be erased
* @param Length: number of bytes
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Erase_Size(SFU_FLASH_StatusTypeDef *pFlashStatus, uint8_t *pStart, uint32_t Length)
{
/* Check Flash start address */
if ((uint32_t) pStart < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_Erase_Size(pFlashStatus, pStart, Length);
}
else
{
return SFU_LL_FLASH_EXT_Erase_Size(pFlashStatus, pStart, Length);
}
}
/**
* @brief Depending on destination address, this function will call internal or external (OSPI/QSPI) flash driver
* @param pFlashStatus: FLASH_StatusTypeDef
* @param pDestination: flash address to write
* @param pSource: pointer on buffer with data to write
* @param Length: number of bytes
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Write(SFU_FLASH_StatusTypeDef *pFlashStatus, uint8_t *pDestination,
const uint8_t *pSource, uint32_t Length)
{
/* Check Flash destination address */
if ((uint32_t) pDestination < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_Write(pFlashStatus, pDestination, pSource, Length);
}
else
{
return SFU_LL_FLASH_EXT_Write(pFlashStatus, pDestination, pSource, Length);
}
}
/**
* @brief Depending on source address, this function will call internal or external (OSPI/QSPI) flash driver
* @param pDestination: pointer on buffer to store data
* @param pSource: flash address to read
* @param Length: number of bytes
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Read(uint8_t *pDestination, const uint8_t *pSource, uint32_t Length)
{
/* Check Flash source address */
if ((uint32_t) pSource < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_Read(pDestination, pSource, Length);
}
else
{
return SFU_LL_FLASH_EXT_Read(pDestination, pSource, Length);
}
}
/**
* @brief This function compare a buffer with a flash area
* @note The flash area should not be located inside the secure area
* @param pFlash: address of the flash area
* @param Pattern1: first 32 bits pattern to be compared
* @param Pattern2: second 32 bits pattern to be compared
* @param Length: number of bytes to be compared
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Compare(const uint8_t *pFlash, const uint32_t Pattern1, const uint32_t Pattern2, uint32_t Length)
{
/* Check Flash source address */
if ((uint32_t) pFlash < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_Compare(pFlash, Pattern1, Pattern2, Length);
}
else
{
return SFU_LL_FLASH_EXT_Compare(pFlash, Pattern1, Pattern2, Length);
}
}
/**
* @brief This function configure the flash to be able to execute code
* @param Addr: flash address
* @retval SFU_ErrorStatus SFU_SUCCESS if successful, SFU_ERROR otherwise.
*/
SFU_ErrorStatus SFU_LL_FLASH_Config_Exe(uint32_t SlotNumber)
{
/*
* Internal flash : nothing to do
* External flash : configure memory mapped mode
*/
/* Check Flash address */
if (SlotStartAdd[SlotNumber] < EXTERNAL_FLASH_ADDRESS)
{
return SFU_SUCCESS;
}
else
{
return SFU_LL_FLASH_EXT_Config_Exe(SlotNumber);
}
}
/**
* @brief Gets the page of a given address
* @param Addr: flash address
* @retval The page of a given address
*/
uint32_t SFU_LL_FLASH_GetPage(uint32_t Addr)
{
/* Check Flash address */
if (Addr < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_GetPage(Addr);
}
else
{
return INVALID_PAGE; /* Page number is not used in SBSFU application for external flash */
}
}
/**
* @brief Gets the bank of a given address
* @param Addr: flash address
* @retval The bank of a given address
*/
uint32_t SFU_LL_FLASH_GetBank(uint32_t Addr)
{
/* Check Flash address */
if (Addr < EXTERNAL_FLASH_ADDRESS)
{
return SFU_LL_FLASH_INT_GetBank(Addr);
}
else
{
return INVALID_BANK; /* Bank number is not used in SBSFU application for external flash */
}
}
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
| 31.973684 | 126 | 0.665679 |
e9521bce4150d73f8f954086c4e4c47bc1d58f91 | 559 | go | Go | repo/main.go | ffshen/go-istio-api | ef171bf683f917dca74f2d8b0e306d5032f4fa17 | [
"Apache-2.0"
] | null | null | null | repo/main.go | ffshen/go-istio-api | ef171bf683f917dca74f2d8b0e306d5032f4fa17 | [
"Apache-2.0"
] | null | null | null | repo/main.go | ffshen/go-istio-api | ef171bf683f917dca74f2d8b0e306d5032f4fa17 | [
"Apache-2.0"
] | null | null | null | package main
import (
"fmt"
log "github.com/sirupsen/logrus"
"net/http"
)
func main() {
http.Handle("/repo/v1/info", loggingMiddleware(http.HandlerFunc(handler)))
http.ListenAndServe(":9528", nil)
}
func handler(w http.ResponseWriter, req *http.Request) {
//fmt.Println(string(body))
fmt.Fprintf(w, "this is go istio repo : 9528 version : v1 ")
}
func loggingMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
log.Infof("uri: %s", req.RequestURI)
next.ServeHTTP(w, req)
})
}
| 22.36 | 75 | 0.710197 |
29cf32fa0dbf7e979635c64d7c37e2cfb1341e13 | 17,771 | psm1 | PowerShell | glazier-scripts/common/openstack-tools.psm1 | hpcloud/cf-glazier | cb6dd1d200651bfe2e390d07aa39a859f170baec | [
"Apache-2.0"
] | null | null | null | glazier-scripts/common/openstack-tools.psm1 | hpcloud/cf-glazier | cb6dd1d200651bfe2e390d07aa39a859f170baec | [
"Apache-2.0"
] | null | null | null | glazier-scripts/common/openstack-tools.psm1 | hpcloud/cf-glazier | cb6dd1d200651bfe2e390d07aa39a859f170baec | [
"Apache-2.0"
] | null | null | null | $currentDir = split-path $SCRIPT:MyInvocation.MyCommand.Path -parent
Import-Module -DisableNameChecking (Join-Path $currentDir './utils.psm1')
$pythonDir = Join-Path $env:SYSTEMDRIVE 'Python27'
$pythonScriptDir = Join-Path $pythonDir 'Scripts'
$glanceBin = Join-Path $pythonScriptDir 'glance.exe'
$novaBin = Join-Path $pythonScriptDir 'nova.exe'
$swiftBin = Join-Path $pythonScriptDir 'swift.exe'
$neutronBin = Join-Path $pythonScriptDir 'neutron.exe'
function Get-InsecureFlag{[CmdletBinding()]param()
If ( $env:OS_INSECURE -match "true" )
{
return '--insecure'
}
Else
{
return ''
}
}
function Verify-PythonClientsInstallation{[CmdletBinding()]param()
return ((Check-NovaClient) -and (Check-GlanceClient) -and (Check-SwiftClient))
}
function Install-PythonClients{[CmdletBinding()]param()
Write-Output "Installing Python clients"
Install-VCRedist
Install-VCCompile
Install-Python
Install-PythonPackages
Write-Output "Done"
}
function Check-VCRedist{[CmdletBinding()]param()
return ((Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | where DisplayName -like "*Visual C++ 2008*x64*") -ne $null)
}
function Install-VCRedist{[CmdletBinding()]param()
if(Check-VCRedist)
{
Write-Output "VC++ 2008 Redistributable already installed"
return
}
try
{
$vcInstaller = Join-Path $env:temp "vcredist_x64.exe"
Write-Output "Downloading VC Redistributable ..."
$vcRedistUrl = Get-Dependency "vc-redist"
Download-File-With-Retry $vcRedistUrl $vcInstaller
$installProcess = Start-Process -Wait -PassThru -NoNewWindow $vcInstaller "/q /norestart"
if (($installProcess.ExitCode -ne 0) -or !(Check-VCRedist))
{
throw 'Installing VC++ 2008 Redist failed.'
}
Write-Output "Finished installing VC++ 2008 Redistributable"
}
finally
{
If (Test-Path $vcInstaller){
Remove-Item $vcInstaller
}
}
}
function Install-VCCompile{[CmdletBinding()]param()
try
{
$vcCompilerInstaller = Join-Path $env:temp "vccompile.msi"
Write-Output "Downloading VC++ Compiler for python ..."
$vcCompileUrl = Get-Dependency "vc-compile"
Download-File-With-Retry $vcCompileUrl $vcCompilerInstaller
$installProcess = Start-Process -Wait -PassThru -NoNewWindow msiexec "/quiet /i ${vcCompilerInstaller}"
if ($installProcess.ExitCode -ne 0)
{
throw 'Installing VC++ Copiler for python failed.'
}
Write-Output "Finished installing VC++ Copiler for python."
}
finally
{
If (Test-Path $vcCompilerInstaller){
Remove-Item $vcCompilerInstaller
}
}
}
function Check-Python{[CmdletBinding()]param()
return (Test-Path (Join-Path $pythonDir "python.exe"))
}
function Install-Python{[CmdletBinding()]param()
if(Check-Python)
{
Write-Output "Python already installed"
return
}
try
{
Write-Output "Downloading Python ..."
$pythonUrl = Get-Dependency "python"
$pythonInstaller = Join-Path $env:temp "Python.msi"
Download-File-With-Retry $pythonUrl $pythonInstaller -Verbose
Write-Output "Installing Python ..."
$pythonInstaller = Join-Path $env:temp "Python.msi"
$installProcess = Start-Process -Wait -PassThru -NoNewWindow msiexec "/quiet /i ${pythonInstaller} TARGETDIR=`"${pythonDir}`""
if (($installProcess.ExitCode -ne 0) -or !(Check-Python))
{
throw 'Installing Python failed.'
}
Write-Output "Finished installing Python"
}
finally
{
If (Test-Path $pythonInstaller){
Remove-Item $pythonInstaller -Force
}
}
}
function Check-NovaClient{[CmdletBinding()]param()
return (Test-Path $novaBin)
}
function Install-PythonPackages{[CmdletBinding()]param()
Write-Output "Installing python packages ..."
$pythonPackagesFile = Join-Path $currentDir 'python-packages.txt'
$installProcess = Start-Process -Wait -PassThru -NoNewWindow "${pythonScriptDir}\pip.exe" "install -r ${pythonPackagesFile}"
if ($installProcess.ExitCode -ne 0)
{
throw 'Installing python packages failed.'
}
Write-Output "Finished installing python packages"
}
function Check-GlanceClient{[CmdletBinding()]param()
return (Test-Path $glanceBin)
}
function Check-NeutronClient{[CmdletBinding()]param()
return (Test-Path $neutronBin)
}
function Check-SwiftClient{[CmdletBinding()]param()
return (Test-Path $swiftBin)
}
function Create-SwiftContainer{[CmdletBinding()]param($container)
Write-Verbose "Creating container '${container}' in swift ..."
$createProcess = Start-Process -Wait -PassThru -NoNewWindow $swiftBin "$(Get-InsecureFlag) post ${container}"
if ($createProcess.ExitCode -ne 0)
{
throw 'Creating swift container failed.'
}
else
{
Write-Verbose "[OK] Swift container created successfully."
}
}
function Upload-Swift{[CmdletBinding()]param($localPath, $container, $remotePath)
Write-Verbose "Uploading '${localPath}' to '${remotePath}' in container '${container}'"
# Use a 100MB segment size
$segmentSize = 1024 * 1024 * 100
$uploadProcess = Start-Process -Wait -PassThru -NoNewWindow $swiftBin "$(Get-InsecureFlag) upload --segment-size ${segmentSize} --segment-threads 1 --object-name `"${remotePath}`" `"${container}`" `"${localPath}`""
if ($uploadProcess.ExitCode -ne 0)
{
throw 'Uploading to swift failed.'
}
else
{
Write-Verbose "[OK] Upload successful."
}
}
function Delete-SwiftContainer{[CmdletBinding()]param($container)
Write-Verbose "Deleting container '${container}'"
$deleteProcess = Start-Process -Wait -PassThru -NoNewWindow $swiftBin "$(Get-InsecureFlag) delete `"${container}`""
if ($deleteProcess.ExitCode -ne 0)
{
throw 'Deleting from swift failed.'
}
else
{
Write-Verbose "[OK] Delete successful."
}
}
function Get-SwiftToGlanceUrl{[CmdletBinding()]param($container, $object)
[Reflection.Assembly]::LoadWithPartialName("System.Web") | Out-Null
$url = [UriBuilder]"${env:OS_AUTH_URL}"
$url.Scheme = "swift"
$url.Path = Join-Path $url.Path "${container}/${object}"
$url.UserName = [System.Web.HttpUtility]::UrlEncode("${env:OS_TENANT_NAME}:${env:OS_USERNAME}")
$url.Password = [System.Web.HttpUtility]::UrlEncode($env:OS_PASSWORD)
return $url.Uri.AbsoluteUri.ToString()
}
function Download-Swift{[CmdletBinding()]param($container, $remotePath, $localPath)
Write-Verbose "Downloading '${remotePath}' to '${localPath}' from container '${container}'"
$downloadProcess = Start-Process -Wait -PassThru -NoNewWindow $swiftBin "$(Get-InsecureFlag) download --output `"${localPath}`" `"${container}`" `"${remotePath}`""
if ($downloadProcess.ExitCode -ne 0)
{
throw 'Downloading from swift failed.'
}
else
{
Write-Verbose "[OK] Download successful."
}
}
function Validate-SwiftExistence{[CmdletBinding()]param()
try
{
# Do not use swift storage on HP Public Cloud
if ($env:OS_AUTH_URL -like '*.hpcloudsvc.com:*')
{
return $false
}
if ([string]::IsNullOrWhitespace($env:OS_CACERT) -eq $false)
{
Import-509Certificate $env:OS_CACERT 'LocalMachine' 'Root'
}
Configure-SSLErrors
$url = "${env:OS_AUTH_URL}/tokens"
$body = "{`"auth`":{`"passwordCredentials`":{`"username`": `"${env:OS_USERNAME}`",`"password`": `"${env:OS_PASSWORD}`"},`"tenantId`": `"${env:OS_TENANT_ID}`"}}"
$headers = @{"Content-Type"="application/json"}
# Make the call
$response = Invoke-WebRequest -UseBasicParsing -Uri $url -Method Post -Body $body -Headers $headers
$jsonResponse = ConvertFrom-Json $response.Content
$objectStore = ($jsonResponse.access.serviceCatalog | ? { $_.type -eq 'object-store'})
if ($objectStore -eq $null)
{
return $false
}
$endpoint = ($objectStore.endpoints | ? {$_.region -eq $env:OS_REGION_NAME})
if ($endpoint -eq $null)
{
return $false
}
Write-Verbose "Found the following swift url: $($endpoint.publicUrl)"
return $true
}
catch
{
$errorMessage = $_.Exception.Message
Write-Verbose "Error while trying to find a swift store: ${errorMessage}"
return $false
}
}
# Terminate a VM instance
function Delete-VMInstance{[CmdletBinding()]param($vmName)
Write-Verbose "Deleting instance '${vmName}' ..."
$deleteVMProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) delete `"${vmName}`""
if ($deleteVMProcess.ExitCode -ne 0)
{
throw 'Deleting VM failed.'
}
else
{
Write-Verbose "VM deleted successfully."
}
}
# Delete images
function Delete-Image{[CmdletBinding()]param($imageName)
Write-Verbose "Deleting image '${imageName}' ..."
$deleteImageProcess = Start-Process -Wait -PassThru -NoNewWindow $glanceBin "$(Get-InsecureFlag) image-delete `"${imageName}`""
if ($deleteImageProcess.ExitCode -ne 0)
{
throw 'Deleting image failed.'
}
else
{
Write-Verbose "Image deleted successfully."
}
}
# Create a new image from the VM that installed Windows
function Create-VMSnapshot{[CmdletBinding()]param($vmName, $imageName)
Write-Verbose "Creating image '${imageName}' based on instance ..."
$createImageProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) image-create --poll `"${vmName}`" `"${imageName}`""
if ($createImageProcess.ExitCode -ne 0)
{
throw 'Create image from VM failed.'
}
else
{
Write-Verbose "Image created successfully."
}
}
# Wait for the instance to be shut down
function WaitFor-VMShutdown{[CmdletBinding()]param($vmName)
$isVerbose = [bool]$PSBoundParameters["Verbose"]
$instanceOffCount = 0
$instanceErrorCount = 0
$instanceUnknownCount = 0
while ($instanceOffCount -lt 3)
{
[Console]::Out.Write(".")
Start-Sleep -s 60
$vmStatus = (& $novaBin $(Get-InsecureFlag) show "${vmName}" --minimal | sls -pattern "^\| status\s+\|\s+(?<state>\w+)" | select -expand Matches | foreach {$_.groups["state"].value})
if (${vmStatus} -eq 'ERROR')
{
$instanceErrorCount = $instanceErrorCount + 1
}
else
{
$instanceErrorCount = 0
}
if ([string]::IsNullOrWhitespace(${vmStatus}) -eq $true)
{
$vmStatus = "U"
$instanceUnknownCount = $instanceUnknownCount + 1
}
else
{
$instanceUnknownCount = 0
}
if ($instanceErrorCount -gt 3)
{
Write-Output " Error"
throw 'VM is in an error state.'
}
if ($instanceUnknownCount -gt 3)
{
Write-Output " Unknown"
throw 'VM is in an unknown state.'
}
if ($isVerbose)
{
[Console]::Out.Write("$($vmStatus[0])")
}
if ($vmStatus -eq 'SHUTOFF')
{
$instanceOffCount = $instanceOffCount + 1
}
else
{
$instanceOffCount = 0
}
}
Write-Output "Done"
}
# Boot a VM using the created image (it will install Windows unattended)
function Boot-VM{[CmdletBinding()]param($vmName, $imageName, $keyName, $securityGroup, $networkId, $flavor, $userData)
$imageInfo = $(& $glanceBin image-show $imageName)
$idLine = ($imageInfo | Select-String -Pattern "\A\| id" )
$imageId = $idLine.Line.Split(" ", [StringSplitOptions]::RemoveEmptyEntries)[3]
Write-Verbose "Using image id '${imageId}' to boot VM '${vmName}'"
if($userData -ne $null)
{
$userDataStr = "--user-data `"${userData}`""
}
else
{
$userDataStr = ""
}
$bootVMProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) boot --flavor `"${flavor}`" --image `"${imageId}`" --key-name `"${keyName}`" --security-groups `"${securityGroup}`" ${userDataStr} --nic net-id=${networkId} `"${vmName}`""
if ($bootVMProcess.ExitCode -ne 0)
{
throw 'Booting VM failed.'
}
else
{
Write-Verbose "VM booted successfully."
}
}
# Update an image with the specified property
function Update-ImageProperty{[CmdletBinding()]param($imageName, $propertyName, $propertyValue)
Write-Verbose "Updating property '${propertyName}' for image '${imageName}' using glance ..."
$updateImageProcess = Start-Process -Wait -PassThru -NoNewWindow $glanceBin "$(Get-InsecureFlag) image-update --property ${propertyName}=${propertyValue} `"${imageName}`""
if ($updateImageProcess.ExitCode -ne 0)
{
throw 'Update image property failed.'
}
else
{
Write-Verbose "Update image property was successful."
}
}
function Update-ImageInfo{[CmdletBinding()]param([string]$imageName, [int]$minDiskGB, [int]$minRamMB)
Write-Verbose "Updating image '${imageName}' minimum requirements ..."
$updateImageProcess = Start-Process -Wait -PassThru -NoNewWindow $glanceBin "$(Get-InsecureFlag) image-update --min-disk ${minDiskGB} --min-ram ${minRamMB} `"${imageName}`""
if ($updateImageProcess.ExitCode -ne 0)
{
throw 'Update image info failed.'
}
else
{
Write-Verbose "Update image info was successful."
}
}
# Create an image based on the generated qcow2
function Create-Image{[CmdletBinding()]param($imageName, $localImage, $hypervisor)
Write-Verbose "Creating image '${imageName}' using glance ..."
$diskFormat = 'qcow2'
if ($hypervisor -eq 'esxi')
{
$diskFormat = 'vmdk'
}
$createImageProcess = Start-Process -Wait -PassThru -NoNewWindow $glanceBin "$(Get-InsecureFlag) image-create --progress --disk-format ${diskFormat} --container-format bare --file `"${localImage}`" --name `"${imageName}`""
if ($createImageProcess.ExitCode -ne 0)
{
throw 'Create image failed.'
}
else
{
Write-Verbose "Create image was successful."
}
}
# Create an image based on a swift url
function Create-ImageFromSwift{[CmdletBinding()]param($imageName, $container, $object, $hypervisor)
try
{
$swiftObjectUrl = Get-SwiftToGlanceUrl $container $object
}
catch
{
$errorMessage = $_.Exception.Message
throw "Could not generate a swift object url for glance: ${errorMessage}"
}
$diskFormat = 'qcow2'
if ($hypervisor -eq 'esxi')
{
$diskFormat = 'vmdk'
}
Write-Verbose "Creating image '${imageName}' using glance from swift source '${swiftObjectUrl}' ..."
$createImageProcess = Start-Process -Wait -PassThru -NoNewWindow $glanceBin "$(Get-InsecureFlag) image-create --progress --disk-format ${diskFormat} --container-format bare --location `"${swiftObjectUrl}`" --name `"${imageName}`""
if ($createImageProcess.ExitCode -ne 0)
{
throw 'Create image from swift failed.'
}
else
{
Write-Verbose "Create image from swift was successful. Sleeping 1 minute ..."
Start-Sleep -s 60
}
}
# check OS_* specific env vars
function Validate-OSEnvVars{[CmdletBinding()]param()
Write-Verbose "Checking OS_* env vars ..."
if ([string]::IsNullOrWhitespace($env:OS_REGION_NAME)) { throw 'OS_REGION_NAME missing!' }
if ([string]::IsNullOrWhitespace($env:OS_TENANT_ID)) { throw 'OS_TENANT_ID missing!' }
if ([string]::IsNullOrWhitespace($env:OS_PASSWORD)) { throw 'OS_PASSWORD missing!' }
if ([string]::IsNullOrWhitespace($env:OS_AUTH_URL)) { throw 'OS_AUTH_URL missing!' }
if ([string]::IsNullOrWhitespace($env:OS_USERNAME)) { throw 'OS_USERNAME missing!' }
if ([string]::IsNullOrWhitespace($env:OS_TENANT_NAME)) { throw 'OS_TENANT_NAME missing!' }
}
function Validate-NovaList{[CmdletBinding()]param()
Write-Verbose "Checking nova client can connect to openstack ..."
$checkProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) list --minimal"
if ($checkProcess.ExitCode -ne 0)
{
throw 'Cannot connect to the provided OpenStack instance. Nova list failed.'
}
else
{
Write-Verbose "[OK] Nova list successful."
}
}
#check for existance of the OpenStack parameters
function Validate-OSParams{[CmdletBinding()]param($keyName, $securityGroup, $networkId, $flavor)
Write-Verbose "Checking provided OpenStack parameters ..."
$errors = @()
Write-Verbose "Checking flavor ${flavor} ..."
$openStackProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) flavor-show ${flavor}"
if ($openStackProcess.ExitCode -ne 0)
{
$errors += "Flavor ${flavor} does not exist"
}
else
{
Write-Verbose "[OK] Flavor ${flavor} exists"
}
Write-Verbose "Checking key ${keyName} ..."
$openStackProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) keypair-show ${keyName}"
if ($openStackProcess.ExitCode -ne 0)
{
$errors += "Key ${keyName} does not exist"
}
else
{
Write-Verbose "[OK] Key ${keyName} exists"
}
Write-Verbose "Checking network id ${networkId} ..."
$openStackProcess = Start-Process -Wait -PassThru -NoNewWindow $neutronBin "$(Get-InsecureFlag) net-show ${networkId}"
if ($openStackProcess.ExitCode -ne 0)
{
$errors += "Network ${networkId} does not exist"
}
else
{
Write-Verbose "[OK] Network ${networkId} exists"
}
Write-Verbose "Checking security group ${securityGroup} ..."
$openStackProcess = Start-Process -Wait -PassThru -NoNewWindow $novaBin "$(Get-InsecureFlag) secgroup-list-rules ${securityGroup}"
if ($openStackProcess.ExitCode -ne 0)
{
$errors += "Security group ${securityGroup} does not exist"
}
else
{
Write-Verbose "[OK] Security group ${securityGroup} exists"
}
if ($errors.Length -ne 0)
{
Write-Host -ForegroundColor Red "Invalid settings:"
throw [string]::Join("`r`n", $errors)
}
}
| 29.717391 | 263 | 0.665748 |
6b3674bd86f8da3b5de9fcdd13be89a8e04ab7e0 | 16,778 | htm | HTML | Components/ibm-worklight-7.1.0.1/docs/html/21db73d2-38fd-ec15-0a10-2350915d3e23.htm | jbravobr/Xamarin.Plugins | 897ce3cc8384c5d4ae2e9203024d8cf23f7e944d | [
"MIT"
] | 3 | 2016-05-30T09:57:24.000Z | 2016-05-30T20:23:17.000Z | Components/ibm-worklight-7.1.0.1/docs/html/21db73d2-38fd-ec15-0a10-2350915d3e23.htm | jbravobr/Xamarin.Plugins | 897ce3cc8384c5d4ae2e9203024d8cf23f7e944d | [
"MIT"
] | null | null | null | Components/ibm-worklight-7.1.0.1/docs/html/21db73d2-38fd-ec15-0a10-2350915d3e23.htm | jbravobr/Xamarin.Plugins | 897ce3cc8384c5d4ae2e9203024d8cf23f7e944d | [
"MIT"
] | null | null | null | <html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ChallengeHandler Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ChallengeHandler class" /><meta name="System.Keywords" content="Worklight.ChallengeHandler class" /><meta name="System.Keywords" content="ChallengeHandler class, about ChallengeHandler class" /><meta name="Microsoft.Help.F1" content="Worklight.ChallengeHandler" /><meta name="Microsoft.Help.Id" content="T:Worklight.ChallengeHandler" /><meta name="Description" content="This is a base class you must implement to create your own custom Challenge Handlers. The custom Challenge Handler logic required to authenticate against a realm defined on the server must be written in your implementation." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Worklight" /><meta name="file" content="21db73d2-38fd-ec15-0a10-2350915d3e23" /><meta name="guid" content="21db73d2-38fd-ec15-0a10-2350915d3e23" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-1.11.0.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">IBM MobileFirst Library for Xamarin<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="912ccfa6-d006-5764-5805-4b31040472bc.htm" title="IBM MobileFirst Library for Xamarin" tocid="roottoc">IBM MobileFirst Library for Xamarin</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="912ccfa6-d006-5764-5805-4b31040472bc.htm" title="Worklight" tocid="912ccfa6-d006-5764-5805-4b31040472bc">Worklight</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="21db73d2-38fd-ec15-0a10-2350915d3e23.htm" title="ChallengeHandler Class" tocid="21db73d2-38fd-ec15-0a10-2350915d3e23">ChallengeHandler Class</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="f12d05e9-8d71-7a75-eb91-72e5f92662bb.htm" title="ChallengeHandler Constructor " tocid="f12d05e9-8d71-7a75-eb91-72e5f92662bb">ChallengeHandler Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!"></a><a data-tochassubtree="true" href="91ac91ce-c7ec-3a3c-1f31-00db34cc8939.htm" title="ChallengeHandler Methods" tocid="91ac91ce-c7ec-3a3c-1f31-00db34cc8939">ChallengeHandler Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize"><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize"></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn">ChallengeHandler Class</td></tr></table><span class="introStyle"></span><div class="summary">
This is a base class you must implement to create your own custom Challenge Handlers.
The custom Challenge Handler logic required to authenticate against a realm defined on the server must be written in your implementation.
</div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Inheritance Hierarchy</span></div><div id="ID0RBSection" class="collapsibleSection"><a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">System<span id="LST98E85920_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST98E85920_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br /> <span class="selflink">Worklight<span id="LST98E85920_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST98E85920_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>ChallengeHandler</span><br /></div><p> </p><strong>Namespace:</strong> <a href="912ccfa6-d006-5764-5805-4b31040472bc.htm">Worklight</a><br /><strong>Assembly:</strong> Worklight.Xamarin.Android (in Worklight.Xamarin.Android.dll) Version: 6.3.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID2RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID1EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID1EACA_copyCode" href="#" onclick="javascript:CopyToClipboard('ID1EACA');return false;" title="Copy">Copy</a></div></div><div id="ID1EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">abstract</span> <span class="keyword">class</span> <span class="identifier">ChallengeHandler</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID1EACA");</script></div><p>The <span class="selflink">ChallengeHandler</span> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID3RB')" onkeypress="SectionExpandCollapse_CheckKey('ID3RB', event)" tabindex="0"><img id="ID3RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Constructors</span></div><div id="ID3RBSection" class="collapsibleSection"><table id="memberList" class="members"><tr><th class="iconColumn">
</th><th>Name</th><th>Description</th></tr><tr data="protected;declared;notNetfw;"><td><img src="../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="f12d05e9-8d71-7a75-eb91-72e5f92662bb.htm">ChallengeHandler</a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">ChallengeHandler</span> class</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID4RB')" onkeypress="SectionExpandCollapse_CheckKey('ID4RB', event)" tabindex="0"><img id="ID4RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID4RBSection" class="collapsibleSection"><table id="memberList" class="members"><tr><th class="iconColumn">
</th><th>Name</th><th>Description</th></tr><tr data="public;inherited;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/bsc2ak47" target="_blank">Equals</a></td><td><div class="summary">Determines whether the specified <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is equal to the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="protected;inherited;notNetfw;"><td><img src="../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/4k87zsw7" target="_blank">Finalize</a></td><td><div class="summary">Allows an object to try to free resources and perform other cleanup operations before the <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a> is reclaimed by garbage collection.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="b2713686-7730-4a44-9313-3bb468ba1173.htm">GetAdapterAuthenticationParameters</a></td><td><div class="summary">
Override this if you want to
Provide an AdapterAuthenticationInfo object with all the parameters required to call an adapter procedure on a Worklight server in response
to a challenge on a realm protected by an AdapterAuthenticator.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/zdee4b3y" target="_blank">GetHashCode</a></td><td><div class="summary">Serves as a hash function for a particular type. </div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="69679de0-f195-9130-4c0d-23e6b9947516.htm">GetLoginFormParameters</a></td><td><div class="summary">
Override this if you want to provide an LoginFormInfo object with all the parameters required to submit a form in response
to a challenge on a realm protected by an FormBasedAuthenticator.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="61d51595-bd9c-0434-80f3-cb7319a248e5.htm">GetRealm</a></td><td><div class="summary">
The realm defined on the server that your custom Challenge Handler will deal with.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/dfwy45w9" target="_blank">GetType</a></td><td><div class="summary">Gets the <a href="http://msdn2.microsoft.com/en-us/library/42892f65" target="_blank">Type</a> of the current instance.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="640b95e9-efae-2b85-793e-db0f3a19b640.htm">HandleChallenge</a></td><td><div class="summary">
This method is called whenever <a href="7e41546e-a9b7-2162-d003-edf592ebf29b.htm">IsCustomResponse(WorklightResponse)</a> returns a true value.
You must implement this method to handle the challenge logic, for example to display the login screen.
You can handle this for a particular security realm.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="7e41546e-a9b7-2162-d003-edf592ebf29b.htm">IsCustomResponse</a></td><td><div class="summary">
Override this method if you want to decide if <a href="640b95e9-efae-2b85-793e-db0f3a19b640.htm">HandleChallenge(WorklightResponse)</a> will be called.
Here you can parse the response from the Worklight server to determine whether or not your custom Challenge Handler will handle the challenge.
Worklight will then call the HandleChallenge method depending on the return value.
For example, in a realm protected by a AdapterAuthenticator, the response from the Worklight server might contain a JSON value of authRequired : true
</div></td></tr><tr data="protected;inherited;notNetfw;"><td><img src="../icons/protmethod.gif" alt="Protected method" title="Protected method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/57ctke0a" target="_blank">MemberwiseClone</a></td><td><div class="summary">Creates a shallow copy of the current <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="12686ad1-681a-8cb5-dd0c-adfe4588c26b.htm">OnFailure</a></td><td><div class="summary">
Is called by the framework in case of a failure
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="84ee1802-e16c-4c10-f4d0-b987701a16e7.htm">OnSuccess</a></td><td><div class="summary">
Is called by the framework in case of a success
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="74838a82-276a-4d89-e0a8-71a81dd2bd78.htm">ShouldSubmitAdapterAuthentication</a></td><td><div class="summary">
Override this if you want to
Set this property to true in your implementation if the realm is protected by an AdapterAuthenticator.
When this property is set to true, Worklight will send a response back to the server calling an adapter procedure on the server.
The AdapterAuthenticationParameters property must be populated with the necessary information to make this adapter call.
Default: false
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="c3063633-7b5d-f27e-b30d-f894cae8d52d.htm">ShouldSubmitLoginForm</a></td><td><div class="summary">
Override this if you want to set this property to true in your implementation if the realm is protected by an FormBasedAuthenticator.
When this property is set to true, Worklight will send a response back to the server similar to submitting a form.
The LoginFormParameters property must be populated with the necessary information to submit the form.
Default:false
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="16fb8ec4-1e5e-3914-0e76-428faf9bcfbc.htm">ShouldSubmitSuccess</a></td><td><div class="summary">
indicate if the auth attempt successful.
</div></td></tr><tr data="public;inherited;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="http://msdn2.microsoft.com/en-us/library/7bxwbwt2" target="_blank">ToString</a></td><td><div class="summary">Returns a string that represents the current object.</div> (Inherited from <a href="http://msdn2.microsoft.com/en-us/library/e5kfa45b" target="_blank">Object</a>.)</td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID5RB')" onkeypress="SectionExpandCollapse_CheckKey('ID5RB', event)" tabindex="0"><img id="ID5RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID5RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="912ccfa6-d006-5764-5805-4b31040472bc.htm">Worklight Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html> | 381.318182 | 4,181 | 0.729527 |
89fd5aa8ff850d5fb9689935139fe8be0ba21ace | 891 | lua | Lua | src/Shared/Libraries/AdornmentUtils.lua | Floating-Point-Studios/deus-framework | ffdf673c9cd7a3fba9894d8191821d4c34d827ae | [
"MIT"
] | null | null | null | src/Shared/Libraries/AdornmentUtils.lua | Floating-Point-Studios/deus-framework | ffdf673c9cd7a3fba9894d8191821d4c34d827ae | [
"MIT"
] | null | null | null | src/Shared/Libraries/AdornmentUtils.lua | Floating-Point-Studios/deus-framework | ffdf673c9cd7a3fba9894d8191821d4c34d827ae | [
"MIT"
] | null | null | null | local Output
local ValidClasses = {
"BoxHandleAdornment",
"ConeHandleAdornment",
"CylinderHandleAdornment",
"LineHandleAdornment",
"SphereHandleAdornment",
"ImageHandleAdornment",
}
local AdornmentUtils = {}
function AdornmentUtils.make(className, parent, cframe, isWorldSpace, properties)
Output.assert(table.find(ValidClasses, className), "Class %s is not an adornment", className, 1)
local adornment = Instance.new(className)
if isWorldSpace and parent and parent:IsA("BasePart") then
adornment.CFrame = parent.CFrame:ToObjectSpace(cframe)
elseif not isWorldSpace then
adornment.CFrame = cframe
end
for i,v in pairs(properties) do
adornment[i] = v
end
adornment.Parent = parent
return adornment
end
function AdornmentUtils:start()
Output = self:Load("Deus.Output")
end
return AdornmentUtils | 23.447368 | 100 | 0.714927 |
11bd954c01b6803b6668085c6585e63d2715137c | 268 | asm | Assembly | programs/oeis/332/A332557.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 22 | 2018-02-06T19:19:31.000Z | 2022-01-17T21:53:31.000Z | programs/oeis/332/A332557.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 41 | 2021-02-22T19:00:34.000Z | 2021-08-28T10:47:47.000Z | programs/oeis/332/A332557.asm | neoneye/loda | afe9559fb53ee12e3040da54bd6aa47283e0d9ec | [
"Apache-2.0"
] | 5 | 2021-02-24T21:14:16.000Z | 2021-08-09T19:48:05.000Z | ; A332557: Number of inequivalent Z_{2^s}-linear Hadamard codes of length 2^n.
; 1,1,1,1,1,3,3,6,7,11,13,20
sub $0,3
lpb $0
mov $2,$0
max $2,0
seq $2,97066 ; Expansion of (1-2*x+2*x^2)/((1+x)*(1-x)^3).
add $0,$2
div $0,12
add $3,$2
lpe
mov $0,$3
add $0,1
| 17.866667 | 78 | 0.574627 |
fe95ad927f9a61f6ffd11c14d0c3c67163130b45 | 312 | asm | Assembly | oeis/157/A157027.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/157/A157027.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/157/A157027.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A157027: Denominator of Euler(n, 1/26).
; 1,13,676,4394,456976,2970344,308915776,2007952544,208827064576,1357375919744,141167095653376,917586121746944,95428956661682176,620288218300934144,64509974703297150976,419314835571431481344
mov $1,26
pow $1,$0
mov $2,$0
sub $2,9
gcd $2,2
div $1,$2
dif $1,$2
mov $0,$1
| 26 | 190 | 0.778846 |
fb95ff5c05498332503ce644b4c78c2975d9882b | 897 | java | Java | src/app/java/Metrics/Test/NumOfImplInterfacesTest.java | BlazicIvan/Net-CQA | 8de24de7c5af9ea4afcd7fc390da2f793679d69a | [
"Unlicense",
"MIT"
] | null | null | null | src/app/java/Metrics/Test/NumOfImplInterfacesTest.java | BlazicIvan/Net-CQA | 8de24de7c5af9ea4afcd7fc390da2f793679d69a | [
"Unlicense",
"MIT"
] | null | null | null | src/app/java/Metrics/Test/NumOfImplInterfacesTest.java | BlazicIvan/Net-CQA | 8de24de7c5af9ea4afcd7fc390da2f793679d69a | [
"Unlicense",
"MIT"
] | null | null | null | package Metrics.Test;
import Metrics.Test.Setup.MetricTestSetup;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
class NumOfImplInterfacesTest {
private static MetricTestSetup ts;
private static final String[] includedFiles = {
"CommonElements/BlankIsolated",
"NumOfImplInterfaces/*"
};
@BeforeAll
static void setup() {
ts = new MetricTestSetup(includedFiles);
}
@Test
void calculate() {
assertEquals(1, ts.getMetricValue("NII", "NumOfImplInterfaces.C1"));
assertEquals(0, ts.getMetricValue("NII", "NumOfImplInterfaces.C2"));
assertEquals(2, ts.getMetricValue("NII", "NumOfImplInterfaces.C3"));
assertEquals(0, ts.getMetricValue("NII", "CommonElements.BlankIsolated"));
}
} | 29.9 | 83 | 0.670011 |
2fd14c630109db985fedee8ab4d91ae407100a40 | 1,135 | dart | Dart | lib/utils/app_file.dart | tronglv92/make_request | 603841523c3901b7b76e0e78cdc13bde4997171a | [
"MIT"
] | null | null | null | lib/utils/app_file.dart | tronglv92/make_request | 603841523c3901b7b76e0e78cdc13bde4997171a | [
"MIT"
] | null | null | null | lib/utils/app_file.dart | tronglv92/make_request | 603841523c3901b7b76e0e78cdc13bde4997171a | [
"MIT"
] | null | null | null | import 'dart:io';
import 'package:firebase_storage/firebase_storage.dart';
import 'package:flutter/cupertino.dart';
import 'package:provider/provider.dart';
class AppFile{
static Future<String> uploadFile({required BuildContext context,required File image,required String destination}) {
return context.read<AppFile>().upload(image,destination);
}
static Future<List<String>> uploadFiles({required BuildContext context,required List<File> images, required String destination}) {
return context.read<AppFile>().uploads(images,destination);
}
Future<List<String>> uploads(List<File> _images,String destination) async {
final List<String> imageUrls = await Future.wait(_images.map((_image) => upload(_image, destination)));
print(imageUrls);
return imageUrls;
}
Future<String> upload(File _image,String destination) async {
final Reference storageReference = FirebaseStorage.instance
.ref()
.child(destination);
final UploadTask uploadTask = storageReference.putFile(_image);
await uploadTask.whenComplete((){});
return await storageReference.getDownloadURL();
}
}
| 37.833333 | 132 | 0.747137 |
c845d60bc7db31ffb139778d2aa0751cfb8da530 | 127 | kt | Kotlin | idea/testData/multiModuleLineMarker/fromCommonToJvmImpl/common/common.kt | qussarah/declare | c83b764c7394efa3364915d973ae79c4ebed2437 | [
"Apache-2.0"
] | 7 | 2017-06-13T03:01:04.000Z | 2021-04-22T03:01:06.000Z | idea/testData/multiModuleLineMarker/fromCommonToJvmImpl/common/common.kt | qussarah/declare | c83b764c7394efa3364915d973ae79c4ebed2437 | [
"Apache-2.0"
] | null | null | null | idea/testData/multiModuleLineMarker/fromCommonToJvmImpl/common/common.kt | qussarah/declare | c83b764c7394efa3364915d973ae79c4ebed2437 | [
"Apache-2.0"
] | 4 | 2019-06-24T07:33:49.000Z | 2020-04-21T21:52:37.000Z | // !CHECK_HIGHLIGHTING
header class Header {
fun foo(): Int
}
header fun foo(arg: Int): String
header val flag: Boolean
| 12.7 | 32 | 0.692913 |
47ad06178e7788cd2ef8b27489db70c7b2ae579b | 3,800 | dart | Dart | test/writer/create_package_test.dart | 6thsolution/Fantom | c46bccb83a17a6d29fda154f8fb198b6dbf8a7e4 | [
"MIT"
] | 13 | 2021-11-17T14:06:39.000Z | 2022-01-27T19:42:24.000Z | test/writer/create_package_test.dart | 6thsolution/Fantom | c46bccb83a17a6d29fda154f8fb198b6dbf8a7e4 | [
"MIT"
] | 4 | 2021-10-18T09:45:26.000Z | 2021-11-08T08:00:42.000Z | test/writer/create_package_test.dart | rekabhq/fantom | c46bccb83a17a6d29fda154f8fb198b6dbf8a7e4 | [
"MIT"
] | null | null | null | @Timeout(Duration(minutes: 1))
import 'dart:io';
import 'package:fantom/src/cli/commands/generate.dart';
import 'package:fantom/src/cli/config/exclude_models.dart';
import 'package:fantom/src/cli/config/fantom_config.dart';
import 'package:fantom/src/cli/options_values.dart';
import 'package:fantom/src/generator/utils/generation_data.dart';
import 'package:fantom/src/utils/utililty_functions.dart';
import 'package:fantom/src/writer/dart_package.dart';
import 'package:fantom/src/writer/file_writer.dart';
import 'package:fantom/src/writer/generatbale_file.dart';
import 'package:pubspec_yaml/pubspec_yaml.dart' as p;
import 'package:test/test.dart';
void main() {
group('CreatePackage:', () {
final name = 'client';
final generationPath = 'test/writer/packages/';
final packagePath = '$generationPath/$name';
final libDirPath = '$packagePath/lib';
final exampleDirPath = '$packagePath/example';
final testDirPath = '$packagePath/test';
final pubspecPath = '$packagePath/pubspec.yaml';
late FantomPackageInfo packageInfo;
late GenerationData generationData;
setUpAll(() async {
generationData = GenerationData(
config: GenerateAsStandAlonePackageConfig(
openApi: await readJsonOrYamlFile(
File('test/openapi/model/openapi/simple_openapi.yaml'),
),
fantomConfig: FantomConfig(
packageName: name,
outputPackageDir: generationPath,
apiMethodReturnType: MethodReturnType.result,
excludedComponents: [],
excludedPaths: ExcludedPaths.fromFantomConfigValues([]),
path: '',
),
packageName: name,
outputModuleDir: Directory(generationPath),
),
models: [
GeneratableFile(
fileContent: '''
class ModelA{
}
''',
fileName: 'model_a.dart',
)
],
apiClass: GeneratableFile(
fileContent: '''
class ApiClass{
}
''',
fileName: 'api.dart',
),
resourceApiClasses: [],
);
packageInfo = FantomPackageInfo.fromConfig(
generationData.config as GenerateAsStandAlonePackageConfig);
});
test(
'should create a dart package from package info',
() async {
//when
await FileWriter(generationData).writeGeneratedFiles();
// assert existense of these files
expect(Directory(libDirPath).existsSync(), isTrue);
expect(File(pubspecPath).existsSync(), isTrue);
expect(Directory(exampleDirPath).existsSync(), isFalse);
expect(Directory(testDirPath).existsSync(), isFalse);
// assert content of pubspec.yaml file of created dart package
print(pubspecPath);
var pubspecFile = File(pubspecPath);
var string = await pubspecFile.readAsString();
print(string);
var pubspec = p.PubspecYaml.loadFromYamlString(string);
expect(pubspec.version.valueOr(() => ''),
packageInfo.pubspecInfo.version.toString());
expect(pubspec.description.valueOr(() => ''),
packageInfo.pubspecInfo.description);
expect(pubspec.name, packageInfo.name);
expect(pubspec.dependencies, packageInfo.pubspecInfo.dependencies);
// assert generated api & model files in lib/
var actualModelFileNames = Directory(packageInfo.modelsDirPath)
.listSync()
.map((e) => e.path.split('/').last);
for (var model in generationData.models) {
expect(actualModelFileNames.contains(model.fileName), isTrue);
}
var apiFile = File(
'${packageInfo.apisDirPath}/${generationData.apiClass.fileName}');
expect(await apiFile.exists(), isTrue);
},
);
});
}
| 35.849057 | 78 | 0.647632 |
3bb5dee340b188c0841f848f8ea722e3e874a566 | 312 | h | C | pins.h | mariuszskon/ardutainment | 38b9c4178f544489419ac093317482a9e5c41a0d | [
"MIT"
] | null | null | null | pins.h | mariuszskon/ardutainment | 38b9c4178f544489419ac093317482a9e5c41a0d | [
"MIT"
] | null | null | null | pins.h | mariuszskon/ardutainment | 38b9c4178f544489419ac093317482a9e5c41a0d | [
"MIT"
] | null | null | null | #ifndef PINS_H
#define PINS_H
// LCD
#define RS_PIN 7
#define EN_PIN 8
#define D4_PIN 9
#define D5_PIN 10
#define D6_PIN 11
#define D7_PIN 12
// PIEZO
#define PIEZO_PIN 6
// BUTTONS
#define BUTTON0_PIN 2
#define BUTTON1_PIN 3
#define BUTTON2_PIN 4
// UNCONNECTED ANALOG
#define UNCONNECTED_ANALOG A0
#endif
| 13 | 29 | 0.762821 |
a33588469e7bae4ab690c0b744c5a0629e858ee3 | 498 | ps1 | PowerShell | NexthinkPSUtils/Classes/ValidateCampaignUIDAttribute.ps1 | joshwright10/NexthinkPSUtils | 6952e4cd2155db40e411ac81aed742af8bcead26 | [
"MIT"
] | null | null | null | NexthinkPSUtils/Classes/ValidateCampaignUIDAttribute.ps1 | joshwright10/NexthinkPSUtils | 6952e4cd2155db40e411ac81aed742af8bcead26 | [
"MIT"
] | null | null | null | NexthinkPSUtils/Classes/ValidateCampaignUIDAttribute.ps1 | joshwright10/NexthinkPSUtils | 6952e4cd2155db40e411ac81aed742af8bcead26 | [
"MIT"
] | null | null | null | class ValidateCampaignUIDAttribute : System.Management.Automation.ValidateArgumentsAttribute {
[void]Validate([object]$value, [System.Management.Automation.EngineIntrinsics]$engineIntrinsics) {
if ([string]::IsNullOrWhiteSpace($value)) {
throw [System.ArgumentNullException]::new()
}
if (-not
($value -match "^euf_[0-9a-fA-F]{32}$") -or
($value -as [guid])) {
throw "Not a valid Campaign UID format."
}
}
}
| 31.125 | 102 | 0.608434 |
80768570e0bf48d4aca9e6c287ac450520a418fd | 23,812 | java | Java | common/arcus-common/src/main/java/com/iris/regex/RegexDfaByte.java | pupper68k/arcusplatform | 714802f0a48b12a8b6b5957447e3ec02b88156ec | [
"Apache-2.0"
] | null | null | null | common/arcus-common/src/main/java/com/iris/regex/RegexDfaByte.java | pupper68k/arcusplatform | 714802f0a48b12a8b6b5957447e3ec02b88156ec | [
"Apache-2.0"
] | null | null | null | common/arcus-common/src/main/java/com/iris/regex/RegexDfaByte.java | pupper68k/arcusplatform | 714802f0a48b12a8b6b5957447e3ec02b88156ec | [
"Apache-2.0"
] | null | null | null | /*
* Copyright 2019 Arcus Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.iris.regex;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashSet;
import java.util.IdentityHashMap;
import java.util.Iterator;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;
import org.eclipse.jdt.annotation.Nullable;
import com.google.common.base.Function;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableSet;
public class RegexDfaByte<V> {
final State<V> initialState;
final Set<State<V>> states;
public RegexDfaByte(State<V> initialState, Set<State<V>> states) {
this.initialState = initialState;
this.states = states;
}
public static <V> Builder<V> builder() {
return new Builder<>();
}
public <T> RegexDfaByte<T> transform(Function<V,T> transformer) {
IdentityHashMap<State<V>,State<T>> stateMap = new IdentityHashMap<>();
State<T> newInitialState = null;
for (State<V> state : states) {
State<T> transformed = state.transform(transformer);
if (transformed.isInitialState()) {
newInitialState = transformed;
}
stateMap.put(state, transformed);
}
for (Map.Entry<State<V>,State<T>> entry : stateMap.entrySet()) {
State<V> oldState = entry.getKey();
State<T> newState = entry.getValue();
newState.setTransitions(oldState.getTransitions().transform(stateMap,transformer));
}
if (newInitialState == null) {
throw new IllegalStateException("no initial state");
}
Set<State<T>> newStates = ImmutableSet.copyOf(stateMap.values());
return new RegexDfaByte<T>(newInitialState, newStates);
}
public State<V> getInitialState() {
return initialState;
}
public Set<State<V>> getStates() {
return states;
}
public int getNumStates() {
return states.size();
}
public int getNumTransitions() {
int num = 0;
for (State<V> st : states) {
num += st.getTransitions().getNumTransitions();
}
return num;
}
public boolean matches(byte[] input) {
Matcher match = matcher();
for (int i=0, e=input.length; i<e; ++i) {
if (match.process(input[i])) {
break;
}
}
return match.matched();
}
@Nullable
public V matching(byte[] input) {
Matcher match = matcher();
for (int i=0, e=input.length; i<e; ++i) {
if (match.process(input[i])) {
break;
}
}
return match.match();
}
public boolean matches(Iterable<Byte> input) {
return matches(input.iterator());
}
public boolean matches(Iterator<Byte> input) {
Matcher match = matcher();
while (input.hasNext()) {
if (match.process(input.next())) {
break;
}
}
return match.matched();
}
@Nullable
public V matching(Iterable<Byte> input) {
return matching(input.iterator());
}
@Nullable
public V matching(Iterator<Byte> input) {
Matcher match = matcher();
while (input.hasNext()) {
if (match.process(input.next())) {
break;
}
}
return match.match();
}
public Matcher matcher() {
return new Matcher();
}
public String toDotGraph() {
return toDotGraph("", " ");
}
public String toDotGraph(String newline, String tab) {
StringBuilder bld = new StringBuilder();
bld.append("digraph nfa {").append(newline);
int next = 0;
Map<State<?>,String> nodeNames = new IdentityHashMap<>();
for (State<V> state : states) {
nodeNames.put(state,"s" + next++);
}
for (State<V> state : states) {
String shape;
switch (state.type) {
case INITIALFINAL: shape = "doubleoctagon"; break;
case INITIAL: shape = "doublecircle"; break;
case FINAL: shape = "octagon"; break;
default: shape = "circle"; break;
}
bld.append(tab)
.append(nodeNames.get(state))
.append(" [shape=")
.append(shape)
.append("];")
.append(newline);
}
for (State<V> state : states) {
state.transitions.toDotGraph(bld,state,nodeNames,newline,tab);
}
bld.append("}");
return bld.toString();
}
public final class Matcher {
private @Nullable State<V> current;
public Matcher() {
current = initialState;
}
public @Nullable State<V> current() {
return current;
}
public boolean process(byte symbol) {
State<V> cur = current;
if (cur != null) {
current = cur.transitions.get(symbol);
}
return current == null;
}
public boolean matched() {
return current != null && current.isFinalState();
}
@Nullable
public V match() {
return matched() ? current.value : null;
}
public List<Byte> getTransitionsFromCurrent() {
State<?> cur = current;
if (cur == null) {
return ImmutableList.of();
}
TransitionTable<?> table = cur.getTransitions();
if (table == null) {
return ImmutableList.of();
}
return table.knownTransitionSymbols();
}
}
public static final class State<V> {
public static enum Type { INITIALFINAL, INITIAL, FINAL, NORMAL };
private final Type type;
final @Nullable V value;
@Nullable TransitionTable<V> transitions;
public State(Type type, V value) {
this.type = type;
this.value = value;
}
public void setTransitions(TransitionTable<V> transitions) {
this.transitions = transitions;
}
public boolean isInitialState() {
return type == Type.INITIAL || type == Type.INITIALFINAL;
}
public boolean isFinalState() {
return type == Type.FINAL || type == Type.INITIALFINAL;
}
public @Nullable V getValue() {
return value;
}
public TransitionTable<V> getTransitions() {
return transitions;
}
public <T> State<T> transform(Function<V,T> transformer) {
return new State<T>(type, transformer.apply(value));
}
@Override
public String toString() {
switch (type) {
case INITIALFINAL: return "if" + hashCode();
case INITIAL: return "i" + hashCode();
case FINAL: return "f" + hashCode();
default: return "n" + hashCode();
}
}
}
public static interface TransitionTable<V> {
@Nullable State<V> get(byte symbol);
int getNumTransitions();
void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab);
<T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer);
List<Byte> knownTransitionSymbols();
}
public static enum EmptyTransitionTable implements TransitionTable<Object> {
INSTANCE;
@Override
@Nullable
public State<Object> get(byte symbol) {
return null;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
}
@Override
public int getNumTransitions() {
return 0;
}
@Override
public <T> TransitionTable<T> transform(Map<State<Object>,State<T>> states, Function<Object,T> transformer) {
return (TransitionTable<T>)INSTANCE;
}
@Override
public List<Byte> knownTransitionSymbols() {
return ImmutableList.of();
}
}
public static final class SingletonTransitionTable<V> implements TransitionTable<V> {
private final byte symbol;
private final State<V> state;
public SingletonTransitionTable(byte symbol, State<V> state) {
this.symbol = symbol;
this.state = state;
}
public byte getSymbol() {
return symbol;
}
public State<V> getState() {
return state;
}
@Override
@Nullable
public State<V> get(byte symbol) {
return (this.symbol == symbol) ? state : null;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
appendEdgeToGraph(bld, start, state, names, labelForSymbol(symbol), newline, tab);
}
@Override
public int getNumTransitions() {
return 1;
}
@Override
public <T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer) {
return new SingletonTransitionTable<T>(symbol,states.get(state));
}
@Override
public List<Byte> knownTransitionSymbols() {
return ImmutableList.of(symbol);
}
}
public static final class RangeTransitionTable<V> implements TransitionTable<V> {
private final int lower;
private final int upper;
private final State<V> state;
public RangeTransitionTable(int lower, int upper, State<V> state) {
this.lower = lower;
this.upper = upper;
this.state = state;
}
public int getLower() {
return lower;
}
public int getUpper() {
return upper;
}
public State<V> getState() {
return state;
}
@Override
@Nullable
public State<V> get(byte symbol) {
int sym = symbol & 0xFF;
return (lower <= sym && sym <= upper)
? state
: null;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
String label = labelForSymbol((byte)lower) + "-" + labelForSymbol((byte)upper);
appendEdgeToGraph(bld, start, state, names, label, newline, tab);
}
@Override
public int getNumTransitions() {
return 1;
}
@Override
public <T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer) {
return new RangeTransitionTable<T>(lower,upper,states.get(state));
}
@Override
public List<Byte> knownTransitionSymbols() {
ImmutableList.Builder<Byte> bld = ImmutableList.builder();
for (int i = lower; i <= upper; ++i) {
bld.add((byte)i);
}
return bld.build();
}
}
public static final class AllTransitionTable<V> implements TransitionTable<V> {
private final State<V> state;
public AllTransitionTable(State<V> state) {
this.state = state;
}
public State<V> getState() {
return state;
}
@Override
@Nullable
public State<V> get(byte symbol) {
return state;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
appendEdgeToGraph(bld, start, state, names, ".", newline, tab);
}
@Override
public int getNumTransitions() {
return 1;
}
@Override
public <T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer) {
return new AllTransitionTable<T>(states.get(state));
}
@Override
public List<Byte> knownTransitionSymbols() {
ImmutableList.Builder<Byte> bld = ImmutableList.builder();
for (int i = 0; i <= 255; ++i) {
bld.add((byte)i);
}
return bld.build();
}
}
public static final class LookupTransitionTable<V> implements TransitionTable<V> {
private final int offset;
private final State<V>[] states;
public LookupTransitionTable(State<V>[] states, int offset) {
this.states = states;
this.offset = offset;
}
public int getOffset() {
return offset;
}
public State<V>[] getStates() {
return states;
}
@Override
@Nullable
public State<V> get(byte symbol) {
int idx = (symbol & 0xFF) - offset;
return (idx >= 0 && idx < states.length)
? states[idx]
: null;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
for (int i=0; i<states.length; ++i) {
if (states[i] == null) {
continue;
}
byte symbol = (byte)(i + offset);
appendEdgeToGraph(bld, start, states[i], names, labelForSymbol(symbol), newline, tab);
}
}
@Override
public int getNumTransitions() {
return states.length;
}
@Override
public <T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer) {
State<T>[] newStates = new State[this.states.length];
int i = 0;
for (State<V> state : this.states) {
newStates[i++] = states.get(state);
}
return new LookupTransitionTable<T>(newStates, offset);
}
@Override
public List<Byte> knownTransitionSymbols() {
ImmutableList.Builder<Byte> bld = ImmutableList.builder();
for (int i = 0; i <= states.length; ++i) {
bld.add((byte)(offset + i));
}
return bld.build();
}
}
public static final class AlternatesTransitionTable<V> implements TransitionTable<V> {
private final int[] lowers;
private final TransitionTable<V>[] alternates;
public AlternatesTransitionTable(int[] lowers, TransitionTable<V>[] alternates) {
this.lowers = lowers;
this.alternates = alternates;
}
public int[] getLowers() {
return lowers;
}
public TransitionTable<V>[] getAlternates() {
return alternates;
}
@Override
@Nullable
public State<V> get(byte symbol) {
int sym = symbol & 0xFF;
int idx = Arrays.binarySearch(lowers,sym);
if (idx < 0) {
idx = -(idx + 2);
}
if (idx < 0 || idx >= alternates.length) {
return null;
}
TransitionTable<V> alt = alternates[idx];
return (alt != null) ? alt.get(symbol) : null;
}
@Override
public void toDotGraph(StringBuilder bld, State<?> start, Map<State<?>,String> names, String newline, String tab) {
for (int i = 0; i < alternates.length; ++i) {
if (alternates[i] != null) {
alternates[i].toDotGraph(bld, start, names, newline, tab);
}
}
}
@Override
public int getNumTransitions() {
int num = 0;
for (TransitionTable<V> tt : alternates) {
num += tt.getNumTransitions();
}
return num;
}
@Override
public <T> TransitionTable<T> transform(Map<State<V>,State<T>> states, Function<V,T> transformer) {
TransitionTable<T>[] newAlternates = new TransitionTable[alternates.length];
int i = 0;
for (TransitionTable<V> tt : alternates) {
newAlternates[i++] = tt.transform(states,transformer);
}
return new AlternatesTransitionTable<T>(lowers, newAlternates);
}
@Override
public List<Byte> knownTransitionSymbols() {
ImmutableList.Builder<Byte> bld = ImmutableList.builder();
for (int i = 0; i < alternates.length; ++i) {
bld.addAll(alternates[i].knownTransitionSymbols());
}
return bld.build();
}
}
private static String labelForSymbol(byte symbol) {
int sym = symbol & 0xFF;
if (sym < 16) return "0" + Integer.toHexString(sym);
else return Integer.toHexString(sym);
}
private static void appendEdgeToGraph(StringBuilder bld, State<?> start, State<?> end, Map<State<?>,String> names, String label, String newline, String tab) {
bld.append(tab)
.append(names.get(start))
.append(" -> ")
.append(names.get(end))
.append(" [label=\"")
.append(label)
.append("\"];")
.append(newline);
}
/////////////////////////////////////////////////////////////////////////////
// Builder pattern implementation
/////////////////////////////////////////////////////////////////////////////
public static final class BuilderState<V> {
private final Map<Integer,BuilderState<V>> transitions;
private boolean initialState;
private boolean finalState;
private @Nullable V value;
private BuilderState() {
this.transitions = new TreeMap<>();
}
void addTransition(Byte symbol, BuilderState<V> state) {
BuilderState<V> old = transitions.put(symbol & 0xFF,state);
if (old != null && old != state) {
throw new IllegalStateException("dfa already contains transition for: " + symbol);
}
}
boolean isInitialState() {
return initialState;
}
void setInitialState() {
setInitialState(true);
}
void setInitialState(boolean initialState) {
this.initialState = initialState;
}
boolean isFinalState() {
return finalState;
}
void setFinalState() {
setFinalState(true);
}
void setFinalState(boolean finalState) {
setFinalState(finalState,null);
}
void setFinalState(@Nullable V value) {
setFinalState(true,value);
}
void setFinalState(boolean finalState, @Nullable V value) {
this.finalState = finalState;
this.value = finalState ? value : null;
}
}
public static final class Builder<V> {
private final Set<BuilderState<V>> states;
public Builder() {
this.states = new HashSet<>();
}
public BuilderState<V> createState() {
BuilderState<V> result = new BuilderState<V>();
states.add(result);
return result;
}
public RegexDfaByte<V> build() {
Set<State<V>> states = new LinkedHashSet<>();
State<V> initialState = null;
Map<BuilderState<V>,State<V>> stateMapping = new IdentityHashMap<>();
for (BuilderState<V> state : this.states) {
State<V> st = convert(state);
states.add(st);
if (st.isInitialState()) {
if (initialState != null) {
throw new IllegalStateException("dfa cannot have more than one initial state");
}
initialState = st;
}
stateMapping.put(state,st);
}
for (BuilderState<V> state : this.states) {
convertTransitions(state, stateMapping);
}
if (initialState == null) {
throw new IllegalStateException("dfa must have an initial state");
}
return new RegexDfaByte<>(initialState, states);
}
private static <V> State<V> convert(BuilderState<V> state) {
State.Type type;
if (state.isInitialState() && state.isFinalState()) {
type = State.Type.INITIALFINAL;
} else if (state.isInitialState()) {
type = State.Type.INITIAL;
} else if (state.isFinalState()) {
type = State.Type.FINAL;
} else {
type = State.Type.NORMAL;
}
return new State<>(type,state.value);
}
private static <V> void convertTransitions(BuilderState<V> state, Map<BuilderState<V>,State<V>> stateMapping) {
TransitionTable<V> transitions = null;
switch (state.transitions.size()) {
case 0:
transitions = (TransitionTable<V>)(TransitionTable<?>)EmptyTransitionTable.INSTANCE;
break;
case 1:
Map.Entry<Integer,BuilderState<V>> entry = state.transitions.entrySet().iterator().next();
State<V> st = stateMapping.get(entry.getValue());
transitions = new SingletonTransitionTable<V>((byte)(int)entry.getKey(), st);
break;
default:
transitions = examineTransitions(state, stateMapping);
break;
}
State<V> st = stateMapping.get(state);
st.setTransitions(transitions);
}
private static <V> TransitionTable<V> examineTransitions(BuilderState<V> state, Map<BuilderState<V>,State<V>> stateMapping) {
TransitionRange<V> last = null;
List<TransitionRange<V>> ranges = new ArrayList<>();
for (Map.Entry<Integer,BuilderState<V>> entry : state.transitions.entrySet()) {
int sym = entry.getKey();
State<V> st = stateMapping.get(entry.getValue());
if (last == null) {
last = new TransitionRange<>(sym,sym,st);
ranges.add(last);
continue;
}
int nxt = last.upper + 1;
if (sym == nxt && st == last.state) {
last.upper = sym;
} else {
last = new TransitionRange<>(sym,sym,st);
ranges.add(last);
}
}
if (ranges.size() == 1) {
return simpleTransitions(ranges.get(0));
}
if (ranges.size() < 128) {
int i = 0;
int[] lowers = new int[ranges.size()];
TransitionTable<V>[] alternates = new TransitionTable[ranges.size()];
for (TransitionRange<V> tr : ranges) {
lowers[i] = tr.lower;
alternates[i] = simpleTransitions(tr);
i++;
}
return new AlternatesTransitionTable<V>(lowers, alternates);
} else {
int lower = ranges.get(0).lower;
int upper = ranges.get(ranges.size()-1).upper;
@SuppressWarnings("unchecked")
State<V>[] states = new State[upper - lower + 1];
for (TransitionRange<V> tr : ranges) {
for (int symbol=tr.lower; symbol <= tr.upper; ++symbol) {
states[symbol - lower] = tr.state;
}
}
return new LookupTransitionTable<>(states,lower);
}
}
}
private static <V> TransitionTable<V> simpleTransitions(TransitionRange<V> tr) {
if (tr.lower == 0 && tr.upper == 255) {
return new AllTransitionTable<>(tr.state);
}
if (tr.lower == tr.upper) {
return new SingletonTransitionTable<>((byte)tr.lower, tr.state);
}
return new RangeTransitionTable<>(tr.lower,tr.upper,tr.state);
}
private static final class TransitionRange<V> {
int lower;
int upper;
State<V> state;
public TransitionRange(int lower, int upper, State<V> state) {
this.lower = lower;
this.upper = upper;
this.state = state;
}
}
}
| 28.179882 | 161 | 0.568789 |
add911935672f21b5fe04169d746cacaeb859cc9 | 12,609 | sql | SQL | blog.sql | L-zhicong/BlogApi | 7ae99188e9af3837b7df1418fd748bf366994a5c | [
"Apache-2.0"
] | null | null | null | blog.sql | L-zhicong/BlogApi | 7ae99188e9af3837b7df1418fd748bf366994a5c | [
"Apache-2.0"
] | 1 | 2022-03-09T02:47:50.000Z | 2022-03-09T02:47:50.000Z | blog.sql | L-zhicong/BlogApi | 7ae99188e9af3837b7df1418fd748bf366994a5c | [
"Apache-2.0"
] | null | null | null | SET NAMES utf8mb4;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for article
-- ----------------------------
DROP TABLE IF EXISTS `article`;
CREATE TABLE `article` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) DEFAULT NULL COMMENT '分类id',
`name` varchar(255) DEFAULT NULL,
`logo` varchar(255) DEFAULT NULL,
`title` varchar(255) DEFAULT NULL COMMENT '标题',
`abstract` varchar(255) DEFAULT NULL COMMENT '摘要',
`related_words` varchar(255) DEFAULT NULL COMMENT '关联词',
`source` varchar(255) DEFAULT NULL COMMENT '来源',
`author` varchar(11) DEFAULT NULL COMMENT '作者',
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`status` tinyint(1) DEFAULT '1' COMMENT '发布状态 1发布 2未发布',
`release_time` int(11) DEFAULT NULL COMMENT '发布时间',
`sort` int(11) DEFAULT '0' COMMENT '排序',
`read_num` int(11) DEFAULT '0' COMMENT '阅读量',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8 COMMENT='文章主表';
-- ----------------------------
-- Table structure for article_category
-- ----------------------------
DROP TABLE IF EXISTS `article_category`;
CREATE TABLE `article_category` (
`article_category_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章分类id',
`pid` int(11) NOT NULL DEFAULT '0' COMMENT '父级ID',
`title` varchar(32) NOT NULL COMMENT '文章分类标题',
`info` varchar(255) DEFAULT NULL COMMENT '文章分类简介',
`image` varchar(128) DEFAULT NULL COMMENT '文章分类图片',
`status` tinyint(1) unsigned NOT NULL COMMENT '状态 0异常 1正常',
`sort` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`create_time` int(11) NOT NULL COMMENT '添加时间',
PRIMARY KEY (`article_category_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=37 DEFAULT CHARSET=utf8 COMMENT='文章分类表';
-- ----------------------------
-- Table structure for article_comment
-- ----------------------------
DROP TABLE IF EXISTS `article_comment`;
CREATE TABLE `article_comment` (
`artucle_id` int(11) NOT NULL COMMENT '文章表id',
`uid` int(11) DEFAULT NULL,
`content` text COMMENT '内容',
`pid` int(11) DEFAULT NULL COMMENT '评论回复父级id',
PRIMARY KEY (`artucle_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章评论表';
-- ----------------------------
-- Table structure for article_content
-- ----------------------------
DROP TABLE IF EXISTS `article_content`;
CREATE TABLE `article_content` (
`article_content_id` int(10) unsigned NOT NULL COMMENT '文章id',
`content` longtext NOT NULL COMMENT '文章内容',
UNIQUE KEY `article_content_id` (`article_content_id`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='文章内容表';
-- ----------------------------
-- Table structure for article_fabulous
-- ----------------------------
DROP TABLE IF EXISTS `article_fabulous`;
CREATE TABLE `article_fabulous` (
`article_id` int(11) NOT NULL,
`uid` int(11) DEFAULT NULL,
`status` tinyint(1) DEFAULT '1' COMMENT '状态 0取消点赞 1点赞'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='文章点赞表';
-- ----------------------------
-- Table structure for music
-- ----------------------------
DROP TABLE IF EXISTS `music`;
CREATE TABLE `music` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL,
`url` varchar(255) NOT NULL,
`poster_url` varchar(255) NOT NULL,
`lyrics` text NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for myhomepage
-- ----------------------------
DROP TABLE IF EXISTS `myhomepage`;
CREATE TABLE `myhomepage` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(5) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '名称',
`remarks` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '简介',
`is_app` tinyint(1) DEFAULT '1' COMMENT '是否应用 0不是 1是',
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`is_del` tinyint(1) DEFAULT '0' COMMENT '是否删除 ',
`introduce` text COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for myhomepage_img
-- ----------------------------
DROP TABLE IF EXISTS `myhomepage_img`;
CREATE TABLE `myhomepage_img` (
`id` int(11) NOT NULL,
`home_id` int(11) NOT NULL COMMENT '主页id',
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '图片类型名称',
`is_del` tinyint(1) DEFAULT NULL COMMENT '是否删除',
`url` varchar(255) COLLATE utf8_unicode_ci NOT NULL COMMENT 'url',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for myhomepage_letter
-- ----------------------------
DROP TABLE IF EXISTS `myhomepage_letter`;
CREATE TABLE `myhomepage_letter` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(20) NOT NULL,
`email` varchar(30) NOT NULL,
`message` text NOT NULL,
`ip` varchar(40) NOT NULL,
`create_time` int(11) DEFAULT NULL,
`update_time` int(11) DEFAULT NULL,
`is_del` int(1) DEFAULT '0',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=67 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Table structure for myhomepage_skills
-- ----------------------------
DROP TABLE IF EXISTS `myhomepage_skills`;
CREATE TABLE `myhomepage_skills` (
`home_id` int(11) NOT NULL COMMENT '主页id',
`name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT '技能名称',
`schedule` int(2) DEFAULT NULL COMMENT '掌握进度'
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- ----------------------------
-- Table structure for system_admin
-- ----------------------------
DROP TABLE IF EXISTS `system_admin`;
CREATE TABLE `system_admin` (
`admin_id` int(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '后台管理员表ID',
`account` varchar(32) NOT NULL COMMENT '后台管理员账号',
`pwd` varchar(64) NOT NULL COMMENT '后台管理员密码',
`real_name` varchar(16) NOT NULL COMMENT '后台管理员姓名',
`phone` varchar(12) DEFAULT NULL COMMENT '联系电话',
`roles` varchar(128) NOT NULL COMMENT '后台管理员权限(role_id), 多个逗号分隔',
`last_ip` varchar(16) DEFAULT NULL COMMENT '后台管理员最后一次登录ip',
`last_time` int(11) DEFAULT NULL COMMENT '后台管理员最后一次登录时间',
`login_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '登录次数',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '后台管理员状态 1有效0无效',
`level` tinyint(3) unsigned NOT NULL DEFAULT '1',
`is_del` tinyint(1) unsigned NOT NULL DEFAULT '0',
`create_time` int(11) DEFAULT NULL COMMENT '后台管理员添加时间',
`update_time` int(11) DEFAULT NULL COMMENT '后台管理员编辑时间',
PRIMARY KEY (`admin_id`) USING BTREE,
KEY `account` (`account`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='后台管理员表';
-- ----------------------------
-- Records of system_admin
-- ----------------------------
BEGIN;
INSERT INTO `system_admin` (`admin_id`, `account`, `pwd`, `real_name`, `phone`, `roles`, `last_ip`, `last_time`, `login_count`, `status`, `level`, `is_del`, `create_time`, `update_time`) VALUES (2, 'admin', 'dce9b4bf4ee9c5085e6f434a2635a100', '梁智聪', '14778363135', '2', '10.42.0.1', 1651118404, 693, 1, 0, 0, NULL, 1651118404);
INSERT INTO `system_admin` (`admin_id`, `account`, `pwd`, `real_name`, `phone`, `roles`, `last_ip`, `last_time`, `login_count`, `status`, `level`, `is_del`, `create_time`, `update_time`) VALUES (3, 'yaoguai1', 'fcea920f7412b5da7be0cf42b8c93759', '梁智聪', '18707664170', '2', NULL, NULL, 0, 1, 1, 0, 1645153126, 1648267819);
COMMIT;
-- ----------------------------
-- Table structure for system_menu
-- ----------------------------
DROP TABLE IF EXISTS `system_menu`;
CREATE TABLE `system_menu` (
`menu_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '菜单ID',
`pid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '父级id',
`path` varchar(512) NOT NULL COMMENT '路径',
`icon` varchar(32) DEFAULT '' COMMENT '图标',
`menu_name` varchar(128) NOT NULL DEFAULT '' COMMENT '按钮名',
`route` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT '路由名称',
`sort` tinyint(3) NOT NULL DEFAULT '1' COMMENT '排序',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否显示',
`plat_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '模块,1 后台平台,2-博客 ',
`is_menu` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '类型,1菜单 0 权限',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL COMMENT '创建时间',
PRIMARY KEY (`menu_id`) USING BTREE,
KEY `pid` (`pid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=183 DEFAULT CHARSET=utf8 COMMENT='菜单表';
-- ----------------------------
-- Records of system_menu
-- ----------------------------
BEGIN;
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (7, 0, '/', 'el-icon-s-tools', '设置', '/settings', 1, 1, 1, 1, 1615259641, 1619499036);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (9, 7, '/7/', '', '权限管理', '/setting', 1, 1, 1, 1, 1619352594, 1619500336);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (10, 9, '/7/9/', '', '菜单管理', '/setting/menu', 1, 1, 1, 1, 1619352594, 1619352594);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (28, 9, '/7/9/', NULL, '管理员管理', '/setting/systemAdmin', 0, 1, 1, 1, 1619403186, 1619403186);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (29, 9, '/7/9/', NULL, '身份管理', '/setting/systemRole', 0, 1, 1, 1, 1619403218, 1619403218);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (172, 0, '/', 'el-icon-edit', '文章管理', '/article', 0, 1, 1, 1, 1623401662, 1623401662);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (173, 172, '/172/', '', '文章列表', '/article/list', 0, 1, 1, 1, 1623401679, 1623401679);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (174, 172, '/172/', '', '分类列表', '/article/category', 0, 1, 1, 1, 1623401697, 1623401697);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (176, 0, '/', 'el-icon-s-tools', '个人资料管理', '/mydataManage', 1, 1, 1, 1, 1645424815, 1645424815);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (181, 176, '/176/', '', '主页管理', '/mydataManage/myhomepage', 1, 1, 1, 1, 2022, 1645425391);
INSERT INTO `system_menu` (`menu_id`, `pid`, `path`, `icon`, `menu_name`, `route`, `sort`, `is_show`, `plat_type`, `is_menu`, `create_time`, `update_time`) VALUES (182, 176, '/176/', '', '博客管理', '/mydataManage/myblog', 1, 1, 1, 1, 1645425240, 1645425240);
COMMIT;
-- ----------------------------
-- Table structure for system_role
-- ----------------------------
DROP TABLE IF EXISTS `system_role`;
CREATE TABLE `system_role` (
`role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '身份管理id',
`role_name` varchar(32) NOT NULL COMMENT '身份管理名称',
`rules` text NOT NULL COMMENT '身份管理权限(menus_id)',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态',
`plat_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '模块,1 平台',
`plat_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '对应平台id',
`create_time` int(11) NOT NULL COMMENT '创建时间',
`update_time` int(11) NOT NULL COMMENT '更新时间',
PRIMARY KEY (`role_id`) USING BTREE,
KEY `mer_id` (`plat_id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='身份管理表';
-- ----------------------------
-- Records of system_role
-- ----------------------------
BEGIN;
INSERT INTO `system_role` (`role_id`, `role_name`, `rules`, `status`, `plat_type`, `plat_id`, `create_time`, `update_time`) VALUES (2, '管理员', '1,2,8,3,5,6,36,37,57,7,9,10,26,35,38,39,40,54,11,28,41,42,43,44,45,46,47,29,48,49,50,51,52,53', 1, 1, 1, 1615342124, 1645165023);
COMMIT;
SET FOREIGN_KEY_CHECKS = 1;
| 52.978992 | 327 | 0.645571 |
92cc7ce6f67c9206f6ec2d206f6d236fccb4f339 | 7,088 | h | C | chain_flow/Pin_System_Definition.cydsn/Generated_Source/PSoC5/current_24_v_a2.h | glenn-edgar/psoc_5lp_moisture_sensor | 48040f4a8813cfd472f774a879be4936fa989f65 | [
"MIT"
] | null | null | null | chain_flow/Pin_System_Definition.cydsn/Generated_Source/PSoC5/current_24_v_a2.h | glenn-edgar/psoc_5lp_moisture_sensor | 48040f4a8813cfd472f774a879be4936fa989f65 | [
"MIT"
] | null | null | null | chain_flow/Pin_System_Definition.cydsn/Generated_Source/PSoC5/current_24_v_a2.h | glenn-edgar/psoc_5lp_moisture_sensor | 48040f4a8813cfd472f774a879be4936fa989f65 | [
"MIT"
] | null | null | null | /*******************************************************************************
* File Name: current_24_v_a2.h
* Version 2.20
*
* Description:
* This file contains Pin function prototypes and register defines
*
* Note:
*
********************************************************************************
* Copyright 2008-2015, Cypress Semiconductor Corporation. All rights reserved.
* You may use this file only in accordance with the license, terms, conditions,
* disclaimers, and limitations in the end user license agreement accompanying
* the software package with which this file was provided.
*******************************************************************************/
#if !defined(CY_PINS_current_24_v_a2_H) /* Pins current_24_v_a2_H */
#define CY_PINS_current_24_v_a2_H
#include "cytypes.h"
#include "cyfitter.h"
#include "cypins.h"
#include "current_24_v_a2_aliases.h"
/* APIs are not generated for P15[7:6] */
#if !(CY_PSOC5A &&\
current_24_v_a2__PORT == 15 && ((current_24_v_a2__MASK & 0xC0) != 0))
/***************************************
* Function Prototypes
***************************************/
/**
* \addtogroup group_general
* @{
*/
void current_24_v_a2_Write(uint8 value);
void current_24_v_a2_SetDriveMode(uint8 mode);
uint8 current_24_v_a2_ReadDataReg(void);
uint8 current_24_v_a2_Read(void);
void current_24_v_a2_SetInterruptMode(uint16 position, uint16 mode);
uint8 current_24_v_a2_ClearInterrupt(void);
/** @} general */
/***************************************
* API Constants
***************************************/
/**
* \addtogroup group_constants
* @{
*/
/** \addtogroup driveMode Drive mode constants
* \brief Constants to be passed as "mode" parameter in the current_24_v_a2_SetDriveMode() function.
* @{
*/
#define current_24_v_a2_DM_ALG_HIZ PIN_DM_ALG_HIZ
#define current_24_v_a2_DM_DIG_HIZ PIN_DM_DIG_HIZ
#define current_24_v_a2_DM_RES_UP PIN_DM_RES_UP
#define current_24_v_a2_DM_RES_DWN PIN_DM_RES_DWN
#define current_24_v_a2_DM_OD_LO PIN_DM_OD_LO
#define current_24_v_a2_DM_OD_HI PIN_DM_OD_HI
#define current_24_v_a2_DM_STRONG PIN_DM_STRONG
#define current_24_v_a2_DM_RES_UPDWN PIN_DM_RES_UPDWN
/** @} driveMode */
/** @} group_constants */
/* Digital Port Constants */
#define current_24_v_a2_MASK current_24_v_a2__MASK
#define current_24_v_a2_SHIFT current_24_v_a2__SHIFT
#define current_24_v_a2_WIDTH 1u
/* Interrupt constants */
#if defined(current_24_v_a2__INTSTAT)
/**
* \addtogroup group_constants
* @{
*/
/** \addtogroup intrMode Interrupt constants
* \brief Constants to be passed as "mode" parameter in current_24_v_a2_SetInterruptMode() function.
* @{
*/
#define current_24_v_a2_INTR_NONE (uint16)(0x0000u)
#define current_24_v_a2_INTR_RISING (uint16)(0x0001u)
#define current_24_v_a2_INTR_FALLING (uint16)(0x0002u)
#define current_24_v_a2_INTR_BOTH (uint16)(0x0003u)
/** @} intrMode */
/** @} group_constants */
#define current_24_v_a2_INTR_MASK (0x01u)
#endif /* (current_24_v_a2__INTSTAT) */
/***************************************
* Registers
***************************************/
/* Main Port Registers */
/* Pin State */
#define current_24_v_a2_PS (* (reg8 *) current_24_v_a2__PS)
/* Data Register */
#define current_24_v_a2_DR (* (reg8 *) current_24_v_a2__DR)
/* Port Number */
#define current_24_v_a2_PRT_NUM (* (reg8 *) current_24_v_a2__PRT)
/* Connect to Analog Globals */
#define current_24_v_a2_AG (* (reg8 *) current_24_v_a2__AG)
/* Analog MUX bux enable */
#define current_24_v_a2_AMUX (* (reg8 *) current_24_v_a2__AMUX)
/* Bidirectional Enable */
#define current_24_v_a2_BIE (* (reg8 *) current_24_v_a2__BIE)
/* Bit-mask for Aliased Register Access */
#define current_24_v_a2_BIT_MASK (* (reg8 *) current_24_v_a2__BIT_MASK)
/* Bypass Enable */
#define current_24_v_a2_BYP (* (reg8 *) current_24_v_a2__BYP)
/* Port wide control signals */
#define current_24_v_a2_CTL (* (reg8 *) current_24_v_a2__CTL)
/* Drive Modes */
#define current_24_v_a2_DM0 (* (reg8 *) current_24_v_a2__DM0)
#define current_24_v_a2_DM1 (* (reg8 *) current_24_v_a2__DM1)
#define current_24_v_a2_DM2 (* (reg8 *) current_24_v_a2__DM2)
/* Input Buffer Disable Override */
#define current_24_v_a2_INP_DIS (* (reg8 *) current_24_v_a2__INP_DIS)
/* LCD Common or Segment Drive */
#define current_24_v_a2_LCD_COM_SEG (* (reg8 *) current_24_v_a2__LCD_COM_SEG)
/* Enable Segment LCD */
#define current_24_v_a2_LCD_EN (* (reg8 *) current_24_v_a2__LCD_EN)
/* Slew Rate Control */
#define current_24_v_a2_SLW (* (reg8 *) current_24_v_a2__SLW)
/* DSI Port Registers */
/* Global DSI Select Register */
#define current_24_v_a2_PRTDSI__CAPS_SEL (* (reg8 *) current_24_v_a2__PRTDSI__CAPS_SEL)
/* Double Sync Enable */
#define current_24_v_a2_PRTDSI__DBL_SYNC_IN (* (reg8 *) current_24_v_a2__PRTDSI__DBL_SYNC_IN)
/* Output Enable Select Drive Strength */
#define current_24_v_a2_PRTDSI__OE_SEL0 (* (reg8 *) current_24_v_a2__PRTDSI__OE_SEL0)
#define current_24_v_a2_PRTDSI__OE_SEL1 (* (reg8 *) current_24_v_a2__PRTDSI__OE_SEL1)
/* Port Pin Output Select Registers */
#define current_24_v_a2_PRTDSI__OUT_SEL0 (* (reg8 *) current_24_v_a2__PRTDSI__OUT_SEL0)
#define current_24_v_a2_PRTDSI__OUT_SEL1 (* (reg8 *) current_24_v_a2__PRTDSI__OUT_SEL1)
/* Sync Output Enable Registers */
#define current_24_v_a2_PRTDSI__SYNC_OUT (* (reg8 *) current_24_v_a2__PRTDSI__SYNC_OUT)
/* SIO registers */
#if defined(current_24_v_a2__SIO_CFG)
#define current_24_v_a2_SIO_HYST_EN (* (reg8 *) current_24_v_a2__SIO_HYST_EN)
#define current_24_v_a2_SIO_REG_HIFREQ (* (reg8 *) current_24_v_a2__SIO_REG_HIFREQ)
#define current_24_v_a2_SIO_CFG (* (reg8 *) current_24_v_a2__SIO_CFG)
#define current_24_v_a2_SIO_DIFF (* (reg8 *) current_24_v_a2__SIO_DIFF)
#endif /* (current_24_v_a2__SIO_CFG) */
/* Interrupt Registers */
#if defined(current_24_v_a2__INTSTAT)
#define current_24_v_a2_INTSTAT (* (reg8 *) current_24_v_a2__INTSTAT)
#define current_24_v_a2_SNAP (* (reg8 *) current_24_v_a2__SNAP)
#define current_24_v_a2_0_INTTYPE_REG (* (reg8 *) current_24_v_a2__0__INTTYPE)
#endif /* (current_24_v_a2__INTSTAT) */
#endif /* CY_PSOC5A... */
#endif /* CY_PINS_current_24_v_a2_H */
/* [] END OF FILE */
| 42.698795 | 104 | 0.623166 |
74d276e04abb8b766f9756502a7d19365d7b5a37 | 127 | ps1 | PowerShell | iis/manage/powershell/powershell-snap-in-advanced-configuration-tasks/samples/sample6.ps1 | mitchelsellers/iis-docs | 376c5b4a1b88b807eb8dbe7c63ba7cd9c59f7429 | [
"CC-BY-4.0",
"MIT"
] | 90 | 2017-06-13T19:56:04.000Z | 2022-03-15T16:42:09.000Z | iis/manage/powershell/powershell-snap-in-advanced-configuration-tasks/samples/sample6.ps1 | mitchelsellers/iis-docs | 376c5b4a1b88b807eb8dbe7c63ba7cd9c59f7429 | [
"CC-BY-4.0",
"MIT"
] | 453 | 2017-05-22T18:00:05.000Z | 2022-03-30T21:07:55.000Z | iis/manage/powershell/powershell-snap-in-advanced-configuration-tasks/samples/sample6.ps1 | mitchelsellers/iis-docs | 376c5b4a1b88b807eb8dbe7c63ba7cd9c59f7429 | [
"CC-BY-4.0",
"MIT"
] | 343 | 2017-05-26T08:57:30.000Z | 2022-03-25T23:05:04.000Z | get-webconfiguration //* | where {$_.psbase.SectionPath -like "*" -and $_.psbase.SectionPath.length -gt 0} | select SectionPath | 127 | 127 | 0.732283 |
d7833f5ff8e412e30b12faff31fb9a1a534df0b9 | 486 | dart | Dart | Health Patron/lib/widgets/reusable_container.dart | FarishtaJayas/Hospital-Companion-App | 551b3eaadd925f6c193b537f72ea71aa6c49d7f7 | [
"MIT"
] | null | null | null | Health Patron/lib/widgets/reusable_container.dart | FarishtaJayas/Hospital-Companion-App | 551b3eaadd925f6c193b537f72ea71aa6c49d7f7 | [
"MIT"
] | null | null | null | Health Patron/lib/widgets/reusable_container.dart | FarishtaJayas/Hospital-Companion-App | 551b3eaadd925f6c193b537f72ea71aa6c49d7f7 | [
"MIT"
] | null | null | null | import 'package:flutter/material.dart';
class ReusableContainer extends StatelessWidget {
final Color chooseColor;
final Widget childWidget;
ReusableContainer({this.childWidget, @required this.chooseColor});
@override
Widget build(BuildContext context) {
return Container(
child: childWidget,
margin: EdgeInsets.all(10.0),
decoration: BoxDecoration(
borderRadius: BorderRadius.circular(10.0),
color: chooseColor,
),
);
}
}
| 23.142857 | 68 | 0.697531 |
98a0d69623d43dc9e8158c8af5785645687d8118 | 633 | html | HTML | app/templates/project_page.html | Nicolas1st/versionControlWebsite | 4bcbcc654d3c3ac238c2d0d60b5e0bb684df3357 | [
"MIT"
] | null | null | null | app/templates/project_page.html | Nicolas1st/versionControlWebsite | 4bcbcc654d3c3ac238c2d0d60b5e0bb684df3357 | [
"MIT"
] | null | null | null | app/templates/project_page.html | Nicolas1st/versionControlWebsite | 4bcbcc654d3c3ac238c2d0d60b5e0bb684df3357 | [
"MIT"
] | null | null | null | {% extends "project_page_base.html" %}
{% block items %}
<div class="padding-top">
{% for file_name in file_names %}
<div class="panel panel-primary">
<div class="panel-heading">
<span class="badge pull-right custom-badge">
<a href="{{url_for('see_file_contents', project_name=project_name, commit_number=commit_name, file_name=file_name)}}"> See Source </a>
</span>
<h3 class="panel-title"> {{ file_name }} </h3>
</div>
</div>
{% endfor %}
</div>
{% endblock items %} | 39.5625 | 158 | 0.511848 |
569396ce2405b660bcb7adf364e2461c2f117497 | 1,098 | go | Go | vendor/gprovision/pkg/log/flags/flags.go | mpictor/cfa | 65abd42d0cfcb7c5d5d013d57254670793dc2eb4 | [
"BSD-3-Clause"
] | 2 | 2020-04-23T15:30:57.000Z | 2020-10-06T13:34:07.000Z | vendor/gprovision/pkg/log/flags/flags.go | mpictor/cfa | 65abd42d0cfcb7c5d5d013d57254670793dc2eb4 | [
"BSD-3-Clause"
] | null | null | null | vendor/gprovision/pkg/log/flags/flags.go | mpictor/cfa | 65abd42d0cfcb7c5d5d013d57254670793dc2eb4 | [
"BSD-3-Clause"
] | 2 | 2021-07-22T10:30:31.000Z | 2022-02-17T10:08:02.000Z | // Copyright (C) 2015-2020 the Gprovision Authors. All Rights Reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
// SPDX-License-Identifier: BSD-3-Clause
//
package flags
import (
"encoding/json"
"fmt"
"strings"
)
type Flag int
const (
NA Flag = 0
//ok to display message to end user
EndUser Flag = 1 << (iota - 1) //iota increments with first ConstSpec in the const declaration, so subtract 1
//logging a fatal error
Fatal
//do not write to local file log
NotFile
//do not write over the wire (not sure there'd be any use?)
NotWire
)
func (f Flag) MarshalJSON() ([]byte, error) { return json.Marshal(f.String()) }
func (f Flag) String() string {
switch f {
case NA:
return ""
case EndUser:
return "user"
case Fatal:
return "fatal"
case NotFile:
return "not file"
case NotWire:
return "not wire"
}
for _, bit := range []Flag{EndUser, Fatal, NotFile, NotWire} {
if f&bit > 0 {
return strings.Join([]string{bit.String(), (f &^ bit).String()}, "|")
}
}
return fmt.Sprintf("0x%x", int(f))
}
| 21.115385 | 110 | 0.667577 |
8af5963db9613b3eeedbcf9cc37f42d128cc510a | 224,176 | lua | Lua | assets/maps/slide.lua | qwook/dpsht | 627a0980c258d92c719e02326197d55738125ed1 | [
"MIT"
] | null | null | null | assets/maps/slide.lua | qwook/dpsht | 627a0980c258d92c719e02326197d55738125ed1 | [
"MIT"
] | null | null | null | assets/maps/slide.lua | qwook/dpsht | 627a0980c258d92c719e02326197d55738125ed1 | [
"MIT"
] | null | null | null | return {
version = "1.1",
luaversion = "5.1",
orientation = "orthogonal",
width = 100,
height = 100,
tilewidth = 32,
tileheight = 32,
properties = {},
tilesets = {
{
name = "tilemap2",
firstgid = 1,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/tilemap2.png",
imagewidth = 256,
imageheight = 512,
properties = {},
tiles = {}
},
{
name = "collision",
firstgid = 129,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/collision.gif",
imagewidth = 160,
imageheight = 32,
properties = {},
tiles = {
{
id = 0,
properties = {
["colshape"] = "1"
}
},
{
id = 1,
properties = {
["colshape"] = "2"
}
},
{
id = 2,
properties = {
["colshape"] = "3"
}
},
{
id = 3,
properties = {
["colshape"] = "4"
}
},
{
id = 4,
properties = {
["colshape"] = "5"
}
}
}
},
{
name = "OrangeA",
firstgid = 134,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/Tiles_1_A_orange.png",
imagewidth = 416,
imageheight = 128,
properties = {},
tiles = {}
},
{
name = "Tiles_1_A_blue",
firstgid = 186,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/Tiles_1_A_blue.png",
imagewidth = 416,
imageheight = 128,
properties = {},
tiles = {}
},
{
name = "Tiles_1_A_green",
firstgid = 238,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/Tiles_1_A_green.png",
imagewidth = 416,
imageheight = 128,
properties = {},
tiles = {}
},
{
name = "generic_box",
firstgid = 290,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/box_generic.png",
imagewidth = 32,
imageheight = 32,
properties = {},
tiles = {}
},
{
name = "button",
firstgid = 291,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/button_blue.png",
imagewidth = 64,
imageheight = 32,
properties = {},
tiles = {}
},
{
name = "tramp",
firstgid = 293,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/trampoline.png",
imagewidth = 96,
imageheight = 32,
properties = {},
tiles = {}
},
{
name = "angled_tramp",
firstgid = 296,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/trampoline_angled.png",
imagewidth = 96,
imageheight = 32,
properties = {},
tiles = {}
},
{
name = "orange2",
firstgid = 299,
tilewidth = 32,
tileheight = 32,
spacing = 0,
margin = 0,
image = "../sprites/Tiles_1_B_orange.png",
imagewidth = 416,
imageheight = 128,
properties = {},
tiles = {}
}
},
layers = {
{
type = "imagelayer",
name = "Background",
visible = true,
opacity = 1,
image = "../backgrounds/bgConcept1_big.png",
properties = {}
},
{
type = "tilelayer",
name = "SharedLayer",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 1,
properties = {},
encoding = "lua",
data = {
1610612871, 134, 134, 135, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610613035, 147, 147, 1610613035, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610613035, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1610612870, 147, 147, 2684354694, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2684354859, 147, 147, 325, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 134, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 2684354879, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 312, 2684354879, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 312, 312, 2684354879, 299, 2684354878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 312, 312, 312, 312, 2684354879, 2684354878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 312, 312, 312, 312, 312, 2684354879, 2684354878, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 147, 312, 312, 312, 312, 312, 312, 2684354879, 2684354878, 0, 0, 0, 0, 0, 0, 0, 0, 305, 299, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 300, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225606, 3221225797, 312, 312, 312, 312, 312, 312, 2684354879, 2684354878, 0, 0, 0, 0, 0, 0, 318, 319, 312, 2684354879, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 319, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1610613035, 312, 312, 312, 312, 312, 312, 312, 325, 316, 299, 299, 299, 299, 299, 1610613061, 312, 312, 312, 2684354879, 2684354865, 0, 0, 0, 0, 0, 0, 0, 0, 0, 305, 299, 299, 319, 312, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1610613035, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 2684354879, 2684354865, 0, 0, 0, 0, 0, 0, 0, 305, 319, 312, 312, 312, 312, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225772, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225797, 312, 312, 312, 2684354879, 2684354865, 0, 0, 0, 0, 0, 305, 319, 312, 312, 312, 312, 312, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1610613035, 312, 312, 312, 312, 2684354879, 299, 299, 299, 299, 299, 1610613061, 312, 312, 312, 312, 312, 312, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225772, 3221225797, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 312, 2684354859, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225772, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 3221225771, 2684354860, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "tilelayer",
name = "BlueLayer",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 1,
properties = {},
encoding = "lua",
data = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "tilelayer",
name = "GreenLayer",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 1,
properties = {},
encoding = "lua",
data = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "objectgroup",
name = "Objects",
visible = true,
opacity = 1,
properties = {},
objects = {
{
name = "player1",
type = "",
shape = "rectangle",
x = 213,
y = 147,
width = 0,
height = 0,
gid = 13,
visible = true,
properties = {}
},
{
name = "player2",
type = "",
shape = "rectangle",
x = 274,
y = 142,
width = 0,
height = 0,
gid = 13,
visible = true,
properties = {}
},
{
name = "",
type = "Trigger",
shape = "rectangle",
x = 1727,
y = 505,
width = 329,
height = 231,
visible = true,
properties = {
["ontrigger"] = "activator:teleportTo(player1)"
}
}
}
},
{
type = "tilelayer",
name = "SharedCollision",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 0.48,
properties = {},
encoding = "lua",
data = {
129, 129, 129, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 130, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 130, 129, 129, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 129, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 0, 129, 129, 132, 0, 0, 0, 0, 0, 0, 0, 0, 0, 130, 129, 129, 129, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 0, 0, 130, 129, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 0, 0, 0, 129, 132, 0, 0, 0, 0, 0, 130, 129, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 0, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 129, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "tilelayer",
name = "BlueCollision",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 0.48,
properties = {},
encoding = "lua",
data = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "tilelayer",
name = "GreenCollision",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 0.28,
properties = {},
encoding = "lua",
data = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
},
{
type = "tilelayer",
name = "Decoration",
x = 0,
y = 0,
width = 100,
height = 100,
visible = true,
opacity = 1,
properties = {},
encoding = "lua",
data = {
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 168, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 168, 2684354742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 168, 168, 168, 168, 168, 2684354742, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 171, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 168, 143, 143, 0, 0, 168, 168, 168, 168, 168, 168, 168, 168, 168, 2684354742, 0, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 168, 0, 0, 143, 143, 143, 143, 143, 0, 0, 0, 0, 0, 0, 168, 168, 168, 1610613083, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354907, 1610613083, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354907, 1610613083, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
147, 147, 147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354907, 1610613083, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354907, 1610613083, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225822, 1610613086, 2684354910, 350, 2684354910, 350, 3221225822, 1610613086, 0, 324, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225818, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3221225818, 0, 336, 0, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354906, 0, 0, 334, 0, 0, 0, 0, 0, 0, 0, 3221225818, 0, 336, 0, 0, 0, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2684354906, 0, 0, 336, 337, 336, 337, 336, 337, 336, 0, 0, 336, 336, 336, 336, 336, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
}
}
}
}
| 218.070039 | 545 | 0.333707 |
fda352aebb6b2773d1474a6f39f96588d1e6219d | 3,544 | asm | Assembly | main.asm | Kenneth-Sweet/GameBoyCProj | cccb47969b6beb275a286bdb5d4412cc28431978 | [
"MIT"
] | null | null | null | main.asm | Kenneth-Sweet/GameBoyCProj | cccb47969b6beb275a286bdb5d4412cc28431978 | [
"MIT"
] | null | null | null | main.asm | Kenneth-Sweet/GameBoyCProj | cccb47969b6beb275a286bdb5d4412cc28431978 | [
"MIT"
] | null | null | null | ;--------------------------------------------------------
; File Created by SDCC : free open source ANSI-C Compiler
; Version 4.1.6 #12539 (MINGW32)
;--------------------------------------------------------
.module main
.optsdcc -mgbz80
;--------------------------------------------------------
; Public variables in this module
;--------------------------------------------------------
.globl _main
.globl _set_sprite_data
.globl _delay
.globl _SampleSmile
;--------------------------------------------------------
; special function registers
;--------------------------------------------------------
;--------------------------------------------------------
; ram data
;--------------------------------------------------------
.area _DATA
;--------------------------------------------------------
; ram data
;--------------------------------------------------------
.area _INITIALIZED
_SampleSmile::
.ds 32
;--------------------------------------------------------
; absolute external ram data
;--------------------------------------------------------
.area _DABS (ABS)
;--------------------------------------------------------
; global & static initialisations
;--------------------------------------------------------
.area _HOME
.area _GSINIT
.area _GSFINAL
.area _GSINIT
;--------------------------------------------------------
; Home
;--------------------------------------------------------
.area _HOME
.area _HOME
;--------------------------------------------------------
; code
;--------------------------------------------------------
.area _CODE
;main.c:5: void main(){
; ---------------------------------
; Function main
; ---------------------------------
_main::
;main.c:7: UINT8 currentSpriteIndex = 0;
ld c, #0x00
;main.c:8: set_sprite_data(0,2, SampleSmile);
ld de, #_SampleSmile
push de
ld hl, #0x200
push hl
call _set_sprite_data
add sp, #4
;c:/gbdk/include/gb/gb.h:1447: shadow_OAM[nb].tile=tile;
ld hl, #(_shadow_OAM + 2)
ld (hl), #0x00
;c:/gbdk/include/gb/gb.h:1520: OAM_item_t * itm = &shadow_OAM[nb];
ld hl, #_shadow_OAM
;c:/gbdk/include/gb/gb.h:1521: itm->y=y, itm->x=x;
ld a, #0x4e
ld (hl+), a
ld (hl), #0x58
;main.c:11: SHOW_SPRITES;
ldh a, (_LCDC_REG + 0)
or a, #0x02
ldh (_LCDC_REG + 0), a
;main.c:12: while(1){
00105$:
;main.c:13: if(currentSpriteIndex==0){
ld a, c
or a, a
;main.c:14: currentSpriteIndex=1;
;main.c:17: currentSpriteIndex = 0;
ld c, #0x01
jr Z, 00103$
ld c, #0x00
00103$:
;c:/gbdk/include/gb/gb.h:1447: shadow_OAM[nb].tile=tile;
ld hl, #(_shadow_OAM + 2)
ld (hl), c
;main.c:20: delay(1000);
push bc
ld de, #0x03e8
push de
call _delay
pop hl
pop bc
;c:/gbdk/include/gb/gb.h:1536: OAM_item_t * itm = &shadow_OAM[nb];
ld de, #_shadow_OAM+0
;c:/gbdk/include/gb/gb.h:1537: itm->y+=y, itm->x+=x;
ld a, (de)
ld (de), a
inc de
ld a, (de)
add a, #0x0a
ld (de), a
;main.c:21: scroll_sprite(0,10,0);
;main.c:23: }
jr 00105$
.area _CODE
.area _INITIALIZER
__xinit__SampleSmile:
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x77 ; 119 'w'
.db #0x77 ; 119 'w'
.db #0x77 ; 119 'w'
.db #0x55 ; 85 'U'
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x63 ; 99 'c'
.db #0x41 ; 65 'A'
.db #0x7f ; 127
.db #0x7f ; 127
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x77 ; 119 'w'
.db #0x77 ; 119 'w'
.db #0x77 ; 119 'w'
.db #0x55 ; 85 'U'
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x00 ; 0
.db #0x7f ; 127
.db #0x7f ; 127
.db #0x7f ; 127
.db #0x41 ; 65 'A'
.db #0x00 ; 0
.db #0x00 ; 0
.area _CABS (ABS)
| 24.611111 | 66 | 0.430587 |
76fe6e39aa11c3c70c150f07d0803d4934287614 | 1,274 | h | C | src/Private/AnimSceneActions/SetHelpInfoAction.h | heltena/KYEngine | 4ccb89d0b20683feb245ffe85dd34b6ffdc42c8e | [
"MIT"
] | null | null | null | src/Private/AnimSceneActions/SetHelpInfoAction.h | heltena/KYEngine | 4ccb89d0b20683feb245ffe85dd34b6ffdc42c8e | [
"MIT"
] | null | null | null | src/Private/AnimSceneActions/SetHelpInfoAction.h | heltena/KYEngine | 4ccb89d0b20683feb245ffe85dd34b6ffdc42c8e | [
"MIT"
] | null | null | null | #pragma once
#include <tinyxml.h>
#include <KYEngine/Action.h>
#include <KYEngine/Utility/Vector4.h>
#include <string>
class AnimSceneFactory;
class SetHelpInfoAction
: public Action
{
public:
SetHelpInfoAction();
virtual ~SetHelpInfoAction();
public:
static const std::string XML_NODE;
static SetHelpInfoAction* readFromXml(TiXmlElement* node);
// Action implementation
public:
const std::string& name() const { return m_name; }
void start(SceneTimelineInfo* info);
void stop(SceneTimelineInfo* info) { }
bool isBlocking();
bool isFinished();
bool isUsingEntity(const std::string& name) { return false; }
void update(const double elapsedTime, SceneTimelineInfo* info);
public:
void setName(const std::string& name) { m_name = name; }
void setSceneRef(const std::string& sceneRef) { m_sceneRef = sceneRef; }
void setLevel(int level) { m_level = level; }
void setUseMusicRef(bool useMusicRef) { m_useMusicRef = useMusicRef; }
void setMusicRef(const std::string& musicRef) { m_musicRef = musicRef; }
void setShowIfFirst(bool showIfFirst) { m_showIfFirst = showIfFirst; }
private:
std::string m_name;
std::string m_sceneRef;
int m_level;
bool m_useMusicRef;
std::string m_musicRef;
bool m_showIfFirst;
}; | 26.541667 | 76 | 0.728414 |
a9939c478ce6d767cd8499707f6473484396c535 | 258 | swift | Swift | Flix/Views/PosterCell.swift | Kristine92/Flix | b3485ddebaf0e823fac4c7176bfb4b5b8f7a51a8 | [
"Apache-2.0"
] | null | null | null | Flix/Views/PosterCell.swift | Kristine92/Flix | b3485ddebaf0e823fac4c7176bfb4b5b8f7a51a8 | [
"Apache-2.0"
] | 2 | 2018-02-12T15:56:41.000Z | 2018-02-12T16:02:04.000Z | Flix/Views/PosterCell.swift | Kristine92/Flix | b3485ddebaf0e823fac4c7176bfb4b5b8f7a51a8 | [
"Apache-2.0"
] | null | null | null | //
// PosterCell.swift
// Flix
//
// Created by Kristine Laranjo on 2/5/18.
// Copyright © 2018 Kristine Laranjo. All rights reserved.
//
import UIKit
class PosterCell: UICollectionViewCell {
@IBOutlet weak var posterImageView: UIImageView!
}
| 17.2 | 59 | 0.70155 |
94630ff53398e35e614fea3b55b849e9ee63d303 | 4,141 | lua | Lua | NvChad/lua/custom/plugins/dap.lua | i3Cheese/dots | 30567481dc80a3dabc0ca4079049f5eca7ac926f | [
"MIT"
] | null | null | null | NvChad/lua/custom/plugins/dap.lua | i3Cheese/dots | 30567481dc80a3dabc0ca4079049f5eca7ac926f | [
"MIT"
] | null | null | null | NvChad/lua/custom/plugins/dap.lua | i3Cheese/dots | 30567481dc80a3dabc0ca4079049f5eca7ac926f | [
"MIT"
] | null | null | null | local M = {}
M.dap = {
config = function()
local dap = require('dap')
vim.cmd "silent! command RunDebug lua require'dap'.continue()"
vim.cmd "silent! command StopDebug lua require'dap'.disconnect()"
require('custom.mapping').dap()
dap.adapters.lldb = {
type = 'executable',
command = 'lldb-vscode',
name = 'lldb',
-- enrich_config = function(config, on_config)
-- if (config.cmd ~= nil) then
-- vim.cmd(config.cmd)
-- end
-- on_config(config)
-- end
}
dap.configurations.cpp = {
{
name = "Build and launch",
type = "lldb",
request = "launch",
program = '${fileDirname}/${fileBasenameNoExtension}',
cwd = '${fileDirname}',
stopOnEntry = false,
cmd = '!compcpp ${file}',
args = {},
runInTerminal = false,
},
{
name = "Launch",
type = "lldb",
request = "launch",
program = function()
return vim.fn.input('Path to executable: ', vim.fn.getcwd() .. '/', 'file')
end,
cwd = '${workspaceFolder}',
stopOnEntry = false,
args = {},
},
{
-- If you get an "Operation not permitted" error using this, try disabling YAMA:
-- echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
name = "Attach to process",
type = 'lldb', -- Adjust this to match your adapter name (`dap.adapters.<name>`)
request = 'attach',
pid = require('dap.utils').pick_process,
args = {},
},
}
end,
}
M.dapui = {
config = function()
local dap, dapui = require("dap"), require("dapui")
dapui.setup({
icons = { expanded = "▾", collapsed = "▸" },
mappings = {
-- Use a table to apply multiple mappings
expand = { "<CR>", "<2-LeftMouse>" },
open = "o",
remove = "d",
edit = "e",
repl = "r",
},
sidebar = {
-- You can change the order of elements in the sidebar
elements = {
-- Provide as ID strings or tables with "id" and "size" keys
{
id = "scopes",
size = 0.25, -- Can be float or integer > 1
},
{ id = "breakpoints", size = 0.25 },
{ id = "stacks", size = 0.25 },
{ id = "watches", size = 00.25 },
},
size = 40,
position = "left", -- Can be "left", "right", "top", "bottom"
},
tray = {
elements = { "repl" },
size = 10,
position = "bottom", -- Can be "left", "right", "top", "bottom"
},
floating = {
max_height = nil, -- These can be integers or a float between 0 and 1.
max_width = nil, -- Floats will be treated as percentage of your screen.
border = "single", -- Border style. Can be "single", "double" or "rounded"
mappings = {
close = { "q", "<Esc>" },
},
},
windows = { indent = 1 },
})
vim.cmd "silent! command StopDebug :lua require'dap'.disconnect(); require'dapui'.close()"
dap.listeners.after.event_initialized["dapui_config"] = function()
dapui.open()
end
dap.listeners.after.event_terminated["dapui_config"] = function(session, body)
dapui.close()
end
dap.listeners.before.event_exited["dapui_config"] = function()
dapui.close()
end
end,
}
return M
| 36.008696 | 98 | 0.426467 |
653a329a6751d0238d209ac94ea516fbc85c7239 | 672 | asm | Assembly | oeis/061/A061354.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 11 | 2021-08-22T19:44:55.000Z | 2022-03-20T16:47:57.000Z | oeis/061/A061354.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 9 | 2021-08-29T13:15:54.000Z | 2022-03-09T19:52:31.000Z | oeis/061/A061354.asm | neoneye/loda-programs | 84790877f8e6c2e821b183d2e334d612045d29c0 | [
"Apache-2.0"
] | 3 | 2021-08-22T20:56:47.000Z | 2021-09-29T06:26:12.000Z | ; A061354: Numerator of Sum_{k=0..n} 1/k!.
; Submitted by Christian Krause
; 1,2,5,8,65,163,1957,685,109601,98641,9864101,13563139,260412269,8463398743,47395032961,888656868019,56874039553217,7437374403113,17403456103284421,82666416490601,6613313319248080001,69439789852104840011,611070150698522592097,1351405140967886501753,337310723185584470837549,85351903640077042215979,1096259850353149530222034277,739975398988375932899873137,828772446866981044847857913441,2403440095914245030058787948979,55464002213405654539818183437977,5587998223000619694886681981376183
mov $1,3
lpb $0
add $2,$1
mul $2,$0
sub $0,1
add $1,$2
sub $2,$1
lpe
gcd $2,$1
div $1,$2
mov $0,$1
| 42 | 486 | 0.830357 |
f49e10d2c38216167c1fc14110b1fd216b4b6c2d | 46,281 | sql | SQL | examples/install_init_oracle_demo.sql | efluid/datagate | 0181409ea67bc93d682f360c2039f29f36aa248b | [
"Apache-2.0"
] | 7 | 2019-07-18T06:39:51.000Z | 2021-12-16T14:30:44.000Z | examples/install_init_oracle_demo.sql | efluid/datagate | 0181409ea67bc93d682f360c2039f29f36aa248b | [
"Apache-2.0"
] | 9 | 2020-03-13T16:11:38.000Z | 2022-01-20T09:30:13.000Z | examples/install_init_oracle_demo.sql | efluid/datagate | 0181409ea67bc93d682f360c2039f29f36aa248b | [
"Apache-2.0"
] | 4 | 2020-02-28T15:17:13.000Z | 2022-02-11T10:15:55.000Z | -- Script de préparation de la BDD demo (schéma public) - ORACLE 18.2
DROP TABLE "TTABLEOTHER";
DROP TABLE "TMODELE";
DROP TABLE "TTYPEMATERIEL";
DROP TABLE "TCATEGORYMATERIEL";
DROP TABLE "TTABLEOTHERTEST2";
DROP TABLE "NOT_USED";
DROP TABLE "ADVANCED_COLS";
DROP TABLE "TDEMO_VERSION";
DROP TABLE "TAPPLICATIONINFO";
DROP TABLE "TM_USR_DEST_ONE";
DROP TABLE "TM_USR_DEST_TWO";
DROP TABLE "TMAPPING_USER_ONE";
DROP TABLE "TMAPPING_DEST_ONE";
DROP TABLE "TMAP_SUB_ITEM";
DROP TABLE "TMAPPING_USER_TWO";
DROP TABLE "TMAPPING_DEST_TWO";
DROP TABLE "TREFERENCE";
DROP TABLE "TCONSUMER";
DROP TABLE "TFIRST";
DROP TABLE "TSECOND";
DROP TABLE "T_NULL_LINK_DEMO_SRC";
DROP TABLE "T_NULL_LINK_DEMO_DEST";
CREATE TABLE "T_NULL_LINK_DEMO_SRC" (
"ID" VARCHAR2(256 BYTE) NOT NULL,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"DEST_BIZ_KEY" VARCHAR2(256 BYTE),
CONSTRAINT "T_NULL_LINK_DEMO_SRC_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "T_NULL_LINK_DEMO_DEST" (
"TECH_KEY" VARCHAR2(256 BYTE) NOT NULL,
"CODE" VARCHAR2(256 BYTE) NOT NULL,
"BIZ_KEY" VARCHAR2(256 BYTE),
CONSTRAINT "T_NULL_LINK_DEMO_DEST_PK" PRIMARY KEY ("TECH_KEY") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TFIRST" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"NOM" VARCHAR2(256 BYTE) NOT NULL,
"DETAIL" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TFIRST_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TSECOND" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"OTHER_VALUE" VARCHAR2(256 BYTE),
"FIRST_ID" NUMBER NOT NULL,
CONSTRAINT "TSECOND_PK" PRIMARY KEY ("ID") USING INDEX ENABLE,
CONSTRAINT "TFIRST_TYPE" FOREIGN KEY ("FIRST_ID") REFERENCES "TFIRST" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TREFERENCE" (
"KEY" VARCHAR2(256 BYTE) NOT NULL,
"NAME" VARCHAR2(256 BYTE) NOT NULL,
"DETAIL" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TREFERENCE_KEY" PRIMARY KEY ("KEY") ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TCONSUMER" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"CODE" VARCHAR2(256 BYTE) NOT NULL,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"VALUE_OTHER" VARCHAR2(256 BYTE) NOT NULL,
"REFERENCE_KEY" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TCONSUMER_pkey" PRIMARY KEY ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TMAPPING_USER_ONE" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"NAME" VARCHAR2(256 BYTE) NOT NULL,
"DETAILS" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TMAPPING_USER_ONE_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TMAPPING_USER_TWO" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"BIZ_KEY" NUMBER(19,0) NOT NULL,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"DETAILS" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TMAPPING_USER_TWO_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TMAP_SUB_ITEM" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"ELEMENT_CODE" NUMBER(19,0) NOT NULL,
"ELEMENT_VALUE" VARCHAR2(256 BYTE) NOT NULL,
"DETAILS" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TMAP_SUB_ITEM_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TMAPPING_DEST_ONE" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"CODE" VARCHAR2(256 BYTE) NOT NULL,
"TYPE" VARCHAR2(256 BYTE),
"SUBITEM_ID" NUMBER NOT NULL,
CONSTRAINT "TMAPPING_DEST_ONE_PK" PRIMARY KEY ("ID") USING INDEX ENABLE,
CONSTRAINT "TMAPPING_DEST_ONE_SUBITEM_ID" FOREIGN KEY ("SUBITEM_ID") REFERENCES "TMAP_SUB_ITEM" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TMAPPING_DEST_TWO" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"NAME" VARCHAR2(256 BYTE),
CONSTRAINT "TMAPPING_DEST_TWO_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TM_USR_DEST_ONE" (
"USR_ID" NUMBER(19,0) NOT NULL,
"DEST_ID" NUMBER(19,0) NOT NULL,
CONSTRAINT "TM_USR_DEST_ONE" PRIMARY KEY ("USR_ID", "DEST_ID") USING INDEX ENABLE,
CONSTRAINT "TM_USR_DEST_ONE_USR_ID" FOREIGN KEY ("USR_ID") REFERENCES "TMAPPING_USER_ONE" ("ID") ,
CONSTRAINT "TM_USR_DEST_ONE_DEST_ID" FOREIGN KEY ("DEST_ID") REFERENCES "TMAPPING_DEST_ONE" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TM_USR_DEST_TWO" (
"USR_BIZ_KEY" NUMBER(19,0) NOT NULL,
"DEST_ID" NUMBER(19,0) NOT NULL,
CONSTRAINT "TM_USR_DEST_TWO_PK" PRIMARY KEY ("USR_BIZ_KEY", "DEST_ID") USING INDEX ENABLE,
CONSTRAINT "TM_USR_DEST_TWO_DEST_ID" FOREIGN KEY ("DEST_ID") REFERENCES "TMAPPING_DEST_TWO" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TAPPLICATIONINFO" (
"ID" VARCHAR2(25 BYTE),
"MODEAPPLICATION" NUMBER(2,0),
"ACTEURCREATION" VARCHAR2(50 BYTE),
"DATEMODIFICATION" TIMESTAMP (3),
"ACTEURMODIFICATION" VARCHAR2(50 BYTE),
"DATECREATION" TIMESTAMP (3),
"MAJPARAMETRAGEMETIER" NUMBER(1,0),
"VERSION" VARCHAR2(80 BYTE),
"PROJET" VARCHAR2(80 BYTE),
"SITE" VARCHAR2(80 BYTE),
"AFFICHERMESSAGE" NUMBER(1,0),
"MESSAGEINFO" VARCHAR2(250 BYTE)
) TABLESPACE "USERS" ;
CREATE UNIQUE INDEX "PK_TAPPLICATIONINFO" ON "TAPPLICATIONINFO" ("ID")
PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT);
ALTER TABLE "TAPPLICATIONINFO" ADD CONSTRAINT "PK_TAPPLICATIONINFO" PRIMARY KEY ("ID")
USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1
BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT);
CREATE TABLE "TDEMO_VERSION" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"VERSION" VARCHAR2(256 BYTE) NOT NULL,
"UPDATE_TIME" TIMESTAMP,
"DETAIL" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TDEMO_VERSION_pkey" PRIMARY KEY ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TCATEGORYMATERIEL" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"NOM" VARCHAR2(256 BYTE) NOT NULL,
"DETAIL" VARCHAR2(256 BYTE) NOT NULL,
CONSTRAINT "TCATEGORYMATERIEL_PK" PRIMARY KEY ("ID") USING INDEX ENABLE
) TABLESPACE "USERS" ;
CREATE TABLE "TTYPEMATERIEL" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"TYPE" VARCHAR2(256 BYTE) NOT NULL,
"SERIE" VARCHAR2(256 BYTE),
"CATID" NUMBER NOT NULL,
CONSTRAINT "TTYPEMATERIEL_PK" PRIMARY KEY ("ID") USING INDEX ENABLE,
CONSTRAINT "CAT_TYPE" FOREIGN KEY ("CATID") REFERENCES "TCATEGORYMATERIEL" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TTABLEOTHER" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"COUNT" NUMBER,
"WHEN" TIMESTAMP,
"TYPEID" NUMBER NOT NULL,
CONSTRAINT "TTABLEOTHER_pkey" PRIMARY KEY ("ID"),
CONSTRAINT "TYPE_OTHE" FOREIGN KEY ("TYPEID") REFERENCES "TTYPEMATERIEL" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TTABLEOTHERTEST2" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"VALUE1" VARCHAR2(256 BYTE) NOT NULL,
"VALUE2" VARCHAR2(256 BYTE) NOT NULL,
"VALUE3" VARCHAR2(256 BYTE) NOT NULL,
"WEIGHT" FLOAT,
"LAST_UPDATED" TIMESTAMP,
CONSTRAINT "TTABLEOTHERTEST2_pkey" PRIMARY KEY ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "TMODELE" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"CODE_SERIE" VARCHAR2(128 BYTE) NOT NULL,
"CREATE_DATE" TIMESTAMP,
"FABRICANT" VARCHAR2(256 BYTE) NOT NULL,
"DESCRIPTION" VARCHAR2(1024 BYTE) NOT NULL,
"BINARY_VALUE" BLOB,
"TYPEID" NUMBER NOT NULL,
"ACTIF" SMALLINT NOT NULL,
CONSTRAINT "TMODELE_pkey" PRIMARY KEY ("ID"),
CONSTRAINT "TYPE_MODE" FOREIGN KEY ("TYPEID") REFERENCES "TTYPEMATERIEL" ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "NOT_USED" (
"ID" NUMBER(19,0) GENERATED BY DEFAULT ON NULL AS IDENTITY,
"VALUE" VARCHAR2(256 BYTE) NOT NULL,
"WEIGHT" FLOAT,
"LAST_UPDATED" TIMESTAMP,
CONSTRAINT "NOT_USED_pkey" PRIMARY KEY ("ID")
) TABLESPACE "USERS" ;
CREATE TABLE "ADVANCED_COLS" (
"KEY" VARCHAR2(256 BYTE) NOT NULL,
"NAME" VARCHAR2(256 BYTE) NOT NULL,
"CATID" NUMBER NOT NULL,
"TYPEID" NUMBER NOT NULL,
"DETAIL" VARCHAR2(256 BYTE) NOT NULL,
"ACTIF" SMALLINT NOT NULL,
"BINARY_VALUE" BLOB,
"CREATE_DATE" TIMESTAMP,
"UPDATE_DATE" TIMESTAMP,
CONSTRAINT "ADVANCED_COLS_KEY" PRIMARY KEY ("KEY") ENABLE,
CONSTRAINT "CAT_ATYPE" FOREIGN KEY ("CATID") REFERENCES "TCATEGORYMATERIEL" ("ID") ,
CONSTRAINT "TYPE_AMODE" FOREIGN KEY ("TYPEID") REFERENCES "TTYPEMATERIEL" ("ID")
) TABLESPACE "USERS" ;
INSERT INTO "TFIRST"("NOM", "DETAIL") VALUES ('First1', 'Some details 1');
INSERT INTO "TFIRST"("NOM", "DETAIL") VALUES ('First2', 'Some details 2');
INSERT INTO "TFIRST"("NOM", "DETAIL") VALUES ('First3', 'Some details 3');
INSERT INTO "TFIRST"("NOM", "DETAIL") VALUES ('First4', 'Some details 4');
INSERT INTO "TSECOND"("VALUE", "OTHER_VALUE", "FIRST_ID") VALUES ('Second1', 'Some other1', 1);
INSERT INTO "TSECOND"("VALUE", "OTHER_VALUE", "FIRST_ID") VALUES ('Second2', 'Some other2', 2);
INSERT INTO "TSECOND"("VALUE", "OTHER_VALUE", "FIRST_ID") VALUES ('Second3', 'Some other3', 3);
INSERT INTO "TSECOND"("VALUE", "OTHER_VALUE", "FIRST_ID") VALUES ('Second4', 'Some other4', 4);
INSERT INTO "TREFERENCE" VALUES ('REF1', 'Reference Data 1', 'This is a reference value with some long detail which continue over and over and over and over. Lorem ipsum dolor sit amet ...');
INSERT INTO "TREFERENCE" VALUES ('REF2', 'Reference Data 2', 'This is a reference value with some long detail which continue over and over and over and over. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet ...');
INSERT INTO "TREFERENCE" VALUES ('REF3', 'Reference Data 3', 'This is a reference value with some long detail which continue over and over and over and over. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet ...');
INSERT INTO "TREFERENCE" VALUES ('REF4', 'Reference Data 4', 'This is a reference value with some long detail which continue over and over and over and over. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet ...');
INSERT INTO "TREFERENCE" VALUES ('REF5', 'Reference Data 5', 'This is a reference value with some long detail which continue over and over and over and over. Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet Lorem ipsum dolor sit amet ...');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_1' , 'Value 1', 'Value Other test', 'REF1');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_2' , 'Value 1', 'Value Other test', 'REF2');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_3' , 'Value 1', 'Value Other test', 'REF2');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_4' , 'Value 1', 'Value Other test', 'REF1');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_5' , 'Value 1', 'Value Other test', 'REF1');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_6' , 'Value 1', 'Value Other test', 'REF1');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_7' , 'Value 1', 'Value Other test', 'REF3');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_8' , 'Value 1', 'Value Other test', 'REF4');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_9' , 'Value 1', 'Value Other test', 'REF5');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_10', 'Value 1', 'Value Other test', 'REF6');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_11', 'Value 1', 'Value Other test', 'REF6');
INSERT INTO "TCONSUMER" ("CODE", "VALUE", "VALUE_OTHER", "REFERENCE_KEY") VALUES ('CONSO_12', 'Value 1', 'Value Other test', 'REF6');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0001', 'Some details 111');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0002', 'Some details 222');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0003', 'Some details 333');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0004', 'Some details 444');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0005', 'Some details 555');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0006', 'Some details 666');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0007', 'Some details 777');
INSERT INTO "TMAPPING_USER_ONE"("NAME", "DETAILS") VALUES ('User0008', 'Some details 888');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1111, 'UserTwo0001', 'Some details Two 1111');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1211, 'UserTwo0002', 'Some details Two 2222');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1311, 'UserTwo0003', 'Some details Two 3333');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1411, 'UserTwo0004', 'Some details Two 4444');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1511, 'UserTwo0005', 'Some details Two 5555');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1611, 'UserTwo0006', 'Some details Two 6666');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1711, 'UserTwo0007', 'Some details Two 7777');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1811, 'UserTwo0008', 'Some details Two 8888');
INSERT INTO "TMAPPING_USER_TWO"("BIZ_KEY", "VALUE", "DETAILS") VALUES (1911, 'UserTwo0009', 'Some details Two 9999');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (1, 'Element 0001', 'Some details Element sub - 1111 -');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (2, 'Element 0002', 'Some details Element sub - 2222 -');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (3, 'Element 0003', 'Some details Element sub - 3333 -');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (4, 'Element 0004', 'Some details Element sub - 4444 -');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (5, 'Element 0005', 'Some details Element sub - 5555 -');
INSERT INTO "TMAP_SUB_ITEM"("ELEMENT_CODE", "ELEMENT_VALUE", "DETAILS") VALUES (6, 'Element 0006', 'Some details Element sub - 6666 -');
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('A', 'A basic destination A', 1);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('B', 'A basic destination B', 1);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('C', 'A basic destination C', 2);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('D', 'A basic destination D', 2);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('E', 'A basic destination E', 3);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('F', 'A basic destination F', 4);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('G', 'A basic destination G', 4);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('H', 'A basic destination H', 5);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('I', 'A basic destination I', 6);
INSERT INTO "TMAPPING_DEST_ONE"("CODE", "TYPE", "SUBITEM_ID") VALUES ('J', 'A basic destination J', 1);
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 001');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 002');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 003');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 004');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 005');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 006');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 007');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 008');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 009');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 010');
INSERT INTO "TMAPPING_DEST_TWO"("NAME") VALUES ('Mapping Dest Two 011');
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 1);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 2);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 3);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 4);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 5);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (2, 3);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (2, 6);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (3, 1);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (4, 1);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (2, 8);
INSERT INTO "TM_USR_DEST_ONE"("USR_ID", "DEST_ID") VALUES (1, 6);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1111, 1);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1211, 1);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1311, 1);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1411, 2);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1511, 3);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1611, 4);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1711, 5);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1811, 6);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1911, 7);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1111, 7);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1211, 7);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1311, 3);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1411, 4);
INSERT INTO "TM_USR_DEST_TWO"("USR_BIZ_KEY", "DEST_ID") VALUES (1511, 2);
INSERT INTO "TDEMO_VERSION"("VERSION", "UPDATE_TIME", "DETAIL") VALUES ('v1.0.34', '02-01-2018 23:45:37', 'Mise à jour de ceci cela 1');
INSERT INTO "TDEMO_VERSION"("VERSION", "UPDATE_TIME", "DETAIL") VALUES ('v1.0.45', '02-02-2018 23:45:37', 'Mise à jour de ceci cela 2');
INSERT INTO "TDEMO_VERSION"("VERSION", "UPDATE_TIME", "DETAIL") VALUES ('v1.0.51', '02-03-2018 23:45:37', 'Mise à jour de ceci cela 3');
INSERT INTO "TDEMO_VERSION"("VERSION", "UPDATE_TIME", "DETAIL") VALUES ('v1.0.57', '02-04-2018 23:45:37', 'Mise à jour de ceci cela 4');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something1', 'test', 'test1', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something2', 'test', 'test2', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something3', 'test', 'test3', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something4', 'test', 'test4', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something5', 'test', 'test5', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something6', 'test', 'test6', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something7', 'test', 'test7', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something8', 'test', 'test8', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something9', 'test', 'test9', 14.5, '02-01-2018 23:42:32');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something11', 'test', 'test11', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something12', 'test', 'test12', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something13', 'test', 'test13', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something14', 'test', 'test14', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something15', 'test', 'test15', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something16', 'test', 'test16', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something17', 'test', 'test17', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something18', 'test', 'test18', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something19', 'test', 'test19', 14.5, '02-01-2018 23:45:35');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something20', 'test', 'test20', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something21', 'test', 'test21', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something22', 'test', 'test22', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something23', 'test', 'test23', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something24', 'test', 'test24', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something25', 'test', 'test25', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something26', 'test', 'test26', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something27', 'test', 'test27', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something28', 'test', 'test28', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something29', 'test', 'test29', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something30', 'test', 'test30', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something31', 'test', 'test31', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something32', 'test', 'test32', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something33', 'test', 'test33', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something34', 'test', 'test34', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something35', 'test', 'test35', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something36', 'test', 'test36', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something37', 'test', 'test37', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something38', 'test', 'test38', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something39', 'test', 'test39', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something40', 'test', 'test40', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something41', 'test', 'test41', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something42', 'test', 'test42', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something43', 'test', 'test43', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something44', 'test', 'test44', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something45', 'test', 'test45', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something46', 'test', 'test46', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something47', 'test', 'test47', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something48', 'test', 'test48', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something49', 'test', 'test49', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something50', 'test', 'test50', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something51', 'test', 'test51', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something52', 'test', 'test52', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something53', 'test', 'test53', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something54', 'test', 'test54', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something55', 'test', 'test55', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something56', 'test', 'test56', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something57', 'test', 'test57', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something58', 'test', 'test58', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something59', 'test', 'test59', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something60', 'test', 'test60', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something61', 'test', 'test61', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something62', 'test', 'test62', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something63', 'test', 'test63', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something64', 'test', 'test64', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something65', 'test', 'test65', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something66', 'test', 'test66', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something67', 'test', 'test67', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something68', 'test', 'test68', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something69', 'test', 'test69', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something70', 'test', 'test70', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something71', 'test', 'test71', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something72', 'test', 'test72', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something73', 'test', 'test73', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something74', 'test', 'test74', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something75', 'test', 'test75', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something76', 'test', 'test76', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something77', 'test', 'test77', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something78', 'test', 'test78', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something79', 'test', 'test79', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something80', 'test', 'test80', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something81', 'test', 'test81', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something82', 'test', 'test82', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something83', 'test', 'test83', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something84', 'test', 'test84', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something85', 'test', 'test85', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something86', 'test', 'test86', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something87', 'test', 'test87', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something88', 'test', 'test88', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something89', 'test', 'test89', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something90', 'test', 'test90', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something91', 'test', 'test91', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something92', 'test', 'test92', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something93', 'test', 'test93', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something94', 'test', 'test94', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something95', 'test', 'test95', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something96', 'test', 'test96', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something97', 'test', 'test97', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something98', 'test', 'test98', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something99', 'test', 'test99', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something100', 'test', 'test100', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something101', 'test', 'test101', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something102', 'test', 'test102', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something103', 'test', 'test103', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something104', 'test', 'test104', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something105', 'test', 'test105', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something106', 'test', 'test106', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something107', 'test', 'test107', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something108', 'test', 'test108', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something109', 'test', 'test109', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something110', 'test', 'test110', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something111', 'test', 'test111', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something112', 'test', 'test112', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something113', 'test', 'test113', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something114', 'test', 'test114', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something115', 'test', 'test115', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something116', 'test', 'test116', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something117', 'test', 'test117', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something118', 'test', 'test118', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TTABLEOTHERTEST2"("VALUE1", "VALUE2", "VALUE3", "WEIGHT", "LAST_UPDATED") VALUES ('Something119', 'test', 'test119', 14.5, '02-01-2018 23:45:37');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Compteur', 'Type de compteur standard');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Pylone', 'Gros pylone HT');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Box', 'Catégorie de box');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Antenne', 'Catégorie pour les antennes');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Centrale', 'Centrale électrique');
INSERT INTO "TCATEGORYMATERIEL"("NOM", "DETAIL") VALUES ('Raccord', 'Raccordement');
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Compteur lynki vert', 'L009887321', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Compteur schneider blanc', 'SCH09887131', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Compteur chinois chipou', 'HK-0001', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Parc éolien', '099922', 5);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Central à charbon autrichienne', '0CHARBO', 5);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Freebox', 'FREE001', 3);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Livebox', 'ORANGE001', 3);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Compteur lynki bleu', 'L009887381', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Compteur schneider mauve', 'SCH0988221', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Ancien MGE', 'MGE5566', 1);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Central au fioul', '099555', 5);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Central nucléaire', 'ALSTOM001', 5);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('SagemCom', 'SSDD001', 3);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('BBox', 'BBB001', 3);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Antenne droite', '011', 4);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone A', 'AAAP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone B', 'BBBP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone C', 'CCCP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone D', 'DDDP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone E', 'EEEP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone F', 'FFFP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone G', 'GGGP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone H', 'HHHP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone I', 'IIIP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone J', 'JJJP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone K', 'KKKP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone L', 'LLLP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone M', 'MMMP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone N', 'NNNP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone O', 'OOOP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone P', 'PPPP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone Q', 'QQQP', 2);
INSERT INTO "TTYPEMATERIEL"("TYPE", "SERIE", "CATID") VALUES ('Pylone R', 'RRRP', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('Lynki_AAA', 45, '02-01-2018 23:42:32', 1);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('Lynki_BBB', 33, '02-01-2018 23:42:32', 1);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('Lynki_CCC', 2, '02-01-2018 23:42:32', 1);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderAAA', 209, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderBBB', 231, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderCCC', 232, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderDDD', 233, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderEEE', 234, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderFFF', 235, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderGGG', 236, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderHHH', 237, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderIII', 238, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderJJJ', 239, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderKKK', 240, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderLLL', 241, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderMMM', 242, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderNNN', 243, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderOOO', 244, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderPPP', 245, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderQQQ', 246, '02-01-2018 23:42:32', 2);
INSERT INTO "TTABLEOTHER"("VALUE", "COUNT", "WHEN", "TYPEID") VALUES ('SchneiderRRR', 247, '02-01-2018 23:42:32', 2);
INSERT INTO "TMODELE"("CODE_SERIE", "CREATE_DATE", "FABRICANT", "DESCRIPTION", "BINARY_VALUE", "TYPEID", "ACTIF") VALUES ('ABB0001', '02-01-2018 23:42:32', 'DUPON', 'Un modèle de test - 1', '0123456789ABCDEF0123456789ABCDEF1', 1, 1);
INSERT INTO "TMODELE"("CODE_SERIE", "CREATE_DATE", "FABRICANT", "DESCRIPTION", "BINARY_VALUE", "TYPEID", "ACTIF") VALUES ('ABB0002', '02-01-2018 23:42:33', 'DUPON', 'Un modèle de test - 2', '0123456789ABCDEF0123456789ABCDEF2', 2, 1);
INSERT INTO "TMODELE"("CODE_SERIE", "CREATE_DATE", "FABRICANT", "DESCRIPTION", "BINARY_VALUE", "TYPEID", "ACTIF") VALUES ('ABB0003', '02-01-2018 23:42:34', 'DUPON', 'Un modèle de test - 3', '0123456789ABCDEF0123456789ABCDEF3', 3, 1);
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00011', 'Advanced 1', 3, 2, 'This is a detail value', 1, '0123456789ABCDEF0123456789ABCDEF1', '02-01-2018 11:42:34', '02-05-2018 23:42:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00012', 'Advanced 2', 2, 2, 'This is a detail value', 1, '0123456789ABCDEF4123456789ABCDEF1', '02-01-2018 12:42:34', '02-05-2018 23:43:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00013', 'Advanced 3', 1, 1, 'This is a detail value', 1, '0123456789ABCDEF0123456789ABC32F1', '02-01-2018 13:42:34', '02-05-2018 19:11:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00014', 'Advanced 4', 3, 2, 'This is a detail value', 1, '0123456789ABCDEF0123456789ABCDEF1', '02-01-2018 14:42:34', '02-05-2018 23:42:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00015', 'Advanced 5', 1, 4, 'This is a detail value', 1, '0123456789FBCDEF0123456789ABCDEF1', '02-01-2018 15:42:34', '02-05-2018 10:42:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00016', 'Advanced 6', 2, 2, 'This is a detail value', 0, '0123456789ABCDEF012345678911CDEF1', '02-01-2018 16:42:34', '02-05-2018 23:42:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00017', 'Advanced 7', 1, 1, 'This is a detail value', 1, '0123456789ABCEEF0123456789ABCDEF1', '02-01-2018 17:42:34', '02-05-2018 21:42:34');
INSERT INTO "ADVANCED_COLS" VALUES ('JJ00018', 'Advanced 8', 3, 2, 'This is a detail value', 1, '0123444789ABCDEF0123456789A12DEF1', '02-01-2018 18:42:34', '02-05-2018 23:42:34');
INSERT INTO "TAPPLICATIONINFO" VALUES ('AAAA', 1, 'DEMO USER', '02-01-2018 18:42:34', NULL, NULL, 1 , 'V-DEMO-1', 'DATAGATE-DEMO', 'PROD', 1, 'Hello World');
INSERT INTO "TAPPLICATIONINFO" VALUES ('BBBB', 1, 'DEMO USER', '02-01-2019 15:42:34', NULL, NULL, 1 , 'V-DEMO-2', 'DATAGATE-DEMO', 'PROD', 1, 'Hello World 2');
COMMIT;
EXEC DBMS_STATS.gather_schema_stats('DEMO', cascade=>TRUE); | 84.608775 | 300 | 0.689462 |
f75298126d448d6a9467a8c1be0c4c1d1935986f | 5,736 | asm | Assembly | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21659_1138.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 9 | 2020-08-13T19:41:58.000Z | 2022-03-30T12:22:51.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21659_1138.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 1 | 2021-04-29T06:29:35.000Z | 2021-05-13T21:02:30.000Z | Transynther/x86/_processed/NC/_zr_/i7-8650U_0xd2.log_21659_1138.asm | ljhsiun2/medusa | 67d769b8a2fb42c538f10287abaf0e6dbb463f0c | [
"MIT"
] | 3 | 2020-07-14T17:07:07.000Z | 2022-03-21T01:12:22.000Z | .global s_prepare_buffers
s_prepare_buffers:
push %r12
push %r8
push %rbp
push %rbx
push %rcx
push %rdi
push %rsi
lea addresses_D_ht+0x651f, %rsi
lea addresses_WT_ht+0x161ef, %rdi
nop
inc %r8
mov $101, %rcx
rep movsq
nop
nop
xor %rbx, %rbx
lea addresses_UC_ht+0x1199f, %rbp
nop
nop
nop
nop
sub $30699, %r12
mov $0x6162636465666768, %rsi
movq %rsi, %xmm6
and $0xffffffffffffffc0, %rbp
movntdq %xmm6, (%rbp)
nop
nop
and %rcx, %rcx
lea addresses_A_ht+0xda5f, %rsi
nop
nop
nop
nop
and %rdi, %rdi
mov (%rsi), %rbp
sub %rbx, %rbx
lea addresses_WT_ht+0xf99f, %rbp
add $20331, %rdi
mov $0x6162636465666768, %rcx
movq %rcx, %xmm1
movups %xmm1, (%rbp)
nop
nop
add $51608, %rcx
lea addresses_WC_ht+0x8baf, %rsi
lea addresses_UC_ht+0x379f, %rdi
nop
and %rbx, %rbx
mov $41, %rcx
rep movsl
nop
nop
nop
nop
nop
mfence
lea addresses_UC_ht+0x1a09f, %rsi
lea addresses_normal_ht+0xf64f, %rdi
nop
add %r8, %r8
mov $118, %rcx
rep movsb
nop
nop
nop
nop
nop
xor $50223, %rbx
lea addresses_D_ht+0x1719f, %r12
nop
nop
nop
and %rsi, %rsi
mov (%r12), %rbp
nop
nop
nop
and %r8, %r8
pop %rsi
pop %rdi
pop %rcx
pop %rbx
pop %rbp
pop %r8
pop %r12
ret
.global s_faulty_load
s_faulty_load:
push %r11
push %r12
push %r14
push %r9
push %rsi
// Faulty Load
mov $0x2a62b80000000d9f, %r12
clflush (%r12)
nop
nop
nop
add %rsi, %rsi
movups (%r12), %xmm0
vpextrq $0, %xmm0, %r9
lea oracles, %r14
and $0xff, %r9
shlq $12, %r9
mov (%r14,%r9,1), %r9
pop %rsi
pop %r9
pop %r14
pop %r12
pop %r11
ret
/*
<gen_faulty_load>
[REF]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}}
[Faulty Load]
{'OP': 'LOAD', 'src': {'type': 'addresses_NC', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}}
<gen_prepare_buffer>
{'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 4, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 16, 'AVXalign': False, 'NT': True, 'congruent': 10, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 6, 'same': False}}
{'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_WC_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 8, 'same': False}}
{'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}}
{'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}}
{'00': 21659}
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
*/
| 42.176471 | 2,999 | 0.661262 |
85a4c7266474773ede375028b446a4f7d983757f | 325 | h | C | types.h | supbruh732/s19_ipd | 0bf09c6bc187561ac07670791515124ce99e2dba | [
"MIT-0"
] | 2 | 2020-12-07T07:24:01.000Z | 2020-12-28T05:02:25.000Z | types.h | supbruh732/s19_ipd | 0bf09c6bc187561ac07670791515124ce99e2dba | [
"MIT-0"
] | null | null | null | types.h | supbruh732/s19_ipd | 0bf09c6bc187561ac07670791515124ce99e2dba | [
"MIT-0"
] | null | null | null | typedef unsigned int uint;
typedef unsigned short ushort;
typedef unsigned char uchar;
enum procstate { UNUSED, EMBRYO, SLEEPING, RUNNABLE, RUNNING, ZOMBIE };
typedef unsigned int uint32;
typedef unsigned long uint64;
typedef unsigned long addr_t;
typedef addr_t pde_t;
typedef addr_t pml4e_t;
typedef addr_t pdpe_t;
| 21.666667 | 71 | 0.790769 |
f857ecebcea9cdb014774814cc7ff7824683d877 | 1,837 | asm | Assembly | Interrupts.asm | Mihail-K/PONIX | e473669c05fd011a93bbb7e29beed44f29ec33a8 | [
"MIT"
] | null | null | null | Interrupts.asm | Mihail-K/PONIX | e473669c05fd011a93bbb7e29beed44f29ec33a8 | [
"MIT"
] | null | null | null | Interrupts.asm | Mihail-K/PONIX | e473669c05fd011a93bbb7e29beed44f29ec33a8 | [
"MIT"
] | null | null | null |
.file "Interrupts.asm"
.macro InterruptHandler Id
.extern InterruptRoutine\Id
.global InterruptHandler\Id
.type InterruptHandler\Id, @function
InterruptHandler\Id:
call InterruptRoutine\Id
iret
.endm
.global InterruptTable
.type InterruptTable, @object
InterruptTable:
.long InterruptHandler0
.long InterruptHandler1
.long InterruptHandler2
.long InterruptHandler3
.long InterruptHandler4
.long InterruptHandler5
.long InterruptHandler6
.long InterruptHandler7
.long InterruptHandler8
.long InterruptHandler9
.long InterruptHandler10
.long InterruptHandler11
.long InterruptHandler12
.long InterruptHandler13
.long InterruptHandler14
.long InterruptHandler15
.long InterruptHandler16
.long InterruptHandler17
.long InterruptHandler18
.long InterruptHandler19
.long InterruptHandler20
.long InterruptHandler21
.long InterruptHandler22
.long InterruptHandler23
.long InterruptHandler24
.long InterruptHandler25
.long InterruptHandler26
.long InterruptHandler27
.long InterruptHandler28
.long InterruptHandler29
.long InterruptHandler30
.long InterruptHandler31
.long InterruptHandler32
.long InterruptHandler33
.long 0
InterruptHandler 0
InterruptHandler 1
InterruptHandler 2
InterruptHandler 3
InterruptHandler 4
InterruptHandler 5
InterruptHandler 6
InterruptHandler 7
InterruptHandler 8
InterruptHandler 9
InterruptHandler 10
InterruptHandler 11
InterruptHandler 12
InterruptHandler 13
InterruptHandler 14
InterruptHandler 15
InterruptHandler 16
InterruptHandler 17
InterruptHandler 18
InterruptHandler 19
InterruptHandler 20
InterruptHandler 21
InterruptHandler 22
InterruptHandler 23
InterruptHandler 24
InterruptHandler 25
InterruptHandler 26
InterruptHandler 27
InterruptHandler 28
InterruptHandler 29
InterruptHandler 30
InterruptHandler 31
InterruptHandler 32
InterruptHandler 33
| 20.640449 | 37 | 0.85411 |
5256ab211adc8e6132f623636ba55c9e96a3492e | 1,007 | lua | Lua | lua/metrostroi/systems/sys_tatra_systems.lua | angelus1637/MetrostroiAddon | 655efac296d8cf50fe74789218172969da7dc904 | [
"MIT"
] | 26 | 2021-01-15T14:39:49.000Z | 2022-03-30T15:39:37.000Z | lua/metrostroi/systems/sys_tatra_systems.lua | angelus1637/MetrostroiAddon | 655efac296d8cf50fe74789218172969da7dc904 | [
"MIT"
] | 317 | 2021-01-07T01:41:58.000Z | 2022-03-14T17:48:33.000Z | lua/metrostroi/systems/sys_tatra_systems.lua | angelus1637/MetrostroiAddon | 655efac296d8cf50fe74789218172969da7dc904 | [
"MIT"
] | 17 | 2021-02-08T16:15:18.000Z | 2022-02-28T22:02:52.000Z | --------------------------------------------------------------------------------
-- Placeholder for Tatra-T3 systems
--------------------------------------------------------------------------------
Metrostroi.DefineSystem("Tatra_Systems")
TRAIN_SYSTEM.DontAccelerateSimulation = true
function TRAIN_SYSTEM:Initialize()
self.Drive = 0
self.Brake = 0
self.Reverse = 0
end
function TRAIN_SYSTEM:Inputs()
return { "Drive", "Brake","Reverse" }
end
function TRAIN_SYSTEM:TriggerInput(name,value)
if self[name] then self[name] = value end
end
--------------------------------------------------------------------------------
function TRAIN_SYSTEM:Think()
--print("DRIVE",self.Drive)
self.Train.FrontBogey.MotorForce = 20000
self.Train.FrontBogey.MotorPower = self.Drive - self.Brake
self.Train.FrontBogey.Reversed = (self.Reverse > 0.5)
self.Train.RearBogey.MotorForce = 20000
self.Train.RearBogey.MotorPower = self.Drive - self.Brake
self.Train.RearBogey.Reversed = not (self.Reverse > 0.5)
end | 30.515152 | 80 | 0.578947 |
d7b94a1a87992afc437eb034cddbb94d5c7202f0 | 555 | swift | Swift | PerfectlyCrafted/Extensions/Dateformatter.swift | Ashlirankin18/PerfectlyCrafted | 3bc7945113e35acdc294cbd467973a1cff123a88 | [
"MIT"
] | null | null | null | PerfectlyCrafted/Extensions/Dateformatter.swift | Ashlirankin18/PerfectlyCrafted | 3bc7945113e35acdc294cbd467973a1cff123a88 | [
"MIT"
] | 24 | 2020-03-08T01:25:02.000Z | 2020-06-22T02:29:06.000Z | PerfectlyCrafted/Extensions/Dateformatter.swift | Ashlirankin18/PerfectlyCrafted | 3bc7945113e35acdc294cbd467973a1cff123a88 | [
"MIT"
] | null | null | null | //
// Dateformatter.swift
// PerfectlyCrafted
//
// Created by Ashli Rankin on 3/9/20.
// Copyright © 2020 Ashli Rankin. All rights reserved.
//
import Foundation
extension DateFormatter {
/// A static instance of date formatter.
static let postDateFormatter: DateFormatter = DateFormatter()
/// Formats a given date.
/// - Parameter date: The date the post was created.
static func format(date: Date) -> String? {
postDateFormatter.dateStyle = .long
return postDateFormatter.string(from: date)
}
}
| 24.130435 | 65 | 0.67027 |
af0427ec4b27ef5652cd9fd0c0bc43b562cd642a | 5,614 | html | HTML | Noticia1.html | Tekeck/NewsToday | 18534463e32c3ae484f21ea8ca81fdea81c65897 | [
"CC0-1.0"
] | null | null | null | Noticia1.html | Tekeck/NewsToday | 18534463e32c3ae484f21ea8ca81fdea81c65897 | [
"CC0-1.0"
] | null | null | null | Noticia1.html | Tekeck/NewsToday | 18534463e32c3ae484f21ea8ca81fdea81c65897 | [
"CC0-1.0"
] | null | null | null | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Noticias | NewsToday</title>
<link href="css/estilo-paginas.css" rel="stylesheet" />
<link href="css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<body>
<!-- Navigacion-->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html"><img src="imagenes/logo.JPG" alt="Imagen logo" width="200"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSoporte">
<ul class="navbar-nav">
<li class="nav-item"><a class="nav-link active" href="index.html">Inicio |</a></li>
<li class="nav-item"><a class="nav-link active" href="Nosotros.html">Acerca de |</a></li>
</ul>
</div>
<form class="d-flex">
<input class="form-control me-sm-2" type="text" placeholder="Search">
<button class="btn btn-danger my-2 my-sm-0" type="submit">Buscar</button>
</form>
</div>
</div>
</nav>
<button class="navbar-toggler" type="button"
data-toggle="colapse"
data-target="navbarSoporte"
aria-controls="navbarSoporte"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Baner-->
<div class="jumbotron">
<div class="container">
<h1 class="display-2">Youtuber Mrbeast recrea "Juego del calamar"</h1>
</div>
</div>
<br>
<div class="container" >
<br>
<p>Todos sabíamos que era cuestión de tiempo. El formato de "concurso por rondas" de 'El Juego del Calamar' era al mismo tiempo terrible y atractivo, porque todos vimos el terror que experimentaban los concursantes en las pruebas y, al mismo tiempo, todos imaginábamos cómo podríamos hacerlo nosotros mismos en cada evento (y en todos ganábamos, por supeusto). Y como para ese inmenso país llamado Internet nada es imposible, alguien acaba de hacer un Juego del Calamar real.</p>
<p>Mr. Beast tiene más de 70 millones de suscriptores en su canal de Youtube y casi 30 millones de seguidores en su perfil de TikTok. Con este nivel de espectadores, percibe una fortuna mensual que oscila entre los 3 y los 4 millones de dólares... dinero que re invierte en crear aún más contenido super producido para aumentar su viralidad y entrar en un ciclo de popularidad sin fin. La cosa es que a principios de noviembre se dio a conocer un reto en TikTok en el que Mr. Beast aseguraba que, de conseguir 10 millones de likes en un sólo video, reconstruiría todos los escenarios de El Juego del Calamar, en escala real y funcionales como para realizar su propia versión de la serie. El resultado: en dos días consiguió la aprobación de esos 10 millones de usuarios y el Youtuber comenzó su construcción de inmediato.</p>
<h2>Aumento en su popularidad</h2>
<p>Pero ésta fue bastante rápida, porque si eso ocurrió a principios de noviembre, para el momento en que esta nota fue hecha (que el mes aún no termina) el evento... ya terminó. 456 de sus mismos suscriptores fueron convocados para participar en todos y cada uno de los juegos mostrados en la serie, donde el "sobreviviente" al final se llevaría el premio de 456 mil dólares (muy acorde a la lógica de la serie, si pensamos que le atribuyó a cada participante un valor de mil dólares).
Por supuesto que no es motivo de alarma, sino de gracia. Los eventos se ven como los de la serie, lo mismo los escenarios, pero obviamente nadie sufrió ninguna consecuencia fatal, todo fue una recreación bastante segura y bien controlada (al menos eso se puede deducir dado que esta noticia no se llama "Participante de Juego del Calamar Real se accidenta").</p>
<p>El video de Mr. Beast ha reunido en tan sólo dos días más de 57 millones de vistas, y si te somos honestos... es bastante divertido. Tiene la medida exacta de fidelidad y originalidad. Por ejemplo: la icónica muñeca de "Luz Roja/Luz Verde" es idéntica a la de la serie... pero Mr. Beast tuvo el buen gusto de suplantar la ya hartante cancioncita. Velo por tu cuenta, te dejamos el video aquí.</p>
<div class="imagenes">
<iframe class="videos" width="560" height="315" src="https://www.youtube.com/embed/0e3GPea1Tyg" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<br>
<h4>La noticia fue tomada de:</h4>
<div class="listas">
<ul>
<li><a class="links" href="https://www.marca.com/claro-mx/esports/2021/11/26/61a108bbe2704eb8af8b458e.html">Marca</li></a>
</ul>
</div>
</div>
<br>
<br>
<br>
<!-- Footer-->
<div id="footer" class="p-3">
<div class="row justify-content-md-center py-3">
<div class="col text-center font-weight-light">
<p class="alineado">Copyright © NewsToday | 2021</p>
</div>
</div>
</div>
</body>
</html> | 63.795455 | 834 | 0.669042 |
fc0f33de28b0553bc1f56a46b2aaac19c2751eca | 4,901 | ps1 | PowerShell | src/AzureDevOps/SQLServerDeploy/Tasks/MSSQLDeploy/command.ps1 | GustavoAmerico/SQLServerDeploy | 78750e1e93c51e95054fb1e8037b60ac166afa18 | [
"MIT"
] | 11 | 2017-08-03T01:37:05.000Z | 2021-09-18T09:37:33.000Z | src/AzureDevOps/SQLServerDeploy/Tasks/MSSQLDeploy/command.ps1 | GustavoAmerico/SQLServerDeploy | 78750e1e93c51e95054fb1e8037b60ac166afa18 | [
"MIT"
] | 6 | 2018-06-07T16:55:17.000Z | 2020-11-13T21:38:21.000Z | src/AzureDevOps/SQLServerDeploy/Tasks/MSSQLDeploy/command.ps1 | GustavoAmerico/SQLServerDeploy | 78750e1e93c51e95054fb1e8037b60ac166afa18 | [
"MIT"
] | 2 | 2018-05-18T12:33:17.000Z | 2019-01-24T13:25:14.000Z | [CmdletBinding(DefaultParameterSetName = 'None')]
param(
[String] [Parameter(Mandatory = $True)][string]
$dacpacPattern,
[String] [Parameter(Mandatory = $True)][string]
$dacpacPath,
[String] [Parameter(Mandatory = $True)][string]
$server,
[String] [Parameter(Mandatory = $True)][string]
$userId,
[String] [Parameter(Mandatory = $True)][string]
$password,
[String] [Parameter(Mandatory = $True)][string]
$dbName,
[String] [Parameter(Mandatory = $False)][string]
$blockOnPossibleDataLoss = "false",
[String] [Parameter(Mandatory = $False)][string]
$verifyDeployment = "true",
[String] [Parameter(Mandatory = $False)][string]
$compareUsingTargetCollation = "true",
[String] [Parameter(Mandatory = $False)][string]
$allowIncompatiblePlatform = "true",
[Int32][Parameter(Mandatory = $true)][Int32]
$commandTimeout = 7200,
[String] [Parameter(Mandatory = $False)][string]
$createNewDatabase = "false",
[String] [Parameter(Mandatory = $False)][string]
$variablesInput = ""
)
Write-Host "Preparing Publishing Variables"
$Variables = ConvertFrom-StringData -StringData $variablesInput
foreach ($VariableKey in $Variables.Keys) {
[Environment]::SetEnvironmentVariable($VariableKey, $Variables[$VariableKey], "User");
Write-Host $Variables[$VariableKey];
}
###########################################################################
# INSTALL .NET CORE CLI
###########################################################################
function global:InstallDotNetCore {
param(
# Version
[Parameter(Mandatory = $False)]
[System.String]
$DotNetVersion = "5.0.101"
)
Function Remove-PathVariable([string]$VariableToRemove) {
$path = [Environment]::GetEnvironmentVariable("PATH", "User")
if ($path -ne $null) {
$newItems = $path.Split(';', [StringSplitOptions]::RemoveEmptyEntries) | Where-Object { "$($_)" -inotlike $VariableToRemove }
[Environment]::SetEnvironmentVariable("PATH", [System.String]::Join(';', $newItems), "User")
}
$path = [Environment]::GetEnvironmentVariable("PATH", "Process")
if ($path -ne $null) {
$newItems = $path.Split(';', [StringSplitOptions]::RemoveEmptyEntries) | Where-Object { "$($_)" -inotlike $VariableToRemove }
[Environment]::SetEnvironmentVariable("PATH", [System.String]::Join(';', $newItems), "Process")
}
}
$DotNetInstallerUri = "https://dot.net/v1/dotnet-install.ps1";
# Get .NET Core CLI path if installed.
$FoundDotNetCliVersion = 0;
if (Get-Command dotnet -ErrorAction SilentlyContinue) {
$FoundDotNetCliVersion = (dotnet --version).Substring(0, 7);
Write-Host "Found version: $FoundDotNetCliVersion"
}
if ($FoundDotNetCliVersion -lt $DotNetVersion) {
$InstallPath = $ENV:TEMP = Join-Path $PSScriptRoot ".dotnet"
if (!(Test-Path $InstallPath)) {
mkdir -Force $InstallPath | Out-Null;
}
Write-Host 'Install the dotnet core 2.1 for use dotnet tool feature';
$installerScript = "$InstallPath\dotnet-install.ps1";
Write-Host "Start Download from dotnet cli from $DotNetInstallerUri in $installerScript";
(New-Object System.Net.WebClient).DownloadFile($DotNetInstallerUri, $installerScript);
& $InstallPath\dotnet-install.ps1 -Channel $DotNetChannel -Version $DotNetVersion -InstallDir $InstallPath;
Remove-PathVariable "$InstallPath"
$env:PATH = "$InstallPath;$env:PATH"
}
$env:DOTNET_SKIP_FIRST_TIME_EXPERIENCE = 1
$env:DOTNET_CLI_TELEMETRY_OPTOUT = 1
return Get-Command dotnet.exe;
}
function Install-DotNet-Dacpac {
$dotnet = global:InstallDotNetCore
if ($dot = Get-Command dotnet-dacpac.exe -ErrorAction SilentlyContinue) {
Write-Host 'Found dotnet-dacpac.exe';
return $dot;
}
else {
Write-Host 'Installing the dotnet tool feature for deploy .dacpac';
&{
&$dotnet tool update --global Dacpac.Tool
} -ErrorAction SilentlyContinue
}
return Get-Command dotnet-dacpac.exe;
}
$dacpac = Install-Dotnet-Dacpac
if (!(Test-Path $dacpacPath)) {
Write-Error "The path $dacpacPath not exists"
return;
}
$currentPath = Get-Location
Set-Location $dacpacPath
Write-Host 'Start publish database'
%{
&$dacpac publish --DacPath=$dacpacPath --server=$server --namePattern=$dacpacPattern --databaseNames=$dbName --blockOnPossibleDataLoss=$blockOnPossibleDataLoss --verifyDeployment=$verifyDeployment --compareUsingTargetCollation=$compareUsingTargetCollation --allowIncompatiblePlatform=$allowIncompatiblePlatform --commandTimeout=$commandTimeout --createNewDatabase=$createNewDatabase
}
Set-Location $currentPath
| 35.007143 | 383 | 0.644358 |
46df6e0d82973fc7d29ed05bbc18678f8522a170 | 160,815 | html | HTML | Web/gwt/mail/mail/0938D19FC7C11BB844E09F92A794E8B3.cache.html | Inflectra/library-information-system | f6417125fb0339463a0b821f1bb5138af51477c2 | [
"Apache-2.0"
] | null | null | null | Web/gwt/mail/mail/0938D19FC7C11BB844E09F92A794E8B3.cache.html | Inflectra/library-information-system | f6417125fb0339463a0b821f1bb5138af51477c2 | [
"Apache-2.0"
] | null | null | null | Web/gwt/mail/mail/0938D19FC7C11BB844E09F92A794E8B3.cache.html | Inflectra/library-information-system | f6417125fb0339463a0b821f1bb5138af51477c2 | [
"Apache-2.0"
] | null | null | null | <html><head><meta charset="UTF-8" /><script>var $gwt_version = "2.0.3";var $wnd = parent;var $doc = $wnd.document;var $moduleName, $moduleBase;var $strongName = '0938D19FC7C11BB844E09F92A794E8B3';var $stats = $wnd.__gwtStatsEvent ? function(a) {return $wnd.__gwtStatsEvent(a);} : null,$sessionId = $wnd.__gwtStatsSessionId ? $wnd.__gwtStatsSessionId : null;$stats && $stats({moduleName:'mail',sessionId:$sessionId,subSystem:'startup',evtGroup:'moduleStartup',millis:(new Date()).getTime(),type:'moduleEvalStart'});</script></head><body><script><!--
function O(){}
function N(){}
function LM(){}
function gb(){}
function fb(){}
function Cb(){}
function Bb(){}
function Ab(){}
function zb(){}
function hc(){}
function xc(){}
function Kc(){}
function Oc(){}
function be(){}
function ye(){}
function xe(){}
function Me(){}
function Sf(){}
function Rf(){}
function Xf(){}
function ag(){}
function fg(){}
function jg(){}
function og(){}
function qg(){}
function vg(){}
function Ag(){}
function Eg(){}
function Jg(){}
function Lg(){}
function Pg(){}
function Ug(){}
function Zg(){}
function bh(){}
function hh(){}
function mh(){}
function qh(){}
function uh(){}
function yh(){}
function Ch(){}
function Gh(){}
function Kh(){}
function Oh(){}
function Sh(){}
function Wh(){}
function $h(){}
function ni(){}
function qi(){}
function Ai(){}
function zi(){}
function yi(){}
function Ti(){}
function Si(){}
function sj(){}
function rj(){}
function Fj(){}
function Nj(){}
function Uj(){}
function _j(){}
function hk(){}
function tk(){}
function Hk(){}
function Tk(){}
function Uk(){}
function al(){}
function fl(){}
function tl(){}
function xl(){}
function Cl(){}
function Ql(){}
function $m(){}
function jn(){}
function qn(){}
function vn(){}
function Fn(){}
function Tn(){}
function bo(){}
function Jo(){}
function Ko(){}
function Qo(){}
function Ro(){}
function ao(){}
function Xo(){}
function Yo(){}
function _n(){}
function $n(){}
function Zn(){}
function Yn(){}
function Xn(){}
function Wn(){}
function wq(){}
function Cq(){}
function Bq(){}
function Oq(){}
function Sq(){}
function Vq(){}
function fr(){}
function ir(){}
function nr(){}
function mr(){}
function xr(){}
function Nr(){}
function ds(){}
function ms(){}
function rs(){}
function zs(){}
function Ds(){}
function Is(){}
function Ps(){}
function Ws(){}
function bt(){}
function et(){}
function ot(){}
function vt(){}
function Et(){}
function Lt(){}
function Wt(){}
function Zt(){}
function eu(){}
function Fu(){}
function Uu(){}
function _u(){}
function iv(){}
function rv(){}
function wv(){}
function zv(){}
function Iv(){}
function Mv(){}
function Qv(){}
function zw(){}
function Uw(){}
function ox(){}
function ux(){}
function Zx(){}
function iy(){}
function ly(){}
function vy(){}
function uy(){}
function Gy(){}
function Fy(){}
function Ty(){}
function Xy(){}
function Wy(){}
function gz(){}
function mz(){}
function pz(){}
function uz(){}
function tz(){}
function zz(){}
function Mz(){}
function Uz(){}
function _z(){}
function $z(){}
function Zz(){}
function hA(){}
function tA(){}
function vA(){}
function kA(){}
function xA(){}
function IA(){}
function EA(){}
function DA(){}
function NA(){}
function RA(){}
function QA(){}
function qB(){}
function pB(){}
function xB(){}
function FB(){}
function JB(){}
function SB(){}
function VB(){}
function _B(){}
function kC(){}
function sC(){}
function xC(){}
function wC(){}
function EC(){}
function SC(){}
function UC(){}
function HC(){}
function XC(){}
function aD(){}
function dD(){}
function hD(){}
function lD(){}
function wD(){}
function CD(){}
function ID(){}
function MD(){}
function WD(){}
function ZD(){}
function aE(){}
function dE(){}
function kE(){}
function AE(){}
function IE(){}
function HE(){}
function TE(){}
function XE(){}
function cF(){}
function rF(){}
function zF(){}
function DF(){}
function GF(){}
function JF(){}
function uG(){}
function tG(){}
function VG(){}
function YG(){}
function jH(){}
function uH(){}
function DH(){}
function RH(){}
function XH(){}
function _H(){}
function pI(){}
function uI(){}
function xI(){}
function GI(){}
function JI(){}
function OI(){}
function RI(){}
function UI(){}
function ZI(){}
function YI(){}
function nJ(){}
function rJ(){}
function QJ(){}
function TJ(){}
function $J(){}
function ZJ(){}
function xK(){}
function wK(){}
function JK(){}
function RK(){}
function QK(){}
function $K(){}
function fL(){}
function oL(){}
function wL(){}
function DL(){}
function IL(){}
function cM(){}
function gM(){}
function vM(){}
function DM(){}
function Kp(a){}
function rb(){eb()}
function _D(a){TD()}
function oz(a){a.wb()}
function rz(a){a.yb()}
function Rj(a){mm(a,6)}
function Yj(a){mm(a,6)}
function ko(a,b){a.J=b}
function No(){Bo(this)}
function Po(){Do(this)}
function Jp(){wp(this)}
function nq(){eq(this)}
function Mw(){Gw(this)}
function uA(){qA(this)}
function TC(){MC(this)}
function _f(){return eO}
function eg(){return fO}
function ig(){return gO}
function mg(){return hO}
function ug(){return mO}
function zg(){return _N}
function Dg(){return nO}
function Ig(){return $N}
function Og(){return sO}
function Tg(){return tO}
function Yg(){return uO}
function ah(){return vO}
function lh(){return FO}
function ph(){return GO}
function th(){return HO}
function xh(){return IO}
function Bh(){return JO}
function Fh(){return KO}
function Jh(){return LO}
function Nh(){return MO}
function Rh(){return NO}
function Zh(){return mO}
function bi(){return _N}
function Qi(){return Li}
function Dj(){return yj}
function Lj(){return Gj}
function Sj(){return Oj}
function Zj(){return Vj}
function fk(){return ak}
function zk(){return uk}
function Ok(){return Ik}
function Zk(){return Vk}
function Kw(){return Aw}
function tx(){return px}
function Ay(a){return a}
function _C(a){$C(this)}
function pb(){pb=LM;ib()}
function ze(){ze=LM;ce()}
function De(){De=LM;ze()}
function Ne(){Ne=LM;De()}
function Yf(){Yf=LM;Wf()}
function bg(){bg=LM;Wf()}
function gg(){gg=LM;Wf()}
function kg(){kg=LM;Wf()}
function rg(){rg=LM;pg()}
function wg(){wg=LM;pg()}
function Bg(){Bg=LM;pg()}
function Fg(){Fg=LM;pg()}
function Mg(){Mg=LM;Kg()}
function Qg(){Qg=LM;Kg()}
function Vg(){Vg=LM;Kg()}
function $g(){$g=LM;Kg()}
function ih(){ih=LM;gh()}
function nh(){nh=LM;gh()}
function rh(){rh=LM;gh()}
function vh(){vh=LM;gh()}
function zh(){zh=LM;gh()}
function Dh(){Dh=LM;gh()}
function Hh(){Hh=LM;gh()}
function Lh(){Lh=LM;gh()}
function Ph(){Ph=LM;gh()}
function Xh(){Xh=LM;Vh()}
function _h(){_h=LM;Vh()}
function Uo(a,b){Ho(b,a)}
function jp(){jp=LM;jI()}
function Pp(){Pp=LM;jp()}
function Up(){Bo(this.j)}
function Vp(){Do(this.j)}
function $p(){$p=LM;Pp()}
function qq(){qq=LM;$p()}
function Wq(){Wq=LM;jp()}
function Jv(){Jv=LM;ib()}
function Nv(){Nv=LM;ib()}
function Yy(){Yy=LM;ZH()}
function _y(){_y=LM;Yy()}
function vz(){vz=LM;Yy()}
function xz(){xz=LM;vz()}
function Az(){Az=LM;vz()}
function MA(){nA(this.b)}
function bE(){bE=LM;QD()}
function oF(){gF(this,0)}
function pF(){MC(this.c)}
function pG(){LG(this.h)}
function PG(){PG=LM;yG()}
function aI(){aI=LM;ZH()}
function sk(){return null}
function sl(a){ol(this,a)}
function Oo(a){Co(this,a)}
function So(a){Io(this,a)}
function ip(a){dp(this,a)}
function pq(a){jq(this,a)}
function zq(a){eq(this.b)}
function Jq(){this.h.yb()}
function vD(a){rD(this,a)}
function LD(a){MC(this.b)}
function SF(a,b){b||yk(a)}
function TG(a){RG(this,a)}
function UG(a){SG(this,a)}
function eH(a){aH(this,a)}
function XK(){return null}
function Xk(a){gD(mm(a,9))}
function HD(){Kn(this.b.e)}
function Xi(){return this.d}
function qo(){return this.J}
function Mo(){return this.E}
function ep(){return this.J}
function fp(){return this.D}
function gs(a){Ur(this.b,a)}
function Cs(a){Sr(this.b.e)}
function Gs(a){Tr(this.b.e)}
function qy(a){ol(this.b,a)}
function Tz(){return this.b}
function Xz(a){this.b.i=a.b}
function gE(){return this.b}
function pE(){return this.b}
function jI(){jI=LM;iI=oI()}
function cJ(){return this.b}
function bL(){return this.b}
function YL(){return this.c}
function zM(){return this.b}
function AM(){return this.c}
function Gc(a){return a.cb()}
function yv(a){dd();return a}
function Py(a,b){Jy(a,b,a.J)}
function AB(a,b){Jy(a,b,a.J)}
function fG(a,b){gG(b,a.e.b)}
function iG(a,b){gG(b,a.e.d)}
function mH(a,b){pH(a,b,a.c)}
function wI(a){dd();return a}
function LI(a){dd();return a}
function WI(a){dd();return a}
function pJ(a){dd();return a}
function FM(a){dd();return a}
function Wp(){return this.j.D}
function Gq(){return Fq(this)}
function gt(a){$wnd.alert(iU)}
function Vv(a){return a.d<a.b}
function $v(){return Wv(this)}
function RB(){return PB(this)}
function qE(){return oE(this)}
function yF(){return wF(this)}
function CH(){return zH(this)}
function LH(){return JH(this)}
function HJ(){return OJ(this)}
function IK(){return this.b.e}
function YK(){return this.b.c}
function vL(){return tL(this)}
function qM(){return this.b.e}
function bb(){this.k&&this.Z()}
function gA(a){dA(a);return a}
function mw(a){bw=a;Dx();Ix=a}
function yw(a){bw=a;Dx();Ix=a}
function YD(a){a.vb()&&a.yb()}
function eM(a){gK(a);return a}
function Gb(a,b){dd();return a}
function Ib(a,b){dd();return a}
function Zb(b,a){b[b.length]=a}
function ec(b,a){b[b.length]=a}
function jk(a){a.b={};return a}
function dl(a){rl(a.c,a.d,a.b)}
function Ki(){return this.jb()}
function Dp(a,b){dp(a,b);xp(a)}
function sx(a){Am(a);null.ec()}
function eB(a,b){a.d=b;ZB(a.d)}
function gD(a){a.b.m&&a.b.Hb()}
function Pi(a){mm(a,4).kb(this)}
function xk(a){mm(a,7).lb(this)}
function tC(){tC=LM;gK(new cM)}
function ce(){ce=LM;Ne();new Me}
function QI(a,b){dd();return a}
function TI(a,b){dd();return a}
function XI(a,b){dd();return a}
function qJ(a,b){dd();return a}
function SJ(a,b){dd();return a}
function Mc(a,b){a.b=b;return a}
function Qc(a,b){a.b=b;return a}
function Kk(a,b){a.b=b;return a}
function yq(a,b){a.b=b;return a}
function kr(a,b){a.b=b;return a}
function fs(a,b){a.b=b;return a}
function Bs(a,b){a.b=b;return a}
function Fs(a,b){a.b=b;return a}
function Tv(a,b){a.e=b;return a}
function Wz(a,b){a.b=b;return a}
function jA(a,b){a.b=b;return a}
function GA(a,b){a.e=b;return a}
function wB(a,b){a.b=b;return a}
function UB(a,b){a.b=b;return a}
function XB(a,b){a.c=b;return a}
function bC(a,b){a.b=b;return a}
function mC(a,b){a.b=b;return a}
function ZC(a,b){a.b=b;return a}
function cD(a,b){a.b=b;return a}
function fD(a,b){a.b=b;return a}
function oD(a,b){a.b=b;return a}
function yD(a,b){a.b=b;return a}
function KD(a,b){a.b=b;return a}
function VE(a,b){a.b=b;return a}
function uF(a,b){a.c=b;return a}
function xH(a,b){a.c=b;return a}
function rI(a,b){a.b=b;return a}
function aJ(a,b){a.b=b;return a}
function lJ(a,b){return a>b?a:b}
function mJ(a,b){return a<b?a:b}
function CK(a,b){a.b=b;return a}
function OK(){return sL(this.b)}
function Mk(a){mm(a,8).mb(this)}
function tJ(a,b,c,d,e){return a}
function WK(a,b){a.b=b;return a}
function rL(a,b){a.c=b;return a}
function sL(a){return a.b<a.c.c}
function CL(){return this.c.b.e}
function hp(a){return cp(this,a)}
function FL(a,b){a.b=b;return a}
function Wi(a){a.d=++Ui;return a}
function iq(a){a.g=false;kw(a.J)}
function $y(a){this.J.tabIndex=a}
function ez(a){this.J.tabIndex=a}
function MJ(){MJ=LM;JJ={};LJ={}}
function Vo(){lz(this,(jz(),hz))}
function Wo(){lz(this,(jz(),iz))}
function pr(){mm(this.h,44).Jb()}
function Tp(a,b){dp(a.j,b);xp(a)}
function Hv(a,b){ML(a.c,b);Fv(a)}
function Ny(a){return Ly(this,a)}
function wA(a){return rA(this,a)}
function jB(a){return bB(this,a)}
function SE(){return this.g.pb()}
function bF(){return this.g.ob()}
function qF(a){return kF(this,a)}
function CF(a){lF(this.b,this.c)}
function GJ(a){return xJ(this,a)}
function GK(a){return DK(this,a)}
function _L(a){return VL(this,a)}
function ro(a){this.J.style[lP]=a}
function vo(a){this.J.style[kP]=a}
function iE(a){this.J.style[lP]=a}
function jE(a){this.J.style[kP]=a}
function pi(){(ii(),ei)&&ji(null)}
function zc(){zc=LM;yc=Bc(new xc)}
function rw(){rw=LM;qw=Cv(new zv)}
function qx(){qx=LM;px=Wi(new Ti)}
function GL(){return sL(this.b.b)}
function Zv(){return this.d<this.b}
function FF(a,b){Eq(a,b);return a}
function zo(a,b){!!a.G&&ol(a.G,b)}
function lF(a,b){mF(a,hF(a,b),250)}
function Np(a){dp(this,a);xp(this)}
function Yp(a){return cp(this.j,a)}
function hw(a){return qe((ce(),a))}
function LG(a){MG(a);YF(a.j,a,a.g)}
function WJ(a){throw SJ(new QJ,cX)}
function ZK(a){return pK(this.b,a)}
function AL(a){return hK(this.b,a)}
function oM(a){return hK(this.b,a)}
function lm(a,b){return a&&im[a][b]}
function Uv(a){return PL(a.e.c,a.c)}
function gp(){return nE(new kE,this)}
function mK(b,a){return bX+a in b.f}
function dx(a,b){return kl(hx(),a,b)}
function iB(){return MB(new JB,this)}
function QB(){return this.b<this.d.c}
function Iz(){this.b.__listener=this}
function sA(a,b,c,d){pA(this,a,b,c)}
function Zp(a){dp(this.j,a);xp(this)}
function ix(){if(!Yw){Dy();Yw=true}}
function jx(){if(!ax){Ey();ax=true}}
function si(){si=LM;ri=(si(),new qi)}
function Zr(){this.e==-1&&Vr(this,0)}
function uL(){return this.b<this.c.c}
function nF(){return uF(new rF,this)}
function tH(){return xH(new uH,this)}
function EI(){return this.b?1231:1237}
function BI(a,b){AI();a.b=b;return a}
function Kv(a,b){Jv();a.b=b;return a}
function Ov(a,b){Nv();a.b=b;return a}
function Zy(a,b){a.J=b;a.J.tabIndex=0}
function GH(a,b){a.c=b;HH(a);return a}
function cI(a){aI();a.b=dI();return a}
function Zf(a,b,c){Yf();a.b=c;return a}
function cg(a,b,c){bg();a.b=c;return a}
function hg(a,b,c){gg();a.b=c;return a}
function lg(a,b,c){kg();a.b=c;return a}
function sg(a,b,c){rg();a.b=c;return a}
function xg(a,b,c){wg();a.b=c;return a}
function Cg(a,b,c){Bg();a.b=c;return a}
function Gg(a,b,c){Fg();a.b=c;return a}
function Ng(a,b,c){Mg();a.b=c;return a}
function Rg(a,b,c){Qg();a.b=c;return a}
function Wg(a,b,c){Vg();a.b=c;return a}
function _g(a,b,c){$g();a.b=c;return a}
function jh(a,b,c){ih();a.b=c;return a}
function oh(a,b,c){nh();a.b=c;return a}
function sh(a,b,c){rh();a.b=c;return a}
function wh(a,b,c){vh();a.b=c;return a}
function Ah(a,b,c){zh();a.b=c;return a}
function Eh(a,b,c){Dh();a.b=c;return a}
function Ih(a,b,c){Hh();a.b=c;return a}
function Mh(a,b,c){Lh();a.b=c;return a}
function Qh(a,b,c){Ph();a.b=c;return a}
function Yh(a,b,c){Xh();a.b=c;return a}
function ai(a,b,c){_h();a.b=c;return a}
function Fl(a){a.b=eM(new cM);return a}
function Xp(){return nE(new kE,this.j)}
function km(a,b){return a&&!!im[a][b]}
function iw(a,b){return Ke((ce(),a),b)}
function My(){return xH(new uH,this.f)}
function Lo(a){!!this.G&&ol(this.G,a)}
function Ei(){this.f=false;this.g=null}
function jL(a,b){(a<0||a>=b)&&mL(a,b)}
function hn(a,b){On(b.e,b.d);SL(a.d,b)}
function tn(a,b,c){sn();a.b=c;return a}
function CA(a,b,c){BA();a.b=c;return a}
function kD(a,b,c){jD();a.b=c;return a}
function PE(){return Pe((ce(),this.J))}
function $E(){return Re((ce(),this.J))}
function DB(){DB=LM;CB=(ZH(),ZH(),YH)}
function Iq(a){Co(this,a);this.h.xb(a)}
function xF(){return this.b<this.c.b.c}
function BH(){return this.b<this.c.c-1}
function HK(){return LK(new JK,this.b)}
function PK(){return mm(tL(this.b),50)}
function dL(a,b){return aL(new $K,b,a)}
function XL(a){return QL(this,a,0)!=-1}
function lI(a){return iI?qe((ce(),a)):a}
function iM(a){a.b=eM(new cM);return a}
function ay(a){a.c=LL(new IL);return a}
function ln(a,b,c){a.b=b;a.c=c;return a}
function Qq(a,b,c){a.b=b;a.c=c;return a}
function Uq(a,b,c){a.c=b;a.b=c;return a}
function ky(a,b,c){a.b=b;a.c=c;return a}
function LA(a,b,c){a.b=c;a.e=b;return a}
function BF(a,b,c){a.b=b;a.c=c;return a}
function aL(a,b,c){a.c=c;a.b=b;return a}
function yL(a,b,c){a.b=b;a.c=c;return a}
function xM(a,b,c){a.b=b;a.c=c;return a}
function cL(){return this.c.f[bX+this.b]}
function wl(){Gl(this.b.e,this.d,this.c)}
function Al(){Ll(this.b.e,this.d,this.c)}
function sI(){this.b.style[ZN]=(pg(),$N)}
function WE(){this.b.b=null;oA(this.b.h)}
function KH(){return this.b<this.c.length}
function RE(){return Pe((ce(),this.g.J))}
function aF(){return Re((ce(),this.g.J))}
function QE(a){return (ce(),a).clientX||0}
function PL(a,b){jL(b,a.c);return a.b[b]}
function fn(a,b,c){return Ln(a.c,a.e,b,c)}
function _E(a){return (ce(),a).clientY||0}
function eL(a){return qK(this.c,this.b,a)}
function Fp(){return lI(qe((ce(),this.J)))}
function Ip(){return mI(qe((ce(),this.J)))}
function T(){return this.$H||(this.$H=++nc)}
function qv(a){a.parentNode.removeChild(a)}
function le(a){return a.which||a.keyCode||0}
function QG(a,b){PG();a.b=b;zG(a);return a}
function Kb(a,b){dd();a.b=b;cd(a);return a}
function pm(a,b){return a!=null&&km(a.tI,b)}
function nL(){return rL(new oL,mm(this,11))}
function S(a){return this===(a==null?null:a)}
function Tw(a){Sw();return Rw?oy(Rw,a):null}
function Dx(){if(!yx){Qx();Wx();yx=true}}
function jz(){jz=LM;hz=new mz;iz=new pz}
function gJ(){gJ=LM;fJ=Yl(Fm,177,31,256,0)}
function ib(){ib=LM;hb=LL(new IL);cx(new Uw)}
function Cc(a){var b;b=a.c;a.c=[];Ic(b,a.c)}
function nE(a,b){a.c=b;a.b=!!a.c.D;return a}
function zy(a){a.b=il(new fl,null);return a}
function mL(a,b){throw XI(new UI,dX+a+eX+b)}
function wz(a,b){vz();a.J=b;a.Ob(0);return a}
function cE(a){bE();RD(a,$doc.body);return a}
function ML(a,b){_l(a.b,a.c++,b);return true}
function po(){return parseInt(this.J[qP])||0}
function Vf(){return this.$H||(this.$H=++nc)}
function Uf(a){return this===(a==null?null:a)}
function oo(){return parseInt(this.J[pP])||0}
function Gp(){return parseInt(this.J[pP])||0}
function Hp(){return parseInt(this.J[qP])||0}
function on(){gn(this.b,0,null);this.b.b=null}
function nn(){gn(this.b,0,null);this.b.b=null}
function Lp(){this.B&&Cp(this,false,false)}
function ob(){!this.c&&SL(hb,this);this.bb()}
function Lv(){if(!this.b.d){return}Dv(this.b)}
function Ep(a){if(a.B){return}Cp(a,true,true)}
function LL(a){a.b=Yl(Gm,179,0,0,0);return a}
function hx(){!Zw&&(Zw=wx(new ux));return Zw}
function ed(){try{null.a()}catch(a){return a}}
function CG(a){if(!a.d){return 0}return a.d.c}
function eq(a){if(a.h){dl(a.h);a.h=null}wp(a)}
function Cj(a){gq(mm(a,6).b,wj(this),xj(this))}
function Iw(a){zp(mm(a,41).b,this);Bw.d=false}
function Kj(a){hq(mm(a,6).b,wj(this),xj(this))}
function lH(a){a.b=Yl(Em,171,26,4,0);return a}
function yk(a){var b;if(uk){b=new tk;a.nb(b)}}
function Yk(a){var b;if(Vk){b=new Uk;a.nb(b)}}
function dt(a){var b;b=rq(new Wn);kq(b);pp(b)}
function Pe(a){return Qe(wf(a.ownerDocument),a)}
function WH(a){return QH(a.e,a.c,a.d,a.f,a.b)}
function Re(a){return Se(wf(a.ownerDocument),a)}
function CJ(b,a){return b.substr(a,b.length-a)}
function gq(a,b,c){a.g=true;mw(a.J);a.e=b;a.f=c}
function cl(a,b,c,d){a.c=b;a.b=d;a.d=c;return a}
function vl(a,b,c,d){a.b=b;a.d=c;a.c=d;return a}
function zl(a,b,c,d){a.b=b;a.d=c;a.c=d;return a}
function PA(a,b,c,d){a.b=b;a.d=c;a.c=d;return a}
function FD(a){JC(a);ex(KD(new ID,a));return a}
function Ec(a){return a.b.length>0||a.f.length>0}
function qm(a){return a!=null&&a.tM!=LM&&a.tI!=2}
function CM(a){var b;b=this.c;this.c=a;return b}
function iL(a){NL(this,this.$b(),a);return true}
function zD(){$(this.b,200,(new Date).getTime())}
function IF(a,b,c,d){a.d=b;a.b=c;a.c=d;return a}
function tv(a,b,c,d){a.c=b;a.d=c;a.b=d;return a}
function ll(a,b){!a.b&&(a.b=LL(new IL));ML(a.b,b)}
function kq(a){!a.h&&(a.h=ex(Wz(new Uz,a)));Ep(a)}
function ek(a){iq(mm(a,6).b,(wj(this),xj(this)))}
function XJ(a){var b;b=VJ(this.Fb(),a);return !!b}
function WL(a){return _l(this.b,this.c++,a),true}
function lq(){try{Bo(this.j)}finally{Bo(this.b)}}
function mq(){try{Do(this.j)}finally{Do(this.b)}}
function ii(){ii=LM;fi=[];gi=[];hi=[];di=new ni}
function Mi(){Mi=LM;Li=Zi(new Si,SO,(Mi(),new yi))}
function dm(){dm=LM;bm=[];cm=[];em(new Ql,bm,cm)}
function zj(){zj=LM;yj=Zi(new Si,TO,(zj(),new rj))}
function Hj(){Hj=LM;Gj=Zi(new Si,UO,(Hj(),new Fj))}
function Pj(){Pj=LM;Oj=Zi(new Si,VO,(Pj(),new Nj))}
function Wj(){Wj=LM;Vj=Zi(new Si,WO,(Wj(),new Uj))}
function bk(){bk=LM;ak=Zi(new Si,XO,(bk(),new _j))}
function Sw(){Sw=LM;Rw=zy(new uy);!xy(Rw)&&(Rw=null)}
function MB(a,b){a.c=b;a.d=a.c.g.c;NB(a);return a}
function Fq(a){if(a.h){return a.h.vb()}return false}
function CE(a){mA(a,(gh(),fh));a.J[zP]=gW;return a}
function Am(a){if(a!=null){throw LI(new JI)}return a}
function PJ(){if(KJ==256){JJ=LJ;LJ={};KJ=0}++KJ}
function wp(a){if(!a.B){return}Cp(a,false,true);yk(a)}
function jM(a,b){var c;c=nK(a.b,b,a);return c==null}
function Qy(a,b){var c;c=Ly(a,b);c&&Ry(b.J);return c}
function Sy(a){var b;return b=Ly(this,a),b&&Ry(a.J),b}
function py(a){return decodeURI(a.replace(cV,dV))}
function Vy(a){return UH(new RH,a.e,a.c,a.d,a.f,a.b)}
function VH(a){return uC(new sC,a.e,a.c,a.d,a.f,a.b)}
function gK(a){a.b=[];a.f={};a.d=false;a.c=null;a.e=0}
function uv(a){a.c?a.c.insertBefore(a.b,a.d):qv(a.b)}
function oA(a){a.d.c=true;nA(a);gn(a.c,0,null);qA(a)}
function _c(a,b){a.length>=b&&a.splice(0,b);return a}
function HG(a,b){if(a.i==b){return}a.i=b;so(a.e,OW,b)}
function DG(a,b){if(!a.d){return -1}return QL(a.d,b,0)}
function cx(a){ix();return dx(uk?uk:(uk=Wi(new Ti)),a)}
function jl(a,b,c){a.e=Fl(new Cl);a.f=b;a.d=c;return a}
function zr(a,b,c,d,e){a.d=b;a.c=c;a.e=d;a.b=e;return a}
function Dc(a){var b;b=a.b;a.b=[];Ic(b,a.f);a.f=Hc(a.f)}
function Nk(a,b){var c;if(Ik){c=Kk(new Hk,b);ol(a,c)}}
function cC(a,b,c){so((nB(a.b,b),a.b.b.rows[b]),c,true)}
function DE(a,b,c,d){pA(a,b,c,d);c!=(BA(),yA)&&EE(a,b)}
function $o(a,b){if(a.Eb()){throw TI(new RI,yP)}a.Gb(b)}
function sw(a){rw();if(!a){throw qJ(new nJ,NU)}Hv(qw,a)}
function Tt(){!Pt&&(Pt=Vn(new Tn,vU,0,0,1,64));return Pt}
function Qu(){!Ku&&(Ku=Vn(new Tn,vU,0,0,1,64));return Ku}
function ZH(){ZH=LM;YH=cI(new _H);YH?(ZH(),new XH):YH}
function il(a,b){a.e=Fl(new Cl);a.f=b;a.d=false;return a}
function eC(a,b,c){so((nB(a.b,b),a.b.b.rows[b]),c,false)}
function HL(){var a;a=mm(tL(this.b.b),50);return a.bc()}
function Rc(){this.b.d&&Jc(this.b.e,1);return this.b.g}
function Kz(a){!!this.b&&(this.b.tabIndex=a,undefined)}
function Ct(){!zt&&(zt=Vn(new Tn,rU,0,0,32,32));return zt}
function Pu(){!Ju&&(Ju=Vn(new Tn,BU,0,0,31,22));return Ju}
function Ru(){!Lu&&(Lu=Vn(new Tn,CU,0,0,31,22));return Lu}
function Tu(){!Nu&&(Nu=Vn(new Tn,DU,0,0,31,22));return Nu}
function Vh(){Vh=LM;Uh=Yh(new Wh,iO,0);Th=ai(new $h,jO,1)}
function nM(a){var b;return b=nK(this.b,a,this),b==null}
function SD(a){QD();try{a.yb()}finally{rK(PD.b,a)!=null}}
function wx(a){a.e=Fl(new Cl);a.f=null;a.d=false;return a}
function QD(){QD=LM;ND=new WD;OD=eM(new cM);PD=iM(new gM)}
function RD(a,b){QD();a.f=lH(new jH);a.J=b;Bo(a);return a}
function TD(){QD();try{lz(PD,ND)}finally{gK(PD.b);gK(OD)}}
function Ur(a,b){var c,d;c=XA(a.g,b);if(c){d=c.b;Vr(a,d)}}
function aK(a){var b;b=CK(new wK,a);return yL(new wL,a,b)}
function AI(){AI=LM;yI=BI(new xI,false);zI=BI(new xI,true)}
function mi(){if(!ei){ei=true;Zb((zc(),yc).c,[di,false])}}
function Ww(a){while((ib(),hb).c>0){jb(mm(PL(hb,0),42))}}
function OC(a,b,c,d,e,f){zn(mm(b.H,37),c,d,e,f);HA(a.c,0)}
function PC(a,b,c,d,e,f){An(mm(b.H,37),c,d,e,f);HA(a.c,0)}
function QC(a,b,c,d,e,f){Dn(mm(b.H,37),c,d,e,f);HA(a.c,0)}
function RC(a,b,c,d,e,f){En(mm(b.H,37),c,d,e,f);HA(a.c,0)}
function Xr(a,b,c){b!=-1&&(c?cC(a.g.e,b,zT):eC(a.g.e,b,zT))}
function rl(a,b,c){a.c>0?ll(a,zl(new xl,a,b,c)):Ll(a.e,b,c)}
function oy(a,b){return kl(a.b,(!Vk&&(Vk=Wi(new Ti)),Vk),b)}
function mt(){!jt&&(jt=Vn(new Tn,jU,0,0,100,100));return jt}
function gv(){!dv&&(dv=Vn(new Tn,KU,0,0,140,75));return dv}
function db(){this._((1+Math.cos(3.141592653589793))/2)}
function cb(){this._((1+Math.cos(6.283185307179586))/2)}
function Op(a){this.o=a;xp(this);a.length==0&&(this.o=null)}
function Mp(a){this.n=a;xp(this);a.length==0&&(this.n=null)}
function Jz(){this.b.__listener=null;Hz(this,Ez(this),false)}
function Pv(){this.b.f=false;Ev(this.b,(new Date).getTime())}
function GG(a){a.h?a.h.Xb(a):!!a.j&&(SG(a.j.h,a),undefined)}
function Fv(a){if(a.c.c!=0&&!a.f&&!a.d){a.f=true;kb(a.e,1)}}
function QF(a,b){if(!b.g){return b}return QF(a,BG(b,CG(b)-1))}
function wi(a,b){var c;c=ui(b);vi(a).appendChild(c);return c}
function qc(a){return function(){return rc(a,this,arguments)}}
function Y(a){if(!a.i){return}SL(V,a);a.Y();a.k=false;a.i=false}
function gf(a){!a.gwt_uid&&(a.gwt_uid=1);return YN+a.gwt_uid++}
function kw(a){!!bw&&a==bw&&(bw=null);Dx();a===Ix&&(Ix=null)}
function MF(a){a.b=eM(new cM);UF(a,XG(new VG),false);return a}
function Ry(a){a.style[fP]=MN;a.style[gP]=MN;a.style[eP]=MN}
function Vn(a,b,c,d,e,f){a.c=c;a.d=d;a.b=f;a.f=e;a.e=b;return a}
function UH(a,b,c,d,e,f){a.e=b;a.c=c;a.d=d;a.f=e;a.b=f;return a}
function Jy(a,b,c){Fo(b);mH(a.f,b);c.appendChild(b.J);Ho(b,a)}
function FE(a,b,c,d){pA(this,a,b,c);b!=(BA(),yA)&&EE(this,a)}
function NC(a,b){var c;c=Ly(a,b);c&&hn(a.b,mm(b.H,37));return c}
function Io(a,b){a.F==-1?Xx(a.J,b|(a.J.__eventBits||0)):(a.F|=b)}
function qs(a,b){return WH(UH(new RH,a.e,a.c,a.d,a.f,a.b))+TN+b}
function BL(){var a;return a=LK(new JK,this.c.b),FL(new DL,a)}
function jC(){jC=LM;mC(new kC,PV);mC(new kC,fP);iC=mC(new kC,iP)}
function ex(a){ix();jx();return dx((!Ik&&(Ik=Wi(new Ti)),Ik),a)}
function wf(a){return xJ(a.compatMode,UN)?a.documentElement:a.body}
function bJ(a){return a!=null&&km(a.tI,31)&&mm(a,31).b==this.b}
function DI(a){return a!=null&&km(a.tI,49)&&mm(a,49).b==this.b}
function Ub(a){return a.tM==LM||a.tI==2?a.hC():a.$H||(a.$H=++nc)}
function Ke(a,b){return a===b||!!(a.compareDocumentPosition(b)&16)}
function nH(a,b){if(b<0||b>=a.c){throw WI(new UI)}return a.b[b]}
function zH(a){if(a.b>=a.c.c){throw FM(new DM)}return a.c.b[++a.b]}
function Mr(a){Kr();if(a>=Fr.c){return null}return mm(PL(Fr,a),39)}
function VC(a){var b;return b=Ly(this,a),b&&hn(this.b,mm(a.H,37)),b}
function TL(a,b,c){var d;d=(jL(b,a.c),a.b[b]);_l(a.b,b,c);return d}
function NL(a,b,c){(b<0||b>a.c)&&mL(b,a.c);a.b.splice(b,0,c);++a.c}
function pK(a,b){var c;c=a.c;a.c=b;if(!a.d){a.d=true;++a.e}return c}
function NB(a){while(++a.b<a.d.c){if(PL(a.d,a.b)!=null){return}}}
function tL(a){if(a.b>=a.c.c){throw FM(new DM)}return PL(a.c,a.b++)}
function bz(a,b){_y();az(a);Te((ce(),a.J),b);a.J.href=QT;return a}
function Zl(a,b,c,d){dm();gm(d,bm,cm);d.aC=a;d.tI=b;d.qI=c;return d}
function Xv(a){RL(a.e.c,a.c);--a.b;a.c<=a.d&&--a.d<0&&(a.d=0);a.c=-1}
function Wl(a,b){var c,d;c=a;d=Xl(0,b);Zl(c.aC,c.tI,c.qI,d);return d}
function sH(a,b){var c;c=oH(a,b);if(c==-1){throw FM(new DM)}rH(a,c)}
function tK(a){var b;b=a.c;a.c=null;if(a.d){a.d=false;--a.e}return b}
function Qm(a){if(a!=null&&km(a.tI,34)){return a}return Kb(new zb,a)}
function mm(a,b){if(a!=null&&!lm(a.tI,b)){throw LI(new JI)}return a}
function GD(){if(!DD){DD=FD(new CD);Py((QD(),UD(null)),DD)}return DD}
function pM(){var a;return a=LK(new JK,aK(this.b).c.b),FL(new DL,a)}
function nb(a,b){return $wnd.setTimeout($entry(function(){a.ab()}),b)}
function nI(a,b){a.style[_W]=b;a.style[ZV]=(Wf(),eO);a.style[ZV]=MN}
function dA(a){a.J=(ce(),$doc).createElement(dP);a.J[zP]=zV;return a}
function An(a,b,c,d,e){a.s=a.t=true;a.v=false;a.K=b;a.M=d;a.L=c;a.N=e}
function zn(a,b,c,d,e){a.q=a.r=true;a.u=false;a.G=b;a.I=d;a.H=c;a.J=e}
function Bn(a,b,c,d,e){a.s=a.v=true;a.t=false;a.K=b;a.Q=d;a.L=c;a.R=e}
function Cn(a,b,c,d,e){a.t=a.v=true;a.s=false;a.M=b;a.Q=d;a.N=c;a.R=e}
function Dn(a,b,c,d,e){a.u=a.q=true;a.r=false;a.O=b;a.G=d;a.P=c;a.H=e}
function En(a,b,c,d,e){a.u=a.r=true;a.q=false;a.O=b;a.I=d;a.P=c;a.J=e}
function hG(a,b){a.i||!!b.f?gG(b,a.e.c):(b.J.style[wW]=a.f,undefined)}
function BG(a,b){if(b<0||b>=CG(a)){return null}return mm(PL(a.d,b),47)}
function HH(a){++a.b;while(a.b<a.c.length){if(a.c[a.b]){return}++a.b}}
function Gw(a){a.f=false;a.g=null;a.b=false;a.c=false;a.d=true;a.e=null}
function hE(){var a;a=this.D;!!a&&a!=null&&km(a.tI,44)&&mm(a,44).Jb()}
function kG(){try{lz(this,(jz(),hz))}finally{this.d.__listener=this}}
function lG(){try{lz(this,(jz(),iz))}finally{this.d.__listener=null}}
function Hn(){Hn=LM;Gn=Pn((gh(),ch),ch);$doc.body.appendChild(Gn)}
function sn(){sn=LM;tn(new qn,aP,0);tn(new qn,bP,1);rn=tn(new qn,cP,2)}
function jD(){jD=LM;iD=kD(new hD,EV,0);kD(new hD,$V,1);kD(new hD,_V,2)}
function zB(a){a.f=lH(new jH);a.J=(ce(),$doc).createElement(dP);return a}
function oE(a){if(!a.b||!a.c.D){throw FM(new DM)}a.b=false;return a.c.D}
function uB(a,b,c,d){var e;mB(a.b,b,c);e=a.b.b.rows[b].cells[c];e[MV]=d.b}
function Wv(a){var b;a.c=a.d;b=PL(a.e.c,a.d++);a.d>=a.b&&(a.d=0);return b}
function nm(a){if(a!=null&&(a.tM==LM||a.tI==2)){throw LI(new JI)}return a}
function Fx(a){return !(a!=null&&a.tM!=LM&&a.tI!=2)&&a!=null&&km(a.tI,22)}
function Xx(a,b){Dx();Ux(a,b);b&131072&&a.addEventListener(YU,Lx,false)}
function AG(a,b){yG();zG(a);a.e.innerHTML=MN;a.e.innerHTML=b||MN;return a}
function QL(a,b,c){for(;c<a.c;++c){if(KM(b,a.b[c])){return c}}return -1}
function RL(a,b){var c;c=(jL(b,a.c),a.b[b]);a.b.splice(b,1);--a.c;return c}
function hF(a,b){var c;c=oH(a.c.f,b);if(c==-1){return c}return ~~((c-1)/2)}
function xp(a){var b;b=a.D;if(b){a.n!=null&&b.rb(a.n);a.o!=null&&b.sb(a.o)}}
function Sr(a){a.f-=20;if(a.f<0){a.f=0}else{Xr(a,a.e,false);a.e=-1;Yr(a)}}
function bn(a,b){a.c=(Hn(),new Fn);a.d=LL(new IL);a.e=b;Mn(a.c,b);return a}
function Eq(a,b){if(a.h){throw TI(new RI,TP)}Fo(b);ko(a,b.J);a.h=b;Ho(b,a)}
function xi(a,b){var c;c=ui(b);vi(a).insertBefore(c,a.b.firstChild);return c}
function oH(a,b){var c;for(c=0;c<a.c;++c){if(a.b[c]==b){return c}}return -1}
function $d(a){if(!!a&&!!a.nodeType){return !!a&&a.nodeType==1}return false}
function xJ(a,b){if(!(b!=null&&km(b.tI,1))){return false}return String(a)==b}
function qK(e,a,b){var c,d=e.f;a=bX+a;a in d?(c=d[a]):++e.e;d[a]=b;return c}
function em(a,b,c){var d=0,e;for(var f in a){if(e=a[f]){b[d]=f;c[d]=e;++d}}}
function gm(a,b,c){dm();for(var d=0,e=b.length;d<e;++d){a[b[d]]=c[d]}}
function en(a,b,c){var d,e;d=Jn(a.e,b);e=yn(new vn,d,b,c);ML(a.d,e);return e}
function yo(a,b,c){a.Bb(Bx(c.c));return kl(!a.G?(a.G=il(new fl,a)):a.G,c,b)}
function uC(a,b,c,d,e,f){tC();a.b=BC(new wC,a,b,c,d,e,f);a.J[zP]=QV;return a}
function Mn(a,b){b.style[eP]=(Kg(),tO);b.appendChild(a.b=Pn((gh(),dh),eh))}
function az(a){_y();Zy(a,(ce(),$doc).createElement(eV));a.J[zP]=fV;return a}
function te(a){return Ie((ce(),xJ(a.compatMode,UN)?a.documentElement:a.body))}
function vK(a,b){return (a==null?null:a)===(b==null?null:b)||a!=null&&Sb(a,b)}
function SL(a,b){var c;c=QL(a,b,0);if(c==-1){return false}RL(a,c);return true}
function HA(a,b){a.d=b;a.c=false;if(!a.f){a.f=true;Zb((zc(),yc).c,[a,false])}}
function Hu(a){if(!a.b){a.b=true;ii();ec(fi,AU);mi();return true}return false}
function xt(a){if(!a.b){a.b=true;ii();ec(fi,qU);mi();return true}return false}
function Nt(a){if(!a.b){a.b=true;ii();ec(fi,uU);mi();return true}return false}
--></script>
<script><!--
function Yt(a){if(!a.b){a.b=true;ii();ec(fi,wU);mi();return true}return false}
function gu(a){if(!a.b){a.b=true;ii();ec(fi,zU);mi();return true}return false}
function bv(a){if(!a.b){a.b=true;ii();ec(fi,JU);mi();return true}return false}
function Bc(a){zc();a.e=Mc(new Kc,a);Qc(new Oc,a);a.b=[];a.f=[];a.c=[];return a}
function fF(a,b){a.b=LL(new IL);a.e=b;Eq(a,a.c=JC(new HC));a.J[zP]=jW;return a}
function mF(a,b,c){if(b==a.d){return}sk(dJ(b));a.d=b;Fq(a)&&gF(a,c);Tk(dJ(b))}
function Zi(a,b,c){a.d=++Ui;a.b=c;!Fi&&(Fi=jk(new hk));Fi.b[b]=a;a.c=b;return a}
function YF(a,b,c){var d;if(!c){d=a.c;while(d){if(d==b){eG(a,b);return}d=d.h}}}
function Ae(a){var b=a.button;if(b==1){return 4}else if(b==2){return 2}return 1}
function rG(a){var b=a.nodeName;return b==EW||b==kV||b==FW||b==GW||b==hV||b==HW}
function ui(a){var b;b=(ce(),$doc).createElement(OO);b[PO]=QO;Te(b,a);return b}
function qp(a,b){var c;c=(ce(),b).target;if($d(c)){return Ke(a.J,c)}return false}
function uK(d,a){var b,c=d.f;a=bX+a;if(a in c){b=c[a];--d.e;delete c[a]}return b}
function wF(a){if(a.b>=a.c.b.c){throw FM(new DM)}return mm(PL(a.c.b,a.b++),46).d}
function OE(a,b,c,d){KE(a,b,c,d);a.J.style[kP]=8+(gh(),FO);a.J[zP]=hW;return a}
function ZE(a,b,c,d){KE(a,b,c,d);a.J.style[lP]=8+(gh(),FO);a.J[zP]=iW;return a}
function hf(a,b){(xJ(a.compatMode,UN)?a.documentElement:a.body).style[ZN]=b?$N:_N}
function nf(a){return (xJ(a.compatMode,UN)?a.documentElement:a.body).clientWidth}
function ve(a){return (xJ(a.compatMode,UN)?a.documentElement:a.body).scrollTop||0}
function mf(a){return (xJ(a.compatMode,UN)?a.documentElement:a.body).clientHeight}
function vi(a){var b;if(!a.b){b=$doc.getElementsByTagName(RO)[0];a.b=b}return a.b}
function JA(){this.f=false;if(this.c){return}this.Rb();gn(this.e,this.d,new EC)}
function Nc(){this.b.d=true;Dc(this.b);this.b.d=false;return this.b.g=Ec(this.b)}
function Lz(a){this.F==-1?Xx(this.b,a|(this.b.__eventBits||0)):Io(this,a)}
function re(a){var b=a.nextSibling;while(b&&b.nodeType!=1)b=b.nextSibling;return b}
function qe(a){var b=a.firstChild;while(b&&b.nodeType!=1)b=b.nextSibling;return b}
function KM(a,b){return (a==null?null:a)===(b==null?null:b)||a!=null&&Sb(a,b)}
function fM(a,b){return (a==null?null:a)===(b==null?null:b)||a!=null&&Sb(a,b)}
function vf(a){return (xJ(a.compatMode,UN)?a.documentElement:a.body).scrollWidth||0}
function eG(a,b){if(!b){if(!a.c){return}HG(a.c,false);a.c=null;return}aG(a,b,true)}
function LC(a,b,c){var d;Fo(b);pH(a.f,b,c);d=en(a.b,b.J,b);b.H=d;Ho(b,a);HA(a.c,0)}
function Ll(a,b,c){var d,e;d=mm(iK(a.b,b),11);e=!!d&&SL(d,c);e&&d.c==0&&rK(a.b,b)}
function TF(a,b){var c,d;d=null;c=b.h;while(!!c&&c!=a.h){!c.g&&(d=c);c=c.h}return d}
function VA(a,b){var c;c=a.b.rows.length;if(b>=c||b<0){throw XI(new UI,HV+b+IV+c)}}
function JH(a){var b;if(a.b>=a.c.length){throw FM(new DM)}b=a.c[a.b];HH(a);return b}
function lx(){var a;if(Yw){a=(qx(),new ox);!!Zw&&ol(Zw,a);return null}return null}
function nG(){var a;a=Yl(Em,171,26,this.b.e,0);aK(this.b)._b(a);return GH(new DH,a)}
function Wf(){Wf=LM;Zf(new Xf,aO,0);cg(new ag,bO,1);hg(new fg,cO,2);lg(new jg,dO,3)}
function pg(){pg=LM;sg(new qg,iO,0);xg(new vg,jO,1);Cg(new Ag,kO,2);Gg(new Eg,lO,3)}
function Kg(){Kg=LM;Ng(new Lg,oO,0);Rg(new Pg,pO,1);Wg(new Ug,qO,2);_g(new Zg,rO,3)}
function kl(a,b,c){a.c>0?ll(a,vl(new tl,a,b,c)):Gl(a.e,b,c);return cl(new al,a,b,c)}
function yJ(b,a){if(a==null)return false;return b==a||b.toLowerCase()==a.toLowerCase()}
function kb(a,b){if(b<=0){throw QI(new OI,LN)}jb(a);a.c=false;a.d=nb(a,b);ML(hb,a)}
function MG(a){var b,c;KG(a,false,false);for(b=0,c=CG(a);b<c;++b){MG(mm(PL(a.d,b),47))}}
function Tr(a){a.f+=20;if(a.f>=(Kr(),Fr.c)){a.f-=20}else{Xr(a,a.e,false);a.e=-1;Yr(a)}}
function sr(a,b){Te((ce(),a.e),b.e);Te(a.d,b.d);a.c.innerHTML=zQ;a.b.J.innerHTML=b.b||MN}
function Yl(a,b,c,d,e){var f;f=Xl(e,d);dm();gm(f,bm,cm);f.aC=a;f.tI=b;f.qI=c;return f}
function jo(a,b){var c=a.parentNode;if(!c){return}c.insertBefore(b,a);c.removeChild(a)}
function mI(a){var b;return iI?a:(b=(ce(),a).parentNode,(!b||b.nodeType!=1)&&(b=null),b)}
function PB(a){var b;if(a.b>=a.d.c){throw FM(new DM)}b=mm(PL(a.d,a.b),26);NB(a);return b}
function Sb(a,b){return a.tM==LM||a.tI==2?a.eQ(b):(a==null?null:a)===(b==null?null:b)}
function iK(a,b){return b==null?a.c:b!=null&&km(b.tI,1)?a.f[bX+mm(b,1)]:jK(a,b,~~Ub(b))}
function hK(a,b){return b==null?a.d:b!=null&&km(b.tI,1)?mK(a,mm(b,1)):lK(a,b,~~Ub(b))}
function rK(a,b){return b==null?tK(a):b!=null&&km(b.tI,1)?uK(a,mm(b,1)):sK(a,b,~~Ub(b))}
function kz(a,b){jz();Gb(a,gV,b.b.e==0?null:mm(b._b(Yl(Jm,182,34,0,0)),43)[0]);return a}
function Fe(b){var c=b.relatedTarget;try{var d=c.nodeName;return c}catch(a){return null}}
function qG(a){var b;b=mm(iK(this.b,a),47);if(!b){return false}b.e.innerHTML=MN;return true}
function Gl(a,b,c){var d;d=mm(iK(a.b,b),11);if(!d){d=LL(new IL);nK(a.b,b,d)}_l(d.b,d.c++,c)}
function rA(a,b){var c,d;d=Ly(a,b);if(d){b==a.b&&(a.b=null);c=mm(b.H,38);hn(a.c,c.c)}return d}
function dw(a,b,c){var d;d=aw;aw=a;b==bw&&Bx((ce(),a).type)==8192&&(bw=null);c.xb(a);aw=d}
function rc(a,b,c){var d;d=mc++==0;try{return a.apply(b,c)}finally{d&&Cc((zc(),yc));--mc}}
function ps(a,b,c){var d;d=AG(new uG,WH(UH(new RH,c.e,c.c,c.d,c.f,c.b))+TN+b);a.Wb(d);return d}
function Cv(a){a.b=Kv(new Iv,a);a.c=LL(new IL);a.e=Ov(new Mv,a);a.g=Tv(new Qv,a);return a}
function HB(a,b){a.f=lH(new jH);a.J=(ce(),$doc).createElement(dP);a.J.innerHTML=b||MN;return a}
function KE(a,b,c,d){a.h=d;a.g=b;a.f=c;a.J=(ce(),$doc).createElement(dP);Io(a,78);return a}
function by(a,b){var c,d;c=(d=b[bV],d==null?-1:d);if(c<0){return null}return mm(PL(a.c,c),25)}
function cy(a,b){var c;if(!a.b){c=a.c.c;ML(a.c,b)}else{c=a.b.b;TL(a.c,c,b);a.b=a.b.c}b.J[bV]=c}
function VJ(a,b){var c;while(a.Kb()){c=a.Lb();if(b==null?c==null:Sb(b,c)){return a}}return null}
function mx(){var a,b;if(ax){b=nf($doc);a=mf($doc);if(_w!=b||$w!=a){_w=b;$w=a;Nk(hx(),b)}}}
function Kn(a){var b;b=a.style;b[eP]=(Kg(),uO);b[fP]=0+(gh(),FO);b[gP]=hP;b[iP]=hP;b[jP]=hP}
function Ox(a){var b=0,c=a.firstChild;while(c){c.nodeType==1&&++b;c=c.nextSibling}return b}
function Ey(){var b=$wnd.onresize;$wnd.onresize=$entry(function(a){try{mx()}finally{b&&b(a)}})}
function Dv(a){var b;b=Uv(a.g);Xv(a.g);b!=null&&km(b.tI,40)&&yv(new wv,mm(b,40));a.d=false;Fv(a)}
function nK(a,b,c){return b==null?pK(a,c):b!=null&&km(b.tI,1)?qK(a,mm(b,1),c):oK(a,b,c,~~Ub(b))}
function aG(a,b,c){if(b==a.h){return}!!a.c&&HG(a.c,false);a.c=b;if(a.c){c&&ZF(a);HG(a.c,true)}}
function IG(a,b,c){if(b&&CG(a)==0){return}if(a.g!=b){a.g=b;KG(a,true,true);c&&!!a.j&&SF(a.j,b)}}
function SG(a,b){if(QL(a.d,b,0)==-1){return}JG(b,null);b.h=null;SL(a.d,b);a.b.J.removeChild(b.J)}
function to(a,b){if(!a){throw Ib(new Ab,rP)}b=EJ(b);if(b.length==0){throw QI(new OI,sP)}wo(a,b)}
function Nq(a,b){var c;c=bz(new Wy,b.c);c.J[zP]=jQ;AB(a.c,c);yo(c,Qq(new Oq,b,c),(Mi(),Mi(),Li))}
function yz(a){var b;xz();wz(a,(b=(ce(),$doc).createElement(hV),b.type=iV,b));a.J[zP]=jV;return a}
function Bz(a){var b;Az();Cz(a,(b=(ce(),$doc).createElement(kV),b.type=lV,b));a.J[zP]=mV;return a}
function kI(){var a;a=(ce(),$doc).createElement(dP);if(iI){a.innerHTML=$W;sw(rI(new pI,a))}return a}
function jw(a){var b;b=Jw(uw,a);if(!b&&!!a){a.cancelBubble=true;(ce(),a).preventDefault()}return b}
function yd(a){var b,c;b=(c=(ce(),a).parentNode,(!c||c.nodeType!=1)&&(c=null),c);!!b&&b.removeChild(a)}
function dy(a,b){var c,d;c=(d=b[bV],d==null?-1:d);b[bV]=null;TL(a.c,c,null);a.b=ky(new iy,c,a.b)}
function qA(a){var b,c;for(c=xH(new uH,a.f);c.b<c.c.c-1;){b=zH(c);b!=null&&km(b.tI,44)&&mm(b,44).Jb()}}
function MC(a){var b,c;for(c=xH(new uH,a.f);c.b<c.c.c-1;){b=zH(c);b!=null&&km(b.tI,44)&&mm(b,44).Jb()}}
function AK(){var a,b,c;a=0;for(b=this.Fb();b.Kb();){c=b.Lb();if(c!=null){a+=Ub(c);a=~~a}}return a}
function Rq(a){var b,c,d;c=Xq(new Vq,this.b);b=Pe((ce(),this.c.J))+14;d=Re(this.c.J)+14;Bp(c,b,d);Ep(c)}
function QH(a,b,c,d,e){var f,g;g=RV+d+SV+e+TV+a+UV+-b+VV+-c+FO;f=WV+$moduleBase+XV+g+YV;return f}
function oB(a,b,c){var d=a.rows[b];for(var e=0;e<c;e++){var f=$doc.createElement(xV);d.appendChild(f)}}
function fK(e,a){var b=e.f;for(var c in b){if(c.charCodeAt(0)==58){var d=dL(e,c.substring(1));a.Yb(d)}}}
function jb(a){a.c?($wnd.clearInterval(a.d),undefined):($wnd.clearTimeout(a.d),undefined);SL(hb,a)}
function FG(a){hH(a);a.c=(ce(),$doc).createElement(dP);a.J.appendChild(a.c);a.c.style[wQ]=LW;a.d=LL(new IL)}
function Ez(a){if(a.E){return AI(),a.b.checked?zI:yI}else{return AI(),a.b.defaultChecked?zI:yI}}
function sf(a){return (xJ(a.compatMode,UN)?a.documentElement:a.body).scrollHeight||0}
function dI(){return function(a){var b=this.parentNode;b.onfocus&&$wnd.setTimeout(function(){b.focus()},0)}}
function sy(a){a=a==null?MN:a;if(!xJ(a,$wnd.__gwt_historyToken||MN)){$wnd.__gwt_historyToken=a;Yk(this)}}
function pv(){if(!mv){mv=(ce(),$doc).createElement(dP);mv.style.display=eO;(QD(),$doc.body).appendChild(mv)}}
function xw(a){Dx();!Aw&&(Aw=Wi(new Ti));if(!uw){uw=jl(new fl,null,true);Bw=new zw}return kl(uw,Aw,a)}
function so(a,b,c){if(!a){throw Ib(new Ab,rP)}b=EJ(b);if(b.length==0){throw QI(new OI,sP)}c?Cd(a,b):Sd(a,b)}
function yn(a,b,c,d){a.L=(gh(),fh);a.P=fh;a.N=fh;a.H=fh;a.f=(sn(),rn);a.V=rn;a.e=b;a.d=c;a.U=d;return a}
function Bp(a,b,c){var d;a.u=b;a.C=c;b-=kf($doc);c-=lf($doc);d=a.J;d.style[fP]=b+(gh(),FO);d.style[gP]=c+FO}
function OH(a,b,c,d,e,f){var g;g=VW+b+UV+-c+VV+-d+FO;a.style[WW]=g;a.style[kP]=e+(gh(),FO);a.style[lP]=f+FO}
function zG(a){var b;yG();b=vG.cloneNode(true);a.J=b;a.e=qe((ce(),b));a.e.setAttribute(oQ,gf($doc));return a}
function jq(a,b){var c;c=b.e;!b.b&&Bx((ce(),b.e).type)==4&&fq(a,c)&&((ce(),c).preventDefault(),undefined)}
function WF(a){var b,c;c=TF(a,a.c);if(c){eG(a,c)}else if(a.c.g){IG(a.c,false,true)}else{b=a.c.h;!!b&&eG(a,b)}}
function pl(a){var b,c;if(a.b){try{for(c=rL(new oL,a.b);c.b<c.c.c;){b=mm(tL(c),10);b.db()}}finally{a.b=null}}}
function UK(){var a,b;a=0;b=0;this.bc()!=null&&(a=Ub(this.bc()));this.cc()!=null&&(b=Ub(this.cc()));return a^b}
function Hq(){if(this.F!=-1){this.h.Bb(this.F);this.F=-1}this.h.wb();this.J.__listener=this;this.zb()}
function cp(a,b){if(a.D!=b){return false}try{Ho(b,null)}finally{a.Db().removeChild(b.J);a.D=null}return true}
function dp(a,b){if(b==a.D){return}!!b&&Fo(b);!!a.D&&a.Cb(a.D);a.D=b;if(b){a.Db().appendChild(a.D.J);Ho(b,a)}}
function RG(a,b){(!!b.h||!!b.j)&&GG(b);a.b.J.appendChild(b.J);JG(b,a.j);b.h=null;ML(a.d,b);b.J.style[PW]=nW}
function Go(a,b){a.E&&(a.J.__listener=null,undefined);!!a.J&&jo(a.J,b);a.J=b;a.E&&(a.J.__listener=a,undefined)}
function Jc(b,c){zc();$wnd.setTimeout(function(){var a=$entry(Gc)(b);a&&$wnd.setTimeout(arguments.callee,c)},c)}
function gwtOnLoad(b,c,d){$moduleName=c;$moduleBase=d;if(b)try{$entry(Nm)()}catch(a){b(c)}else{$entry(Nm)()}}
function Co(a,b){var c;switch(Bx((ce(),b).type)){case 16:case 32:c=Fe(b);if(!!c&&Ke(a.J,c)){return}}Ji(b,a,a.J)}
function LE(a,b){var c;b<a.c&&(b=a.c);c=mm(a.g.H,38);if(b==c.d){return}c.d=b;if(!a.b){a.b=VE(new TE,a);sw(a.b)}}
function LK(a,b){var c;a.c=b;c=LL(new IL);a.c.d&&ML(c,WK(new QK,a.c));fK(a.c,c);eK(a.c,c);a.b=rL(new oL,c);return a}
function gB(a,b,c,d){var e,f;mB(a,b,c);e=(f=a.c.b.b.rows[b].cells[c],aB(a,f,d==null),f);d!=null&&Te((ce(),e),d)}
function hq(a,b,c){var d,e;if(a.g){d=b+Pe((ce(),a.J));e=c+Re(a.J);if(d<a.c||d>=a.i||e<a.d){return}Bp(a,d-a.e,e-a.f)}}
function Xl(a,b){var c=new Array(b);if(a>0){var d=[null,0,false,[0,0]][a];for(var e=0;e<b;++e){c[e]=d}}return c}
function OJ(a){MJ();var b=bX+a;var c=LJ[b];if(c!=null){return c}c=JJ[b];c==null&&(c=NJ(a));PJ();return LJ[b]=c}
function Px(a,b){var c=0,d=a.firstChild;while(d){if(d===b){return c}d.nodeType==1&&++c;d=d.nextSibling}return -1}
function id(a){var b,c,d;d=a&&a.stack?a.stack.split(SN):[];for(b=0,c=d.length;b<c;++b){d[b]=$c(d[b])}return d}
function Eb(a){var b,c,d;c=Yl(Hm,180,33,a.length,0);for(d=0,b=a.length;d<b;++d){if(!a[d]){throw pJ(new nJ)}c[d]=a[d]}}
function GE(a){var b;if(rA(this,a)){b=oH(this.f,a);b<this.f.c-1&&rA(this,nH(this.f,b+1));return true}return false}
function tD(){if(!this.g){pD(this);Qy((QD(),UD(null)),this.b);jp()}nI((jp(),this.b.J),dW);this.b.J.style[ZN]=mO}
function ZB(a){if(!a.b){a.b=(ce(),$doc).createElement(OV);Rx(a.c.f,a.b,0);a.b.appendChild($doc.createElement(NV))}}
function JC(a){a.f=lH(new jH);a.J=(ce(),$doc).createElement(dP);a.b=bn(new $m,a.J);a.c=GA(new EA,a.b);return a}
function Bo(a){var b;if(a.vb()){throw TI(new RI,uP)}a.E=true;a.J.__listener=a;b=a.F;a.F=-1;b>0&&a.Bb(b);a.tb();a.zb()}
function Do(a){if(!a.vb()){throw TI(new RI,vP)}try{a.Ab()}finally{try{a.ub()}finally{a.J.__listener=null;a.E=false}}}
function Fo(a){if(!a.I){QD();hK(PD.b,a)&&SD(a)}else if(pm(a.I,48)){mm(a.I,48).Cb(a)}else if(a.I){throw TI(new RI,wP)}}
function _t(a){if(!a.b){a.b=true;ii();ec(fi,xU+Tt().b+mU+Tt().e+nU+Tt().c+oU+Tt().d+yU);mi();return true}return false}
function rH(a,b){var c;if(b<0||b>=a.c){throw WI(new UI)}--a.c;for(c=b;c<a.c;++c){_l(a.b,c,a.b[c+1])}_l(a.b,a.c,null)}
function eK(g,a){var b=g.b;for(var c in b){if(c==parseInt(c)){var d=b[c];for(var e=0,f=d.length;e<f;++e){a.Yb(d[e])}}}}
function mA(a,b){a.f=lH(new jH);a.e=b;a.J=(ce(),$doc).createElement(dP);a.c=bn(new $m,a.J);a.d=LA(new DA,a.c,a);return a}
function bH(a,b,c){Y(a);if(c){a.b=b;a.c=b.g;$(a,mJ(200,75*CG(a.b)),(new Date).getTime())}else{b.c.style.display=b.g?MN:eO}}
function dG(a,b,c){var d,e;a.e=b;a.i=c;if(!c){d=VH(b.c);d.J.style[CP]=_N;Py((QD(),UD(null)),d);e=d.b.b+7;Fo(d);a.f=e+FO}}
function cK(){var a,b,c;c=0;for(b=LK(new JK,CK(new wK,mm(this,51)).b);sL(b.b);){a=mm(tL(b.b),50);c+=a.hC();c=~~c}return c}
function lL(){var a,b,c;b=1;a=rL(new oL,mm(this,11));while(a.b<a.c.c){c=tL(a);b=31*b+(c==null?0:Ub(c));b=~~b}return b}
function dJ(a){var b,c;if(a>-129&&a<128){b=a+128;c=(gJ(),fJ)[b];!c&&(c=fJ[b]=aJ(new YI,a));return c}return aJ(new YI,a)}
function sG(a){switch(a){case 63233:a=40;break;case 63235:a=39;break;case 63232:a=38;break;case 63234:a=37;}return a}
function oq(a){switch(Bx((ce(),a).type)){case 4:case 8:case 64:case 16:case 32:if(!this.g&&!fq(this,a)){return}}Co(this,a)}
function sq(a){var b;jq(this,a);b=a.e;if(xJ((ce(),b).type,SP)){switch(b.which||b.keyCode||0){case 13:case 27:eq(this);}}}
function Rz(a){var b,c;c=(ce(),$doc).createElement(xV);b=$doc.createElement(dP);c.appendChild(b);c[zP]=a;b[zP]=a+yV;return c}
function gG(a,b){var c,d;d=(!a.f&&hH(a),a.f);c=qe((ce(),d));!c?d.appendChild(PH(b.e,b.c,b.d,b.f,b.b)):OH(c,b.e,b.c,b.d,b.f,b.b)}
function Te(a,b){while(a.firstChild){a.removeChild(a.firstChild)}b!=null&&a.appendChild(a.ownerDocument.createTextNode(b))}
function Nx(a,b){var c=0,d=a.firstChild;while(d){var e=d.nextSibling;if(d.nodeType==1){if(b==c)return d;++c}d=e}return null}
function UD(a){QD();var b;b=mm(iK(OD,a),45);if(b){return b}OD.e==0&&cx(new ZD);b=cE(new aE);nK(OD,a,b);jM(PD,b);return b}
function Vr(a,b){var c;c=Mr(a.f+b);if(!c){return}Xr(a,a.e,false);b!=-1&&cC(a.g.e,b,zT);a.e=b;!!a.c&&(sr(a.c.b.b,c),undefined)}
function Ho(a,b){var c;c=a.I;if(!b){try{!!c&&c.vb()&&a.yb()}finally{a.I=null}}else{if(c){throw TI(new RI,xP)}a.I=b;b.vb()&&a.wb()}}
function mB(a,b,c){var d,e;nB(a,b);if(c<0){throw XI(new UI,KV+c)}d=(VA(a,b),a.b.rows[b].cells.length);e=c+1-d;e>0&&oB(a.b,b,e)}
function Ji(a,b,c){var d,e,f;if(Fi){f=mm(Fi.b[(ce(),a).type],5);if(f){d=f.b.b;e=f.b.c;f.b.b=a;f.b.c=c;zo(b,f.b);f.b.b=d;f.b.c=e}}}
function OF(a,b,c,d){var e;if(!d||d==c){return}OF(a,b,c,(e=(ce(),d).parentNode,(!e||e.nodeType!=1)&&(e=null),e));_l(b.b,b.c++,d)}
function lf(a){var b;return b=$wnd.getComputedStyle((ce(),a).documentElement,MN),parseInt(b.marginTop)+parseInt(b.borderTopWidth)}
function kf(a){var b;return b=$wnd.getComputedStyle((ce(),a).documentElement,MN),parseInt(b.marginLeft)+parseInt(b.borderLeftWidth)}
function TK(a){var b;if(a!=null&&km(a.tI,50)){b=mm(a,50);if(KM(this.bc(),b.bc())&&KM(this.cc(),b.cc())){return true}}return false}
function DK(a,b){var c,d,e;if(b!=null&&km(b.tI,50)){c=mm(b,50);d=c.bc();if(hK(a.b,d)){e=iK(a.b,d);return fM(c.cc(),e)}}return false}
function $c(a){var b,c,d;d=MN;a=EJ(a);b=a.indexOf(NN);if(b!=-1){c=a.indexOf(ON)==0?8:0;d=EJ(a.substr(c,b-c))}return d.length>0?d:PN}
function dd(){var a,b,c,d;c=_c(id(ed()),2);d=Yl(Hm,180,33,c.length,0);for(a=0,b=d.length;a<b;++a){d[a]=tJ(new rJ,QN,c[a],RN,0)}Eb(d)}
function lK(h,a,b){var c=h.b[b];if(c){for(var d=0,e=c.length;d<e;++d){var f=c[d];var g=f.bc();if(h.ac(a,g)){return true}}}return false}
function Rx(a,b,c){var d=0,e=a.firstChild,f=null;while(e){if(e.nodeType==1){if(d==c){f=e;break}++d}e=e.nextSibling}a.insertBefore(b,f)}
function Hz(a,b,c){var d;if(!b){throw QI(new OI,pV)}d=Ez(a);a.b.checked=b.b;a.b.defaultChecked=b.b;if(!!d&&d.b==b.b){return}c&&Yk(a)}
function iF(a,b,c,d,e,f){var g;g=dA(new $z);d?(g.J.innerHTML=c||MN,undefined):(Te((ce(),g.J),c),undefined);jF(a,b,FF(new DF,g),e,f)}
function pA(a,b,c,d){var e,f,g;Fo(b);e=a.f;pH(e,b,e.c);c==(BA(),yA)&&(a.b=b);g=en(a.c,b.J,b);f=PA(new NA,c,d,g);b.H=f;Ho(b,a);HA(a.d,0)}
function hB(a,b,c,d){var e,f;mB(a,b,c);if(d){Fo(d);e=(f=a.c.b.b.rows[b].cells[c],aB(a,f,true),f);cy(a.g,d);e.appendChild(d.J);Ho(d,a)}}
function ol(a,b){var c;b.f&&b.ib();c=b.g;b.g=a.f;try{++a.c;Hl(a.e,b,a.d)}finally{--a.c;a.c==0&&pl(a)}if(c==null){b.f=true;b.g=null}else{b.g=c}}
function kv(a){if(!a.b){a.b=true;ii();ec(fi,LU+gv().b+lU+gv().f+mU+gv().e+nU+gv().c+oU+gv().d+MU);mi();return true}return false}
function qt(a){if(!a.b){a.b=true;ii();ec(fi,kU+mt().b+lU+mt().f+mU+mt().e+nU+mt().c+oU+mt().d+pU);mi();return true}return false}
function Gt(a){if(!a.b){a.b=true;ii();ec(fi,sU+Ct().b+lU+Ct().f+mU+Ct().e+nU+Ct().c+oU+Ct().d+tU);mi();return true}return false}
function ov(a){var b,c,d;pv();b=(d=(ce(),a).parentNode,(!d||d.nodeType!=1)&&(d=null),d);c=re(a);mv.appendChild(a);return tv(new rv,b,c,a)}
function YJ(a){var b,c,d,e;e=this.$b();a.length<e&&(a=Wl(a,e));d=a;c=this.Fb();for(b=0;b<e;++b){_l(d,b,c.Lb())}a.length>e&&_l(a,e,null);return a}
function cd(a){var b,c,d,e;d=id(qm(a.b)?nm(a.b):null);e=Yl(Hm,180,33,d.length,0);for(b=0,c=e.length;b<c;++b){e[b]=tJ(new rJ,QN,d[b],RN,0)}Eb(e)}
function jK(h,a,b){var c=h.b[b];if(c){for(var d=0,e=c.length;d<e;++d){var f=c[d];var g=f.bc();if(h.ac(a,g)){return f.cc()}}}return null}
function EJ(c){if(c.length==0||c[0]>TN&&c[c.length-1]>TN){return c}var a=c.replace(/^(\s*)/,MN);var b=a.replace(/\s*$/,MN);return b}
function OG(a){if(!this.d||QL(this.d,a,0)==-1){return}JG(a,null);this.c.removeChild(a.J);a.h=null;SL(this.d,a);this.d.c==0&&KG(this,false,false)}
function _l(a,b,c){if(c!=null){if(a.qI>0&&!lm(c.tI,a.qI)){throw wI(new uI)}if(a.qI<0&&(c.tM==LM||c.tI==2)){throw wI(new uI)}}return a[b]=c}
function Cp(a,b,c){c?sD(a.A,b):Y(a.A);a.B=b;if(b){a.w=xw(cD(new aD,a));a.r=Tw(fD(new dD,a))}else{if(a.w){dl(a.w);a.w=null}if(a.r){dl(a.r);a.r=null}}}
function JG(a,b){var c,d;if(a.j==b){return}!!a.j&&a.j.c==a&&eG(a.j,null);a.j=b;for(c=0,d=CG(a);c<d;++c){JG(mm(PL(a.d,c),47),b)}KG(a,false,true)}
function cB(a,b){var c,d,e;d=(VA(a,b),a.b.rows[b].cells.length);for(c=0;c<d;++c){e=a.c.b.b.rows[b].cells[c];aB(a,e,false)}a.b.removeChild(a.b.rows[b])}
function _F(a,b){var c,d,e,f;f=TF(a,b);if(f){aG(a,f,true);return}d=b.h;!d&&(d=a.h);c=DG(d,b);if(c>0){e=BG(d,c-1);aG(a,QF(a,e),true)}else{aG(a,d,true)}}
function aB(a,b,c){var d,e;d=qe((ce(),b));e=null;!!d&&(e=mm(by(a.g,d),26));if(e){bB(a,e);return true}else{c&&(b.innerHTML=MN,undefined);return false}}
function PH(a,b,c,d,e){var f,l;f=(ce(),$doc).createElement(nV);f.innerHTML=(l=RV+d+SV+e+TV+a+UV+-b+VV+-c+FO,WV+$moduleBase+XV+l+YV)||MN;return qe(f)}
function Jn(a,b){var c;c=(ce(),$doc).createElement(dP);c.appendChild(b);c.style[eP]=(Kg(),uO);c.style[ZN]=(pg(),_N);Kn(b);a.insertBefore(c,null);return c}
function On(a,b){var c,f;yd(a);(f=(ce(),b).parentNode,(!f||f.nodeType!=1)&&(f=null),f)==a&&yd(b);c=b.style;c[eP]=MN;c[fP]=MN;c[gP]=MN;c[kP]=MN;c[lP]=MN}
function YB(a,b){var c,d,e;ZB(a);e=Ox(a.b);if(e<=b){c=null;for(d=e;d<=b;++d){c=(ce(),$doc).createElement(NV);a.b.appendChild(c)}return c}return Nx(a.b,b)}
function Ap(a,b){a.t=b;if(b&&!a.p){a.p=(ce(),$doc).createElement(dP);a.p.className=EP;a.p.style[eP]=(Kg(),uO);a.p.style[fP]=0+(gh(),FO);a.p.style[gP]=hP}}
function wj(a){var b,c;b=a.c;if(b){return c=a.b,((ce(),c).clientX||0)-Qe(wf(b.ownerDocument),b)+Ie(b)+te(b.ownerDocument)}return (ce(),a.b).clientX||0}
function xj(a){var b,c;b=a.c;if(b){return c=a.b,((ce(),c).clientY||0)-Se(wf(b.ownerDocument),b)+(b.scrollTop||0)+ve(b.ownerDocument)}return (ce(),a.b).clientY||0}
function mG(a){switch(a){case 63233:case 63235:case 63232:case 63234:case 40:case 39:case 38:case 37:return true;default:return false;}}
function $(a,b,c){Y(a);a.i=true;a.h=b;a.j=c;if(ab(a,(new Date).getTime())){return}if(!V){V=LL(new IL);U=(pb(),ib(),new fb)}ML(V,a);V.c==1&&kb(U,25)}
function fq(a,b){var c,d,e,f;c=(ce(),b).target;if($d(c)){return Ke((f=(e=Nx(a.j.c,0),d=Nx(e,1),qe(d)).parentNode,(!f||f.nodeType!=1)&&(f=null),f),c)}return false}
function BA(){BA=LM;zA=CA(new xA,AV,0);CA(new xA,BV,1);CA(new xA,CV,2);AA=CA(new xA,DV,3);yA=CA(new xA,EV,4);CA(new xA,FV,5);CA(new xA,GV,6)}
function eb(){var a,b,c,d,e,f;e=Yl(Cm,157,12,V.c,0);e=mm(VL(V,e),2);f=(new Date).getTime();for(b=e,c=0,d=b.length;c<d;++c){a=b[c];a.i&&ab(a,f)&&SL(V,a)}V.c>0&&kb(U,25)}
function VL(a,b){var c,d,e;b.length<a.c&&(b=(d=b,e=Xl(0,a.c),Zl(d.aC,d.tI,d.qI,e),e));for(c=0;c<a.c;++c){_l(b,c,a.b[c])}b.length>a.c&&_l(b,a.c,null);return b}
function nB(a,b){var c,d,e;if(b<0){throw XI(new UI,LV+b)}d=a.b.rows.length;for(c=d;c<=b;++c){c!=a.b.rows.length&&VA(a,c);e=(ce(),$doc).createElement(sV);Rx(a.b,e,c)}}
function bB(a,b){var c,d;if(b.I!=a){return false}try{Ho(b,null)}finally{c=b.J;(d=(ce(),c).parentNode,(!d||d.nodeType!=1)&&(d=null),d).removeChild(c);dy(a.g,c)}return true}
function Ly(a,b){var c,d;if(b.I!=a){return false}try{Ho(b,null)}finally{c=b.J;(d=(ce(),c).parentNode,(!d||d.nodeType!=1)&&(d=null),d).removeChild(c);sH(a.f,b)}return true}
function uD(){this.d=parseInt(this.b.J[pP])||0;this.e=parseInt(this.b.J[qP])||0;this.b.J.style[ZN]=_N;rD(this,(1+Math.cos(3.141592653589793))/2)}
function NG(a){(!!a.h||!!a.j)&&GG(a);!this.d&&FG(this);a.h=this;ML(this.d,a);a.J.style[PW]=QW;this.c.appendChild(a.J);JG(a,this.j);this.d.c==1&&KG(this,false,false)}
function hH(a){var b,c,d,e;if(!a.f){b=(yG(),wG).cloneNode(true);a.J.appendChild(b);e=hw(qe((ce(),b)));d=qe(e);c=d.nextSibling;a.J.style[MW]=hP;c.appendChild(a.e);a.f=d}}
function vs(a,b,c,d){a.c.J.style[CP]=(b!=0?(Vh(),Uh):(Vh(),Th)).eb();a.d.J.style[CP]=(b+20<c?(Vh(),Uh):(Vh(),Th)).eb();Te((ce(),a.b),MN+(b+1)+ST+d+TT+c)}
function qD(a){pD(a);if(a.g){a.b.J.style[eP]=uO;a.b.C!=-1&&Bp(a.b,a.b.u,a.b.C);Py((QD(),UD(null)),a.b);jp()}else{Qy((QD(),UD(null)),a.b);jp()}a.b.J.style[ZN]=mO}
function pD(a){if(a.g){if(a.b.t){$doc.body.appendChild(a.b.p);jp();a.f=ex(a.b.q);$C(a.b.q);a.c=true}}else if(a.c){$doc.body.removeChild(a.b.p);jp();dl(a.f);a.f=null;a.c=false}}
function gh(){gh=LM;fh=jh(new hh,wO,0);oh(new mh,xO,1);dh=sh(new qh,yO,2);eh=wh(new uh,zO,3);Ah(new yh,AO,4);Eh(new Ch,BO,5);Ih(new Gh,CO,6);ch=Mh(new Kh,DO,7);Qh(new Oh,EO,8)}
function XG(a){a.b=Vy((!ou&&(ou=Vn(new Tn,RW,0,0,16,16)),ou));a.c=Vy((!pu&&(pu=Vn(new Tn,SW,0,0,1,1)),pu));a.d=Vy((!qu&&(qu=Vn(new Tn,TW,0,0,16,16)),qu));return a}
function lB(a){a.g=ay(new Zx);a.f=(ce(),$doc).createElement(qV);a.b=$doc.createElement(rV);a.f.appendChild(a.b);a.J=a.f;a.c=wB(new pB,a);a.e=bC(new _B,a);eB(a,XB(new VB,a));return a}
function Je(){var a=/rv:([0-9]+)\.([0-9]+)/.exec(navigator.userAgent.toLowerCase());if(a&&a.length==3){var b=parseInt(a[1])*1000+parseInt(a[2]);if(b>=1009){return true}}return false}
function Pn(a,b){var c,d;c=(ce(),$doc).createElement(dP);c.innerHTML=mP;d=c.style;d[eP]=(Kg(),uO);d[nP]=oP;d[fP]=-20+a.fb();d[gP]=-20+b.fb();d[kP]=10+a.fb();d[lP]=10+b.fb();return c}
function BC(a,b,c,d,e,f,g){var h,n;a.b=f;Go(b,(h=(ce(),$doc).createElement(nV),h.innerHTML=(n=RV+f+SV+g+TV+c+UV+-d+VV+-e+FO,WV+$moduleBase+XV+n+YV)||MN,qe(h)));Io(b,163965);return a}
function sK(h,a,b){var c=h.b[b];if(c){for(var d=0,e=c.length;d<e;++d){var f=c[d];var g=f.bc();if(h.ac(a,g)){c.length==1?delete h.b[b]:c.splice(d,1);--h.e;return f.cc()}}}return null}
function Ic(b,c){var a,e,f,g;for(e=0,f=b.length;e<f;++e){g=b[e];try{g[1]?g[0].cb()&&(c[c.length]=g,undefined):g[0].db()}catch(a){a=Qm(a);if(!pm(a,3))throw a}}}
function $C(a){var b,c,d,e,f;c=a.b.p.style;f=nf($doc);e=mf($doc);c[ZV]=(Wf(),eO);c[kP]=0+(gh(),FO);c[lP]=hP;d=vf($doc);b=sf($doc);c[kP]=(d>f?d:f)+FO;c[lP]=(b>e?b:e)+FO;c[ZV]=fO}
function cH(){if(this.b){if(this.c){this.b.c.style.display=MN;aH(this,1);this.b.c.style[lP]=$N}else{this.b.c.style.display=eO}this.b.c.style[ZN]=mO;this.b.c.style[kP]=$N;this.b=null}}
function dH(){this.d=0;!this.c&&(this.d=this.b.c.scrollHeight||0);this.b.c.style[ZN]=_N;aH(this,(1+Math.cos(3.141592653589793))/2);if(this.c){this.b.c.style.display=MN;this.d=this.b.c.scrollHeight||0}}
function KG(a,b,c){if(!a.j||!a.j.E){return}if(CG(a)==0){!!a.c&&(a.c.style.display=eO,undefined);hG(a.j,a);return}b&&!!a.j&&a.j.E?bH(xG,a,false):bH(xG,a,false);a.g?iG(a.j,a):fG(a.j,a);c&&YF(a.j,a,a.g)}
function lz(b,c){var i;jz();var a,e,f,g,h;e=null;for(h=b.Fb();h.Kb();){g=mm(h.Lb(),26);try{c.Pb(g)}catch(a){a=Qm(a);if(pm(a,34)){f=a;!e&&(e=iM(new gM));i=nK(e.b,f,e)}else throw a}}if(e){throw kz(new gz,e)}}
function oK(j,a,b,c){var d=j.b[c];if(d){for(var e=0,f=d.length;e<f;++e){var g=d[e];var h=g.bc();if(j.ac(a,h)){var i=g.cc();g.dc(b);return i}}}else{d=j.b[c]=[]}var g=xM(new vM,a,b);d.push(g);++j.e;return null}
function NJ(a){var b,c,d,e;b=0;d=a.length;e=d-4;c=0;while(c<e){b=a.charCodeAt(c+3)+31*(a.charCodeAt(c+2)+31*(a.charCodeAt(c+1)+31*(a.charCodeAt(c)+31*b)))|0;c+=4}while(c<d){b=b*31+a.charCodeAt(c++)}return b|0}
function Lr(){var a,b,c,d,e;d=Hr[Gr++];Gr==Hr.length&&(Gr=0);b=Cr[Br++];Br==Cr.length&&(Br=0);e=Jr[Ir++];Ir==Jr.length&&(Ir=0);a=MN;for(c=0;c<10;++c){a+=Er[Dr++];Dr==Er.length&&(Dr=0)}return zr(new xr,d,b,e,a)}
function EE(a,b){var c,d;c=mm(b.H,38);d=null;switch(c.b.b){case 3:d=OE(new HE,b,false,a);break;case 1:d=OE(new HE,b,true,a);break;case 0:d=ZE(new XE,b,false,a);break;case 2:d=ZE(new XE,b,true,a);}pA(a,d,c.b,8)}
function XA(a,b){var c,d,e,f,g,h;e=$A(a,b.b);if(!e){return null}f=(g=(ce(),e).parentNode,(!g||g.nodeType!=1)&&(g=null),g);c=(h=f.parentNode,(!h||h.nodeType!=1)&&(h=null),h);d=Px(c,f);Px(f,e);return UB(new SB,d)}
function sD(a,b){var c;Y(a);c=a.b.s;a.b.k!=(jD(),iD)&&!b&&(c=false);a.g=b;if(c){if(b){pD(a);a.b.J.style[eP]=uO;a.b.C!=-1&&Bp(a.b,a.b.u,a.b.C);nI((jp(),a.b.J),DP);Py((QD(),UD(null)),a.b)}sw(yD(new wD,a))}else{qD(a)}}
function pH(a,b,c){var d,e;if(c<0||c>a.c){throw WI(new UI)}if(a.c==a.b.length){e=Yl(Em,171,26,a.b.length*2,0);for(d=0;d<a.b.length;++d){_l(e,d,a.b[d])}a.b=e}++a.c;for(d=a.c-1;d>c;--d){_l(a.b,d,a.b[d-1])}_l(a.b,c,b)}
function Cz(a,b){var c;Az();wz(a,(ce(),$doc).createElement(nV));a.b=b;a.c=$doc.createElement(oV);a.J.appendChild(a.b);a.J.appendChild(a.c);c=gf($doc);a.b[oQ]=c;a.c.htmlFor=c;!!a.b&&(a.b.tabIndex=0,undefined);return a}
function oI(){function b(a){return parseInt(a[1])*1000+parseInt(a[2])}
var c=navigator.userAgent;if(c.indexOf(aX)!=-1){var d=/rv:([0-9]+)\.([0-9]+)/.exec(c);if(d&&d.length==3){if(b(d)<=1008){return true}}}return false}
function Yr(a){var b,c,d,e;b=(Kr(),Fr.c);e=a.f+20;e>b&&(e=b);vs(a.d,a.f,b,e);c=0;for(;c<20;++c){if(a.f+c>=Fr.c){break}d=Mr(a.f+c);gB(a.g,c,0,d.d);gB(a.g,c,1,d.c);gB(a.g,c,2,d.e)}for(;c<20;++c){cB(a.g,a.g.b.rows.length-1)}}
function ab(a,b){var c,d;c=b>=a.j+a.h;if(a.k&&!c){d=(b-a.j)/a.h;a._((1+Math.cos(3.141592653589793+d*3.141592653589793))/2);return false}if(!a.k&&b>=a.j){a.k=true;a.$()}if(c){a.Z();a.k=false;a.i=false;return true}return false}
function PF(a,b){var c,d;c=LL(new IL);OF(a,c,a.J,b);d=RF(a,c,0,a.h);if(!!d&&d!=a.h){if(CG(d)>0&&iw(qe((ce(),!d.f&&hH(d),d.f)),b)){IG(d,!d.g,true);return true}else if(Ke((ce(),d.J),b)){aG(a,d,!rG(b));return true}}return false}
function zK(a){var b,c,d;if((a==null?null:a)===this){return true}if(!(a!=null&&km(a.tI,52))){return false}c=mm(a,52);if(c.$b()!=this.$b()){return false}for(b=c.Fb();b.Kb();){d=b.Lb();if(!this.Zb(d)){return false}}return true}
function wo(a,b){var c=a.className.split(/\s+/);if(!c){return}var d=c[0];var e=d.length;c[0]=b;for(var f=1,g=c.length;f<g;f++){var h=c[f];h.length>e&&h.charAt(e)==tP&&h.indexOf(d)==0&&(c[f]=b+h.substring(e))}a.className=c.join(TN)}
function VF(a,b){var c,d;c=le((ce(),b));switch(sG(c)){case 38:{_F(a,a.c);break}case 40:{$F(a,a.c,true);break}case 37:{WF(a);break}case 39:{d=TF(a,a.c);d?eG(a,d):a.c.g?CG(a.c)>0&&eG(a,BG(a.c,0)):IG(a.c,true,true);break}default:{return}}}
function Cd(a,b){var c,d,e,f;b=EJ(b);f=a.className;c=f.indexOf(b);while(c!=-1){if(c==0||f.charCodeAt(c-1)==32){d=c+b.length;e=f.length;if(d==e||d<e&&f.charCodeAt(d)==32){break}}c=f.indexOf(b,c+1)}if(c==-1){f.length>0&&(f+=TN);a.className=f+b}}
function Hl(a,b,c){var d,e,f,g,h,i,j;g=b.hb();d=(h=mm(iK(a.b,g),11),!h?0:h.c);if(c){for(f=d-1;f>=0;--f){e=(i=mm(iK(a.b,g),11),mm((jL(f,i.c),i.b[f]),36));b.gb(e)}}else{for(f=0;f<d;++f){e=(j=mm(iK(a.b,g),11),mm((jL(f,j.c),j.b[f]),36));b.gb(e)}}}
function kF(a,b){var c,d;if(b.I!=a.c){return false}for(d=0;d<a.b.c;++d){c=mm(PL(a.b,d),46);if(c.d==b){NC(a.c,c.b);NC(a.c,c.d);so(c.b.J,kW,false);so(c.d.J,lW,false);RL(a.b,d);if(a.d==d){a.d=-1;a.b.c>0&&lF(a,mm(PL(a.b,0),46).d)}return true}}return false}
function Wu(a){if(!a.b){a.b=true;ii();ec(fi,EU+Qu().b+mU+Qu().e+nU+Qu().c+oU+Qu().d+FU+Ru().b+lU+Ru().f+mU+Ru().e+nU+Ru().c+oU+Ru().d+GU+Tu().b+lU+Tu().f+mU+Tu().e+nU+Tu().c+oU+Tu().d+HU+Pu().b+lU+Pu().f+mU+Pu().e+nU+Pu().c+oU+Pu().d+IU);mi();return true}return false}
function Nm(){!!$stats&&$stats({moduleName:$moduleName,sessionId:$sessionId,subSystem:YO,evtGroup:ZO,millis:(new Date).getTime(),type:$O,className:_O});hr(new fr)}
function Hc(a){var b,c,d,e,f,g;b=false;d=a.length;f=(new Date).getTime();while((new Date).getTime()-f<100){for(c=0;c<d;++c){g=a[c];if(!g){continue}if(!g[0].cb()){a[c]=null;b=true}}}if(b){e=[];for(c=0;c<d;++c){if(!a[c]){continue}e[e.length]=a[c]}return e}else{return a}}
--></script>
<script><!--
function ji(a){ii();var b,c,d;d=null;if(hi.length!=0){b=hi.join(MN);c=xi((si(),ri),b);hi==a&&(d=c);hi.length=0}if(fi.length!=0){b=fi.join(MN);c=wi((si(),ri),b);fi==a&&(d=c);fi.length=0}if(gi.length!=0){b=gi.join(MN);c=wi((si(),ri),b);gi==a&&(d=c);gi.length=0}ei=false;return d}
function aH(a,b){var c,d;c=~~Math.max(Math.min(b*a.d,2147483647),-2147483648);!a.c&&(c=a.d-c);c=c>1?c:1;a.b.c.style[lP]=c+FO;d=parseInt(a.b.c[UW])||0;a.b.c.style[kP]=d+FO}
function Ks(a){var b,c,d,e;Eq(a,(!Mu&&(Mu=new Uu),Ru(),Pu(),Tu(),Qu(),d=os(new ms),e=Rs(new Ps),b=Mq(new Bq),c=fF(new cF,(gh(),dh)),iF(c,d,UT,true,3,~~(c.c.f.c/2)),iF(c,e,VT,true,3,~~(c.c.f.c/2)),iF(c,b,WT,true,3,~~(c.c.f.c/2)),c.J[zP]=EO,Wu((!Mu&&(Mu=new Uu),Mu)),c));return a}
function Jw(a,b){var c,d,e,f,g;if(!!Aw&&!!a&&hK(a.e.b,Aw)){c=Bw.b;d=Bw.c;e=Bw.d;f=Bw.e;Gw(Bw);Bw.e=b;ol(a,Bw);g=!(Bw.b&&!Bw.c);Bw.b=c;Bw.c=d;Bw.d=e;Bw.e=f;return g}return true}
function jF(a,b,c,d,e){var f,g;g=hF(a,b);if(g!=-1){kF(a,b);g<e&&--e}e*=2;LC(a.c,b,e);LC(a.c,c,e);PC(a.c,c,0,(gh(),fh),0,fh);PC(a.c,b,0,fh,0,fh);f=IF(new GF,b,c,d);ML(a.b,f);so(c.J,kW,true);so(b.J,lW,true);yo(c,BF(new zF,a,b),(Mi(),Mi(),Li));a.d==-1&&mF(a,0,250);Fq(a)&&gF(a,250)}
function eI(c){var a=$doc.createElement(dP);a.tabIndex=0;var b=$doc.createElement(XW);b.type=YW;b.tabIndex=-1;b.style.opacity=0;b.style.height=ZW;b.style.width=ZW;b.style.zIndex=-1;b.style.overflow=_N;b.style.position=uO;b.addEventListener(RU,c.b,false);a.appendChild(b);return a}
function kL(a){var b,c,d,e,f;if((a==null?null:a)===this){return true}if(!(a!=null&&km(a.tI,11))){return false}f=mm(a,11);if(this.$b()!=f.c){return false}d=rL(new oL,mm(this,11));e=rL(new oL,f);while(d.b<d.c.c){b=tL(d);c=tL(e);if(!(b==null?c==null:Sb(b,c))){return false}}return true}
function Se(a,b){var c=b.ownerDocument;var d=c.defaultView.getComputedStyle(b,null);var e=c.getBoxObjectFor(b).y-Math.round(d.getPropertyCSSValue(XN).getFloatValue(CSSPrimitiveValue.CSS_PX));var f=b.parentNode;while(f){f.scrollTop>0&&(e-=f.scrollTop);f=f.parentNode}return e+a.scrollTop}
function Ev(a,b){var c,d,e;e=false;try{a.d=true;a.g.b=a.c.c;kb(a.b,10000);while(Vv(a.g)){d=Wv(a.g);try{if(d==null){return}if(d!=null&&km(d.tI,40)){c=mm(d,40);c.db()}}finally{e=a.g.c==-1;if(e){return}Xv(a.g)}if((new Date).getTime()-b>=100){return}}}finally{if(!e){jb(a.b);a.d=false;Fv(a)}}}
function Ie(a){var b;if(!Je()&&(b=a.ownerDocument.defaultView.getComputedStyle(a,null),b.direction==VN)){return (a.scrollLeft||0)-((a.scrollWidth||0)-a.clientWidth)}return a.scrollLeft||0}
function Qe(a,b){var c=b.ownerDocument;var d=c.defaultView.getComputedStyle(b,null);var e=c.getBoxObjectFor(b).x-Math.round(d.getPropertyCSSValue(WN).getFloatValue(CSSPrimitiveValue.CSS_PX));var f=b.parentNode;while(f){f.scrollLeft>0&&(e-=f.scrollLeft);f=f.parentNode}return e+a.scrollLeft}
function pp(a){var b,c,d,e;c=a.B;b=a.s;if(!c){a.J.style[CP]=_N;a.s=false;kq(a)}d=nf($doc)-(parseInt(a.J[qP])||0)>>1;e=mf($doc)-(parseInt(a.J[pP])||0)>>1;Bp(a,lJ(te((ce(),$doc))+d,0),lJ(ve($doc)+e,0));if(!c){a.s=b;if(b){nI(a.J,DP);a.J.style[CP]=mO;$(a.A,200,(new Date).getTime())}else{a.J.style[CP]=mO}}}
function fE(a){a.J=(ce(),$doc).createElement(dP);a.J.style[ZN]=$N;a.b=$doc.createElement(dP);a.J.appendChild(a.b);a.J.style[eP]=tO;a.b.style[eP]=tO;a.J.style[eW]=fW;a.b.style[eW]=fW;return a}
function Mq(a){var b,c;a.b=Zl(Dm,166,21,[Uq(new Sq,UP,VP),Uq(new Sq,WP,XP),Uq(new Sq,YP,ZP),Uq(new Sq,$P,_P),Uq(new Sq,aQ,bQ),Uq(new Sq,cQ,dQ),Uq(new Sq,eQ,fQ),Uq(new Sq,gQ,hQ)]);Eq(a,(!st&&(st=new vt),c=zB(new xB),c.J[zP]=iQ,a.c=c,xt((!st&&(st=new vt),st)),c));for(b=0;b<a.b.length;++b){Nq(a,a.b[b])}return a}
function $F(a,b,c){var d,e,f;if(b==a.h){return}f=TF(a,b);if(f){$F(a,f,false);return}e=b.h;!e&&(e=a.h);d=DG(e,b);!c||!b.g?d<CG(e)-1?aG(a,BG(e,d+1),true):$F(a,e,false):CG(b)>0&&aG(a,BG(b,0),true)}
function xy(f){var c=MN;var d=$wnd.location.hash;d.length>0&&(c=f.Mb(d.substring(1)));$wnd.__gwt_historyToken=c;var e=f;$wnd.__checkHistory=$entry(function(){$wnd.setTimeout($wnd.__checkHistory,250);var a=MN,b=$wnd.location.hash;b.length>0&&(a=e.Mb(b.substring(1)));e.Nb(a)});$wnd.__checkHistory();return true}
function mp(a,b){jp();a.J=(ce(),$doc).createElement(dP);a.q=ZC(new XC,a);a.k=(jD(),iD);a.A=oD(new lD,a);a.J.appendChild(kI());Bp(a,0,0);mI(qe(a.J))[zP]=AP;lI(qe(a.J))[zP]=BP;a.l=b;a.m=b;return a}
function pn(a){var b,c,d;for(c=rL(new oL,this.b.d);c.b<c.c.c;){b=mm(tL(c),37);b.s&&(b.i=b.C+(b.K-b.C)*a);b.t&&(b.k=b.D+(b.M-b.D)*a);b.u&&(b.S=b.E+(b.O-b.E)*a);b.q&&(b.b=b.A+(b.G-b.A)*a);b.v&&(b.W=b.F+(b.Q-b.F)*a);b.r&&(b.g=b.B+(b.I-b.B)*a);Nn(b);!!this.c&&(d=b.U,d!=null&&km(d.tI,44)&&mm(d,44).Jb(),undefined)}}
function RF(a,b,c,d){var e,f,g,h,i;if(c==b.c){return d}f=nm((jL(c,b.c),b.b[c]));for(g=0,h=CG(d);g<h;++g){e=BG(d,g);if(e.J==f){i=RF(a,b,c+1,BG(d,g));if(!i){return e}return i}}return RF(a,b,c+1,d)}
function $A(a,b){var c,d,e,f,g,h;d=(ce(),b).target;for(;d;d=(f=d.parentNode,(!f||f.nodeType!=1)&&(f=null),f)){if(yJ(d[JV]==null?null:String(d[JV]),xV)){e=(g=d.parentNode,(!g||g.nodeType!=1)&&(g=null),g);c=(h=e.parentNode,(!h||h.nodeType!=1)&&(h=null),h);if(c==a.b){return d}}if(d==a.b){return null}}return null}
function rD(a,b){var c,d,e,f,g,h;!a.g&&(b=1-b);g=0;e=0;f=0;c=0;d=~~Math.max(Math.min(b*a.d,2147483647),-2147483648);h=~~Math.max(Math.min(b*a.e,2147483647),-2147483648);switch(a.b.k.b){case 2:f=a.e;c=d;break;case 0:g=a.d-d>>1;e=a.e-h>>1;f=e+h;c=g+d;break;case 1:f=e+h;c=g+d;}nI((jp(),a.b.J),aW+g+bW+f+bW+c+bW+e+cW)}
function ME(a){var b;switch(Bx((ce(),a).type)){case 4:this.d=true;this.e=this.Tb(a)-this.Sb();yw(this.J);a.preventDefault();break;case 8:this.d=false;kw(this.J);a.preventDefault();break;case 64:if(this.d){this.f?(b=this.Ub()+this.Vb()-this.Tb(a)-this.e):(b=this.Tb(a)-this.Ub()-this.e);LE(this,b);a.preventDefault()}}}
function Sd(a,b){var c,d,e,f,g,h,i;b=EJ(b);i=a.className;e=i.indexOf(b);while(e!=-1){if(e==0||i.charCodeAt(e-1)==32){f=e+b.length;g=i.length;if(f==g||f<g&&i.charCodeAt(f)==32){break}}e=i.indexOf(b,e+1)}if(e!=-1){c=EJ(i.substr(0,e-0));d=EJ(CJ(i,e+b.length));c.length==0?(h=d):d.length==0?(h=c):(h=c+TN+d);a.className=h}}
function gF(a,b){var c,d,e,f,g;if(a.b.c==0){return}g=0;c=0;e=0;for(;e<a.b.c;++e){d=mm(PL(a.b,e),46);RC(a.c,d.b,g,a.e,d.c,a.e);g+=d.c;RC(a.c,d.d,g,a.e,0,a.e);if(e==a.d){break}}for(f=a.b.c-1;f>e;--f){d=mm(PL(a.b,f),46);OC(a.c,d.b,c,a.e,d.c,a.e);OC(a.c,d.d,c,a.e,0,a.e);c+=d.c}d=mm(PL(a.b,a.d),46);QC(a.c,d.d,g,a.e,c,a.e);HA(a.c.c,b)}
function Dy(){var d=$wnd.onbeforeunload;var e=$wnd.onunload;$wnd.onbeforeunload=function(a){var b,c;try{b=$entry(lx)()}finally{c=d&&d(a)}if(b!=null){return b}if(c!=null){return c}};$wnd.onunload=$entry(function(a){try{Yw&&yk(hx())}finally{e&&e(a);$wnd.onresize=null;$wnd.onscroll=null;$wnd.onbeforeunload=null;$wnd.onunload=null}})}
function ZF(a){var b,c,d,e,f,g,h;f=a.c.e;b=Pe((ce(),a.J));c=Re(a.J);e=Qe(wf(f.ownerDocument),f)-b;g=Se(wf(f.ownerDocument),f)-c;h=parseInt(f[qP])||0;d=parseInt(f[pP])||0;if(h==0||d==0){a.d.style[fP]=nW;a.d.style[gP]=nW;return}a.d.style[fP]=e+FO;a.d.style[gP]=g+FO;a.d.style[kP]=h+FO;a.d.style[lP]=d+FO;we(a.d);jG(a);(DB(),a.d).focus()}
function Xq(a,b){var c,d,e,f,g,h;Wq();mp(a,true);$o(a,(Ct(),!At&&(At=new Et),h=null,d=gf($doc),f=null,e=gf($doc),g=HB(new FB,kQ+d+lQ+e+mQ),g.J[zP]=nQ,c=ov(g.J),h=$doc.getElementById(d),h.removeAttribute(oQ),f=$doc.getElementById(e),f.removeAttribute(oQ),uv(c),a.b=f,a.c=h,Gt((!At&&(At=new Et),At)),g));Te((ce(),a.c),b.c);Te(a.b,b.b);return a}
function Oz(a,b,c){var d,e,f,g;a.J=(ce(),$doc).createElement(qV);f=a.J;a.c=$doc.createElement(rV);f.appendChild(a.c);f[pT]=0;f[qT]=0;for(d=0;d<b.length;++d){e=(g=$doc.createElement(sV),g[zP]=b[d],g.appendChild(Rz(b[d]+tV)),g.appendChild(Rz(b[d]+uV)),g.appendChild(Rz(b[d]+vV)),g);a.c.appendChild(e);d==c&&(a.b=qe(Nx(e,1)))}a.J[zP]=wV;return a}
function UF(a,b,c){dG(a,b,c);a.J=(ce(),$doc).createElement(dP);a.J.style[eP]=tO;a.J.style[eW]=fW;a.d=eI((DB(),CB));a.d.style[mW]=nW;a.d.style[eP]=uO;a.d.style[oW]=hP;a.d.setAttribute(pW,qW);a.d.style[nP]=rW;a.J.appendChild(a.d);Io(a,901);Xx(a.d,6144);a.h=QG(new tG,a);FG(a.h);JG(a.h,a);a.J[zP]=sW;a.J.setAttribute(tW,uW);a.d.setAttribute(tW,vW)}
function Wx(){$wnd.addEventListener(VO,$entry(function(a){var b=$wnd.__captureElem;if(b&&!a.relatedTarget){if(_U==a.target.tagName.toLowerCase()){var c=$doc.createEvent(aV);c.initMouseEvent(XO,true,true,$wnd,0,a.screenX,a.screenY,a.clientX,a.clientY,a.ctrlKey,a.altKey,a.shiftKey,a.metaKey,a.button,null);b.dispatchEvent(c)}}}),true);$wnd.addEventListener(YU,Kx,true)}
function jG(a){var b,c,d,e,f;b=a.c.e;d=-1;f=a.c;while(f){f=f.h;++d}b.setAttribute(xW,MN+(d+1));e=a.c.h;!e&&(e=a.h);b.setAttribute(yW,MN+CG(e));c=DG(e,a.c);b.setAttribute(zW,MN+(c+1));CG(a.c)==0?(b.removeAttribute(AW),undefined):a.c.g?(b.setAttribute(AW,qW),undefined):(b.setAttribute(AW,BW),undefined);b.setAttribute(CW,qW);a.d.setAttribute(DW,(ce(),b).getAttribute(oQ)||MN)}
function os(a){var b;a.b=MF(new JF);b=AG(new uG,qs((!ju&&(ju=Vn(new Tn,AT,0,0,16,16)),ju),zQ));RG(a.b.h,b);ps(b,BT,(!ku&&(ku=Vn(new Tn,CT,0,0,16,16)),ku));ps(b,DT,(!iu&&(iu=Vn(new Tn,ET,0,0,16,16)),iu));ps(b,FT,(!mu&&(mu=Vn(new Tn,GT,0,0,16,16)),mu));ps(b,HT,(!lu&&(lu=Vn(new Tn,IT,0,0,16,16)),lu));ps(b,JT,(!nu&&(nu=Vn(new Tn,KT,0,0,16,16)),nu));IG(b,true,true);Eq(a,a.b);return a}
function hr(a){var b,c,d,e,f,g,h,i,j;gu((!bu&&(bu=new eu),bu));b=(j=Ys(new Ws),i=Ks(new Is),h=Qr(new Nr),g=rr(new mr),f=CE(new AE),e=mA(new kA,(gh(),dh)),e.Qb(j,(BA(),zA),5,null),DE(f,i,AA,192),DE(f,h,zA,200),DE(f,g,yA,0),e.Qb(f,yA,0,null),a.b=g,a.c=h,a.d=j,e);hf($doc,false);$doc.body.style.margin=hP;d=mm(a.d.H,38).c.e;d.style[nP]=pQ;d.style[ZN]=(pg(),mO);a.c.c=kr(new ir,a);c=GD();LC(c,b,c.f.c)}
function Ln(a,b,c,d){if(!c){return 1}switch(c.b){case 1:return (d?b.clientHeight:b.clientWidth)/100;case 2:return (a.b.offsetWidth||0)/10;case 3:return (a.b.offsetHeight||0)/10;case 7:return (Gn.offsetWidth||0)*0.1;case 8:return (Gn.offsetWidth||0)*0.01;case 6:return (Gn.offsetWidth||0)*0.254;case 4:return (Gn.offsetWidth||0)*0.00353;case 5:return (Gn.offsetWidth||0)*0.0423;default:case 0:return 1;}}
function nA(a){var b,c,d,e,f,g,h,i;g=0;i=0;h=0;b=0;for(d=xH(new uH,a.f);d.b<d.c.c-1;){c=zH(d);e=mm(c.H,38);f=e.c;switch(e.b.b){case 0:An(f,g,a.e,h,a.e);En(f,i,a.e,e.d,a.e);i+=e.d;break;case 2:An(f,g,a.e,h,a.e);zn(f,b,a.e,e.d,a.e);b+=e.d;break;case 3:Dn(f,i,a.e,b,a.e);Bn(f,g,a.e,e.d,a.e);g+=e.d;break;case 1:Dn(f,i,a.e,b,a.e);Cn(f,h,a.e,e.d,a.e);h+=e.d;break;case 4:An(f,g,a.e,h,a.e);Dn(f,i,a.e,b,a.e);}}}
function gn(a,b,c){var d,e,f,g;if(b==0){for(e=rL(new oL,a.d);e.b<e.c.c;){d=mm(tL(e),37);d.i=d.C=d.K;d.S=d.E=d.O;d.k=d.D=d.M;d.b=d.A=d.G;d.W=d.F=d.Q;d.g=d.B=d.I;d.o=d.s;d.w=d.u;d.p=d.t;d.m=d.q;d.z=d.v;d.n=d.r;d.j=d.L;d.T=d.P;d.l=d.N;d.c=d.H;d.X=d.R;d.h=d.J;Nn(d)}return}g=a.e.clientWidth;f=a.e.clientHeight;for(e=rL(new oL,a.d);e.b<e.c.c;){d=mm(tL(e),37);cn(a,g,d);dn(a,f,d)}!!a.b&&Y(a.b);a.b=ln(new jn,a,c);$(a.b,b,(new Date).getTime())}
function Rs(a){var b,c,d,e,f,g,h;Eq(a,(!Yu&&(Yu=new _u),b=Bz(new zz),c=Bz(new zz),d=Bz(new zz),e=Bz(new zz),f=Bz(new zz),g=Bz(new zz),h=zB(new xB),b.c.innerHTML=XT,b.J[zP]=YT,Jy(h,b,h.J),c.c.innerHTML=ZT,c.J[zP]=YT,Jy(h,c,h.J),d.c.innerHTML=$T,d.J[zP]=YT,Jy(h,d,h.J),e.c.innerHTML=_T,e.J[zP]=YT,Jy(h,e,h.J),f.c.innerHTML=aU,f.J[zP]=YT,Jy(h,f,h.J),g.c.innerHTML=bU,g.J[zP]=YT,Jy(h,g,h.J),h.J[zP]=cU,bv((!Yu&&(Yu=new _u),Yu)),h));return a}
function Bx(a){switch(a){case OU:return 4096;case PU:return 1024;case SO:return 1;case QU:return 2;case RU:return 2048;case SP:return 128;case SU:return 256;case TU:return 512;case UU:return 32768;case VU:return 8192;case TO:return 4;case UO:return 64;case VO:return 32;case WO:return 16;case XO:return 8;case nO:return 16384;case WU:return 65536;case XU:return 131072;case YU:return 131072;case ZU:return 262144;case $U:return 524288;}}
function yG(){var a,b,c,d,e;yG=LM;xG=new YG;yG();wG=(ce(),$doc).createElement(qV);a=$doc.createElement(dP);b=$doc.createElement(rV);e=$doc.createElement(sV);d=$doc.createElement(xV);c=$doc.createElement(xV);wG.appendChild(b);b.appendChild(e);e.appendChild(d);e.appendChild(c);d.style[IW]=JW;c.style[IW]=JW;c.appendChild(a);a.style[ZV]=gO;a[zP]=KW;wG.style[wQ]=LW;vG=$doc.createElement(dP);vG.style[MW]=NW;vG.appendChild(a);a.setAttribute(tW,vW)}
function Nn(a){var b;b=a.e.style;b[fP]=a.o?a.i+a.j.fb():MN;b[gP]=a.w?a.S+a.T.fb():MN;b[iP]=a.p?a.k+a.l.fb():MN;b[jP]=a.m?a.b+a.c.fb():MN;b[kP]=a.z?a.W+a.X.fb():MN;b[lP]=a.n?a.g+a.h.fb():MN;b=a.d.style;switch(a.f.b){case 0:b[fP]=0+(gh(),FO);b[iP]=MN;break;case 1:b[fP]=MN;b[iP]=0+(gh(),FO);break;case 2:b[fP]=0+(gh(),FO);b[iP]=hP;}switch(a.V.b){case 0:b[gP]=0+(gh(),FO);b[jP]=MN;break;case 1:b[gP]=MN;b[jP]=0+(gh(),FO);break;case 2:b[gP]=0+(gh(),FO);b[jP]=hP;}}
function Ys(a){var b,c,d,e,f,g,h,i,j,k;Eq(a,(gv(),!ev&&(ev=new iv),d=gf($doc),k=az(new Wy),f=gf($doc),b=az(new Wy),h=HB(new FB,dU+d+eU+f+fU),k.J.innerHTML=gU,k.J.href=QT,b.J.innerHTML=hU,b.J.href=QT,c=ov(h.J),e=$doc.getElementById(d),g=$doc.getElementById(f),uv(c),Fo(k),mH(h.f,k),e.parentNode.replaceChild(k.J,e),Ho(k,h),Fo(b),mH(h.f,b),g.parentNode.replaceChild(b.J,g),Ho(b,h),i=new bt,yo(b,i,(Mi(),Mi(),Li)),j=new et,yo(k,j,Li),kv((!ev&&(ev=new iv),ev)),h));return a}
function bK(a){var b,c,d,e,f;if((a==null?null:a)===this){return true}if(!(a!=null&&km(a.tI,51))){return false}e=mm(a,51);if(mm(this,51).e!=e.e){return false}for(c=LK(new JK,CK(new wK,e).b);sL(c.b);){b=mm(tL(c.b),50);d=b.bc();f=b.cc();if(!(d==null?mm(this,51).d:d!=null&&km(d.tI,1)?mK(mm(this,51),mm(d,1)):lK(mm(this,51),d,~~Ub(d)))){return false}if(!KM(f,d==null?mm(this,51).c:d!=null&&km(d.tI,1)?mm(this,51).f[bX+mm(d,1)]:jK(mm(this,51),d,~~Ub(d)))){return false}}return true}
function dn(a,b,c){var d,e,f;f=c.S*fn(a,c.T,true);d=c.b*fn(a,c.c,true);e=c.g*fn(a,c.h,true);if(c.w&&!c.u){c.w=false;if(c.n){c.q=true;c.A=(b-(f+e))/fn(a,c.H,true)}else{c.r=true;c.B=(b-(f+d))/fn(a,c.J,true)}}else if(c.n&&!c.r){c.n=false;if(c.w){c.q=true;c.A=(b-(f+e))/fn(a,c.H,true)}else{c.u=true;c.E=(b-(d+e))/fn(a,c.P,true)}}else if(c.m&&!c.q){c.m=false;if(c.n){c.u=true;c.E=(b-(d+e))/fn(a,c.P,true)}else{c.r=true;c.B=(b-(f+d))/fn(a,c.J,true)}}c.w=c.u;c.m=c.q;c.n=c.r;c.T=c.P;c.c=c.H;c.h=c.J}
function cn(a,b,c){var d,e,f;d=c.i*fn(a,c.j,false);e=c.k*fn(a,c.l,false);f=c.W*fn(a,c.X,false);if(c.o&&!c.s){c.o=false;if(c.z){c.t=true;c.D=(b-(d+f))/fn(a,c.N,false)}else{c.v=true;c.F=(b-(d+e))/fn(a,c.R,false)}}else if(c.z&&!c.v){c.z=false;if(c.o){c.t=true;c.D=(b-(d+f))/fn(a,c.N,false)}else{c.s=true;c.C=(b-(e+f))/fn(a,c.L,false)}}else if(c.p&&!c.t){c.p=false;if(c.z){c.s=true;c.C=(b-(e+f))/fn(a,c.L,false)}else{c.v=true;c.F=(b-(d+e))/fn(a,c.R,false)}}c.o=c.s;c.p=c.t;c.z=c.v;c.j=c.L;c.l=c.N;c.X=c.R}
function rr(a){var b,c,d,e,f,g,h,i,j,k,l;Eq(a,(!It&&(It=new Lt),l=null,d=gf($doc),k=null,e=gf($doc),j=null,f=gf($doc),h=HB(new FB,qQ+d+rQ+e+sQ+f+tQ),c=dA(new $z),i=fE(new dE),g=mA(new kA,(gh(),dh)),h.J[zP]=uQ,g.Qb(h,(BA(),zA),6,null),c.J[zP]=vQ,c.J.style[wQ]=xQ,$o(i,c),g.Qb(i,yA,0,null),g.J[zP]=yQ,b=ov(h.J),l=$doc.getElementById(d),l.removeAttribute(oQ),k=$doc.getElementById(e),k.removeAttribute(oQ),j=$doc.getElementById(f),j.removeAttribute(oQ),uv(b),a.b=c,a.c=j,a.d=k,a.e=l,Nt((!It&&(It=new Lt),It)),g));return a}
function we(a){var b=a.offsetLeft,c=a.offsetTop;var d=a.offsetWidth,e=a.offsetHeight;if(a.parentNode!=a.offsetParent){b-=a.parentNode.offsetLeft;c-=a.parentNode.offsetTop}var f=a.parentNode;while(f&&f.nodeType==1){b<f.scrollLeft&&(f.scrollLeft=b);b+d>f.scrollLeft+f.clientWidth&&(f.scrollLeft=b+d-f.clientWidth);c<f.scrollTop&&(f.scrollTop=c);c+e>f.scrollTop+f.clientHeight&&(f.scrollTop=c+e-f.clientHeight);var g=f.offsetLeft,h=f.offsetTop;if(f.parentNode!=f.offsetParent){g-=f.parentNode.offsetLeft;h-=f.parentNode.offsetTop}b+=g-f.scrollLeft;c+=h-f.scrollTop;f=f.parentNode}}
function Qr(a){var b,c,d,e,f;Eq(a,(Tt(),!Rt&&(Rt=new Zt),!Qt&&(Qt=new Wt),e=lB(new QA),f=lB(new QA),c=fE(new dE),b=mA(new kA,(gh(),dh)),e.J[zP]=oT,e.f[pT]=0,e.f[qT]=0,b.Qb(e,(BA(),zA),2,null),f.J[zP]=rT,f.f[pT]=0,f.f[qT]=0,$o(c,f),b.Qb(c,yA,0,null),b.J[zP]=sT,d=fs(new ds,a),yo(f,d,(Mi(),Mi(),Li)),a.b=e,a.g=f,_t((!Rt&&(Rt=new Zt),Rt)),Yt((!Qt&&(Qt=new Wt),Qt)),b));a.d=ts(new rs,a);YB(a.b.d,0)[kP]=tT;YB(a.b.d,1)[kP]=uT;YB(a.b.d,3)[kP]=vT;gB(a.b,0,0,wT);gB(a.b,0,1,xT);gB(a.b,0,2,yT);hB(a.b,0,3,a.d);uB(a.b.c,0,3,(jC(),iC));YB(a.g.d,0)[kP]=tT;YB(a.g.d,1)[kP]=uT;Yr(a);return a}
function Kr(){Kr=LM;var a;Hr=Zl(Im,181,1,[AQ,BQ,CQ,DQ,EQ,FQ,GQ,HQ,IQ,JQ,KQ,LQ,MQ,NQ,OQ,PQ,QQ,RQ,SQ,TQ,UQ,VQ,WQ,XQ,YQ,ZQ,$Q,_Q,aR,bR,cR,dR,eR,fR,gR,hR,iR,jR,kR,lR,mR,nR,oR,pR,qR,rR,sR]);Cr=Zl(Im,181,1,[tR,uR,vR,wR,xR,yR,zR,AR,BR,CR,DR,ER,FR,GR,HR,IR,JR,KR,LR,MR,NR,OR,PR,QR,RR,SR,TR,UR,VR,WR,XR,YR,ZR,$R,_R,aS,bS,cS,dS,eS,fS,gS,hS,iS,jS,kS]);Jr=Zl(Im,181,1,[lS,mS,nS,oS,pS,qS,rS,sS,tS,uS,vS,wS,xS,yS,zS,AS,BS,CS,DS,ES,FS,GS,HS,IS,JS,KS,LS,MS,NS,OS,PS,QS,RS,SS,TS,US,VS,WS,XS]);Er=Zl(Im,181,1,[YS,ZS,$S,_S,aT,bT,cT,dT,eT,fT,gT,hT,iT,jT,kT,lT,mT,nT]);Fr=LL(new IL);for(a=0;a<64;++a){ML(Fr,Lr())}}
function ts(a,b){var c,d,e,f,g,h,i,j,k,l,m,n;Eq(a,(!Cu&&(Cu=new Fu),e=gf($doc),m=az(new Wy),d=null,g=gf($doc),h=gf($doc),n=az(new Wy),j=HB(new FB,LT+e+MT+g+MT+h+NT),m.J.innerHTML=OT,m.J[zP]=PT,m.J.href=QT,n.J.innerHTML=RT,n.J[zP]=PT,n.J.href=QT,c=ov(j.J),f=$doc.getElementById(e),d=$doc.getElementById(g),d.removeAttribute(oQ),i=$doc.getElementById(h),uv(c),Fo(m),mH(j.f,m),f.parentNode.replaceChild(m.J,f),Ho(m,j),Fo(n),mH(j.f,n),i.parentNode.replaceChild(n.J,i),Ho(n,j),k=Bs(new zs,a),yo(m,k,(Mi(),Mi(),Li)),l=Fs(new Ds,a),yo(n,l,Li),a.b=d,a.c=m,a.d=n,Hu((!Cu&&(Cu=new Fu),Cu)),j));a.e=b;return a}
function oG(a){var b,c,d,e;d=Bx((ce(),a).type);switch(d){case 128:{if(!this.c){CG(this.h)>0&&aG(this,BG(this.h,0),true);Co(this,a);return}}case 256:case 512:if(!!a.altKey||!!a.metaKey){Co(this,a);return}}switch(d){case 1:{c=a.target;rG(c)||!!this.c&&((DB(),this.d).focus(),undefined);break}case 4:{a.currentTarget==this.J&&Ae(a)==1&&PF(this,a.target);break}case 128:{VF(this,a);this.g=true;break}case 256:{!this.g&&VF(this,a);this.g=false;break}case 512:{if((a.which||a.keyCode||0)==9){b=LL(new IL);OF(this,b,this.J,a.target);e=RF(this,b,0,this.h);e!=this.c&&eG(this,e)}this.g=false;break}}switch(d){case 128:case 512:{if(mG(a.which||a.keyCode||0)){a.cancelBubble=true;a.preventDefault();return}}}Co(this,a)}
function zp(a,b){var c,d,e,f;if(b.b||!a.z&&b.c){a.v&&(b.b=true);return}a.Ib(b);if(b.b){return}d=b.e;c=qp(a,d);c&&(b.c=true);a.v&&(b.b=true);f=Bx((ce(),d).type);switch(f){case 128:{(d.which||d.keyCode||0)&65535;(d.shiftKey?1:0)|(d.metaKey?8:0)|(d.ctrlKey?2:0)|(d.altKey?4:0);return}case 512:{(d.which||d.keyCode||0)&65535;(d.shiftKey?1:0)|(d.metaKey?8:0)|(d.ctrlKey?2:0)|(d.altKey?4:0);return}case 256:{(d.which||d.keyCode||0)&65535;(d.shiftKey?1:0)|(d.metaKey?8:0)|(d.ctrlKey?2:0)|(d.altKey?4:0);return}case 4:if(bw){b.c=true;return}if(!c&&a.l){wp(a);return}break;case 8:case 64:case 1:case 2:{if(bw){b.c=true;return}break}case 2048:{e=d.target;if(a.v&&!c&&!!e){e.blur&&e!=$doc.body&&e.blur();b.b=true;return}break}}}
function Qx(){Kx=$entry(function(a){if(Jx(a)){var b=Ix;if(b&&b.__listener){if(Fx(b.__listener)){dw(a,b,b.__listener);a.stopPropagation()}}}});Jx=$entry(function(a){if(!jw(a)){a.stopPropagation();a.preventDefault();return false}return true});Lx=$entry(function(a){var b,c=this;while(c&&!(b=c.__listener)){c=c.parentNode}c&&c.nodeType!=1&&(c=null);b&&Fx(b)&&dw(a,c,b)});$wnd.addEventListener(SO,Kx,true);$wnd.addEventListener(QU,Kx,true);$wnd.addEventListener(TO,Kx,true);$wnd.addEventListener(XO,Kx,true);$wnd.addEventListener(UO,Kx,true);$wnd.addEventListener(WO,Kx,true);$wnd.addEventListener(VO,Kx,true);$wnd.addEventListener(XU,Kx,true);$wnd.addEventListener(SP,Jx,true);$wnd.addEventListener(TU,Jx,true);$wnd.addEventListener(SU,Jx,true)}
function Ux(a,b){var c=(a.__eventBits||0)^b;a.__eventBits=b;if(!c)return;c&1&&(a.onclick=b&1?Lx:null);c&2&&(a.ondblclick=b&2?Lx:null);c&4&&(a.onmousedown=b&4?Lx:null);c&8&&(a.onmouseup=b&8?Lx:null);c&16&&(a.onmouseover=b&16?Lx:null);c&32&&(a.onmouseout=b&32?Lx:null);c&64&&(a.onmousemove=b&64?Lx:null);c&128&&(a.onkeydown=b&128?Lx:null);c&256&&(a.onkeypress=b&256?Lx:null);c&512&&(a.onkeyup=b&512?Lx:null);c&1024&&(a.onchange=b&1024?Lx:null);c&2048&&(a.onfocus=b&2048?Lx:null);c&4096&&(a.onblur=b&4096?Lx:null);c&8192&&(a.onlosecapture=b&8192?Lx:null);c&16384&&(a.onscroll=b&16384?Lx:null);c&32768&&(a.onload=b&32768?Lx:null);c&65536&&(a.onerror=b&65536?Lx:null);c&131072&&(a.onmousewheel=b&131072?Lx:null);c&262144&&(a.oncontextmenu=b&262144?Lx:null);c&524288&&(a.onpaste=b&524288?Lx:null)}
function rq(a){var b,c,d,e,f,i,j,k,l,m,n;qq();mp(a,false);a.v=true;d=Zl(Im,181,1,[FP,GP,HP]);a.j=Oz(new Mz,d,1);a.j.qb()[zP]=MN;to(mI(qe((ce(),a.J))),IP);Dp(a,a.j);so(lI(qe(a.J)),BP,false);so(a.j.b,JP,true);a.b=gA(new Zz);c=(f=Nx(a.j.c,0),e=Nx(f,1),qe(e));c.appendChild(a.b.J);Uo(a,a.b);a.b.qb()[zP]=KP;mI(qe(a.J))[zP]=LP;a.i=nf($doc);a.c=kf($doc);a.d=lf($doc);b=jA(new hA,a);yo(a,b,(zj(),zj(),yj));yo(a,b,(bk(),bk(),ak));yo(a,b,(Hj(),Hj(),Gj));yo(a,b,(Wj(),Wj(),Vj));yo(a,b,(Pj(),Pj(),Oj));Te(a.b.J,MP);Tp(a,(mt(),!kt&&(kt=new ot),k=gf($doc),j=yz(new tz),m=HB(new FB,NP+k+OP),Te(j.J,PP),m.J[zP]=QP,m.J.style[kP]=RP,i=ov(m.J),l=$doc.getElementById(k),uv(i),Fo(j),mH(m.f,j),l.parentNode.replaceChild(j.J,l),Ho(j,m),n=yq(new wq,a),yo(j,n,(Mi(),Mi(),Li)),qt((!kt&&(kt=new ot),kt)),m));a.s=true;Ap(a,true);return a}
--></script>
<script><!--
var MN='',SN='\n',TN=' ',ST=' - ',TT=' of ',nU='") -',nT='"Oh, don\'t speak to me of Austria. Perhaps I don\'t understand things, but Austria never has wished, and does not wish, for war. She is betraying us! Russia alone must save Europe. Our gracious sovereign recognizes his high vocation and will be true to it. That is the one thing I have faith in! Our good and wonderful sovereign has to perform the noblest role on earth, and he is so virtuous and noble that God will not forsake him. He will fulfill his vocation and crush the hydra of revolution, which has become more terrible than ever in the person of this murderer and villain! We alone must avenge the blood of the just one.... Whom, I ask you, can we rely on?... England with her commercial spirit will not and cannot understand the Emperor Alexander\'s loftiness of soul. She has refused to evacuate Malta. She wanted to find, and still seeks, some secret motive in our actions. What answer did Novosiltsev get? None. The English have not understood and cannot understand the self-ab!<br>negation of our Emperor who wants nothing for himself, but only desires the good of mankind. And what have they promised? Nothing! And what little they have promised they will not perform! Prussia has always declared that Buonaparte is invincible, and that all Europe is powerless before him.... And I don\'t believe a word that Hardenburg says, or Haugwitz either. This famous Prussian neutrality is just a trap. I have faith only in God and the lofty destiny of our adored monarch. He will save Europe!"<br>"Those were extremes, no doubt, but they are not what is most important. What is important are the rights of man, emancipation from prejudices, and equality of citizenship, and all these ideas Napoleon has retained in full force."',dV='#',GO='%',cV='%23',OT='< newer',mP=' ',YV="' border='0'>",mQ="'><\/div> <\/div>",rQ="'><\/div> <div class='MF'><b>From:<\/b> <span id='",lQ="'><\/div> <div class='MFB' id='",NT="'><\/span>",OP="'><\/span> <\/div>",fU="'><\/span> <\/div> <\/div>",MT="'><\/span> <span id='",eU="'><\/span> \xA0 <span id='",tQ="'><\/span><\/div>",sQ="'><\/span><\/div> <div class='MF'><b>To:<\/b> <span id='",NN='(',nR='(unknown sender)',UV=') no-repeat ',kT='********************************************************************<br> Original filename: mail.zip<br> Virus discovered: JS.Feebs.AC<br>********************************************************************<br> A file that was attached to this email contained a virus.<br> It is very likely that the original message was generated<br> by the virus and not a person - treat this message as you would<br> any other junk mail (spam).<br> For more information on why you received this message please visit:<br>',IV=', Row size: ',eX=', Size: ',tP='-',rW='-1',oP='-32767',LU='.MBB{text-align:right;margin:1em;}.MP{text-align:right;}.MAB{height:',AU='.MCB{margin:0 8px;}',qU='.MDB{padding:0.5em;line-height:150%;}.MEB{display:block;}',uU='.MD{border:1px solid #666;background-color:white;}.ME{background:#eee;border-bottom:1px solid #666;padding:0.5em;}.MF{margin-bottom:0.5em;}.MC{line-height:150%;padding:20px 40px 20px 10px;font-family:"Times New Roman", Times, serif;}',wU='.MG{background:#adcce7;}.MG td{border-top:1px solid #88a4d6;border-bottom:1px solid #7b97d0;}',sU='.MHB{background:#fff;border:1px solid #666;padding:0.5em;width:14em;height:2.5em;}.MGB{height:',xU='.MI{border-left:1px solid #999;border-bottom:1px solid #999;cursor:pointer;cursor:hand;}.MH{height:',JU='.MKB{padding:0.5em;line-height:150%;}.MJB{display:block;}',EU='.MM{border-left:1px solid #999;border-right:1px solid #999;border-bottom:1px solid #999;}.MN{height:',kU='.MOB{padding:10px;}.MLB{text-align:left;}.MNB{height:',nW='0',hP='0px',fW='1',tT='128px',QW='16px',uT='192px',ZW='1px',pQ='2',RP='24em',vT='256px',NW='3px',bX=':',dU="<div class='MAB'><\/div> <div class='MBB'> <div> <b>Welcome back, foo@example.com<\/b> <\/div> <div class='MP'> <span id='",qQ="<div class='MF' id='",kQ="<div class='MGB'><\/div> <div class='MIB'> <div id='",WT="<div class='MN'><div class='MK'><\/div> Contacts<\/div>",UT="<div class='MN'><div class='ML'><\/div> Mailboxes<\/div>",VT="<div class='MN'><div class='MO'><\/div> Tasks<\/div>",NP="<div class='MNB'><\/div> <div class='MLB'> This sample application demonstrates the construction of a complex user interface using GWT's built-in widgets. Have a look at the code to see how easy it is to build your own apps! <\/div> <div class='MMB'> <span id='",$W='<div><\/div>',WV="<img src='",LT="<span id='",gT='>> Componentes e decodificadores; confira aqui;<br> http://br.geocities.com/listajohn/index.htm<br>',jT='>> obrigado por me dar esta pequena aten??o !!!<br>CASO GOSTE DE ASSISTIR TV , MAS A SUA ANTENA S? PEGA AQUELES CANAIS LOCAIS OU O SEU SISTEMA PAGO ? MUITO CARO , SAIBA QUE TENHO CART?ES DE ACESSO PARA SKY DIRECTV , E DECODERS PARA NET TVA E TECSAT , TUDO GRATIS , SEM ASSINTURA , SEM MENSALIDADE, VC PAGA UMA VEZ S? E ASSISTE A MUITOS CANAIS , FILMES , JOGOS , PORNOS , DESENHOS , DOCUMENT?RIOS ,SHOWS , ETC,<br><br>CART?O SKY E DIRECTV TOTALMENTE HACKEADOS 350,00<br>DECODERS NET TVA DESBLOQUEADOS 390,00<br>KITS COMPLETOS SKY OU DTV ANTENA DECODER E CART?O 650,00<br>TECSAT FREE 450,00<br>TENHO TB ACESS?RIOS , CABOS, LNB .<br>',IS='? s? uma dica r?pida !!!!! leia !!!',qO='ABSOLUTE',lO='AUTO',gR='Abigail Louis',hU='About',MP='About the Mail Sample',cX='Add not supported on this collection',eQ='Alan Turing',WP='Albert Einstein',aP='BEGIN',bO='BLOCK',hV='BUTTON',kR='Bell Snedden',sR='Benito Meeks',UP='Benoit Mandelbrot',$P='Bob Saget',JQ='Brasil s.p',FQ='Brigitte Cobb',TQ='Buster misjenou',EV='CENTER',DO='CM',UN='CSS1Compat',ZQ='Candice Carson',KV='Cannot create a column with a negative index: ',LV='Cannot create a row with a negative index: ',xP='Cannot set a new parent without first clearing the old parent',KP='Caption',uV='Center',hR='Chad Andrews',OQ='Christina Blake',HQ='Claudio Engle',PP='Close',TP='Composite.initWidget() may only be called once.',YU='DOMMouseScroll',YS='Dear Friend,<br><br>I am Mr. Mark Boland the Bank Manager of ABN AMRO BANK 101 Moorgate, London, EC2M 6SB.<br><br>',IQ='Dena Pacheco',pR='Dirk Newman',DT='Drafts',BV='EAST',yO='EM',bP='END',zO='EX',GQ='Elba Lockhart',xT='Email',DQ='Emerson Milton',_Q='Emilio Hutchinson',DS='Encrypted E-mail System (VIRUS REMOVED)',qR='Equipe Virtual Cards',rO='FIXED',HS='FWD: Financial Market Traderr special pr news release',US='FWD: Top Financial Market Specialists Trader interest increases',sS='FWD: TopWeeks the wire special pr news release',wS='Forbidden Knowledge Conference',ES='Fw: Malcolm',PQ='Gail Horton',aR='Geneva Underwood',aU='Get funding',XT='Get groceries',jO='HIDDEN',EQ='Healy Colette',eR='Heriberto Rush',BQ='Hollie Voss',qS='Hot Stock Talk',$S='I have all necessary legal documents that can be used to back up any claim we may make. All I require is your honest Co-operation, Confidentiality and A trust to enable us sees this transaction through. I guarantee you that this will be executed under a legitimate arrangement that will protect you from any breach of the law. Please get in touch with me urgently by E-mail and Provide me with the following;<br>',ZS='I have an urgent and very confidential business proposition for you. On July 20, 2001; Mr. Zemenu Gente, a National of France, who used to be a private contractor with the Shell Petroleum Development Company in Saudi Arabia. Mr. Zemenu Gente Made a Numbered time (Fixed deposit) for 36 calendar months, valued at GBP?30, 000,000.00 (Thirty Million Pounds only) in my Branch.',CO='IN',cO='INLINE',dO='INLINE_BLOCK',kV='INPUT',iU='If this were implemented, you would be signed out now.',BT='Inbox',dX='Index: ',yV='Inner',bT='JMT has contracted with Well Enhancement Services, LLC (www.wellenhancement.com) to perform the rework on its Pierce nos. 14 and 14a. A small sand frac will follow the drilling of the lateral well bores in order to enhance permeability and create larger access to the Pecan Gap reservoir. Total cost of the re-work per well is estimated to be approximately $50,000 USD.',gQ='John von Neumann',oR='Kent',HW='LABEL',aT='LAS VEGAS, NEVADA--(MARKET WIRE)--Apr 6, 2006 -- KOKO Petroleum, Inc. (Other OTC:KKPT.PK - News) -<br>KOKO Petroleum, Inc. announced today that its operator for the Corsicana Field, JMT Resources, Ltd. ("JMT") will commence a re-work program on its Pecan Gap wells in the next week. The re-work program will consist of drilling six lateral bore production strings from the existing well bore. This process, known as Radial Jet Enhancement, will utilize high pressure fluids to drill the lateral well bores, which will extend out approximately 350\' each.',GV='LINE_END',FV='LINE_START',dT='Large Marketing Campaign running this weekend!<br><br>Should you get in today before it explodes?<br><br>This Will Fly Starting Monday!',tV='Left',$Q='Louise Kelchner',aQ='Ludwig von Beethoven',vQ='MC',PT='MCB',yQ='MD',iQ='MDB',uQ='ME',jQ='MEB',zT='MG',oT='MH',nQ='MHB',sT='MI',rT='MJ',YT='MJB',cU='MKB',EO='MM',QP='MOB',aX='Macintosh',YQ='Mildred Starnes',aV='MouseEvents',aO='NONE',AV='NORTH',rS='New Breed of Equity Trader',RS='No prescription needed',rP='Null widget handle. If you are creating a composite, ensure that initWidget() has been called.',$V='ONE_WAY_CORNER',GW='OPTION',gV='One or more exceptions caught, see full set in AttachDetachException#getCauses',QQ='Orville Daniel',VS='Os cart?es mais animados da web!!',BO='PC',xO='PCT',eT='PREMIER INFORMATION (PIFR)<br>A U.S. based company offers specialized information management serices to both the Insurance and Healthcare Industries. The services we provide are specific to each industry and designed for quick response and maximum security.<br><br>STK- PIFR<br>Current Price: .20<br>This one went to $2.80 during the last marketing Campaign!',AO='PT',wO='PX',cT='Parab?ns!<br>Voc? Ganhou Um Vale Presente da Botic?rio no valor de R$50,00<br>Voc? foi contemplado na Promo??o Respeite Minha Natureza - Pulseira Social.<br>Algu?m pode t?-lo inscrito na promo??o! (Amigos(as), Namorado(a) etc.).<br>Para retirar o seu pr?mio em uma das nossas Lojas, fa?a o download do Vale-Presente abaixo.<br>Ap?s o download, com o arquivo previamente salvo, imprima uma folha e salve a c?pia em seu computador para evitar transtornos decorrentes da perda do mesmo. Lembramos que o Vale-Presente ? ?nico e intransfer?vel.',KQ='Parker',RQ='PostMaster',lT='Put a few letters after your name. Let us show you how you can do it in just a few days.<br><br>http://thewrongchoiceforyou.info<br><br>kill future mailing by pressing this : see main website',PS='RE: Before the be11 special pr news release',XS='RE: Best Top Financial Market Specialists Trader Picks',AS='RE: St0kkMarrkett Picks Trade watch special pr news release',zS='RE: The hottest pick Watcher',pO='RELATIVE',_V='ROLL_DOWN',SQ='Rae Childers',pS='Read this ASAP',uS='Renda Extra R$1.000,00-R$2.000,00/m?s',YP='Rene Descartes',bR='Residence Oper?',cQ='Richard Feynman',vV='Right',HV='Row index: ',kO='SCROLL',EW='SELECT',CV='SOUTH',oO='STATIC',cP='STRETCH',FS='Secure Message System (VIRUS REMOVED)',wT='Sender',HT='Sent',SS='Seu novo site',uP="Should only call onAttach when the widget is detached from the browser's document",vP="Should only call onDetach when the widget is attached to the browser's document",gU='Sign Out',yP='SimplePanel can only contain one child widget',BS='St0kkMarrkett Picks Watch special pr news release news',$T='Start Web 2.0 company',sP='Style names cannot be empty',yT='Subject',FW='TEXTAREA',hT='THE GOVERNING AWARD<br>NETHERLANDS HEAD OFFICE<br>AC 76892 HAUITSOP<br>AMSTERDAM, THE NETHERLANDS.<br>FROM: THE DESK OF THE PROMOTIONS MANAGER.<br>INTERNATIONAL PROMOTIONS / PRIZE AWARD DEPARTMENT<br>REF NUMBER: 14235/089.<br>BATCH NUMBER: 304/64780/IFY.<br>RE/AWARD NOTIFICATION<br>',bU='Take a vacation',FT='Templates',jR='Terry English',_S='The OIL sector is going crazy. This is our weekly gift to you!<br><br>Get KKPT First Thing, This Is Going To Run!<br><br>Check out Latest NEWS!<br><br>KOKO PETROLEUM (KKPT) - This is our #1 pick for next week!<br>Our last pick gained $2.16 in 4 days of trading.<br>',fT='These partnerships specifically allow Premier to obtain personal health information, as governed by the Health In-surancee Portability and Accountability Act of 1996 (HIPAA), and other applicable state laws and regulations.<br><br>Global HealthCare Market Undergoing Digital Conversion',wP="This widget's parent does not implement HasWidgets",JT='Trash',lS='URGENT -[Mon, 24 Apr 2006 02:17:27 +0000]',mS='URGENT TRANSACTION -[Sun, 23 Apr 2006 13:10:03 +0000]',QN='Unknown',RN='Unknown source',LS='VACANZE alle Mauritius',iO='VISIBLE',DV='WEST',ZT='Walk the dog',iT="We are pleased to inform you of the announcement today 13th of April 2006, you among TWO LUCKY WINNERS WON the GOVERNING AWARD draw held on the 28th of March 2006. The THREE Winning Addresses were randomly selected from a batch of 10,000,000 international email addresses. Your email address emerged alongside TWO others as a category B winner in this year's Annual GOVERNING AWARD Draw.<br>",mT="We possess scores of pharmaceutical products handy<br>All med's are made in U.S. laboratories<br>For your wellbeing! Very rapid, protected and secure<br>Ordering, No script required. We have the pain aid you require<br>",WS='We will sale 4 you cebtdbwtcv',_T='Write cool app in GWT',CS='You are a Winner oskoxmshco',TS='[fwd] Financial Market Trader Picker',tS='[fwd] Read this ASAP',QS='[re:] Market TradePicks Trade watch news',OS='[re:] Our Pick',bV='__uiObjectID',eV='a',_R='abigail_louis@example.com',uO='absolute',fQ='alan@example.com',XP='albert@example.com',MV='align',PN='anonymous',NQ='antenas.sul',GR='antenas_sul@example.com',WQ='aqlovikigd',PR='aqlovikigd@example.com',DW='aria-activedescendant',AW='aria-expanded',xW='aria-level',zW='aria-posinset',CW='aria-selected',yW='aria-setsize',$N='auto',WW='background',dS='bell@example.com',kS='benito@example.com',VP='benoit@example.com',iR='bjjycpaa',bS='bjjycpaa@example.com',fO='block',OU='blur',_P='bob@example.com',zU='body{font-size:small;font-family:Helvetica, Arial, sans-serif;color:#000;background:#fff;}table{font-size:small;}a:link,a:visited,a:hover,a:active{color:#000;}.dialogTopLeftInner,.dialogMiddleLeftInner,.dialogBottomLeftInner,.dialogTopRightInner,.dialogMiddleRightInner,.dialogBottomRightInner{display:none;}.gwt-DialogBox{background-color:white;border:1px solid #666;z-index:2;}.gwt-DialogBox .Caption{background:#d3d6dd url(gradient_bg_th.png) repeat-x bottom left;font-weight:bold;text-shadow:#fff 0 2px 2px;cursor:default;padding:5px 10px;border-bottom:1px solid #999;text-align:left;}.gwt-DialogBox .gwt-Button{margin:10px;}.gwt-PopupPanelGlass{background-color:#000;opacity:0.3;filter:alpha(opacity=30);z-index:2;}.gwt-Tree .gwt-TreeItem{padding:0;cursor:hand;cursor:pointer;display:block !important;}.gwt-Tree .gwt-TreeItem-selected{background:#ccc;}.gwt-SplitLayoutPanel-HDragger{background-color:white;cursor:col-resize;}.gwt-SplitLayoutPanel-VDragger{background-color:white;cursor:row-resize;}',WN='border-left-width',XN='border-top-width',CQ='boticario',vR='boticario@example.com',jP='bottom',CR='brasilsp@example.com',yR='brigitte@example.com',fR='bulrush Bouchard',$R='bulrush@example.com',MR='buster@example.com',iV='button',SR='candice@example.com',HR='cblake@example.com',qT='cellPadding',pT='cellSpacing',PV='center',aS='chada@example.com',PU='change',lV='checkbox',zP='className',AR='claudio@example.com',XV="clear.cache.gif' style='",SO='click',_W='clip',MO='cm',NU='cmd cannot be null',NV='col',OV='colgroup',_O='com.google.gwt.sample.mail.client.Mail',ZU='contextmenu',rU='data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+ENSWh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8APD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4KPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNC4yLjItYzA2MyA1My4zNTI2MjQsIDIwMDgvMDcvMzAtMTg6MDU6NDEgICAgICAgICI+CiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPgogIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiCiAgICB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iCiAgICB4bWxuczp4bXBSaWdodHM9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9yaWdodHMvIgogICAgeG1sbnM6cGhvdG9zaG9wPSJodHRwOi8vbnMuYWRvYmUuY29tL3Bob3Rvc2hvcC8xLjAvIgogICAgeG1sbnM6SXB0YzR4bXBDb3JlPSJodHRwOi8vaXB0Yy5vcmcvc3RkL0lwdGM0eG1wQ29yZS8xLjAveG1sbnMvIgogICB4bXBSaWdodHM6TWFya2VkPSJGYWxzZSIKICAgeG1wUmlnaHRzOldlYlN0YXRlbWVudD0iIgogICBwaG90b3Nob3A6QXV0aG9yc1Bvc2l0aW9uPSIiPgogICA8ZGM6cmlnaHRzPgogICAgPHJkZjpBbHQ+CiAgICAgPHJkZjpsaSB4bWw6bGFuZz0ieC1kZWZhdWx0Ii8+CiAgICA8L3JkZjpBbHQ+CiAgIDwvZGM6cmlnaHRzPgogICA8ZGM6Y3JlYXRvcj4KICAgIDxyZGY6U2VxPgogICAgIDxyZGY6bGkvPgogICAgPC9yZGY6U2VxPgogICA8L2RjOmNyZWF0b3I+CiAgIDxkYzp0aXRsZT4KICAgIDxyZGY6QWx0PgogICAgIDxyZGY6bGkgeG1sOmxhbmc9IngtZGVmYXVsdCIvPgogICAgPC9yZGY6QWx0PgogICA8L2RjOnRpdGxlPgogICA8eG1wUmlnaHRzOlVzYWdlVGVybXM+CiAgICA8cmRmOkFsdD4KICAgICA8cmRmOmxpIHhtbDpsYW5nPSJ4LWRlZmF1bHQiLz4KICAgIDwvcmRmOkFsdD4KICAgPC94bXBSaWdodHM6VXNhZ2VUZXJtcz4KICAgPElwdGM0eG1wQ29yZTpDcmVhdG9yQ29udGFjdEluZm8KICAgIElwdGM0eG1wQ29yZTpDaUFkckV4dGFkcj0iIgogICAgSXB0YzR4bXBDb3JlOkNpQWRyQ2l0eT0iIgogICAgSXB0YzR4bXBDb3JlOkNpQWRyUmVnaW9uPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lBZHJQY29kZT0iIgogICAgSXB0YzR4bXBDb3JlOkNpQWRyQ3RyeT0iIgogICAgSXB0YzR4bXBDb3JlOkNpVGVsV29yaz0iIgogICAgSXB0YzR4bXBDb3JlOkNpRW1haWxXb3JrPSIiCiAgICBJcHRjNHhtcENvcmU6Q2lVcmxXb3JrPSIiLz4KICA8L3JkZjpEZXNjcmlwdGlvbj4KIDwvcmRmOlJERj4KPC94OnhtcG1ldGE+CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAKPD94cGFja2V0IGVuZD0idyI/Pv/uAA5BZG9iZQBkwAAAAAH/2wCEAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgMDAwMDAwMDAwMBAQEBAQEBAgEBAgICAQICAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDA//AABEIACAAIAMBEQACEQEDEQH/xABvAAEAAgMBAAAAAAAAAAAAAAAKBgcABQgLAQEBAQAAAAAAAAAAAAAAAAAAAQIQAAAHAAEBBQgDAAAAAAAAAAECAwQFBgcIABESExUJIbbWN3eXGFgUFhcRAQEBAQEBAAAAAAAAAAAAAAABETFRIf/aAAwDAQACEQMRAD8AUtjeN5DKZDlUnJ5Vm8jJSOb0Z9ISD6jVh29fPXdYi3Dt48duItRdy6crqGOoocxjnOYRERERHrMkyfATv1duZNqieUV5wPEo+q5HQcnWYV6RVotLq1dstltRo5pIzEhI2ZjEhNJMmazz+O2btl0ERIQTqFOcwdy5PBr/AEmua1pW5PZ7hO3xtW1/PNdlf6iyVvVMq1is1XtT9FU0DKRtnfxJptZk6fpkbOWzlddEE1O+mUhyiJmTwLU2TG8hi8h1WTjMqzeOko7N7y+j5BjRqw0esXrSsSjho8Zu28Wmu2dNl0ynTUIYpyHKAgICAD1LJl+CyMN+SmPfS3PvdKI6s5ADj1k8d0PDud2uyd+UCSjdimHWpUWwpFUIhK1iYXM1SYmDwEk039ccMzMVyE7xQ8IpgEQOHVEd9JDGNG3/AJx44TOlvK0ssscXrFys6qayravVipyTRdYwgVBQh38y8USYtSH7pTLOAExgKUR6B9O5fJTYfpboPulL9S8opVjyPwPjzx5yWxbjsOd5ZEoZNnrgy91tUTCLKomqsSQp2jB05LIPgMcBAARSUER9nScgFx68Pqoce+a16yehcdyrWWq4sa3rSWsOmC8SlbJa0+St1Ieus3yDeUVrsMSC8QrpYEyuVnBhSJ4ZQUUojPoceqzg3BHQtVrfIGGkWlM2hvU009RgozzyRo7+pefmQZSsU37ZZxWJ3zztXOzBZVFw3RMKJyd46YNWJys438m+POuz+BbXnWqR58q0Q6idSs0c/lGgJVKU8UJCDFZOajjIicCmBdun3TdoD7QEOpeUeZTzVzTm3qfKfdrI9w/kzoUMhqFzgaRYE8q0qwQx8/rk69gaK1rMg3gHMerWmlUjWaTEzYwoHbEIYomAe8MlmT6OW/xp5i/qtyV+xum/DHV2ejPxp5i/qtyV+xum/DHTZ6OkuH2U81c15PYVZmuEcmaHGf6lRoi3WE2T6XARiFFnLLGxN2b2GSWr7ZmjWnVYeOk34uDggDYxxOIAHaEtmdH/2Q==',vU='data:image/png;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAAZAAA/+4ADkFkb2JlAGTAAAAAAf/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQECAQECAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8AAEQgAQAABAwERAAIRAQMRAf/EAGUAAQEBAAAAAAAAAAAAAAAAAAYFCgEBAQEBAAAAAAAAAAAAAAAAAgMBABAAAgECBgMAAAAAAAAAAAAAAAEU8FGRobHRAmJSohMRAAICAgMBAAAAAAAAAAAAAAABERIhUfBh4QL/2gAMAwEAAhEDEQA/ANNkjtkLHH4YRZap8RV6OlBmVx8tBV+tBlBmT2eW4pYcaQZmKmitUSsE5Tv7FsaDZBuS7aCqwyQvs71gPJtGf//Z',SW='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAC0lEQVR42mNgAAIAAAUAAen63NgAAAAASUVORK5CYII=',BU='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAWCAYAAAA4oUfxAAADA0lEQVR42rXUvU8aYRwHcIq0YLW8WLS+AOJ7CmoERCMOvByoFEUUBR5FjWLapEmTmrRJN0y6tGkNQ9X2WTs48T+4tUOb2MWhQ+NSF2PSLg5OT7/XlATPhxcNveSTy93xez1yMtnVDq1Codisqqo6ksvlLOff9VPZ/zyUSuUBsCIy105eU1NzD5N5MUkCSL7q6upXtbW1rBStVmu+1mAo7kcRwqPRaL4gMSvD1dev0+lMKBBVq9WER6/XH9bX17NS6urqPmNT27CTg22+UalUAsrc5BZHkAXiKEJ4mpqaDpubm1kpjY2Nx1g/lcJWMzhbucWR/D6C40A4UiaT6QxYKQaD4RQbpDx4JRGUkl8qbjQanUB4WltbX3Z0dLByNTQ00AIeY7vqC4UtFsut9vZ2AQhPW1tbqqenh5Wju7v7tKWlhfJgg89xvisd/AYCvV1dXaQQNLjV29vLirFaredods9sNlMecYOdnZ2GS2vv6+vTIUEICUghAwMDP2w2GysE8V/RKC3iNV6LkfunQwMOJCE8drs9Bkmn08kK+I3iaTRJC9jF9gSPx6PgFnc4HLcHBwcfAJEaGhoKif/UkZGRA5fLxaRwP9Pf3+/DdraBSmGAJ8ivKfqxQSInEpF8o6Oj8eHhYYv43O127wOTwkQevE8lGt3AFmg+NP4OZ1fJL53P57MjTwIJSY7X643hnh60giAcAZPy+/2bYjwaDcN7DEFzcL0hxhYtjB+oAoGAACQfkidwdk9MTHwDVsj4+HgGTUyj2V2gOcj7KJ1Oy7lFxQfBYFAdCoW8SELy4V5qcnLy49TU1AmwMvxCzCfE7o2NjVERGn+L/EFxuAuFZ2dnDQiwwjSQnEgkkoLszMzMGbDrQPx35NoDioZ24GE4HLbBnb+biEajRGp+fv5FLBY7AVYB53Nzc/sYkorQ1BY8Q2MxWSKRiJPLR3ZhYYFV0HE8HqdSsmQyGQOSb2lpKbuyssIqZXl5+Rh5ab7FxcUPstXVVSKVSqWy6+vrrIJ+rq2t7Uj9AVCDua3J5C8tAAAAAElFTkSuQmCC',CU='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAWCAYAAAA4oUfxAAAEQElEQVR42rWWy24aZxTHrS7bJ+m2m+6zqrroE/QBuu8DsGiVqlVUqas4qhKnkivbCXaEAQ+E+9hcDMZgwMEYDDZmGG5zYRjA1Nin5xxjqqpeDEk60tE33wzi9//OdZaWFry2t7e/8PuDy/F4spFMpo1IJBoRhLffer3ez5b+r8vpdH4qCMJPmUxW63YVMM0RjMcT0DQDTk/PIBgUI26398uPDt7a2vrc5/OJsiwjdAilUgX8/jD4fGF49+4U+n0TOh0FDg6yfbfb893HBD8KhUI1TdMQYgC6G1wuLwiCH3Z2fHjvgb29fWi3eyhsDMfHJ+DxeH/8YLDD4fgmk8now+EQFEUFjDFEowkUsA+xWBJtn/eiGMP7FDQaMgsoFsso7u1vNpvtk/eN8de5XE6ZTqcIViCXy8PRUR7y+QLeF2b7HD/LZnOQTmfh8DALl5cSDIdXKKACXq/vl4XBbrf7q1Qqpem6Ds2mzMB8Pg+FQmF2f7cnAf+IyKGII8hkjqBavYBeT8NnxyTAtkgpPXK5XK1oNIrujUMgEGALBoNzCwSC8+d39u93WIocDgqTzxfE3Nj53hIc6zUei8XAbrcDJhvGUwTak5hFzOPxwNraGgqJQCgU7ViCo/qqLLfY3Zubm6QaS+gA43loydLpNEQiEdjY2IDd3QTUak0Unx5Zgovibqnd7oCqapg8DXj92o6ZK0AqlcY/PkQh6QeNoLSGwxFYX1/nCri4aGP8JdjfPzItwVF1yTAMrmkSUKud858JggdjmEIRBw9aMnnA4LW1dVz3UHiHwZKk4LucNXg4HC4R+Pp6inCVBZTLFVhd/RPc7h10YRwTMfEfo2RbXV3F+IpY7x04O6uDLKtomvWTI/yETk7wyWSCJdPD/q1jGy3Cixcr4HA48WQixnV3ZiJ6xQsrKy85s2VZgUrlHFotBVuuzgIWgg8GA7i5uUEB13B1NQHKAV3vcx0/ffoMXr2yMxBrGN68ccDy8jPedzoqeonAKnS7fYa3Whq63Tq8OBiYc/i9ABoq3W6XW+uTJ78i8Hd4/nyF77e3Xfi+zQOHBCiKwfBuV0fh5PasdTj18tvb2zl8Or1heLlc5qkWjcbg8eOfwWb7AZxON8IoLCc8WgmuqgY+689OT/DMYnC66PQkotfrAk01yoFWq8050Gg04fy8jhAN+3gJq2OAv1OxOuoIJQH9mQd0hB9ah49GI4YTWJIkoB5PA4aScDQacw5QaIbDEYvRdYM/LgxjyKO1Xm+gEJ0/NGi1DMfZPYcTlMqNLoLfCbhmEePxFQuhfKCV4IPBkI0EXF425+5PJNKm1d5eqVar6L4adqgLjFkHT9fimN8btV5JarI1GhIbdUMyOnW9LnH8i8VTrPdzarN/WZ3jf2A7Ncn8fr+Jn0+83htOMVwDvOIEM4PBEFsoFJ5ZxMQ+YGIPwPe0F/H3od2HWH8DXX27/k9waNgAAAAASUVORK5CYII=',DU='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB8AAAAWCAYAAAA4oUfxAAAER0lEQVR42r2UbUxbdRTG95XEr2oiaExWNszYjOAciNBicSAVedkbiDIYE+sGhZUxYNNNkGZCQYYyMUAQ0xYoUHoL5WUVmGOATJi0OF5S6JSEujG9FOg7b4/33oV9mjHxmp3kybnJzf3/znn+59wdO/5D1NbKOM2tmnQVoT1fL2/k73hSwePxnmoh2rtr6ur/KquonFRptKuZmWf3PRH4Hj8/Tt+PgwsBQUFCDw8PL5lCOf9xVk7a/w7qPhOb15MZo9aeiiR6RQKiOZVPFGQKh4juXtfF/NxfMk4k9zQ0t1kry7+cKTsSTAyLYwitMILoFsUQ17JiLrGCd4qil3S5iTBolRjTtkLbJIOmrQ3KtnZoOjqh7exCi7odKjWBDqUCA+pGTF3vwg8SETSn3nGyglMHWDpzEjA52Aej6S6a2joYsFJFUFnzUNRzE5UVKg0Gb43i7swk6sVJ+D45jB1cJYwkieyjmLhxDbNzc6ipqYFEInmkoqIiRoWFhSgtLcXNoWHM3dGjPDUa374XYmcFV34UQapyEjEx2A/L8jLMZjOmpqZgMBgwMTHBZL1ez8hoNOL+4gMYfx2HNCUKV+OD2cEVJw+SLbnHMTkyALvDAbvdzshms8FqtWJ1dZXJ6+vrcFDvySULjIZxfJEkQMWR19nB61PCSGV+KqbHhuFwOhkoDVxZWcEy5YTFYmHgBEFAp9PB4XJhxnAbkvffRlncAXbw2qRQsvGTNBj1o3BSB9Pdra2twUkVQsNpF6qqqiAQCDAyMgKn241p/RgKEg6iOPpVdvCqD7hkw6XTME0asEZZS3deUlICmUyGzc1NVFdXIyQkBK2trQ+vwWrD9PgYPj0WhqIoP3bwrxOCyYaCTPxunAYdJpMJ4eHhyMvLQ2VlJQNWKBTMVdBOWG12TI2P4vzhUHwW+TI7eNnRIFL+eTYWfjMx8Pn5ecTHx8PT0xP+/v6Qy+WM9dszYKWe79z+GefiuLgQvpcdvPhQICm/nI/FP8zY2tpibJdKpeDz+YzV21NOW04XYLM7MD58E+KoN3AubA87uCT2ANlwRUIB7NiOxcVFzM7OYmNjA25qwLbXjy7ARuWRfh1EkQEQv/kSO3hhXCCpqruKWzf6MDrQj3vmhUdF0GB66mnR3dP/AfrudWolhG/5ISt0Nzv4hYh9ZHHaIXS3E+jp0OCn6zoGTE++m1o5l8tNycWsoYsqxrJEoqn6K6RyfSHierOD54T5kNl8H0izktGlUWOot4dZMbprBrrdNWW3272G+/fMqLh4FkkBO5HBZdm5mO+zLObvpizchaKUd9FQ+w2+q5CirvzyYyWvuoIzCQIk+j+PDN4uFyu4iOf9gBJoZYTsRMr+53B477OI9X0GcY9RjO/TOPaKJ04GUZ3zvK2s4Olc78YMLufPdC6HPB3CIT8MfIFMfs2LPP4PStrvRZ4IeJEUBnNI6hv1v53/N7YEiJb7B4MuAAAAAElFTkSuQmCC',IT='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA1UlEQVR42sWTLQuFQBBF55+bLP4Dk8FmsSiCYLBY7DYxCIJiERFExPveXXii8j7lgQsHZmfuGdiwIpefKIq0OziJJmEYIk1TLMvyE3Toiu/7aNsWSZJgnuevYJYOXXFdF9M0oa5rxHGs6ncwwyxruuI4DsZxVFRVpd72uB/hjJnHna7Yto1hGFbKskQQBLseYY+zbY+uWJaFvu93FEUBz/PQdZ2CNXvHHF0xTXMNbsnzXImE9bMMXTEMA03TPCXLMsWrOd23Cz7xnwW6rmt3cBLt+s94A8xzoifj/MfyAAAAAElFTkSuQmCC',TW='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAp0lEQVR42mNgGAVYQVbl9v9h6WsxcHbVjv8ENScXbf6/7+iD/79+/fmPDP78/fd/9eZr/xMLN+E3JCJj3f/PX77D8dt3H+Hsb99/AF2yDr8B4UADQJpwYaIMePrsFVDRGQwMEgeFBVEGwDDIVmQ+YQOATrxz7xH5BsTlbfg/c9Gx/+cv3vx/+eptOD574eb/ibMP/wfJE4zK1NLNWNNBSvHm/8Mw2QMAtl7wOMv7lGEAAAAASUVORK5CYII=',RW='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAqklEQVR42mNgGAVYQVbl9v9h6WsxcHbVjv8ENScXbf6/7+iD/79+/fmPDP78/fd/9eZr/xMLN+E3JCJj3f/PX77DMQPDGTj72/cfQJesw29AONCAt+8+wjHIAGQ+UQY8ffYKrBEdg8RBYUGUATAM0wjDhA0AOvHOvUfkGxCXt+H/zEXH/p+/ePP/5au34fjshZv/J84+/B8kTzAqU0s3Y00HKcWb/w/DZA8Agl3oOCRuvDUAAAAASUVORK5CYII=',KT='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAB20lEQVR42pWSTUsbURiF780kQsGtuOi24j8Q0Qjxq2o04saVoKJUCuKmNIJBqUZxoa1U8QPEj2LUATGBIrXCpESDEw0dTSkoailojajYX+DC47wzyUVBQnzh4b4Hzjkz3BnGEqMoil1RfmwqShCpIY9iZw+nSPVUN6mfcHl9nRYN6hAoIwpytzqCPzUN+7FfWPAtpWQvFoOm7SFnsz1kpkP1mRnf628Pj46gRqP4+m09JeQhL2Uoy5jf1cpXXfgXjyOiN4d3oykhz8HZH1CGrbraGF9yajqIX12mfQfHF6fgy05QlvGZipi0XAM+W5E+c5WQZCOjMTZe5rZ4C2AdKX4WlGGTpe8YGyl5afnouLMF6pDE/XsOD/VTUIayxofIHnbeWH1O2FZqEThXQUMnaYLGeyALbfVVI2u46r/4DwpGm8PSWCkCZ2Y4OaRtizUGNMmdvIWfW7ZFQeO0Z8IyUAjbbKWB8cT9RaFpNwoS2jJgR8N055Qo6Jcn3vDufFgnyw1okrv/b/jRW5HmPfn4II++FQXza7KDe/L023UYeHe+mCUJ7T/ZMsP6SZq8lBEFGxuhV1m9ZZD67ZAGi57kfXDc3HVPdt9rUEYURCKRF+6FIfCuvLQgL2Uoew8iFUt4RsLHYAAAAABJRU5ErkJggg==',AT='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAB9ElEQVR42qWRUUtaYRjHD9va6GofYHfW7CjIqOPYCJYUQQhBMAjznDQ7KpvQXW3fQMsaG7E1subgGBaZ5MpSGbkUZy7M6qIYXXbZB9jVLv75vOVhB6sN9sIP3vP8n98fXg7H3XCaWwRfE28e4f7l7HEcatD3Q14Qm3kBBN3/WpCvijWaWtq6+m3S70jkEwi60+zGgrWqSMzea4S19/mv9fU4yuUCg+400/GC6dqCz1V5+k4Dup5asLSk4OCghNPTE8bh4Q8sxxbQ/qz7TK9/9ODKAv+t27CYzAjNfUCptI10+gucThEezzC2tjbYjLLWxx0/dTrhvkY2Go13O3QGTAT9yOUyOD7eQ19fLzo7LbBaeyDLQ2xGWXAyAIPpyTY5aoHeYF4cHRvD5uYqKpXvODoqM+FPaFapFJFKrYJ2ybn417wwLru9iMejKBaz2N8vVt+/cyWU0Q7tkkMuK1GUuct3fsPubo7hfj8Mz0cZ3pAbL+a96px2aJcc9QkrKwvI5zMoFL6quN45kS6kGN5ZWZPRLjlqQSwWQTa7ocHxRoLv1Uv4Xvsgz7jqcnLUgmg0jEwmoUEK2uGYEuF8OwjXtKMuJ0ctUJQQksmYBjEwAGliAIOsRKrLyVELwuEZJBKLGux+G+wBG8RxG6RJe11OTs1P/g/n6unbjnlbJo8AAAAASUVORK5CYII=',GT='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABA0lEQVR42q2RW2rCQBiFs5RupDtIV9A+ZxGWPBWShypqbQ2JqSEjgYhgCNFa6SW06IPgOlyA+j7mJMOMFwgZ8MBh4Ge+Lz8ZRWExm9aN+WKlZtuipcWd7K5yno5LNtvdnlap5QWbE7jedZKf/yVdrNaV+vW3oGC44PnNobIBwwWNrpsPNU27KHL7eFoEDBe0bK/0a6qdgTV2MkHb8YTg9Z2UbnBnF1VZkY7rC0H2V0s3uJ8V4MNMCMBwQY+E+VDX9YsiAI+L9AahEPSDkfQrgOECMozyoWEYlYr44VgIglEsvQEYLhhGU+kNwHBB/PEtvQGY6wmSefo0mae0apPPXwoG7AFcaNoLS5mKdQAAAABJRU5ErkJggg==',CT='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABVUlEQVR42p2Q30rCUBjADwQ9QNB79CRBL9FNddMDdFXdBT1BJUbKojALGWdzuoXDLb1xEwz/xJx/MgJnGDZzfu3ryrGxbB/8bs75/Q4fh5CFoZQ/4DgewkCHBA2ldENRVPhrVPUJ0PU9wPP8aa/Xh7wowuHRMezs7nnAs1wuD+i4W5x4YoZhViVJenccBy5icTg7jwWCd+hI0uPAbVYW1s9uNZtNqFQ0iF9ehYIOupQKmwvrCynbtiGVvockcx0KOuhms8LNb5zJZNY1TXfaZgdu79JLYZgm6HrVZll2DT9v37IskBUFHlh2KQrFImDDcdw2EUWpOp1OgQq5f4GN25ZJp9OF+Rw8dPuvkC/IHvqDN5+HLWm3TZjNHB9yqewhyMGWGIbhrvPto6RpHoIcbEmr9QKTyVcksCX1egPG489IYEtqtWcYjT4igS0ZDi1IJJKRwPYHLLEg8Bujbf4AAAAASUVORK5CYII=',ET='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABW0lEQVR42mNgIBHsDQzMOJSdfWOxh0ekDAMDJ0maO3x9ta92dj78tHXr/wMhIVcn2tmlEa05MTpaq3Pi5LsXd+/+/3/y5P+vExL+b3JxeUuU5jXuEtr1rZ0Prz5+8H/BggX/10RE/F9lYfFyo7OzB1Gaz7dm3rl7qfn/lAkV/6fPXvTfyd395WpzczeCmtc5iOuANP95VvX//w6G/4eLWP+72tu/cHJ1JU7zycb0+yDN/87b/n84lfn/TAeG1652duRrnuXI4E6W5oX+Iv+J0rzJXU6bIs0XJgID63wA6ZpX1OhobpsQfOT/87n//29n/v+8joF4zSCwvt+8/+zy0J8/zrT/f7DI7n+/DcMLojWDgIe9wMu5jXb/t012/1mXrHa1z44BPaoY8RrAxc1w39KE+3thlNwGA1Xe1VDhbCgdCKVtoLQulFaCG8DDwyBmZ8mtmx8ta0pq9gYAez/LlWKmUkUAAAAASUVORK5CYII=',jU='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAABkCAYAAABw4pVUAAApxklEQVR42u1dB1hUV9PeSxFBlCJIsYACiiiisXclYu+xRI0mGisKoiJ2Y+8a7A0Ve4ldIyIgKjYUC4IgioC9dwVhYd9/zrl3l94U8uX7P+7zzLOUrfPOvFPOnLMyFF3/qktWpIIiQIquIkCKACm6igApAuRfe31NSMDTp08Rcu0aDh09Cu9tO3D46DGEhYUjKSmpCJDCuFKS5Xj9+jVu347AyVN+2LBpM6bMnI3BI13QuVcfNGrTETWaOqJyoxaoVL8ZbOo3h32TlujQozd27NoNhUJRBMi3XMyinz1/jhs3Q3H07xNYu9ELYydMQp+Bg7hynbr8hJYdf0Lzzj+h9c+/ouMgZzj1G4pWvwyHU/8RaNXfmX4eAcd+w9Ck10DUat8DFX9oCLfxE5CYmFgESHbXu/fvEXX3LvxPn8Ym762YvWARxkyYiKGjXDFwuDN+HeqM35xHYZDrOAweOxGDxk3BgLGT8bOrB7qNGIf2g1zhRIpvSkpv2H0Aanfqg2pO3WHVrAPK1v8Rhg6NoWNbB9qVa8O2VVdY1m2C+YuXFAGivBhl7N1/EJOnz8DgESPx65ChGOLsAtfxHpg8cw6Wrl6Pdd47sHLzdkxbugrDp85Fn9GT0HHIGPxI1t74p99Qp1Nf1GjbE1UcO8OycVsY1WqGElXrQq1SDcjK2kJmVBEy/fKilLGGrHw1yMrZQc2iOqq3+QkOTVvh0dPH/P28efQYsVdD8Cruwf8eIMnJyVi8zBMz583H4b998LdfAA6c8IXXnoOYu3oTRv2xCD1GTkDLPoO5pduRpVu36IQKjVrDtE4LGNiTtVepA7WKpPhyVSEzsYHMUFI+gaBV0R4WdZuhVa9fMHLidLjPnId6nXoQSHaQERgMFJ2q9QjIjhjSrReW128LDz0ruMqM4V6qEla26oYAzzV4Ehb5vwHIoSPHMHP+Qiz33oXBE2ai3W8jUbvjz6hMll6ugRO39FLVG0KblK5RqSZkFUiJZZniK5PCrSAzsBCljBW0yRtsGjqifZ8BmLl4GY6c9MXd2FgkpKSkxqHXb3F0nRd0LexEL+Gg2MKiaVtUd6iH32V6BIYRRsnKkBjDWVYSw2TaGFPMHEsatcWpxSvwKibu/ycgHz9+hLPbWAybNAs/dOxDVNMOJWzrQp1ZewU7riiZeRXITMnqjUn5hpYEgiUE8gSTGg1Qt20X9B/phvmeq3Ccsqu7sTFIQmrGpIhPwMMrNxC0dgt2/DYKC2q1hEfJShgrM0StigSGpb0ISPmq0LatjWptu6IzedhEAmOazAxjZCYEiAlcSJjHDJeVwlCZDtxLWmCFY1fynHV4cvvO/x9Arly9itY9+qDj76NRqUk7kevLS5ZbmmjHuCLUK1SFec3GaEI0M8pjCrx378Vlqilev32TGeAnzxB6+G/sGz0ZfzbugEllbEmZpUmRJbiMJOt3IcW6kQf8ROCqV5Y8TqIuKwrwLes0RZC6JcKESggSLLFDrRxmqJnCVSiDEdxrTPlzMM9h4IzWMscyeu+nFi7Hi+jY/25AfP380bBDdzgNGIGyDVqpADG0q4vxf8zBzn0HcO3GDbx+k1n5n1+9wb1zFxGwdDW8+w3HvGrNML6EpUQxOnSrx8Fg1j2ShCuTlOoumGAWKXi1RlnUsyFArMgbLavzmKJfowkc2nfDJgNbPJBZI0pmg2jBBrcFKwSqWWKzUI4/1o2ex1lg4DDvoZ/Jc9hruusyz+mG0yzmFIDn/OOAXL5yhdMOqxNYliQwSzWrjBrNWmW67yuyvqt7DmPXsHFY0qAtJhlYk0IMOb+L1q9PyjHiSnKWxJWUP1EwxXzBHFvVyuOkmgWCyepvq1nhPin8vJYNVpSuirYVa0Kd4g97/eqdf0aXmg0QqlYJkXSfCJJIJTgkkYI1ggic7fR8f9Bzu0qvJYKTPuYspWzPd9FKijmx/x2AfPj4Ab0GD6d6YRBa/DwYevYNKGbYwtC2Jg5t2YHAxWuwqccgzLFrhLHa5cjKdUn5OhL1GKmsX6kQd1LQLDUzrCbZRwo7Tcq/JlTEHbJwpsx7JFGSgpmi75I8lZH161SBUeVa3EPLN2kLhzadcEzHBjH0v3Au4v2V4LDH3SMJo+c9Q+B4E63NJs8ZzWlNfC+uHJw0nkPZmv+fa/PlOf+RLGvlBi/UpXTWse9Q2Dp24hmUmnUNNDOtRB+sOAdBtH5jyfpNMUIQrX8SKeFPtbLE8xVE6yerjiAFMmUxAJji7qRRJpPbJEzBYXS/MEm5YcVsUKkK0ZcFxS5Kk1nCcE/HFon0HC9llQkY8bFh0mPTg2PDvS2CwDlLBrBLAsdFjdGaSbqYw4zJpZgpNnQbgM/v3v/nAUmWp+D1g0cIP+EPn7lL4dWlP9wopW3avR9a9BmKRt1/hYYVC7TVYGfrgJHqZqL10wcbT9Y/WzDDWqEs9pP1M06/SdZ/lyiE8Tyz/jtprF8p4WnkNoEQRRIjMM+wwRuSL6TwJKEyNhtWRwvTamhUtjq2lq4GBf1NTv9LlrHbKvhMv7+g14nlz2uVJTjM++7TfSLo+c8QOFtZzKH3PDpNQuBKt7/L1LH9N1co/mlAvn7+gvuXQijIrce2ASMxv0YLjNetyAMu41lm/SPI+ps6tkfj/sPxY99hFNydOHWUsq2FifpW2E8AnBIsEEJZz201ogpBaf02OVo/oxqmOAbWY5LXpNCPJF/pcXKBKbqKpGwChP4GLvR3+h/439ILu1+KBN4XoQpe0W2sIAKhpLXbacC5xz2nMqLofhfJc3eTF89US02hx2ia48X9uMIDRJ4kp7QvBqFHfXB8+gKs79QPMyr9wN2VueoIKfCyN+MiUQ+zfpaC9qMir1aDH9G09++o05mCO0tFibYmlXcgSxb5OiqD9d/OYP1M+VFEG7EkzwiAt6QIZtVJkpUnq6w9s7KVorxPUi6i9BwRHKI1uo1TxafKktgglDw4mLzkjFAaPoIutgvFyFsMMJpqHBZbzq7aXHCAxH/4iLtnL8F/yWps6TsE86o3hbtOBVK6GMiY9bMsiKWFLPAOJ9phnDqaZCpx7Ari/j1EPf5k/ZEyC6zSrwyHTr3Qst9Q6Ns3ItqqivZWDuQNIhCp1i/+zLyDBd2npJA3JJ9lzPpTlZWb8r9dbLjIuYdVIa3ZckkWbPGOvDiSKCpQ0CPP1ibKUoOXTIYNJBtJvEmmCzqculhMWdGi27cD8ony/hsHj+PIpDlY07YXpleoSU9cWpV2OpP1j1IFXiZl4ELK9yDun0u364l6DpPbniXuv0VWnEo91sTLRE0lrFGrbTf8SClwlZadKcDaoZslA8SKlC8GalYbPKfHvCfFxJMyUq3ahiu/cACwpuBekW4r0PNbIVmnJuQlahL41nhPceIxpdQRZPXBpOjTgjp8BRlOkuKPkRwk2UW/b5aJwgBZKWhgJMUUxhTjtCvgZQ7FZLaA3D13CVMoR2eWL1p/yXTWzwBgmY+bsuiiN7mXpZ2U+Vwjq7kjsBy+sgqAjIH3Ln3Qv4tXQn2nzmj+ywg4dO8PoWot7DasRopngbcKKaCKZJWFbf1WJBXp+S3pdSohRbsGEis7Ib7Zz3jbYxge/TYK1yvXQJBME36CQFQkwwlStA+JL8kpmcDFj8Rfut1H99kkgbKFfh4nsKxRpK3Tf67PHyAJX75gTuWGPA64cVdjaado/RNJ+fMp5/dSY9ZfnqykIldwatqZOfNJH3itOdfG0e0tdSs0a9EWTfsOQsuWHeBpUp1nOoWnfCUASuu3hFzDDsnGDZFk3xFfHPvjdfffEdd7EMK79sClunXhZ2TIFc/kZAYAshMGyFESJSDbSGYRnY0k5mD0vqxxR97xzjMgcVeu0wMNeUU6Wt0YKzWNsZ9+DpSZ4zp9iDsCy3yyTjuzCrz3SB7QfZ+TQt7RbbyUViaRhJawQ2ip6nilUYVnPfJCsP5Ees9fCYAksn450U+ybQckOQ3Ex17OeNbfGVE9+yGkZSucs7XFKX09rvwT6QDIHYSM4itTo3gigsJoaxXR1ijBmII7S+kNEXP5Wt4BubhpJ3kHIUouNkVHD9H2Oohu2BpR1drhjnY1UnI5kkpc+Wmt/zbnfpaXW/O08xUp5RNJoqTo9GmneAsp/VRw5X0/94vWX57EAnL1qkgu0xjy2t0R33kY3v86Bk+Hj8PdXwfj6o+tcLoCFZfFNFX0c/IblZ+dl/xF4iV5yWYCZ6zAMk5GW8VxdNLcvAOyd4QHp6uhRFXLdDTwuH8dvIm8iuh9OxExbznC2/+KW5rWHJhoUv4jkpcEwHuim3hBTA0Ll/fTcr8FB0DOYoBuLSRX6wh5p2H4MngyXo6cgpghLrjV9SdcqlMbASZlqLoXMvB/wQCQFSB/k2xOQ1tzGW3JTHkpMM+uGZISk3IHhFWSnk068Z7MEHKvvQYyvF04Siz6Xj/G06AAPD9+Cm+WbsYHWyey/vI840mWArBcyoQKR/mWnPv5rbot5GZNIK/XC0m93PB55HS8mDAbMaPHI7RbD5yzs4Ovjg5X/okMMcBX+vlkhr8VBjg7KKAzL9lCspZoTElbLmpGWdJWJkA+vn6LKcZ2vI3tLBjhnIUMn0/sBFJSoPj8Afj8Dnh8H4proZAfPYOEDkMIFAuJLgoSgEoq609kYOjXRXKNrpB3HYV4l5n4MGk+Ho+fisgBg3ClWQuctqgAX81iKgCU9OMrgSF6BFmunj7OVrDABduquGBXDUE2NggwN4dfCV3+GJ8CpC+WcR0UUoM7A2WioKfKtg55zMwdkNjga5RNiZW1u4Yewmvr4uud6wTGRyjevgBeP4Pi1ROkPIuF/HYE5OdvIKG/B/cU0Yq/x/rLi9mPBll/2eaQN+6HpP4TET9rFd4tXoPH0+YgrG9/XLC3h5+BfjrrT2/hMlVgDjAtg5Du3RGzZi3eh97E1zevIU+RI0ViA3nSVyS8f4fPsbF4dfECopd74nqf3jhnbc1BOZHHzCpb2iJAtkiAbCVZIGhx2mIlxAzLOvjy4VPOgFzYsF0q+kwxW0sTD3s6IOnVM8hfPkPKy8dQPH8APIkBHt2D4uEdJN+PhDw0EvFDpyFB3UpScF6svwKBWI4XW0kGdSH/oSuSe49B0vhF+DRvNZ7PXoLoUWNxvWMnBNlWhp+OdhbZT2YlKK38YqOGeLDVGwnv3qo+W2L8Z3y8F4X310Lw/vo1fIyNRmJCfNbzYJT6M4DCx7ghsHz57wJmp5QCc9qiSt5FKM1pawSFhZtHfHIGZK+zB8+whpFbrS0hw+vpvyLpPVnVkzgRiCfRwMMocqVIIDqcKsgbSIkJQ3JMHBJIoWJ6mTntTOTUQyBoVkNSueZIbt4f8iHTkLhkEz6t347ni1cgaqQrLjdqjNNlKPhKxdeJPNOHeF9/M1PEERDKEYev798jbuMGXHT8kZ7XBH5Ea75K+tLWQaBlRVz/5Rc89/FBsjRmmrEjm/DqJSImT4FfqVL8cfmlrcMEgpK2mIwXSvJsiyVOAcvWZg9IsjwZi+u05otBQ6kiP2ymji9HNiHpxWMkPbgLPIiCIi4SiphwKKJDgagbwO0QkksEyn0kMgUT8qL1MwCskWhUH0l1foK83wQkTV+BeE9vvPHcgLgpMxD2cz9crFULAQYGKuv/tuxHfCyjpk9xYjdVnpKMuwvmI6BsWcp2Up839blTg7vydc/XqYMnRw4jJQuPeXPjBvyNjfPtJbxIzACIu5T+st5f8Pa/sgfkJVm5e3EL3nNhLfLL9cog6dZ5JMVFQX6fvOF+GHnFLSju3YQiijKE21eAWxehCCdAroVBvvkgEmp2Iuv/BXKXuZCv3on4rQfxeq034iZNx7X2HXDGwgKnimkUSPGlBIMpPHTIYNW87pfnzxFMr/W3yrvy9jzK93RrxAgkxadS2ae4WARSzeLzDe/RTwrsykyL3Y6RGZCOxfT3jv+57AG5dewUL+1Zs3CcWnGEdaiOxOgwJEbdRHLUdfIICu6RIVBEEBDhwVCEXgBunIXi+hkkn7+MpONn8XHrATyd74k7Q0bgapOmCDQxha8gpLPSgkwvuQJdRqmsmoFx/ocf+N+/7XVEgIM7kWGlKJDw4gWCyHN8vvE9+0sForLRuI68hc2AsUUrN3VzPLoZnj0gV3celJZPTTBbVxeHTIvh74mzgLjbSAmXQAi7RMgREDfPcyAQEgAEn0Iy/c7yf18tre+kn/yBEdy6DWXkYl9InpiIYCcnCYzve94Ij/F80PtS48b5fj5lk/E0Pc5PAmKpTAOe6tq8haJcsBpf0hpvHj/LHpBIvzO8pe5C7jSpuD6uVVXHIiNzhG6jOiTqKnkDudf1sySBBARJsD9w6RQUF/6GIvgknnuvo1pA85uzkfwIoyJWP3yKiVG9/6jZs7h1f8/z8vdenNjBbTQuNWqUZ89gIASw9yQZ425GT2ra8DIph921a8G/QysctbXCEioOR/KhCAPMsq5PmV9C9oA8CLnJF5NYi91NwxCRPxTHg551sbp2U7wOIgBukEdc9QOunAIuk1z0geL838DZo1Cc3g+EnsONPn2+20LzIkxRD3fuTOX5Bw/gX7JUPmJGDiIIaYrDnLxAxr2A3R7mdYY6Vhc3wFoLaxxxbIorvdsT7TfF6Zo22G+sh+1qAhYJxXgdwpYzVjp2y7kwfHE/Fu7alnwJ1kXdGME2anj2Yxnc7PgD9vT7HfFXyDsunSCPIAk6DpwjIM4cAgIOAH77AP+9eBd4CqdNzQrVS5iyLtStT1mhXJWiRk2f9t3ekVcvOC15wS6S9bLiWGdUFjtq1oRvmxa42rklwhzr4rptBZzTFWsnL2n1MLWfZcaXt7f2G5EzIB/fKNsmRnxK71zlYrhbTYanbcwQ1r0xzi30RNIlX/KIg0DgQfKKA1D4U9p2ai9wcicUR7cgmeJK5JSpheglojIe7tqROlhBlfaZ8uUK3AhEAMRYwF73EM+U1LC8mB5WlbfGgeZNEPxzB0R0a4FbdargspkhAtTVVT0yMXNLX6nPEEoQXZnxWu+Qey6tExbE5ldrTg/Qp8LQBL5WWoipSQGuKhWIbcvhrnNv3Np7EIn+5BH++6A4tQcKH6KNE9uBY1uAI15QkLwhevPXNygUL2Ef9Iy1Fb5+/KB638+OHfuOrCpzVnRa8gLmcTt5U1ALqwzN4W3vgBPMC7q2QnjrBgitUQlB+iVVKXPGApYBekxI7fgyQKZSUajsZQUsXZt7L2tt616c34YSIIctiiO2lgyRNWR4UJ3u2qUiHi6fi4j9h5DiQxZ6Yitw3Js8YxMUhzcCB9cBuzyReOM8Vb/9C4VCmOIZPaVLRjw8vtkj09KQ0gs2UCxYoqGHlcwLHJvhYs+2uNWpGcIa2iO4nDFOa2qkaVjKcgT3SNqlXJIJvLkoxpCQPYdyB2Qb8RrrZQ2hB+0qq4M4CZBY8pQUJgPr4e7uHYikgKo4QiAc3gDFoXVQ7F8Dxb5VBMgyyE/swKO9+1Qd1oKkK2aFr8+eSfeer7Zrl686QfQCEYjjJDvo51UUCzz1zOBV3QFHnVrgSncn3OnYBGG1K+Niab1svSAnYXR3SIohDBAGzDhepbOi0ABRgedzB+TgmGl85J4tTm001cUDAuQOARLNwKgjg4J+lk/siVv7DyNqEwFygEDYtxLYsxwKAgPbFyNly3zER91GUFW7gsl60qSkp03MkPDuXepuXArs5+1r5AhI2ljgJ02GrKO6YJGaHv40r4R9FAsu9G6HsG6OCG/qgGsVzRCopalqVPp+T1GYpkrfQL+7CYa8KByrURZPw+/kDojvXE9pzMcMK41KcsrigDgIkBMg+IFAqa2OhC0LELJtL2LXExi7l0CxYzG510LAex7x3lQkhl7CrREjCzS4M+VcbtwkXfMviWLJmfIVMgGvTEmVXrCd/raCvGBJSVOstbXHQafmCO7eGne6NENkAztcNjX8Ji/IDZC9EiDePBYJ0tKGMSboWePd0+e5A3Jx4w6eko0gQBbpl+JBnQFyt4aAr3UEoK7oJSntzPD5750IWuGFh2sYGHOh2DwHik2UOaydgqRj2xBHtOZT0G2SX39L934T375FoLEJVyDzgkBJmQfo5zUyTcyTlcJik4rY1aQRgnq2R3jP1oh0rI3r1mVxRkdL5QUnCyHeMc/cLUsddFghqPP9Ksq1kITPX3IHJPTwCd6nZ+shs3T1cc+BgmgNEZT42jIREJJkCvIpk3rg3ckDCFzgiZerZgGbZkCxfjqwZjKSN87C6/Pn4KdTosCyLR7Qp0zJMM8qR5CpKY7yLEYNnuQFC0uYYKVNdex3bIFLFJDvdGuJKKKiK+WM4Cfkb6Tne2W7BAjLsJaRgYhr6npYUtsJKVkcXpAJkOigYL58y8r7ydqGPKDflQD5VFtQAaIg6pI3LQlsnoUXf23FqT8W4o3nVPKOScBKD6QsdUX8jcvE7zULzPqYIp+sWaNas4i9EQ7fRaswX9cEi00rYHujRjjdvQ3Cejohqk093LSzQFApHdUy7sl/AID0MU/gnqEEZJ5QnAPCRkrXtuubt6mTx2F3eMBhO1LdtQwRRp7AvIQB854DIoiASNSVNLQ5sPdPRG/eAN8JM/BlmTuwfAxS5g2BPNgf13r0/mbaSpuSBkgp6anBo3Bo6kJ4NmqNhaYW2GZvh+AebRHTtw3uEhVdKVcG/mpCntLS78n28vLefYRUQLYJ4owvA4RlsTsHuuUNkHdPnsGjlBUPPK4apXHNTk0FyNsfMgBCFJbcqDiSSfnYsQC316zEKTcPJLAplTkDkeK7HZFTp+UrsCsLs0BBTJl3Ew2toIxoFlnVgjIVsbFqVZxs3QTRf7jhKxWneB6NsK4d87m6mD/l+6ZZK+HGpaWVJ0BOZKjSJ6mKQm0cnzo/b4B8+fgJ08s68KHqkWrGuFBFHfclQF5mBIQkhf4nH1gfij8J8S2zcWHeQviPHA3FrAGUCi9D3IYNuQKiDMYB0gjmZgJhKcWCmcXKYJFlVexs1hQXerZDdA9HfGCx6sOzdEutt11dCiybS6t8vo5Ogfi0eVkEO7bEbRdXPNq1C1d79MBJIS8rheknTtxVEyclELRmS94AkVOQXFC9OV/NGk60FWCtwTMtBsizmmliSJpYktxUB8mzBgHkKcmUZQVMnYXzQwZSPJmAF0cOSpQly7I9cZJ7gToFY038QcnEHEMLbKhdF6e6tkZY33a417kpwutUwQVjfV75h491z/QhHm71LgBARCACy5bFVScnRLi74+H2bXh7/Tri375Rgf/or7/4mk9uVMhHgGSpNcgmPrloIC3dlsItSp7yPLnIBuVG8g3zZXDMshiv0hkgjx2yAIQJ/V/+eyMo5g0DZvRHwvo/cMDZA1fHOOPT+QD4axZL06oWcIR7gToWybTwh4YR5pWrgu2NG+Fcj3a4P6AjYjs2wk3bCpmKM3Z7vUfPzAfXRETAr1ixb6YqX8kbQgcORNKXz6lFZ4YBQiaXGjbMU0wUVwpTh+Q2CGJRyIfkZEaIuXgl74B4df2Vrxyyan2nGWufCByQOAchMxhKL2leEslTegNTKXuY+jM+rJyOv4aMwbnFK+Cnb8BHYVhKyrxgpn55rK1ZGz6dnBDatz1iurcQizMzQ/gLQpaj/qq2e81aSE5JPznO0sfgVj/mO3nwlcDw19NDzPr1kLN1lfv3ucdd+bkXold4ZprqvNwgb4CwbQt70lTpa/j4jzGv0sdpVcCLu9F5B2TPkHE8E2CArDPW5YCwtDeGAEnJChAWS6iiT/6tHoHRBxjfFZj0E96smIaltRwxXl0fc8xt4E0f5nLfTogb3AWxREU3qpRPV5zlttzL/h9QSg9fnj7JPLG/cUO+m5kcEO3iuOXqinuLl+B8nbrwLV6cG8QRktvOzpkACW7cOM8eslPKsFimtZxi0Ui2k5hi8yRjO3x6/TbvgBydPI+3h1n7ZJlhKU5ZYvuEqKlONrTFvKRVaaSM7wLFuE6AaxsCpRviZozG9T4dENPLEVHNHHi31F9dLdeBt5x4/vnx45m32718Ic5z5Xf9W0OTz2plfD+8KzDo90yvc9XRMc+euD1NDbJE0OS1HSsKF5KR5mt/SKDneml60QzzyCLvUzBn1fpd8pDE7ABhXkIZWMrgxsCYDoBLKyiGNUHK2UO4UrduurGf70lL+QDC6Kxz+KjJk7+h5Z/1++Hx6ufemV7jWseOuQLiJ3mfcn+IOEJajC9MsVDANsfmawdVyK6DvF/P2ifTdAw4EGL7REBCToAwL+lkAYVLa2B4C2BgPSQGHcW5+o0LrErmHd/y5ZGQxUE0X1+8RGAlqwJ5LaZ0pvyM1/WevfIECCsKtwipNchsQVtaKdTB7qHj8gfIHb+z3LUYIBOKl0aEvRpvn0QSIJ9r5wBIHQKkoRZSfm8IDGkCxS8OSDqzH8E/tinQtgVfwvXOOo9/THRWEKuHTOlXWjpmev7QAb/mmmKLQ9ZqBIagAmQaVekugrhSeGL6ovwB8iAklJ9EwOaHxmqWRmi11Gr94w/ZA6Kq3rtbA4MaQtHLFgr/nQjp1K1Au77ikEM9PuSQ1RUxYcJ3r1by16hXP9Ocb+Ro1zwBcjxNUegtsG0IpXhRyCgraO3W/AHy6n4cxmtbiO0TdSNcqarBA3pq+yQXQFqWgmJATSi6VQRObML1Xn0LFBCllzzatTvLD8XS4FAXFwmUbxv/ZO83qIYDUtKcTPcxKgoXGzbI1tuVA3LivhC11JVCgQ1YiyuFbCNU6JGT+QPk0+s3mGRkK02fmOBsZU0K7BRMCZBXtWQ5A0K0lVJfHYqelaHoVA6Kg6txbcCgAgeEKeW0hSU+P36U9SGbzFOmTcVJdfVMnYLclogZ2JdatMDbkBDxnK7YWIS5usBPTy/Lz+GnAlHg6zBsSXiTkNoy2UjeMkYwVE0s3r90NX+AsGm62db1pbOp2PRJsZzbJ1l4SUo7U6C9GZJ3LcTNYc4FDojSS65S4E3O4fCDF2fO4jxRj08W29p8s2gcBtnb48H27RzQpIR4RE6eAv/Spbm3ZbUnnQ3VHRHEhagtUqvES5b+4ICN9HdXwUjqoFvg5b18HhzAXH5JbXFbAgPkiIWWqn3yyEGWqcGYJSDNdKFoXRqKTdPJusYWCiBKrr893iPHU3aSExPx9OhR3Bz4G87aV4e/YWn4aZeAv25JBJqb85HR8DFj8CLgtAjE16+47+mJQCurNKl6em9gGzr3p6k1vGSydFsOtkjB3EvGphWLU0Avwxu2k42q4svbd/k/yWFtuz7SSWmm2F22OOKk4pBPn+QGCJN6RFvNSgCr3BHhManQBueUfaibvw/Jcldrpp1R8iR8efEc76Pv4+ODB0hMM9/19d173Jk+jafVSiD80oDAaovDrAIXUrcWZAWCuFNKHXMEXYodpXlD0U1aB1lUu1W6uJRnQPYMH6/aGr3JRBwHYoCwVnxy3TzQFptQaaAGLHWmDzmjkOd9pW1szVvgFVFUfq6klGS8OHsWoYOHIMC4jIqaVJTEMiZ2VAYv9DKDoKQlb6mBuIQKwKmCHtwEY153sFOA2PYDtgbiqmWM6wePf9vhM77zPKX2iSlWGumq2ie5FYfpACEQFbN+QeTc+YU+d6ukL7ZOcbVTRzzathXxz55lii/MNr+8fI5nx44jgmjqHFGYT5rNnUogfNJQ0uZsvMFbOsdkpaCJmeQN7oIRT21duZjwM8LYSJWHfiXsGDIacVdvfPuJcuc3bJOOWjXBYv1SfD4rqoY0xVhT4LSVKyh0X8XELri3ZOk/MhGfcYHptJExryVY4L/R/SdcadceF+vUQUCZMhmWeMVlAV9pgWwPV3ZqgN6ShTesl6ljMVn9ZH4WVhkOBPMGF+mQTlfykMUNW8P/zzV4Hffw+89cDD3qS2Do8tx5jAZbOdTkXqIE5VktoqN6uQBiT0/v2gqxy1f8Y4BkXHpNu/fcJ8MWutQALeO7nLZJEyKbsokNrPJeLtPCDKKksaxGk7xhND82VjyqdmrZ6vhr7BTcDw5BSkGeSvruxWtMNbfnmRY/86S4AcKqq/MCkYESkYciMYXug6GN8XDN6kLLsr6l6PPndQwb8xSwS2pvZEtJfMBNAwuILSbKSnMDFUEw5ZtumDe4FTPDilbdEeS1DR+evyq8c3vZ0X3O0hF9rBW/RF/s/LK+VpQkX3LobSkIvJTfauPRxg3/UUDSBuij0sKRdzbpqrfkDZvovn9SgJ5G3jCGU5IIxCiuC13eAplhVQfHZyzCo7CIf+5ka585f3JXdKNYwibit5tr8xSYUxdRUnSNHFryBIiiTzU88t6cj2q5YEFQVtCHlBV0LunqGkpX51GA9hCMuDcwIEZL6xhMD+NLWWJdl18QsvcQvrz/+J85+92773B+pNBo3j5m6+zFeRqsBCXOIZsgz9os3Svi6c5thTCekzMQvtLa/W5pWC07Stqq3H5AxdtUYgOxqaoM0EbSIc4GWNygDT9r8mUhf0tCngD58vY95lZvygMXs5gxmkYIrqqJGIfUIP+CBfksVhHRwQwvd3sXqoek9QZ2tgibON+axhs2ZxMbVss0qXgriXF8AFqZrornurMMc4KRDbb2H4ZwH/9vCtCFetT4s6j7mGhsw3dXsZXEqTpsqlFNFeQZKG8yzm0xQJwM8GKnF9UHGgUOSPoALe52yipApwVivaCGhYIOJgmGRMNKbzCV0lUduKqVgadjFx6g32XYsvyvAUTZJ7q27yhfSRzNA5spPA1L4X6t1NnfKKKvL2njCRvObq6Dl9vWwbeYToEAkr6CFtNVbyF7EJTp6goK0DO5NyiLN3PuDcoAPbWcPXaPGIuYyyH4T175Pkj52PRFfPKOBfnhPMiXQEwtQQVKuiDP9pM0UMMb7xXwLaH3XYCoKmhS/n4hdao8u9gg7sfQxAIK0BMpFojzUOaqdHUopavssP91XfoheNd+fMqh4fevBoR5y4bOA3j+zQIfOyr2ZCWtdEXjAynIMy9hwHzYvAx++qW/6eAWP+lAydQWd/b9JGW6yoq3P1TpqhgbxABdgnv4LJu6ODRhBh7fuo1/2/VNR41/ePkas6s2lIK8GcZRkL9aVYM3HsXMS+DrJhwQoq33Xovgb2SSZ0D807S49zFFC7JcArRyc05JeMiMVMWbK09XpQBtaI0t/YYh9JgPP5/+33p989nvj8i63EtZ8mDIdlvNKmFAQKipNvhEEHXxIE+B/fPGBfA3K58jIEpvOEnecFgQa4bNQs7e4EUBepmgjak8QJumSVdL83SVLbDNr9kEfotX4e3jp/hvuL7rMP6Q3Qe5l4jB0QwrKMiz6ca0QT6eJHHDXPiVr5gJkHQVNG/qCbyptymHLGkz3zFbDHPpdcfLUrurrJ80gp9BX4IH6J1D3PguV3lSMv6bru/+uooD7jN50TiGj9mbYl85HVXRyMdPq8jwcc1MBFpXUQGStoJmE+LbhaxBUHVXBbYurU7eoIPJ0vF4IhCm/MBnnq5SLbGkcVucXe+Nz2/e4r/1+m5AklNSsL7rL5wieAZDebyvFOQZIJGVKfOaMxpnbatLQwRSBS2kNvU255iuamEWBWj3NN1VV+4Nutw7WT/pAAXouCvXoMB//1UgX+jy4eUrTLOoyRXEVsncixnjhp0Gn1SJIkDCJw/E4Wr2fDx/q7TOkB0l8VYGFZGLyBsmCKWlfpK51E/SF/tq2mWxwqkbQv46jPhPn/H/6Sqwb9iJvnAF4/Qq8CDPKvk5ugaIoGzrHlHWHY9fsLtGLf6dGtkB4UUes5wC9AxBH+NUlCQuf4rfyGaAeQ5NcXzGAjyJuIP/r1eBfuVR8I79nEpYgGWnmq4sXQqxtuQlE/pjX70GKnpSUhIbRl4rULoqlIIH3zthKgHBjlAVu6vuJS0pXR2OSP+z2U4qFgGSw7Vv1CSpaDTl7ZWDpkRd/RtjT42aqklwLwrQfwolMJ3S1THcG0zTdFdL8I0tSxq2QYDn2ly/s6kIkNyCPFnx6na9xcyHFO2mYYxDZlrYoalB3lAMcyhAj5e8ITVAlxSLN+PK2OPsgZhgCtAK/E9ehfK1eW8ePaUg78Db2IyC3AmA6TKlN6TtJ1G6rEX1y4/dcMFrB94/e4H/9avQvsfw3vnLlA2Zc8WLdGTGh7fFc1R0MZ0AOzx5Np6ER6Do+gcAYdelrXsxWtuUewKjJPZ1pBu69UfIngN5+tbLIkAK4Xp0KxJnVq3H+U3b8Tw6JlPnuOj6hwEpuooAKQKk6CoCpAiQoqsIkP/J6/8AzzdfEc1VK9IAAAAASUVORK5CYII=',KU='data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIwAAABLCAYAAACiLW8yAAAn4klEQVR42u19B1hUVxctMdEkRn+Nv0aNRqMmxgoKImWAoQqKgooFsSs2sDeUiB2jMXZR7CJ2RSyh2EBUem9SRMTeGwiIhfX2vswhIwETk7z38uOc79vfuXNn5sLcs+7aa+/T1NQqeenRo4e8RYsWX6mpiqq8q2hpaWnu3r3b+9WrV1i1atV6xenP7OzsdKiuprpDqvJW8fT09AWVe/fuIT09/dHs2bNn7dmzx/fNmzfo1atXb/5MgwYN6hED6dJhFdUd+x8qOjo6/+nUqZOxnp7e5//QJT+ytLScee3ataI7d+7g7t27yM3NxePHj/HgwQOcO3cufuzYsWMCAwNDioqKoKGh0Za/9MMPPzTT1NT8TtUi//Kira0tJxdylyyQgDOC6ob/wGW/joqKuscAuXnz5lvG5/Ly8vDo0SPJTpw4cXbSpEljUlNTbxAbXafvfsIXMDIy+v7bb7+trWqhf5/eqEs2lewsWQ5ZJJkXPe2uZKbEQI3f53pyudxw27Ztu4hd3ty6dUtimGfPnkng4GMGDZ8XxuefP3+Ohw8fSi5s6dKlqydMmDCZzueSG9svrmtiYqJRt27dmqoW+/cApzoxTDeq15AFk2UygAg0x8hW0nvjO3bsqEcupJFMJqtZkfY4cuTIedYvDI7bt2+joKAAxcXFYP3CIphfP336VGIaBgi7LWUA8XvswhhAOTk5ec7OzuOmTZs2k9zXyxUrVixV/JmPCcjfCzZSlf/PRV1d/QsChwaBxJ6ZhoDjS8chVIcrzJfOd6dz7nS8gMHUvn1789q1a3ewtbXdmJCQ8CojI4MbXAIIg6Wi8uLFCwkkDB4GjHBdfMxgYvfFxgBKTk6+279//97r16/fRAAqtLKysuT/t169ejXatWtXX9Vy/5LCgpi1DZkOAaUXAWQwh85U29HrZVQvJvNs0aLF+EaNGu0aNGhQ0fTp0zFy5Eg4OTlh3rx5WLBgAdauXYudO3fi6NGjCAsLw+XLlyVAifL69WvJPT158uQtAHHNbCX0DwOMRbSfn9+5YcOG9WUdRCL7Lkde/P9y7keV//n3l08INJ09PDx2k+AtjoiIgL+/P3bv3o2DBw+CdA2WLVsGeh8///wzKNRG3759sXz5cuzYsQMnT57E9evXwZETF3ZjhYWFkv4R+kZEXXzMQGLQCBfHtnr16o02NjbWoaGhCcRGqcJttm7duuHXX39dXdVEf6MYGxt/QizRl6zJP3TJj318fMLY/dy/f1+yigozCYMhJSUFxAwICQnBqVOnJPZxdXXF1q1bpe8LV8bgefnypQQOBhADhhmHQcO1ABFrH36fgcSvXVxcpvbq1as7Ae0eXXOL+EdbtmxZV4WA9yydO3f+L4ElniyRRS2ZlULM/tVS3cHBYTlHR6IRuZEZHCx22fhYWFldw6/5/NmzZ7Fp0ybcuHEDFGpLxgAQhcHD12LtI9wXMxADjP+u+NvMRvw9Nv4MJxA5aTh58uSp9PruwIEDHcQ/rnJff65UIZDoEmCWkF0kyyI7Qm7FlgRvm7/CPNWqVWtPDZPPDcbhsjJY/sgEkJRLZmYmoqOjQSIa7OK4Fp8RABMm3Bf/XQEeoX24Zsbh9wULEaNFm5mZGRKjLSR3dpfCdpn4GXXq1PmPCh5/kO0lkBgRWGaSBRBY/Kg+ToDqR8cGxEbNFOzzkQBb2Wt069bNytfX9zg/zQwYZgARTr8PcJRNfJ/t4sWLGDBggKSBzp8//5bWKcte/JoBxOBgADFomHHYhCtjAc3MxP8vf+7QoUMBlpaWJqS3jpMYv0IRn0gact/XxyqUVFDatGlTTVtbuy2BpQdZb9Y5VA+jcx3ItOn1dALTGI6aCEiW9HnDmjVr1iVxe5MZ4PTp00hKSpK0CbsMNnZNyi5INLJyQ78LOPQF6XuXLl1CyLlzkkieMmUKgoKCpOuXvaa4rgArgys/P18CB7MPA0c5+hIJRCGe+XNz5syZxwxE+uri4cOHD4j707x581oqAP0xiGp06NChNiftCDytCSy1CDTNCT9mxEx2tWrV0rSzs9vKT//27dtx5MgRzJ07Vwqd3d3dcebMGUlLsB5hocvuQZkRhIupiGUkV0PfZ9Zi8D1/nkfRlzcGDxqI8c5OCAsNJUGcX0ZaF5cCsSz7MIBE9wQDqGz4zgwpQneu6b2Xffr06WtoaCgjl5u5fv36NaV9IKro668VEo6mdLOLGQxM9yLk5YbIzs6WamYIFrUxMTESM3Dj8ZPPWoUbpizTcMnOuQ7/4DD4kXEdGBKOoNBoXIxJxM79Ppg4YxYGDR6CqdNnwNvbG9HxSci4chUPCQzlMc8fuS+RoWYWYjApC2h+nz9HoLlvYWEhGz58+FD6XVmcTFTWhpWucTmDy66G3c8/cT3y/dbk+/1ZEzAwGAQifFaOgkQD8nkRQTFQOE/DoFFuXD5+8OAhVu46gp7uW9FhxmqoT1sF/dnrYDHPUzo3ZNUejFq/HwPmr4PVqKnQtewBSzsHOLotx5QV2+B97KTEThWxV3kA4v+L/3/+v/j3KLsvASAGD7/HNQP/6NGjQZwZJ1ZdmJaWFvctlcrWb7SCLI37iQg8I+m4xV+9Vo0aNb6iJ+4Zs4lI5zPlV6RL3qdk3LiF8Su9UH34AtQZ6w750q3QnOuBtrNWo8W0X9Bk0s9oNGEpGk/+BY2mrED9cYvxzaDJaOo4B02c3KFB763YeYicE4lnut77RGvK+odBwezC7MkmWEccM6NyOoE/w2Bbu3btZro1n1WqpB2BRZ2AspCjIjo+TcdOnPrn3uv3HBvz30mTJnnxTRPpe2W6VwYOS9dbFxOQuPYAkj2OIHXzMbLjSPcKQLp3IDL2nETmgTPI8glGzvHzCDsQCOeVO9BgyCyMnLMCTy8k4G5oPG5ciEVOWDwuX4xFemgcki7EIJYsLCSaRHEUAk+HwmD2aqgNcIWV62rkZGbjVUGhQtngvUN95d/DOor1j0gOKkdg/MAwozGIGjZs2LSy9hPV4WEMHP1wNER1T6oHkY1iocvRkbq6upTY6tu3b7nRQZMmTczpZr1hyhZRi3A/wh1wQz28lA2vGt3gqdYZW9T0sVXNUGFG9NoAm9VkZAaSbaX319exxuifPNHOeS4szIdh2ReG8KxqBu+PLLCjahd4VbPCrs+7wfsLa+ytbYv9/+2FA3V7w69BH0y1nAA1xwVoPvVneMjH4mCzvgidsha5N++VuMs/cFNlwV42+hK/iyMqEa7zwxIYGHjZ3t7ejROZH4R4JV/clBN3xDzmBJYGPOSBwueWnIfhEXEK0HykEHdVTE1Ne2zZsuXU1atXERkZCe6l5j4h8dQJMcslYvw6Aosmovv0R5K2E+Ka2iOu5SDEfT8Ysd8PQsx3AxX1IEQ1d0Bck35YNXweNBdugmE/F2xp3R3jWhphxzfWuPB1X1xo2BfnyYIb2OHsV71xpl4vnKnbC+cIPN6aw/GF4zzUnPATVnYZD79qFtikpofdje2QufckipW6Kd4nN6T8eQYNM46Irtgl0cPV54OPgNhFMVAEWBT9UFVr167dNCkp6TFHQWycUGPxyv1C69atk/qIGERXr+Vg3769WFTHCsfVdVB0LQyPEi4hu88cZBJIMtVH4LLGSGR1GEW1o8JG4lqrwVhLLKG7ehd6OszC9fbD4d/BHls69oSHpi2OduyPVI3huKExCtnie3QNvs71dsOx3sIZH49fgiXO7rjWdpgEyIPVLAk4RvCzno778RklghzF72SW8nJF4hy7IOGWmG2WLVv2sypPU3FpsGTJkhOKXIXEJlBoBL6RIjp6+foVjjguxmK19vCbN4ne45C3CPfDYvDYZi4etxuNx5rjyJzwiOpHHcdK9kxjDE73c8OqcUsRK6fvdRiL3I7OeEjvZXYcidOaA7FW0wYeBKBUTUfco+/f03LG3Y7j8ER9NCKNJqDhyAWYO2we7mqUgDGNQBfcsA+2kdvb/p+uiF60A4VPc99im4pYp6w2Y1MOxVn40wPzWClL/L9dyKX0V0RIrf6pa7Zr164fh5hitJxylCHRNumY/EdPsL++PXybGaIgKwKv8ghMuQ+R9+gWXgTF4LnuZOR1dEKepjPytBTWabxUv9AYh9cdnPCi0wTkaU+Qzj2nzxWQFWlNQGKnEdiu1RtnOw3C9U5jUdBpovTd51rjkU+WozsR97XpWHsiAWksLquPJBZyRFLrYThaw5pcpD4OtR2Kaycj3upN/zNCmF/zbxd9Z6RfMvv37z+r0jAM9xcpRsudY+BQ7cwDoSoSs3/UeUnirr+fn99FFnsMGE6AiRvJ+Qw21goJ6w5hA2mXOJcJKH7+AMUPb5PdJBV8A8i7j4IJ6/Gs+TDkth+rsDHIVSeGoTpPOi55nUvgkUxdcU5jLAo7EHDIntP5BxqjiYGckEtAyiWw5GqOp/fH4bl0zlmqnxIL3ewwhtzgSGQS40Q2c8Cej8xIaBvjzKAFeJx5/Z2RlPIDwb+XXZEiQnzVqFEjk0rpR7iviENqAsxhsn0kbFfRa8f27dt/+d13333KGuWPrlG3bt2WBJJiznzyUAQOMZWBwvkLKZVPt/+U/SJ4VdVE7MRhyM+6DNzLxpvbV/DmVibe3LmGonXHkN9/CQoGL0fBoJ9RMGApCun1tb7kSvrMR1HvRSjotRD5PRcg32Y+8nvMQ7713BLr6oZ8qznI7+KKgi4/It+CrAu9NndFvhmZyawSM3ZBvuls5BvOIOaZQG7NGdnq5KbUHZHe3hGn6tkRaPSwr7k9nt24KzHju1wSA4bDazEWh8LsYmdn58mVXr8QOD5TMM9sHp9LALLkyIgjJQ65hZX93meffdbEw8MjhBNVTMsMnFLNQoDhp08ar0Lux0dnPPbV7YxMlx64dSIAuJuF1zmpeHMtFUWpccic7oo0p0nIGD8V6c5TJMsgSxs3GZfGTkTMmIlUT0YG2eUx9LnRk5A+muuJSHecgAxHqoeOQ/rgsUgbOFqqM4Y4IXPY+JKabTDZiAlI7zkUqfo2uGRgi1SyaL3uCOncFed1u+JYSzNiQh2k7wks1WLvipBEzzyzDJ+Li4vL+WDCaS6cd+GORh0dnfqK0PoHApAh1QM4xOakHncncCckfbyeubn5Wh8fH1BYLXU08piV9PR0SQBLwwru3kFWRiZ2fzMQR3/QR85sPeRsWYkXmSl4kxWH15mxeHM1EakjRiOsgw4idA3JjBCpJ0eUvolUR9LrYB1DhNB7Z8n8yaJkJojWN0a4jgFC1TshvJMe4mz7IHWMM1LHjkdCv4GINDBBmIY2wrX0ECkzRoS+HBFURxqZIlJuTmaGKGNzRJtYIIzOBegZUtRlSJpGFwm/7CsFTHlCV7xmVyT0y4kTJ5Lp4RupNATkgy4ilOanp0qtWrW+JHE30N/fP/HChQtg0LCtWbNGCq1J10gASkpNwaljJ7Dxs244SQ2dNUMbD38ZikfhF/A6jcRvykUUZ8fihocHIrQNEGVEDSi3IOuiqC1Kziksil6HGFsikBo8gEAUb2KJ7HmLkBcbjxe37+A5gTPvUhoKrl3H88zLuLP/IC6NcpbAF0GfF9ePoWu8ZXTuDIHzuJaR5JbCp2+skGGEMbOybmN2vXr16vM6deroVqqugH+qo5EL6RxddjciPc5PGOsVkZPIysqShjFk5WQjxj8IHlXMEWxpgIyZMjz70RB3jmxDflwoXiecxeuUc3h27gyiDBkUFqWNyrWyMYi4cePJTmrLcLRnX1zcsxdpOVeRvXUHkvo4UMMT0Og6cd16IWPKTDxPL8mzPI2KQcqIMYjQ0i/3bzAYg4i1ftWRU7itj3MDf6owWhKCl90RM6miJ/vVmDFjnCqbyA3k/iLO2v7d69HT1HbHjh2RDBThfpiaOXnHiTs2zvhmXstG2JbD2EIRSEQ/Ga7PMkC+qwz526bhTvB5vIz0w6toP1wNPI5Is24lTFIOWH5jHgtEdDZA8oAheH3vPu7euInAQcMwu50GvInB4hkwBAgGTUQnmXS9u4d9S7QV6aqrP69ClJ6x4poWCjOXgHZOZopfyf3trGKAAPOZUqRUUbKOTdHhKD0g/Do0NDRDrbJMrGPRSjrkRwJMEGmSUIW47f13ZgxYWFhMY0ZhwHDCivuR0tLSJA3DNY99Sb92BUFzN0n9RfEjDHDDxRAFbnK8WN4bD4MC8OS0L96EHcajsLMItbJFlIFZqTuKLQc0UQam0vt5qZckEFxxnYdo0j5+hqbwNjB+y42x+4pkHaQrR+HVHLx88hSX3RaQLjIuAZX8N6ZhwJwnwPgR6LyqG8BXfTRevnpZbn+T6MEW014YOIcPH47v0aOHU6UTIorpsJ05jCbARClmMZ7gzkY6J2Ox+2f0zNChQweQwM0QN01MgWVWYaDwyLpkckmp2ZnwG7EEOz4yQIqzDDcZMHNNUDDfFIWBW3Hz2FG8CtqFF3EXENejjwSIWGq8M0ZmOEIgYG0RQ43KzMGNG66ph1u79khgeRQUQmJXXzofayQAJoCgMLpeXPfeuL5hExJ62ZMA1i8FVbRxFwl8wiVdILD6k/D1/tIA+xoPQGFu3u+6DER0xPpF9B0Rm+ZWrVpV40PoH6rDg34IMOM4pCbArOdJ+GQbOKHHsweo1uLOSB4krqur+239+vW/atWqlbGYuiHmAonC51m7MGASk5KQmJEKH4vp2F1ThvSpMtyZTU/7PFPk/2iAl14zcc/vCO4d2IoX0UGI6dqLIpsSkESQHSPAMEucJfD4UMQTTRojkRr/FXc5FBcjdbSz5J6UGUU6livcl7FFCeCojqRoKkrfWMEmJQCJYXDx9wyJ1ejvntExIg1jiG2f6OOE4aQS1/Pmdbn6hTPaoneaXPFLe3t7hw+yg5HH6RJgrMnGkk3jkFoxFcWRtM9OEs4DmzVrNmjJkiX3OSriCWc8jpdnNXJkxJ2OHCXxMMyo6CjEJydiX7vR8PlWhiwXGe67EmDmmyF/jiEKVw3Ci1O7kLPbC7khJxFrbk0NaiY1MFu8wk7TOTc9Gfy0dBA3d2EJMikyYTcSqWcqWYSuGcJ0TBHW2QShnU0RqmOOMF0LhLLpdUGoviXCDLoiTG6NMOPuCDe1QbiZLSIseiKyqx2iuvfDOate5IpMsFGN/o679zvzMGLkHRuXo0ePXlQF0m9HWTWUB1U5ODis5icsPDwcHFYfOnQI+/fvx759+3Ds2DEpvD7sewS+Bw9jZ92+pA0IMLP08XiOCQoXmCOfdEzBEhu88v0Fj3y3IXmZJ0K1zHChE5m2Bc53IutshRCdrlR3w7nOPbBf0xKz7R2wYf4iHBo1E2d1bRFqQpGSJbka28GIsR+OuMEjkThyFJJHj0bKGLZRSHEcieThw5A0eDASHQYicYADEvv1R2J/sr79kEwW1as3gqy7Yk89OXbUtMajrGu/6x5Q7g4QvdPskry8vMKJgftUlob+hCOkv9hXVF6p7ujoOJwigjTOPzAlly0cbvOQhrCoSPjt3Ietn1giwMoASdP08dTNBA/czJDHbmmhJV56u+H18dVImemKyN6DEDNgGGIdhiKeIp+EwWxDkTBoCJIGDkLqiBF4GBGC8/7HMYUa/EB3a/j37Y3wPnZIseuN5N69kGhriwTr7kjo2g3xlt0QZ2aJGJMS1xNNrieKhK2yRZJFk3Y51dkQxzQNKJrTw6mebhWG1AwYdsFCv8TExNziLEOlSdZx3xCv9aKYlGb4d4Ejk8lsRIaT+4/Km90o5g9diApH4PJtFCGZIMbBoCSkJqA8cTNF3lxTFBHT5CwfhZz9K5Az50ckkOuJt7BCrBnnW8xLtAY3MhlHOixeUVgyee2Wz1H4aGhjjrYedlAoHEeNzhFWJNeG5mUSgIokoJFyuP5bcjCCPh+gZwSfNkZSz3XaDr+33FHZTC//ZjEgPCcnJ5eiRbNK5U54lBxPPONORgLPFl4wiCep/ZV51I0aNdIjnZItZgfw01YWMDwsk98PjgzF0fHLsI1C6gRHGa7PNCiJkJhdqGbxe3upA67vW4X4gSPgTw0fI0U7Fr9ldhWNHEmCNcHOHq8VsxEeBZxCjLaBFFGJEPk3cHSRoiMWxJw9jiD2YGPQ/T4R2AUXOJym6GhPPSPsrN4dT6/fLs3BlO0KYBMrRzBouHh7e/tX2k5Gck/6nI8h81aMi/HgaIjPK/qK/rDjbM6cObtEWKk8nKHsExl7KQn7bGbA6xMDpDrr4xaH1PNMJLBI5maMohX9UeCzAVHdeuNXAkUoRUReMmMEUR0qhdMWEog4nxLXww6vFAO0cuPipXR/jIIlShmDQ2ViGQZX1txFyJzthvSJ05DmNBmpjk5v5V6Enabr/NrZCFur6OOk7Zy3EnZl2UXoFzHZbceOHReJxbt9EEJW4a6suWdaMU9pmiKsdlEsA1K9Q4cO33KHI2uhWrVqNbexsRlK+uS2uGHlLeMhyoPcJ/DSdMTe2jJkTNXDbQJM4VuAKUngPfJaS41oKTFLJDXmOXJBZ8jm6Rlgtb6RBJxEeh1nbInCnGsl7oKAE2fdqzSRJ7EKg4HYInnoKDzwD8TTyGgUXL1W+v9cXbZC6shUzhyH099kd3T4Bzk2ERNmH7vwu5F3yuNfRKKS3VJwcHAm3cbGah9qUTDQNwSejryyJvda88g8XV1d86ZNm/JU2G0cCS1cuJAXLsSiRYukhYF4EtqBAwcQGxsrjQ/hqIlv6ss3r3FysDu2V9FDymgZcmbKJO0iuSS2OUYoWjMAt9asIJchL026xSiyvMHEMgcJEAEElkUEnpNaenhyyOc3APy8EhGaeiVAUXIxJeG5BcLaaeHmlu3SZwuuZJcIXdZE4u/QZ0PonD8BxruWIfbW74eCx8/KHd+rPBxTrARx5cqVJ126dDFVxdDllyo//PCD1cWLF6/zJHsWtZz+T05OlroCOKzmFaRYDPOiQAya6LhY7PxlHRZXN8ZhQwOkUJR0Y6acxK5ZCWBcZSjaPh7Z7ssIMEalDS9EaSy9TiQQRJD4XUFMM7GjFjZT5PSMQCmxzMNHiLftK+kU5d5tSdOQ8flHwSHSZ+8f9yNw6b/9OXZHesY40YnckZoMQQPdy2UXccxjfETuhRmWy+bNmw9Upm4AXo+u9T95TRcXFy/uAuCbVt5Ch8rn+HOPcp/ioN1srKqqi412uoidKMPDH0n4zmXA6OPFLhckjygZfsA90W9rjBJNwjolid0HmZe2Pla7zEZAcBAKqSFZy8R2tZWYhvuI2EVxtCSJXTJmFi7cNRBBDPXbNYmB6HNSdNRKTtGRDFmHgkoBU1bo8rGYJ67QMMVeXl6hrP8qDWDox0zh1aU41c9zjP7O6lI8Cn7KlCkziFHuMVg4pPwz83ekRYFOh2ODmhwnDQyR5aKHnOmGeDHfBM9+lOGWxyzEdOmJGAptY6WxKV3eYgnlyIcjonj6XKSJFYLXb0CRAphFDx7i+npPJA0ajlhLG8Tb9EHaxKm4R6H3mxdFEmhSho8ujZKka9HfClZER141yR016of8h49/NyxTGTxCv3D3R0BAQArdlq/UKttgKdYgZJPI9irG787jlS9ZzKq9xyoDtra2jmLvAM6/cD/Sn5kAJmVGi15gn+Zo7PpChksT9AkwMjyfa4zCBSaIXzwNFwxJS7BmkUbBESiMfx8ql7CPIgoiNkq0sMaNdRvx/FIa3hSWTIHlPqa8lEt4fP4iHgSews3N23BptDNiTOi7spI+KnHdSLJTFJUd0zSSJreFTlpXbleAMnBYv4gVHVJSUm5T0NC+UosQRcTD86c3kx1QhNa/iNW+xXTY8kqzZs0siF3uc96FbxqHl8rTYN+5GBCV2IMB8KAo5KwxscxMPdyniOnlsm64vdQN4bomksA9RY14gmoeqhBmxPqFdIyxUuJNuSbxKgZDxdv2QfKAoUi2H4KEnn0RY2qFcHJHYeSmQqm+SMDgnuhgfVPSLCY4SUwTQNFSgMwIh1rIsZnY7/qZ6AoBI4YziLnTQr+4ubmt+mAUrGKJMg3FPKWJvDAz1WsVU09GKdbitSPr2rhxY96yxmj8+PHRvOJTYmJi6YYTHBUVFxe/vYwPvRZLerDxccHLF9ir4QjvLwyQPplYZoouitYOIBflgggdueRu2BKISTbJ5HCjqGivgTHCCCAJkgspiYBilASrlKUlzXKRAHCOgBFEdrazIU7pGJWCgpOBPGTBj7SKPwlnrn+liOx4Rzl828ix8zMD7G/igMK85+XOEhCA4d8pRteR6H+9fPnygObNmxt80GEQTy9RjMzT5G4EAlU3YhYbYqaB8+bNi1q3bt3rFStWYOXKlVIPNdtPP/0k1SQAeRARfH19pRvLtM1DNpVL5IZDxDL6CLU1xJVpnfBo7QhcchwnjYBjYRujAAaD5ldikOl6MvxIwPElUIRzut/QQmKKs8QSp3WNcZK+F6Anl8JifwEIXUMpCXdCywjHO8hxtI0xfFoY4+DXxthXxxi7PzPCTjUDaSGADeSKVqtp4/y8Tb8Tu2UFL+sWMbPT29v7PN2uL9VU2/aUX8aNG+cixrpw2MxZXjEJXYwL4TG8zDwcWvPihQwsXrCZhz/wUAem8gcPKeRuORgH6xni8mQtXPllDOJs7KUxMBHkWsIIFOfZdZDe4OGSDIxjxBCrdGRw09XDYl19HCeAnCT7lceuaJNpmeC4ugmOtDDFofqm2FtDjl1VDLGD3N8Winw4+tlAxx5qJthY0xqbv7PHVnMn7Hd2x7kN+xAXGIKnz3NL1oKpYHkP0R0g/Qb6/VFRUZmtW7duqkJGBaVz585D0tLScsVNY/0iFtvhuqxLEvsHsEi8cuWKNAQiNDQUWTdycGrpNqzgUfl2Bsje+CNOGlpKAAggtvDXl5e6Dj5m9gjoROBQN4bXD3I4f6ePmS1k2F5Pjj1V5RJTcP5kEy8LQsdrqpjCo74NdmiNwD7bGTg+cTmCVu1ClM9JpEfG42bONTzOe4oCvIJyQuBNcXG5uRfxmn9LWf0yY8YMdxUyKi6f7t27N5LZhG9c2cWaK/L75QEpNTkZ7g26Yn4bGQ5NHAk/0hOniCX8OxCbtGGmMIFPIzMcrGOCPdUIKCRIt6sZSWOCWZyu/NwcvzTqge1tB2OP5ST4OC7CycWbcGHfcSSER+HGrRvIe1mIlxWsaFVczvq+5S08XZF+oQjx9Zo1a041bNhQSwWLcso333zzNT1Nrjk5OfnKKyyJkPnPLJladtHmM1NWYy1ph1Wf6mNOPR1Mq6WNX4gpdqqZEjgs4PmRBTbV6oEtrQdiW9cJODBhCYI27EW8/zlkJaTg7q3beFqQhxdSEh/lJg8rmh5S3spY5YFHuRabhLHI37ZtWyDdli/UVJPVyi/u7u5buBFED61YFFnM9uObyC6qLIDKu/EixL5FrsFTbyg8G/TAVp2RWD90JuY7TsaCAU7Ys3QdsuKScf/OXTx5/ux37gMVAOTvAONdbMNsKtbx5SEb5F7TeKtBFTIqKFZWVjOuXr36ggUvRz580wRoxAKIoueak3k82o59/rsW4eFy894dZF+7ityiAokl2FKvZGLNxvXYuHkT0jMzf8cYZe3XX3+VdktR7iEvmxt6F9O8eofIFQ+A6A4Qv5XL6NGjZ6qQUXGp6+npGXLp0qWnMpnMlW7WLrHhg9izseyejiIbygDiGy40j/LKlMqCU6wXJxqcOzR59So3Nzepg7MscLhwBEbhPmxsbDBt2jSpx5wHnzPb8d8rO+TiXVYRMykPZ+DfRA/Oy4ULFx5p3LixugoWFZeq1atX79SgQQNjPq5WrZp6SEjIzWPHjqXK5fIZHh4eoXxTGRxiXyPRQSc0D4OHAcbvM4BEY5TVQMo7nHCj83AJHlTOuR4O1TnbyoBiBtPU1JRmKfAy9TxjoWtXEtLz54MiOhw/fhy7du3i/h5u5FLgVOSC3uWexHAGdr0rV648olayMoNKv7xHqV67dm1jXipekezrw4J4586d4b17915CbiKLwcM3WrgxsSmW2NNRsZaKFH0I91VWqCr3evNuJgwaBgYDhr/P7MK7uXXq1ElKHPbr1w8jRoxAq1atJOCoq6tLdevWrWFvby8tDFDeYK+KllctO7uRfw+5v4uqXW7/AZdF7NP1008/5ZHzVUjzzCIgFLu6uvpYWFgsIffyjMNxTvbxUyrWtRVr+wv3JZaZF5tYKFvpCD7F+r/cwLa2tpg6dSratWsnjb8xMjKCpaUllixZgrZt20rujAszDi9Fwqt6MjhdXFzg4OAgsZfovihvwwyhX5S3zuFibW1tr2ryfzJh8+mnzSmK6McROYefc+fOPUgNXTRy5EjPcePG7aKb/5rBweARWWLlyEs5+irrvoRb4Yblz2zYsEECC7tBCv8lFho1ahS+/PJLCYScfWYmEpqGz/EWggw0PT29UqBwhppHEvLfVE5IivV3GSyk4fJIv/jUq1fve1Ur/9/0X9WrdyQA8SQv3jLmG9IWMRkZGc8YQNR4Z0TkJdyYsngWU1H5PeG+hIAuG1YzOLjBmVl4Q1IuXHfr1u2tscbcdcFsxKJZgKVFixbo0qULHB0d3+o05f9N7Jswffp0T7WSpeBV+uX/YalWt25dObFBFz6uWrWqNu/eRtHN9R49eiwmtogX+xWxQBYNJgS0WEtOGUDlbQUoQMQzMHnbHdF7PmzYMMlFRUVFlX6OQcJRFrMes5HY4ZaBKUQ7/z3eeKPSLKX6P1xqtmnTpl/Tpk15IPUnGhoaI4htXnt5eUUOGTJkXWRk5H2x6RWzhxDOypuDMjsJjSQ2xCgbugvdw+5o+PDhkhjmMJyjKDs7Oykc521zZDJZKbjE6lLCJXEhjdRP1WT/rtLo+++/d6DQvS0zED39a5lF1q5dG0zHO5mN2EUp6x8BILFMPQOM2Uc5+1wWQHwNHqTO03lZBxkbG4PcpjTzQbCTWEmLQUrRWKG7u7vP559/3ljVRP+u8pGyRqhRo0Y73iyDDnkoQa0VK1YEciZ5woQJe2fMmHFURFgMICFQxYqWDCQhoLnxK3JffO7cuXNS1KSc5BP7RDLTTJkyhXdfq6rSL/9jAKpfv76poaHhOA7lyVpTQ9+4cuXK80mTJnmT/okVmWduZJFwU96aTwhoZfel3KMuACWGYzJgFAOmjtPf/kLVHP/b5TPSPnakgfpy+F6rVi2L7OzsorS0tKezZ88+EBwcfF3smMYuquzG6Pya2ams+2IAMWMpg4yBpKOjY6K65f/77FNFiYH+q62tPapVq1bdOZrX09ObxADw8fG55OTk5J2UlPSMASIEtPK2fKL7gtmHTWgjPkffe0Lub0f16tUbqm555QPQx0oJxO+6d+8++6uvvuLNy/9Dje7NTOHp6Rm2ePHiwJycnJdi43MGkQCOSCTyMeuloUOHLlIr2bdapV8+EAaSCi+6TGGxCx3ykrONKTo6z0KY6tDt27fHihyP2NtRDBRbtWrVJrXKspSqqrxX+ViJgT7m2RC8bCwdf02mFR8f/5jdlKur61FfX9/LYhtltiZNmrRV3T4V+3yiBKDqcrl8orm5Oe9EUqdly5aDmV1SUlKezpw5cyufU90yVSlP/wid8nXXrl3d1NXVB9Dx5yr9oip/VFj7VFX7F05U+z/5u5GdgQAEIQAAAABJRU5ErkJggg==',QU='dblclick',xS='decodificadores os menores pre?os',BR='dena@example.com',LQ='derbvktqsr',ER='derbvktqsr@example.com',HP='dialogBottom',JP='dialogContent',GP='dialogMiddle',FP='dialogTop',ZV='display',dP='div',zR='elba@example.com',HO='em',wR='emerson@example.com',UR='emilio@example.com',iS='equipe_virtual@example.com',WU='error',IO='ex',BW='false',vO='fixed',RU='focus',mW='fontSize',zQ='foo@example.com',cR='fpnztbwag',XR='fpnztbwag@example.com',VQ='ftsgeolbx',OR='ftsgeolbx@example.com',ON='function',MS='funny',nS='fw: Here it comes',GS='fwd: St0kkMarrkett Picks Watch special pr news releaser',KS='fwd: Watcher TopNews',IR='gailh@example.com',VR='geneva@example.com',fV='gwt-Anchor',jV='gwt-Button',mV='gwt-CheckBox',IP='gwt-DecoratedPopupPanel',wV='gwt-DecoratorPanel',LP='gwt-DialogBox',zV='gwt-HTML',QV='gwt-Image',AP='gwt-PopupPanel',EP='gwt-PopupPanelGlass',gW='gwt-SplitLayoutPanel',hW='gwt-SplitLayoutPanel-HDragger',iW='gwt-SplitLayoutPanel-VDragger',jW='gwt-StackLayoutPanel',lW='gwt-StackLayoutPanelContent',kW='gwt-StackLayoutPanelHeader',sW='gwt-Tree',KW='gwt-TreeItem',OW='gwt-TreeItem-selected',YN='gwt-uid-',RO='head',xR='healy@example.com',lP='height',ZR='heriberto@example.com',mR='hhh',fS='hhh@example.com',_N='hidden',pW='hideFocus',uR='hollie@example.com',_U='html',lR='huang',eS='huang@example.com',oQ='id',LO='in',gO='inline',hO='inline-block',XW='input',QT='javascript:;',hQ='john@example.com',gS='kent@example.com',SP='keydown',SU='keypress',TU='keyup',oV='label',PO='language',fP='left',UU='load',VU='losecapture',TR='louise_kelchner@example.com',bQ='ludwig@example.com',PW='marginLeft',tR='mark@example.com',AQ='markboland05',JW='middle',RR='mildred@example.com',NO='mm',ZO='moduleStartup',TO='mousedown',UO='mousemove',VO='mouseout',WO='mouseover',XO='mouseup',XU='mousewheel',LN='must be positive',hS='newman@example.com',eO='none',xQ='normal',LW='nowrap',pP='offsetHeight',qP='offsetWidth',RT='older >',$O='onModuleLoadStart',JR='orville@example.com',oW='outline',ZN='overflow',MW='padding',wW='paddingLeft',DR='parker@example.com',$U='paste',KO='pc',BP='popupContent',eP='position',KR='post_master@example.com',JO='pt',FO='px',VV='px ',tU='px no-repeat;float:left;margin-right:4px;}.MIB{white-space:nowrap;}.MFB{font-style:italic;}',pU='px no-repeat;float:left;padding-right:1em;}.MMB{text-align:right;}',IU='px no-repeat;float:left;}',HU='px no-repeat;float:left;}.MK{height:',GU='px no-repeat;float:left;}.MO{height:',MU='px no-repeat;position:absolute;}',FU='px repeat-x;background-color:#b4b6bc;cursor:pointer;text-shadow:rgba(255,255,255,1) 0 1px 1px;font-size:1.2em;font-weight:bold;color:#000;padding:0.7em 0.5em 0 0.6em;border-top:1px solid #888;}.ML{height:',yU='px repeat-x;background-color:#d3d6dd;table-layout:fixed;width:100%;height:100%;}.MH td{font-weight:bold;text-shadow:#fff 0 2px 2px;padding:2px 0 1px 10px;border-top:1px solid #999;border-bottom:1px solid #999;}.MJ{table-layout:fixed;width:100%;}.MJ td{border-top:1px solid #fff;border-bottom:1px solid #fff;padding:2px 0 2px 10px;}',oU='px -',cW='px)',bW='px, ',TV='px; background: url(',SV='px; height: ',mU='px;overflow:hidden;background:url("',lU='px;width:',MQ='qetlyxxogg',FR='qetlyxxogg@example.com',LR='rchilders@example.com',vS='re: Make sure your special pr news released',yS='re: Our Pick',JS='re: You have to heard this',NS='re: You need to review this',aW='rect(',DP='rect(0px, 0px, 0px, 0px)',dW='rect(auto, auto, auto, auto)',tO='relative',ZP='rene@example.com',WR='residence_oper@example.com',dQ='richard@example.com',iP='right',tW='role',VN='rtl',nO='scroll',UW='scrollWidth',nV='span',YO='startup',sO='static',OO='style',qV='table',JV='tagName',rV='tbody',xV='td',cS='terry@example.com',YW='text',QO='text/css',dR='tiger',YR='tiger@example.com',gP='top',sV='tr',uW='tree',vW='treeitem',qW='true',VW='url(',XQ='user18411',QR='user18411@example.com',UQ='user31065',NR='user31065@example.com',pV='value must not be null',IW='verticalAlign',CP='visibility',mO='visible',oS='voce ganho um vale presente Boticario',wQ='whiteSpace',kP='width',RV='width: ',rR='wishesundmore',jS='wishesundmore@example.com',nP='zIndex',eW='zoom';
--></script>
<script><!--
var _;_=O.prototype={};_.eQ=S;_.hC=T;_.tM=LM;_.tI=1;_=N.prototype=new O;_.Y=bb;_.Z=cb;_.$=db;_.tI=3;_.h=-1;_.i=false;_.j=-1;_.k=false;var U=null,V=null;_=gb.prototype=new O;_.ab=ob;_.tI=4;_.c=false;_.d=0;var hb;_=fb.prototype=new gb;_.bb=rb;_.tI=5;_=Cb.prototype=new O;_.tI=6;_=Bb.prototype=new Cb;_.tI=7;_=Ab.prototype=new Bb;_.tI=8;_=zb.prototype=new Ab;_.tI=9;_.b=null;_=hc.prototype=new O;_.tI=0;var mc=0,nc=0;_=xc.prototype=new hc;_.tI=0;_.d=false;_.g=false;var yc;_=Kc.prototype=new O;_.cb=Nc;_.tI=0;_.b=null;_=Oc.prototype=new O;_.cb=Rc;_.tI=0;_.b=null;_=be.prototype=new O;_.tI=0;_=ye.prototype=new be;_.tI=0;_=xe.prototype=new ye;_.tI=0;_=Me.prototype=new xe;_.tI=0;_=Sf.prototype=new O;_.eQ=Uf;_.hC=Vf;_.tI=10;_.b=0;_=Rf.prototype=new Sf;_.tI=11;_=Xf.prototype=new Rf;_.eb=_f;_.tI=12;_=ag.prototype=new Rf;_.eb=eg;_.tI=13;_=fg.prototype=new Rf;_.eb=ig;_.tI=14;_=jg.prototype=new Rf;_.eb=mg;_.tI=15;_=og.prototype=new Sf;_.tI=16;_=qg.prototype=new og;_.eb=ug;_.tI=17;_=vg.prototype=new og;_.eb=zg;_.tI=18;_=Ag.prototype=new og;_.eb=Dg;_.tI=19;_=Eg.prototype=new og;_.eb=Ig;_.tI=20;_=Jg.prototype=new Sf;_.tI=21;_=Lg.prototype=new Jg;_.eb=Og;_.tI=22;_=Pg.prototype=new Jg;_.eb=Tg;_.tI=23;_=Ug.prototype=new Jg;_.eb=Yg;_.tI=24;_=Zg.prototype=new Jg;_.eb=ah;_.tI=25;_=bh.prototype=new Sf;_.tI=26;var ch,dh,eh,fh;_=hh.prototype=new bh;_.fb=lh;_.tI=27;_=mh.prototype=new bh;_.fb=ph;_.tI=28;_=qh.prototype=new bh;_.fb=th;_.tI=29;_=uh.prototype=new bh;_.fb=xh;_.tI=30;_=yh.prototype=new bh;_.fb=Bh;_.tI=31;_=Ch.prototype=new bh;_.fb=Fh;_.tI=32;_=Gh.prototype=new bh;_.fb=Jh;_.tI=33;_=Kh.prototype=new bh;_.fb=Nh;_.tI=34;_=Oh.prototype=new bh;_.fb=Rh;_.tI=35;_=Sh.prototype=new Sf;_.tI=36;var Th,Uh;_=Wh.prototype=new Sh;_.eb=Zh;_.tI=37;_=$h.prototype=new Sh;_.eb=bi;_.tI=38;var di,ei=false,fi,gi,hi;_=ni.prototype=new O;_.db=pi;_.tI=0;_=qi.prototype=new O;_.tI=0;_.b=null;var ri;_=Ai.prototype=new O;_.ib=Ei;_.tI=0;_.f=false;_.g=null;_=zi.prototype=new Ai;_.hb=Ki;_.tI=0;_.b=null;_.c=null;var Fi=null;_=yi.prototype=new zi;_.gb=Pi;_.jb=Qi;_.tI=0;var Li;_=Ti.prototype=new O;_.hC=Xi;_.tI=0;_.d=0;var Ui=0;_=Si.prototype=new Ti;_.tI=39;_.b=null;_.c=null;_=sj.prototype=new zi;_.tI=0;_=rj.prototype=new sj;_.gb=Cj;_.jb=Dj;_.tI=0;var yj;_=Fj.prototype=new sj;_.gb=Kj;_.jb=Lj;_.tI=0;var Gj;_=Nj.prototype=new sj;_.gb=Rj;_.jb=Sj;_.tI=0;var Oj;_=Uj.prototype=new sj;_.gb=Yj;_.jb=Zj;_.tI=0;var Vj;_=_j.prototype=new sj;_.gb=ek;_.jb=fk;_.tI=0;var ak;_=hk.prototype=new O;_.tI=0;_.b=null;_=tk.prototype=new Ai;_.gb=xk;_.hb=zk;_.tI=0;var uk=null;_=Hk.prototype=new Ai;_.gb=Mk;_.hb=Ok;_.tI=0;_.b=0;var Ik=null;_=Uk.prototype=new Ai;_.gb=Xk;_.hb=Zk;_.tI=0;var Vk=null;_=al.prototype=new O;_.tI=0;_.b=null;_.c=null;_.d=null;_=fl.prototype=new O;_.nb=sl;_.tI=0;_.b=null;_.c=0;_.d=false;_.e=null;_.f=null;_=tl.prototype=new O;_.db=wl;_.tI=40;_.b=null;_.c=null;_.d=null;_=xl.prototype=new O;_.db=Al;_.tI=41;_.b=null;_.c=null;_.d=null;_=Cl.prototype=new O;_.tI=0;_=Ql.prototype=new O;_.tI=0;_.aC=null;_.length=0;_.qI=0;var bm,cm;var im=[{},{},{1:1,27:1,28:1,29:1},{12:1},{42:1},{42:1},{27:1,34:1},{27:1,34:1},{3:1,27:1,34:1},{3:1,27:1,34:1},{27:1,29:1,30:1},{13:1,14:1,27:1,29:1,30:1},{13:1,14:1,27:1,29:1,30:1},{13:1,14:1,27:1,29:1,30:1},{13:1,14:1,27:1,29:1,30:1},{13:1,14:1,27:1,29:1,30:1},{14:1,15:1,27:1,29:1,30:1},{14:1,15:1,27:1,29:1,30:1},{14:1,15:1,27:1,29:1,30:1},{14:1,15:1,27:1,29:1,30:1},{14:1,15:1,27:1,29:1,30:1},{14:1,16:1,27:1,29:1,30:1},{14:1,16:1,27:1,29:1,30:1},{14:1,16:1,27:1,29:1,30:1},{14:1,16:1,27:1,29:1,30:1},{14:1,16:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{17:1,27:1,29:1,30:1},{14:1,18:1,27:1,29:1,30:1},{14:1,18:1,27:1,29:1,30:1},{14:1,18:1,27:1,29:1,30:1},{5:1},{10:1},{10:1},{12:1},{20:1,27:1,29:1,30:1},{37:1},{25:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{4:1,36:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{4:1,36:1},{21:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,44:1},{19:1,22:1,25:1,26:1,44:1},{39:1},{19:1,22:1,25:1,26:1,44:1},{4:1,36:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{4:1,36:1},{4:1,36:1},{19:1,22:1,25:1,26:1,44:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{4:1,36:1},{4:1,36:1},{3:1,27:1,34:1},{42:1},{42:1},{7:1,36:1},{19:1},{19:1},{19:1},{19:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{3:1,27:1,34:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1,48:1},{8:1,36:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{6:1,36:1},{19:1,22:1,25:1,26:1,44:1,48:1},{23:1,27:1,29:1,30:1},{38:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1,48:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1,44:1,48:1},{8:1,36:1},{36:1,41:1},{9:1,36:1},{24:1,27:1,29:1,30:1},{12:1},{40:1},{19:1,22:1,25:1,26:1,44:1,48:1},{8:1,36:1},{19:1,22:1,25:1,26:1,45:1,48:1},{7:1,36:1},{19:1,22:1,25:1,26:1,45:1,48:1},{19:1,22:1,25:1,26:1,44:1,48:1},{19:1,22:1,25:1,26:1,44:1,48:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1},{40:1},{19:1,22:1,25:1,26:1},{19:1,22:1,25:1,26:1,44:1,48:1},{4:1,36:1},{19:1,22:1,25:1,26:1},{46:1},{19:1,22:1,25:1,26:1,48:1},{25:1,47:1},{25:1,47:1},{12:1},{40:1},{3:1,27:1,34:1},{3:1,27:1,34:1},{27:1,34:1},{27:1,34:1},{27:1,29:1,49:1},{3:1,27:1,34:1},{27:1,32:1},{3:1,27:1,34:1},{3:1,27:1,34:1},{3:1,27:1,34:1},{27:1,29:1,31:1,32:1},{3:1,27:1,34:1},{27:1,33:1},{28:1},{3:1,27:1,34:1},{52:1},{52:1},{50:1},{50:1},{50:1},{52:1},{11:1,27:1},{27:1,51:1},{27:1,52:1},{50:1},{3:1,27:1,34:1},{27:1},{2:1,27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1,35:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1},{27:1,43:1},{27:1}];_=$m.prototype=new O;_.tI=0;_.b=null;_.e=null;_=jn.prototype=new N;_.Y=nn;_.Z=on;_._=pn;_.tI=42;_.b=null;_.c=null;_=qn.prototype=new Sf;_.tI=43;var rn;_=vn.prototype=new O;_.tI=44;_.b=0;_.c=null;_.d=null;_.e=null;_.g=0;_.h=null;_.i=0;_.j=null;_.k=0;_.l=null;_.m=false;_.n=false;_.o=false;_.p=false;_.q=true;_.r=false;_.s=true;_.t=true;_.u=true;_.v=false;_.w=false;_.z=false;_.A=0;_.B=0;_.C=0;_.D=0;_.E=0;_.F=0;_.G=0;_.I=0;_.J=null;_.K=0;_.M=0;_.O=0;_.Q=0;_.R=null;_.S=0;_.T=null;_.U=null;_.W=0;_.X=null;_=Fn.prototype=new O;_.tI=0;_.b=null;var Gn=null;_=Tn.prototype=new O;_.tI=0;_.b=0;_.c=0;_.d=0;_.e=null;_.f=0;_=bo.prototype=new O;_.ob=oo;_.pb=po;_.qb=qo;_.rb=ro;_.sb=vo;_.tI=45;_.J=null;_=ao.prototype=new bo;_.tb=Jo;_.ub=Ko;_.nb=Lo;_.vb=Mo;_.wb=No;_.xb=Oo;_.yb=Po;_.zb=Qo;_.Ab=Ro;_.Bb=So;_.tI=46;_.E=false;_.F=0;_.G=null;_.H=null;_.I=null;_=_n.prototype=new ao;_.tb=Vo;_.ub=Wo;_.zb=Xo;_.Ab=Yo;_.tI=47;_=$n.prototype=new _n;_.Db=ep;_.Eb=fp;_.Fb=gp;_.Cb=hp;_.Gb=ip;_.tI=48;_.D=null;_=Zn.prototype=new $n;_.Db=Fp;_.ob=Gp;_.pb=Hp;_.qb=Ip;_.Hb=Jp;_.Ib=Kp;_.Ab=Lp;_.rb=Mp;_.Gb=Np;_.sb=Op;_.tI=49;_.l=false;_.m=false;_.n=null;_.o=null;_.p=null;_.r=null;_.s=false;_.t=false;_.u=-1;_.v=false;_.w=null;_.z=false;_.B=false;_.C=-1;_=Yn.prototype=new Zn;_.tb=Up;_.ub=Vp;_.Eb=Wp;_.Fb=Xp;_.Cb=Yp;_.Gb=Zp;_.tI=50;_.j=null;_=Xn.prototype=new Yn;_.tb=lq;_.ub=mq;_.Hb=nq;_.xb=oq;_.Ib=pq;_.tI=51;_.c=0;_.d=0;_.e=0;_.f=0;_.g=false;_.h=null;_.i=0;_=Wn.prototype=new Xn;_.Ib=sq;_.tI=52;_=wq.prototype=new O;_.kb=zq;_.tI=53;_.b=null;_=Cq.prototype=new ao;_.vb=Gq;_.wb=Hq;_.xb=Iq;_.yb=Jq;_.tI=54;_.h=null;_=Bq.prototype=new Cq;_.tI=55;_.c=null;_=Oq.prototype=new O;_.kb=Rq;_.tI=56;_.b=null;_.c=null;_=Sq.prototype=new O;_.tI=57;_.b=null;_.c=null;_=Vq.prototype=new Zn;_.tI=58;_.b=null;_.c=null;_=fr.prototype=new O;_.tI=0;_.b=null;_.c=null;_.d=null;_=ir.prototype=new O;_.tI=0;_.b=null;_=nr.prototype=new Cq;_.Jb=pr;_.tI=59;_=mr.prototype=new nr;_.tI=60;_.b=null;_.c=null;_.d=null;_.e=null;_=xr.prototype=new O;_.tI=61;_.b=null;_.c=null;_.d=null;_.e=null;var Br=0,Cr,Dr=0,Er,Fr,Gr=0,Hr,Ir=0,Jr;_=Nr.prototype=new nr;_.zb=Zr;_.tI=62;_.b=null;_.c=null;_.d=null;_.e=-1;_.f=0;_.g=null;_=ds.prototype=new O;_.kb=gs;_.tI=63;_.b=null;_=ms.prototype=new Cq;_.tI=64;_.b=null;_=rs.prototype=new Cq;_.tI=65;_.b=null;_.c=null;_.d=null;_.e=null;_=zs.prototype=new O;_.kb=Cs;_.tI=66;_.b=null;_=Ds.prototype=new O;_.kb=Gs;_.tI=67;_.b=null;_=Is.prototype=new nr;_.tI=68;_=Ps.prototype=new Cq;_.tI=69;_=Ws.prototype=new Cq;_.tI=70;_=bt.prototype=new O;_.kb=dt;_.tI=71;_=et.prototype=new O;_.kb=gt;_.tI=72;var jt=null,kt=null;_=ot.prototype=new O;_.tI=0;_.b=false;var st=null;_=vt.prototype=new O;_.tI=0;_.b=false;var zt=null,At=null;_=Et.prototype=new O;_.tI=0;_.b=false;var It=null;_=Lt.prototype=new O;_.tI=0;_.b=false;var Pt=null,Qt=null,Rt=null;_=Wt.prototype=new O;_.tI=0;_.b=false;_=Zt.prototype=new O;_.tI=0;_.b=false;var bu=null;_=eu.prototype=new O;_.tI=0;_.b=false;var iu=null,ju=null,ku=null,lu=null,mu=null,nu=null,ou=null,pu=null,qu=null;var Cu=null;_=Fu.prototype=new O;_.tI=0;_.b=false;var Ju=null,Ku=null,Lu=null,Mu=null,Nu=null;_=Uu.prototype=new O;_.tI=0;_.b=false;var Yu=null;_=_u.prototype=new O;_.tI=0;_.b=false;var dv=null,ev=null;_=iv.prototype=new O;_.tI=0;_.b=false;var mv=null;_=rv.prototype=new O;_.tI=0;_.b=null;_.c=null;_.d=null;_=wv.prototype=new Ab;_.tI=73;_=zv.prototype=new O;_.tI=0;_.d=false;_.f=false;_=Iv.prototype=new gb;_.bb=Lv;_.tI=74;_.b=null;_=Mv.prototype=new gb;_.bb=Pv;_.tI=75;_.b=null;_=Qv.prototype=new O;_.Kb=Zv;_.Lb=$v;_.tI=0;_.b=0;_.c=-1;_.d=0;_.e=null;var aw=null,bw=null;var qw;var uw=null;_=zw.prototype=new Ai;_.gb=Iw;_.hb=Kw;_.ib=Mw;_.tI=0;_.b=false;_.c=false;_.d=false;_.e=null;var Aw=null,Bw=null;var Rw=null;_=Uw.prototype=new O;_.lb=Ww;_.tI=76;var Yw=false,Zw=null,$w=0,_w=0,ax=false;_=ox.prototype=new Ai;_.gb=sx;_.hb=tx;_.tI=0;var px;_=ux.prototype=new fl;_.tI=77;var yx=false;var Ix=null,Jx=null,Kx=null,Lx=null;_=Zx.prototype=new O;_.tI=0;_.b=null;_=iy.prototype=new O;_.tI=0;_.b=0;_.c=null;_=ly.prototype=new O;_.Mb=py;_.nb=qy;_.Nb=sy;_.tI=78;_=vy.prototype=new ly;_.tI=79;_=uy.prototype=new vy;_.Mb=Ay;_.tI=80;_=Gy.prototype=new _n;_.Fb=My;_.Cb=Ny;_.tI=81;_=Fy.prototype=new Gy;_.Cb=Sy;_.tI=82;_=Ty.prototype=new O;_.tI=0;_=Xy.prototype=new ao;_.Ob=$y;_.tI=83;_=Wy.prototype=new Xy;_.Ob=ez;_.tI=84;_=gz.prototype=new Ab;_.tI=85;var hz,iz;_=mz.prototype=new O;_.Pb=oz;_.tI=0;_=pz.prototype=new O;_.Pb=rz;_.tI=0;_=uz.prototype=new Xy;_.tI=86;_=tz.prototype=new uz;_.tI=87;_=zz.prototype=new uz;_.zb=Iz;_.Ab=Jz;_.Ob=Kz;_.Bb=Lz;_.tI=88;_.b=null;_.c=null;_=Mz.prototype=new $n;_.Db=Tz;_.tI=89;_.b=null;_.c=null;_=Uz.prototype=new O;_.mb=Xz;_.tI=90;_.b=null;_=_z.prototype=new ao;_.tI=91;_=$z.prototype=new _z;_.tI=92;_=Zz.prototype=new $z;_.tI=93;_=hA.prototype=new O;_.tI=94;_.b=null;_=kA.prototype=new Gy;_.Qb=sA;_.zb=tA;_.Jb=uA;_.Ab=vA;_.Cb=wA;_.tI=95;_.b=null;_.c=null;_.d=null;_.e=null;_=xA.prototype=new Sf;_.tI=96;var yA,zA,AA;_=EA.prototype=new O;_.Rb=IA;_.db=JA;_.tI=0;_.c=false;_.d=0;_.e=null;_.f=false;_=DA.prototype=new EA;_.Rb=MA;_.tI=0;_.b=null;_=NA.prototype=new O;_.tI=97;_.b=null;_.c=null;_.d=0;_=RA.prototype=new _n;_.Fb=iB;_.Cb=jB;_.tI=98;_.b=null;_.c=null;_.d=null;_.e=null;_.f=null;_=QA.prototype=new RA;_.tI=99;_=qB.prototype=new O;_.tI=0;_.b=null;_=pB.prototype=new qB;_.tI=0;_=xB.prototype=new Gy;_.tI=100;var CB;_=FB.prototype=new Gy;_.tI=101;_=JB.prototype=new O;_.Kb=QB;_.Lb=RB;_.tI=0;_.b=-1;_.c=null;_=SB.prototype=new O;_.tI=0;_.b=0;_=VB.prototype=new O;_.tI=0;_.b=null;_.c=null;_=_B.prototype=new O;_.tI=0;_.b=null;var iC;_=kC.prototype=new O;_.tI=0;_.b=null;_=sC.prototype=new ao;_.tI=102;_.b=null;_=xC.prototype=new O;_.tI=0;_=wC.prototype=new xC;_.tI=0;_.b=0;_=EC.prototype=new O;_.tI=0;_=HC.prototype=new Gy;_.zb=SC;_.Jb=TC;_.Ab=UC;_.Cb=VC;_.tI=103;_.b=null;_.c=null;_=XC.prototype=new O;_.mb=_C;_.tI=104;_.b=null;_=aD.prototype=new O;_.tI=105;_.b=null;_=dD.prototype=new O;_.tI=106;_.b=null;_=hD.prototype=new Sf;_.tI=107;var iD;_=lD.prototype=new N;_.Z=tD;_.$=uD;_._=vD;_.tI=108;_.b=null;_.c=false;_.d=0;_.e=-1;_.f=null;_.g=false;_=wD.prototype=new O;_.db=zD;_.tI=109;_.b=null;_=CD.prototype=new HC;_.zb=HD;_.tI=110;var DD=null;_=ID.prototype=new O;_.mb=LD;_.tI=111;_.b=null;_=MD.prototype=new Fy;_.tI=112;var ND,OD,PD;_=WD.prototype=new O;_.Pb=YD;_.tI=0;_=ZD.prototype=new O;_.lb=_D;_.tI=113;_=aE.prototype=new MD;_.tI=114;_=dE.prototype=new $n;_.Db=gE;_.Jb=hE;_.rb=iE;_.sb=jE;_.tI=115;_.b=null;_=kE.prototype=new O;_.Kb=pE;_.Lb=qE;_.tI=0;_.c=null;_=AE.prototype=new kA;_.Qb=FE;_.Cb=GE;_.tI=116;_=IE.prototype=new ao;_.xb=ME;_.tI=117;_.b=null;_.c=0;_.d=false;_.e=0;_.f=false;_.g=null;_.h=null;_=HE.prototype=new IE;_.Sb=PE;_.Tb=QE;_.Ub=RE;_.Vb=SE;_.tI=118;_=TE.prototype=new O;_.db=WE;_.tI=119;_.b=null;_=XE.prototype=new IE;_.Sb=$E;_.Tb=_E;_.Ub=aF;_.Vb=bF;_.tI=120;_=cF.prototype=new nr;_.Fb=nF;_.zb=oF;_.Jb=pF;_.Cb=qF;_.tI=121;_.c=null;_.d=-1;_.e=null;_=rF.prototype=new O;_.Kb=xF;_.Lb=yF;_.tI=0;_.b=0;_.c=null;_=zF.prototype=new O;_.kb=CF;_.tI=122;_.b=null;_.c=null;_=DF.prototype=new Cq;_.tI=123;_=GF.prototype=new O;_.tI=124;_.b=null;_.c=0;_.d=null;_=JF.prototype=new ao;_.tb=kG;_.ub=lG;_.Fb=nG;_.xb=oG;_.zb=pG;_.Cb=qG;_.tI=125;_.c=null;_.d=null;_.e=null;_.f=null;_.g=false;_.h=null;_.i=false;_=uG.prototype=new bo;_.Wb=NG;_.Xb=OG;_.tI=126;_.c=null;_.d=null;_.e=null;_.f=null;_.g=false;_.h=null;_.i=false;_.j=null;var vG=null,wG=null,xG;_=tG.prototype=new uG;_.Wb=TG;_.Xb=UG;_.tI=127;_.b=null;_=VG.prototype=new O;_.tI=0;_.b=null;_.c=null;_.d=null;_=YG.prototype=new N;_.Z=cH;_.$=dH;_._=eH;_.tI=128;_.b=null;_.c=true;_.d=0;_=jH.prototype=new O;_.Fb=tH;_.tI=0;_.b=null;_.c=0;_=uH.prototype=new O;_.Kb=BH;_.Lb=CH;_.tI=0;_.b=-1;_.c=null;_=DH.prototype=new O;_.Kb=KH;_.Lb=LH;_.tI=0;_.b=-1;_.c=null;_=RH.prototype=new Ty;_.tI=0;_.b=0;_.c=0;_.d=0;_.e=null;_.f=0;_=XH.prototype=new O;_.tI=0;var YH;_=_H.prototype=new XH;_.tI=0;var iI;_=pI.prototype=new O;_.db=sI;_.tI=129;_.b=null;_=uI.prototype=new Ab;_.tI=131;_=xI.prototype=new O;_.eQ=DI;_.hC=EI;_.tI=134;_.b=false;var yI,zI;_=GI.prototype=new O;_.tI=0;_=JI.prototype=new Ab;_.tI=135;_=OI.prototype=new Ab;_.tI=137;_=RI.prototype=new Ab;_.tI=138;_=UI.prototype=new Ab;_.tI=139;_=ZI.prototype=new O;_.tI=136;_=YI.prototype=new ZI;_.eQ=bJ;_.hC=cJ;_.tI=140;_.b=0;var fJ;_=nJ.prototype=new Ab;_.tI=141;_=rJ.prototype=new O;_.tI=142;_=String.prototype;_.eQ=GJ;_.hC=HJ;_.tI=2;var JJ,KJ=0,LJ;_=QJ.prototype=new Ab;_.tI=144;_=TJ.prototype=new O;_.Yb=WJ;_.Zb=XJ;_._b=YJ;_.tI=0;_=$J.prototype=new O;_.eQ=bK;_.hC=cK;_.tI=0;_=ZJ.prototype=new $J;_.ac=vK;_.tI=0;_.b=null;_.c=null;_.d=false;_.e=0;_.f=null;_=xK.prototype=new TJ;_.eQ=zK;_.hC=AK;_.tI=145;_=wK.prototype=new xK;_.Zb=GK;_.Fb=HK;_.$b=IK;_.tI=146;_.b=null;_=JK.prototype=new O;_.Kb=OK;_.Lb=PK;_.tI=0;_.b=null;_.c=null;_=RK.prototype=new O;_.eQ=TK;_.hC=UK;_.tI=147;_=QK.prototype=new RK;_.bc=XK;_.cc=YK;_.dc=ZK;_.tI=148;_.b=null;_=$K.prototype=new RK;_.bc=bL;_.cc=cL;_.dc=eL;_.tI=149;_.b=null;_.c=null;_=fL.prototype=new TJ;_.Yb=iL;_.eQ=kL;_.hC=lL;_.Fb=nL;_.tI=0;_=oL.prototype=new O;_.Kb=uL;_.Lb=vL;_.tI=0;_.b=0;_.c=null;_=wL.prototype=new xK;_.Zb=AL;_.Fb=BL;_.$b=CL;_.tI=150;_.b=null;_.c=null;_=DL.prototype=new O;_.Kb=GL;_.Lb=HL;_.tI=0;_.b=null;_=IL.prototype=new fL;_.Yb=WL;_.Zb=XL;_.$b=YL;_._b=_L;_.tI=151;_.c=0;_=cM.prototype=new ZJ;_.tI=152;_=gM.prototype=new xK;_.Yb=nM;_.Zb=oM;_.Fb=pM;_.$b=qM;_.tI=153;_.b=null;_=vM.prototype=new RK;_.bc=zM;_.cc=AM;_.dc=CM;_.tI=154;_.b=null;_.c=null;_=DM.prototype=new Ab;_.tI=155;var $entry=qc;var Cm=new GI,Hm=new GI,Im=new GI,Dm=new GI,Jm=new GI,Em=new GI,Fm=new GI,Gm=new GI;$stats && $stats({moduleName:'mail',sessionId:$sessionId,subSystem:'startup',evtGroup:'moduleStartup',millis:(new Date()).getTime(),type:'moduleEvalEnd'});if ($wnd.mail) $wnd.mail.onScriptLoad();
--></script></body></html> | 138.753236 | 63,133 | 0.734919 |
90d41dd445a0e101c6369f41876a9290b6c9c337 | 4,993 | py | Python | tests/test_app_text.py | uwcirg/true_nth_usa_portal | e2434731aed86f1c43f15d428dde8ffc28ac7e5f | [
"BSD-3-Clause"
] | 3 | 2017-01-15T10:11:57.000Z | 2018-10-02T23:46:44.000Z | tests/test_app_text.py | uwcirg/true_nth_usa_portal | e2434731aed86f1c43f15d428dde8ffc28ac7e5f | [
"BSD-3-Clause"
] | 876 | 2016-04-04T20:45:11.000Z | 2019-02-28T00:10:36.000Z | tests/test_app_text.py | uwcirg/truenth-portal | 459a0d157982f010175c50b9cccd860a61790370 | [
"BSD-3-Clause"
] | 9 | 2016-04-13T01:18:55.000Z | 2018-09-19T20:44:23.000Z | """Unit test module for app_text"""
import sys
from urllib.parse import parse_qsl, unquote_plus, urlparse
from flask import render_template_string
from flask_webtest import SessionScope
import pytest
from portal.extensions import db
from portal.models.app_text import (
AppText,
MailResource,
UnversionedResource,
VersionedResource,
app_text,
)
from portal.models.user import User
TEST_USER_ID = 1
class Url(object):
'''A url object that can be compared with other url orbjects
without regard to the vagaries of encoding, escaping, and ordering
of parameters in query strings.'''
def __init__(self, url):
parts = urlparse(url)
_query = frozenset(parse_qsl(parts.query))
_path = unquote_plus(parts.path)
parts = parts._replace(query=_query, path=_path)
self.parts = parts
def __eq__(self, other):
return self.parts == other.parts
def __hash__(self): return hash(self.parts)
def test_expansion(app, initialized_db):
with SessionScope(db):
title = AppText(name='landing title')
title.custom_text = '_expanded_'
db.session.add(title)
db.session.commit()
result = render_template_string(
'<html></head><body>{{ app_text("landing title") }}<body/><html/>')
assert '_expanded_' in result
def test_missing_arg(initialized_db):
with SessionScope(db):
title = AppText(name='landing title')
title.custom_text = '_expanded_ {0}'
db.session.add(title)
db.session.commit()
with pytest.raises(ValueError):
render_template_string('<html></head><body>'
'{{ app_text("landing title") }}'
'<body/><html/>')
def test_permanent_url(app):
args = {
'uuid': 'cbe17d0d-f25d-27fb-0d92-c22bc687bb0f',
'origin': app.config['LR_ORIGIN'],
'version': '1.3'}
sample = (
'{origin}/c/portal/truenth/asset/detailed?'
'uuid={uuid}&version=latest'.format(**args))
expected = (
'{origin}/c/portal/truenth/asset?uuid={uuid}&'
'version={version}'.format(**args))
result = VersionedResource(sample, locale_code='en_AU')._permanent_url(
generic_url=sample, version=args['version'])
assert Url(result) == Url(expected)
def test_config_value_in_custom_text(app, initialized_db):
app.config['CT_TEST'] = 'found!'
with SessionScope(db):
embed_config_value = AppText(
name='embed config value',
custom_text='Do you see {config[CT_TEST]}?')
db.session.add(embed_config_value)
db.session.commit()
result = app_text('embed config value')
assert 'found!' in result
def test_fetch_elements_invalid_url():
sample_url = "https://notarealwebsitebeepboop.com"
sample_error = (
"Could not retrieve remove content - Server could not be reached")
result = VersionedResource(sample_url, locale_code=None)
assert result.error_msg == sample_error
assert result.url == sample_url
assert result.asset == sample_error
def test_asset_variable_replacement(test_user, initialized_db):
test_user = User.query.get(TEST_USER_ID)
test_url = "https://notarealwebsitebeepboop.com"
test_asset = "Hello {firstname} {lastname}! Your user ID is {id}"
test_vars = {"firstname": test_user.first_name,
"lastname": test_user.last_name,
"id": TEST_USER_ID}
resource = UnversionedResource(test_url,
asset=test_asset,
variables=test_vars)
rf_id = int(resource.asset.split()[-1])
assert rf_id == TEST_USER_ID
invalid_asset = "Not a real {variable}!"
resource = UnversionedResource(test_url,
asset=invalid_asset,
variables=test_vars)
error_key = resource.asset.split()[-1]
if sys.version_info[0] < 3:
assert error_key == "u'variable'"
else:
assert error_key == "'variable'"
def test_mail_resource():
testvars = {"subjkey": "test",
"bodykey1": '\u2713',
"bodykey2": "456",
"footerkey": "foot"}
tmr = MailResource(None, locale_code='en_AU', variables=testvars)
assert tmr.subject == "TESTING SUBJECT"
assert tmr.body.splitlines()[0] == "TESTING BODY"
assert tmr.body.splitlines()[1] == "TESTING FOOTER"
tmr._subject = "Replace this: {subjkey}"
tmr._body = "Replace these: {bodykey1} and {bodykey2}"
tmr._footer = "Replace this: {footerkey}"
assert tmr.subject.split()[-1] == "test"
assert tmr.body.splitlines()[0].split()[-1] == "456"
assert tmr.body.splitlines()[1].split()[-1] == "foot"
assert set(tmr.variable_list) == set(testvars.keys())
assert testvars['bodykey1'] in tmr.body
# test footer optionality
tmr._footer = None
assert len(tmr.body.splitlines()) == 1
| 32.633987 | 75 | 0.633687 |
9fc3681974207e3f933cebc9302c3bb62cbe6bff | 2,225 | sql | SQL | DBADashDB/dbo/Tables/DatabasesHADR.sql | carehart/dba-dash | 1e763bc9051504fab81ab8dfe8880585bde5568c | [
"MIT"
] | 78 | 2022-01-13T22:03:59.000Z | 2022-03-30T15:45:41.000Z | DBADashDB/dbo/Tables/DatabasesHADR.sql | carehart/dba-dash | 1e763bc9051504fab81ab8dfe8880585bde5568c | [
"MIT"
] | 54 | 2022-01-17T08:58:59.000Z | 2022-03-30T20:26:39.000Z | DBADashDB/dbo/Tables/DatabasesHADR.sql | carehart/dba-dash | 1e763bc9051504fab81ab8dfe8880585bde5568c | [
"MIT"
] | 16 | 2022-01-14T03:41:58.000Z | 2022-03-27T17:37:22.000Z | CREATE TABLE dbo.DatabasesHADR (
DatabaseID INT NOT NULL,
group_database_id UNIQUEIDENTIFIER NOT NULL,
is_primary_replica BIT NULL,
synchronization_state TINYINT NULL,
synchronization_health TINYINT NULL,
is_suspended BIT NULL,
suspend_reason TINYINT NULL,
replica_id UNIQUEIDENTIFIER NOT NULL CONSTRAINT DF_DatabasesHADR_replica_id DEFAULT('00000000-0000-0000-0000-000000000000'),
group_id UNIQUEIDENTIFIER NULL,
is_commit_participant BIT NULL,
database_state TINYINT NULL,
is_local BIT NULL,
secondary_lag_seconds BIGINT NULL,
synchronization_state_desc AS (CASE synchronization_state WHEN 0 THEN N'NOT SYNCHRONIZING' WHEN 1 THEN N'SYNCHRONIZING' WHEN 2 THEN N'SYNCHRONIZED' WHEN 3 THEN N'REVERTING' WHEN 4 THEN N'INITIALIZING' ELSE CONVERT(NVARCHAR(60),synchronization_state) END),
synchronization_health_desc AS (CASE synchronization_health WHEN 0 THEN N'NOT_HEALTHY' WHEN 1 THEN N'PARTIALLY_HEALTHY' WHEN 2 THEN N'HEALTHY' ELSE CONVERT(NVARCHAR(60),synchronization_health) END),
database_state_desc AS (CASE database_state WHEN 0 THEN N'ONLINE' WHEN 1 THEN N'RESTORING' WHEN 2 THEN N'RECOVERING' WHEN 3 THEN N'RECOVERY_PENDING' WHEN 4 THEN N'SUSPECT' WHEN 5 THEN N'EMERGENCY' WHEN 6 THEN N'OFFLINE' ELSE CONVERT(NVARCHAR(60),database_state) END),
suspend_reason_desc AS (CASE suspend_reason WHEN 0 THEN N'SUSPEND_FROM_USER' WHEN 1 THEN N'SUSPEND_FROM_PARTNER' WHEN 2 THEN N'SUSPEND_FROM_REDO' WHEN 3 THEN N'SUSPEND_FROM_CAPTURE' WHEN 4 THEN N'SUSPEND_FROM_APPLY' WHEN 5 THEN N'SUSPEND_FROM_RESTART' WHEN 6 THEN N'SUSPEND_FROM_UNDO' WHEN 7 THEN N'SUSPEND_FROM_REVALIDATION' WHEN 8 THEN N'SUSPEND_FROM_XRF_UPDATE' ELSE CONVERT(NVARCHAR(60),suspend_reason) END)
CONSTRAINT PK_DatabasesHADR PRIMARY KEY CLUSTERED (DatabaseID ASC,replica_id),
CONSTRAINT FK_DatabasesHADR FOREIGN KEY (DatabaseID) REFERENCES dbo.Databases (DatabaseID),
CONSTRAINT FK_DatabasesHADR_Databases FOREIGN KEY (DatabaseID) REFERENCES dbo.Databases (DatabaseID)
);
GO
CREATE NONCLUSTERED INDEX IX_DatabasesHADR_group_database_id
ON dbo.DatabasesHADR (
group_database_id ASC,
DatabaseID ASC
);
| 71.774194 | 416 | 0.778427 |
a7b7ec358c09fe4c1f9f3dceee7adce3bed361cc | 3,300 | sql | SQL | openGaussBase/testcase/SUBPARTITION/Opengauss_Function_Subpartition_Case0275.sql | opengauss-mirror/Yat | aef107a8304b94e5d99b4f1f36eb46755eb8919e | [
"MulanPSL-1.0"
] | null | null | null | openGaussBase/testcase/SUBPARTITION/Opengauss_Function_Subpartition_Case0275.sql | opengauss-mirror/Yat | aef107a8304b94e5d99b4f1f36eb46755eb8919e | [
"MulanPSL-1.0"
] | null | null | null | openGaussBase/testcase/SUBPARTITION/Opengauss_Function_Subpartition_Case0275.sql | opengauss-mirror/Yat | aef107a8304b94e5d99b4f1f36eb46755eb8919e | [
"MulanPSL-1.0"
] | null | null | null | -- @testpoint: range_range二级分区表:null值/local/global/unlogged,测试点合理报错
--step1: 创建表空间; expect:成功
drop table if exists t_subpartition_0275;
create table t_subpartition_0275
(
col_1 int ,
col_2 int ,
col_3 varchar2 ( 30 ) not null ,
col_4 int
)
partition by range (col_1) subpartition by list (col_2)
(
partition p_range_1 values less than( 10 )
(
subpartition p_range_1_1 values ( '1' ),
subpartition p_range_1_2 values ( default )
),
partition p_range_2 values less than( 20 )
(
subpartition p_range_2_1 values ( '1' ),
subpartition p_range_2_2 values ( default )
)
) enable row movement;
--step2: 查询数据; expect:成功
select relname,parttype,partstrategy,indisusable,interval from pg_partition where parentid = (select oid from pg_class where relname = 't_subpartition_0275') order by relname;
select a.relname,a.parttype,a.partstrategy,a.indisusable from pg_partition a,(select oid from pg_partition
where parentid = (select oid from pg_class where relname = 't_subpartition_0275')) b where a.parentid = b.oid order by a.relname;
--step3: 插入数据; expect:成功
insert into t_subpartition_0275 values(1,null,'1',1);
--step4: 查询指定二级分区数据; expect:成功
select * from t_subpartition_0275 subpartition(p_range_1_2);
--step5: 插入数据; expect:成功
insert into t_subpartition_0275 values(16,null,'1',1);
--step6: 查询指定二级分区数据; expect:成功
select * from t_subpartition_0275 subpartition(p_range_2_2);
--step7: 创建二级分区表,指定local; expect:合理报错
drop table if exists t_subpartition_0275;
create local temp table t_subpartition_0275
(
col_1 int not null ,
col_2 int not null ,
col_3 varchar2 ( 30 ) not null ,
col_4 int
)
partition by range (col_1) subpartition by list (col_2)
(
partition p_range_1 values less than( 10 )
(
subpartition p_range_1_1 values ( '1' ),
subpartition p_range_1_2 values ( default )
),
partition p_range_2 values less than( 20 )
(
subpartition p_range_2_1 values ( '1' ),
subpartition p_range_2_2 values ( default )
)
) enable row movement;
--step8: 创建二级分区表,指定global; expect:合理报错
drop table if exists t_subpartition_0275;
create global temp table t_subpartition_0275
(
col_1 int not null ,
col_2 int not null ,
col_3 varchar2 ( 30 ) not null ,
col_4 int
)
partition by range (col_1) subpartition by list (col_2)
(
partition p_range_1 values less than( 10 )
(
subpartition p_range_1_1 values ( '1' ),
subpartition p_range_1_2 values ( default )
),
partition p_range_2 values less than( 20 )
(
subpartition p_range_2_1 values ( '1' ),
subpartition p_range_2_2 values ( default )
)
) enable row movement;
--step9: 创建二级分区表,指定unlogged; expect:合理报错
drop table if exists t_subpartition_0275;
create unlogged table t_subpartition_0275
(
col_1 int not null ,
col_2 int not null ,
col_3 varchar2 ( 30 ) not null ,
col_4 int
)
partition by range (col_1) subpartition by list (col_2)
(
partition p_range_1 values less than( 10 )
(
subpartition p_range_1_1 values ( '1' ),
subpartition p_range_1_2 values ( default )
),
partition p_range_2 values less than( 20 )
(
subpartition p_range_2_1 values ( '1' ),
subpartition p_range_2_2 values ( default )
)
) enable row movement;
--step10: 清理环境; expect:成功
drop table if exists t_subpartition_0275; | 31.132075 | 175 | 0.727879 |
f2d92b2972bd2c01bc70a26e71174d5987f2b8fd | 11,365 | sql | SQL | src/database/data/dim_name_abbr.sql | deshk04/addressparser | 03c33859bb585a6cf767e0f4d3dfd23cabd2d78b | [
"MIT"
] | null | null | null | src/database/data/dim_name_abbr.sql | deshk04/addressparser | 03c33859bb585a6cf767e0f4d3dfd23cabd2d78b | [
"MIT"
] | null | null | null | src/database/data/dim_name_abbr.sql | deshk04/addressparser | 03c33859bb585a6cf767e0f4d3dfd23cabd2d78b | [
"MIT"
] | null | null | null | --
-- PostgreSQL database dump
--
-- Dumped from database version 9.6.11
-- Dumped by pg_dump version 10.4 (Ubuntu 10.4-2.pgdg16.04+1)
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET client_min_messages = warning;
SET row_security = off;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: dim_name_abbr; Type: TABLE; Schema: public; Owner: prdsprc
--
CREATE TABLE public.dim_name_abbr (
name character varying(60),
shortname character varying(20)
);
ALTER TABLE public.dim_name_abbr OWNER TO prdsprc;
--
-- Data for Name: dim_name_abbr; Type: TABLE DATA; Schema: public; Owner: prdsprc
--
COPY public.dim_name_abbr (name, shortname) FROM stdin;
aaron aar
abigail nabby
abigail abby
abigail gail
abraham abe
abraham bram
adelaida ida
adelaida idly
alan al
alastair al
alastair alex
alastair ala
albert al
albert bert
albert alberto
alexander alex
alexander lex
alexander xander
alexander sander
alexandra alex
alexandra ali
alexandra lexie
alfred al
alfred alf
alfred alfie
alfred fred
alfred fredo
alonzo lonnie
aloysius lou
aloysius lewie
amanda mandy
amanda mand
andrew andy
andrew drew
angus gus
anne nan
anne nancy
anthony ant
anthony tony
antoine ant
antoinette toni
antoinette netta
antonia toni
armando arm
arnold arnie
arthur art
ashley ash
augustine gus
augustine gussy
augustine gussie
augustus gus
augustus auggy
agnes aggie
agnes nessie
agnes nessy
agnes nes
barbara barb
barbara barbie
barbara babs
barbara bobbie
barnaby barney
barry baz
bartholomew bart
bartholomew barty
bartholomew barry
basil baz
benjamin benji
benjamin ben
benjamin benny
beverley bev
bonnie bunnie
bonnie benny
bonnie bon
bradley brad
brian bria
bridget biddy
bridget bridey
bruce bru
berry beri
bernadette berrietta
bernadette nadetta
byron by
calvin cal
cameron cam
candace candy
carlos car
carolyn carol
carolyn lyn
carolyn lynn
cassandra cassie
cassandra cass
cassandra sandra
cassandra sandy
catherine cat
catherine kat
catherine cath
catherine cate
catherine kate
catherine cathy
catherine kathy
catherine cassie
catherine katie
cecilia cecie
cecilia cis
cecilia cissie
cecilia cecil
charles charley
charles chuck
charles chas
charles chaz
charles chazza
charles chic
charles kori
charles chip
charles chucky
chester chet
chester chesty
christian chris
christian christie
christine christy
christine chris
christine chrissy
christine chrissie
christine tina
christopher chris
christopher topher
christopher kit
christopher chrissy
clayton clay
clement clem
clement clementine
clifford cliff
clinton clint
constance connie
curtis curt
cynthia cindy
cyrus cy
damien dam
daniel dan
daniel danny
darren daz
david dave
david davey
david davie
david div
david dav
david davo
deborah deb
deborah debbie
declan dec
denise den
diesel die
dimitri dim
dolores dee
dominic dom
dominic nick
dominic nicky
dominick dom
dominick nick
dominick nicky
donald don
donald donny
dorothy dot
dorothy dottie
dorothy doll
dorothy dolly
douglas doug
duncan dun
dylan dill
edmund ed
edmund eddy
edmund eddie
edmund ned
edmund neddie
edmund ted
edmund teddy
edward ed
edward eddy
edward eddie
edward ned
edward neddie
edward ted
edward teddy
edwin ed
edwin eddy
edwin eddie
edwin ned
edwin neddie
edwin ted
edwin teddy
elaine lainie
eleanor ella
eleanor elle
eleanor ellie
eleanor nell
eleanor nellie
eleanor nora
ellen nell
ellen nellie
ellen ellie
elizabeth bess
elizabeth bessie
elizabeth bette
elizabeth bet
elizabeth betty
elizabeth beth
elizabeth betsy
elizabeth eliza
elizabeth elise
elizabeth elsa
elizabeth elsie
elizabeth elle
elizabeth ella
elizabeth lisa
elizabeth lisbeth
elizabeth lissie
elizabeth lizbeth
elizabeth lizzy
elizabeth lizzie
elizabeth liz
elizabeth liza
elizabeth lilibet
emily em
emily emmy
emily emma
emily milly
ethan etha
ethel eth
eugene gene
eugene gen
eugene eugen
ezekiel ezekias
ferdinand ferd
frances fran
frances franny
frances fanny
frances frankie
francesca fran
francesca franny
francesca fanny
francesco fran
francesco frank
francesco frankie
francis fran
francis frank
francis frankie
franklin frank
franklin franky
frederick fred
frederick freddy
fiona sienna
fiona siena
fiona fi
florence flora
florence floss
florence flossie
florence flo
florence renchy
florence rench
gabriel gabe
gabriela gabby
garfield gal
garfield gary
garfield garry
geoffrey geoff
geoffrey jeff
gerald gerry
gerald jerry
gertrude gert
gertrude gertie
gertrude trudy
gilbert gil
gilbert gib
gilbert bert
gregory greg
gregory gregg
gustav gus
gustave gus
geronimo geno
geronimo gero
geronimo geron
geronimo nemo
geronimo gerie
geronimo ron
geronimo jer
gracia gracie
gracia grace
gracia grass
gracia graz
gracia acia
gracia grassie
gracia ruby
gracia rubanetta
gracia reba
gracia gracina
harold harry
harold hal
harriet hatty
harry haz
harry hazza
helen nell
helen nellie
helen eleni
henry hank
henry hal
henry harry
henry hen
herbert herb
herbert herbie
herbert bert
hilary hil
hilary hilly
homer home
howard howie
ingrid ing
irving irv
isaac ike
isabella izzy
isabella isa
isabella bella
isabella bell
isadore izzy
iva ivy
iva vet
iva ava
iva livia
ivor vor
ivor ivy
jacob jake
jacob jacoby
jacob jay
james jim
james jimmy
james jamie
james jimbo
james jambo
james jam
jane jan
janet jan
janice jan
jasmin jazz
jasmin jaz
jasmin jazzy
jasmin jazza
jason jay
jason jase
jason jake
jayden jay
jeffrey jeff
jeffrey geoff
jeffrey jeffy
jennifer jen
jennifer jenny
jennifer jenni
jeremiah jeremy
jeremiah jerry
jeremiah jer
jerome jerry
jessica jess
jessica jessie
joel joe
joel joey
john johnny
john jack
johnathan john
johnathan johnny
jonathan jon
jonathan john
jonathan jonny
jordan judd
jordan jordy
joseph joe
joseph joey
josephine jo
josephine joey
josephine josie
joshua josh
judith judy
justin just
katherine kathy
katherine kat
katherine katie
katherine kate
katherine kit
katherine kitty
katherine katy
katrina kat
katrina trina
kenneth ken
kenneth kenny
kevin kev
kimberly kim
kimberly kimmy
kristen krissy
kristen kris
karina kara
karina cara
karina caris
karina carrier
karina carry
karina cat
karina catrin
karina stacy
karina cats
kerry kai
kerry kerin
kerry keath
kerry heath
kerry ker
lachlan lachy
laura laurie
laura lori
lawrence larry
lawrence law
leonard len
leonard lenny
leonard leon
leonard leo
leonard lee
leonardo len
leonardo lenny
leonardo leon
leonardo leo
leonardo lee
liam li
lillian lil
lillian lilly
lily lil
linda lindy
linda lindy
logan logy
logan logy
louis lou
louis louie
louise lou
lucas luke
lucille lucy
lewis lewie
lewis lewy
lewis lew
lewis leba
lucina luckier
lucina lucinait
madeline maddie
madeline magdaline
madison maddie
marcus marc
marcus mark
marcus mars
margaret peg
margaret peggy
margaret daisy
margaret maggie
margaret marge
margaret meg
maria mia
martin marty
melanie melane
melanie elaine
melanie mel
mary daisie
mary maisie
mary polly
mary molly
mary mare
matthew matt
matthew matty
megan meg
melanie mel
melissa mel
melissa lissa
melissa missy
melinda mel
melinda mindy
michael mike
michael mick
michael mikey
michael mickey
michael mic
michele shell
michele shelley
miranda randy
miranda mindy
mitchell mitch
montgomery monty
morrison morry
morrison merry
morrison moris
morrison morris
morrison doris
morrison dory
marion mamie
marion marie
marion mariana
marion marrier
maxim max
maxim maxie
maxim maxi
maxim maaz
maxim maxus
maxim maxam
maxmillion max
natasha tasha
natasha tash
natasha nat
nathan nate
nathan nat
nathaniel nat
nathaniel nath
nichola nickie
nichola nicki
nichola nicky
nichola nikki
nicholas nick
nicholas nicky
nichole nickie
nichole nicki
nichole nicky
nichole nikki
nigel nig
nigel niggy
nigel niglet
nigel nige
norbert bert
norbert nobby
norbert burt
norbert nob
norbert bob
norbert bobbie
norbert bobby
norman nour
norman orman
norman orbie
oliver ollie
oliver ol
oliver olly
olivia ollie
olivia liv
olivia via
olive liv
olive olivetta
olive oliver
oswald ozzy
oswald oz
oscar iscariot
oscar ozzy
oscar osc
oscar os
pamela pam
pasquale pat
patrick pat
patrick paddy
patricia pat
patricia patty
patricia tricia
patricia trish
patricia patsy
patricia trisha
paulie polly
paul polly
paula paulie
paula polly
pauline paulie
pauline polly
penelope penny
percival percy
peregrine perry
peter pet
peter pete
philip phil
philip philly
philippa pippa
philippa philly
phillip phil
priscilla cilla
quincy quin
quincy quinn
quincy quince
quinton quavie
quinton quavix
quinton quazianit
quinton quaveric
quinton waverani
quinton tonieania
quinton quinton
rachel ray
rachel rach
raphael ralph
raphael rafi
randolph randy
raymond ray
rebecca becky
rebecca becca
rebecca becks
rebecca bex
rebecca bec
regina reggie
regina gina
reginald reg
reginald reggie
renee rae
richard rich
richard richie
richard rick
richard ricky
richard dick
richard dicky
robert bob
robert bobby
robert bobbie
robert robbie
robert robin
robert rob
robert robby
roberta bobbie
roderick rod
roderick roddy
rodrick rod
rodrick roddy
rodney rod
rodney roddy
ronald ron
ronald ronnie
ronald ro
russell russ
russell rusty
salvador sal
samantha sam
samantha sammy
samuel sam
samuel sammy
sarah sadie
sarah sally
seymour sy
sharon shaza
sharon shaz
sidney sid
simon si
simon sam
simon sime
spencer spence
stephen steve
stephen stevie
stephen stevo
steven steve
steven stevie
steven stevo
susan sue
susan susie
susan suzy
sylvia sylvie
sylvia sylys
tamara tammy
tamara tam
tamsin tammy
tamsin tam
terence terry
terence tel
teresa theresa
teresa tracy
teresa tracey
teresa terry
teresa terrie
theodore ted
theodore teddy
theodore ed
theodore eddy
theodore ned
theodore neddy
theodore theo
thomas tom
thomas thom
thomas tommy
tiffany tiff
tiffany tiffy
tiffany titi
timothy tim
timothy timmy
tobias toby
travis trave
trenton trent
trenton tren
tristan trist
tristan tris
tyler ty
tyrone ty
tyrone tyron
tyson ty
una oona
valentine val
valerie val
veronica vera
veronica ronni
veronica ronnie
victor vic
victor vict
victoria vicky
victoria tori
victoria vick
vincent vinnie
vincent vince
vincent vin
violet vi
violet lettie
virginia ginny
virginia ginger
virginia vergie
violeta letta
violeta oleta
violeta viol
violeta etsav
vivian vivy
vivian vv
vivian vivo
walter wal
walter walt
walter wally
walter wat
wallace wal
wallace walt
wallace wally
wallace wat
wesley wes
william will
william willie
william bill
william billy
william liam
wendy wagger
wendy wiggy
wendy piggy
wendy pig
wendy peg
wendy peggy
wendy wiz
wendy wizard
wendy whizzy
wendy wen
wendy wendi
wendy wend
woodrow wood
woodrow woody
xavier savior
xavier xavi
xander xan
xander xandy
xander xolo
ximena xi
ximena sime
ximena simonetta
ximena sima
xuan soer xe
xuan chua
xenia xen
xenia zenny
xenia sen
yvonne yo
yvonne von
yousef seth
yousef you
yousef steff
yousef stef
yin xin
yin chinn
yin yip
yin china
yue yu
yue yew
yue dewy
yue duel
yue du
yong yem
yong yetch
yong yang
young younguth
young yugi
young you
zachariah zachary
zachariah zach
zachariah zac
zoe zo-zo
zoe zoey
ziggy zig
ziggy zag
ziggy zags
ziggy sui
zelda zell
zelda sel
zelda sal
zelda zella
zelda zealand
zane zoo
zane bo
zane sassy
zane zayn
zoran zora
surendranath suren
kalaichelvam kalai
kalaichelvan kalai
\.
--
-- PostgreSQL database dump complete
--
| 13.449704 | 81 | 0.837571 |