blob_id
stringlengths 40
40
| directory_id
stringlengths 40
40
| path
stringlengths 4
410
| content_id
stringlengths 40
40
| detected_licenses
listlengths 0
51
| license_type
stringclasses 2
values | repo_name
stringlengths 5
132
| snapshot_id
stringlengths 40
40
| revision_id
stringlengths 40
40
| branch_name
stringlengths 4
80
| visit_date
timestamp[us] | revision_date
timestamp[us] | committer_date
timestamp[us] | github_id
int64 5.85k
689M
⌀ | star_events_count
int64 0
209k
| fork_events_count
int64 0
110k
| gha_license_id
stringclasses 22
values | gha_event_created_at
timestamp[us] | gha_created_at
timestamp[us] | gha_language
stringclasses 131
values | src_encoding
stringclasses 34
values | language
stringclasses 1
value | is_vendor
bool 1
class | is_generated
bool 2
classes | length_bytes
int64 3
9.45M
| extension
stringclasses 32
values | content
stringlengths 3
9.45M
| authors
listlengths 1
1
| author_id
stringlengths 0
313
|
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
f9834c8cd10d9588f87ba8a3c50593051ca5c2b7
|
67366a353a13c25d47bbc598d8b55419f5234355
|
/TP07/src/exercicio01/Armazem.java
|
ae7e20f93ebfde0153d3d212e92a3b70b6551dbb
|
[] |
no_license
|
SamiraFreitas/Java-Course
|
e0f8fd7fede81c314f00cd2878dc26810e84649a
|
080556d3cd3d0bb5947c5734f3ca9e8a5ccce376
|
refs/heads/main
| 2023-01-10T07:48:46.428999 | 2020-11-06T20:16:06 | 2020-11-06T20:16:06 | 310,683,291 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,194 |
java
|
package exercicio01;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Scanner;
import java.util.Set;
public class Armazem
{
Set<Produto> produtos = new HashSet<Produto>();
public void adiciona()
{
Scanner entrada = new Scanner (System.in);
System.out.println("Digite o nome do produto\n");
String nome = entrada.next();
System.out.println("Digite o codigo do produto\n");
String codigoDeBarras = entrada.next();
System.out.println("Digite o preco do produto\n");
double preco = entrada.nextDouble();
Produto produto = new Produto (nome, codigoDeBarras, preco);
int cont =0;
if(!produtos.isEmpty())
{
Iterator<Produto> it = produtos.iterator();
while (it.hasNext())
{
if(!it.next().codigoDeBarras.equals(produto.codigoDeBarras))
{
cont++;
}
}
if(produtos.size()== cont)
{
produtos.add(produto);
}
else
{
System.out.println("Este produto ja foi cadastrado\n!");
}
}
else
{
produtos.add(produto);
}
}
@Override
public String toString() {
return "Armazem [produtos=" + produtos.toString() + "]";
}
}
|
[
"[email protected]"
] | |
889adac5cd00e18c5185b2c6b3fe02d8bca67bc3
|
65766c174a06ea7fa6608b2e471b01dcda8d6a46
|
/Week_07/GenerateParenthesis.java
|
cc4577519c839be11257047cd1cabec637cc53d1
|
[] |
no_license
|
cjjcoolboy/algorithm012
|
956b712f6e3f5e41ff076f85a48c0c84ab7cb962
|
81d26413508a8cd3fd1d5ed5b5abbaa504ca88d0
|
refs/heads/master
| 2022-12-19T10:18:42.145556 | 2020-09-20T15:09:23 | 2020-09-20T15:09:23 | 277,554,982 | 0 | 0 | null | 2020-07-06T13:51:29 | 2020-07-06T13:51:28 | null |
UTF-8
|
Java
| false | false | 1,271 |
java
|
import java.util.ArrayList;
import java.util.List;
/**
* @Deseription 括号生成
* leetcode--22
**/
public class GenerateParenthesis {
/**
* 剪枝方法
* @param n
* @return
*/
public static List<String> generateParenthesis(int n) {
List<String> result = new ArrayList<>();
helper(result,n,"",0,0);
return result;
}
/**
* 1. 左括号优先于右括号
* 2. 左括号数小于总数
* 3. 右括号的数小于左括号(合法性)
* @param result
* @param n
* @param s
* @param left
* @param right
*/
private static void helper(List<String> result,int n,String s,int left,int right){
if(s.length() == n*2){
result.add(s);
return;
}
String leftStr = "(";
String rightStr = ")";
if(left < n && left >= right){
helper(result,n,s+leftStr,left+1,right);
}
if(right < n && left >= right){
helper(result,n,s+rightStr,left,right+1);
}
}
/**
* run test
* @param args
*/
public static void main(String[] args) {
List<String> result = generateParenthesis(3);
System.out.println("result:"+result);
}
}
|
[
"[email protected]"
] | |
133a45c6971eb003af02c1404fda5b459b973a73
|
897b88f1095154a668cd1e06e230c19f34fdea7e
|
/src/main/java/xyz/imostro/c04factory/pizza/pizza/ingredient/clams/FreshClams.java
|
d811febfeb49441c02ef103c90d2bfc35c461447
|
[] |
no_license
|
imostro/design-pattern
|
835e10db2dcf593c1ad9962e1d2ea3fa3094fddb
|
20bab222cddb84dc99145ace646a722851bd35c9
|
refs/heads/master
| 2022-12-29T22:13:26.622658 | 2020-10-04T06:55:40 | 2020-10-04T06:55:40 | 301,060,711 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 104 |
java
|
package xyz.imostro.c04factory.pizza.pizza.ingredient.clams;
public class FreshClams extends Clams {
}
|
[
"[email protected]"
] | |
43df30dbcaa4aec10f1473e6f939b5b57468eb4e
|
0627168396bcd034c7a818eb98e1161cfcd25f62
|
/Softuni Advanced 26.01.2021/src/AddVAT.java
|
6b570f8162d4946f1ecc96ebeea71e9eda44480d
|
[] |
no_license
|
ivandanin/Softuni-Advanced
|
4f1565e2d9a03eb12eae55049171a7a5ae24562b
|
a20e2eb65ae85206fcff219507cd02d1d91ae945
|
refs/heads/main
| 2023-03-05T00:37:19.391790 | 2021-02-20T09:22:54 | 2021-02-20T09:22:54 | 329,394,290 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 559 |
java
|
import java.util.Arrays;
import java.util.Scanner;
import java.util.function.UnaryOperator;
public class AddVAT {
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
UnaryOperator<Double> vatAdder = priceWithoutVat -> priceWithoutVat * 1.2;
System.out.println("Prices with VAT:");
Arrays.stream(scanner.nextLine().split(", "))
.mapToDouble(e -> vatAdder.apply(Double.parseDouble(e)))
.forEach(e -> System.out.printf("%.2f%n", e));
}
}
|
[
"[email protected]"
] | |
713c3247e6c98b95222a3e80a3af4ce4f420247f
|
1932efbc90243a528380eee5393a26f253120d26
|
/src/main/java/ru/home/jspr/task2/App.java
|
0e3f51057b24ae323dcfd084e3c5d5ca65f8e328
|
[] |
no_license
|
nikolaydmukha/netology-jspr
|
ef14884257259038d6ddbbce12e5fe4f986d8c32
|
877edd429b5ff54c9fb2c923149381adf49eaa13
|
refs/heads/master
| 2023-03-25T01:53:02.588083 | 2021-03-25T10:48:25 | 2021-03-25T10:48:25 | 345,029,752 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,635 |
java
|
package ru.home.jspr.task2;
import ru.home.jspr.task2.http.Request;
import java.io.BufferedOutputStream;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
public class App {
public static void main(String[] args) {
AppConfig appConfig = AppConfig.getInstance();
JsprServer server = new JsprServer(64);
// добавление GET handler'ов
server.addHandler("GET", "/index.html", (request, responseStream) -> {
// TODO: handlers code
addHandlerProcessor(request, responseStream);
});
server.addHandler("GET", "/thread.html", (request, responseStream) -> {
// TODO: handlers code
try {
Thread.sleep(3000);
} catch (InterruptedException ex) {
ex.printStackTrace();
}
addHandlerProcessor(request, responseStream);
});
// добавление POST handler'ов
server.addHandler("POST", "/index.html", (request, responseStream) -> {
// TODO: handlers code
addHandlerProcessor(request, responseStream);
});
server.addHandler("POST", "/thread.html", (request, responseStream) -> {
// TODO: handlers code
addHandlerProcessor(request, responseStream);
});
server.runServer((appConfig.getPort()));
}
private static void addHandlerProcessor(Request request, BufferedOutputStream responseStream) {
try {
if (!JsprServer.validPaths.contains(request.getPath())) {
responseStream.write((
"HTTP/1.1 404 Not Found\r\n" +
"Content-Length: 0\r\n" +
"Connection: close\r\n" +
"\r\n"
).getBytes());
responseStream.flush();
}
final Path filePath = Path.of(".", "public", request.getPath());
final String mimeType = Files.probeContentType((filePath));
final long length = Files.size(filePath);
responseStream.write((
"HTTP/1.1 200 OK\r\n" +
"Content-Type: " + mimeType + "\r\n" +
"Content-Length: " + length + "\r\n" +
"Connection: close\r\n" +
"\r\n"
).getBytes());
Files.copy(filePath, responseStream);
responseStream.flush();
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
|
[
"[email protected]"
] | |
12b1e5a41834f81a8cb925f3ba347652c663a551
|
35cb46718c9f829a3654dc20a2ff0b04a21a681d
|
/src/gramatica/FableGrammarBaseVisitor.java
|
b6ddbd89fc862659616efcf205fdec13fbbcb0a6
|
[] |
no_license
|
danielhensilva/compiler-agents
|
9ba0c471c368835b92ab8ce415722a089bc51026
|
c19032bed38bd74a140de5810bb835d9943e6e81
|
refs/heads/master
| 2021-01-19T22:33:36.234868 | 2015-10-18T03:45:17 | 2015-10-18T03:45:17 | 34,574,241 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,083 |
java
|
// Generated from FableGrammar.g4 by ANTLR 4.5.1
package gramatica;
import org.antlr.v4.runtime.tree.AbstractParseTreeVisitor;
/**
* This class provides an empty implementation of {@link FableGrammarVisitor},
* which can be extended to create a visitor which only needs to handle a subset
* of the available methods.
*
* @param <T> The return type of the visit operation. Use {@link Void} for
* operations with no return type.
*/
public class FableGrammarBaseVisitor<T> extends AbstractParseTreeVisitor<T> implements FableGrammarVisitor<T> {
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitAssociacoes(FableGrammarParser.AssociacoesContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitLembranca(FableGrammarParser.LembrancaContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitEntendimento(FableGrammarParser.EntendimentoContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitRequisitos(FableGrammarParser.RequisitosContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitFabula(FableGrammarParser.FabulaContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitCenaIntermediaria(FableGrammarParser.CenaIntermediariaContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitCenaInicial(FableGrammarParser.CenaInicialContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitCenaFinal(FableGrammarParser.CenaFinalContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitConhecimento(FableGrammarParser.ConhecimentoContext ctx) { return visitChildren(ctx); }
/**
* {@inheritDoc}
*
* <p>The default implementation returns the result of calling
* {@link #visitChildren} on {@code ctx}.</p>
*/
@Override public T visitDescricao(FableGrammarParser.DescricaoContext ctx) { return visitChildren(ctx); }
}
|
[
"[email protected]"
] | |
3e218efc5e9190f49a703ca961cf26d708c570da
|
39af2276d4ca86caf710fa06953160900b3a234a
|
/D1/spring-aop1/src/main/java/com/demo/spring/Singer.java
|
92a05e60f6b60e9eb800bbd1d734c10f5851be16
|
[] |
no_license
|
o2nitin/Spring-T
|
c50d4473cde1305edb2995e45a9219bc4b4e970f
|
da2e00d9ca46c0593d5c70d74dfd35585ee56a49
|
refs/heads/master
| 2020-03-31T08:40:35.910649 | 2018-10-12T12:40:55 | 2018-10-12T12:40:55 | 152,067,789 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 294 |
java
|
package com.demo.spring;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
@Service
public class Singer implements Performer {
@Autowired
Audiance audiance;
public void perform() {
System.out.println("Performing Singnig");
}
}
|
[
"[email protected]"
] | |
42eb874c5b0b504197a2cf0650c558a3e8b11b39
|
0d7bb74c8c5a6b9ad143640a2263a455c2a98e58
|
/service/domain/src/main/java/cn/fintecher/pangolin/service/domain/service/CaseFollowService.java
|
8c99901cd23a2a55c5e37fdb0b8343bd7f32f476
|
[] |
no_license
|
yixinsiyu/pangolin-credit-card-server-fz
|
c39905846caa2d8db940d6af7d46c95ad324ff2b
|
6ad85e6b2aedbd2e5a686d6f1fb4de24e25760b8
|
refs/heads/master
| 2021-09-25T00:25:07.644474 | 2018-10-16T05:52:41 | 2018-10-16T05:52:41 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 18,584 |
java
|
package cn.fintecher.pangolin.service.domain.service;
import cn.fintecher.pangolin.common.enums.ApplyType;
import cn.fintecher.pangolin.common.enums.ManagementType;
import cn.fintecher.pangolin.common.enums.PaymentStatus;
import cn.fintecher.pangolin.common.enums.AssistApprovedResult;
import cn.fintecher.pangolin.common.enums.AssistApprovedStatus;
import cn.fintecher.pangolin.common.enums.AssistFlag;
import cn.fintecher.pangolin.common.enums.FollowType;
import cn.fintecher.pangolin.common.exception.BadRequestException;
import cn.fintecher.pangolin.common.model.OperatorModel;
import cn.fintecher.pangolin.common.model.response.LoginResponse;
import cn.fintecher.pangolin.common.utils.Snowflake;
import cn.fintecher.pangolin.common.utils.ZWDateUtil;
import cn.fintecher.pangolin.entity.domain.*;
import cn.fintecher.pangolin.service.domain.model.request.ApplyCaseRequest;
import cn.fintecher.pangolin.service.domain.model.request.CaseFindRecordModel;
import cn.fintecher.pangolin.service.domain.model.request.CaseOtherFollowModel;
import cn.fintecher.pangolin.service.domain.model.request.CreateFollowRecordModel;
import cn.fintecher.pangolin.service.domain.model.response.FollowRecordCountModel;
import cn.fintecher.pangolin.service.domain.respository.*;
import org.apache.commons.lang.StringUtils;
import org.elasticsearch.action.search.SearchType;
import org.elasticsearch.index.query.BoolQueryBuilder;
import org.elasticsearch.index.query.QueryBuilders;
import org.elasticsearch.search.aggregations.Aggregation;
import org.elasticsearch.search.aggregations.AggregationBuilders;
import org.elasticsearch.search.aggregations.Aggregations;
import org.elasticsearch.search.aggregations.bucket.terms.StringTerms;
import org.elasticsearch.search.aggregations.bucket.terms.TermsAggregationBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.elasticsearch.core.ElasticsearchTemplate;
import org.springframework.data.elasticsearch.core.query.NativeSearchQueryBuilder;
import org.springframework.data.elasticsearch.core.query.SearchQuery;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import java.util.*;
import static org.elasticsearch.index.query.QueryBuilders.matchPhraseQuery;
/**
* Created by BBG on 2018/8/2.
*/
@Service("caseFollowService")
public class CaseFollowService {
Logger log = LoggerFactory.getLogger(CaseFollowService.class);
@Autowired
CaseFollowupRecordRepository caseFollowupRecordRepository;
@Autowired
CaseFindRecordRepository caseFindRecordRepository;
@Autowired
CaseOtherFollowRecordRepository caseOtherFollowRecordRepository;
@Autowired
ElasticsearchTemplate elasticsearchTemplate;
@Autowired
PersonalContactRepository personalContactRepository;
@Autowired
BaseCaseRepository baseCaseRepository;
@Autowired
CaseApplyService caseApplyService;
@Autowired
PaymentRecordRepository paymentRecordRepository;
@Autowired
RestTemplate restTemplate;
@Autowired
FollowRemindRecordRepository followRemindRecordRepository;
public void saveFollowRecoed(CreateFollowRecordModel model, LoginResponse loginResponse) {
OperatorModel operator = loginResponse.getUser();
Optional<BaseCase> temp = baseCaseRepository.findById(model.getCaseId());
BaseCase baseCase = temp.orElseThrow(() -> new BadRequestException(null, "assistApply", "baseCase.is.not.exist"));
CaseFollowupRecord record = new CaseFollowupRecord();
BeanUtils.copyProperties(model, record);
record.setPersonalId(baseCase.getPersonal().getId());
record.setOperator(operator.getId());
record.setOperatorName(operator.getFullName());
record.setOperatorTime(ZWDateUtil.getNowDateTime());
record.setFollowTime(record.getOperatorTime());
record.setOperatorDeptName(loginResponse.getOrganizationModel().getName());
StringBuilder builder = new StringBuilder();
String contantView = null;
if (Objects.equals(FollowType.TEL.name(), model.getType().name())) {
contantView = builder.append(model.getTargetName()).append("|")
.append(model.getTarget()).append("|")
.append(model.getContactPhone()).append("|")
.append(model.getContent()).toString();
} else if (Objects.equals(FollowType.ADDR.name(), model.getType())) {
contantView = builder.append(model.getTargetName()).append("|")
.append(model.getTarget()).append("|")
.append(model.getDetail()).append("|")
.append(model.getContent()).toString();
}
if(Objects.nonNull(model.getFollNextDate())){
Snowflake snowflake = new Snowflake((int) (Thread.currentThread().getId() % 1024));
FollowRemindRecord remindRecord = new FollowRemindRecord();
remindRecord.setId(String.valueOf(snowflake.next()));
remindRecord.setCaseId(baseCase.getId());
remindRecord.setDate(model.getFollNextDate());
followRemindRecordRepository.save(remindRecord);
}
record.setContentView(contantView);
caseFollowupRecordRepository.save(record);
baseCase.setOperator(operator.getId());
if (Objects.equals(model.getCollectionWay(), 1)) {
if (Objects.nonNull(baseCase.getCollectionRecordCount())) {
baseCase.setCollectionRecordCount(baseCase.getCollectionRecordCount() + 1);
baseCase.setCollectionTotalRecordCount(baseCase.getCollectionTotalRecordCount() + 1);
} else {
baseCase.setCollectionRecordCount(1);
baseCase.setCollectionTotalRecordCount(1);
}
baseCase.setFollowTime(record.getOperatorTime());
baseCase.setContactResult(model.getContactResult());
//同步电话状态和联络结果
if (StringUtils.isNotEmpty(model.getContactPhone()) && StringUtils.isNotEmpty(model.getPersonalContactId())) {
List<PersonalContact> contactList = new ArrayList<>();
Optional<PersonalContact> personalContactList = personalContactRepository.findById(model.getPersonalContactId());
PersonalContact personalContact1 = personalContactList.get();
Set<PersonalPerCall> personalPerCalls = personalContact1.getPersonalPerCalls();
if(personalPerCalls.size()>0){
personalPerCalls.forEach(personalPerCall -> {
if(personalPerCall.getPhoneNo().equals(model.getContactPhone())){
personalPerCall.setDialPhoneCount(personalPerCall.getDialPhoneCount() == null ? 1 : personalPerCall.getDialPhoneCount() + 1);
personalPerCall.setPhoneState(model.getContactState());
personalPerCall.setContactResult(model.getContactResult());
}
});
contactList.add(personalContact1);
}
if (!contactList.isEmpty()) {
personalContactRepository.saveAll(contactList);
}
}
//根据催记中承诺金额不为空,则自动生成PTP还款记录,不生成查账申请
if (Objects.nonNull(record.getPromiseAmt())) {
BoolQueryBuilder qb = QueryBuilders.boolQuery();
qb.must(matchPhraseQuery("caseId", baseCase.getId())).must(matchPhraseQuery("paymentStatus", PaymentStatus.WAIT_CONFIRMED.toString()));
Iterable<PaymentRecord> search = paymentRecordRepository.search(qb);
if(search.iterator().hasNext()){
PaymentRecord next = search.iterator().next();
next.setPromiseAmt(record.getPromiseAmt());
next.setPromiseDate(record.getPromiseDate());
next.setOperatorDate(ZWDateUtil.getNowDateTime());
paymentRecordRepository.save(next);
}else {
generalPTPRecord(baseCase.getPersonal(),record, PaymentStatus.WAIT_CONFIRMED);
}
}
//根据已还款金额,生成查账申请和CP记录
if (Objects.nonNull(record.getHasPaymentAmt())) {
BoolQueryBuilder qb = QueryBuilders.boolQuery();
qb.must(matchPhraseQuery("caseId", baseCase.getId())).must(matchPhraseQuery("paymentStatus", PaymentStatus.WAIT_CONFIRMED.toString()));
Iterable<PaymentRecord> search = paymentRecordRepository.search(qb);
//如果存在PTP记录未转CP记录,则不生成查账申请,否则生成查账申请
if (!search.iterator().hasNext()) {
PaymentRecord paymentRecord = generalPTPRecord(baseCase.getPersonal(),record, PaymentStatus.CONFIRMING);
generalCPApply(baseCase.getPersonal(),record, operator, paymentRecord);
}
}
}
baseCase.setOperator(operator.getId());
baseCase.setOperatorTime(record.getOperatorTime());
baseCaseRepository.save(baseCase);
}
public void saveFindRecoed(CaseFindRecordModel model, OperatorModel operator) {
Optional<BaseCase> temp = baseCaseRepository.findById(model.getCaseId());
BaseCase baseCase = temp.orElseThrow(() -> new BadRequestException(null, "assistApply", "baseCase.is.not.exist"));
CaseFindRecord record = new CaseFindRecord();
BeanUtils.copyProperties(model, record);
record.setPersonalId(baseCase.getPersonal().getId());
record.setOperator(operator.getId());
record.setOperatorName(operator.getFullName());
record.setOperatorTime(ZWDateUtil.getNowDateTime());
record.setOperatorDeptName(operator.getOrganization());
caseFindRecordRepository.save(record);
baseCase.setOperator(operator.getId());
baseCase.setFollowTime(record.getFindTime());
if (Objects.nonNull(baseCase.getCollectionRecordCount())) {
baseCase.setCollectionRecordCount(baseCase.getCollectionRecordCount() + 1);
baseCase.setCollectionTotalRecordCount(baseCase.getCollectionTotalRecordCount());
} else {
baseCase.setCollectionRecordCount(1);
baseCase.setCollectionTotalRecordCount(1);
}
baseCase.setOperator(operator.getId());
baseCase.setOperatorTime(record.getOperatorTime());
baseCaseRepository.save(baseCase);
}
public void saveOtherFollowRecoed(CaseOtherFollowModel model, OperatorModel operator) {
Optional<BaseCase> temp = baseCaseRepository.findById(model.getCaseId());
BaseCase baseCase = temp.orElseThrow(() -> new BadRequestException(null, "assistApply", "baseCase.is.not.exist"));
CaseOtherFollowRecord record = new CaseOtherFollowRecord();
BeanUtils.copyProperties(model, record);
record.setPersonalId(baseCase.getPersonal().getId());
record.setOperator(operator.getId());
record.setOperatorName(operator.getFullName());
record.setOperatorTime(ZWDateUtil.getNowDateTime());
record.setOperatorDeptName(operator.getOrganization());
caseOtherFollowRecordRepository.save(record);
baseCase.setOperator(operator.getId());
baseCase.setFollowTime(record.getFollowTime());
if (Objects.nonNull(baseCase.getCollectionRecordCount())) {
baseCase.setCollectionRecordCount(baseCase.getCollectionRecordCount() + 1);
baseCase.setCollectionTotalRecordCount(baseCase.getCollectionTotalRecordCount());
} else {
baseCase.setCollectionRecordCount(1);
baseCase.setCollectionTotalRecordCount(1);
}
baseCase.setOperator(operator.getId());
baseCase.setOperatorTime(record.getOperatorTime());
baseCaseRepository.save(baseCase);
}
/***
* 生成还款记录
* @param record
* @param paymentStatus
*/
public PaymentRecord generalPTPRecord(Personal personal, CaseFollowupRecord record, PaymentStatus paymentStatus) {
PaymentRecord paymentRecord = new PaymentRecord();
BeanUtils.copyProperties(record, paymentRecord);
paymentRecord.setOperatorDate(ZWDateUtil.getNowDate());
paymentRecord.setIsBouncedCheck(ManagementType.NO);
paymentRecord.setPaymentStatus(paymentStatus);
paymentRecord.setPersonalName(personal.getPersonalName());
paymentRecord.setCertificateNo(personal.getCertificateNo());
paymentRecordRepository.save(paymentRecord);
return paymentRecord;
}
/***
* 生成CP查账记录
* @param record
* @param operator
*/
public void generalCPApply(Personal personal,CaseFollowupRecord record, OperatorModel operator, PaymentRecord paymentRecord) {
//如果已还款金额不为空,则为CP, 需要自动发起一条查账申请
if (Objects.nonNull(record.getHasPaymentAmt())) {
ApplyCaseRequest request = new ApplyCaseRequest();
request.setCaseId(record.getCaseId());
request.setApplyType(ApplyType.CHECK_OVERDUE_AMOUNT_APPLY);
request.setPaymentRecordId(paymentRecord.getId());
request.setApplyRemark("催记添加CP,自动生成查账申请");
request.setPersonalName(personal.getPersonalName());
request.setCertificateNo(personal.getCertificateNo());
caseApplyService.setObjectCaseApply(request, operator);
}
}
public FollowRecordCountModel getFollowRecordCount(String caseId) {
FollowRecordCountModel model = new FollowRecordCountModel();
BoolQueryBuilder qbTel = QueryBuilders
.boolQuery();
qbTel.must(matchPhraseQuery("caseId", caseId));
qbTel.must(matchPhraseQuery("type", FollowType.TEL.toString()));
TermsAggregationBuilder aggregationBuilder = AggregationBuilders.terms("caseId").field("caseId.keyword");
SearchQuery searchQueryTel = new NativeSearchQueryBuilder()
.withIndices("case_followup_record")
.withTypes("case_followup_record")
.withSearchType(SearchType.DEFAULT)
.withQuery(qbTel)
.addAggregation(aggregationBuilder).build();
Aggregations aggregationsTel = elasticsearchTemplate.query(searchQueryTel, response -> response.getAggregations());
Map<String, Aggregation> mapTel = aggregationsTel.asMap();
if (mapTel.get("caseId") instanceof StringTerms) {
StringTerms principalCountTel = (StringTerms) mapTel.get("caseId");
for (StringTerms.Bucket bucket : principalCountTel.getBuckets()) {
model.setTelNum(bucket.getDocCount());
}
} else {
model.setTelNum(0L);
}
BoolQueryBuilder qbAddr = QueryBuilders
.boolQuery();
qbAddr.must(matchPhraseQuery("caseId", caseId));
qbAddr.must(matchPhraseQuery("type", FollowType.ADDR.toString()));
SearchQuery searchQueryAddr = new NativeSearchQueryBuilder()
.withIndices("case_followup_record")
.withTypes("case_followup_record")
.withSearchType(SearchType.DEFAULT)
.withQuery(qbAddr)
.addAggregation(aggregationBuilder).build();
Aggregations aggregationsAddr = elasticsearchTemplate.query(searchQueryAddr, response -> response.getAggregations());
Map<String, Aggregation> mapAddr = aggregationsAddr.asMap();
if (mapAddr.get("caseId") instanceof StringTerms) {
StringTerms principalCountAddr = (StringTerms) mapAddr.get("caseId");
for (StringTerms.Bucket bucket : principalCountAddr.getBuckets()) {
model.setAddrNum(bucket.getDocCount());
}
} else {
model.setAddrNum(0L);
}
BoolQueryBuilder qbFind = QueryBuilders
.boolQuery();
qbFind.must(matchPhraseQuery("caseId", caseId));
SearchQuery searchQueryFind = new NativeSearchQueryBuilder()
.withIndices("case_find_record")
.withTypes("case_find_record")
.withSearchType(SearchType.DEFAULT)
.withQuery(qbFind)
.addAggregation(aggregationBuilder).build();
Aggregations aggregationsFind = elasticsearchTemplate.query(searchQueryFind, response -> response.getAggregations());
Map<String, Aggregation> mapFind = aggregationsFind.asMap();
if (mapFind.get("caseId") instanceof StringTerms) {
StringTerms principalCountFind = (StringTerms) mapFind.get("caseId");
for (StringTerms.Bucket bucket : principalCountFind.getBuckets()) {
model.setFindNum(bucket.getDocCount());
}
} else {
model.setFindNum(0L);
}
BoolQueryBuilder qbLetter = QueryBuilders
.boolQuery();
qbLetter.must(matchPhraseQuery("caseId", caseId));
qbLetter.must(matchPhraseQuery("assistFlag", AssistFlag.LETTER_ASSIST.toString()));
qbLetter.must(matchPhraseQuery("approveStatus", AssistApprovedStatus.LOCAL_COMPLETED.toString()));
qbLetter.must(matchPhraseQuery("approveResult", AssistApprovedResult.LOCAL_PASS.toString()));
SearchQuery searchQueryLetter = new NativeSearchQueryBuilder()
.withIndices("assist_case_apply")
.withTypes("assist_case_apply")
.withSearchType(SearchType.DEFAULT)
.withQuery(qbLetter)
.addAggregation(aggregationBuilder).build();
Aggregations aggregationsLetter = elasticsearchTemplate.query(searchQueryLetter, response -> response.getAggregations());
Map<String, Aggregation> mapLetter = aggregationsLetter.asMap();
if (mapLetter.get("caseId") instanceof StringTerms) {
StringTerms principalCountLetter = (StringTerms) mapLetter.get("caseId");
for (StringTerms.Bucket bucket : principalCountLetter.getBuckets()) {
model.setLetterNum(bucket.getDocCount());
}
} else {
model.setLetterNum(0L);
}
return model;
}
}
|
[
"[email protected]"
] | |
c88d738dd8938fb2887c6cf13397e6c53a8147a0
|
1a29514927d5ba0295c49dd4e7a4249f066fbb17
|
/app/src/main/java/com/jugal/udacity/connection/API.java
|
87e7e34945cf24526a270b54e18dd1df2dfdcee5
|
[] |
no_license
|
jugalkishorerawat/PopularMovies_stage1
|
92f2141c2d2044753c95f7c102c35ebfbb1a689b
|
f5797e3b7c918a3b7b9d5e8773092f3815c51cdb
|
refs/heads/master
| 2021-01-10T09:24:59.957657 | 2016-04-04T15:46:45 | 2016-04-04T15:46:45 | 55,424,033 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 388 |
java
|
package com.jugal.udacity.connection;
public class API {
static public String API_URL = "http://api.themoviedb.org/3/discover/movie";
static public String API_KEY = "YOUR_API_KEY";
static public String IMAGE_URL = "http://image.tmdb.org/t/p/";
static public String IMAGE_SIZE_185 = "w185";
static public String IMAGE_NOT_FOUND = "http://i.imgur.com/N9FgF7M.png";
}
|
[
"[email protected]"
] | |
e46c4e258726e2d6ab529581e43a3054af61cc84
|
e7e276ece390306ac721b0603a080cf842aa8f90
|
/app/src/main/java/com/sss/car/dao/SearchHistoryMessageOperationCallBack.java
|
ab7cd62eaf881e7b6e5766b02f5f8eed20f83808
|
[] |
no_license
|
michael007js/JuXiangChe
|
9b1b872063fcb5cdf00f22386b8ec4111bd53d90
|
9cca55b533d65d1e7c68e3ebbd46a3146545bb20
|
refs/heads/master
| 2020-03-08T08:11:04.352956 | 2018-04-27T05:24:44 | 2018-04-27T05:24:44 | 128,015,077 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 291 |
java
|
package com.sss.car.dao;
import com.sss.car.model.SearchHistoryMessageModel;
import java.util.List;
/**
* Created by leilei on 2017/8/30.
*/
public interface SearchHistoryMessageOperationCallBack {
void onClickHistroyMessage(int position, List<SearchHistoryMessageModel> list);
}
|
[
"[email protected]"
] | |
02a5714cff4a7816fc0199703cc817fa093597cc
|
a4a4cd0a346bf1597aa393dff64a2e04db9fca4f
|
/app/src/main/java/com/example/routebuilder/Map.java
|
bd219f7ee32067974de728d586db64f3f3786830
|
[] |
no_license
|
alexandmattias/AndroidRoutePlanning
|
2365d5dc3382ff897a60b2916300cf019e6ecf3a
|
50a7118ce4983222292f24ce765c825e091ce95f
|
refs/heads/master
| 2020-05-02T19:32:00.803010 | 2019-04-04T15:43:28 | 2019-04-04T15:43:28 | 178,161,268 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 15,298 |
java
|
package com.example.routebuilder;
import android.content.Intent;
import android.graphics.Color;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.android.gms.maps.model.Polyline;
import com.google.android.gms.maps.model.PolylineOptions;
import com.google.maps.android.PolyUtil;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.ExecutionException;
public class Map extends AppCompatActivity implements OnMapReadyCallback {
// Google map vars
private MapView mapView;
private GoogleMap gMap;
String gKey;
PolylineOptions polyLine;
ArrayList<Marker> markers;
private static final String MAP_VIEW_BUNDLE_KEY = "MapViewBundleKey";
// User input fields
private EditText mRouteName;
private EditText mRouteStart;
private EditText mRouteDestination;
private EditText mWaypoint;
//Buttons
private Button mSetStart;
private Button mSetDestination;
private Button mSetWaypoint;
private Button mCreateRoute;
private Button mBack;
// RecyclerView
private RecyclerView mRecyclerView;
private WaypointAdapter mAdapter;
private RecyclerView.LayoutManager mLayoutManager;
private ArrayList<WaypointItem> mWaypointList;
// Tracker if editing previous route
private int position = -1;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_map);
mWaypointList = new ArrayList<>();
markers = new ArrayList<>();
gKey = "&key=" + getString(R.string.google_maps_key);
buildGMap(savedInstanceState);
initializeFields();
buildRecyclerView();
}
// Load data sent from MainActivity
private void loadData() {
ArrayList<String> route;
ArrayList<String> waypoints;
if (getIntent().getStringArrayListExtra("route") != null){
if (getIntent().getExtras() != null){
position = getIntent().getExtras().getInt("position");
}
route = getIntent().getStringArrayListExtra("route");
waypoints = getIntent().getStringArrayListExtra("waypoints");
mRouteName.setText(route.get(0));
mRouteStart.setText(route.get(1));
mRouteDestination.setText(route.get(2));
for (String waypoint : waypoints){
mWaypointList.add(new WaypointItem(waypoint));
}
updateMarkers();
}
}
// Initialize all buttons, Edittexts
private void initializeFields() {
// EditTexts
mRouteName = findViewById(R.id.et_SetName);
mRouteStart = findViewById(R.id.et_SetStart);
mRouteDestination = findViewById(R.id.et_SetEnd);
mWaypoint = findViewById(R.id.et_AddWaypoint);
// Buttons
mSetStart = findViewById(R.id.button_setStart);
mSetDestination = findViewById(R.id.button_setEnd);
mSetWaypoint = findViewById(R.id.button_addWaypoint);
mCreateRoute = findViewById(R.id.button_createRoute);
mBack = findViewById(R.id.button_back);
// Button listeners
// Start, Destionation, Waypoint, Create route
mSetStart.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
updateMarkers();
}
});
mSetDestination.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
updateMarkers();
}
});
mSetWaypoint.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (mWaypoint.getText() != null){
insertItemAtEnd(mWaypoint.getText().toString());
mWaypoint.setText("");
updateMarkers();
} else {
Toast waypointToast = Toast.makeText(getApplicationContext(), "Requires an input", Toast.LENGTH_SHORT);
waypointToast.show();
}
}
});
mCreateRoute.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
inflateMain();
}
});
mBack.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent main = new Intent(getApplicationContext(), MainActivity.class);
startActivity(main);
finish();
}
});
}
// Inflates MainActivity with all the data from the route added to the previous dataset
// 2 Arraylists are sent alongside the intent: route, waypoints
// Position is sent, -1 for a new route else the number passed when Map view was opened
private void inflateMain() {
if (!mRouteStart.getText().toString().equals("")
&& !mRouteDestination.getText().toString().equals("")
&& !mRouteName.getText().toString().equals("")){
Intent main = new Intent(getApplicationContext(), MainActivity.class);
String name = mRouteName.getText().toString();
String start = mRouteStart.getText().toString();
String dest = mRouteDestination.getText().toString();
ArrayList<String> route = new ArrayList<>();
route.add(name);
route.add(start);
route.add(dest);
ArrayList<String> waypoints = new ArrayList<>();
if (!mWaypointList.isEmpty()){
for (WaypointItem item : mWaypointList){
waypoints.add(item.getName());
}
main.putStringArrayListExtra("waypoints", waypoints);
}
main.putExtra("position", position);
main.putStringArrayListExtra("route", route);
startActivity(main);
finish();
} else {
Toast.makeText(getApplicationContext(), "Please make sure there is a name, start and destination", Toast.LENGTH_SHORT).show();
}
}
// Necessary components for RecyclerView
private void buildRecyclerView() {
mRecyclerView = findViewById(R.id.recyclerView_waypoints);
mLayoutManager = new LinearLayoutManager(this);
mAdapter = new WaypointAdapter(mWaypointList);
mRecyclerView.setLayoutManager(mLayoutManager);
mRecyclerView.setAdapter(mAdapter);
mAdapter.setOnItemClickListener(new WaypointAdapter.OnItemClickListener() {
@Override
public void onDeleteClick(int position) {
removeItem(position);
updateMarkers();
}
});
}
// Insert and item to the end of the RecyclerView waypoint list
public void insertItemAtEnd(String waypoint){
mWaypointList.add(new WaypointItem(waypoint));
mAdapter.notifyDataSetChanged();
}
// Remove an item at the specified location
public void removeItem(int position){
mWaypointList.remove(position);
mAdapter.notifyItemRemoved(position);
}
private void createExampleRoute() {
mWaypointList.add(new WaypointItem("Karjaa"));
}
/*****************************************
*
* Google Map section
*
*****************************************/
private void buildGMap(Bundle savedInstanceState) {
Bundle mapViewBundle = null;
if (savedInstanceState != null){
mapViewBundle = savedInstanceState.getBundle(MAP_VIEW_BUNDLE_KEY);
}
mapView = findViewById(R.id.mapView);
mapView.onCreate(mapViewBundle);
mapView.getMapAsync(this);
}
@Override
public void onSaveInstanceState(Bundle outState) {
super.onSaveInstanceState(outState);
Bundle mapViewBundle = outState.getBundle(MAP_VIEW_BUNDLE_KEY);
if (mapViewBundle == null) {
mapViewBundle = new Bundle();
outState.putBundle(MAP_VIEW_BUNDLE_KEY, mapViewBundle);
}
mapView.onSaveInstanceState(mapViewBundle);
}
@Override
protected void onResume() {
super.onResume();
mapView.onResume();
}
@Override
protected void onStart() {
super.onStart();
mapView.onStart();
}
@Override
protected void onStop() {
super.onStop();
mapView.onStop();
}
@Override
protected void onPause() {
mapView.onPause();
super.onPause();
}
@Override
protected void onDestroy() {
mapView.onDestroy();
super.onDestroy();
}
@Override
public void onLowMemory() {
super.onLowMemory();
mapView.onLowMemory();
}
public void onMapReady(GoogleMap googleMap) {
gMap = googleMap;
gMap.setMinZoomPreference(3);
if (getIntent().getExtras() != null){
loadData();
} else {
createExampleRoute();
}
}
private void resetMap(){
if (!markers.isEmpty()){
gMap.clear();
}
}
// Update markers on the map. Only updates the values which contain a text
private void updateMarkers() {
resetMap();
MarkerOptions home = new MarkerOptions();
MarkerOptions dest = new MarkerOptions();
// Home marker
CreateHomeMarker(home);
createDestinationMarker(dest);
createWaypointMarkers();
// Updates polyLine to match the new places
// Require a start and an end
if (home.getPosition() != null && dest.getPosition() != null){
drawPolyline();
} else {
Toast.makeText(getApplicationContext(), "Please make sure there is a start and destination", Toast.LENGTH_SHORT).show();
}
}
// Loop through mWaypointList and add all the locations to the map as markers
private void createWaypointMarkers() {
if (!mWaypointList.isEmpty()){
for (WaypointItem item : mWaypointList){
markers.add(gMap.addMarker(new MarkerOptions().position(getLatLng(item.getName())).title(item.getName())));
}
}
}
// Add the destination as a green marker
private void createDestinationMarker(MarkerOptions dest) {
if (!mRouteDestination.getText().toString().equals("")){
dest.position(getLatLng(mRouteDestination.getText().toString()))
.title("Destination")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_GREEN));
Marker mDest = gMap.addMarker(dest);
markers.add(mDest);
}
}
// Add the start as a blue marker
private void CreateHomeMarker(MarkerOptions home) {
if (!mRouteStart.getText().toString().equals("")){
home.position(getLatLng(mRouteStart.getText().toString()))
.title("Home")
.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_BLUE));
Marker mhome = gMap.addMarker(home);
markers.add(mhome);
gMap.moveCamera(CameraUpdateFactory.newLatLng(home.getPosition()));
}
}
// Use Google Geocoding API to convert a string to LatLng
private LatLng getLatLng(String location) {
String JSONresponse = "";
String url = "https://maps.googleapis.com/maps/api/geocode/json?address="
+ location + gKey;
// Try to get the json response
try {
JSONresponse = new HTTPGet().execute(url).get();
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
}
if (JSONresponse != null) {
LatLng coordinates = null;
// Pick out the coordinates of the location
try {
JSONObject object = new JSONObject(JSONresponse);
Double latitude = object.getJSONArray("results").getJSONObject(0).getJSONObject("geometry").getJSONObject("location").getDouble("lat");
Double longitude = object.getJSONArray("results").getJSONObject(0).getJSONObject("geometry").getJSONObject("location").getDouble("lng");
coordinates = new LatLng(latitude, longitude);
} catch (JSONException e) {
Toast.makeText(getApplicationContext(), "Could not read the data!", Toast.LENGTH_LONG).show();
}
return coordinates;
} else {
Toast.makeText(getApplicationContext(), "No data found!", Toast.LENGTH_LONG).show();
return null;
}
}
// Draw the shortest route on the map
// Uses Google Directions API
private void drawPolyline() {
polyLine = new PolylineOptions();
String url = "https://maps.googleapis.com/maps/api/directions/json?";
String params = "origin=" + mRouteStart.getText().toString();
params += "&destination=" + mRouteDestination.getText().toString();
if (!mWaypointList.isEmpty()){
params += "&waypoints=optimize:true";
for (int i = 0; i < mWaypointList.size(); i++){
params += "|"+mWaypointList.get(i).getName();
}
}
String queryString = url + params + gKey;
String overviewPolyline = getJSONPolylineOverview(queryString);
// Decode the overview_polyline from JSON request
List<LatLng> polyList = PolyUtil.decode(overviewPolyline);
polyLine.addAll(polyList);
gMap.addPolyline(polyLine);
}
// Executes the Directions API command, return with the overview_polyline
private String getJSONPolylineOverview(String queryString) {
String json = "";
try {
json = new HTTPGet().execute(queryString).get();
} catch (ExecutionException e) {
e.printStackTrace();
} catch (InterruptedException e) {
e.printStackTrace();
}
String poly = "";
try {
JSONObject obj = new JSONObject(json);
poly = obj.getJSONArray("routes").getJSONObject(0).getJSONObject("overview_polyline").getString("points");
} catch (JSONException e) {
e.printStackTrace();
}
return poly;
}
// Google map functions end
//----------------------------
}
|
[
"[email protected]"
] | |
4a3f22a66f1feaaa6c26c5fc41045bd1440efffd
|
8ea3a63539792dfdf10fe5c5d4b2ecb74a9cf26b
|
/Proyecto Final (Juego)/Entrega 3 Aplicación-Persistencia/Arkapoob/src/aplicacion/BloqueNegro.java
|
71d2d07632f18581630d6d4b7ed8234dc58e45df
|
[] |
no_license
|
NicolasAguilera9906/POOB
|
9371e4a34724d56c3be163b7a9ad3d08b3ad93a3
|
fa563f72efc8db086d5d0c006c46d64bbc47f02d
|
refs/heads/master
| 2022-12-26T01:32:28.376628 | 2020-10-09T17:43:17 | 2020-10-09T17:43:17 | 207,452,858 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,122 |
java
|
package aplicacion;
import java.awt.Color;
public class BloqueNegro extends Bloque {
/**
* Clase que ejecuta el bloque negro del juego arkapoob
* @author: Nicolas Aguilera y Daniel Walteros
* @version: 12/05/2019
*/
/**
* Constructor para la clase bloque
* @param x La coordenada horizontal del bloque.
* @param y La coordenada vertical del bloque.
* @param anchoB El ancho del bloque.
* @param altoB La altura del bloque.
*/
public BloqueNegro(int x , int y , int ancho , int alto) {
super(x, y, ancho, alto);
puntaje = 600;
}
/**
* Obtiene el color del bloque
* @return El color del bloque.
*/
public Color getColor() {
return Color.BLACK;
}
/**
* Sabe si el bloque es capaz de cambiar por el ultimo bloque destruido
* @return El valor booleano que determina si el bloque es capaz de cambiar por el ultimo bloque destruido.
*/
public boolean changesToLastBlock(){
return true;
}
/**
* Reacciona el bloque si fue destruido.
* @param jugador El jugador que destruyo el bloque.
*/
@Override
public void reaccione(Jugador jugador) {
}
}
|
[
"[email protected]"
] | |
dcc576eaa8ae65aeee8c810fd9fb3136bbd9464e
|
80c66cca63cebffdd1f397d79bfc040ed188c1c8
|
/gomint-server/src/main/java/io/gomint/server/util/LongList.java
|
e90f49ef869375afa0b4ccf2bd82b1aec0e5eb6b
|
[
"BSD-3-Clause"
] |
permissive
|
severinkehding/GoMint
|
0902df4f3612cd9dd3d1b01a2e80636449e712fa
|
a70aeae53dc03803fb37241123b602da027844d5
|
refs/heads/master
| 2021-07-02T08:45:25.673228 | 2017-06-09T12:22:18 | 2017-06-09T12:22:18 | 104,562,044 | 0 | 0 | null | 2017-09-23T11:17:00 | 2017-09-23T11:17:00 | null |
UTF-8
|
Java
| false | false | 2,750 |
java
|
package io.gomint.server.util;
import java.util.Arrays;
/**
* @author geNAZt
* @version 1.0
*/
public class LongList {
/**
* Default initial capacity.
*/
private static final int DEFAULT_CAPACITY = 10;
/**
* Shared empty array instance used for default sized empty instances. We
* distinguish this from EMPTY_ELEMENTDATA to know how much to inflate when
* first element is added.
*/
private static final long[] DEFAULTCAPACITY_EMPTY_ELEMENTDATA = {};
/**
* The maximum size of array to allocate.
* Some VMs reserve some header words in an array.
* Attempts to allocate larger arrays may result in
* OutOfMemoryError: Requested array size exceeds VM limit
*/
private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
private long[] elementData;
private int size;
public LongList() {
this.elementData = DEFAULTCAPACITY_EMPTY_ELEMENTDATA;
}
public void add( long element ) {
ensureCapacityInternal( this.size + 1 );
elementData[size++] = element;
}
private static int hugeCapacity( int minCapacity ) {
if ( minCapacity < 0 ) {
throw new OutOfMemoryError();
}
return ( minCapacity > MAX_ARRAY_SIZE ) ?
Integer.MAX_VALUE :
MAX_ARRAY_SIZE;
}
private void grow( int minCapacity ) {
// overflow-conscious code
int oldCapacity = this.elementData.length;
int newCapacity = oldCapacity + ( oldCapacity >> 1 );
if ( newCapacity - minCapacity < 0 ) {
newCapacity = minCapacity;
}
if ( newCapacity - MAX_ARRAY_SIZE > 0 ) {
newCapacity = hugeCapacity( minCapacity );
}
// minCapacity is usually close to size, so this is a win:
this.elementData = Arrays.copyOf( this.elementData, newCapacity );
}
private void ensureExplicitCapacity( int minCapacity ) {
// overflow-conscious code
if ( minCapacity - this.elementData.length > 0 ) {
grow( minCapacity );
}
}
private void ensureCapacityInternal( int minCapacity ) {
if ( this.elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDATA ) {
minCapacity = Math.max( DEFAULT_CAPACITY, minCapacity );
}
ensureExplicitCapacity( minCapacity );
}
/**
* Return the size of the data stored in the list
*
* @return amount of data stored
*/
public int size() {
return this.size;
}
/**
* Remove the last element in the array
*
* @return the removed element
*/
public long remove() {
return this.elementData[--size];
}
}
|
[
"[email protected]"
] | |
890c5f37a599c3f32718c90cd3aa0bddac0e2e32
|
2e28641b0e145d3d2c35ca51ff0a8253cb46d9cd
|
/Lab-3/Lab3-Kulkarni/Lab3_server/src/server/jms/consumer/addCategory.java
|
8fb7800161344533df9cb3baca7e61ae5cb91c54
|
[] |
no_license
|
kaustubhkulkarni05/Projects_Completed
|
d423bfbd6f03d9a2c726fe4bbe16601abc271ff9
|
59354fc4164e59664e73237b2359d9d47895ecc0
|
refs/heads/master
| 2020-05-29T18:58:21.676912 | 2015-01-13T03:29:03 | 2015-01-13T03:29:03 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 980 |
java
|
package server.jms.consumer;
import javax.jms.JMSException;
import javax.jms.Message;
import javax.jms.TextMessage;
import server.jms.dao.CategoryDisplay;
import server.jms.entity.User;
public class addCategory extends MarketPlaceConsumer {
public addCategory(String queueName){
super(queueName);
}
public void onMessage(Message addComments) {
if (addComments != null){
try {
String msgId = addComments.getStringProperty("msg");
TextMessage tm = (TextMessage)addComments;
if (msgId.equals("addCategory")){
String [] signupDetails = tm.getText().split(";");
CategoryDisplay user = addCategoryDao.addComments(signupDetails[0],signupDetails[1],signupDetails[2],signupDetails[3],signupDetails[4]);
String split = signupDetails[1];
sendReply(addComments, split);
}
else if (msgId.equals("signOut")) {
String email = tm.getText();
}
}
catch (JMSException e) {
sendReply(addComments, FAILURE);
}
}
}
}
|
[
"[email protected]"
] | |
e9ada204cee70f461f3099b22601306e8e31579a
|
1ce042755212c498391ee8f88eb6e5755e40049f
|
/src/ghozkiu/minefectedutil/utilities/metadata/WhisperersMetaData.java
|
f9ea64acefa3f3306fe1970c266bcab2e8d02f86
|
[] |
no_license
|
Ghozkiu/MineFectedUtil
|
505bb168c32b13f349ba62f10553d6ffd7a60142
|
aeb17097e28337222e9490cd4ef7fe7411ef4f88
|
refs/heads/main
| 2023-08-16T15:05:27.286124 | 2021-10-08T22:20:07 | 2021-10-08T22:20:07 | 330,297,934 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,053 |
java
|
package ghozkiu.minefectedutil.utilities.metadata;
import org.bukkit.entity.PigZombie;
import org.bukkit.entity.Zombie;
import org.bukkit.event.Listener;
import org.bukkit.metadata.FixedMetadataValue;
import org.bukkit.plugin.Plugin;
import java.util.UUID;
public class WhisperersMetaData implements Listener {
private static Plugin plugin;
public WhisperersMetaData(Plugin plugin) {
WhisperersMetaData.plugin = plugin;
}
public static void applyZombie(Zombie z, UUID uuid){
z.setMetadata(uuid + "_attacked", new FixedMetadataValue(plugin, "SusurradoresMeta"));
}
public static void applyPigZombie(PigZombie z, UUID uuid){
z.setMetadata(uuid + "_attacked", new FixedMetadataValue(plugin, "SusurradoresMeta"));
}
public static boolean hasZombieMetadata(Zombie z, UUID uuid){
return z.hasMetadata(uuid + "_attacked");
}
public static boolean hasPigZombieMetadata(PigZombie pz, UUID uuid){
return pz.hasMetadata(uuid + "_attacked");
}
}
|
[
"[email protected]"
] | |
2a1e8cc75b847ca84b90109ad7f4592392ef08a7
|
b647fa78fd6c4e46bcaf11ab21d9b880e0c83f24
|
/src/designPatterns/command/classic/Main.java
|
c74c86d502060636f715249c59b256c37a435be7
|
[] |
no_license
|
Garazd/DesignPatterns
|
88b8f15816dec1346122fe267ba28ceddadda9f8
|
0df55b69e5791e4a4b45f7b8cec7c0702b40da75
|
refs/heads/master
| 2021-01-17T13:43:07.664499 | 2016-06-24T19:36:34 | 2016-06-24T19:36:34 | 36,253,867 | 2 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,199 |
java
|
package designPatterns.command.classic;
// наш конфиг
public class Main {
public static void main(String[] args) {
// эти алгоритмы мы хотим как-то run'ать из Invoker
// но при этом мы не хотим, чтобы Invoker про них знал лично
ReceiverA receiverA = new ReceiverA();
ReceiverB receiverB = new ReceiverB();
// это "как-то" (то, как мы будем выполнять алгоритмы)
// мы инкапсулируем в команды
// по одному кейзу использования на 1 команду
Command commandA = new ConcreteCommandA(receiverA);
Command commandB = new ConcreteCommandB(receiverB);
Command commandC = new ConcreteCommandC(receiverA);
// вот наш запускатор
Invoker invoker = new Invoker();
// печать разделителя для красивого вывода (не обращай внимания :))
printBreak();
// вставляем в него команду, под видом абстракциии
invoker.setCommand(commandA);
// и выполняем
invoker.doit();
// Вывод
// Processed by ReceiverA: data
printBreak();
// потом переключили команду
invoker.setCommand(commandB);
// и выполнение будет совсем другим
invoker.doit();
// Вывод
// ReceiverB got a: data
// CommandB result
printBreak();
// и так далее
invoker.setCommand(commandC);
invoker.doit();
// Вывод
// Processed by ReceiverA: Changed in CommandC: data
printBreak();
// в любой момент можем вернуть назад
invoker.setCommand(commandA);
invoker.doit();
// Вывод
// Processed by ReceiverA: data
printBreak();
}
private static void printBreak() {
System.out.println("--------------------");
}
}
|
[
"[email protected]"
] | |
426d5443a89224ec4d6532135565b83b34685117
|
225011bbc304c541f0170ef5b7ba09b967885e95
|
/mf/org/apache/html/dom/HTMLOptGroupElementImpl.java
|
8be62bfe965fe7d34a8695513b7af4a7ee2b552b
|
[] |
no_license
|
sebaudracco/bubble
|
66536da5367f945ca3318fecc4a5f2e68c1df7ee
|
e282cda009dfc9422594b05c63e15f443ef093dc
|
refs/heads/master
| 2023-08-25T09:32:04.599322 | 2018-08-14T15:27:23 | 2018-08-14T15:27:23 | 140,444,001 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 812 |
java
|
package mf.org.apache.html.dom;
import com.google.android.gms.plus.PlusShare;
import mf.org.w3c.dom.html.HTMLOptGroupElement;
public class HTMLOptGroupElementImpl extends HTMLElementImpl implements HTMLOptGroupElement {
private static final long serialVersionUID = -8807098641226171501L;
public boolean getDisabled() {
return getBinary("disabled");
}
public void setDisabled(boolean disabled) {
setAttribute("disabled", disabled);
}
public String getLabel() {
return capitalize(getAttribute(PlusShare.KEY_CALL_TO_ACTION_LABEL));
}
public void setLabel(String label) {
setAttribute(PlusShare.KEY_CALL_TO_ACTION_LABEL, label);
}
public HTMLOptGroupElementImpl(HTMLDocumentImpl owner, String name) {
super(owner, name);
}
}
|
[
"[email protected]"
] | |
169611ee43ef91d4965e37ed46acaece22f94c34
|
22f15292c5e65b6c2f2353deb8785178c5fdfda7
|
/src/main/java/com/gms/web/complex/CommandFactory.java
|
e12a2cc1e45b92dd86a0a83768449a8a91e76377
|
[] |
no_license
|
Okkaring/gms_spring
|
4daa9cf5dda9d6bd22fcad458db5d380a5a367d1
|
bba1243d253abd77c095df69b2043c09afc994d1
|
refs/heads/master
| 2021-01-23T14:15:40.794969 | 2017-09-07T02:27:40 | 2017-09-07T02:27:40 | 102,681,278 | 2 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 910 |
java
|
package com.gms.web.complex;
import com.gms.web.constant.Action;
import org.springframework.stereotype.Component;
import com.gms.web.command.*;
@Component
public class CommandFactory{
public static CommandDTO createCommand(String dir,String action,String page, String pageNumber, String column, String search){
CommandDTO cmd = null;
if(action==null){
action = Action.MOVE;
}
switch (action) {
case Action.MOVE:
case Action.LOGIN:
case Action.LOGOUT:
case Action.JOIN:
case Action.UPDATE:
case Action.DELETE:
case Action.DETAIL:
cmd = new MoveCommand(dir,action,page);
break;
case Action.LIST:
cmd = new ListCommand(dir, action, page, pageNumber);
break;
case Action.SEARCH:
cmd = new SearchCommand(dir, action, page, pageNumber, column, search);
break;
default :
System.out.println("CommandFactory: Cmd Fail");
break;
}
return cmd;
}
}
|
[
"[email protected]"
] | |
d0b09bbb2a11ff0760832437cd42ba3531597532
|
57e57f2634944d0595258a14af5e20b6df59185d
|
/bitcamp-java-application2-client/v33_2/src/main/java/com/eomcs/lms/handler/Command.java
|
ce944a20c41e447506947ab9a3feac91fb28f7c3
|
[] |
no_license
|
Soo77/bitcamp-java-20190527
|
f169431aafde5bf97c69484694560af14c246b97
|
655fc4fb5aedcac805da715def70bab1ed616d96
|
refs/heads/master
| 2020-06-13T20:16:02.844148 | 2019-10-02T11:29:06 | 2019-10-02T11:29:06 | 194,775,332 | 1 | 0 | null | 2020-04-30T11:49:50 | 2019-07-02T02:41:01 |
Java
|
UTF-8
|
Java
| false | false | 84 |
java
|
package com.eomcs.lms.handler;
public interface Command {
void execute();
}
|
[
"[email protected]"
] | |
72c97ec69faad4c9345729d98b8bab03019ce8d1
|
95e944448000c08dd3d6915abb468767c9f29d3c
|
/sources/com/p280ss/android/ugc/aweme/metrics/C33263e.java
|
7ebd9a81b9fb03b362bbe1da34677ce861bdf6bb
|
[] |
no_license
|
xrealm/tiktok-src
|
261b1faaf7b39d64bb7cb4106dc1a35963bd6868
|
90f305b5f981d39cfb313d75ab231326c9fca597
|
refs/heads/master
| 2022-11-12T06:43:07.401661 | 2020-07-04T20:21:12 | 2020-07-04T20:21:12 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 358 |
java
|
package com.p280ss.android.ugc.aweme.metrics;
/* renamed from: com.ss.android.ugc.aweme.metrics.e */
final /* synthetic */ class C33263e implements Runnable {
/* renamed from: a */
private final C33259d f86772a;
C33263e(C33259d dVar) {
this.f86772a = dVar;
}
public final void run() {
this.f86772a.mo85254g();
}
}
|
[
"[email protected]"
] | |
bf5e8ff53df9eb24108f38839cf7ad92b2097f77
|
9ee94b72a31ed0b865d4facfba279990452af5ca
|
/src/server/game/players/packets/impl/ItemClick3.java
|
9f02bf71daa55a8fa3ecd036482f49f3b0c7dc2d
|
[] |
no_license
|
Strucky/Euthymia
|
4b244067c80715eadd56caa0d9523df68136fc11
|
41696345bdb1241727bb730c7df58b786be7e6af
|
refs/heads/master
| 2023-02-03T03:57:02.321129 | 2020-12-23T19:57:57 | 2020-12-23T19:57:57 | 322,168,160 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,434 |
java
|
package server.game.players.packets.impl;
import server.Server;
import server.game.players.Client;
import server.game.players.packets.PacketType;
import server.game.players.content.HandleEmpty;
import server.util.Misc;
import server.game.players.content.Teles;
/**
* Item Click 3 Or Alternative Item Option 1
*
* @author Ryan / Lmctruck30
*
* Proper Streams
*/
public class ItemClick3 implements PacketType {
// i dont add gambling im removing his dice shit
@Override
public void processPacket(Client c, int packetType, int packetSize) {
int itemId11 = c.getInStream().readSignedWordBigEndianA();
int itemId1 = c.getInStream().readSignedWordA();
int itemId = c.getInStream().readSignedWordA();
if (!c.getItems().playerHasItem(itemId, 1)) {
return;
}
if (!c.getItems().playerHasItem(itemId, 1)) { // , itemSlot
return;
}
if (c.getPotions().potionNames(itemId)) {
HandleEmpty.handleEmptyItem(c, itemId, 229);
return;
}
if (HandleEmpty.canEmpty(itemId)) {
HandleEmpty.handleEmptyItem(c, itemId,
HandleEmpty.filledToEmpty(itemId));
return;
}
switch (itemId) {
case 2552:
case 2554:
case 2556:
case 2558:
case 2560:
case 2562:
case 2564:
case 2566:
c.itemUsing = itemId;
Teles.ROD(c);
break;
case 1712:
case 1710:
case 1708:
case 1706:
c.itemUsing = itemId;
Teles.AOG(c);
break;
case 3853:
case 3855:
case 3857:
case 3859:
case 3861:
case 3863:
case 3865:
case 3867:
c.itemUsing = itemId;
Teles.GN(c);
break;
case 5733:
if (c.getItems().playerHasItem(5733, 1)) {
c.getPA().removeAllWindows();
c.getPA().openUpBank();
}
break;
case 15098:
if (System.currentTimeMillis() - c.diceDelay >= 5000) {
for (int j = 0; j < Server.playerHandler.players.length; j++) {
if (Server.playerHandler.players[j] != null) {
Client c2 = (Client) Server.playerHandler.players[j];
c2.sendMessage("Project-OS channel mate "
+ Misc.ucFirst(c.playerName) + " rolled @red@"
+ Misc.random(100)
+ "@bla@ on the percentile dice.");
c.diceDelay = System.currentTimeMillis();
}
}
} else {
c.sendMessage("You must wait 10 seconds to roll dice again.");
}
break;
default:
if (c.playerRights == 3)
Misc.println(c.playerName + " - Item3rdOption: " + itemId
+ " : " + itemId11 + " : " + itemId1);
break;
}
}
}
|
[
"[email protected]"
] | |
6f7aa6b4e072b59d91559eac45f83ca9af3428f6
|
61d31471742fce0fe73fa2ada64469194d6580c7
|
/src/main/java/com/compilerexplorer/common/TaskRunner.java
|
c04ba97f4b250a50bf244f27503abc107e45a0bc
|
[] |
no_license
|
ogrebenyuk/compilerexplorer
|
69c1ff0d052dd789ad523f76a67faf03d1cdc004
|
ae759f78d7b2bd8869333eb718c0d50fd1e2c404
|
refs/heads/master
| 2023-07-25T07:23:25.200127 | 2023-07-15T23:50:36 | 2023-07-15T23:50:48 | 146,115,792 | 37 | 5 | null | 2023-03-13T17:11:47 | 2018-08-25T17:30:01 |
Java
|
UTF-8
|
Java
| false | false | 814 |
java
|
package com.compilerexplorer.common;
import com.intellij.openapi.progress.ProgressManager;
import com.intellij.openapi.progress.Task;
import com.intellij.openapi.progress.impl.BackgroundableProcessIndicator;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
public class TaskRunner {
@Nullable
private BackgroundableProcessIndicator currentProgressIndicator;
public void runTask(@NotNull Task.Backgroundable task) {
reset();
currentProgressIndicator = new BackgroundableProcessIndicator(task);
ProgressManager.getInstance().runProcessWithProgressAsynchronously(task, currentProgressIndicator);
}
public void reset() {
if (currentProgressIndicator != null) {
currentProgressIndicator.cancel();
}
}
}
|
[
"[email protected]"
] | |
7e98611ff69a4603e4f020eab45ff49810ab80dd
|
b7d0289761e58ba60b2ee41ec15a782a12ff49b5
|
/demo-std-mall/src/main/java/com/xnjr/mall/dto/req/XN808312Req.java
|
fcae7c1aa8d0a0800acb02c33e6228ea08196237
|
[] |
no_license
|
yiwocao/demo-mall-public
|
07a8142db08037c1ebec862dc2c48a6c5ba0360b
|
df602a8fe2a6c73f57d1bfb0c42641f7aaf1a1e7
|
refs/heads/master
| 2021-01-01T18:39:05.964543 | 2017-08-10T04:23:15 | 2017-08-10T04:23:15 | 98,390,377 | 0 | 0 | null | 2017-08-10T04:23:16 | 2017-07-26T06:58:09 |
JavaScript
|
UTF-8
|
Java
| false | false | 335 |
java
|
package com.xnjr.mall.dto.req;
/**
* 宝贝查询详情
* @author: asus
* @since: 2016年12月21日 下午4:47:30
* @history:
*/
public class XN808312Req {
// 编号
public String code;
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
}
|
[
"[email protected]"
] | |
2f49047a7a9289e026680776958abab3d1efbd68
|
f128b15dab76d82625501d5ae49a4ff9eab00fae
|
/Util/src/vib/core/util/environment/Environment.java
|
a946e91654ee94c34f0a8fbe660f4f6cf740f63d
|
[
"MIT"
] |
permissive
|
billhj/Etoile-java
|
02931fbe66ce1ff92237ea3214ccb7acf86218ec
|
1b231a7bb25d5707381667e73a15863244f847a7
|
refs/heads/master
| 2021-01-19T19:30:54.753823 | 2014-12-12T16:22:36 | 2014-12-12T16:22:36 | 27,172,863 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 15,026 |
java
|
/*
* This file is part of VIB (Virtual Interactive Behaviour).
*/
package vib.core.util.environment;
import java.util.ArrayList;
import java.util.List;
import vib.core.util.IniManager;
import vib.core.util.log.Logs;
import vib.core.util.math.Quaternion;
import vib.core.util.math.Vec3d;
import vib.core.util.xml.XML;
import vib.core.util.xml.XMLParser;
import vib.core.util.xml.XMLTree;
/**
*
* @author Pierre Philippe
* @author Andre-Marie Pez
*/
public class Environment {
// add a global static variable: TIME ???
private Root root = null;
private List<Leaf> listleaf = null;
private List<EnvironmentEventListener> listeners = new ArrayList<EnvironmentEventListener>();
// initialize the environment
public Environment() {
// initialize the time
// xxx.setTimeMillis(0.0);
// creating the tree (the root) with the landscape
// load the environment from file
listleaf = new ArrayList<Leaf>();
load(IniManager.getGlobals().getValueString("ENVIRONMENT"));
//TODO must be better
// move in the load function
// for (Iterator<Node> iter = root.getChildren().iterator(); iter.hasNext();) {
// Node child = iter.next();
// if(child instanceof Leaf) {
// listleaf.add((Leaf)child);
// }
// }
}
/**
*
* @param n
*/
public void addNode(Node n) {
addNode(n, root);
}
/**
*
* @param n
* @param parent
*/
public void addNode(Node n, TreeNode parent) {
if (n == root) {
return;
}
parent.addChildNode(n);
TreeEvent event = new TreeEvent();
event.childNode = n;
event.newParentNode = parent;
event.modifType = TreeEvent.MODIF_ADD;
fireTreeEvent(event);
}
public void addNode(Node n, TreeNode parent, int index) {
if (n == root) {
return;
}
parent.addChildNode(n, index);
TreeEvent event = new TreeEvent();
event.childNode = n;
event.newParentNode = parent;
event.modifType = TreeEvent.MODIF_ADD;
fireTreeEvent(event);
}
/**
*
* @param n
*/
public void removeNode(Node n) {
removeNode(n, root);
}
/**
*
* @param n
* @param parent
*/
public void removeNode(Node n, TreeNode parent) {
parent.removeChild(n);
TreeEvent event = new TreeEvent();
event.childNode = n;
event.oldParentNode = parent;
event.modifType = TreeEvent.MODIF_REMOVE;
fireTreeEvent(event);
}
/**
*
* @param n
* @param newParent
*/
public void moveNode(Node n, TreeNode newParent) {
if (n == root) {
return;
}
if (newParent != null) {
if (n.parent == null) {
addNode(n, newParent);
} else {
TreeEvent event = new TreeEvent();
event.childNode = n;
event.newParentNode = n.parent;
event.oldParentNode = newParent;
event.modifType = TreeEvent.MODIF_MOVE;
n.parent.removeChild(n);
newParent.addChildNode(n);
fireTreeEvent(event);
}
} else {
if (n.parent != null) {
removeNode(n, n.parent);
}
}
}
/**
*
* @param tn
*/
public void removeObject(TreeNode tn) {
tn.remove();
}
/**
* return the root of the environment
*
* @return TreeNode root
*/
public TreeNode getRoot() {
return root;
}
/**
* return the list of all the leaves
*
* @return list of leaf
*/
public List<Leaf> getListLeaf() {
return listleaf;
}
/**
* return the global tree
*
* @return TreeNode root
*/
public TreeNode getTreeNode() {
return root;
}
/**
* return a specifique Node
*
* @param id
* @return the target Node
*/
public Node getNode(String id) {
if (id == null) {
return null;
}
if (root.getIdentifier().equals(id)) {
return root;
} else {
return search(id, root);
}
}
public Vec3d getRelativeTargetVector(Vec3d target, Vec3d source, Quaternion sourceOrient) {
//target look at vector
Vec3d lookAtVector = Vec3d.substraction(target, source);
//relative position from the position to the target
Vec3d relativeTargetPos = //Vec3f.substraction(source,
sourceOrient.inverseRotate(lookAtVector);//);
return relativeTargetPos;
}
public Vec3d getTargetRelativeEulerAngles(Vec3d target, Vec3d source, Quaternion sourceOrient) {
if (target == null || sourceOrient == null) {
return new Vec3d();
}
Vec3d relativeTargetPos = getRelativeTargetVector(target, source, sourceOrient);
//this is from -PI/2 to PI/2...
double yawAngle = Math.atan(relativeTargetPos.x() / Math.abs(relativeTargetPos.z()));
double pitchAngle = Math.atan(relativeTargetPos.y() / Math.abs(relativeTargetPos.z()));
//so we check if the target is behind...
if (relativeTargetPos.z() < 0) {
if (yawAngle > 0) {
yawAngle += Math.PI / 2;
} else {
yawAngle -= Math.PI / 2;
}
}
//theta (yaw, horizontal), phi (pitch, vertical), 0 (roll, "dutch angle")
//if theta is positive, target to the left
//if phi is positive, target is upwards
return new Vec3d((float) yawAngle, (float) pitchAngle, 0.0f);
}
/* This should work for two eyes... However, best use symbolic notations
* for target and source eyes : for more reusability
* for instance, we could then look with left eye to foot of target...
*
*
*
public Vec3f getTargetRelativePosition(String targetId, Vec3f pos, Quaternion orient){
TreeNode target = (TreeNode) search(targetId, root);
//target look at vector
Vec3f lookAtVector = Vec3f.substraction(pos, target.getGlobalCoordinates());
//relative position from the position to the target
Vec3f relativeTargetPos = Vec3f.substraction(pos, orient.inverseRotate(lookAtVector));
return relativeTargetPos;
}
public Vec3f[] getTargetRelativeEulerAngles(String targetId, String originId){
TreeNode source = (TreeNode) search(originId, root);
//TODO : coordinates should be adjusted with scale parameters !!!
// this only works for a 1.0 scale character...
Vec3f l_pos = new Vec3f(source.getGlobalCoordinates().x()+0.035f,
source.getGlobalCoordinates().y()+1.575f,
source.getGlobalCoordinates().z()+0.080f);
Vec3f r_pos = new Vec3f(source.getGlobalCoordinates().x()-0.035f,
source.getGlobalCoordinates().y()+1.575f,
source.getGlobalCoordinates().z()+0.080f);
Vec3f relativeTargetPos_l = getTargetRelativePosition(targetId, l_pos, source.getGlobalOrientation());
Vec3f relativeTargetPos_r = getTargetRelativePosition(targetId, r_pos, source.getGlobalOrientation());
//this is from -PI/2 to PI/2...
double yawAngle_l = Math.atan(relativeTargetPos_l.x()/Math.abs(relativeTargetPos_l.z()));
double pitchAngle_l = Math.atan(relativeTargetPos_l.y()/Math.abs(relativeTargetPos_l.z()));
double yawAngle_r = Math.atan(relativeTargetPos_r.x()/Math.abs(relativeTargetPos_r.z()));
double pitchAngle_r = Math.atan(relativeTargetPos_r.y()/Math.abs(relativeTargetPos_r.z()));
//...so we check if the target is behind...
if(relativeTargetPos_l.z()<0)
{
if(yawAngle_l>0)
yawAngle_l+= Math.PI/2;
else
yawAngle_l-= Math.PI/2;
}
if(relativeTargetPos_r.z()<0)
{
if(yawAngle_l>0)
yawAngle_r+= Math.PI/2;
else
yawAngle_r-= Math.PI/2;
}
Vec3f[] lrEulerAngles = new Vec3f[2];
//theta (yaw, horizontal), phi (pitch, vertical), 0 (roll, "dutch angle")
//if theta is positive, target to the left
//if phi is positive, target is upwards
lrEulerAngles[0] = new Vec3f( (float)yawAngle_l, (float)pitchAngle_l, 0.0f );
lrEulerAngles[1] = new Vec3f( (float)yawAngle_r, (float)pitchAngle_r, 0.0f );
return lrEulerAngles;
}
*/
private Node search(String id, TreeNode parent) {
for (Node child : parent.getChildren()) {
if (child.getIdentifier().equals(id)) {
return child;
}
if (child instanceof TreeNode) {
TreeNode childTreeNode = (TreeNode) child;
Node found = search(id, childTreeNode);
if (found != null) {
return found;
}
}
}
return null;
}
/**
*
* @param filename
*/
public void load(String filename) {
XMLParser parser = XML.createParser();
parser.setValidating(false);
XMLTree xmlRoot = parser.parseFile(filename);
// verify the file
root = new Root(this);
if (xmlRoot == null) {
Logs.warning(this.getClass().getName() + ": problem with loading file " + filename);
return;
}
load(xmlRoot, root);
}
/**
*
* @param buffer the XML content
*/
public void loadBuffer(String buffer) {
XMLParser parser = XML.createParser();
parser.setValidating(false);
XMLTree xmlRoot = parser.parseBuffer(buffer);
// verify the file
root = new Root(this);
if (xmlRoot == null) {
Logs.warning(this.getClass().getName() + ": problem with loading buffer");
return;
}
load(xmlRoot, root);
}
/**
*
* @param xmlTree
* @param tn
*/
private void load(XMLTree xmlTree, TreeNode tn) {
if (xmlTree.isNamed("node")) {
XMLTree positionXML = xmlTree.findNodeCalled("position");
if (positionXML != null) {
float x = positionXML.hasAttribute("x") ? (float) positionXML.getAttributeNumber("x") : 0;
float y = positionXML.hasAttribute("y") ? (float) positionXML.getAttributeNumber("y") : 0;
float z = positionXML.hasAttribute("z") ? (float) positionXML.getAttributeNumber("z") : 0;
tn.setCoordinates(x, y, z);
}
XMLTree orientationXML = xmlTree.findNodeCalled("orientation");
if (orientationXML != null) {
boolean radian = orientationXML.hasAttribute("type") && orientationXML.getAttribute("type").equalsIgnoreCase("radian");
float x = (float) orientationXML.getAttributeNumber("x");
float y = (float) orientationXML.getAttributeNumber("y");
float z = (float) orientationXML.getAttributeNumber("z");
if (!radian) { //degree
x = (float) Math.toRadians(x);
y = (float) Math.toRadians(y);
z = (float) Math.toRadians(z);
}
tn.setOrientation(x, y, z);
}
XMLTree scaleXML = xmlTree.findNodeCalled("scale");
if (scaleXML != null) {
float x = scaleXML.hasAttribute("x") ? (float) scaleXML.getAttributeNumber("x") : 1;
float y = scaleXML.hasAttribute("y") ? (float) scaleXML.getAttributeNumber("y") : 1;
float z = scaleXML.hasAttribute("z") ? (float) scaleXML.getAttributeNumber("z") : 1;
tn.setScale(x, y, z);
}
}
for (XMLTree xmlchild : xmlTree.getChildrenElement()) {
Node childNode = null;
// control in xmlchild if its a leaf, an animatable or a node
if (xmlchild.isNamed("node")) {
TreeNode mynewnode = new TreeNode();
tn.addChildNode(mynewnode);
load(xmlchild, mynewnode);
childNode = mynewnode;
} else if (xmlchild.isNamed("leaf")) {
String ref = xmlchild.getAttribute("reference");
float x = 1, y = 1, z = 1;
XMLTree leafsize = xmlchild.findNodeCalled("size");
if (leafsize != null) {
x = (float) leafsize.getAttributeNumber("x");
y = (float) leafsize.getAttributeNumber("y");
z = (float) leafsize.getAttributeNumber("z");
}
Leaf lf = new Leaf();
lf.setSize(x, y, z);
lf.setReference(ref);
if (tn instanceof Animatable) {
((Animatable) tn).setAttachedLeaf(lf);
} else {
tn.addChildNode(lf);
}
listleaf.add(lf);
childNode = lf;
} else if (xmlchild.isNamed("animatable")) {
Animatable anim = new Animatable();
tn.addChildNode(anim);
load(xmlchild, anim);
childNode = anim;
}
if (childNode != null && xmlchild.hasAttribute("id")) {
childNode.setIdentifier(xmlchild.getAttribute("id"));
}
}
}
public XMLTree asXML() {
return root.asXML(true, false);
}
public List<Node> getGuests() {
List<Node> res = new ArrayList<Node>(root.getChildren().size());
for (Node node : root.getChildren()) {
if (node.isGuest()) {
res.add(node);
}
}
return res;
}
public List<XMLTree> getGuestsAsXML() {
List<Node> guests = getGuests();
List<XMLTree> res = new ArrayList<XMLTree>(guests.size());
for (Node guest : guests) {
res.add(guest.asXML(true, true));
}
return res;
}
/**
*
* @param listener
*/
public void addEnvironementListener(EnvironmentEventListener listener) {
listeners.add(listener);
}
/**
*
* @param listener
*/
public void removeEnvironementListener(EnvironmentEventListener listener) {
listeners.remove(listener);
}
/**
*
* @param event
*/
private void fireTreeEvent(TreeEvent event) {
for (EnvironmentEventListener listener : listeners) {
listener.onTreeChange(event);
}
}
/**
*
* @param event
*/
protected void fireNodeEvent(NodeEvent event) {
for (EnvironmentEventListener listener : listeners) {
listener.onNodeChange(event);
}
}
protected void fireLeafEvent(LeafEvent event) {
for (EnvironmentEventListener listener : listeners) {
listener.onLeafChange(event);
}
}
}
|
[
"[email protected]"
] | |
d7e5f3b42152bdd3307fe35d0410564f8a11e889
|
0493ffe947dad031c7b19145523eb39209e8059a
|
/OpenJdk8uTest/src/test/sun/nio/cs/OLD/IBM1383_OLD.java
|
62925d9184eb69043a7d2496487d771e5fba907d
|
[] |
no_license
|
thelinh95/Open_Jdk8u_Test
|
7612f1b63b5001d1df85c1df0d70627b123de80f
|
4df362a71e680dbd7dfbb28c8922e8f20373757a
|
refs/heads/master
| 2021-01-16T19:27:30.506632 | 2017-08-13T23:26:05 | 2017-08-13T23:26:05 | 100,169,775 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 299,870 |
java
|
package test.sun.nio.cs.OLD;
/*
* Copyright (c) 2003, 2006, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
*/
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.CharacterCodingException;
import sun.nio.cs.HistoricallyNamedCharset;
import sun.nio.cs.ext.*;
public class IBM1383_OLD
extends Charset
implements HistoricallyNamedCharset
{
public IBM1383_OLD() {
super("x-IBM1383-Old", null);
}
public String historicalName() {
return "Cp1383";
}
public boolean contains(Charset cs) {
return (cs instanceof IBM1383);
}
public CharsetDecoder newDecoder() {
return new Decoder(this);
}
public CharsetEncoder newEncoder() {
return new Encoder(this);
}
public String getDecoderSingleByteMappings() {
return Decoder.byteToCharTable;
}
public String getDecoderMappingTableG1() {
return Decoder.mappingTableG1;
}
public short[] getEncoderIndex1() {
return Encoder.index1;
}
public String getEncoderIndex2() {
return Encoder.index2;
}
public String getEncoderIndex2a() {
return Encoder.index2a;
}
protected static class Decoder extends SimpleEUCDecoder {
public Decoder(Charset cs) {
super(cs);
super.byteToCharTable = this.byteToCharTable;
super.mappingTableG1 = this.mappingTableG1;
}
private final static String byteToCharTable;
private final static String mappingTableG1;
static {
byteToCharTable =
"\u0000\u0001\u0002\u0003\u0004\u0005\u0006\u0007" +
"\u0008\u0009\n\u000B\u000C\r\u000E\u000F" +
"\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017" +
"\u0018\u0019\u001A\u001B\u001C\u001D\u001E\u001F" +
"\u0020\u0021\"\u0023\u0024\u0025\u0026\u0027" +
"\u0028\u0029\u002A\u002B\u002C\u002D\u002E\u002F" +
"\u0030\u0031\u0032\u0033\u0034\u0035\u0036\u0037" +
"\u0038\u0039\u003A\u003B\u003C\u003D\u003E\u003F" +
"\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047" +
"\u0048\u0049\u004A\u004B\u004C\u004D\u004E\u004F" +
"\u0050\u0051\u0052\u0053\u0054\u0055\u0056\u0057" +
"\u0058\u0059\u005A\u005B\\\u005D\u005E\u005F" +
"\u0060\u0061\u0062\u0063\u0064\u0065\u0066\u0067" +
"\u0068\u0069\u006A\u006B\u006C\u006D\u006E\u006F" +
"\u0070\u0071\u0072\u0073\u0074\u0075\u0076\u0077" +
"\u0078\u0079\u007A\u007B\u007C\u007D\u007E\u007F" +
"\u0080\u0081\u0082\u0083\u0084\u0085\u0086\u0087" +
"\u0088\u0089\u008A\u008B\u008C\u008D\uFFFD\uFFFD" +
"\u0090\u0091\u0092\u0093\u0094\u0095\u0096\u0097" +
"\u0098\u0099\u009A\u009B\u009C\u009D\u009E\u009F"
;
mappingTableG1 =
"\u3000\u3001\u3002\u30FB\u02C9\u02C7\u00A8\u3003" +
"\u3005\u2015\uFF5E\u2016\u2026\u2018\u2019\u201C" +
"\u201D\u3014\u3015\u3008\u3009\u300A\u300B\u300C" +
"\u300D\u300E\u300F\u3016\u3017\u3010\u3011\u00B1" +
"\u00D7\u00F7\u2236\u2227\u2228\u2211\u220F\u222A" +
"\u2229\u2208\u2237\u221A\u22A5\u2225\u2220\u2312" +
"\u2299\u222B\u222E\u2261\u224C\u2248\u223D\u221D" +
"\u2260\u226E\u226F\u2264\u2265\u221E\u2235\u2234" +
"\u2642\u2640\u00B0\u2032\u2033\u2103\uFF04\u00A4" +
"\uFFE0\uFFE1\u2030\u00A7\u2116\u2606\u2605\u25CB" +
"\u25CF\u25CE\u25C7\u25C6\u25A1\u25A0\u25B3\u25B2" +
"\u203B\u2192\u2190\u2191\u2193\u3013\uE000\uE001" +
"\uE002\uE003\uE004\uE005\uE006\uE007\uE008\uE009" +
"\uE00A\uE00B\uE00C\uE00D\uE00E\uE00F\u2488\u2489" +
"\u248A\u248B\u248C\u248D\u248E\u248F\u2490\u2491" +
"\u2492\u2493\u2494\u2495\u2496\u2497\u2498\u2499" +
"\u249A\u249B\u2474\u2475\u2476\u2477\u2478\u2479" +
"\u247A\u247B\u247C\u247D\u247E\u247F\u2480\u2481" +
"\u2482\u2483\u2484\u2485\u2486\u2487\u2460\u2461" +
"\u2462\u2463\u2464\u2465\u2466\u2467\u2468\u2469" +
"\uE010\uE011\u3220\u3221\u3222\u3223\u3224\u3225" +
"\u3226\u3227\u3228\u3229\uE012\uE013\u2160\u2161" +
"\u2162\u2163\u2164\u2165\u2166\u2167\u2168\u2169" +
"\u216A\u216B\uE014\uE015\uFF01\uFF02\uFF03\uFFE5" +
"\uFF05\uFF06\u00B4\uFF08\uFF09\uFF0A\uFF0B\uFF0C" +
"\uFF0D\uFF0E\uFF0F\uFF10\uFF11\uFF12\uFF13\uFF14" +
"\uFF15\uFF16\uFF17\uFF18\uFF19\uFF1A\uFF1B\uFF1C" +
"\uFF1D\uFF1E\uFF1F\uFF20\uFF21\uFF22\uFF23\uFF24" +
"\uFF25\uFF26\uFF27\uFF28\uFF29\uFF2A\uFF2B\uFF2C" +
"\uFF2D\uFF2E\uFF2F\uFF30\uFF31\uFF32\uFF33\uFF34" +
"\uFF35\uFF36\uFF37\uFF38\uFF39\uFF3A\uFF3B\uFF3C" +
"\uFF3D\uFF3E\uFF3F\uFF40\uFF41\uFF42\uFF43\uFF44" +
"\uFF45\uFF46\uFF47\uFF48\uFF49\uFF4A\uFF4B\uFF4C" +
"\uFF4D\uFF4E\uFF4F\uFF50\uFF51\uFF52\uFF53\uFF54" +
"\uFF55\uFF56\uFF57\uFF58\uFF59\uFF5A\uFF5B\uFF5C" +
"\uFF5D\uFFE3\u3041\u3042\u3043\u3044\u3045\u3046" +
"\u3047\u3048\u3049\u304A\u304B\u304C\u304D\u304E" +
"\u304F\u3050\u3051\u3052\u3053\u3054\u3055\u3056" +
"\u3057\u3058\u3059\u305A\u305B\u305C\u305D\u305E" +
"\u305F\u3060\u3061\u3062\u3063\u3064\u3065\u3066" +
"\u3067\u3068\u3069\u306A\u306B\u306C\u306D\u306E" +
"\u306F\u3070\u3071\u3072\u3073\u3074\u3075\u3076" +
"\u3077\u3078\u3079\u307A\u307B\u307C\u307D\u307E" +
"\u307F\u3080\u3081\u3082\u3083\u3084\u3085\u3086" +
"\u3087\u3088\u3089\u308A\u308B\u308C\u308D\u308E" +
"\u308F\u3090\u3091\u3092\u3093\uE016\uE017\uE018" +
"\uE019\uE01A\uE01B\uE01C\uE01D\uE01E\uE01F\uE020" +
"\u30A1\u30A2\u30A3\u30A4\u30A5\u30A6\u30A7\u30A8" +
"\u30A9\u30AA\u30AB\u30AC\u30AD\u30AE\u30AF\u30B0" +
"\u30B1\u30B2\u30B3\u30B4\u30B5\u30B6\u30B7\u30B8" +
"\u30B9\u30BA\u30BB\u30BC\u30BD\u30BE\u30BF\u30C0" +
"\u30C1\u30C2\u30C3\u30C4\u30C5\u30C6\u30C7\u30C8" +
"\u30C9\u30CA\u30CB\u30CC\u30CD\u30CE\u30CF\u30D0" +
"\u30D1\u30D2\u30D3\u30D4\u30D5\u30D6\u30D7\u30D8" +
"\u30D9\u30DA\u30DB\u30DC\u30DD\u30DE\u30DF\u30E0" +
"\u30E1\u30E2\u30E3\u30E4\u30E5\u30E6\u30E7\u30E8" +
"\u30E9\u30EA\u30EB\u30EC\u30ED\u30EE\u30EF\u30F0" +
"\u30F1\u30F2\u30F3\u30F4\u30F5\u30F6\uE021\uE022" +
"\uE023\uE024\uE025\uE026\uE027\uE028\u0391\u0392" +
"\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039A" +
"\u039B\u039C\u039D\u039E\u039F\u03A0\u03A1\u03A3" +
"\u03A4\u03A5\u03A6\u03A7\u03A8\u03A9\uE029\uE02A" +
"\uE02B\uE02C\uE02D\uE02E\uE02F\uE030\u03B1\u03B2" +
"\u03B3\u03B4\u03B5\u03B6\u03B7\u03B8\u03B9\u03BA" +
"\u03BB\u03BC\u03BD\u03BE\u03BF\u03C0\u03C1\u03C3" +
"\u03C4\u03C5\u03C6\u03C7\u03C8\u03C9\uE031\uE032" +
"\uE033\uE034\uE035\uE036\uE037\uE038\uE039\uE03A" +
"\uE03B\uE03C\uE03D\uE03E\uE03F\uE040\uE041\uE042" +
"\uE043\uE044\uE045\uE046\uE047\uE048\uE049\uE04A" +
"\uE04B\uE04C\uE04D\uE04E\uE04F\uE050\uE051\uE052" +
"\uE053\uE054\uE055\uE056\u0410\u0411\u0412\u0413" +
"\u0414\u0415\u0401\u0416\u0417\u0418\u0419\u041A" +
"\u041B\u041C\u041D\u041E\u041F\u0420\u0421\u0422" +
"\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042A" +
"\u042B\u042C\u042D\u042E\u042F\uE057\uE058\uE059" +
"\uE05A\uE05B\uE05C\uE05D\uE05E\uE05F\uE060\uE061" +
"\uE062\uE063\uE064\uE065\u0430\u0431\u0432\u0433" +
"\u0434\u0435\u0451\u0436\u0437\u0438\u0439\u043A" +
"\u043B\u043C\u043D\u043E\u043F\u0440\u0441\u0442" +
"\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044A" +
"\u044B\u044C\u044D\u044E\u044F\uE066\uE067\uE068" +
"\uE069\uE06A\uE06B\uE06C\uE06D\uE06E\uE06F\uE070" +
"\uE071\uE072\u0101\u00E1\u01CE\u00E0\u0113\u00E9" +
"\u011B\u00E8\u012B\u00ED\u01D0\u00EC\u014D\u00F3" +
"\u01D2\u00F2\u016B\u00FA\u01D4\u00F9\u01D6\u01D8" +
"\u01DA\u01DC\u00FC\u00EA\uE073\uE074\uE075\uE076" +
"\uE077\uE078\uE079\uE07A\uE07B\uE07C\u3105\u3106" +
"\u3107\u3108\u3109\u310A\u310B\u310C\u310D\u310E" +
"\u310F\u3110\u3111\u3112\u3113\u3114\u3115\u3116" +
"\u3117\u3118\u3119\u311A\u311B\u311C\u311D\u311E" +
"\u311F\u3120\u3121\u3122\u3123\u3124\u3125\u3126" +
"\u3127\u3128\u3129\uE07D\uE07E\uE07F\uE080\uE081" +
"\uE082\uE083\uE084\uE085\uE086\uE087\uE088\uE089" +
"\uE08A\uE08B\uE08C\uE08D\uE08E\uE08F\uE090\uE091" +
"\uE092\uE093\uE094\u2500\u2501\u2502\u2503\u2504" +
"\u2505\u2506\u2507\u2508\u2509\u250A\u250B\u250C" +
"\u250D\u250E\u250F\u2510\u2511\u2512\u2513\u2514" +
"\u2515\u2516\u2517\u2518\u2519\u251A\u251B\u251C" +
"\u251D\u251E\u251F\u2520\u2521\u2522\u2523\u2524" +
"\u2525\u2526\u2527\u2528\u2529\u252A\u252B\u252C" +
"\u252D\u252E\u252F\u2530\u2531\u2532\u2533\u2534" +
"\u2535\u2536\u2537\u2538\u2539\u253A\u253B\u253C" +
"\u253D\u253E\u253F\u2540\u2541\u2542\u2543\u2544" +
"\u2545\u2546\u2547\u2548\u2549\u254A\u254B\uE095" +
"\uE096\uE097\uE098\uE099\uE09A\uE09B\uE09C\uE09D" +
"\uE09E\uE09F\uE0A0\uE0A1\uE0A2\uE0A3\uE0A4\uE0A5" +
"\uE0A6\uE0A7\uE0A8\uE0A9\uE0AA\uE0AB\uE0AC\uE0AD" +
"\uE0AE\uE0AF\uE0B0\uE0B1\uE0B2\uE0B3\uE0B4\uE0B5" +
"\uE0B6\uE0B7\uE0B8\uE0B9\uE0BA\uE0BB\uE0BC\uE0BD" +
"\uE0BE\uE0BF\uE0C0\uE0C1\uE0C2\uE0C3\uE0C4\uE0C5" +
"\uE0C6\uE0C7\uE0C8\uE0C9\uE0CA\uE0CB\uE0CC\uE0CD" +
"\uE0CE\uE0CF\uE0D0\uE0D1\uE0D2\uE0D3\uE0D4\uE0D5" +
"\uE0D6\uE0D7\uE0D8\uE0D9\uE0DA\uE0DB\uE0DC\uE0DD" +
"\uE0DE\uE0DF\uE0E0\uE0E1\uE0E2\uE0E3\uE0E4\uE0E5" +
"\uE0E6\uE0E7\uE0E8\uE0E9\uE0EA\uE0EB\uE0EC\uE0ED" +
"\uE0EE\uE0EF\uE0F0\uE0F1\uE0F2\uE0F3\uE0F4\uE0F5" +
"\uE0F6\uE0F7\uE0F8\uE0F9\uE0FA\uE0FB\uE0FC\uE0FD" +
"\uE0FE\uE0FF\uE100\uE101\uE102\uE103\uE104\uE105" +
"\uE106\uE107\uE108\uE109\uE10A\uE10B\uE10C\uE10D" +
"\uE10E\uE10F\uE110\uE111\uE112\uE113\uE114\uE115" +
"\uE116\uE117\uE118\uE119\uE11A\uE11B\uE11C\uE11D" +
"\uE11E\uE11F\uE120\uE121\uE122\uE123\uE124\uE125" +
"\uE126\uE127\uE128\uE129\uE12A\uE12B\uE12C\uE12D" +
"\uE12E\uE12F\uE130\uE131\uE132\uE133\uE134\uE135" +
"\uE136\uE137\uE138\uE139\uE13A\uE13B\uE13C\uE13D" +
"\uE13E\uE13F\uE140\uE141\uE142\uE143\uE144\uE145" +
"\uE146\uE147\uE148\uE149\uE14A\uE14B\uE14C\uE14D" +
"\uE14E\uE14F\uE150\uE151\uE152\uE153\uE154\uE155" +
"\uE156\uE157\uE158\uE159\uE15A\uE15B\uE15C\uE15D" +
"\uE15E\uE15F\uE160\uE161\uE162\uE163\uE164\uE165" +
"\uE166\uE167\uE168\uE169\uE16A\uE16B\uE16C\uE16D" +
"\uE16E\uE16F\uE170\uE171\uE172\uE173\uE174\uE175" +
"\uE176\uE177\uE178\uE179\uE17A\uE17B\uE17C\uE17D" +
"\uE17E\uE17F\uE180\uE181\uE182\uE183\uE184\uE185" +
"\uE186\uE187\uE188\uE189\uE18A\uE18B\uE18C\uE18D" +
"\uE18E\uE18F\uE190\uE191\uE192\uE193\uE194\uE195" +
"\uE196\uE197\uE198\uE199\uE19A\uE19B\uE19C\uE19D" +
"\uE19E\uE19F\uE1A0\uE1A1\uE1A2\uE1A3\uE1A4\uE1A5" +
"\uE1A6\uE1A7\uE1A8\uE1A9\uE1AA\uE1AB\uE1AC\uE1AD" +
"\uE1AE\uE1AF\uE1B0\uE1B1\uE1B2\uE1B3\uE1B4\uE1B5" +
"\uE1B6\uE1B7\uE1B8\uE1B9\uE1BA\uE1BB\uE1BC\uE1BD" +
"\uE1BE\uE1BF\uE1C0\uE1C1\uE1C2\uE1C3\uE1C4\uE1C5" +
"\uE1C6\uE1C7\uE1C8\uE1C9\uE1CA\uE1CB\uE1CC\uE1CD" +
"\uE1CE\uE1CF\uE1D0\uE1D1\uE1D2\uE1D3\uE1D4\uE1D5" +
"\uE1D6\uE1D7\uE1D8\uE1D9\uE1DA\uE1DB\uE1DC\uE1DD" +
"\uE1DE\uE1DF\uE1E0\uE1E1\uE1E2\uE1E3\uE1E4\uE1E5" +
"\uE1E6\uE1E7\uE1E8\uE1E9\uE1EA\uE1EB\uE1EC\uE1ED" +
"\uE1EE\uE1EF\uE1F0\uE1F1\uE1F2\uE1F3\uE1F4\uE1F5" +
"\uE1F6\uE1F7\uE1F8\uE1F9\uE1FA\uE1FB\uE1FC\uE1FD" +
"\uE1FE\uE1FF\uE200\uE201\uE202\uE203\uE204\uE205" +
"\uE206\uE207\uE208\uE209\uE20A\uE20B\uE20C\uE20D" +
"\uE20E\uE20F\uE210\uE211\uE212\uE213\uE214\uE215" +
"\uE216\uE217\uE218\uE219\uE21A\uE21B\uE21C\uE21D" +
"\uE21E\uE21F\uE220\uE221\uE222\uE223\uE224\uE225" +
"\uE226\uE227\uE228\uE229\uE22A\uE22B\uE22C\uE22D" +
"\uE22E\uE22F\uE230\uE231\uE232\uE233\uE234\uE235" +
"\uE236\uE237\uE238\uE239\uE23A\uE23B\uE23C\uE23D" +
"\uE23E\uE23F\uE240\uE241\uE242\uE243\uE244\uE245" +
"\uE246\uE247\uE248\uE249\uE24A\uE24B\uE24C\uE24D" +
"\uE24E\uE24F\uE250\uE251\uE252\uE253\uE254\uE255" +
"\uE256\uE257\uE258\uE259\uE25A\uE25B\uE25C\uE25D" +
"\uE25E\uE25F\uE260\uE261\uE262\uE263\uE264\uE265" +
"\uE266\uE267\uE268\uE269\uE26A\uE26B\uE26C\uE26D" +
"\uE26E\uE26F\uE270\uE271\uE272\uE273\uE274\uE275" +
"\uE276\uE277\uE278\uE279\uE27A\uE27B\uE27C\uE27D" +
"\uE27E\uE27F\uE280\uE281\uE282\uE283\uE284\uE285" +
"\uE286\uE287\uE288\uE289\uE28A\uE28B\uE28C\uE28D" +
"\uE28E\uE28F\uE290\uE291\uE292\uE293\uE294\uE295" +
"\uE296\uE297\uE298\uE299\uE29A\uE29B\uE29C\uE29D" +
"\uE29E\uE29F\uE2A0\uE2A1\uE2A2\uE2A3\uE2A4\uE2A5" +
"\uE2A6\uE2A7\uE2A8\uE2A9\uE2AA\uE2AB\uE2AC\uE2AD" +
"\uE2AE\uE2AF\uE2B0\uE2B1\uE2B2\uE2B3\uE2B4\uE2B5" +
"\uE2B6\uE2B7\uE2B8\uE2B9\uE2BA\uE2BB\uE2BC\uE2BD" +
"\uE2BE\uE2BF\uE2C0\uE2C1\uE2C2\uE2C3\uE2C4\uE2C5" +
"\uE2C6\uE2C7\uE2C8\uE2C9\uE2CA\uE2CB\uE2CC\uE2CD" +
"\uE2CE\uE2CF\uE2D0\uE2D1\uE2D2\uE2D3\uE2D4\uE2D5" +
"\uE2D6\uE2D7\u554A\u963F\u57C3\u6328\u54CE\u5509" +
"\u54C0\u7691\u764C\u853C\u77EE\u827E\u788D\u7231" +
"\u9698\u978D\u6C28\u5B89\u4FFA\u6309\u6697\u5CB8" +
"\u80FA\u6848\u80AE\u6602\u76CE\u51F9\u6556\u71AC" +
"\u7FF1\u8884\u50B2\u5965\u61CA\u6FB3\u82AD\u634C" +
"\u6252\u53ED\u5427\u7B06\u516B\u75A4\u5DF4\u62D4" +
"\u8DCB\u9776\u628A\u8019\u575D\u9738\u7F62\u7238" +
"\u767D\u67CF\u767E\u6446\u4F70\u8D25\u62DC\u7A17" +
"\u6591\u73ED\u642C\u6273\u822C\u9881\u677F\u7248" +
"\u626E\u62CC\u4F34\u74E3\u534A\u529E\u7ECA\u90A6" +
"\u5E2E\u6886\u699C\u8180\u7ED1\u68D2\u78C5\u868C" +
"\u9551\u508D\u8C24\u82DE\u80DE\u5305\u8912\u5265" +
"\u8584\u96F9\u4FDD\u5821\u9971\u5B9D\u62B1\u62A5" +
"\u66B4\u8C79\u9C8D\u7206\u676F\u7891\u60B2\u5351" +
"\u5317\u8F88\u80CC\u8D1D\u94A1\u500D\u72C8\u5907" +
"\u60EB\u7119\u88AB\u5954\u82EF\u672C\u7B28\u5D29" +
"\u7EF7\u752D\u6CF5\u8E66\u8FF8\u903C\u9F3B\u6BD4" +
"\u9119\u7B14\u5F7C\u78A7\u84D6\u853D\u6BD5\u6BD9" +
"\u6BD6\u5E01\u5E87\u75F9\u95ED\u655D\u5F0A\u5FC5" +
"\u8F9F\u58C1\u81C2\u907F\u965B\u97AD\u8FB9\u7F16" +
"\u8D2C\u6241\u4FBF\u53D8\u535E\u8FA8\u8FA9\u8FAB" +
"\u904D\u6807\u5F6A\u8198\u8868\u9CD6\u618B\u522B" +
"\u762A\u5F6C\u658C\u6FD2\u6EE8\u5BBE\u6448\u5175" +
"\u51B0\u67C4\u4E19\u79C9\u997C\u70B3\u75C5\u5E76" +
"\u73BB\u83E0\u64AD\u62E8\u94B5\u6CE2\u535A\u52C3" +
"\u640F\u94C2\u7B94\u4F2F\u5E1B\u8236\u8116\u818A" +
"\u6E24\u6CCA\u9A73\u6355\u535C\u54FA\u8865\u57E0" +
"\u4E0D\u5E03\u6B65\u7C3F\u90E8\u6016\u64E6\u731C" +
"\u88C1\u6750\u624D\u8D22\u776C\u8E29\u91C7\u5F69" +
"\u83DC\u8521\u9910\u53C2\u8695\u6B8B\u60ED\u60E8" +
"\u707F\u82CD\u8231\u4ED3\u6CA7\u85CF\u64CD\u7CD9" +
"\u69FD\u66F9\u8349\u5395\u7B56\u4FA7\u518C\u6D4B" +
"\u5C42\u8E6D\u63D2\u53C9\u832C\u8336\u67E5\u78B4" +
"\u643D\u5BDF\u5C94\u5DEE\u8BE7\u62C6\u67F4\u8C7A" +
"\u6400\u63BA\u8749\u998B\u8C17\u7F20\u94F2\u4EA7" +
"\u9610\u98A4\u660C\u7316\u573A\u5C1D\u5E38\u957F" +
"\u507F\u80A0\u5382\u655E\u7545\u5531\u5021\u8D85" +
"\u6284\u949E\u671D\u5632\u6F6E\u5DE2\u5435\u7092" +
"\u8F66\u626F\u64A4\u63A3\u5F7B\u6F88\u90F4\u81E3" +
"\u8FB0\u5C18\u6668\u5FF1\u6C89\u9648\u8D81\u886C" +
"\u6491\u79F0\u57CE\u6A59\u6210\u5448\u4E58\u7A0B" +
"\u60E9\u6F84\u8BDA\u627F\u901E\u9A8B\u79E4\u5403" +
"\u75F4\u6301\u5319\u6C60\u8FDF\u5F1B\u9A70\u803B" +
"\u9F7F\u4F88\u5C3A\u8D64\u7FC5\u65A5\u70BD\u5145" +
"\u51B2\u866B\u5D07\u5BA0\u62BD\u916C\u7574\u8E0C" +
"\u7A20\u6101\u7B79\u4EC7\u7EF8\u7785\u4E11\u81ED" +
"\u521D\u51FA\u6A71\u53A8\u8E87\u9504\u96CF\u6EC1" +
"\u9664\u695A\u7840\u50A8\u77D7\u6410\u89E6\u5904" +
"\u63E3\u5DDD\u7A7F\u693D\u4F20\u8239\u5598\u4E32" +
"\u75AE\u7A97\u5E62\u5E8A\u95EF\u521B\u5439\u708A" +
"\u6376\u9524\u5782\u6625\u693F\u9187\u5507\u6DF3" +
"\u7EAF\u8822\u6233\u7EF0\u75B5\u8328\u78C1\u96CC" +
"\u8F9E\u6148\u74F7\u8BCD\u6B64\u523A\u8D50\u6B21" +
"\u806A\u8471\u56F1\u5306\u4ECE\u4E1B\u51D1\u7C97" +
"\u918B\u7C07\u4FC3\u8E7F\u7BE1\u7A9C\u6467\u5D14" +
"\u50AC\u8106\u7601\u7CB9\u6DEC\u7FE0\u6751\u5B58" +
"\u5BF8\u78CB\u64AE\u6413\u63AA\u632B\u9519\u642D" +
"\u8FBE\u7B54\u7629\u6253\u5927\u5446\u6B79\u50A3" +
"\u6234\u5E26\u6B86\u4EE3\u8D37\u888B\u5F85\u902E" +
"\u6020\u803D\u62C5\u4E39\u5355\u90F8\u63B8\u80C6" +
"\u65E6\u6C2E\u4F46\u60EE\u6DE1\u8BDE\u5F39\u86CB" +
"\u5F53\u6321\u515A\u8361\u6863\u5200\u6363\u8E48" +
"\u5012\u5C9B\u7977\u5BFC\u5230\u7A3B\u60BC\u9053" +
"\u76D7\u5FB7\u5F97\u7684\u8E6C\u706F\u767B\u7B49" +
"\u77AA\u51F3\u9093\u5824\u4F4E\u6EF4\u8FEA\u654C" +
"\u7B1B\u72C4\u6DA4\u7FDF\u5AE1\u62B5\u5E95\u5730" +
"\u8482\u7B2C\u5E1D\u5F1F\u9012\u7F14\u98A0\u6382" +
"\u6EC7\u7898\u70B9\u5178\u975B\u57AB\u7535\u4F43" +
"\u7538\u5E97\u60E6\u5960\u6DC0\u6BBF\u7889\u53FC" +
"\u96D5\u51CB\u5201\u6389\u540A\u9493\u8C03\u8DCC" +
"\u7239\u789F\u8776\u8FED\u8C0D\u53E0\u4E01\u76EF" +
"\u53EE\u9489\u9876\u9F0E\u952D\u5B9A\u8BA2\u4E22" +
"\u4E1C\u51AC\u8463\u61C2\u52A8\u680B\u4F97\u606B" +
"\u51BB\u6D1E\u515C\u6296\u6597\u9661\u8C46\u9017" +
"\u75D8\u90FD\u7763\u6BD2\u728A\u72EC\u8BFB\u5835" +
"\u7779\u8D4C\u675C\u9540\u809A\u5EA6\u6E21\u5992" +
"\u7AEF\u77ED\u953B\u6BB5\u65AD\u7F0E\u5806\u5151" +
"\u961F\u5BF9\u58A9\u5428\u8E72\u6566\u987F\u56E4" +
"\u949D\u76FE\u9041\u6387\u54C6\u591A\u593A\u579B" +
"\u8EB2\u6735\u8DFA\u8235\u5241\u60F0\u5815\u86FE" +
"\u5CE8\u9E45\u4FC4\u989D\u8BB9\u5A25\u6076\u5384" +
"\u627C\u904F\u9102\u997F\u6069\u800C\u513F\u8033" +
"\u5C14\u9975\u6D31\u4E8C\u8D30\u53D1\u7F5A\u7B4F" +
"\u4F10\u4E4F\u9600\u6CD5\u73D0\u85E9\u5E06\u756A" +
"\u7FFB\u6A0A\u77FE\u9492\u7E41\u51E1\u70E6\u53CD" +
"\u8FD4\u8303\u8D29\u72AF\u996D\u6CDB\u574A\u82B3" +
"\u65B9\u80AA\u623F\u9632\u59A8\u4EFF\u8BBF\u7EBA" +
"\u653E\u83F2\u975E\u5561\u98DE\u80A5\u532A\u8BFD" +
"\u5420\u80BA\u5E9F\u6CB8\u8D39\u82AC\u915A\u5429" +
"\u6C1B\u5206\u7EB7\u575F\u711A\u6C7E\u7C89\u594B" +
"\u4EFD\u5FFF\u6124\u7CAA\u4E30\u5C01\u67AB\u8702" +
"\u5CF0\u950B\u98CE\u75AF\u70FD\u9022\u51AF\u7F1D" +
"\u8BBD\u5949\u51E4\u4F5B\u5426\u592B\u6577\u80A4" +
"\u5B75\u6276\u62C2\u8F90\u5E45\u6C1F\u7B26\u4F0F" +
"\u4FD8\u670D\u6D6E\u6DAA\u798F\u88B1\u5F17\u752B" +
"\u629A\u8F85\u4FEF\u91DC\u65A7\u812F\u8151\u5E9C" +
"\u8150\u8D74\u526F\u8986\u8D4B\u590D\u5085\u4ED8" +
"\u961C\u7236\u8179\u8D1F\u5BCC\u8BA3\u9644\u5987" +
"\u7F1A\u5490\u5676\u560E\u8BE5\u6539\u6982\u9499" +
"\u76D6\u6E89\u5E72\u7518\u6746\u67D1\u7AFF\u809D" +
"\u8D76\u611F\u79C6\u6562\u8D63\u5188\u521A\u94A2" +
"\u7F38\u809B\u7EB2\u5C97\u6E2F\u6760\u7BD9\u768B" +
"\u9AD8\u818F\u7F94\u7CD5\u641E\u9550\u7A3F\u544A" +
"\u54E5\u6B4C\u6401\u6208\u9E3D\u80F3\u7599\u5272" +
"\u9769\u845B\u683C\u86E4\u9601\u9694\u94EC\u4E2A" +
"\u5404\u7ED9\u6839\u8DDF\u8015\u66F4\u5E9A\u7FB9" +
"\u57C2\u803F\u6897\u5DE5\u653B\u529F\u606D\u9F9A" +
"\u4F9B\u8EAC\u516C\u5BAB\u5F13\u5DE9\u6C5E\u62F1" +
"\u8D21\u5171\u94A9\u52FE\u6C9F\u82DF\u72D7\u57A2" +
"\u6784\u8D2D\u591F\u8F9C\u83C7\u5495\u7B8D\u4F30" +
"\u6CBD\u5B64\u59D1\u9F13\u53E4\u86CA\u9AA8\u8C37" +
"\u80A1\u6545\u987E\u56FA\u96C7\u522E\u74DC\u5250" +
"\u5BE1\u6302\u8902\u4E56\u62D0\u602A\u68FA\u5173" +
"\u5B98\u51A0\u89C2\u7BA1\u9986\u7F50\u60EF\u704C" +
"\u8D2F\u5149\u5E7F\u901B\u7470\u89C4\u572D\u7845" +
"\u5F52\u9F9F\u95FA\u8F68\u9B3C\u8BE1\u7678\u6842" +
"\u67DC\u8DEA\u8D35\u523D\u8F8A\u6EDA\u68CD\u9505" +
"\u90ED\u56FD\u679C\u88F9\u8FC7\u54C8\u9AB8\u5B69" +
"\u6D77\u6C26\u4EA5\u5BB3\u9A87\u9163\u61A8\u90AF" +
"\u97E9\u542B\u6DB5\u5BD2\u51FD\u558A\u7F55\u7FF0" +
"\u64BC\u634D\u65F1\u61BE\u608D\u710A\u6C57\u6C49" +
"\u592F\u676D\u822A\u58D5\u568E\u8C6A\u6BEB\u90DD" +
"\u597D\u8017\u53F7\u6D69\u5475\u559D\u8377\u83CF" +
"\u6838\u79BE\u548C\u4F55\u5408\u76D2\u8C89\u9602" +
"\u6CB3\u6DB8\u8D6B\u8910\u9E64\u8D3A\u563F\u9ED1" +
"\u75D5\u5F88\u72E0\u6068\u54FC\u4EA8\u6A2A\u8861" +
"\u6052\u8F70\u54C4\u70D8\u8679\u9E3F\u6D2A\u5B8F" +
"\u5F18\u7EA2\u5589\u4FAF\u7334\u543C\u539A\u5019" +
"\u540E\u547C\u4E4E\u5FFD\u745A\u58F6\u846B\u80E1" +
"\u8774\u72D0\u7CCA\u6E56\u5F27\u864E\u552C\u62A4" +
"\u4E92\u6CAA\u6237\u82B1\u54D7\u534E\u733E\u6ED1" +
"\u753B\u5212\u5316\u8BDD\u69D0\u5F8A\u6000\u6DEE" +
"\u574F\u6B22\u73AF\u6853\u8FD8\u7F13\u6362\u60A3" +
"\u5524\u75EA\u8C62\u7115\u6DA3\u5BA6\u5E7B\u8352" +
"\u614C\u9EC4\u78FA\u8757\u7C27\u7687\u51F0\u60F6" +
"\u714C\u6643\u5E4C\u604D\u8C0E\u7070\u6325\u8F89" +
"\u5FBD\u6062\u86D4\u56DE\u6BC1\u6094\u6167\u5349" +
"\u60E0\u6666\u8D3F\u79FD\u4F1A\u70E9\u6C47\u8BB3" +
"\u8BF2\u7ED8\u8364\u660F\u5A5A\u9B42\u6D51\u6DF7" +
"\u8C41\u6D3B\u4F19\u706B\u83B7\u6216\u60D1\u970D" +
"\u8D27\u7978\u51FB\u573E\u57FA\u673A\u7578\u7A3D" +
"\u79EF\u7B95\u808C\u9965\u8FF9\u6FC0\u8BA5\u9E21" +
"\u59EC\u7EE9\u7F09\u5409\u6781\u68D8\u8F91\u7C4D" +
"\u96C6\u53CA\u6025\u75BE\u6C72\u5373\u5AC9\u7EA7" +
"\u6324\u51E0\u810A\u5DF1\u84DF\u6280\u5180\u5B63" +
"\u4F0E\u796D\u5242\u60B8\u6D4E\u5BC4\u5BC2\u8BA1" +
"\u8BB0\u65E2\u5FCC\u9645\u5993\u7EE7\u7EAA\u5609" +
"\u67B7\u5939\u4F73\u5BB6\u52A0\u835A\u988A\u8D3E" +
"\u7532\u94BE\u5047\u7A3C\u4EF7\u67B6\u9A7E\u5AC1" +
"\u6B7C\u76D1\u575A\u5C16\u7B3A\u95F4\u714E\u517C" +
"\u80A9\u8270\u5978\u7F04\u8327\u68C0\u67EC\u78B1" +
"\u7877\u62E3\u6361\u7B80\u4FED\u526A\u51CF\u8350" +
"\u69DB\u9274\u8DF5\u8D31\u89C1\u952E\u7BAD\u4EF6" +
"\u5065\u8230\u5251\u996F\u6E10\u6E85\u6DA7\u5EFA" +
"\u50F5\u59DC\u5C06\u6D46\u6C5F\u7586\u848B\u6868" +
"\u5956\u8BB2\u5320\u9171\u964D\u8549\u6912\u7901" +
"\u7126\u80F6\u4EA4\u90CA\u6D47\u9A84\u5A07\u56BC" +
"\u6405\u94F0\u77EB\u4FA5\u811A\u72E1\u89D2\u997A" +
"\u7F34\u7EDE\u527F\u6559\u9175\u8F7F\u8F83\u53EB" +
"\u7A96\u63ED\u63A5\u7686\u79F8\u8857\u9636\u622A" +
"\u52AB\u8282\u6854\u6770\u6377\u776B\u7AED\u6D01" +
"\u7ED3\u89E3\u59D0\u6212\u85C9\u82A5\u754C\u501F" +
"\u4ECB\u75A5\u8BEB\u5C4A\u5DFE\u7B4B\u65A4\u91D1" +
"\u4ECA\u6D25\u895F\u7D27\u9526\u4EC5\u8C28\u8FDB" +
"\u9773\u664B\u7981\u8FD1\u70EC\u6D78\u5C3D\u52B2" +
"\u8346\u5162\u830E\u775B\u6676\u9CB8\u4EAC\u60CA" +
"\u7CBE\u7CB3\u7ECF\u4E95\u8B66\u666F\u9888\u9759" +
"\u5883\u656C\u955C\u5F84\u75C9\u9756\u7ADF\u7ADE" +
"\u51C0\u70AF\u7A98\u63EA\u7A76\u7EA0\u7396\u97ED" +
"\u4E45\u7078\u4E5D\u9152\u53A9\u6551\u65E7\u81FC" +
"\u8205\u548E\u5C31\u759A\u97A0\u62D8\u72D9\u75BD" +
"\u5C45\u9A79\u83CA\u5C40\u5480\u77E9\u4E3E\u6CAE" +
"\u805A\u62D2\u636E\u5DE8\u5177\u8DDD\u8E1E\u952F" +
"\u4FF1\u53E5\u60E7\u70AC\u5267\u6350\u9E43\u5A1F" +
"\u5026\u7737\u5377\u7EE2\u6485\u652B\u6289\u6398" +
"\u5014\u7235\u89C9\u51B3\u8BC0\u7EDD\u5747\u83CC" +
"\u94A7\u519B\u541B\u5CFB\u4FCA\u7AE3\u6D5A\u90E1" +
"\u9A8F\u5580\u5496\u5361\u54AF\u5F00\u63E9\u6977" +
"\u51EF\u6168\u520A\u582A\u52D8\u574E\u780D\u770B" +
"\u5EB7\u6177\u7CE0\u625B\u6297\u4EA2\u7095\u8003" +
"\u62F7\u70E4\u9760\u5777\u82DB\u67EF\u68F5\u78D5" +
"\u9897\u79D1\u58F3\u54B3\u53EF\u6E34\u514B\u523B" +
"\u5BA2\u8BFE\u80AF\u5543\u57A6\u6073\u5751\u542D" +
"\u7A7A\u6050\u5B54\u63A7\u62A0\u53E3\u6263\u5BC7" +
"\u67AF\u54ED\u7A9F\u82E6\u9177\u5E93\u88E4\u5938" +
"\u57AE\u630E\u8DE8\u80EF\u5757\u7B77\u4FA9\u5FEB" +
"\u5BBD\u6B3E\u5321\u7B50\u72C2\u6846\u77FF\u7736" +
"\u65F7\u51B5\u4E8F\u76D4\u5CBF\u7AA5\u8475\u594E" +
"\u9B41\u5080\u9988\u6127\u6E83\u5764\u6606\u6346" +
"\u56F0\u62EC\u6269\u5ED3\u9614\u5783\u62C9\u5587" +
"\u8721\u814A\u8FA3\u5566\u83B1\u6765\u8D56\u84DD" +
"\u5A6A\u680F\u62E6\u7BEE\u9611\u5170\u6F9C\u8C30" +
"\u63FD\u89C8\u61D2\u7F06\u70C2\u6EE5\u7405\u6994" +
"\u72FC\u5ECA\u90CE\u6717\u6D6A\u635E\u52B3\u7262" +
"\u8001\u4F6C\u59E5\u916A\u70D9\u6D9D\u52D2\u4E50" +
"\u96F7\u956D\u857E\u78CA\u7D2F\u5121\u5792\u64C2" +
"\u808B\u7C7B\u6CEA\u68F1\u695E\u51B7\u5398\u68A8" +
"\u7281\u9ECE\u7BF1\u72F8\u79BB\u6F13\u7406\u674E" +
"\u91CC\u9CA4\u793C\u8389\u8354\u540F\u6817\u4E3D" +
"\u5389\u52B1\u783E\u5386\u5229\u5088\u4F8B\u4FD0" +
"\u75E2\u7ACB\u7C92\u6CA5\u96B6\u529B\u7483\u54E9" +
"\u4FE9\u8054\u83B2\u8FDE\u9570\u5EC9\u601C\u6D9F" +
"\u5E18\u655B\u8138\u94FE\u604B\u70BC\u7EC3\u7CAE" +
"\u51C9\u6881\u7CB1\u826F\u4E24\u8F86\u91CF\u667E" +
"\u4EAE\u8C05\u64A9\u804A\u50DA\u7597\u71CE\u5BE5" +
"\u8FBD\u6F66\u4E86\u6482\u9563\u5ED6\u6599\u5217" +
"\u88C2\u70C8\u52A3\u730E\u7433\u6797\u78F7\u9716" +
"\u4E34\u90BB\u9CDE\u6DCB\u51DB\u8D41\u541D\u62CE" +
"\u73B2\u83F1\u96F6\u9F84\u94C3\u4F36\u7F9A\u51CC" +
"\u7075\u9675\u5CAD\u9886\u53E6\u4EE4\u6E9C\u7409" +
"\u69B4\u786B\u998F\u7559\u5218\u7624\u6D41\u67F3" +
"\u516D\u9F99\u804B\u5499\u7B3C\u7ABF\u9686\u5784" +
"\u62E2\u9647\u697C\u5A04\u6402\u7BD3\u6F0F\u964B" +
"\u82A6\u5362\u9885\u5E90\u7089\u63B3\u5364\u864F" +
"\u9C81\u9E93\u788C\u9732\u8DEF\u8D42\u9E7F\u6F5E" +
"\u7984\u5F55\u9646\u622E\u9A74\u5415\u94DD\u4FA3" +
"\u65C5\u5C65\u5C61\u7F15\u8651\u6C2F\u5F8B\u7387" +
"\u6EE4\u7EFF\u5CE6\u631B\u5B6A\u6EE6\u5375\u4E71" +
"\u63A0\u7565\u62A1\u8F6E\u4F26\u4ED1\u6CA6\u7EB6" +
"\u8BBA\u841D\u87BA\u7F57\u903B\u9523\u7BA9\u9AA1" +
"\u88F8\u843D\u6D1B\u9A86\u7EDC\u5988\u9EBB\u739B" +
"\u7801\u8682\u9A6C\u9A82\u561B\u5417\u57CB\u4E70" +
"\u9EA6\u5356\u8FC8\u8109\u7792\u9992\u86EE\u6EE1" +
"\u8513\u66FC\u6162\u6F2B\u8C29\u8292\u832B\u76F2" +
"\u6C13\u5FD9\u83BD\u732B\u8305\u951A\u6BDB\u77DB" +
"\u94C6\u536F\u8302\u5192\u5E3D\u8C8C\u8D38\u4E48" +
"\u73AB\u679A\u6885\u9176\u9709\u7164\u6CA1\u7709" +
"\u5A92\u9541\u6BCF\u7F8E\u6627\u5BD0\u59B9\u5A9A" +
"\u95E8\u95F7\u4EEC\u840C\u8499\u6AAC\u76DF\u9530" +
"\u731B\u68A6\u5B5F\u772F\u919A\u9761\u7CDC\u8FF7" +
"\u8C1C\u5F25\u7C73\u79D8\u89C5\u6CCC\u871C\u5BC6" +
"\u5E42\u68C9\u7720\u7EF5\u5195\u514D\u52C9\u5A29" +
"\u7F05\u9762\u82D7\u63CF\u7784\u85D0\u79D2\u6E3A" +
"\u5E99\u5999\u8511\u706D\u6C11\u62BF\u76BF\u654F" +
"\u60AF\u95FD\u660E\u879F\u9E23\u94ED\u540D\u547D" +
"\u8C2C\u6478\u6479\u8611\u6A21\u819C\u78E8\u6469" +
"\u9B54\u62B9\u672B\u83AB\u58A8\u9ED8\u6CAB\u6F20" +
"\u5BDE\u964C\u8C0B\u725F\u67D0\u62C7\u7261\u4EA9" +
"\u59C6\u6BCD\u5893\u66AE\u5E55\u52DF\u6155\u6728" +
"\u76EE\u7766\u7267\u7A46\u62FF\u54EA\u5450\u94A0" +
"\u90A3\u5A1C\u7EB3\u6C16\u4E43\u5976\u8010\u5948" +
"\u5357\u7537\u96BE\u56CA\u6320\u8111\u607C\u95F9" +
"\u6DD6\u5462\u9981\u5185\u5AE9\u80FD\u59AE\u9713" +
"\u502A\u6CE5\u5C3C\u62DF\u4F60\u533F\u817B\u9006" +
"\u6EBA\u852B\u62C8\u5E74\u78BE\u64B5\u637B\u5FF5" +
"\u5A18\u917F\u9E1F\u5C3F\u634F\u8042\u5B7D\u556E" +
"\u954A\u954D\u6D85\u60A8\u67E0\u72DE\u51DD\u5B81" +
"\u62E7\u6CDE\u725B\u626D\u94AE\u7EBD\u8113\u6D53" +
"\u519C\u5F04\u5974\u52AA\u6012\u5973\u6696\u8650" +
"\u759F\u632A\u61E6\u7CEF\u8BFA\u54E6\u6B27\u9E25" +
"\u6BB4\u85D5\u5455\u5076\u6CA4\u556A\u8DB4\u722C" +
"\u5E15\u6015\u7436\u62CD\u6392\u724C\u5F98\u6E43" +
"\u6D3E\u6500\u6F58\u76D8\u78D0\u76FC\u7554\u5224" +
"\u53DB\u4E53\u5E9E\u65C1\u802A\u80D6\u629B\u5486" +
"\u5228\u70AE\u888D\u8DD1\u6CE1\u5478\u80DA\u57F9" +
"\u88F4\u8D54\u966A\u914D\u4F69\u6C9B\u55B7\u76C6" +
"\u7830\u62A8\u70F9\u6F8E\u5F6D\u84EC\u68DA\u787C" +
"\u7BF7\u81A8\u670B\u9E4F\u6367\u78B0\u576F\u7812" +
"\u9739\u6279\u62AB\u5288\u7435\u6BD7\u5564\u813E" +
"\u75B2\u76AE\u5339\u75DE\u50FB\u5C41\u8B6C\u7BC7" +
"\u504F\u7247\u9A97\u98D8\u6F02\u74E2\u7968\u6487" +
"\u77A5\u62FC\u9891\u8D2B\u54C1\u8058\u4E52\u576A" +
"\u82F9\u840D\u5E73\u51ED\u74F6\u8BC4\u5C4F\u5761" +
"\u6CFC\u9887\u5A46\u7834\u9B44\u8FEB\u7C95\u5256" +
"\u6251\u94FA\u4EC6\u8386\u8461\u83E9\u84B2\u57D4" +
"\u6734\u5703\u666E\u6D66\u8C31\u66DD\u7011\u671F" +
"\u6B3A\u6816\u621A\u59BB\u4E03\u51C4\u6F06\u67D2" +
"\u6C8F\u5176\u68CB\u5947\u6B67\u7566\u5D0E\u8110" +
"\u9F50\u65D7\u7948\u7941\u9A91\u8D77\u5C82\u4E5E" +
"\u4F01\u542F\u5951\u780C\u5668\u6C14\u8FC4\u5F03" +
"\u6C7D\u6CE3\u8BAB\u6390\u6070\u6D3D\u7275\u6266" +
"\u948E\u94C5\u5343\u8FC1\u7B7E\u4EDF\u8C26\u4E7E" +
"\u9ED4\u94B1\u94B3\u524D\u6F5C\u9063\u6D45\u8C34" +
"\u5811\u5D4C\u6B20\u6B49\u67AA\u545B\u8154\u7F8C" +
"\u5899\u8537\u5F3A\u62A2\u6A47\u9539\u6572\u6084" +
"\u6865\u77A7\u4E54\u4FA8\u5DE7\u9798\u64AC\u7FD8" +
"\u5CED\u4FCF\u7A8D\u5207\u8304\u4E14\u602F\u7A83" +
"\u94A6\u4FB5\u4EB2\u79E6\u7434\u52E4\u82B9\u64D2" +
"\u79BD\u5BDD\u6C81\u9752\u8F7B\u6C22\u503E\u537F" +
"\u6E05\u64CE\u6674\u6C30\u60C5\u9877\u8BF7\u5E86" +
"\u743C\u7A77\u79CB\u4E18\u90B1\u7403\u6C42\u56DA" +
"\u914B\u6CC5\u8D8B\u533A\u86C6\u66F2\u8EAF\u5C48" +
"\u9A71\u6E20\u53D6\u5A36\u9F8B\u8DA3\u53BB\u5708" +
"\u98A7\u6743\u919B\u6CC9\u5168\u75CA\u62F3\u72AC" +
"\u5238\u529D\u7F3A\u7094\u7638\u5374\u9E4A\u69B7" +
"\u786E\u96C0\u88D9\u7FA4\u7136\u71C3\u5189\u67D3" +
"\u74E4\u58E4\u6518\u56B7\u8BA9\u9976\u6270\u7ED5" +
"\u60F9\u70ED\u58EC\u4EC1\u4EBA\u5FCD\u97E7\u4EFB" +
"\u8BA4\u5203\u598A\u7EAB\u6254\u4ECD\u65E5\u620E" +
"\u8338\u84C9\u8363\u878D\u7194\u6EB6\u5BB9\u7ED2" +
"\u5197\u63C9\u67D4\u8089\u8339\u8815\u5112\u5B7A" +
"\u5982\u8FB1\u4E73\u6C5D\u5165\u8925\u8F6F\u962E" +
"\u854A\u745E\u9510\u95F0\u6DA6\u82E5\u5F31\u6492" +
"\u6D12\u8428\u816E\u9CC3\u585E\u8D5B\u4E09\u53C1" +
"\u4F1E\u6563\u6851\u55D3\u4E27\u6414\u9A9A\u626B" +
"\u5AC2\u745F\u8272\u6DA9\u68EE\u50E7\u838E\u7802" +
"\u6740\u5239\u6C99\u7EB1\u50BB\u5565\u715E\u7B5B" +
"\u6652\u73CA\u82EB\u6749\u5C71\u5220\u717D\u886B" +
"\u95EA\u9655\u64C5\u8D61\u81B3\u5584\u6C55\u6247" +
"\u7F2E\u5892\u4F24\u5546\u8D4F\u664C\u4E0A\u5C1A" +
"\u88F3\u68A2\u634E\u7A0D\u70E7\u828D\u52FA\u97F6" +
"\u5C11\u54E8\u90B5\u7ECD\u5962\u8D4A\u86C7\u820C" +
"\u820D\u8D66\u6444\u5C04\u6151\u6D89\u793E\u8BBE" +
"\u7837\u7533\u547B\u4F38\u8EAB\u6DF1\u5A20\u7EC5" +
"\u795E\u6C88\u5BA1\u5A76\u751A\u80BE\u614E\u6E17" +
"\u58F0\u751F\u7525\u7272\u5347\u7EF3\u7701\u76DB" +
"\u5269\u80DC\u5723\u5E08\u5931\u72EE\u65BD\u6E7F" +
"\u8BD7\u5C38\u8671\u5341\u77F3\u62FE\u65F6\u4EC0" +
"\u98DF\u8680\u5B9E\u8BC6\u53F2\u77E2\u4F7F\u5C4E" +
"\u9A76\u59CB\u5F0F\u793A\u58EB\u4E16\u67FF\u4E8B" +
"\u62ED\u8A93\u901D\u52BF\u662F\u55DC\u566C\u9002" +
"\u4ED5\u4F8D\u91CA\u9970\u6C0F\u5E02\u6043\u5BA4" +
"\u89C6\u8BD5\u6536\u624B\u9996\u5B88\u5BFF\u6388" +
"\u552E\u53D7\u7626\u517D\u852C\u67A2\u68B3\u6B8A" +
"\u6292\u8F93\u53D4\u8212\u6DD1\u758F\u4E66\u8D4E" +
"\u5B70\u719F\u85AF\u6691\u66D9\u7F72\u8700\u9ECD" +
"\u9F20\u5C5E\u672F\u8FF0\u6811\u675F\u620D\u7AD6" +
"\u5885\u5EB6\u6570\u6F31\u6055\u5237\u800D\u6454" +
"\u8870\u7529\u5E05\u6813\u62F4\u971C\u53CC\u723D" +
"\u8C01\u6C34\u7761\u7A0E\u542E\u77AC\u987A\u821C" +
"\u8BF4\u7855\u6714\u70C1\u65AF\u6495\u5636\u601D" +
"\u79C1\u53F8\u4E1D\u6B7B\u8086\u5BFA\u55E3\u56DB" +
"\u4F3A\u4F3C\u9972\u5DF3\u677E\u8038\u6002\u9882" +
"\u9001\u5B8B\u8BBC\u8BF5\u641C\u8258\u64DE\u55FD" +
"\u82CF\u9165\u4FD7\u7D20\u901F\u7C9F\u50F3\u5851" +
"\u6EAF\u5BBF\u8BC9\u8083\u9178\u849C\u7B97\u867D" +
"\u968B\u968F\u7EE5\u9AD3\u788E\u5C81\u7A57\u9042" +
"\u96A7\u795F\u5B59\u635F\u7B0B\u84D1\u68AD\u5506" +
"\u7F29\u7410\u7D22\u9501\u6240\u584C\u4ED6\u5B83" +
"\u5979\u5854\u736D\u631E\u8E4B\u8E0F\u80CE\u82D4" +
"\u62AC\u53F0\u6CF0\u915E\u592A\u6001\u6C70\u574D" +
"\u644A\u8D2A\u762B\u6EE9\u575B\u6A80\u75F0\u6F6D" +
"\u8C2D\u8C08\u5766\u6BEF\u8892\u78B3\u63A2\u53F9" +
"\u70AD\u6C64\u5858\u642A\u5802\u68E0\u819B\u5510" +
"\u7CD6\u5018\u8EBA\u6DCC\u8D9F\u70EB\u638F\u6D9B" +
"\u6ED4\u7EE6\u8404\u6843\u9003\u6DD8\u9676\u8BA8" +
"\u5957\u7279\u85E4\u817E\u75BC\u8A8A\u68AF\u5254" +
"\u8E22\u9511\u63D0\u9898\u8E44\u557C\u4F53\u66FF" +
"\u568F\u60D5\u6D95\u5243\u5C49\u5929\u6DFB\u586B" +
"\u7530\u751C\u606C\u8214\u8146\u6311\u6761\u8FE2" +
"\u773A\u8DF3\u8D34\u94C1\u5E16\u5385\u542C\u70C3" +
"\u6C40\u5EF7\u505C\u4EAD\u5EAD\u633A\u8247\u901A" +
"\u6850\u916E\u77B3\u540C\u94DC\u5F64\u7AE5\u6876" +
"\u6345\u7B52\u7EDF\u75DB\u5077\u6295\u5934\u900F" +
"\u51F8\u79C3\u7A81\u56FE\u5F92\u9014\u6D82\u5C60" +
"\u571F\u5410\u5154\u6E4D\u56E2\u63A8\u9893\u817F" +
"\u8715\u892A\u9000\u541E\u5C6F\u81C0\u62D6\u6258" +
"\u8131\u9E35\u9640\u9A6E\u9A7C\u692D\u59A5\u62D3" +
"\u553E\u6316\u54C7\u86D9\u6D3C\u5A03\u74E6\u889C" +
"\u6B6A\u5916\u8C4C\u5F2F\u6E7E\u73A9\u987D\u4E38" +
"\u70F7\u5B8C\u7897\u633D\u665A\u7696\u60CB\u5B9B" +
"\u5A49\u4E07\u8155\u6C6A\u738B\u4EA1\u6789\u7F51" +
"\u5F80\u65FA\u671B\u5FD8\u5984\u5A01\u5DCD\u5FAE" +
"\u5371\u97E6\u8FDD\u6845\u56F4\u552F\u60DF\u4E3A" +
"\u6F4D\u7EF4\u82C7\u840E\u59D4\u4F1F\u4F2A\u5C3E" +
"\u7EAC\u672A\u851A\u5473\u754F\u80C3\u5582\u9B4F" +
"\u4F4D\u6E2D\u8C13\u5C09\u6170\u536B\u761F\u6E29" +
"\u868A\u6587\u95FB\u7EB9\u543B\u7A33\u7D0A\u95EE" +
"\u55E1\u7FC1\u74EE\u631D\u8717\u6DA1\u7A9D\u6211" +
"\u65A1\u5367\u63E1\u6C83\u5DEB\u545C\u94A8\u4E4C" +
"\u6C61\u8BEC\u5C4B\u65E0\u829C\u68A7\u543E\u5434" +
"\u6BCB\u6B66\u4E94\u6342\u5348\u821E\u4F0D\u4FAE" +
"\u575E\u620A\u96FE\u6664\u7269\u52FF\u52A1\u609F" +
"\u8BEF\u6614\u7199\u6790\u897F\u7852\u77FD\u6670" +
"\u563B\u5438\u9521\u727A\u7A00\u606F\u5E0C\u6089" +
"\u819D\u5915\u60DC\u7184\u70EF\u6EAA\u6C50\u7280" +
"\u6A84\u88AD\u5E2D\u4E60\u5AB3\u559C\u94E3\u6D17" +
"\u7CFB\u9699\u620F\u7EC6\u778E\u867E\u5323\u971E" +
"\u8F96\u6687\u5CE1\u4FA0\u72ED\u4E0B\u53A6\u590F" +
"\u5413\u6380\u9528\u5148\u4ED9\u9C9C\u7EA4\u54B8" +
"\u8D24\u8854\u8237\u95F2\u6D8E\u5F26\u5ACC\u663E" +
"\u9669\u73B0\u732E\u53BF\u817A\u9985\u7FA1\u5BAA" +
"\u9677\u9650\u7EBF\u76F8\u53A2\u9576\u9999\u7BB1" +
"\u8944\u6E58\u4E61\u7FD4\u7965\u8BE6\u60F3\u54CD" +
"\u4EAB\u9879\u5DF7\u6A61\u50CF\u5411\u8C61\u8427" +
"\u785D\u9704\u524A\u54EE\u56A3\u9500\u6D88\u5BB5" +
"\u6DC6\u6653\u5C0F\u5B5D\u6821\u8096\u5578\u7B11" +
"\u6548\u6954\u4E9B\u6B47\u874E\u978B\u534F\u631F" +
"\u643A\u90AA\u659C\u80C1\u8C10\u5199\u68B0\u5378" +
"\u87F9\u61C8\u6CC4\u6CFB\u8C22\u5C51\u85AA\u82AF" +
"\u950C\u6B23\u8F9B\u65B0\u5FFB\u5FC3\u4FE1\u8845" +
"\u661F\u8165\u7329\u60FA\u5174\u5211\u578B\u5F62" +
"\u90A2\u884C\u9192\u5E78\u674F\u6027\u59D3\u5144" +
"\u51F6\u80F8\u5308\u6C79\u96C4\u718A\u4F11\u4FEE" +
"\u7F9E\u673D\u55C5\u9508\u79C0\u8896\u7EE3\u589F" +
"\u620C\u9700\u865A\u5618\u987B\u5F90\u8BB8\u84C4" +
"\u9157\u53D9\u65ED\u5E8F\u755C\u6064\u7D6E\u5A7F" +
"\u7EEA\u7EED\u8F69\u55A7\u5BA3\u60AC\u65CB\u7384" +
"\u9009\u7663\u7729\u7EDA\u9774\u859B\u5B66\u7A74" +
"\u96EA\u8840\u52CB\u718F\u5FAA\u65EC\u8BE2\u5BFB" +
"\u9A6F\u5DE1\u6B89\u6C5B\u8BAD\u8BAF\u900A\u8FC5" +
"\u538B\u62BC\u9E26\u9E2D\u5440\u4E2B\u82BD\u7259" +
"\u869C\u5D16\u8859\u6DAF\u96C5\u54D1\u4E9A\u8BB6" +
"\u7109\u54BD\u9609\u70DF\u6DF9\u76D0\u4E25\u7814" +
"\u8712\u5CA9\u5EF6\u8A00\u989C\u960E\u708E\u6CBF" +
"\u5944\u63A9\u773C\u884D\u6F14\u8273\u5830\u71D5" +
"\u538C\u781A\u96C1\u5501\u5F66\u7130\u5BB4\u8C1A" +
"\u9A8C\u6B83\u592E\u9E2F\u79E7\u6768\u626C\u4F6F" +
"\u75A1\u7F8A\u6D0B\u9633\u6C27\u4EF0\u75D2\u517B" +
"\u6837\u6F3E\u9080\u8170\u5996\u7476\u6447\u5C27" +
"\u9065\u7A91\u8C23\u59DA\u54AC\u8200\u836F\u8981" +
"\u8000\u6930\u564E\u8036\u7237\u91CE\u51B6\u4E5F" +
"\u9875\u6396\u4E1A\u53F6\u66F3\u814B\u591C\u6DB2" +
"\u4E00\u58F9\u533B\u63D6\u94F1\u4F9D\u4F0A\u8863" +
"\u9890\u5937\u9057\u79FB\u4EEA\u80F0\u7591\u6C82" +
"\u5B9C\u59E8\u5F5D\u6905\u8681\u501A\u5DF2\u4E59" +
"\u77E3\u4EE5\u827A\u6291\u6613\u9091\u5C79\u4EBF" +
"\u5F79\u81C6\u9038\u8084\u75AB\u4EA6\u88D4\u610F" +
"\u6BC5\u5FC6\u4E49\u76CA\u6EA2\u8BE3\u8BAE\u8C0A" +
"\u8BD1\u5F02\u7FFC\u7FCC\u7ECE\u8335\u836B\u56E0" +
"\u6BB7\u97F3\u9634\u59FB\u541F\u94F6\u6DEB\u5BC5" +
"\u996E\u5C39\u5F15\u9690\u5370\u82F1\u6A31\u5A74" +
"\u9E70\u5E94\u7F28\u83B9\u8424\u8425\u8367\u8747" +
"\u8FCE\u8D62\u76C8\u5F71\u9896\u786C\u6620\u54DF" +
"\u62E5\u4F63\u81C3\u75C8\u5EB8\u96CD\u8E0A\u86F9" +
"\u548F\u6CF3\u6D8C\u6C38\u607F\u52C7\u7528\u5E7D" +
"\u4F18\u60A0\u5FE7\u5C24\u7531\u90AE\u94C0\u72B9" +
"\u6CB9\u6E38\u9149\u6709\u53CB\u53F3\u4F51\u91C9" +
"\u8BF1\u53C8\u5E7C\u8FC2\u6DE4\u4E8E\u76C2\u6986" +
"\u865E\u611A\u8206\u4F59\u4FDE\u903E\u9C7C\u6109" +
"\u6E1D\u6E14\u9685\u4E88\u5A31\u96E8\u4E0E\u5C7F" +
"\u79B9\u5B87\u8BED\u7FBD\u7389\u57DF\u828B\u90C1" +
"\u5401\u9047\u55BB\u5CEA\u5FA1\u6108\u6B32\u72F1" +
"\u80B2\u8A89\u6D74\u5BD3\u88D5\u9884\u8C6B\u9A6D" +
"\u9E33\u6E0A\u51A4\u5143\u57A3\u8881\u539F\u63F4" +
"\u8F95\u56ED\u5458\u5706\u733F\u6E90\u7F18\u8FDC" +
"\u82D1\u613F\u6028\u9662\u66F0\u7EA6\u8D8A\u8DC3" +
"\u94A5\u5CB3\u7CA4\u6708\u60A6\u9605\u8018\u4E91" +
"\u90E7\u5300\u9668\u5141\u8FD0\u8574\u915D\u6655" +
"\u97F5\u5B55\u531D\u7838\u6742\u683D\u54C9\u707E" +
"\u5BB0\u8F7D\u518D\u5728\u54B1\u6512\u6682\u8D5E" +
"\u8D43\u810F\u846C\u906D\u7CDF\u51FF\u85FB\u67A3" +
"\u65E9\u6FA1\u86A4\u8E81\u566A\u9020\u7682\u7076" +
"\u71E5\u8D23\u62E9\u5219\u6CFD\u8D3C\u600E\u589E" +
"\u618E\u66FE\u8D60\u624E\u55B3\u6E23\u672D\u8F67" +
"\u94E1\u95F8\u7728\u6805\u69A8\u548B\u4E4D\u70B8" +
"\u8BC8\u6458\u658B\u5B85\u7A84\u503A\u5BE8\u77BB" +
"\u6BE1\u8A79\u7C98\u6CBE\u76CF\u65A9\u8F97\u5D2D" +
"\u5C55\u8638\u6808\u5360\u6218\u7AD9\u6E5B\u7EFD" +
"\u6A1F\u7AE0\u5F70\u6F33\u5F20\u638C\u6DA8\u6756" +
"\u4E08\u5E10\u8D26\u4ED7\u80C0\u7634\u969C\u62DB" +
"\u662D\u627E\u6CBC\u8D75\u7167\u7F69\u5146\u8087" +
"\u53EC\u906E\u6298\u54F2\u86F0\u8F99\u8005\u9517" +
"\u8517\u8FD9\u6D59\u73CD\u659F\u771F\u7504\u7827" +
"\u81FB\u8D1E\u9488\u4FA6\u6795\u75B9\u8BCA\u9707" +
"\u632F\u9547\u9635\u84B8\u6323\u7741\u5F81\u72F0" +
"\u4E89\u6014\u6574\u62EF\u6B63\u653F\u5E27\u75C7" +
"\u90D1\u8BC1\u829D\u679D\u652F\u5431\u8718\u77E5" +
"\u80A2\u8102\u6C41\u4E4B\u7EC7\u804C\u76F4\u690D" +
"\u6B96\u6267\u503C\u4F84\u5740\u6307\u6B62\u8DBE" +
"\u53EA\u65E8\u7EB8\u5FD7\u631A\u63B7\u81F3\u81F4" +
"\u7F6E\u5E1C\u5CD9\u5236\u667A\u79E9\u7A1A\u8D28" +
"\u7099\u75D4\u6EDE\u6CBB\u7A92\u4E2D\u76C5\u5FE0" +
"\u949F\u8877\u7EC8\u79CD\u80BF\u91CD\u4EF2\u4F17" +
"\u821F\u5468\u5DDE\u6D32\u8BCC\u7CA5\u8F74\u8098" +
"\u5E1A\u5492\u76B1\u5B99\u663C\u9AA4\u73E0\u682A" +
"\u86DB\u6731\u732A\u8BF8\u8BDB\u9010\u7AF9\u70DB" +
"\u716E\u62C4\u77A9\u5631\u4E3B\u8457\u67F1\u52A9" +
"\u86C0\u8D2E\u94F8\u7B51\u4F4F\u6CE8\u795D\u9A7B" +
"\u6293\u722A\u62FD\u4E13\u7816\u8F6C\u64B0\u8D5A" +
"\u7BC6\u6869\u5E84\u88C5\u5986\u649E\u58EE\u72B6" +
"\u690E\u9525\u8FFD\u8D58\u5760\u7F00\u8C06\u51C6" +
"\u6349\u62D9\u5353\u684C\u7422\u8301\u914C\u5544" +
"\u7740\u707C\u6D4A\u5179\u54A8\u8D44\u59FF\u6ECB" +
"\u6DC4\u5B5C\u7D2B\u4ED4\u7C7D\u6ED3\u5B50\u81EA" +
"\u6E0D\u5B57\u9B03\u68D5\u8E2A\u5B97\u7EFC\u603B" +
"\u7EB5\u90B9\u8D70\u594F\u63CD\u79DF\u8DB3\u5352" +
"\u65CF\u7956\u8BC5\u963B\u7EC4\u94BB\u7E82\u5634" +
"\u9189\u6700\u7F6A\u5C0A\u9075\u6628\u5DE6\u4F50" +
"\u67DE\u505A\u4F5C\u5750\u5EA7\uE2D8\uE2D9\uE2DA" +
"\uE2DB\uE2DC\u4E8D\u4E0C\u5140\u4E10\u5EFF\u5345" +
"\u4E15\u4E98\u4E1E\u9B32\u5B6C\u5669\u4E28\u79BA" +
"\u4E3F\u5315\u4E47\u592D\u723B\u536E\u6C10\u56DF" +
"\u80E4\u9997\u6BD3\u777E\u9F17\u4E36\u4E9F\u9F10" +
"\u4E5C\u4E69\u4E93\u8288\u5B5B\u556C\u560F\u4EC4" +
"\u538D\u539D\u53A3\u53A5\u53AE\u9765\u8D5D\u531A" +
"\u53F5\u5326\u532E\u533E\u8D5C\u5366\u5363\u5202" +
"\u5208\u520E\u522D\u5233\u523F\u5240\u524C\u525E" +
"\u5261\u525C\u84AF\u527D\u5282\u5281\u5290\u5293" +
"\u5182\u7F54\u4EBB\u4EC3\u4EC9\u4EC2\u4EE8\u4EE1" +
"\u4EEB\u4EDE\u4F1B\u4EF3\u4F22\u4F64\u4EF5\u4F25" +
"\u4F27\u4F09\u4F2B\u4F5E\u4F67\u6538\u4F5A\u4F5D" +
"\u4F5F\u4F57\u4F32\u4F3D\u4F76\u4F74\u4F91\u4F89" +
"\u4F83\u4F8F\u4F7E\u4F7B\u4FAA\u4F7C\u4FAC\u4F94" +
"\u4FE6\u4FE8\u4FEA\u4FC5\u4FDA\u4FE3\u4FDC\u4FD1" +
"\u4FDF\u4FF8\u5029\u504C\u4FF3\u502C\u500F\u502E" +
"\u502D\u4FFE\u501C\u500C\u5025\u5028\u507E\u5043" +
"\u5055\u5048\u504E\u506C\u507B\u50A5\u50A7\u50A9" +
"\u50BA\u50D6\u5106\u50ED\u50EC\u50E6\u50EE\u5107" +
"\u510B\u4EDD\u6C3D\u4F58\u4F65\u4FCE\u9FA0\u6C46" +
"\u7C74\u516E\u5DFD\u9EC9\u9998\u5181\u5914\u52F9" +
"\u530D\u8A07\u5310\u51EB\u5919\u5155\u4EA0\u5156" +
"\u4EB3\u886E\u88A4\u4EB5\u8114\u88D2\u7980\u5B34" +
"\u8803\u7FB8\u51AB\u51B1\u51BD\u51BC\u51C7\u5196" +
"\u51A2\u51A5\u8BA0\u8BA6\u8BA7\u8BAA\u8BB4\u8BB5" +
"\u8BB7\u8BC2\u8BC3\u8BCB\u8BCF\u8BCE\u8BD2\u8BD3" +
"\u8BD4\u8BD6\u8BD8\u8BD9\u8BDC\u8BDF\u8BE0\u8BE4" +
"\u8BE8\u8BE9\u8BEE\u8BF0\u8BF3\u8BF6\u8BF9\u8BFC" +
"\u8BFF\u8C00\u8C02\u8C04\u8C07\u8C0C\u8C0F\u8C11" +
"\u8C12\u8C14\u8C15\u8C16\u8C19\u8C1B\u8C18\u8C1D" +
"\u8C1F\u8C20\u8C21\u8C25\u8C27\u8C2A\u8C2B\u8C2E" +
"\u8C2F\u8C32\u8C33\u8C35\u8C36\u5369\u537A\u961D" +
"\u9622\u9621\u9631\u962A\u963D\u963C\u9642\u9649" +
"\u9654\u965F\u9667\u966C\u9672\u9674\u9688\u968D" +
"\u9697\u96B0\u9097\u909B\u909D\u9099\u90AC\u90A1" +
"\u90B4\u90B3\u90B6\u90BA\u90B8\u90B0\u90CF\u90C5" +
"\u90BE\u90D0\u90C4\u90C7\u90D3\u90E6\u90E2\u90DC" +
"\u90D7\u90DB\u90EB\u90EF\u90FE\u9104\u9122\u911E" +
"\u9123\u9131\u912F\u9139\u9143\u9146\u520D\u5942" +
"\u52A2\u52AC\u52AD\u52BE\u54FF\u52D0\u52D6\u52F0" +
"\u53DF\u71EE\u77CD\u5EF4\u51F5\u51FC\u9B2F\u53B6" +
"\u5F01\u755A\u5DEF\u574C\u57A9\u57A1\u587E\u58BC" +
"\u58C5\u58D1\u5729\u572C\u572A\u5733\u5739\u572E" +
"\u572F\u575C\u573B\u5742\u5769\u5785\u576B\u5786" +
"\u577C\u577B\u5768\u576D\u5776\u5773\u57AD\u57A4" +
"\u578C\u57B2\u57CF\u57A7\u57B4\u5793\u57A0\u57D5" +
"\u57D8\u57DA\u57D9\u57D2\u57B8\u57F4\u57EF\u57F8" +
"\u57E4\u57DD\u580B\u580D\u57FD\u57ED\u5800\u581E" +
"\u5819\u5844\u5820\u5865\u586C\u5881\u5889\u589A" +
"\u5880\u99A8\u9F19\u61FF\u8279\u827D\u827F\u828F" +
"\u828A\u82A8\u8284\u828E\u8291\u8297\u8299\u82AB" +
"\u82B8\u82BE\u82B0\u82C8\u82CA\u82E3\u8298\u82B7" +
"\u82AE\u82CB\u82CC\u82C1\u82A9\u82B4\u82A1\u82AA" +
"\u829F\u82C4\u82CE\u82A4\u82E1\u8309\u82F7\u82E4" +
"\u830F\u8307\u82DC\u82F4\u82D2\u82D8\u830C\u82FB" +
"\u82D3\u8311\u831A\u8306\u8314\u8315\u82E0\u82D5" +
"\u831C\u8351\u835B\u835C\u8308\u8392\u833C\u8334" +
"\u8331\u839B\u835E\u832F\u834F\u8347\u8343\u835F" +
"\u8340\u8317\u8360\u832D\u833A\u8333\u8366\u8365" +
"\u8368\u831B\u8369\u836C\u836A\u836D\u836E\u83B0" +
"\u8378\u83B3\u83B4\u83A0\u83AA\u8393\u839C\u8385" +
"\u837C\u83B6\u83A9\u837D\u83B8\u837B\u8398\u839E" +
"\u83A8\u83BA\u83BC\u83C1\u8401\u83E5\u83D8\u5807" +
"\u8418\u840B\u83DD\u83FD\u83D6\u841C\u8438\u8411" +
"\u8406\u83D4\u83DF\u840F\u8403\u83F8\u83F9\u83EA" +
"\u83C5\u83C0\u8426\u83F0\u83E1\u845C\u8451\u845A" +
"\u8459\u8473\u8487\u8488\u847A\u8489\u8478\u843C" +
"\u8446\u8469\u8476\u848C\u848E\u8431\u846D\u84C1" +
"\u84CD\u84D0\u84E6\u84BD\u84D3\u84CA\u84BF\u84BA" +
"\u84E0\u84A1\u84B9\u84B4\u8497\u84E5\u84E3\u850C" +
"\u750D\u8538\u84F0\u8539\u851F\u853A\u8556\u853B" +
"\u84FF\u84FC\u8559\u8548\u8568\u8564\u855E\u857A" +
"\u77A2\u8543\u8572\u857B\u85A4\u85A8\u8587\u858F" +
"\u8579\u85AE\u859C\u8585\u85B9\u85B7\u85B0\u85D3" +
"\u85C1\u85DC\u85FF\u8627\u8605\u8629\u8616\u863C" +
"\u5EFE\u5F08\u593C\u5941\u8037\u5955\u595A\u5958" +
"\u530F\u5C22\u5C25\u5C2C\u5C34\u624C\u626A\u629F" +
"\u62BB\u62CA\u62DA\u62D7\u62EE\u6322\u62F6\u6339" +
"\u634B\u6343\u63AD\u63F6\u6371\u637A\u638E\u63B4" +
"\u636D\u63AC\u638A\u6369\u63AE\u63BC\u63F2\u63F8" +
"\u63E0\u63FF\u63C4\u63DE\u63CE\u6452\u63C6\u63BE" +
"\u6445\u6441\u640B\u641B\u6420\u640C\u6426\u6421" +
"\u645E\u6484\u646D\u6496\u647A\u64B7\u64B8\u6499" +
"\u64BA\u64C0\u64D0\u64D7\u64E4\u64E2\u6509\u6525" +
"\u652E\u5F0B\u5FD2\u7519\u5F11\u535F\u53F1\u53FD" +
"\u53E9\u53E8\u53FB\u5412\u5416\u5406\u544B\u5452" +
"\u5453\u5454\u5456\u5443\u5421\u5457\u5459\u5423" +
"\u5432\u5482\u5494\u5477\u5471\u5464\u549A\u549B" +
"\u5484\u5476\u5466\u549D\u54D0\u54AD\u54C2\u54B4" +
"\u54D2\u54A7\u54A6\u54D3\u54D4\u5472\u54A3\u54D5" +
"\u54BB\u54BF\u54CC\u54D9\u54DA\u54DC\u54A9\u54AA" +
"\u54A4\u54DD\u54CF\u54DE\u551B\u54E7\u5520\u54FD" +
"\u5514\u54F3\u5522\u5523\u550F\u5511\u5527\u552A" +
"\u5567\u558F\u55B5\u5549\u556D\u5541\u5555\u553F" +
"\u5550\u553C\u5537\u5556\u5575\u5576\u5577\u5533" +
"\u5530\u555C\u558B\u55D2\u5583\u55B1\u55B9\u5588" +
"\u5581\u559F\u557E\u55D6\u5591\u557B\u55DF\u55BD" +
"\u55BE\u5594\u5599\u55EA\u55F7\u55C9\u561F\u55D1" +
"\u55EB\u55EC\u55D4\u55E6\u55DD\u55C4\u55EF\u55E5" +
"\u55F2\u55F3\u55CC\u55CD\u55E8\u55F5\u55E4\u8F94" +
"\u561E\u5608\u560C\u5601\u5624\u5623\u55FE\u5600" +
"\u5627\u562D\u5658\u5639\u5657\u562C\u564D\u5662" +
"\u5659\u565C\u564C\u5654\u5686\u5664\u5671\u566B" +
"\u567B\u567C\u5685\u5693\u56AF\u56D4\u56D7\u56DD" +
"\u56E1\u56F5\u56EB\u56F9\u56FF\u5704\u570A\u5709" +
"\u571C\u5E0F\u5E19\u5E14\u5E11\u5E31\u5E3B\u5E3C" +
"\u5E37\u5E44\u5E54\u5E5B\u5E5E\u5E61\u5C8C\u5C7A" +
"\u5C8D\u5C90\u5C96\u5C88\u5C98\u5C99\u5C91\u5C9A" +
"\u5C9C\u5CB5\u5CA2\u5CBD\u5CAC\u5CAB\u5CB1\u5CA3" +
"\u5CC1\u5CB7\u5CC4\u5CD2\u5CE4\u5CCB\u5CE5\u5D02" +
"\u5D03\u5D27\u5D26\u5D2E\u5D24\u5D1E\u5D06\u5D1B" +
"\u5D58\u5D3E\u5D34\u5D3D\u5D6C\u5D5B\u5D6F\u5D5D" +
"\u5D6B\u5D4B\u5D4A\u5D69\u5D74\u5D82\u5D99\u5D9D" +
"\u8C73\u5DB7\u5DC5\u5F73\u5F77\u5F82\u5F87\u5F89" +
"\u5F8C\u5F95\u5F99\u5F9C\u5FA8\u5FAD\u5FB5\u5FBC" +
"\u8862\u5F61\u72AD\u72B0\u72B4\u72B7\u72B8\u72C3" +
"\u72C1\u72CE\u72CD\u72D2\u72E8\u72EF\u72E9\u72F2" +
"\u72F4\u72F7\u7301\u72F3\u7303\u72FA\u72FB\u7317" +
"\u7313\u7321\u730A\u731E\u731D\u7315\u7322\u7339" +
"\u7325\u732C\u7338\u7331\u7350\u734D\u7357\u7360" +
"\u736C\u736F\u737E\u821B\u5925\u98E7\u5924\u5902" +
"\u9963\u9967\u9968\u9969\u996A\u996B\u996C\u9974" +
"\u9977\u997D\u9980\u9984\u9987\u998A\u998D\u9990" +
"\u9991\u9993\u9994\u9995\u5E80\u5E91\u5E8B\u5E96" +
"\u5EA5\u5EA0\u5EB9\u5EB5\u5EBE\u5EB3\u8D53\u5ED2" +
"\u5ED1\u5EDB\u5EE8\u5EEA\u81BA\u5FC4\u5FC9\u5FD6" +
"\u5FCF\u6003\u5FEE\u6004\u5FE1\u5FE4\u5FFE\u6005" +
"\u6006\u5FEA\u5FED\u5FF8\u6019\u6035\u6026\u601B" +
"\u600F\u600D\u6029\u602B\u600A\u603F\u6021\u6078" +
"\u6079\u607B\u607A\u6042\u606A\u607D\u6096\u609A" +
"\u60AD\u609D\u6083\u6092\u608C\u609B\u60EC\u60BB" +
"\u60B1\u60DD\u60D8\u60C6\u60DA\u60B4\u6120\u6126" +
"\u6115\u6123\u60F4\u6100\u610E\u612B\u614A\u6175" +
"\u61AC\u6194\u61A7\u61B7\u61D4\u61F5\u5FDD\u96B3" +
"\u95E9\u95EB\u95F1\u95F3\u95F5\u95F6\u95FC\u95FE" +
"\u9603\u9604\u9606\u9608\u960A\u960B\u960C\u960D" +
"\u960F\u9612\u9615\u9616\u9617\u9619\u961A\u4E2C" +
"\u723F\u6215\u6C35\u6C54\u6C5C\u6C4A\u6CA3\u6C85" +
"\u6C90\u6C94\u6C8C\u6C68\u6C69\u6C74\u6C76\u6C86" +
"\u6CA9\u6CD0\u6CD4\u6CAD\u6CF7\u6CF8\u6CF1\u6CD7" +
"\u6CB2\u6CE0\u6CD6\u6CFA\u6CEB\u6CEE\u6CB1\u6CD3" +
"\u6CEF\u6CFE\u6D39\u6D27\u6D0C\u6D43\u6D48\u6D07" +
"\u6D04\u6D19\u6D0E\u6D2B\u6D4D\u6D2E\u6D35\u6D1A" +
"\u6D4F\u6D52\u6D54\u6D33\u6D91\u6D6F\u6D9E\u6DA0" +
"\u6D5E\u6D93\u6D94\u6D5C\u6D60\u6D7C\u6D63\u6E1A" +
"\u6DC7\u6DC5\u6DDE\u6E0E\u6DBF\u6DE0\u6E11\u6DE6" +
"\u6DDD\u6DD9\u6E16\u6DAB\u6E0C\u6DAE\u6E2B\u6E6E" +
"\u6E4E\u6E6B\u6EB2\u6E5F\u6E86\u6E53\u6E54\u6E32" +
"\u6E25\u6E44\u6EDF\u6EB1\u6E98\u6EE0\u6F2D\u6EE2" +
"\u6EA5\u6EA7\u6EBD\u6EBB\u6EB7\u6ED7\u6EB4\u6ECF" +
"\u6E8F\u6EC2\u6E9F\u6F62\u6F46\u6F47\u6F24\u6F15" +
"\u6EF9\u6F2F\u6F36\u6F4B\u6F74\u6F2A\u6F09\u6F29" +
"\u6F89\u6F8D\u6F8C\u6F78\u6F72\u6F7C\u6F7A\u6FD1" +
"\u6FC9\u6FA7\u6FB9\u6FB6\u6FC2\u6FE1\u6FEE\u6FDE" +
"\u6FE0\u6FEF\u701A\u7023\u701B\u7039\u7035\u704F" +
"\u705E\u5B80\u5B84\u5B95\u5B93\u5BA5\u5BB8\u752F" +
"\u9A9E\u6434\u5BE4\u5BEE\u8930\u5BF0\u8E47\u8B07" +
"\u8FB6\u8FD3\u8FD5\u8FE5\u8FEE\u8FE4\u8FE9\u8FE6" +
"\u8FF3\u8FE8\u9005\u9004\u900B\u9026\u9011\u900D" +
"\u9016\u9021\u9035\u9036\u902D\u902F\u9044\u9051" +
"\u9052\u9050\u9068\u9058\u9062\u905B\u66B9\u9074" +
"\u907D\u9082\u9088\u9083\u908B\u5F50\u5F57\u5F56" +
"\u5F58\u5C3B\u54AB\u5C50\u5C59\u5B71\u5C63\u5C66" +
"\u7FBC\u5F2A\u5F29\u5F2D\u8274\u5F3C\u9B3B\u5C6E" +
"\u5981\u5983\u598D\u59A9\u59AA\u59A3\u5997\u59CA" +
"\u59AB\u599E\u59A4\u59D2\u59B2\u59AF\u59D7\u59BE" +
"\u5A05\u5A06\u59DD\u5A08\u59E3\u59D8\u59F9\u5A0C" +
"\u5A09\u5A32\u5A34\u5A11\u5A23\u5A13\u5A40\u5A67" +
"\u5A4A\u5A55\u5A3C\u5A62\u5A75\u80EC\u5AAA\u5A9B" +
"\u5A77\u5A7A\u5ABE\u5AEB\u5AB2\u5AD2\u5AD4\u5AB8" +
"\u5AE0\u5AE3\u5AF1\u5AD6\u5AE6\u5AD8\u5ADC\u5B09" +
"\u5B17\u5B16\u5B32\u5B37\u5B40\u5C15\u5C1C\u5B5A" +
"\u5B65\u5B73\u5B51\u5B53\u5B62\u9A75\u9A77\u9A78" +
"\u9A7A\u9A7F\u9A7D\u9A80\u9A81\u9A85\u9A88\u9A8A" +
"\u9A90\u9A92\u9A93\u9A96\u9A98\u9A9B\u9A9C\u9A9D" +
"\u9A9F\u9AA0\u9AA2\u9AA3\u9AA5\u9AA7\u7E9F\u7EA1" +
"\u7EA3\u7EA5\u7EA8\u7EA9\u7EAD\u7EB0\u7EBE\u7EC0" +
"\u7EC1\u7EC2\u7EC9\u7ECB\u7ECC\u7ED0\u7ED4\u7ED7" +
"\u7EDB\u7EE0\u7EE1\u7EE8\u7EEB\u7EEE\u7EEF\u7EF1" +
"\u7EF2\u7F0D\u7EF6\u7EFA\u7EFB\u7EFE\u7F01\u7F02" +
"\u7F03\u7F07\u7F08\u7F0B\u7F0C\u7F0F\u7F11\u7F12" +
"\u7F17\u7F19\u7F1C\u7F1B\u7F1F\u7F21\u7F22\u7F23" +
"\u7F24\u7F25\u7F26\u7F27\u7F2A\u7F2B\u7F2C\u7F2D" +
"\u7F2F\u7F30\u7F31\u7F32\u7F33\u7F35\u5E7A\u757F" +
"\u5DDB\u753E\u9095\u738E\u7391\u73AE\u73A2\u739F" +
"\u73CF\u73C2\u73D1\u73B7\u73B3\u73C0\u73C9\u73C8" +
"\u73E5\u73D9\u987C\u740A\u73E9\u73E7\u73DE\u73BA" +
"\u73F2\u740F\u742A\u745B\u7426\u7425\u7428\u7430" +
"\u742E\u742C\u741B\u741A\u7441\u745C\u7457\u7455" +
"\u7459\u7477\u746D\u747E\u749C\u748E\u7480\u7481" +
"\u7487\u748B\u749E\u74A8\u74A9\u7490\u74A7\u74D2" +
"\u74BA\u97EA\u97EB\u97EC\u674C\u6753\u675E\u6748" +
"\u6769\u67A5\u6787\u676A\u6773\u6798\u67A7\u6775" +
"\u67A8\u679E\u67AD\u678B\u6777\u677C\u67F0\u6809" +
"\u67D8\u680A\u67E9\u67B0\u680C\u67D9\u67B5\u67DA" +
"\u67B3\u67DD\u6800\u67C3\u67B8\u67E2\u680E\u67C1" +
"\u67FD\u6832\u6833\u6860\u6861\u684E\u6862\u6844" +
"\u6864\u6883\u681D\u6855\u6866\u6841\u6867\u6840" +
"\u683E\u684A\u6849\u6829\u68B5\u688F\u6874\u6877" +
"\u6893\u686B\u68C2\u696E\u68FC\u691F\u6920\u68F9" +
"\u6924\u68F0\u690B\u6901\u6957\u68E3\u6910\u6971" +
"\u6939\u6960\u6942\u695D\u6984\u696B\u6980\u6998" +
"\u6978\u6934\u69CC\u6987\u6988\u69CE\u6989\u6966" +
"\u6963\u6979\u699B\u69A7\u69BB\u69AB\u69AD\u69D4" +
"\u69B1\u69C1\u69CA\u69DF\u6995\u69E0\u698D\u69FF" +
"\u6A2F\u69ED\u6A17\u6A18\u6A65\u69F2\u6A44\u6A3E" +
"\u6AA0\u6A50\u6A5B\u6A35\u6A8E\u6A79\u6A3D\u6A28" +
"\u6A58\u6A7C\u6A91\u6A90\u6AA9\u6A97\u6AAB\u7337" +
"\u7352\u6B81\u6B82\u6B87\u6B84\u6B92\u6B93\u6B8D" +
"\u6B9A\u6B9B\u6BA1\u6BAA\u8F6B\u8F6D\u8F71\u8F72" +
"\u8F73\u8F75\u8F76\u8F78\u8F77\u8F79\u8F7A\u8F7C" +
"\u8F7E\u8F81\u8F82\u8F84\u8F87\u8F8B\u8F8D\u8F8E" +
"\u8F8F\u8F98\u8F9A\u8ECE\u620B\u6217\u621B\u621F" +
"\u6222\u6221\u6225\u6224\u622C\u81E7\u74EF\u74F4" +
"\u74FF\u750F\u7511\u7513\u6534\u65EE\u65EF\u65F0" +
"\u660A\u6619\u6772\u6603\u6615\u6600\u7085\u66F7" +
"\u661D\u6634\u6631\u6636\u6635\u8006\u665F\u6654" +
"\u6641\u664F\u6656\u6661\u6657\u6677\u6684\u668C" +
"\u66A7\u669D\u66BE\u66DB\u66DC\u66E6\u66E9\u8D32" +
"\u8D33\u8D36\u8D3B\u8D3D\u8D40\u8D45\u8D46\u8D48" +
"\u8D49\u8D47\u8D4D\u8D55\u8D59\u89C7\u89CA\u89CB" +
"\u89CC\u89CE\u89CF\u89D0\u89D1\u726E\u729F\u725D" +
"\u7266\u726F\u727E\u727F\u7284\u728B\u728D\u728F" +
"\u7292\u6308\u6332\u63B0\u643F\u64D8\u8004\u6BEA" +
"\u6BF3\u6BFD\u6BF5\u6BF9\u6C05\u6C07\u6C06\u6C0D" +
"\u6C15\u6C18\u6C19\u6C1A\u6C21\u6C29\u6C24\u6C2A" +
"\u6C32\u6535\u6555\u656B\u724D\u7252\u7256\u7230" +
"\u8662\u5216\u809F\u809C\u8093\u80BC\u670A\u80BD" +
"\u80B1\u80AB\u80AD\u80B4\u80B7\u80E7\u80E8\u80E9" +
"\u80EA\u80DB\u80C2\u80C4\u80D9\u80CD\u80D7\u6710" +
"\u80DD\u80EB\u80F1\u80F4\u80ED\u810D\u810E\u80F2" +
"\u80FC\u6715\u8112\u8C5A\u8136\u811E\u812C\u8118" +
"\u8132\u8148\u814C\u8153\u8174\u8159\u815A\u8171" +
"\u8160\u8169\u817C\u817D\u816D\u8167\u584D\u5AB5" +
"\u8188\u8182\u8191\u6ED5\u81A3\u81AA\u81CC\u6726" +
"\u81CA\u81BB\u81C1\u81A6\u6B24\u6B37\u6B39\u6B43" +
"\u6B46\u6B59\u98D1\u98D2\u98D3\u98D5\u98D9\u98DA" +
"\u6BB3\u5F40\u6BC2\u89F3\u6590\u9F51\u6593\u65BC" +
"\u65C6\u65C4\u65C3\u65CC\u65CE\u65D2\u65D6\u7080" +
"\u709C\u7096\u709D\u70BB\u70C0\u70B7\u70AB\u70B1" +
"\u70E8\u70CA\u7110\u7113\u7116\u712F\u7131\u7173" +
"\u715C\u7168\u7145\u7172\u714A\u7178\u717A\u7198" +
"\u71B3\u71B5\u71A8\u71A0\u71E0\u71D4\u71E7\u71F9" +
"\u721D\u7228\u706C\u7118\u7166\u71B9\u623E\u623D" +
"\u6243\u6248\u6249\u793B\u7940\u7946\u7949\u795B" +
"\u795C\u7953\u795A\u7962\u7957\u7960\u796F\u7967" +
"\u797A\u7985\u798A\u799A\u79A7\u79B3\u5FD1\u5FD0" +
"\u603C\u605D\u605A\u6067\u6041\u6059\u6063\u60AB" +
"\u6106\u610D\u615D\u61A9\u619D\u61CB\u61D1\u6206" +
"\u8080\u807F\u6C93\u6CF6\u6DFC\u77F6\u77F8\u7800" +
"\u7809\u7817\u7818\u7811\u65AB\u782D\u781C\u781D" +
"\u7839\u783A\u783B\u781F\u783C\u7825\u782C\u7823" +
"\u7829\u784E\u786D\u7856\u7857\u7826\u7850\u7847" +
"\u784C\u786A\u789B\u7893\u789A\u7887\u789C\u78A1" +
"\u78A3\u78B2\u78B9\u78A5\u78D4\u78D9\u78C9\u78EC" +
"\u78F2\u7905\u78F4\u7913\u7924\u791E\u7934\u9F9B" +
"\u9EF9\u9EFB\u9EFC\u76F1\u7704\u770D\u76F9\u7707" +
"\u7708\u771A\u7722\u7719\u772D\u7726\u7735\u7738" +
"\u7750\u7751\u7747\u7743\u775A\u7768\u7762\u7765" +
"\u777F\u778D\u777D\u7780\u778C\u7791\u779F\u77A0" +
"\u77B0\u77B5\u77BD\u753A\u7540\u754E\u754B\u7548" +
"\u755B\u7572\u7579\u7583\u7F58\u7F61\u7F5F\u8A48" +
"\u7F68\u7F74\u7F71\u7F79\u7F81\u7F7E\u76CD\u76E5" +
"\u8832\u9485\u9486\u9487\u948B\u948A\u948C\u948D" +
"\u948F\u9490\u9494\u9497\u9495\u949A\u949B\u949C" +
"\u94A3\u94A4\u94AB\u94AA\u94AD\u94AC\u94AF\u94B0" +
"\u94B2\u94B4\u94B6\u94B7\u94B8\u94B9\u94BA\u94BC" +
"\u94BD\u94BF\u94C4\u94C8\u94C9\u94CA\u94CB\u94CC" +
"\u94CD\u94CE\u94D0\u94D1\u94D2\u94D5\u94D6\u94D7" +
"\u94D9\u94D8\u94DB\u94DE\u94DF\u94E0\u94E2\u94E4" +
"\u94E5\u94E7\u94E8\u94EA\u94E9\u94EB\u94EE\u94EF" +
"\u94F3\u94F4\u94F5\u94F7\u94F9\u94FC\u94FD\u94FF" +
"\u9503\u9502\u9506\u9507\u9509\u950A\u950D\u950E" +
"\u950F\u9512\u9513\u9514\u9515\u9516\u9518\u951B" +
"\u951D\u951E\u951F\u9522\u952A\u952B\u9529\u952C" +
"\u9531\u9532\u9534\u9536\u9537\u9538\u953C\u953E" +
"\u953F\u9542\u9535\u9544\u9545\u9546\u9549\u954C" +
"\u954E\u954F\u9552\u9553\u9554\u9556\u9557\u9558" +
"\u9559\u955B\u955E\u955F\u955D\u9561\u9562\u9564" +
"\u9565\u9566\u9567\u9568\u9569\u956A\u956B\u956C" +
"\u956F\u9571\u9572\u9573\u953A\u77E7\u77EC\u96C9" +
"\u79D5\u79ED\u79E3\u79EB\u7A06\u5D47\u7A03\u7A02" +
"\u7A1E\u7A14\u7A39\u7A37\u7A51\u9ECF\u99A5\u7A70" +
"\u7688\u768E\u7693\u7699\u76A4\u74DE\u74E0\u752C" +
"\u9E20\u9E22\u9E28\u9E29\u9E2A\u9E2B\u9E2C\u9E32" +
"\u9E31\u9E36\u9E38\u9E37\u9E39\u9E3A\u9E3E\u9E41" +
"\u9E42\u9E44\u9E46\u9E47\u9E48\u9E49\u9E4B\u9E4C" +
"\u9E4E\u9E51\u9E55\u9E57\u9E5A\u9E5B\u9E5C\u9E5E" +
"\u9E63\u9E66\u9E67\u9E68\u9E69\u9E6A\u9E6B\u9E6C" +
"\u9E71\u9E6D\u9E73\u7592\u7594\u7596\u75A0\u759D" +
"\u75AC\u75A3\u75B3\u75B4\u75B8\u75C4\u75B1\u75B0" +
"\u75C3\u75C2\u75D6\u75CD\u75E3\u75E8\u75E6\u75E4" +
"\u75EB\u75E7\u7603\u75F1\u75FC\u75FF\u7610\u7600" +
"\u7605\u760C\u7617\u760A\u7625\u7618\u7615\u7619" +
"\u761B\u763C\u7622\u7620\u7640\u762D\u7630\u763F" +
"\u7635\u7643\u763E\u7633\u764D\u765E\u7654\u765C" +
"\u7656\u766B\u766F\u7FCA\u7AE6\u7A78\u7A79\u7A80" +
"\u7A86\u7A88\u7A95\u7AA6\u7AA0\u7AAC\u7AA8\u7AAD" +
"\u7AB3\u8864\u8869\u8872\u887D\u887F\u8882\u88A2" +
"\u88C6\u88B7\u88BC\u88C9\u88E2\u88CE\u88E3\u88E5" +
"\u88F1\u891A\u88FC\u88E8\u88FE\u88F0\u8921\u8919" +
"\u8913\u891B\u890A\u8934\u892B\u8936\u8941\u8966" +
"\u897B\u758B\u80E5\u76B2\u76B4\u77DC\u8012\u8014" +
"\u8016\u801C\u8020\u8022\u8025\u8026\u8027\u8029" +
"\u8028\u8031\u800B\u8035\u8043\u8046\u804D\u8052" +
"\u8069\u8071\u8983\u9878\u9880\u9883\u9889\u988C" +
"\u988D\u988F\u9894\u989A\u989B\u989E\u989F\u98A1" +
"\u98A2\u98A5\u98A6\u864D\u8654\u866C\u866E\u867F" +
"\u867A\u867C\u867B\u86A8\u868D\u868B\u86AC\u869D" +
"\u86A7\u86A3\u86AA\u8693\u86A9\u86B6\u86C4\u86B5" +
"\u86CE\u86B0\u86BA\u86B1\u86AF\u86C9\u86CF\u86B4" +
"\u86E9\u86F1\u86F2\u86ED\u86F3\u86D0\u8713\u86DE" +
"\u86F4\u86DF\u86D8\u86D1\u8703\u8707\u86F8\u8708" +
"\u870A\u870D\u8709\u8723\u873B\u871E\u8725\u872E" +
"\u871A\u873E\u8748\u8734\u8731\u8729\u8737\u873F" +
"\u8782\u8722\u877D\u877E\u877B\u8760\u8770\u874C" +
"\u876E\u878B\u8753\u8763\u877C\u8764\u8759\u8765" +
"\u8793\u87AF\u87A8\u87D2\u87C6\u8788\u8785\u87AD" +
"\u8797\u8783\u87AB\u87E5\u87AC\u87B5\u87B3\u87CB" +
"\u87D3\u87BD\u87D1\u87C0\u87CA\u87DB\u87EA\u87E0" +
"\u87EE\u8816\u8813\u87FE\u880A\u881B\u8821\u8839" +
"\u883C\u7F36\u7F42\u7F44\u7F45\u8210\u7AFA\u7AFD" +
"\u7B08\u7B03\u7B04\u7B15\u7B0A\u7B2B\u7B0F\u7B47" +
"\u7B38\u7B2A\u7B19\u7B2E\u7B31\u7B20\u7B25\u7B24" +
"\u7B33\u7B3E\u7B1E\u7B58\u7B5A\u7B45\u7B75\u7B4C" +
"\u7B5D\u7B60\u7B6E\u7B7B\u7B62\u7B72\u7B71\u7B90" +
"\u7BA6\u7BA7\u7BB8\u7BAC\u7B9D\u7BA8\u7B85\u7BAA" +
"\u7B9C\u7BA2\u7BAB\u7BB4\u7BD1\u7BC1\u7BCC\u7BDD" +
"\u7BDA\u7BE5\u7BE6\u7BEA\u7C0C\u7BFE\u7BFC\u7C0F" +
"\u7C16\u7C0B\u7C1F\u7C2A\u7C26\u7C38\u7C41\u7C40" +
"\u81FE\u8201\u8202\u8204\u81EC\u8844\u8221\u8222" +
"\u8223\u822D\u822F\u8228\u822B\u8238\u823B\u8233" +
"\u8234\u823E\u8244\u8249\u824B\u824F\u825A\u825F" +
"\u8268\u887E\u8885\u8888\u88D8\u88DF\u895E\u7F9D" +
"\u7F9F\u7FA7\u7FAF\u7FB0\u7FB2\u7C7C\u6549\u7C91" +
"\u7C9D\u7C9C\u7C9E\u7CA2\u7CB2\u7CBC\u7CBD\u7CC1" +
"\u7CC7\u7CCC\u7CCD\u7CC8\u7CC5\u7CD7\u7CE8\u826E" +
"\u66A8\u7FBF\u7FCE\u7FD5\u7FE5\u7FE1\u7FE6\u7FE9" +
"\u7FEE\u7FF3\u7CF8\u7D77\u7DA6\u7DAE\u7E47\u7E9B" +
"\u9EB8\u9EB4\u8D73\u8D84\u8D94\u8D91\u8DB1\u8D67" +
"\u8D6D\u8C47\u8C49\u914A\u9150\u914E\u914F\u9164" +
"\u9162\u9161\u9170\u9169\u916F\u917D\u917E\u9172" +
"\u9174\u9179\u918C\u9185\u9190\u918D\u9191\u91A2" +
"\u91A3\u91AA\u91AD\u91AE\u91AF\u91B5\u91B4\u91BA" +
"\u8C55\u9E7E\u8DB8\u8DEB\u8E05\u8E59\u8E69\u8DB5" +
"\u8DBF\u8DBC\u8DBA\u8DC4\u8DD6\u8DD7\u8DDA\u8DDE" +
"\u8DCE\u8DCF\u8DDB\u8DC6\u8DEC\u8DF7\u8DF8\u8DE3" +
"\u8DF9\u8DFB\u8DE4\u8E09\u8DFD\u8E14\u8E1D\u8E1F" +
"\u8E2C\u8E2E\u8E23\u8E2F\u8E3A\u8E40\u8E39\u8E35" +
"\u8E3D\u8E31\u8E49\u8E41\u8E42\u8E51\u8E52\u8E4A" +
"\u8E70\u8E76\u8E7C\u8E6F\u8E74\u8E85\u8E8F\u8E94" +
"\u8E90\u8E9C\u8E9E\u8C78\u8C82\u8C8A\u8C85\u8C98" +
"\u8C94\u659B\u89D6\u89DE\u89DA\u89DC\u89E5\u89EB" +
"\u89EF\u8A3E\u8B26\u9753\u96E9\u96F3\u96EF\u9706" +
"\u9701\u9708\u970F\u970E\u972A\u972D\u9730\u973E" +
"\u9F80\u9F83\u9F85\u9F86\u9F87\u9F88\u9F89\u9F8A" +
"\u9F8C\u9EFE\u9F0B\u9F0D\u96B9\u96BC\u96BD\u96CE" +
"\u96D2\u77BF\u96E0\u928E\u92AE\u92C8\u933E\u936A" +
"\u93CA\u938F\u943E\u946B\u9C7F\u9C82\u9C85\u9C86" +
"\u9C87\u9C88\u7A23\u9C8B\u9C8E\u9C90\u9C91\u9C92" +
"\u9C94\u9C95\u9C9A\u9C9B\u9C9E\u9C9F\u9CA0\u9CA1" +
"\u9CA2\u9CA3\u9CA5\u9CA6\u9CA7\u9CA8\u9CA9\u9CAB" +
"\u9CAD\u9CAE\u9CB0\u9CB1\u9CB2\u9CB3\u9CB4\u9CB5" +
"\u9CB6\u9CB7\u9CBA\u9CBB\u9CBC\u9CBD\u9CC4\u9CC5" +
"\u9CC6\u9CC7\u9CCA\u9CCB\u9CCC\u9CCD\u9CCE\u9CCF" +
"\u9CD0\u9CD3\u9CD4\u9CD5\u9CD7\u9CD8\u9CD9\u9CDC" +
"\u9CDD\u9CDF\u9CE2\u977C\u9785\u9791\u9792\u9794" +
"\u97AF\u97AB\u97A3\u97B2\u97B4\u9AB1\u9AB0\u9AB7" +
"\u9E58\u9AB6\u9ABA\u9ABC\u9AC1\u9AC0\u9AC5\u9AC2" +
"\u9ACB\u9ACC\u9AD1\u9B45\u9B43\u9B47\u9B49\u9B48" +
"\u9B4D\u9B51\u98E8\u990D\u992E\u9955\u9954\u9ADF" +
"\u9AE1\u9AE6\u9AEF\u9AEB\u9AFB\u9AED\u9AF9\u9B08" +
"\u9B0F\u9B13\u9B1F\u9B23\u9EBD\u9EBE\u7E3B\u9E82" +
"\u9E87\u9E88\u9E8B\u9E92\u93D6\u9E9D\u9E9F\u9EDB" +
"\u9EDC\u9EDD\u9EE0\u9EDF\u9EE2\u9EE9\u9EE7\u9EE5" +
"\u9EEA\u9EEF\u9F22\u9F2C\u9F2F\u9F39\u9F37\u9F3D" +
"\u9F3E\u9F44\uE2DD\uE2DE\uE2DF\uE2E0\uE2E1\uE2E2" +
"\uE2E3\uE2E4\uE2E5\uE2E6\uE2E7\uE2E8\uE2E9\uE2EA" +
"\uE2EB\uE2EC\uE2ED\uE2EE\uE2EF\uE2F0\uE2F1\uE2F2" +
"\uE2F3\uE2F4\uE2F5\uE2F6\uE2F7\uE2F8\uE2F9\uE2FA" +
"\uE2FB\uE2FC\uE2FD\uE2FE\uE2FF\uE300\uE301\uE302" +
"\uE303\uE304\uE305\uE306\uE307\uE308\uE309\uE30A" +
"\uE30B\uE30C\uE30D\uE30E\uE30F\uE310\uE311\uE312" +
"\uE313\uE314\uE315\uE316\uE317\uE318\uE319\uE31A" +
"\uE31B\uE31C\uE31D\uE31E\uE31F\uE320\uE321\uE322" +
"\uE323\uE324\uE325\uE326\uE327\uE328\uE329\uE32A" +
"\uE32B\uE32C\uE32D\uE32E\uE32F\uE330\uE331\uE332" +
"\uE333\uE334\uE335\uE336\uE337\uE338\uE339\uE33A" +
"\uE33B\uE33C\uE33D\uE33E\uE33F\uE340\uE341\uE342" +
"\uE343\uE344\uE345\uE346\uE347\uE348\uE349\uE34A" +
"\uE34B\uE34C\uE34D\uE34E\uE34F\uE350\uE351\uE352" +
"\uE353\uE354\uE355\uE356\uE357\uE358\uE359\uE35A" +
"\uE35B\uE35C\uE35D\uE35E\uE35F\uE360\uE361\uE362" +
"\uE363\uE364\uE365\uE366\uE367\uE368\uE369\uE36A" +
"\uE36B\uE36C\uE36D\uE36E\uE36F\uE370\uE371\uE372" +
"\uE373\uE374\uE375\uE376\uE377\uE378\uE379\uE37A" +
"\uE37B\uE37C\uE37D\uE37E\uE37F\uE380\uE381\uE382" +
"\uE383\uE384\uE385\uE386\uE387\uE388\uE389\uE38A" +
"\uE38B\uE38C\uE38D\uE38E\uE38F\uE390\uE391\uE392" +
"\uE393\uE394\uE395\uE396\uE397\uE398\uE399\uE39A" +
"\uE39B\uE39C\uE39D\uE39E\uE39F\uE3A0\uE3A1\uE3A2" +
"\uE3A3\uE3A4\uE3A5\uE3A6\uE3A7\uE3A8\uE3A9\uE3AA" +
"\uE3AB\uE3AC\uE3AD\uE3AE\uE3AF\uE3B0\uE3B1\uE3B2" +
"\uE3B3\uE3B4\uE3B5\uE3B6\uE3B7\uE3B8\uE3B9\uE3BA" +
"\uE3BB\uE3BC\uE3BD\uE3BE\uE3BF\uE3C0\uE3C1\uE3C2" +
"\uE3C3\uE3C4\uE3C5\uE3C6\uE3C7\uE3C8\uE3C9\uE3CA" +
"\uE3CB\uE3CC\uE3CD\uE3CE\uE3CF\uE3D0\uE3D1\uE3D2" +
"\uE3D3\uE3D4\uE3D5\uE3D6\uE3D7\uE3D8\uE3D9\uE3DA" +
"\uE3DB\uE3DC\uE3DD\uE3DE\uE3DF\uE3E0\uE3E1\uE3E2" +
"\uE3E3\uE3E4\uE3E5\uE3E6\uE3E7\uE3E8\uE3E9\uE3EA" +
"\uE3EB\uE3EC\uE3ED\uE3EE\uE3EF\uE3F0\uE3F1\uE3F2" +
"\uE3F3\uE3F4\uE3F5\uE3F6\uE3F7\uE3F8\uE3F9\uE3FA" +
"\uE3FB\uE3FC\uE3FD\uE3FE\uE3FF\uE400\uE401\uE402" +
"\uE403\uE404\uE405\uE406\uE407\uE408\uE409\uE40A" +
"\uE40B\uE40C\uE40D\uE40E\uE40F\uE410\uE411\uE412" +
"\uE413\uE414\uE415\uE416\uE417\uE418\uE419\uE41A" +
"\uE41B\uE41C\uE41D\uE41E\uE41F\uE420\uE421\uE422" +
"\uE423\uE424\uE425\uE426\uE427\uE428\uE429\uE42A" +
"\uE42B\uE42C\uE42D\uE42E\uE42F\uE430\uE431\uE432" +
"\uE433\uE434\uE435\uE436\uE437\uE438\uE439\uE43A" +
"\uE43B\uE43C\uE43D\uE43E\uE43F\uE440\uE441\uE442" +
"\uE443\uE444\uE445\uE446\uE447\uE448\uE449\uE44A" +
"\uE44B\uE44C\uE44D\uE44E\uE44F\uE450\uE451\uE452" +
"\uE453\uE454\uE455\uE456\uE457\uE458\uE459\uE45A" +
"\uE45B\uE45C\uE45D\uE45E\uE45F\uE460\uE461\uE462" +
"\uE463\uE464\uE465\uE466\uE467\uE468\uE469\uE46A" +
"\uE46B\uE46C\uE46D\uE46E\uE46F\uE470\uE471\uE472" +
"\uE473\uE474\uE475\uE476\uE477\uE478\uE479\uE47A" +
"\uE47B\uE47C\uE47D\uE47E\uE47F\uE480\uE481\uE482" +
"\uE483\uE484\uE485\uE486\uE487\uE488\uE489\uE48A" +
"\uE48B\uE48C\uE48D\uE48E\uE48F\uE490\uE491\uE492" +
"\uE493\uE494\uE495\uE496\uE497\uE498\uE499\uE49A" +
"\uE49B\uE49C\uE49D\uE49E\uE49F\uE4A0\uE4A1\uE4A2" +
"\uE4A3\uE4A4\uE4A5\uE4A6\uE4A7\uE4A8\uE4A9\uE4AA" +
"\uE4AB\uE4AC\uE4AD\uE4AE\uE4AF\uE4B0\uE4B1\uE4B2" +
"\uE4B3\uE4B4\uE4B5\uE4B6\uE4B7\uE4B8\uE4B9\uE4BA" +
"\uE4BB\uE4BC\uE4BD\uE4BE\uE4BF\uE4C0\uE4C1\uE4C2" +
"\uE4C3\uE4C4\uE4C5\uE4C6\uE4C7\uE4C8\uE4C9\uE4CA" +
"\uE4CB\uE4CC\uE4CD\uE4CE\uE4CF\uE4D0\uE4D1\uE4D2" +
"\uE4D3\uE4D4\uE4D5\uE4D6\uE4D7\uE4D8\uE4D9\uE4DA" +
"\uE4DB\uE4DC\uE4DD\uE4DE\uE4DF\uE4E0\uE4E1\uE4E2" +
"\uE4E3\uE4E4\uE4E5\uE4E6\uE4E7\uE4E8\uE4E9\uE4EA" +
"\uE4EB\uE4EC\uE4ED\uE4EE\uE4EF\uE4F0\uE4F1\uE4F2" +
"\uE4F3\uE4F4\uE4F5\uE4F6\uE4F7\uE4F8\uE4F9\uE4FA" +
"\uE4FB\uE4FC\uE4FD\uE4FE\uE4FF\uE500\uE501\uE502" +
"\uE503\uE504\uE505\uE506\uE507\uE508\uE509\uE50A" +
"\uE50B\uE50C\uE50D\uE50E\uE50F\uE510\uE511\uE512" +
"\uE513\uE514\uE515\uE516\uE517\uE518\uE519\uE51A" +
"\uE51B\uE51C\uE51D\uE51E\uE51F\uE520\uE521\uE522" +
"\uE523\uE524\uE525\uE526\uE527\uE528\uE529\uE52A" +
"\uE52B\uE52C\uE52D\uE52E\uE52F\uE530\uE531\uE532" +
"\uE533\uE534\uE535\uE536\uE537\uE538\uE539\uE53A" +
"\uE53B\uE53C\uE53D\uE53E\uE53F\uE540\uE541\uE542" +
"\uE543\uE544\uE545\uE546\uE547\uE548\uE549\uE54A" +
"\uE54B\uE54C\uE54D\uE54E\uE54F\u2170\u2171\u2172" +
"\u2173\u2174\u2175\u2176\u2177\u2178\u2179\uFFE2" +
"\uFFE4\uFF07\u30FC\uFFE5\u309B\u309C\u30FD\u30FE" +
"\u2010\u4EDD\u3006\u3007\u3012\u3231\u2121\u2025" +
"\u309D\u309E\u25BD\u25BC"
;
}
}
protected static class Encoder extends DBCS_IBM_ASCII_Encoder {
public Encoder(Charset cs) {
super(cs);
super.mask1 = 0xFFE0;
super.mask2 = 0x001F;
super.shift = 5;
super.index1 = index1;
super.index2 = index2;
super.index2a = index2a;
}
private static final short index1[] =
{
19046, 19603, 19571, 19539, 19507, 9071, 18960, 19446, // 0000 - 00FF
18777, 6901, 6823, 8578, 1590, 1590, 13648, 1590, // 0100 - 01FF
1590, 1590, 1590, 1590, 1590, 1590, 6866, 1590, // 0200 - 02FF
1590, 1590, 1590, 1590, 6916, 19414, 19217, 1590, // 0300 - 03FF
18310, 19185, 19078, 1590, 1590, 1590, 1590, 1590, // 0400 - 04FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0500 - 05FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0600 - 06FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0700 - 07FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0800 - 08FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0900 - 09FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0A00 - 0AFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0B00 - 0BFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0C00 - 0CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0D00 - 0DFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0E00 - 0EFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 0F00 - 0FFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1000 - 10FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1100 - 11FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1200 - 12FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1300 - 13FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1400 - 14FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1500 - 15FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1600 - 16FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1700 - 17FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1800 - 18FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1900 - 19FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1A00 - 1AFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1B00 - 1BFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1C00 - 1CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1D00 - 1DFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1E00 - 1EFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 1F00 - 1FFF
18420, 11322, 1590, 1590, 1590, 1590, 1590, 1590, // 2000 - 20FF
15361, 18125, 1590, 18899, 2838, 1590, 1590, 1590, // 2100 - 21FF
3345, 18837, 12618, 18727, 15251, 10478, 1590, 1590, // 2200 - 22FF
6880, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2300 - 23FF
1590, 1590, 1590, 18695, 18605, 1590, 1590, 1590, // 2400 - 24FF
18573, 18541, 18404, 1590, 1590, 18342, 9762, 1590, // 2500 - 25FF
7614, 1590, 18276, 1590, 1590, 1590, 1590, 1590, // 2600 - 26FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2700 - 27FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2800 - 28FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2900 - 29FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2A00 - 2AFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2B00 - 2BFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2C00 - 2CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2D00 - 2DFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2E00 - 2EFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 2F00 - 2FFF
18191, 1590, 18030, 18159, 18094, 17897, 18062, 17999, // 3000 - 30FF
7555, 17929, 1590, 1590, 1590, 1590, 1590, 1590, // 3100 - 31FF
1590, 17846, 1590, 1590, 1590, 1590, 1590, 1590, // 3200 - 32FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3300 - 33FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3400 - 34FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3500 - 35FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3600 - 36FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3700 - 37FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3800 - 38FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3900 - 39FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3A00 - 3AFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3B00 - 3BFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3C00 - 3CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3D00 - 3DFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3E00 - 3EFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 3F00 - 3FFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4000 - 40FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4100 - 41FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4200 - 42FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4300 - 43FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4400 - 44FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4500 - 45FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4600 - 46FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4700 - 47FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4800 - 48FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4900 - 49FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4A00 - 4AFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4B00 - 4BFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4C00 - 4CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 4D00 - 4DFF
17783, 17624, 13507, 17720, 10419, 17688, 17656, 17814, // 4E00 - 4EFF
17751, 17594, 14538, 17562, 14599, 17530, 10873, 16862, // 4F00 - 4FFF
5821, 16831, 14073, 6386, 17444, 13738, 11295, 9043, // 5000 - 50FF
8557, 16893, 17383, 17321, 17262, 17200, 17079, 17047, // 5100 - 51FF
16957, 16925, 16800, 16548, 16485, 16768, 13677, 8621, // 5200 - 52FF
16706, 16674, 16078, 16642, 17351, 17230, 15101, 16580, // 5300 - 53FF
14252, 16517, 16425, 17109, 16363, 11815, 16331, 5474, // 5400 - 54FF
16019, 16299, 15727, 15070, 16267, 9163, 9613, 14221, // 5500 - 55FF
16235, 11722, 153, 17139, 5051, 11601, 8189, 16203, // 5600 - 56FF
8470, 11379, 16171, 16110, 16987, 15935, 16736, 15843, // 5700 - 57FF
15696, 15593, 8016, 4453, 15561, 18215, 15003, 7933, // 5800 - 58FF
16610, 6707, 14881, 15499, 14190, 9810, 9555, 10361, // 5900 - 59FF
13886, 15332, 15217, 16393, 19231, 2466, 13478, 15165, // 5A00 - 5AFF
8131, 17943, 15133, 15873, 14972, 14940, 15903, 13092, // 5B00 - 5BFF
14724, 15529, 14850, 14818, 14509, 14754, 14133, 13797, // 5C00 - 5CFF
13855, 3493, 18985, 2801, 13031, 2178, 3290, 13447, // 5D00 - 5DFF
13001, 9438, 13061, 12906, 14786, 14693, 14450, 17967, // 5E00 - 5EFF
14661, 14570, 14284, 10844, 14044, 12781, 10721, 14012, // 5F00 - 5FFF
13950, 13918, 12473, 14629, 10966, 13709, 2380, 13603, // 6000 - 60FF
13571, 13539, 14338, 14314, 8893, 4141, 14368, 7004, // 6100 - 61FF
7464, 8840, 13314, 10576, 13282, 13250, 12811, 13980, // 6200 - 62FF
11441, 13181, 12503, 11218, 13124, 12970, 5566, 12938, // 6300 - 63FF
12875, 12843, 10813, 3994, 13416, 4838, 12750, 13211, // 6400 - 64FF
12666, 4021, 19317, 12141, 19660, 12111, 11905, 12567, // 6500 - 65FF
12535, 12442, 11661, 8809, 12227, 2203, 6297, 15811, // 6600 - 66FF
12410, 4542, 12378, 12346, 11410, 12257, 11187, 12314, // 6700 - 67FF
12197, 10782, 12044, 11988, 10099, 10153, 11847, 11786, // 6800 - 68FF
11092, 11754, 10751, 11693, 11572, 15960, 11029, 11540, // 6900 - 69FF
19866, 8778, 4629, 8441, 11473, 11278, 1590, 1590, // 6A00 - 6AFF
1590, 11156, 9736, 10332, 10639, 10515, 10261, 9194, // 6B00 - 6BFF
18805, 9986, 11124, 11061, 9923, 9841, 3821, 10998, // 6C00 - 6CFF
8747, 19259, 8410, 10937, 9224, 10905, 10608, 10547, // 6D00 - 6DFF
18633, 10451, 9348, 5072, 9497, 10016, 9287, 10393, // 6E00 - 6EFF
10046, 10230, 4366, 9707, 3887, 9017, 9955, 9873, // 6F00 - 6FFF
8593, 8531, 6585, 3937, 9677, 13386, 9645, 2262, // 7000 - 70FF
15384, 15277, 13766, 19720, 19475, 9529, 8108, 9412, // 7100 - 71FF
3763, 12165, 13149, 8954, 9380, 19098, 8716, 9319, // 7200 - 72FF
8379, 8252, 9138, 9256, 19153, 9585, 8986, 8872, // 7300 - 73FF
7988, 9468, 8047, 18746, 8685, 12691, 15039, 8653, // 7400 - 74FF
15467, 16047, 8502, 17015, 6736, 8348, 8923, 7777, // 7500 - 75FF
8316, 8284, 8221, 6227, 6978, 18244, 7153, 15988, // 7600 - 76FF
7683, 8079, 7905, 7247, 7873, 7841, 9781, 6327, // 7700 - 77FF
7809, 6135, 7747, 15615, 12282, 7652, 7438, 11929, // 7800 - 78FF
7216, 14102, 7715, 7587, 7528, 7092, 7496, 3643, // 7900 - 79FF
7407, 7375, 1869, 12634, 7343, 7311, 2859, 7279, // 7A00 - 7AFF
3583, 7185, 13825, 7036, 6948, 7067, 7123, 6616, // 7B00 - 7BFF
3200, 2137, 6768, 10302, 10198, 5689, 6647, 6679, // 7C00 - 7CFF
15025, 6546, 1590, 6841, 1590, 9119, 1590, 1590, // 7D00 - 7DFF
1590, 3859, 6289, 1590, 5883, 6514, 6482, 6450, // 7E00 - 7EFF
6418, 6359, 3673, 6258, 6166, 5978, 5720, 6198, // 7F00 - 7FFF
6106, 6074, 5447, 15300, 6042, 6010, 5947, 5659, // 8000 - 80FF
5354, 17866, 15411, 5915, 5853, 3465, 5784, 4867, // 8100 - 81FF
5752, 5628, 17412, 12012, 5260, 5597, 5385, 5538, // 8200 - 82FF
3614, 10692, 5506, 5417, 14478, 5324, 5292, 5230, // 8300 - 83FF
3524, 17291, 15438, 5024, 3554, 4961, 4898, 5198, // 8400 - 84FF
15185, 4748, 3405, 16454, 15756, 15785, 3436, 17168, // 8500 - 85FF
13342, 19124, 9892, 4778, 5136, 4426, 5104, 11630, // 8600 - 86FF
4993, 4484, 18925, 4930, 5166, 10123, 4810, 4717, // 8700 - 87FF
4601, 3376, 4516, 2746, 4397, 4572, 4172, 2322, // 8800 - 88FF
3793, 3321, 4084, 14908, 3852, 1590, 2715, 3916, // 8900 - 89FF
4332, 18279, 11497, 4340, 13365, 1590, 1590, 1590, // 8A00 - 8AFF
18951, 15244, 1590, 13630, 1590, 4300, 4268, 4236, // 8B00 - 8BFF
4204, 4116, 3263, 2353, 3175, 1590, 1590, 1590, // 8C00 - 8CFF
6, 19812, 4053, 3969, 19992, 2558, 2047, 18479, // 8D00 - 8DFF
11246, 2292, 3737, 12718, 2684, 9092, 17462, 1590, // 8E00 - 8EFF
1590, 1590, 1590, 11956, 2621, 182, 2497, 3145, // 8F00 - 8FFF
3705, 3232, 2234, 1954, 3115, 19781, 1924, 19961, // 9000 - 90FF
19750, 1843, 19015, 1749, 4657, 19290, 7959, 1590, // 9100 - 91FF
1590, 1590, 1590, 8167, 6786, 17480, 8155, 1590, // 9200 - 92FF
1590, 19351, 1590, 12066, 5801, 1590, 10175, 1590, // 9300 - 93FF
1590, 10484, 1590, 2822, 4685, 3083, 3051, 3019, // 9400 - 94FF
2987, 1686, 2955, 213, 1590, 1590, 1590, 1893, // 9500 - 95FF
2923, 69, 2891, 19635, 11350, 14159, 2778, 2653, // 9600 - 96FF
2590, 10068, 12080, 2529, 10667, 2444, 1590, 12594, // 9700 - 97FF
1590, 1590, 1590, 11508, 2412, 2169, 17498, 14415, // 9800 - 98FF
6565, 6804, 14427, 18867, 2111, 10289, 1590, 1590, // 9900 - 99FF
1590, 1590, 1590, 15664, 2079, 2018, 1986, 19692, // 9A00 - 9AFF
18663, 18450, 19844, 1590, 1590, 1590, 1590, 1590, // 9B00 - 9BFF
1590, 1590, 1590, 13218, 19898, 1813, 18509, 19348, // 9C00 - 9CFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // 9D00 - 9DFF
1591, 1781, 19930, 18372, 19382, 11874, 16139, 1718, // 9E00 - 9EFF
14389, 1655, 15644, 18127, 1623, 1589, 1590, 1590, // 9F00 - 9FFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A000 - A0FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A100 - A1FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A200 - A2FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A300 - A3FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A400 - A4FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A500 - A5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A600 - A6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A700 - A7FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A800 - A8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // A900 - A9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AA00 - AAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AB00 - ABFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AC00 - ACFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AD00 - ADFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AE00 - AEFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // AF00 - AFFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B000 - B0FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B100 - B1FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B200 - B2FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B300 - B3FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B400 - B4FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B500 - B5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B600 - B6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B700 - B7FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B800 - B8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // B900 - B9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BA00 - BAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BB00 - BBFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BC00 - BCFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BD00 - BDFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BE00 - BEFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // BF00 - BFFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C000 - C0FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C100 - C1FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C200 - C2FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C300 - C3FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C400 - C4FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C500 - C5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C600 - C6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C700 - C7FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C800 - C8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // C900 - C9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CA00 - CAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CB00 - CBFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CC00 - CCFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CD00 - CDFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CE00 - CEFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // CF00 - CFFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D000 - D0FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D100 - D1FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D200 - D2FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D300 - D3FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D400 - D4FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D500 - D5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D600 - D6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D700 - D7FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D800 - D8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // D900 - D9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DA00 - DAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DB00 - DBFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DC00 - DCFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DD00 - DDFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DE00 - DEFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // DF00 - DFFF
1557, 1525, 1493, 1461, 1429, 1397, 1365, 1333, // E000 - E0FF
1301, 1269, 1237, 1205, 1173, 1141, 1109, 1077, // E100 - E1FF
1045, 1013, 981, 949, 917, 885, 853, 821, // E200 - E2FF
789, 757, 725, 693, 661, 629, 597, 565, // E300 - E3FF
533, 501, 469, 437, 405, 373, 341, 309, // E400 - E4FF
277, 245, 133, 1590, 1590, 1590, 1590, 1590, // E500 - E5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // E600 - E6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // E700 - E7FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // E800 - E8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // E900 - E9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // EA00 - EAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // EB00 - EBFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // EC00 - ECFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // ED00 - EDFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // EE00 - EEFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // EF00 - EFFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F000 - F0FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F100 - F1FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F200 - F2FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F300 - F3FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F400 - F4FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F500 - F5FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F600 - F6FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F700 - F7FF
1590, 7621, 1590, 1590, 1590, 1590, 1590, 1590, // F800 - F8FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // F900 - F9FF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // FA00 - FAFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // FB00 - FBFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // FC00 - FCFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // FD00 - FDFF
1590, 1590, 1590, 1590, 1590, 1590, 1590, 1590, // FE00 - FEFF
20024, 101, 38, 1590, 1590, 1590, 1590, 0,
};
private final static String index2;
private final static String index2a;
static {
index2 =
"\uA1E9\uA1EA\uFEEA\uA3FE\uFEEB\uA3A4\u0000\u0000\u0000\u0000" + // 0 - 9
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10 - 19
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 20 - 29
"\u0000\u0000\u0000\u0000\u0000\uB1B4\uD5EA\uB8BA\uA3E0\uA3E1" + // 30 - 39
"\uA3E2\uA3E3\uA3E4\uA3E5\uA3E6\uA3E7\uA3E8\uA3E9\uA3EA\uA3EB" + // 40 - 49
"\uA3EC\uA3ED\uA3EE\uA3EF\uA3F0\uA3F1\uA3F2\uA3F3\uA3F4\uA3F5" + // 50 - 59
"\uA3F6\uA3F7\uA3F8\uA3F9\uA3FA\uA3FB\uA3FC\uA3FD\uA1AB\u0000" + // 60 - 69
"\uDAE4\uDAE3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDAE6" + // 70 - 79
"\u0000\u0000\u0000\uC8EE\u0000\u0000\uDAE5\uB7C0\uD1F4\uD2F5" + // 80 - 89
"\uD5F3\uBDD7\u0000\u0000\u0000\u0000\uD7E8\uDAE8\uDAE7\u0000" + // 90 - 99
"\uB0A2\uA3C0\uA3C1\uA3C2\uA3C3\uA3C4\uA3C5\uA3C6\uA3C7\uA3C8" + // 100 - 109
"\uA3C9\uA3CA\uA3CB\uA3CC\uA3CD\uA3CE\uA3CF\uA3D0\uA3D1\uA3D2" + // 110 - 119
"\uA3D3\uA3D4\uA3D5\uA3D6\uA3D7\uA3D8\uA3D9\uA3DA\uA3DB\uA3DC" + // 120 - 129
"\uA3DD\uA3DE\uA3DF\uFED0\uFED1\uFED2\uFED3\uFED4\uFED5\uFED6" + // 130 - 139
"\uFED7\uFED8\uFED9\uFEDA\uFEDB\uFEDC\uFEDD\uFEDE\uFEDF\u0000" + // 140 - 149
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 150 - 159
"\u0000\u0000\u0000\u0000\u0000\uE0E1\uE0DD\uD2AD\u0000\u0000" + // 160 - 169
"\u0000\u0000\u0000\uE0E2\u0000\u0000\uE0DB\uE0D9\uE0DF\u0000" + // 170 - 179
"\u0000\uE0E0\u0000\u0000\u0000\uC0B1\u0000\u0000\u0000\u0000" + // 180 - 189
"\uB1E6\uB1E7\u0000\uB1E8\u0000\u0000\u0000\u0000\uB3BD\uC8E8" + // 190 - 199
"\u0000\u0000\u0000\u0000\uE5C1\u0000\u0000\uB1DF\u0000\u0000" + // 200 - 209
"\u0000\uC1C9\uB4EF\u0000\uEFE2\uEFE3\uC1CD\uEFE4\uEFE5\uEFE6" + // 210 - 219
"\uEFE7\uEFE8\uEFE9\uEFEA\uEFEB\uEFEC\uC0D8\u0000\uEFED\uC1AD" + // 220 - 229
"\uEFEE\uEFEF\uEFF0\u0000\u0000\uCFE2\u0000\u0000\u0000\u0000" + // 230 - 239
"\u0000\u0000\u0000\u0000\uB3A4\uFEB0\uFEB1\uFEB2\uFEB3\uFEB4" + // 240 - 249
"\uFEB5\uFEB6\uFEB7\uFEB8\uFEB9\uFEBA\uFEBB\uFEBC\uFEBD\uFEBE" + // 250 - 259
"\uFEBF\uFEC0\uFEC1\uFEC2\uFEC3\uFEC4\uFEC5\uFEC6\uFEC7\uFEC8" + // 260 - 269
"\uFEC9\uFECA\uFECB\uFECC\uFECD\uFECE\uFECF\uFDEE\uFDEF\uFDF0" + // 270 - 279
"\uFDF1\uFDF2\uFDF3\uFDF4\uFDF5\uFDF6\uFDF7\uFDF8\uFDF9\uFDFA" + // 280 - 289
"\uFDFB\uFDFC\uFDFD\uFDFE\uFEA1\uFEA2\uFEA3\uFEA4\uFEA5\uFEA6" + // 290 - 299
"\uFEA7\uFEA8\uFEA9\uFEAA\uFEAB\uFEAC\uFEAD\uFEAE\uFEAF\uFDCE" + // 300 - 309
"\uFDCF\uFDD0\uFDD1\uFDD2\uFDD3\uFDD4\uFDD5\uFDD6\uFDD7\uFDD8" + // 310 - 319
"\uFDD9\uFDDA\uFDDB\uFDDC\uFDDD\uFDDE\uFDDF\uFDE0\uFDE1\uFDE2" + // 320 - 329
"\uFDE3\uFDE4\uFDE5\uFDE6\uFDE7\uFDE8\uFDE9\uFDEA\uFDEB\uFDEC" + // 330 - 339
"\uFDED\uFDAE\uFDAF\uFDB0\uFDB1\uFDB2\uFDB3\uFDB4\uFDB5\uFDB6" + // 340 - 349
"\uFDB7\uFDB8\uFDB9\uFDBA\uFDBB\uFDBC\uFDBD\uFDBE\uFDBF\uFDC0" + // 350 - 359
"\uFDC1\uFDC2\uFDC3\uFDC4\uFDC5\uFDC6\uFDC7\uFDC8\uFDC9\uFDCA" + // 360 - 369
"\uFDCB\uFDCC\uFDCD\uFCEC\uFCED\uFCEE\uFCEF\uFCF0\uFCF1\uFCF2" + // 370 - 379
"\uFCF3\uFCF4\uFCF5\uFCF6\uFCF7\uFCF8\uFCF9\uFCFA\uFCFB\uFCFC" + // 380 - 389
"\uFCFD\uFCFE\uFDA1\uFDA2\uFDA3\uFDA4\uFDA5\uFDA6\uFDA7\uFDA8" + // 390 - 399
"\uFDA9\uFDAA\uFDAB\uFDAC\uFDAD\uFCCC\uFCCD\uFCCE\uFCCF\uFCD0" + // 400 - 409
"\uFCD1\uFCD2\uFCD3\uFCD4\uFCD5\uFCD6\uFCD7\uFCD8\uFCD9\uFCDA" + // 410 - 419
"\uFCDB\uFCDC\uFCDD\uFCDE\uFCDF\uFCE0\uFCE1\uFCE2\uFCE3\uFCE4" + // 420 - 429
"\uFCE5\uFCE6\uFCE7\uFCE8\uFCE9\uFCEA\uFCEB\uFCAC\uFCAD\uFCAE" + // 430 - 439
"\uFCAF\uFCB0\uFCB1\uFCB2\uFCB3\uFCB4\uFCB5\uFCB6\uFCB7\uFCB8" + // 440 - 449
"\uFCB9\uFCBA\uFCBB\uFCBC\uFCBD\uFCBE\uFCBF\uFCC0\uFCC1\uFCC2" + // 450 - 459
"\uFCC3\uFCC4\uFCC5\uFCC6\uFCC7\uFCC8\uFCC9\uFCCA\uFCCB\uFBEA" + // 460 - 469
"\uFBEB\uFBEC\uFBED\uFBEE\uFBEF\uFBF0\uFBF1\uFBF2\uFBF3\uFBF4" + // 470 - 479
"\uFBF5\uFBF6\uFBF7\uFBF8\uFBF9\uFBFA\uFBFB\uFBFC\uFBFD\uFBFE" + // 480 - 489
"\uFCA1\uFCA2\uFCA3\uFCA4\uFCA5\uFCA6\uFCA7\uFCA8\uFCA9\uFCAA" + // 490 - 499
"\uFCAB\uFBCA\uFBCB\uFBCC\uFBCD\uFBCE\uFBCF\uFBD0\uFBD1\uFBD2" + // 500 - 509
"\uFBD3\uFBD4\uFBD5\uFBD6\uFBD7\uFBD8\uFBD9\uFBDA\uFBDB\uFBDC" + // 510 - 519
"\uFBDD\uFBDE\uFBDF\uFBE0\uFBE1\uFBE2\uFBE3\uFBE4\uFBE5\uFBE6" + // 520 - 529
"\uFBE7\uFBE8\uFBE9\uFBAA\uFBAB\uFBAC\uFBAD\uFBAE\uFBAF\uFBB0" + // 530 - 539
"\uFBB1\uFBB2\uFBB3\uFBB4\uFBB5\uFBB6\uFBB7\uFBB8\uFBB9\uFBBA" + // 540 - 549
"\uFBBB\uFBBC\uFBBD\uFBBE\uFBBF\uFBC0\uFBC1\uFBC2\uFBC3\uFBC4" + // 550 - 559
"\uFBC5\uFBC6\uFBC7\uFBC8\uFBC9\uFAE8\uFAE9\uFAEA\uFAEB\uFAEC" + // 560 - 569
"\uFAED\uFAEE\uFAEF\uFAF0\uFAF1\uFAF2\uFAF3\uFAF4\uFAF5\uFAF6" + // 570 - 579
"\uFAF7\uFAF8\uFAF9\uFAFA\uFAFB\uFAFC\uFAFD\uFAFE\uFBA1\uFBA2" + // 580 - 589
"\uFBA3\uFBA4\uFBA5\uFBA6\uFBA7\uFBA8\uFBA9\uFAC8\uFAC9\uFACA" + // 590 - 599
"\uFACB\uFACC\uFACD\uFACE\uFACF\uFAD0\uFAD1\uFAD2\uFAD3\uFAD4" + // 600 - 609
"\uFAD5\uFAD6\uFAD7\uFAD8\uFAD9\uFADA\uFADB\uFADC\uFADD\uFADE" + // 610 - 619
"\uFADF\uFAE0\uFAE1\uFAE2\uFAE3\uFAE4\uFAE5\uFAE6\uFAE7\uFAA8" + // 620 - 629
"\uFAA9\uFAAA\uFAAB\uFAAC\uFAAD\uFAAE\uFAAF\uFAB0\uFAB1\uFAB2" + // 630 - 639
"\uFAB3\uFAB4\uFAB5\uFAB6\uFAB7\uFAB8\uFAB9\uFABA\uFABB\uFABC" + // 640 - 649
"\uFABD\uFABE\uFABF\uFAC0\uFAC1\uFAC2\uFAC3\uFAC4\uFAC5\uFAC6" + // 650 - 659
"\uFAC7\uF9E6\uF9E7\uF9E8\uF9E9\uF9EA\uF9EB\uF9EC\uF9ED\uF9EE" + // 660 - 669
"\uF9EF\uF9F0\uF9F1\uF9F2\uF9F3\uF9F4\uF9F5\uF9F6\uF9F7\uF9F8" + // 670 - 679
"\uF9F9\uF9FA\uF9FB\uF9FC\uF9FD\uF9FE\uFAA1\uFAA2\uFAA3\uFAA4" + // 680 - 689
"\uFAA5\uFAA6\uFAA7\uF9C6\uF9C7\uF9C8\uF9C9\uF9CA\uF9CB\uF9CC" + // 690 - 699
"\uF9CD\uF9CE\uF9CF\uF9D0\uF9D1\uF9D2\uF9D3\uF9D4\uF9D5\uF9D6" + // 700 - 709
"\uF9D7\uF9D8\uF9D9\uF9DA\uF9DB\uF9DC\uF9DD\uF9DE\uF9DF\uF9E0" + // 710 - 719
"\uF9E1\uF9E2\uF9E3\uF9E4\uF9E5\uF9A6\uF9A7\uF9A8\uF9A9\uF9AA" + // 720 - 729
"\uF9AB\uF9AC\uF9AD\uF9AE\uF9AF\uF9B0\uF9B1\uF9B2\uF9B3\uF9B4" + // 730 - 739
"\uF9B5\uF9B6\uF9B7\uF9B8\uF9B9\uF9BA\uF9BB\uF9BC\uF9BD\uF9BE" + // 740 - 749
"\uF9BF\uF9C0\uF9C1\uF9C2\uF9C3\uF9C4\uF9C5\uF8E4\uF8E5\uF8E6" + // 750 - 759
"\uF8E7\uF8E8\uF8E9\uF8EA\uF8EB\uF8EC\uF8ED\uF8EE\uF8EF\uF8F0" + // 760 - 769
"\uF8F1\uF8F2\uF8F3\uF8F4\uF8F5\uF8F6\uF8F7\uF8F8\uF8F9\uF8FA" + // 770 - 779
"\uF8FB\uF8FC\uF8FD\uF8FE\uF9A1\uF9A2\uF9A3\uF9A4\uF9A5\uF8C4" + // 780 - 789
"\uF8C5\uF8C6\uF8C7\uF8C8\uF8C9\uF8CA\uF8CB\uF8CC\uF8CD\uF8CE" + // 790 - 799
"\uF8CF\uF8D0\uF8D1\uF8D2\uF8D3\uF8D4\uF8D5\uF8D6\uF8D7\uF8D8" + // 800 - 809
"\uF8D9\uF8DA\uF8DB\uF8DC\uF8DD\uF8DE\uF8DF\uF8E0\uF8E1\uF8E2" + // 810 - 819
"\uF8E3\uF8A4\uF8A5\uF8A6\uF8A7\uF8A8\uF8A9\uF8AA\uF8AB\uF8AC" + // 820 - 829
"\uF8AD\uF8AE\uF8AF\uF8B0\uF8B1\uF8B2\uF8B3\uF8B4\uF8B5\uF8B6" + // 830 - 839
"\uF8B7\uF8B8\uF8B9\uF8BA\uF8BB\uF8BC\uF8BD\uF8BE\uF8BF\uF8C0" + // 840 - 849
"\uF8C1\uF8C2\uF8C3\uAFE7\uAFE8\uAFE9\uAFEA\uAFEB\uAFEC\uAFED" + // 850 - 859
"\uAFEE\uAFEF\uAFF0\uAFF1\uAFF2\uAFF3\uAFF4\uAFF5\uAFF6\uAFF7" + // 860 - 869
"\uAFF8\uAFF9\uAFFA\uAFFB\uAFFC\uAFFD\uAFFE\uD7FA\uD7FB\uD7FC" + // 870 - 879
"\uD7FD\uD7FE\uF8A1\uF8A2\uF8A3\uAFC7\uAFC8\uAFC9\uAFCA\uAFCB" + // 880 - 889
"\uAFCC\uAFCD\uAFCE\uAFCF\uAFD0\uAFD1\uAFD2\uAFD3\uAFD4\uAFD5" + // 890 - 899
"\uAFD6\uAFD7\uAFD8\uAFD9\uAFDA\uAFDB\uAFDC\uAFDD\uAFDE\uAFDF" + // 900 - 909
"\uAFE0\uAFE1\uAFE2\uAFE3\uAFE4\uAFE5\uAFE6\uAFA7\uAFA8\uAFA9" + // 910 - 919
"\uAFAA\uAFAB\uAFAC\uAFAD\uAFAE\uAFAF\uAFB0\uAFB1\uAFB2\uAFB3" + // 920 - 929
"\uAFB4\uAFB5\uAFB6\uAFB7\uAFB8\uAFB9\uAFBA\uAFBB\uAFBC\uAFBD" + // 930 - 939
"\uAFBE\uAFBF\uAFC0\uAFC1\uAFC2\uAFC3\uAFC4\uAFC5\uAFC6\uAEE5" + // 940 - 949
"\uAEE6\uAEE7\uAEE8\uAEE9\uAEEA\uAEEB\uAEEC\uAEED\uAEEE\uAEEF" + // 950 - 959
"\uAEF0\uAEF1\uAEF2\uAEF3\uAEF4\uAEF5\uAEF6\uAEF7\uAEF8\uAEF9" + // 960 - 969
"\uAEFA\uAEFB\uAEFC\uAEFD\uAEFE\uAFA1\uAFA2\uAFA3\uAFA4\uAFA5" + // 970 - 979
"\uAFA6\uAEC5\uAEC6\uAEC7\uAEC8\uAEC9\uAECA\uAECB\uAECC\uAECD" + // 980 - 989
"\uAECE\uAECF\uAED0\uAED1\uAED2\uAED3\uAED4\uAED5\uAED6\uAED7" + // 990 - 999
"\uAED8\uAED9\uAEDA\uAEDB\uAEDC\uAEDD\uAEDE\uAEDF\uAEE0\uAEE1" + // 1000 - 1009
"\uAEE2\uAEE3\uAEE4\uAEA5\uAEA6\uAEA7\uAEA8\uAEA9\uAEAA\uAEAB" + // 1010 - 1019
"\uAEAC\uAEAD\uAEAE\uAEAF\uAEB0\uAEB1\uAEB2\uAEB3\uAEB4\uAEB5" + // 1020 - 1029
"\uAEB6\uAEB7\uAEB8\uAEB9\uAEBA\uAEBB\uAEBC\uAEBD\uAEBE\uAEBF" + // 1030 - 1039
"\uAEC0\uAEC1\uAEC2\uAEC3\uAEC4\uADE3\uADE4\uADE5\uADE6\uADE7" + // 1040 - 1049
"\uADE8\uADE9\uADEA\uADEB\uADEC\uADED\uADEE\uADEF\uADF0\uADF1" + // 1050 - 1059
"\uADF2\uADF3\uADF4\uADF5\uADF6\uADF7\uADF8\uADF9\uADFA\uADFB" + // 1060 - 1069
"\uADFC\uADFD\uADFE\uAEA1\uAEA2\uAEA3\uAEA4\uADC3\uADC4\uADC5" + // 1070 - 1079
"\uADC6\uADC7\uADC8\uADC9\uADCA\uADCB\uADCC\uADCD\uADCE\uADCF" + // 1080 - 1089
"\uADD0\uADD1\uADD2\uADD3\uADD4\uADD5\uADD6\uADD7\uADD8\uADD9" + // 1090 - 1099
"\uADDA\uADDB\uADDC\uADDD\uADDE\uADDF\uADE0\uADE1\uADE2\uADA3" + // 1100 - 1109
"\uADA4\uADA5\uADA6\uADA7\uADA8\uADA9\uADAA\uADAB\uADAC\uADAD" + // 1110 - 1119
"\uADAE\uADAF\uADB0\uADB1\uADB2\uADB3\uADB4\uADB5\uADB6\uADB7" + // 1120 - 1129
"\uADB8\uADB9\uADBA\uADBB\uADBC\uADBD\uADBE\uADBF\uADC0\uADC1" + // 1130 - 1139
"\uADC2\uACE1\uACE2\uACE3\uACE4\uACE5\uACE6\uACE7\uACE8\uACE9" + // 1140 - 1149
"\uACEA\uACEB\uACEC\uACED\uACEE\uACEF\uACF0\uACF1\uACF2\uACF3" + // 1150 - 1159
"\uACF4\uACF5\uACF6\uACF7\uACF8\uACF9\uACFA\uACFB\uACFC\uACFD" + // 1160 - 1169
"\uACFE\uADA1\uADA2\uACC1\uACC2\uACC3\uACC4\uACC5\uACC6\uACC7" + // 1170 - 1179
"\uACC8\uACC9\uACCA\uACCB\uACCC\uACCD\uACCE\uACCF\uACD0\uACD1" + // 1180 - 1189
"\uACD2\uACD3\uACD4\uACD5\uACD6\uACD7\uACD8\uACD9\uACDA\uACDB" + // 1190 - 1199
"\uACDC\uACDD\uACDE\uACDF\uACE0\uACA1\uACA2\uACA3\uACA4\uACA5" + // 1200 - 1209
"\uACA6\uACA7\uACA8\uACA9\uACAA\uACAB\uACAC\uACAD\uACAE\uACAF" + // 1210 - 1219
"\uACB0\uACB1\uACB2\uACB3\uACB4\uACB5\uACB6\uACB7\uACB8\uACB9" + // 1220 - 1229
"\uACBA\uACBB\uACBC\uACBD\uACBE\uACBF\uACC0\uABDF\uABE0\uABE1" + // 1230 - 1239
"\uABE2\uABE3\uABE4\uABE5\uABE6\uABE7\uABE8\uABE9\uABEA\uABEB" + // 1240 - 1249
"\uABEC\uABED\uABEE\uABEF\uABF0\uABF1\uABF2\uABF3\uABF4\uABF5" + // 1250 - 1259
"\uABF6\uABF7\uABF8\uABF9\uABFA\uABFB\uABFC\uABFD\uABFE\uABBF" + // 1260 - 1269
"\uABC0\uABC1\uABC2\uABC3\uABC4\uABC5\uABC6\uABC7\uABC8\uABC9" + // 1270 - 1279
"\uABCA\uABCB\uABCC\uABCD\uABCE\uABCF\uABD0\uABD1\uABD2\uABD3" + // 1280 - 1289
"\uABD4\uABD5\uABD6\uABD7\uABD8\uABD9\uABDA\uABDB\uABDC\uABDD" + // 1290 - 1299
"\uABDE\uAAFD\uAAFE\uABA1\uABA2\uABA3\uABA4\uABA5\uABA6\uABA7" + // 1300 - 1309
"\uABA8\uABA9\uABAA\uABAB\uABAC\uABAD\uABAE\uABAF\uABB0\uABB1" + // 1310 - 1319
"\uABB2\uABB3\uABB4\uABB5\uABB6\uABB7\uABB8\uABB9\uABBA\uABBB" + // 1320 - 1329
"\uABBC\uABBD\uABBE\uAADD\uAADE\uAADF\uAAE0\uAAE1\uAAE2\uAAE3" + // 1330 - 1339
"\uAAE4\uAAE5\uAAE6\uAAE7\uAAE8\uAAE9\uAAEA\uAAEB\uAAEC\uAAED" + // 1340 - 1349
"\uAAEE\uAAEF\uAAF0\uAAF1\uAAF2\uAAF3\uAAF4\uAAF5\uAAF6\uAAF7" + // 1350 - 1359
"\uAAF8\uAAF9\uAAFA\uAAFB\uAAFC\uAABD\uAABE\uAABF\uAAC0\uAAC1" + // 1360 - 1369
"\uAAC2\uAAC3\uAAC4\uAAC5\uAAC6\uAAC7\uAAC8\uAAC9\uAACA\uAACB" + // 1370 - 1379
"\uAACC\uAACD\uAACE\uAACF\uAAD0\uAAD1\uAAD2\uAAD3\uAAD4\uAAD5" + // 1380 - 1389
"\uAAD6\uAAD7\uAAD8\uAAD9\uAADA\uAADB\uAADC\uA9FB\uA9FC\uA9FD" + // 1390 - 1399
"\uA9FE\uAAA1\uAAA2\uAAA3\uAAA4\uAAA5\uAAA6\uAAA7\uAAA8\uAAA9" + // 1400 - 1409
"\uAAAA\uAAAB\uAAAC\uAAAD\uAAAE\uAAAF\uAAB0\uAAB1\uAAB2\uAAB3" + // 1410 - 1419
"\uAAB4\uAAB5\uAAB6\uAAB7\uAAB8\uAAB9\uAABA\uAABB\uAABC\uA8ED" + // 1420 - 1429
"\uA8EE\uA8EF\uA8F0\uA8F1\uA8F2\uA8F3\uA8F4\uA8F5\uA8F6\uA8F7" + // 1430 - 1439
"\uA8F8\uA8F9\uA8FA\uA8FB\uA8FC\uA8FD\uA8FE\uA9A1\uA9A2\uA9A3" + // 1440 - 1449
"\uA9F0\uA9F1\uA9F2\uA9F3\uA9F4\uA9F5\uA9F6\uA9F7\uA9F8\uA9F9" + // 1450 - 1459
"\uA9FA\uA7CB\uA7CC\uA7CD\uA7CE\uA7CF\uA7D0\uA7F2\uA7F3\uA7F4" + // 1460 - 1469
"\uA7F5\uA7F6\uA7F7\uA7F8\uA7F9\uA7FA\uA7FB\uA7FC\uA7FD\uA7FE" + // 1470 - 1479
"\uA8BB\uA8BC\uA8BD\uA8BE\uA8BF\uA8C0\uA8C1\uA8C2\uA8C3\uA8C4" + // 1480 - 1489
"\uA8EA\uA8EB\uA8EC\uA6E8\uA6E9\uA6EA\uA6EB\uA6EC\uA6ED\uA6EE" + // 1490 - 1499
"\uA6EF\uA6F0\uA6F1\uA6F2\uA6F3\uA6F4\uA6F5\uA6F6\uA6F7\uA6F8" + // 1500 - 1509
"\uA6F9\uA6FA\uA6FB\uA6FC\uA6FD\uA6FE\uA7C2\uA7C3\uA7C4\uA7C5" + // 1510 - 1519
"\uA7C6\uA7C7\uA7C8\uA7C9\uA7CA\uA4FE\uA5F7\uA5F8\uA5F9\uA5FA" + // 1520 - 1529
"\uA5FB\uA5FC\uA5FD\uA5FE\uA6B9\uA6BA\uA6BB\uA6BC\uA6BD\uA6BE" + // 1530 - 1539
"\uA6BF\uA6C0\uA6D9\uA6DA\uA6DB\uA6DC\uA6DD\uA6DE\uA6DF\uA6E0" + // 1540 - 1549
"\uA6E1\uA6E2\uA6E3\uA6E4\uA6E5\uA6E6\uA6E7\uA2A1\uA2A2\uA2A3" + // 1550 - 1559
"\uA2A4\uA2A5\uA2A6\uA2A7\uA2A8\uA2A9\uA2AA\uA2AB\uA2AC\uA2AD" + // 1560 - 1569
"\uA2AE\uA2AF\uA2B0\uA2E3\uA2E4\uA2EF\uA2F0\uA2FD\uA2FE\uA4F4" + // 1570 - 1579
"\uA4F5\uA4F6\uA4F7\uA4F8\uA4F9\uA4FA\uA4FB\uA4FC\uA4FD\uD9DF" + // 1580 - 1589
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 1590 - 1599
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 1600 - 1609
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 1610 - 1619
"\u0000\u0000\uC4F1\uF6B3\u0000\u0000\uF6B4\uC1E4\uF6B5\uF6B6" + // 1620 - 1629
"\uF6B7\uF6B8\uF6B9\uF6BA\uC8A3\uF6BB\u0000\u0000\u0000\u0000" + // 1630 - 1639
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC1FA\uB9A8" + // 1640 - 1649
"\uEDE8\u0000\u0000\u0000\uB9EA\uCAF3\u0000\uF7F7\u0000\u0000" + // 1650 - 1659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7F8\u0000\u0000" + // 1660 - 1669
"\uF7F9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7FB\u0000" + // 1670 - 1679
"\uF7FA\u0000\uB1C7\u0000\uF7FC\uF7FD\u0000\uCEFD\uEFC0\uC2E0" + // 1680 - 1689
"\uB4B8\uD7B6\uBDF5\u0000\uCFC7\uEFC3\uEFC1\uEFC2\uEFC4\uB6A7" + // 1690 - 1699
"\uBCFC\uBEE2\uC3CC\uEFC5\uEFC6\u0000\uEFC7\uEFCF\uEFC8\uEFC9" + // 1700 - 1709
"\uEFCA\uC7C2\uEFF1\uB6CD\uEFCB\u0000\uEFCC\uEFCD\uF7EF\u0000" + // 1710 - 1719
"\uF7F1\u0000\u0000\uF7F4\u0000\uF7F3\u0000\uF7F2\uF7F5\u0000" + // 1720 - 1729
"\u0000\u0000\u0000\uF7F6\u0000\u0000\u0000\u0000\u0000\u0000" + // 1730 - 1739
"\u0000\u0000\u0000\uEDE9\u0000\uEDEA\uEDEB\u0000\uF6BC\u0000" + // 1740 - 1749
"\uF5A2\uF5A1\uBAA8\uF4FE\uCBD6\u0000\u0000\u0000\uF5A4\uC0D2" + // 1750 - 1759
"\u0000\uB3EA\u0000\uCDAA\uF5A5\uF5A3\uBDB4\uF5A8\u0000\uF5A9" + // 1760 - 1769
"\uBDCD\uC3B8\uBFE1\uCBE1\uF5AA\u0000\u0000\u0000\uF5A6\uF5A7" + // 1770 - 1779
"\uC4F0\uF0AF\uBCA6\uF0B0\uC3F9\u0000\uC5B8\uD1BB\u0000\uF0B1" + // 1780 - 1789
"\uF0B2\uF0B3\uF0B4\uF0B5\uD1BC\u0000\uD1EC\u0000\uF0B7\uF0B6" + // 1790 - 1799
"\uD4A7\u0000\uCDD2\uF0B8\uF0BA\uF0B9\uF0BB\uF0BC\u0000\u0000" + // 1800 - 1809
"\uB8EB\uF0BD\uBAE8\uF6E1\uF6E2\uF6E3\uF6E4\uC0F0\uF6E5\uF6E6" + // 1810 - 1819
"\uF6E7\uF6E8\uF6E9\u0000\uF6EA\u0000\uF6EB\uF6EC\u0000\uF6ED" + // 1820 - 1829
"\uF6EE\uF6EF\uF6F0\uF6F1\uF6F2\uF6F3\uF6F4\uBEA8\u0000\uF6F5" + // 1830 - 1839
"\uF6F6\uF6F7\uF6F8\u0000\u0000\uDBB3\uDBB5\u0000\u0000\u0000" + // 1840 - 1849
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDBB7\u0000" + // 1850 - 1859
"\uDBB6\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDBB8\u0000" + // 1860 - 1869
"\u0000\u0000\u0000\u0000\u0000\uC4C2\u0000\u0000\u0000\u0000" + // 1870 - 1879
"\u0000\u0000\u0000\u0000\u0000\u0000\uF0A3\u0000\u0000\u0000" + // 1880 - 1889
"\u0000\u0000\uCBEB\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 1890 - 1899
"\u0000\uC3C5\uE3C5\uC9C1\uE3C6\u0000\uB1D5\uCECA\uB4B3\uC8F2" + // 1900 - 1909
"\uE3C7\uCFD0\uE3C8\uBCE4\uE3C9\uE3CA\uC3C6\uD5A2\uC4D6\uB9EB" + // 1910 - 1919
"\uCEC5\uE3CB\uC3F6\uE3CC\u0000\uD3F4\u0000\u0000\uDBA7\uDBA4" + // 1920 - 1929
"\u0000\uDBA8\u0000\u0000\uBDBC\u0000\u0000\u0000\uC0C9\uDBA3" + // 1930 - 1939
"\uDBA6\uD6A3\u0000\uDBA9\u0000\u0000\u0000\uDBAD\u0000\u0000" + // 1940 - 1949
"\u0000\uDBAE\uDBAC\uBAC2\u0000\u0000\uE5DD\uC7B2\u0000\uD2A3" + // 1950 - 1959
"\u0000\u0000\uE5DB\u0000\u0000\u0000\u0000\uD4E2\uD5DA\u0000" + // 1960 - 1969
"\u0000\u0000\u0000\u0000\uE5E0\uD7F1\u0000\u0000\u0000\u0000" + // 1970 - 1979
"\u0000\u0000\u0000\uE5E1\u0000\uB1DC\uF7C2\uF7C1\uF7C4\u0000" + // 1980 - 1989
"\u0000\uF7C3\u0000\u0000\u0000\u0000\u0000\uF7C5\uF7C6\u0000" + // 1990 - 1999
"\u0000\u0000\u0000\uF7C7\u0000\uCBE8\u0000\u0000\u0000\u0000" + // 2000 - 2009
"\uB8DF\u0000\u0000\u0000\u0000\u0000\u0000\uF7D4\uE6F4\uC2E2" + // 2010 - 2019
"\uE6F5\uE6F6\uD6E8\uE6F7\u0000\uE6F8\uB9C7\u0000\u0000\u0000" + // 2020 - 2029
"\u0000\u0000\u0000\u0000\uF7BB\uF7BA\u0000\u0000\u0000\u0000" + // 2030 - 2039
"\uF7BE\uF7BC\uBAA1\u0000\uF7BF\u0000\uF7C0\u0000\u0000\u0000" + // 2040 - 2049
"\uD4BE\uF5C4\u0000\uF5CC\u0000\u0000\u0000\u0000\uB0CF\uB5F8" + // 2050 - 2059
"\u0000\uF5C9\uF5CA\u0000\uC5DC\u0000\u0000\u0000\u0000\uF5C5" + // 2060 - 2069
"\uF5C6\u0000\u0000\uF5C7\uF5CB\u0000\uBEE0\uF5C8\uB8FA\uE6E6" + // 2070 - 2079
"\uE6E7\uC2EE\u0000\uBDBE\uE6E8\uC2E6\uBAA7\uE6E9\u0000\uE6EA" + // 2080 - 2089
"\uB3D2\uD1E9\u0000\u0000\uBFA5\uE6EB\uC6EF\uE6EC\uE6ED\u0000" + // 2090 - 2099
"\u0000\uE6EE\uC6AD\uE6EF\u0000\uC9A7\uE6F0\uE6F1\uE6F2\uE5B9" + // 2100 - 2109
"\uE6F3\uE2C5\uC4D9\u0000\u0000\uE2C6\uCFDA\uB9DD\uE2C7\uC0A1" + // 2110 - 2119
"\u0000\uE2C8\uB2F6\u0000\uE2C9\u0000\uC1F3\uE2CA\uE2CB\uC2F8" + // 2120 - 2129
"\uE2CC\uE2CD\uE2CE\uCAD7\uD8B8\uD9E5\uCFE3\u0000\u0000\u0000" + // 2130 - 2139
"\u0000\u0000\u0000\uF4A3\uBBC9\u0000\u0000\uF4A2\u0000\u0000" + // 2140 - 2149
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2150 - 2159
"\u0000\uF4A4\u0000\u0000\u0000\u0000\u0000\u0000\uB2BE\uB5DF" + // 2160 - 2169
"\uF2AA\uF2AB\u0000\uB2FC\uF2AC\uF2AD\uC8A7\u0000\u0000\u0000" + // 2170 - 2179
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2180 - 2189
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2190 - 2199
"\u0000\uE1DA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2200 - 2209
"\uEAD3\uF4DF\u0000\u0000\u0000\u0000\u0000\uC4BA\u0000\u0000" + // 2210 - 2219
"\u0000\u0000\u0000\uB1A9\u0000\u0000\u0000\u0000\uE5DF\u0000" + // 2220 - 2229
"\u0000\u0000\u0000\uEAD5\u0000\uB6DD\uCBEC\u0000\uE5D7\u0000" + // 2230 - 2239
"\u0000\uD3F6\u0000\u0000\u0000\u0000\u0000\uB1E9\u0000\uB6F4" + // 2240 - 2249
"\uE5DA\uE5D8\uE5D9\uB5C0\u0000\u0000\u0000\uD2C5\uE5DC\u0000" + // 2250 - 2259
"\u0000\uE5DE\u0000\u0000\u0000\u0000\uBFBE\u0000\uB7B3\uC9D5" + // 2260 - 2269
"\uECC7\uBBE2\u0000\uCCCC\uBDFD\uC8C8\u0000\uCFA9\u0000\u0000" + // 2270 - 2279
"\u0000\u0000\u0000\u0000\u0000\uCDE9\u0000\uC5EB\u0000\u0000" + // 2280 - 2289
"\u0000\uB7E9\u0000\u0000\uCCDF\uF5DB\u0000\u0000\u0000\u0000" + // 2290 - 2299
"\u0000\uB2C8\uD7D9\u0000\uF5D9\u0000\uF5DA\uF5DC\u0000\uF5E2" + // 2300 - 2309
"\u0000\u0000\u0000\uF5E0\u0000\u0000\u0000\uF5DF\uF5DD\u0000" + // 2310 - 2319
"\u0000\uF5E1\u0000\u0000\uF1CD\uF1CF\uBFE3\uF1D0\u0000\u0000" + // 2320 - 2329
"\uF1D4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF1D6\uF1D1" + // 2330 - 2339
"\u0000\uC9D1\uC5E1\u0000\u0000\u0000\uC2E3\uB9FC\u0000\u0000" + // 2340 - 2349
"\uF1D3\u0000\uF1D5\u0000\uCFF3\uBBBF\u0000\u0000\u0000\u0000" + // 2350 - 2359
"\u0000\u0000\u0000\uBAC0\uD4A5\u0000\u0000\u0000\u0000\u0000" + // 2360 - 2369
"\u0000\u0000\uE1D9\u0000\u0000\u0000\u0000\uF5F4\uB1AA\uB2F2" + // 2370 - 2379
"\u0000\u0000\u0000\u0000\u0000\uC7E9\uE3B0\u0000\u0000\u0000" + // 2380 - 2389
"\uBEAA\uCDEF\u0000\u0000\u0000\u0000\u0000\uBBF3\u0000\u0000" + // 2390 - 2399
"\u0000\uCCE8\u0000\u0000\uE3AF\u0000\uE3B1\u0000\uCFA7\uE3AE" + // 2400 - 2409
"\u0000\uCEA9\uF1FD\uB0E4\uCBCC\uF1FE\uD4A4\uC2AD\uC1EC\uC6C4" + // 2410 - 2419
"\uBEB1\uF2A1\uBCD5\u0000\uF2A2\uF2A3\u0000\uF2A4\uD2C3\uC6B5" + // 2420 - 2429
"\u0000\uCDC7\uF2A5\u0000\uD3B1\uBFC5\uCCE2\u0000\uF2A6\uF2A7" + // 2430 - 2439
"\uD1D5\uB6EE\uF2A8\uF2A9\uBECF\u0000\u0000\uF7B7\u0000\u0000" + // 2440 - 2449
"\u0000\u0000\u0000\u0000\u0000\uF7B6\u0000\uB1DE\u0000\uF7B5" + // 2450 - 2459
"\u0000\u0000\uF7B8\u0000\uF7B9\u0000\u0000\u0000\u0000\u0000" + // 2460 - 2469
"\u0000\u0000\u0000\u0000\u0000\u0000\uE6C1\u0000\u0000\u0000" + // 2470 - 2479
"\u0000\u0000\u0000\u0000\uE6C7\uCFB1\u0000\uEBF4\u0000\u0000" + // 2480 - 2489
"\uE6CA\u0000\u0000\u0000\u0000\u0000\uE6C5\u0000\uC7A8\uD3D8" + // 2490 - 2499
"\u0000\uC6F9\uD1B8\u0000\uB9FD\uC2F5\u0000\u0000\u0000\u0000" + // 2500 - 2509
"\u0000\uD3AD\u0000\uD4CB\uBDFC\u0000\uE5C2\uB7B5\uE5C3\u0000" + // 2510 - 2519
"\u0000\uBBB9\uD5E2\u0000\uBDF8\uD4B6\uCEA5\uC1AC\uB3D9\uBFBF" + // 2520 - 2529
"\uC3D2\uC3E6\u0000\u0000\uD8CC\u0000\u0000\u0000\uB8EF\u0000" + // 2530 - 2539
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBDF9\uD1A5" + // 2540 - 2549
"\u0000\uB0D0\u0000\u0000\u0000\u0000\u0000\uF7B0\u0000\u0000" + // 2550 - 2559
"\u0000\uC8A4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2560 - 2569
"\u0000\u0000\u0000\u0000\u0000\uF4F5\u0000\uD7E3\uC5BF\uF5C0" + // 2570 - 2579
"\u0000\u0000\uF5BB\u0000\uF5C3\u0000\uF5C2\u0000\uD6BA\uF5C1" + // 2580 - 2589
"\uD0E8\uF6AB\u0000\u0000\uCFF6\u0000\uF6AA\uD5F0\uF6AC\uC3B9" + // 2590 - 2599
"\u0000\u0000\u0000\uBBF4\uF6AE\uF6AD\u0000\u0000\u0000\uC4DE" + // 2600 - 2609
"\u0000\u0000\uC1D8\u0000\u0000\u0000\u0000\u0000\uCBAA\u0000" + // 2610 - 2619
"\uCFBC\u0000\uE9FA\uE9FB\uBDCF\uE9FC\uB8A8\uC1BE\uE9FD\uB1B2" + // 2620 - 2629
"\uBBD4\uB9F5\uE9FE\u0000\uEAA1\uEAA2\uEAA3\uB7F8\uBCAD\u0000" + // 2630 - 2639
"\uCAE4\uE0CE\uD4AF\uCFBD\uD5B7\uEAA4\uD5DE\uEAA5\uD0C1\uB9BC" + // 2640 - 2649
"\u0000\uB4C7\uB1D9\uF6C5\u0000\u0000\u0000\u0000\u0000\u0000" + // 2650 - 2659
"\u0000\uD3EA\uF6A7\uD1A9\u0000\u0000\u0000\u0000\uF6A9\u0000" + // 2660 - 2669
"\u0000\u0000\uF6A8\u0000\u0000\uC1E3\uC0D7\u0000\uB1A2\u0000" + // 2670 - 2679
"\u0000\u0000\u0000\uCEED\u0000\uD4EA\u0000\u0000\u0000\uF5EE" + // 2680 - 2689
"\u0000\uB3F9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF5EF" + // 2690 - 2699
"\uF5F1\u0000\u0000\u0000\uF5F0\u0000\u0000\u0000\u0000\u0000" + // 2700 - 2709
"\u0000\u0000\uF5F2\u0000\uF5F3\u0000\uBCFB\uB9DB\u0000\uB9E6" + // 2710 - 2719
"\uC3D9\uCAD3\uEAE8\uC0C0\uBEF5\uEAE9\uEAEA\uEAEB\u0000\uEAEC" + // 2720 - 2729
"\uEAED\uEAEE\uEAEF\uBDC7\u0000\u0000\u0000\uF5FB\u0000\u0000" + // 2730 - 2739
"\u0000\uF5FD\u0000\uF5FE\u0000\uF5FC\u0000\uBAE2\uE1E9\uD2C2" + // 2740 - 2749
"\uF1C2\uB2B9\u0000\u0000\uB1ED\uF1C3\u0000\uC9C0\uB3C4\u0000" + // 2750 - 2759
"\uD9F2\u0000\uCBA5\u0000\uF1C4\u0000\u0000\u0000\u0000\uD6D4" + // 2760 - 2769
"\u0000\u0000\u0000\u0000\u0000\uF1C5\uF4C0\uF1C6\uC8B8\uD1E3" + // 2770 - 2779
"\u0000\u0000\uD0DB\uD1C5\uBCAF\uB9CD\u0000\uEFF4\u0000\u0000" + // 2780 - 2789
"\uB4C6\uD3BA\uF6C2\uB3FB\u0000\u0000\uF6C3\u0000\u0000\uB5F1" + // 2790 - 2799
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2800 - 2809
"\uE1D4\u0000\uE1D1\uE1CD\u0000\u0000\uE1CF\u0000\u0000\u0000" + // 2810 - 2819
"\u0000\uE1D5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2820 - 2829
"\u0000\u0000\u0000\uF6CE\u0000\u0000\u0000\u0000\u0000\u0000" + // 2830 - 2839
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2840 - 2849
"\u0000\u0000\u0000\u0000\uA1FB\uA1FC\uA1FA\uA1FD\u0000\u0000" + // 2850 - 2859
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2860 - 2869
"\uC1A2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 2870 - 2879
"\u0000\uCAFA\u0000\u0000\uD5BE\u0000\u0000\u0000\u0000\uBEBA" + // 2880 - 2889
"\uBEB9\uCDD3\u0000\uDAE9\u0000\uB8BD\uBCCA\uC2BD\uC2A4\uB3C2" + // 2890 - 2899
"\uDAEA\u0000\uC2AA\uC4B0\uBDB5\u0000\u0000\uCFDE\u0000\u0000" + // 2900 - 2909
"\u0000\uDAEB\uC9C2\u0000\u0000\u0000\u0000\u0000\uB1DD\u0000" + // 2910 - 2919
"\u0000\u0000\uDAEC\uB7A7\uB8F3\uBAD2\uE3CD\uE3CE\uD4C4\uE3CF" + // 2920 - 2929
"\u0000\uE3D0\uD1CB\uE3D1\uE3D2\uE3D3\uE3D4\uD1D6\uE3D5\uB2FB" + // 2930 - 2939
"\uC0BB\uE3D6\u0000\uC0AB\uE3D7\uE3D8\uE3D9\u0000\uE3DA\uE3DB" + // 2940 - 2949
"\u0000\uB8B7\uDAE2\u0000\uB6D3\uB6C6\uC3BE\uEFCE\u0000\uEFD0" + // 2950 - 2959
"\uEFD1\uEFD2\uD5F2\u0000\uEFD3\uC4F7\u0000\uEFD4\uC4F8\uEFD5" + // 2960 - 2969
"\uEFD6\uB8E4\uB0F7\uEFD7\uEFD8\uEFD9\u0000\uEFDA\uEFDB\uEFDC" + // 2970 - 2979
"\uEFDD\u0000\uEFDE\uBEB5\uEFE1\uEFDF\uEFE0\uCFFA\uCBF8\uEFAE" + // 2980 - 2989
"\uEFAD\uB3FA\uB9F8\uEFAF\uEFB0\uD0E2\uEFB1\uEFB2\uB7E6\uD0BF" + // 2990 - 2999
"\uEFB3\uEFB4\uEFB5\uC8F1\uCCE0\uEFB6\uEFB7\uEFB8\uEFB9\uEFBA" + // 3000 - 3009
"\uD5E0\uEFBB\uB4ED\uC3AA\uEFBC\u0000\uEFBD\uEFBE\uEFBF\uEEF8" + // 3010 - 3019
"\uD5A1\uEEF9\uCFB3\uEEFA\uEEFB\u0000\uEEFC\uEEFD\uEFA1\uEEFE" + // 3020 - 3029
"\uEFA2\uB8F5\uC3FA\uEFA3\uEFA4\uBDC2\uD2BF\uB2F9\uEFA5\uEFA6" + // 3030 - 3039
"\uEFA7\uD2F8\uEFA8\uD6FD\uEFA9\uC6CC\u0000\uEFAA\uEFAB\uC1B4" + // 3040 - 3049
"\uEFAC\uD3CB\uCCFA\uB2AC\uC1E5\uEEE5\uC7A6\uC3AD\u0000\uEEE6" + // 3050 - 3059
"\uEEE7\uEEE8\uEEE9\uEEEA\uEEEB\uEEEC\u0000\uEEED\uEEEE\uEEEF" + // 3060 - 3069
"\u0000\u0000\uEEF0\uEEF1\uEEF2\uEEF4\uEEF3\u0000\uEEF5\uCDAD" + // 3070 - 3079
"\uC2C1\uEEF6\uEEF7\uC4C6\uB1B5\uB8D6\uEED3\uEED4\uD4BF\uC7D5" + // 3080 - 3089
"\uBEFB\uCED9\uB9B3\uEED6\uEED5\uEED8\uEED7\uC5A5\uEED9\uEEDA" + // 3090 - 3099
"\uC7AE\uEEDB\uC7AF\uEEDC\uB2A7\uEEDD\uEEDE\uEEDF\uEEE0\uEEE1" + // 3100 - 3109
"\uD7EA\uEEE2\uEEE3\uBCD8\uEEE4\uD1FB\u0000\uE5E2\uE5E4\u0000" + // 3110 - 3119
"\u0000\u0000\u0000\uE5E3\u0000\u0000\uE5E5\u0000\u0000\u0000" + // 3120 - 3129
"\u0000\u0000\uD2D8\u0000\uB5CB\u0000\uE7DF\u0000\uDAF5\u0000" + // 3130 - 3139
"\uDAF8\u0000\uDAF6\u0000\uDAF7\u0000\u0000\uCCF6\u0000\uE5C6" + // 3140 - 3149
"\uE5C4\uE5C8\u0000\uE5CA\uE5C7\uB5CF\uC6C8\u0000\uB5FC\uE5C5" + // 3150 - 3159
"\u0000\uCAF6\u0000\u0000\uE5C9\u0000\u0000\u0000\uC3D4\uB1C5" + // 3160 - 3169
"\uBCA3\u0000\u0000\u0000\uD7B7\u0000\u0000\uF5F5\u0000\u0000" + // 3170 - 3179
"\uF5F7\u0000\u0000\u0000\uBAD1\uF5F6\u0000\uC3B2\u0000\u0000" + // 3180 - 3189
"\u0000\u0000\u0000\u0000\u0000\uF5F9\u0000\u0000\u0000\uF5F8" + // 3190 - 3199
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB4D8\u0000\u0000" + // 3200 - 3209
"\u0000\uF3FE\uF3F9\u0000\u0000\uF3FC\u0000\u0000\u0000\u0000" + // 3210 - 3219
"\u0000\u0000\uF3FD\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3220 - 3229
"\u0000\uF4A1\uD4EC\uE5D2\uB7EA\u0000\u0000\u0000\uE5CE\u0000" + // 3230 - 3239
"\u0000\u0000\u0000\u0000\u0000\uE5D5\uB4FE\uE5D6\u0000\u0000" + // 3240 - 3249
"\u0000\u0000\u0000\uE5D3\uE5D4\u0000\uD2DD\u0000\u0000\uC2DF" + // 3250 - 3259
"\uB1C6\u0000\uD3E2\u0000\uBBED\u0000\u0000\u0000\u0000\uB6B9" + // 3260 - 3269
"\uF4F8\u0000\uF4F9\u0000\u0000\uCDE3\u0000\u0000\u0000\u0000" + // 3270 - 3279
"\u0000\u0000\u0000\u0000\uF5B9\u0000\u0000\u0000\u0000\uEBE0" + // 3280 - 3289
"\u0000\u0000\u0000\u0000\u0000\uE1DB\u0000\u0000\u0000\u0000" + // 3290 - 3299
"\u0000\u0000\u0000\uCEA1\u0000\u0000\u0000\u0000\u0000\u0000" + // 3300 - 3309
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE7DD\u0000\uB4A8" + // 3310 - 3319
"\uD6DD\u0000\uF1D7\u0000\u0000\u0000\uC8EC\u0000\u0000\u0000" + // 3320 - 3329
"\u0000\uCDCA\uF1DD\u0000\u0000\u0000\u0000\uE5BD\u0000\u0000" + // 3330 - 3339
"\u0000\uF1DC\u0000\uF1DE\u0000\u0000\u0000\u0000\u0000\u0000" + // 3340 - 3349
"\u0000\u0000\u0000\uA1CA\u0000\u0000\u0000\u0000\u0000\u0000" + // 3350 - 3359
"\uA1C7\u0000\uA1C6\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3360 - 3369
"\u0000\uA1CC\u0000\u0000\uA1D8\uA1DE\u0000\uF3BB\uB4C0\u0000" + // 3370 - 3379
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3380 - 3389
"\u0000\u0000\u0000\u0000\uEEC3\u0000\u0000\u0000\u0000\u0000" + // 3390 - 3399
"\u0000\uF3BC\u0000\u0000\uF3BD\u0000\u0000\u0000\uDEAC\u0000" + // 3400 - 3409
"\u0000\u0000\u0000\uDEA6\uBDB6\uC8EF\u0000\u0000\u0000\u0000" + // 3410 - 3419
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDEA1\u0000\u0000" + // 3420 - 3429
"\uDEA5\u0000\u0000\u0000\u0000\uDEA9\u0000\uDEBB\u0000\u0000" + // 3430 - 3439
"\u0000\u0000\u0000\u0000\u0000\uBDE5\u0000\u0000\u0000\u0000" + // 3440 - 3449
"\u0000\uB2D8\uC3EA\u0000\u0000\uDEBA\u0000\uC5BA\u0000\u0000" + // 3450 - 3459
"\u0000\u0000\u0000\u0000\uDEBC\u0000\u0000\u0000\uEBF9\u0000" + // 3460 - 3469
"\u0000\uECA2\u0000\uC5F2\u0000\uEBFA\u0000\u0000\u0000\u0000" + // 3470 - 3479
"\u0000\u0000\u0000\u0000\uC9C5\u0000\u0000\u0000\u0000\u0000" + // 3480 - 3489
"\u0000\uE2DF\uEBFE\u0000\u0000\u0000\u0000\uE1C5\u0000\uE1C3" + // 3490 - 3499
"\uE1C2\u0000\uB1C0\u0000\u0000\u0000\uD5B8\uE1C4\u0000\u0000" + // 3500 - 3509
"\u0000\u0000\u0000\uE1CB\u0000\u0000\u0000\u0000\u0000\u0000" + // 3510 - 3519
"\u0000\u0000\uE1CC\uE1CA\u0000\uDDBD\u0000\uDDCD\uCCD1\u0000" + // 3520 - 3529
"\uDDC9\u0000\u0000\u0000\u0000\uDDC2\uC3C8\uC6BC\uCEAE\uDDCC" + // 3530 - 3539
"\u0000\uDDC8\u0000\u0000\u0000\u0000\u0000\u0000\uDDC1\u0000" + // 3540 - 3549
"\u0000\u0000\uDDC6\uC2DC\u0000\u0000\uB5D9\u0000\u0000\u0000" + // 3550 - 3559
"\u0000\uDDDB\uDDDC\uDDDE\u0000\uBDAF\uDDE4\u0000\uDDE5\u0000" + // 3560 - 3569
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDDF5\u0000\uC3C9" + // 3570 - 3579
"\u0000\u0000\uCBE2\u0000\u0000\u0000\uF3C6\uF3C7\u0000\uB0CA" + // 3580 - 3589
"\u0000\uF3C5\u0000\uF3C9\uCBF1\u0000\u0000\u0000\uF3CB\u0000" + // 3590 - 3599
"\uD0A6\u0000\u0000\uB1CA\uF3C8\u0000\u0000\u0000\uF3CF\u0000" + // 3600 - 3609
"\uB5D1\u0000\u0000\uF3D7\u0000\uD7C2\uC3AF\uB7B6\uC7D1\uC3A9" + // 3610 - 3619
"\uDCE2\uDCD8\uDCEB\uDCD4\u0000\u0000\uDCDD\u0000\uBEA5\uDCD7" + // 3620 - 3629
"\u0000\uDCE0\u0000\u0000\uDCE3\uDCE4\u0000\uDCF8\u0000\u0000" + // 3630 - 3639
"\uDCE1\uDDA2\uDCE7\u0000\u0000\u0000\uEFF7\uB3D3\u0000\uC7D8" + // 3640 - 3649
"\uD1ED\u0000\uD6C8\u0000\uEFF8\u0000\uEFF6\u0000\uBBFD\uB3C6" + // 3650 - 3659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBDD5\u0000\u0000" + // 3660 - 3669
"\uD2C6\u0000\uBBE0\u0000\u0000\uF3BF\u0000\uF3C0\uF3C1\u0000" + // 3670 - 3679
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB9DE" + // 3680 - 3689
"\uCDF8\u0000\u0000\uD8E8\uBAB1\u0000\uC2DE\uEEB7\u0000\uB7A3" + // 3690 - 3699
"\u0000\u0000\u0000\u0000\uEEB9\uCDCB\uCBCD\uCACA\uCCD3\uE5CC" + // 3700 - 3709
"\uE5CB\uC4E6\u0000\u0000\uD1A1\uD1B7\uE5CD\u0000\uE5D0\u0000" + // 3710 - 3719
"\uCDB8\uD6F0\uE5CF\uB5DD\u0000\uCDBE\u0000\uE5D1\uB6BA\u0000" + // 3720 - 3729
"\u0000\uCDA8\uB9E4\u0000\uCAC5\uB3D1\uCBD9\uF5DE\uF5E4\uF5E5" + // 3730 - 3739
"\u0000\uCCE3\u0000\u0000\uE5BF\uB5B8\uF5E3\uF5E8\uCCA3\u0000" + // 3740 - 3749
"\u0000\u0000\u0000\u0000\uF5E6\uF5E7\u0000\u0000\u0000\u0000" + // 3750 - 3759
"\u0000\u0000\uF5BE\u0000\u0000\u0000\u0000\u0000\u0000\uB1AC" + // 3760 - 3769
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3770 - 3779
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3780 - 3789
"\u0000\u0000\uECDF\u0000\u0000\uB9D3\u0000\u0000\u0000\u0000" + // 3790 - 3799
"\u0000\u0000\u0000\uF1DB\u0000\u0000\u0000\u0000\u0000\uBAD6" + // 3800 - 3809
"\u0000\uB0FD\uF1D9\u0000\u0000\u0000\u0000\u0000\uF1D8\uF1D2" + // 3810 - 3819
"\uF1DA\u0000\u0000\u0000\u0000\uD0B9\uC7F6\u0000\u0000\u0000" + // 3820 - 3829
"\uC8AA\uB2B4\u0000\uC3DA\u0000\u0000\u0000\uE3EE\u0000\u0000" + // 3830 - 3839
"\uE3FC\uE3EF\uB7A8\uE3F7\uE3F4\u0000\u0000\u0000\uB7BA\u0000" + // 3840 - 3849
"\u0000\uC5A2\u0000\uD2AA\u0000\uF1FB\u0000\u0000\uB8B2\u0000" + // 3850 - 3859
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3860 - 3869
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3870 - 3879
"\u0000\u0000\u0000\u0000\u0000\u0000\uF7E3\u0000\u0000\u0000" + // 3880 - 3889
"\u0000\uB3CE\u0000\u0000\u0000\uB3BA\uE4F7\u0000\u0000\uE4F9" + // 3890 - 3899
"\uE4F8\uC5EC\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3900 - 3909
"\u0000\u0000\u0000\u0000\u0000\uC0BD\u0000\u0000\u0000\uBDE2" + // 3910 - 3919
"\u0000\uF6A1\uB4A5\u0000\u0000\u0000\u0000\uF6A2\u0000\u0000" + // 3920 - 3929
"\u0000\uF6A3\u0000\u0000\u0000\uECB2\u0000\u0000\u0000\u0000" + // 3930 - 3939
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBBF0\uECE1" + // 3940 - 3949
"\uC3F0\u0000\uB5C6\uBBD2\u0000\u0000\u0000\u0000\uC1E9\uD4EE" + // 3950 - 3959
"\u0000\uBEC4\u0000\u0000\u0000\uD7C6\u0000\uD4D6\uB2D3\uD4F9" + // 3960 - 3969
"\uC9C4\uD3AE\uB8D3\uB3E0\u0000\uC9E2\uF4F6\u0000\u0000\u0000" + // 3970 - 3979
"\uBAD5\u0000\uF4F7\u0000\u0000\uD7DF\u0000\u0000\uF4F1\uB8B0" + // 3980 - 3989
"\uD5D4\uB8CF\uC6F0\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 3990 - 3999
"\u0000\uB4DD\u0000\uC4A6\u0000\u0000\u0000\uDEFD\u0000\u0000" + // 4000 - 4009
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC3FE\uC4A1" + // 4010 - 4019
"\uDFA1\u0000\u0000\u0000\u0000\u0000\uDFAC\u0000\u0000\u0000" + // 4020 - 4029
"\u0000\u0000\uBEF0\u0000\u0000\uDFAD\uD6A7\u0000\u0000\u0000" + // 4030 - 4039
"\u0000\uEAB7\uEBB6\uCAD5\u0000\uD8FC\uB8C4\u0000\uB9A5\u0000" + // 4040 - 4049
"\u0000\uB7C5\uD5FE\uEADF\uC1DE\uC2B8\uD4DF\uD7CA\uEAE0\uEAE1" + // 4050 - 4059
"\uEAE4\uEAE2\uEAE3\uC9DE\uB8B3\uB6C4\uEAE5\uCAEA\uC9CD\uB4CD" + // 4060 - 4069
"\u0000\u0000\uE2D9\uC5E2\uEAE6\uC0B5\u0000\uD7B8\uEAE7\uD7AC" + // 4070 - 4079
"\uC8FC\uD8D3\uD8CD\uD4DE\u0000\uF1DF\u0000\u0000\uCFE5\u0000" + // 4080 - 4089
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4090 - 4099
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4100 - 4109
"\u0000\u0000\u0000\u0000\uF4C5\uBDF3\uDAD4\uDAD5\uD0BB\uD2A5" + // 4110 - 4119
"\uB0F9\uDAD6\uC7AB\uDAD7\uBDF7\uC3A1\uDAD8\uDAD9\uC3FD\uCCB7" + // 4120 - 4129
"\uDADA\uDADB\uC0BE\uC6D7\uDADC\uDADD\uC7B4\uDADE\uDADF\uB9C8" + // 4130 - 4139
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE3BF\uBAA9" + // 4140 - 4149
"\uEDAC\u0000\u0000\uE3BD\u0000\u0000\u0000\u0000\u0000\u0000" + // 4150 - 4159
"\u0000\u0000\u0000\u0000\uE3C0\u0000\u0000\u0000\u0000\u0000" + // 4160 - 4169
"\u0000\uBAB6\u0000\uB2C3\uC1D1\u0000\u0000\uD7B0\uF1C9\u0000" + // 4170 - 4179
"\u0000\uF1CC\u0000\u0000\u0000\u0000\uF1CE\u0000\u0000\u0000" + // 4180 - 4189
"\uD9F6\u0000\uD2E1\uD4A3\u0000\u0000\uF4C3\uC8B9\u0000\u0000" + // 4190 - 4199
"\u0000\u0000\u0000\uF4C4\uDAC4\uCBAD\uDAC5\uB5F7\uDAC6\uC1C2" + // 4200 - 4209
"\uD7BB\uDAC7\uCCB8\u0000\uD2EA\uC4B1\uDAC8\uB5FD\uBBD1\uDAC9" + // 4210 - 4219
"\uD0B3\uDACA\uDACB\uCEBD\uDACC\uDACD\uDACE\uB2F7\uDAD1\uDACF" + // 4220 - 4229
"\uD1E8\uDAD0\uC3D5\uDAD2\u0000\uDAD3\uDAB9\uB9EE\uD1AF\uD2E8" + // 4230 - 4239
"\uDABA\uB8C3\uCFEA\uB2EF\uDABB\uDABC\u0000\uBDEB\uCEDC\uD3EF" + // 4240 - 4249
"\uDABD\uCEF3\uDABE\uD3D5\uBBE5\uDABF\uCBB5\uCBD0\uDAC0\uC7EB" + // 4250 - 4259
"\uD6EE\uDAC1\uC5B5\uB6C1\uDAC2\uB7CC\uBFCE\uDAC3\uBEF7\uD6A4" + // 4260 - 4269
"\uDAAC\uDAAD\uC6C0\uD7E7\uCAB6\u0000\uD5A9\uCBDF\uD5EF\uDAAE" + // 4270 - 4279
"\uD6DF\uB4CA\uDAB0\uDAAF\u0000\uD2EB\uDAB1\uDAB2\uDAB3\uCAD4" + // 4280 - 4289
"\uDAB4\uCAAB\uDAB5\uDAB6\uB3CF\uD6EF\uDAB7\uBBB0\uB5AE\uDAB8" + // 4290 - 4299
"\uDAA5\uBCC6\uB6A9\uB8BC\uC8CF\uBCA5\uDAA6\uDAA7\uCCD6\uC8C3" + // 4300 - 4309
"\uDAA8\uC6FD\u0000\uD1B5\uD2E9\uD1B6\uBCC7\u0000\uBDB2\uBBE4" + // 4310 - 4319
"\uDAA9\uDAAA\uD1C8\uDAAB\uD0ED\uB6EF\uC2DB\u0000\uCBCF\uB7ED" + // 4320 - 4329
"\uC9E8\uB7C3\uD1D4\u0000\u0000\u0000\u0000\u0000\u0000\uD9EA" + // 4330 - 4339
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4340 - 4349
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4350 - 4359
"\u0000\u0000\u0000\u0000\u0000\uD5B2\u0000\u0000\u0000\u0000" + // 4360 - 4369
"\u0000\u0000\uE4EB\uE4EC\u0000\u0000\u0000\uE4F2\u0000\uCEAB" + // 4370 - 4379
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4380 - 4389
"\uC5CB\u0000\u0000\u0000\uC7B1\u0000\uC2BA\u0000\uD4AC\uF1C7" + // 4390 - 4399
"\u0000\uB0C0\uF4C1\u0000\u0000\uF4C2\u0000\u0000\uB4FC\u0000" + // 4400 - 4409
"\uC5DB\u0000\u0000\u0000\u0000\uCCBB\u0000\u0000\u0000\uD0E4" + // 4410 - 4419
"\u0000\u0000\u0000\u0000\u0000\uCDE0\u0000\u0000\u0000\uF2BC" + // 4420 - 4429
"\uD4E9\u0000\u0000\uF2BB\uF2B6\uF2BF\uF2BD\u0000\uF2B9\u0000" + // 4430 - 4439
"\u0000\uF2C7\uF2C4\uF2C6\u0000\u0000\uF2CA\uF2C2\uF2C0\u0000" + // 4440 - 4449
"\u0000\u0000\uF2C5\u0000\u0000\u0000\u0000\u0000\uDCAA\u0000" + // 4450 - 4459
"\u0000\u0000\u0000\u0000\uCCEE\uDCAB\u0000\u0000\u0000\u0000" + // 4460 - 4469
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4470 - 4479
"\u0000\u0000\u0000\uDBD3\u0000\uC0AF\uF2EC\uF2DE\u0000\uF2E1" + // 4480 - 4489
"\u0000\u0000\u0000\uF2E8\u0000\u0000\u0000\u0000\uF2E2\u0000" + // 4490 - 4499
"\u0000\uF2E7\u0000\u0000\uF2E6\u0000\u0000\uF2E9\u0000\u0000" + // 4500 - 4509
"\u0000\uF2DF\u0000\u0000\uF2E4\uF2EA\uD1AA\u0000\u0000\u0000" + // 4510 - 4519
"\uF4AC\uD0C6\u0000\u0000\u0000\u0000\u0000\u0000\uD0D0\uD1DC" + // 4520 - 4529
"\u0000\u0000\u0000\u0000\u0000\u0000\uCFCE\u0000\u0000\uBDD6" + // 4530 - 4539
"\u0000\uD1C3\u0000\u0000\u0000\u0000\u0000\u0000\uEBFC\u0000" + // 4540 - 4549
"\uC4BE\u0000\uCEB4\uC4A9\uB1BE\uD4FD\u0000\uCAF5\u0000\uD6EC" + // 4550 - 4559
"\u0000\u0000\uC6D3\uB6E4\u0000\u0000\u0000\u0000\uBBFA\u0000" + // 4560 - 4569
"\u0000\uD0E0\u0000\u0000\uF1C8\u0000\uD9F3\u0000\u0000\u0000" + // 4570 - 4579
"\u0000\u0000\u0000\uB1BB\u0000\uCFAE\u0000\u0000\u0000\uB8A4" + // 4580 - 4589
"\u0000\u0000\u0000\u0000\u0000\uF1CA\u0000\u0000\u0000\u0000" + // 4590 - 4599
"\uF1CB\u0000\u0000\u0000\uD9F9\u0000\u0000\u0000\u0000\u0000" + // 4600 - 4609
"\u0000\uF3B9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4610 - 4619
"\uF3B7\u0000\uC8E4\uF3B6\u0000\u0000\u0000\u0000\uF3BA\u0000" + // 4620 - 4629
"\u0000\u0000\u0000\uE9CF\u0000\u0000\uC7C1\u0000\u0000\u0000" + // 4630 - 4639
"\u0000\u0000\u0000\u0000\u0000\uE9D2\u0000\u0000\u0000\u0000" + // 4640 - 4649
"\u0000\u0000\u0000\uE9D9\uB3C8\u0000\uE9D3\u0000\u0000\u0000" + // 4650 - 4659
"\u0000\u0000\uF5AC\u0000\uB4BC\u0000\uD7ED\u0000\uB4D7\uF5AB" + // 4660 - 4669
"\uF5AE\u0000\u0000\uF5AD\uF5AF\uD0D1\u0000\u0000\u0000\u0000" + // 4670 - 4679
"\u0000\u0000\u0000\uC3D1\uC8A9\u0000\u0000\u0000\u0000\u0000" + // 4680 - 4689
"\uEEC4\uEEC5\uEEC6\uD5EB\uB6A4\uEEC8\uEEC7\uEEC9\uEECA\uC7A5" + // 4690 - 4699
"\uEECB\uEECC\u0000\uB7B0\uB5F6\uEECD\uEECF\u0000\uEECE\u0000" + // 4700 - 4709
"\uB8C6\uEED0\uEED1\uEED2\uB6DB\uB3AE\uD6D3\uF3B4\u0000\u0000" + // 4710 - 4719
"\u0000\u0000\uF3A8\u0000\u0000\u0000\u0000\uF3B3\u0000\u0000" + // 4720 - 4729
"\u0000\uF3B5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4730 - 4739
"\u0000\u0000\uD0B7\u0000\u0000\u0000\u0000\uF3B8\u0000\uB2CC" + // 4740 - 4749
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC4E8" + // 4750 - 4759
"\uCADF\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4760 - 4769
"\u0000\uC7BE\uDDFA\uDDFC\uDDFE\uDEA2\uB0AA\uB1CE\u0000\u0000" + // 4770 - 4779
"\uEBBD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB3E6" + // 4780 - 4789
"\uF2B0\u0000\uF2B1\u0000\u0000\uCAAD\u0000\u0000\u0000\u0000" + // 4790 - 4799
"\u0000\u0000\u0000\uBAE7\uF2B3\uF2B5\uF2B4\uCBE4\uCFBA\uF2B2" + // 4800 - 4809
"\uF3B0\u0000\u0000\u0000\u0000\u0000\uF3A1\u0000\u0000\u0000" + // 4810 - 4819
"\uF3B1\uF3AC\u0000\u0000\u0000\u0000\u0000\uF3AF\uF2FE\uF3AD" + // 4820 - 4829
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF3B2\u0000\u0000" + // 4830 - 4839
"\u0000\u0000\uB3B7\u0000\u0000\u0000\u0000\uC1C3\u0000\u0000" + // 4840 - 4849
"\uC7CB\uB2A5\uB4E9\u0000\uD7AB\u0000\u0000\u0000\u0000\uC4EC" + // 4850 - 4859
"\u0000\uDFA2\uDFA3\u0000\uDFA5\u0000\uBAB3\u0000\u0000\u0000" + // 4860 - 4869
"\uB3BC\u0000\u0000\u0000\uEAB0\u0000\u0000\uD7D4\u0000\uF4AB" + // 4870 - 4879
"\uB3F4\u0000\u0000\u0000\u0000\u0000\uD6C1\uD6C2\u0000\u0000" + // 4880 - 4889
"\u0000\u0000\u0000\u0000\uD5E9\uBECA\u0000\uF4A7\u0000\uDDE8" + // 4890 - 4899
"\u0000\u0000\uD0EE\u0000\u0000\u0000\u0000\uC8D8\uDDEE\u0000" + // 4900 - 4909
"\u0000\uDDE9\u0000\u0000\uDDEA\uCBF2\u0000\uDDED\u0000\u0000" + // 4910 - 4919
"\uB1CD\u0000\u0000\u0000\u0000\u0000\u0000\uC0B6\u0000\uBCBB" + // 4920 - 4929
"\uF2F0\u0000\u0000\uF2F6\uF2F8\uF2FA\u0000\u0000\u0000\u0000" + // 4930 - 4939
"\u0000\u0000\u0000\u0000\uF2F3\u0000\uF2F1\u0000\u0000\u0000" + // 4940 - 4949
"\uBAFB\u0000\uB5FB\u0000\u0000\u0000\u0000\uF2EF\uF2F7\uF2ED" + // 4950 - 4959
"\uF2EE\u0000\uDDF2\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 4960 - 4969
"\u0000\u0000\u0000\u0000\u0000\u0000\uD8E1\u0000\u0000\uC6D1" + // 4970 - 4979
"\u0000\uDDF4\u0000\u0000\u0000\uD5F4\uDDF3\uDDF0\u0000\u0000" + // 4980 - 4989
"\uDDEC\u0000\uDDEF\uCAF1\u0000\uB7E4\uF2D7\u0000\u0000\u0000" + // 4990 - 4999
"\uF2D8\uF2DA\uF2DD\uF2DB\u0000\u0000\uF2DC\u0000\u0000\u0000" + // 5000 - 5009
"\u0000\uD1D1\uF2D1\u0000\uCDC9\u0000\uCECF\uD6A9\u0000\uF2E3" + // 5010 - 5019
"\u0000\uC3DB\u0000\uF2E0\u0000\uC6CF\u0000\uB6AD\u0000\u0000" + // 5020 - 5029
"\u0000\u0000\u0000\uDDE2\u0000\uBAF9\uD4E1\uDDE7\u0000\u0000" + // 5030 - 5039
"\u0000\uB4D0\u0000\uDDDA\u0000\uBFFB\uDDE3\u0000\uDDDF\u0000" + // 5040 - 5049
"\uDDDD\u0000\u0000\u0000\u0000\u0000\uE0E9\uE0E3\u0000\u0000" + // 5050 - 5059
"\u0000\u0000\u0000\u0000\u0000\uBABF\uCCE7\u0000\u0000\u0000" + // 5060 - 5069
"\uE0EA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5070 - 5079
"\u0000\u0000\u0000\uE4D0\u0000\u0000\uE4CE\u0000\u0000\u0000" + // 5080 - 5089
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5090 - 5099
"\u0000\u0000\uCDE5\uCAAA\uD6FB\u0000\u0000\u0000\uF2C1\u0000" + // 5100 - 5109
"\uC7F9\uC9DF\u0000\uF2C8\uB9C6\uB5B0\u0000\u0000\uF2C3\uF2C9" + // 5110 - 5119
"\uF2D0\uF2D6\u0000\u0000\uBBD7\u0000\u0000\u0000\uF2D5\uCDDC" + // 5120 - 5129
"\u0000\uD6EB\u0000\u0000\uF2D2\uF2D4\uCAB4\uD2CF\uC2EC\u0000" + // 5130 - 5139
"\u0000\u0000\u0000\u0000\u0000\u0000\uCEC3\uF2B8\uB0F6\uF2B7" + // 5140 - 5149
"\u0000\u0000\u0000\u0000\u0000\uF2BE\u0000\uB2CF\u0000\u0000" + // 5150 - 5159
"\u0000\u0000\u0000\u0000\uD1C1\uF2BA\u0000\u0000\uF2EB\uF3A6" + // 5160 - 5169
"\u0000\uF3A3\u0000\u0000\uF3A2\u0000\u0000\uF2F4\u0000\uC8DA" + // 5170 - 5179
"\u0000\u0000\u0000\u0000\u0000\uF2FB\u0000\u0000\u0000\uF3A5" + // 5180 - 5189
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC3F8\uDDF1\u0000" + // 5190 - 5199
"\u0000\uDDF7\u0000\uDDF6\uDDEB\u0000\u0000\u0000\u0000\u0000" + // 5200 - 5209
"\uC5EE\u0000\u0000\u0000\uDDFB\u0000\u0000\u0000\u0000\u0000" + // 5210 - 5219
"\u0000\u0000\u0000\u0000\u0000\u0000\uDEA4\u0000\u0000\uDEA3" + // 5220 - 5229
"\uB2A4\uDDD5\u0000\u0000\u0000\uDDBE\u0000\u0000\u0000\uC6D0" + // 5230 - 5239
"\uDDD0\u0000\u0000\u0000\u0000\u0000\uDDD4\uC1E2\uB7C6\u0000" + // 5240 - 5249
"\u0000\u0000\u0000\u0000\uDDCE\uDDCF\u0000\u0000\u0000\uDDC4" + // 5250 - 5259
"\u0000\u0000\uBDDA\u0000\uDCB9\u0000\u0000\u0000\uD8C2\u0000" + // 5260 - 5269
"\uDCB7\uD3F3\u0000\uC9D6\uDCBA\uDCB6\u0000\uDCBB\uC3A2\u0000" + // 5270 - 5279
"\u0000\u0000\u0000\uDCBC\uDCC5\uDCBD\u0000\u0000\uCEDF\uD6A5" + // 5280 - 5289
"\u0000\uDCCF\uDDD2\uDDBC\u0000\u0000\u0000\uDDD1\u0000\uB9BD" + // 5290 - 5299
"\u0000\u0000\uBED5\u0000\uBEFA\u0000\u0000\uBACA\u0000\u0000" + // 5300 - 5309
"\u0000\u0000\uDDCA\u0000\uDDC5\u0000\uDDBF\u0000\u0000\u0000" + // 5310 - 5319
"\uB2CB\uDDC3\u0000\uDDCB\uDDAC\u0000\u0000\u0000\u0000\u0000" + // 5320 - 5329
"\u0000\u0000\uDDB9\uDDB3\uDDAD\uC4AA\u0000\u0000\u0000\u0000" + // 5330 - 5339
"\uDDA8\uC0B3\uC1AB\uDDAA\uDDAB\u0000\uDDB2\uBBF1\uDDB5\uD3A8" + // 5340 - 5349
"\uDDBA\u0000\uDDBB\uC3A7\u0000\u0000\uD6AC\u0000\u0000\u0000" + // 5350 - 5359
"\uB4E0\u0000\u0000\uC2F6\uBCB9\u0000\u0000\uEBDA\uEBDB\uD4E0" + // 5360 - 5369
"\uC6EA\uC4D4\uEBDF\uC5A7\uD9F5\u0000\uB2B1\u0000\uEBE4\u0000" + // 5370 - 5379
"\uBDC5\u0000\u0000\u0000\uEBE2\u0000\uDCCA\u0000\u0000\uDCD0" + // 5380 - 5389
"\u0000\u0000\uCEAD\uDCC2\u0000\uDCC3\uDCC8\uDCC9\uB2D4\uDCD1" + // 5390 - 5399
"\uCBD5\u0000\uD4B7\uDCDB\uDCDF\uCCA6\uDCE6\u0000\uC3E7\uDCDC" + // 5400 - 5409
"\u0000\u0000\uBFC1\uDCD9\u0000\uB0FA\uB9B6\uDCF9\uB5B4\u0000" + // 5410 - 5419
"\uC8D9\uBBE7\uDCFE\uDCFD\uD3AB\uDDA1\uDDA3\uDDA5\uD2F1\uDDA4" + // 5420 - 5429
"\uDDA6\uDDA7\uD2A9\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5430 - 5439
"\uBAC9\uDDA9\u0000\u0000\uDDB6\uDDB1\uDDB4\u0000\u0000\uC4F4" + // 5440 - 5449
"\uF1F5\u0000\u0000\uF1F6\u0000\u0000\u0000\uC1C4\uC1FB\uD6B0" + // 5450 - 5459
"\uF1F7\u0000\u0000\u0000\u0000\uF1F8\u0000\uC1AA\u0000\u0000" + // 5460 - 5469
"\u0000\uC6B8\u0000\uBEDB\u0000\u0000\u0000\u0000\u0000\uB8E7" + // 5470 - 5479
"\uC5B6\uDFEA\uC9DA\uC1A8\uC4C4\u0000\u0000\uBFDE\uCFF8\u0000" + // 5480 - 5489
"\u0000\u0000\uD5DC\uDFEE\u0000\u0000\u0000\u0000\u0000\u0000" + // 5490 - 5499
"\uB2B8\u0000\uBADF\uDFEC\u0000\uDBC1\uDCF7\u0000\u0000\uDCF5" + // 5500 - 5509
"\u0000\u0000\uBEA3\uDCF4\u0000\uB2DD\u0000\u0000\u0000\u0000" + // 5510 - 5519
"\u0000\uDCF3\uBCF6\uDCE8\uBBC4\u0000\uC0F3\u0000\u0000\u0000" + // 5520 - 5529
"\u0000\u0000\uBCD4\uDCE9\uDCEA\u0000\uDCF1\uDCF6\uDCE5\uDCD3" + // 5530 - 5539
"\u0000\uDCC4\uDCD6\uC8F4\uBFE0\u0000\u0000\u0000\u0000\uC9BB" + // 5540 - 5549
"\u0000\u0000\u0000\uB1BD\u0000\uD3A2\u0000\u0000\uDCDA\u0000" + // 5550 - 5559
"\u0000\uDCD5\u0000\uC6BB\u0000\uDCDE\u0000\u0000\u0000\u0000" + // 5560 - 5569
"\uDEED\u0000\uDEF1\u0000\u0000\uC8E0\u0000\u0000\u0000\uD7E1" + // 5570 - 5579
"\uDEEF\uC3E8\uCCE1\u0000\uB2E5\u0000\u0000\u0000\uD2BE\u0000" + // 5580 - 5589
"\u0000\u0000\u0000\u0000\u0000\u0000\uDEEE\u0000\uDCCD\u0000" + // 5590 - 5599
"\u0000\uDCD2\uBDE6\uC2AB\u0000\uDCB8\uDCCB\uDCCE\uDCBE\uB7D2" + // 5600 - 5609
"\uB0C5\uDCC7\uD0BE\uDCC1\uBBA8\u0000\uB7BC\uDCCC\u0000\u0000" + // 5610 - 5619
"\uDCC6\uDCBF\uC7DB\u0000\u0000\u0000\uD1BF\uDCC0\u0000\uF4AD" + // 5620 - 5629
"\uF4AE\uF4AF\u0000\u0000\u0000\u0000\uF4B2\u0000\uBABD\uF4B3" + // 5630 - 5639
"\uB0E3\uF4B0\u0000\uF4B1\uBDA2\uB2D5\u0000\uF4B6\uF4B7\uB6E6" + // 5640 - 5649
"\uB2B0\uCFCF\uF4B4\uB4AC\u0000\uF4B5\u0000\u0000\uF4B8\u0000" + // 5650 - 5659
"\uBAFA\u0000\u0000\uD8B7\uF1E3\u0000\uEBCA\uEBCB\uEBCC\uEBCD" + // 5660 - 5669
"\uEBD6\uE6C0\uEBD9\u0000\uBFE8\uD2C8\uEBD7\uEBDC\uB8EC\uEBD8" + // 5670 - 5679
"\u0000\uBDBA\u0000\uD0D8\u0000\uB0B7\u0000\uEBDD\uC4DC\u0000" + // 5680 - 5689
"\u0000\uF4D2\u0000\uD4C1\uD6E0\u0000\u0000\u0000\u0000\uB7E0" + // 5690 - 5699
"\u0000\u0000\u0000\uC1B8\u0000\u0000\uC1BB\uF4D3\uBEAC\u0000" + // 5700 - 5709
"\u0000\u0000\u0000\u0000\uB4E2\u0000\u0000\uF4D4\uF4D5\uBEAB" + // 5710 - 5719
"\u0000\uCECC\u0000\u0000\u0000\uB3E1\u0000\u0000\u0000\u0000" + // 5720 - 5729
"\uF1B4\u0000\uD2EE\u0000\uF4E1\u0000\u0000\u0000\u0000\u0000" + // 5730 - 5739
"\uCFE8\uF4E2\u0000\u0000\uC7CC\u0000\u0000\u0000\u0000\u0000" + // 5740 - 5749
"\u0000\uB5D4\uD2A8\uF4A8\uF4A9\u0000\uF4AA\uBECB\uD3DF\u0000" + // 5750 - 5759
"\u0000\u0000\u0000\u0000\uC9E0\uC9E1\u0000\u0000\uF3C2\u0000" + // 5760 - 5769
"\uCAE6\u0000\uCCF2\u0000\u0000\u0000\u0000\u0000\u0000\uE2B6" + // 5770 - 5779
"\uCBB4\u0000\uCEE8\uD6DB\uCDCE\uECA1\uB1DB\uD3B7\u0000\u0000" + // 5780 - 5789
"\uD2DC\u0000\u0000\u0000\uEBFD\u0000\uEBFB\u0000\u0000\u0000" + // 5790 - 5799
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5800 - 5809
"\u0000\u0000\u0000\u0000\u0000\u0000\uF6CC\u0000\u0000\u0000" + // 5810 - 5819
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5820 - 5829
"\u0000\u0000\u0000\uD9C4\uB1B6\u0000\uD9BF\u0000\u0000\uB5B9" + // 5830 - 5839
"\u0000\uBEF3\u0000\u0000\u0000\uCCC8\uBAF2\uD2D0\u0000\uD9C3" + // 5840 - 5849
"\u0000\u0000\uBDE8\uB0F2\u0000\uEBF6\u0000\u0000\u0000\u0000" + // 5850 - 5859
"\u0000\uEBF5\u0000\uB2B2\u0000\u0000\u0000\u0000\uB8E0\u0000" + // 5860 - 5869
"\uEBF7\u0000\u0000\u0000\u0000\u0000\u0000\uB1EC\u0000\u0000" + // 5870 - 5879
"\uCCC5\uC4A4\uCFA5\u0000\u0000\uD7EB\u0000\u0000\u0000\u0000" + // 5880 - 5889
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5890 - 5899
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 5900 - 5909
"\uF4EE\u0000\u0000\u0000\uE6F9\uEBED\u0000\u0000\u0000\u0000" + // 5910 - 5919
"\uD0C8\u0000\uEBF2\u0000\uEBEE\u0000\u0000\u0000\uEBF1\uC8F9" + // 5920 - 5929
"\u0000\uD1FC\uEBEC\u0000\u0000\uEBE9\u0000\u0000\u0000\u0000" + // 5930 - 5939
"\uB8B9\uCFD9\uC4E5\uEBEF\uEBF0\uCCDA\uCDC8\uD5CD\uD0B2\uEBCF" + // 5940 - 5949
"\uCEB8\uEBD0\u0000\uB5A8\u0000\u0000\u0000\u0000\u0000\uB1B3" + // 5950 - 5959
"\uEBD2\uCCA5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC5D6" + // 5960 - 5969
"\uEBD3\u0000\uEBD1\uC5DF\uEBCE\uCAA4\uEBD5\uB0FB\u0000\uCFDB" + // 5970 - 5979
"\u0000\u0000\uC8BA\u0000\u0000\uF4C8\u0000\u0000\u0000\u0000" + // 5980 - 5989
"\u0000\u0000\u0000\uF4C9\uF4CA\u0000\uF4CB\u0000\u0000\u0000" + // 5990 - 5999
"\u0000\u0000\uD9FA\uB8FE\u0000\u0000\uE5F1\uD3F0\u0000\uF4E0" + // 6000 - 6009
"\uB3A6\uB9C9\uD6AB\u0000\uB7F4\uB7CA\u0000\u0000\u0000\uBCE7" + // 6010 - 6019
"\uB7BE\uEBC6\u0000\uEBC7\uB0B9\uBFCF\u0000\uEBC5\uD3FD\u0000" + // 6020 - 6029
"\uEBC8\u0000\u0000\uEBC9\u0000\u0000\uB7CE\u0000\uEBC2\uEBC4" + // 6030 - 6039
"\uC9F6\uD6D7\uEDB1\u0000\u0000\uCBE0\uD2DE\u0000\uCBC1\uD5D8" + // 6040 - 6049
"\u0000\uC8E2\u0000\uC0DF\uBCA1\u0000\u0000\u0000\u0000\u0000" + // 6050 - 6059
"\u0000\uEBC1\u0000\u0000\uD0A4\u0000\uD6E2\u0000\uB6C7\uB8D8" + // 6060 - 6069
"\uEBC0\uB8CE\u0000\uEBBF\uF1EB\u0000\uF1EC\u0000\u0000\uF1ED" + // 6070 - 6079
"\uF1EE\uF1EF\uF1F1\uF1F0\uC5D5\u0000\u0000\u0000\u0000\u0000" + // 6080 - 6089
"\u0000\uF1F2\u0000\uB6FA\u0000\uF1F4\uD2AE\uDEC7\uCBCA\u0000" + // 6090 - 6099
"\u0000\uB3DC\u0000\uB5A2\u0000\uB9A2\uD2AB\uC0CF\u0000\uBFBC" + // 6100 - 6109
"\uEBA3\uD5DF\uEAC8\u0000\u0000\u0000\u0000\uF1F3\uB6F8\uCBA3" + // 6110 - 6119
"\u0000\u0000\uC4CD\u0000\uF1E7\u0000\uF1E8\uB8FB\uF1E9\uBAC4" + // 6120 - 6129
"\uD4C5\uB0D2\u0000\u0000\uF1EA\u0000\u0000\u0000\uEDC8\u0000" + // 6130 - 6139
"\uEDC6\uEDCE\uD5E8\u0000\uEDC9\u0000\u0000\uEDC7\uEDBE\u0000" + // 6140 - 6149
"\u0000\uC5E9\u0000\u0000\u0000\uC6C6\u0000\u0000\uC9E9\uD4D2" + // 6150 - 6159
"\uEDC1\uEDC2\uEDC3\uEDC5\u0000\uC0F9\u0000\uEEBF\u0000\u0000" + // 6160 - 6169
"\u0000\u0000\u0000\u0000\u0000\u0000\uD1F2\u0000\uC7BC\u0000" + // 6170 - 6179
"\uC3C0\u0000\u0000\u0000\u0000\u0000\uB8E1\u0000\u0000\u0000" + // 6180 - 6189
"\u0000\u0000\uC1E7\u0000\u0000\uF4C6\uD0DF\uF4C7\uB4E4\uF4E4" + // 6190 - 6199
"\u0000\u0000\u0000\uF4E3\uF4E5\u0000\u0000\uF4E6\u0000\u0000" + // 6200 - 6209
"\u0000\u0000\uF4E7\u0000\uBAB2\uB0BF\u0000\uF4E8\u0000\u0000" + // 6210 - 6219
"\u0000\u0000\u0000\u0000\u0000\uB7AD\uD2ED\u0000\u0000\u0000" + // 6220 - 6229
"\uD1A2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF1B2\u0000" + // 6230 - 6239
"\u0000\u0000\uF1B3\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6240 - 6249
"\u0000\uB9EF\u0000\u0000\uB5C7\u0000\uB0D7\uB0D9\u0000\uEEB8" + // 6250 - 6259
"\uB0D5\u0000\u0000\u0000\u0000\u0000\uEEBB\uD5D6\uD7EF\u0000" + // 6260 - 6269
"\u0000\u0000\uD6C3\u0000\u0000\uEEBD\uCAF0\u0000\uEEBC\u0000" + // 6270 - 6279
"\u0000\u0000\u0000\uEEBE\u0000\u0000\u0000\u0000\uEEC0\u0000" + // 6280 - 6289
"\uB7B1\u0000\u0000\u0000\u0000\u0000\uF4ED\u0000\u0000\u0000" + // 6290 - 6299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6300 - 6309
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6310 - 6319
"\u0000\u0000\uCAEF\u0000\uEAD6\uEAD7\uC6D8\u0000\u0000\uCAB8" + // 6320 - 6329
"\uD2D3\u0000\uD6AA\u0000\uEFF2\u0000\uBED8\u0000\uBDC3\uEFF3" + // 6330 - 6339
"\uB6CC\uB0AB\u0000\u0000\u0000\u0000\uCAAF\u0000\u0000\uEDB6" + // 6340 - 6349
"\u0000\uEDB7\u0000\u0000\u0000\u0000\uCEF9\uB7AF\uBFF3\uB2F8" + // 6350 - 6359
"\uE7CA\uE7CB\uE7CC\uE7CD\uE7CE\uE7CF\uE7D0\uD3A7\uCBF5\uE7D1" + // 6360 - 6369
"\uE7D2\uE7D3\uE7D4\uC9C9\uE7D5\uE7D6\uE7D7\uE7D8\uE7D9\uBDC9" + // 6370 - 6379
"\uE7DA\uF3BE\u0000\uB8D7\u0000\uC8B1\u0000\u0000\u0000\u0000" + // 6380 - 6389
"\u0000\uBDA1\u0000\u0000\u0000\u0000\u0000\u0000\uD9CC\u0000" + // 6390 - 6399
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC5BC\uCDB5" + // 6400 - 6409
"\u0000\u0000\u0000\uD9CD\u0000\u0000\uD9C7\uB3A5\uD7BA\uE7BB" + // 6410 - 6419
"\uE7BC\uE7BD\uBCEA\uC3E5\uC0C2\uE7BE\uE7BF\uBCA9\u0000\uE7C0" + // 6420 - 6429
"\uE7C1\uE7B6\uB6D0\uE7C2\u0000\uE7C3\uE7C4\uBBBA\uB5DE\uC2C6" + // 6430 - 6439
"\uB1E0\uE7C5\uD4B5\uE7C6\uB8BF\uE7C8\uE7C7\uB7EC\u0000\uE7C9" + // 6440 - 6449
"\uE7AE\uE7AF\uBEEE\uD0E5\u0000\uCBE7\uCCD0\uBCCC\uE7B0\uBCA8" + // 6450 - 6459
"\uD0F7\uE7B1\u0000\uD0F8\uE7B2\uE7B3\uB4C2\uE7B4\uE7B5\uC9FE" + // 6460 - 6469
"\uCEAC\uC3E0\uE7B7\uB1C1\uB3F1\u0000\uE7B8\uE7B9\uD7DB\uD5C0" + // 6470 - 6479
"\uE7BA\uC2CC\uE7A4\uE7A5\uE7A6\uC1B7\uD7E9\uC9F0\uCFB8\uD6AF" + // 6480 - 6489
"\uD6D5\uE7A7\uB0ED\uE7A8\uE7A9\uC9DC\uD2EF\uBEAD\uE7AA\uB0F3" + // 6490 - 6499
"\uC8DE\uBDE1\uE7AB\uC8C6\u0000\uE7AC\uBBE6\uB8F8\uD1A4\uE7AD" + // 6500 - 6509
"\uC2E7\uBEF8\uBDCA\uCDB3\uBEC0\uE6FA\uBAEC\uE6FB\uCFCB\uE6FC" + // 6510 - 6519
"\uD4BC\uBCB6\uE6FD\uE6FE\uBCCD\uC8D2\uCEB3\uE7A1\u0000\uB4BF" + // 6520 - 6529
"\uE7A2\uC9B4\uB8D9\uC4C9\u0000\uD7DD\uC2DA\uB7D7\uD6BD\uCEC6" + // 6530 - 6539
"\uB7C4\u0000\u0000\uC5A6\uE7A3\uCFDF\uCBD8\u0000\uCBF7\u0000" + // 6540 - 6549
"\u0000\u0000\u0000\uBDF4\u0000\u0000\u0000\uD7CF\u0000\u0000" + // 6550 - 6559
"\u0000\uC0DB\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6560 - 6569
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7D0\u0000" + // 6570 - 6579
"\u0000\uB2CD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6580 - 6589
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB9E0\u0000\u0000" + // 6590 - 6599
"\uE5B0\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6600 - 6609
"\u0000\u0000\u0000\u0000\u0000\uE5B1\u0000\uB4DB\u0000\u0000" + // 6610 - 6619
"\u0000\uF3F6\uF3F7\u0000\u0000\u0000\uF3F8\u0000\u0000\u0000" + // 6620 - 6629
"\uC0BA\u0000\u0000\uC0E9\u0000\u0000\u0000\u0000\u0000\uC5F1" + // 6630 - 6639
"\u0000\u0000\u0000\u0000\uF3FB\u0000\uF3FA\u0000\uF4D6\u0000" + // 6640 - 6649
"\u0000\u0000\uF4DB\u0000\uF4D7\uF4DA\u0000\uBAFD\u0000\uF4D8" + // 6650 - 6659
"\uF4D9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB8E2\uCCC7" + // 6660 - 6669
"\uF4DC\u0000\uB2DA\u0000\u0000\uC3D3\u0000\u0000\uD4E3\uBFB7" + // 6670 - 6679
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF4DD\u0000\u0000" + // 6680 - 6689
"\u0000\u0000\u0000\u0000\uC5B4\u0000\u0000\u0000\u0000\u0000" + // 6690 - 6699
"\u0000\u0000\u0000\uF4E9\u0000\u0000\uCFB5\u0000\u0000\u0000" + // 6700 - 6709
"\u0000\uE2B9\uE2B7\u0000\uB4F3\u0000\uCCEC\uCCAB\uB7F2\u0000" + // 6710 - 6719
"\uD8B2\uD1EB\uBABB\u0000\uCAA7\u0000\u0000\uCDB7\u0000\u0000" + // 6720 - 6729
"\uD2C4\uBFE4\uBCD0\uB6E1\u0000\uDEC5\u0000\u0000\u0000\uEEB6" + // 6730 - 6739
"\u0000\u0000\uBDAE\u0000\u0000\u0000\u0000\uF1E2\u0000\u0000" + // 6740 - 6749
"\u0000\uCAE8\u0000\uD2C9\uF0DA\u0000\uF0DB\u0000\uF0DC\uC1C6" + // 6750 - 6759
"\u0000\uB8ED\uBECE\u0000\u0000\uF0DE\u0000\uC5B1\uF4A6\uF4A5" + // 6760 - 6769
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6770 - 6779
"\u0000\uBCAE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6780 - 6789
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6790 - 6799
"\uF6C6\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6800 - 6809
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7D1\u0000" + // 6810 - 6819
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6820 - 6829
"\u0000\u0000\u0000\u0000\u0000\u0000\uA8AD\u0000\u0000\u0000" + // 6830 - 6839
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6840 - 6849
"\u0000\u0000\u0000\u0000\u0000\uD0F5\u0000\u0000\u0000\u0000" + // 6850 - 6859
"\u0000\u0000\u0000\u0000\uF4EA\u0000\u0000\u0000\u0000\u0000" + // 6860 - 6869
"\u0000\u0000\u0000\uA1A6\u0000\uA1A5\u0000\u0000\u0000\u0000" + // 6870 - 6879
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6880 - 6889
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uA1D0\u0000" + // 6890 - 6899
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6900 - 6909
"\u0000\u0000\uA8A9\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6910 - 6919
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 6920 - 6929
"\u0000\u0000\u0000\uA6A1\uA6A2\uA6A3\uA6A4\uA6A5\uA6A6\uA6A7" + // 6930 - 6939
"\uA6A8\uA6A9\uA6AA\uA6AB\uA6AC\uA6AD\uA6AE\uA6AF\uBCF2\u0000" + // 6940 - 6949
"\u0000\u0000\u0000\uF3EB\u0000\u0000\u0000\u0000\u0000\u0000" + // 6950 - 6959
"\u0000\uB9BF\u0000\u0000\uF3E4\u0000\u0000\u0000\uB2AD\uBBFE" + // 6960 - 6969
"\u0000\uCBE3\u0000\u0000\u0000\u0000\uF3ED\uF3E9\u0000\u0000" + // 6970 - 6979
"\uD4ED\u0000\uB5C4\u0000\uBDD4\uBBCA\uF0A7\u0000\u0000\uB8DE" + // 6980 - 6989
"\u0000\u0000\uF0A8\u0000\u0000\uB0A8\u0000\uF0A9\u0000\u0000" + // 6990 - 6999
"\uCDEE\u0000\u0000\uF0AA\u0000\u0000\u0000\u0000\u0000\u0000" + // 7000 - 7009
"\uC5B3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7010 - 7019
"\u0000\u0000\u0000\u0000\u0000\uE3C2\u0000\u0000\u0000\u0000" + // 7020 - 7029
"\u0000\u0000\u0000\u0000\u0000\uDCB2\uF3DE\u0000\uF3E1\u0000" + // 7030 - 7039
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7040 - 7049
"\uF3DF\u0000\u0000\uF3E3\uF3E2\u0000\u0000\uF3DB\u0000\uBFEA" + // 7050 - 7059
"\u0000\uB3EF\u0000\uF3E0\u0000\u0000\uC7A9\u0000\uB9DC\uF3EE" + // 7060 - 7069
"\u0000\u0000\u0000\uF3E5\uF3E6\uF3EA\uC2E1\uF3EC\uF3EF\uF3E8" + // 7070 - 7079
"\uBCFD\u0000\u0000\u0000\uCFE4\u0000\u0000\uF3F0\u0000\u0000" + // 7080 - 7089
"\u0000\uF3E7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uECFB" + // 7090 - 7099
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7100 - 7109
"\u0000\uECFC\u0000\u0000\u0000\u0000\u0000\uD3ED\uD8AE\uC0EB" + // 7110 - 7119
"\u0000\uC7DD\uBACC\u0000\uF3F2\u0000\u0000\u0000\u0000\uD7AD" + // 7120 - 7129
"\uC6AA\u0000\u0000\u0000\u0000\uF3F3\u0000\u0000\u0000\u0000" + // 7130 - 7139
"\uF3F1\u0000\uC2A8\u0000\u0000\u0000\u0000\u0000\uB8DD\uF3F5" + // 7140 - 7149
"\u0000\u0000\uF3F4\u0000\u0000\uD3DB\u0000\u0000\uD6D1\uC5E8" + // 7150 - 7159
"\u0000\uD3AF\u0000\uD2E6\u0000\u0000\uEEC1\uB0BB\uD5B5\uD1CE" + // 7160 - 7169
"\uBCE0\uBAD0\u0000\uBFF8\u0000\uB8C7\uB5C1\uC5CC\u0000\u0000" + // 7170 - 7179
"\uCAA2\u0000\u0000\u0000\uC3CB\uF3D2\u0000\u0000\u0000\uF3D4" + // 7180 - 7189
"\uF3D3\uB7FB\u0000\uB1BF\u0000\uF3CE\uF3CA\uB5DA\u0000\uF3D0" + // 7190 - 7199
"\u0000\u0000\uF3D1\u0000\uF3D5\u0000\u0000\u0000\u0000\uF3CD" + // 7200 - 7209
"\u0000\uBCE3\u0000\uC1FD\u0000\uF3D6\u0000\uBDB8\u0000\u0000" + // 7210 - 7219
"\u0000\uEDE2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7220 - 7229
"\u0000\u0000\u0000\u0000\u0000\uEDE4\u0000\u0000\u0000\u0000" + // 7230 - 7239
"\u0000\u0000\u0000\u0000\u0000\u0000\uEDE6\u0000\uCBAF\uEEA1" + // 7240 - 7249
"\uB6BD\u0000\uEEA2\uC4C0\u0000\uEDFE\u0000\u0000\uBDDE\uB2C7" + // 7250 - 7259
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7260 - 7269
"\u0000\u0000\uB6C3\u0000\u0000\u0000\uEEA5\uD8BA\uEEA3\uD5C2" + // 7270 - 7279
"\u0000\u0000\uBFA2\u0000\uCDAF\uF1B5\u0000\u0000\u0000\u0000" + // 7280 - 7289
"\u0000\u0000\uBDDF\u0000\uB6CB\u0000\u0000\u0000\u0000\u0000" + // 7290 - 7299
"\u0000\u0000\u0000\u0000\uD6F1\uF3C3\u0000\u0000\uF3C4\u0000" + // 7300 - 7309
"\uB8CD\uF1BD\u0000\u0000\u0000\u0000\uBFFA\uF1BC\u0000\uF1BF" + // 7310 - 7319
"\u0000\u0000\u0000\uF1BE\uF1C0\u0000\u0000\u0000\u0000\u0000" + // 7320 - 7329
"\uF1C1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7330 - 7339
"\u0000\u0000\uC1FE\uF1B8\uCDBB\u0000\uC7D4\uD5AD\u0000\uF1B9" + // 7340 - 7349
"\u0000\uF1BA\u0000\u0000\u0000\u0000\uC7CF\u0000\u0000\u0000" + // 7350 - 7359
"\uD2A4\uD6CF\u0000\u0000\uF1BB\uBDD1\uB4B0\uBEBD\u0000\u0000" + // 7360 - 7369
"\u0000\uB4DC\uCED1\u0000\uBFDF\uB3ED\u0000\u0000\uF6D5\u0000" + // 7370 - 7379
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7380 - 7389
"\u0000\u0000\u0000\u0000\uCEC8\u0000\u0000\u0000\uF0A2\u0000" + // 7390 - 7399
"\uF0A1\u0000\uB5BE\uBCDA\uBBFC\u0000\uB8E5\uCFA1\u0000\uEFFC" + // 7400 - 7409
"\uEFFB\u0000\u0000\uEFF9\u0000\u0000\u0000\u0000\uB3CC\u0000" + // 7410 - 7419
"\uC9D4\uCBB0\u0000\u0000\u0000\u0000\u0000\uEFFE\u0000\u0000" + // 7420 - 7429
"\uB0DE\u0000\u0000\uD6C9\u0000\u0000\u0000\uEFFD\u0000\uB4C5" + // 7430 - 7439
"\u0000\u0000\u0000\uB0F5\u0000\u0000\u0000\uEDDF\uC0DA\uB4E8" + // 7440 - 7449
"\u0000\u0000\u0000\u0000\uC5CD\u0000\u0000\u0000\uEDDD\uBFC4" + // 7450 - 7459
"\u0000\u0000\u0000\uEDDE\u0000\u0000\u0000\u0000\u0000\u0000" + // 7460 - 7469
"\uEDB0\u0000\uB8EA\u0000\uCEEC\uEAA7\uD0E7\uCAF9\uC8D6\uCFB7" + // 7470 - 7479
"\uB3C9\uCED2\uBDE4\u0000\u0000\uE3DE\uBBF2\uEAA8\uD5BD\u0000" + // 7480 - 7489
"\uC6DD\uEAA9\u0000\u0000\u0000\uEAAA\uD0E3\uCBBD\u0000\uCDBA" + // 7490 - 7499
"\u0000\u0000\uB8D1\u0000\u0000\uB1FC\u0000\uC7EF\u0000\uD6D6" + // 7500 - 7509
"\u0000\u0000\u0000\uBFC6\uC3EB\u0000\u0000\uEFF5\u0000\u0000" + // 7510 - 7519
"\uC3D8\u0000\u0000\u0000\u0000\u0000\u0000\uD7E2\uD9F7\uBDFB" + // 7520 - 7529
"\u0000\u0000\uC2BB\uECF8\u0000\u0000\u0000\u0000\uECF9\u0000" + // 7530 - 7539
"\u0000\u0000\u0000\uB8A3\u0000\u0000\u0000\u0000\u0000\u0000" + // 7540 - 7549
"\u0000\u0000\u0000\u0000\uECFA\u0000\u0000\u0000\u0000\u0000" + // 7550 - 7559
"\uA8C5\uA8C6\uA8C7\uA8C8\uA8C9\uA8CA\uA8CB\uA8CC\uA8CD\uA8CE" + // 7560 - 7569
"\uA8CF\uA8D0\uA8D1\uA8D2\uA8D3\uA8D4\uA8D5\uA8D6\uA8D7\uA8D8" + // 7570 - 7579
"\uA8D9\uA8DA\uA8DB\uA8DC\uA8DD\uA8DE\uA8DF\uECF4\u0000\uECF2" + // 7580 - 7589
"\u0000\u0000\uCFE9\u0000\uECF6\uC6B1\u0000\u0000\u0000\u0000" + // 7590 - 7599
"\uBCC0\u0000\uECF5\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7600 - 7609
"\uB5BB\uBBF6\u0000\uECF7\u0000\u0000\u0000\u0000\u0000\uA1EF" + // 7610 - 7619
"\uA1EE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7620 - 7629
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7630 - 7639
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7640 - 7649
"\uFEEE\uFEF4\u0000\uEDD8\u0000\uEDD9\u0000\uEDDC\u0000\uB1CC" + // 7650 - 7659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC5F6\uBCEE" + // 7660 - 7669
"\uEDDA\uCCBC\uB2EA\u0000\u0000\u0000\u0000\uEDDB\u0000\u0000" + // 7670 - 7679
"\u0000\u0000\uC4EB\u0000\uCAA1\u0000\u0000\uEDED\u0000\u0000" + // 7680 - 7689
"\uEDF0\uEDF1\uC3BC\u0000\uBFB4\u0000\uEDEE\u0000\u0000\u0000" + // 7690 - 7699
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uEDF4\uEDF2" + // 7700 - 7709
"\u0000\u0000\u0000\u0000\uD5E6\uECEB\uC6EE\u0000\u0000\u0000" + // 7710 - 7719
"\u0000\uECEC\u0000\uC6ED\uECED\u0000\u0000\u0000\u0000\u0000" + // 7720 - 7729
"\u0000\u0000\u0000\u0000\uECF0\u0000\u0000\uD7E6\uECF3\u0000" + // 7730 - 7739
"\u0000\uECF1\uECEE\uECEF\uD7A3\uC9F1\uCBEE\uB4A1\u0000\u0000" + // 7740 - 7749
"\u0000\u0000\uB9E8\u0000\uEDD0\u0000\u0000\u0000\u0000\uEDD1" + // 7750 - 7759
"\u0000\uEDCA\u0000\uEDCF\u0000\uCEF8\u0000\u0000\uCBB6\uEDCC" + // 7760 - 7769
"\uEDCD\u0000\u0000\u0000\u0000\u0000\uCFF5\u0000\u0000\uC1A1" + // 7770 - 7779
"\uF0EB\uF0EE\u0000\uF0ED\uF0F0\uF0EC\u0000\uBBBE\uF0EF\u0000" + // 7780 - 7789
"\u0000\u0000\u0000\uCCB5\uF0F2\u0000\u0000\uB3D5\u0000\u0000" + // 7790 - 7799
"\u0000\u0000\uB1D4\u0000\u0000\uF0F3\u0000\u0000\uF0F4\uEDB8" + // 7800 - 7809
"\uC2EB\uC9B0\u0000\u0000\u0000\u0000\u0000\u0000\uEDB9\u0000" + // 7810 - 7819
"\u0000\uC6F6\uBFB3\u0000\u0000\u0000\uEDBC\uC5F8\u0000\uD1D0" + // 7820 - 7829
"\u0000\uD7A9\uEDBA\uEDBB\u0000\uD1E2\u0000\uEDBF\uEDC0\u0000" + // 7830 - 7839
"\uEDC4\uEEAA\u0000\uDEAB\u0000\u0000\uC6B3\u0000\uC7C6\u0000" + // 7840 - 7849
"\uD6F5\uB5C9\u0000\uCBB2\u0000\u0000\u0000\uEEAB\u0000\u0000" + // 7850 - 7859
"\uCDAB\u0000\uEEAC\u0000\u0000\u0000\u0000\u0000\uD5B0\u0000" + // 7860 - 7869
"\uEEAD\u0000\uF6C4\uEEA6\u0000\u0000\u0000\uC3E9\uB3F2\u0000" + // 7870 - 7879
"\u0000\u0000\u0000\u0000\u0000\uEEA7\uEEA4\uCFB9\u0000\u0000" + // 7880 - 7889
"\uEEA8\uC2F7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7890 - 7899
"\u0000\u0000\u0000\u0000\uEEA9\uD7C5\uD5F6\u0000\uEDFC\u0000" + // 7900 - 7909
"\u0000\u0000\uEDFB\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7910 - 7919
"\u0000\uEDF9\uEDFA\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 7920 - 7929
"\u0000\uEDFD\uBEA6\u0000\u0000\u0000\u0000\uC8C0\u0000\u0000" + // 7930 - 7939
"\u0000\u0000\u0000\u0000\uCABF\uC8C9\u0000\uD7B3\u0000\uC9F9" + // 7940 - 7949
"\u0000\u0000\uBFC7\u0000\u0000\uBAF8\u0000\u0000\uD2BC\u0000" + // 7950 - 7959
"\u0000\u0000\u0000\u0000\u0000\u0000\uB2C9\u0000\uD3D4\uCACD" + // 7960 - 7969
"\u0000\uC0EF\uD6D8\uD2B0\uC1BF\u0000\uBDF0\u0000\u0000\u0000" + // 7970 - 7979
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB8AA\u0000\u0000" + // 7980 - 7989
"\u0000\uC7F2\u0000\uC0C5\uC0ED\u0000\u0000\uC1F0\uE7F0\u0000" + // 7990 - 7999
"\u0000\u0000\u0000\uE7F6\uCBF6\u0000\u0000\u0000\u0000\u0000" + // 8000 - 8009
"\u0000\u0000\u0000\u0000\uE8A2\uE8A1\u0000\u0000\u0000\u0000" + // 8010 - 8019
"\uDCA8\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uCBFA\uEBF3" + // 8020 - 8029
"\u0000\u0000\u0000\uCBDC\u0000\u0000\uCBFE\u0000\u0000\u0000" + // 8030 - 8039
"\uCCC1\u0000\u0000\u0000\u0000\u0000\uC8FB\u0000\uE8A3\u0000" + // 8040 - 8049
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8050 - 8059
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8A6\u0000" + // 8060 - 8069
"\uE8A5\u0000\uE8A7\uBAF7\uE7F8\uE8A4\u0000\uC8F0\uC9AA\uC3DF" + // 8070 - 8079
"\u0000\uEDF3\u0000\u0000\u0000\uEDF6\u0000\uD5A3\uD1A3\u0000" + // 8080 - 8089
"\u0000\u0000\uEDF5\u0000\uC3D0\u0000\u0000\u0000\u0000\u0000" + // 8090 - 8099
"\uEDF7\uBFF4\uBEEC\uEDF8\u0000\uCCF7\u0000\uD1DB\u0000\u0000" + // 8100 - 8109
"\u0000\uC8BC\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8110 - 8119
"\u0000\u0000\uC1C7\u0000\u0000\u0000\u0000\u0000\uECDC\uD1E0" + // 8120 - 8129
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8130 - 8139
"\uE6D2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8140 - 8149
"\u0000\u0000\u0000\uE6D4\uE6D3\u0000\u0000\u0000\u0000\u0000" + // 8150 - 8159
"\u0000\u0000\u0000\uF6C8\u0000\u0000\u0000\u0000\u0000\u0000" + // 8160 - 8169
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8170 - 8179
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBCF8\u0000\u0000" + // 8180 - 8189
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC4D2" + // 8190 - 8199
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE0EC" + // 8200 - 8209
"\u0000\u0000\uE0ED\u0000\u0000\uC7F4\uCBC4\u0000\uE0EE\uBBD8" + // 8210 - 8219
"\uD8B6\uF1A5\u0000\u0000\uF1AA\u0000\u0000\u0000\u0000\u0000" + // 8220 - 8229
"\u0000\u0000\u0000\uB0A9\uF1AD\u0000\u0000\u0000\u0000\u0000" + // 8230 - 8239
"\u0000\uF1AF\u0000\uF1B1\u0000\u0000\u0000\u0000\u0000\uF1B0" + // 8240 - 8249
"\u0000\uF1AE\u0000\uE2A4\uE2A9\u0000\u0000\uE2AB\u0000\u0000" + // 8250 - 8259
"\u0000\uD0C9\uD6ED\uC3A8\uE2AC\u0000\uCFD7\u0000\u0000\uE2AE" + // 8260 - 8269
"\u0000\u0000\uBAEF\u0000\u0000\uE9E0\uE2AD\uE2AA\u0000\u0000" + // 8270 - 8279
"\u0000\u0000\uBBAB\uD4B3\uF1A4\u0000\uF1A3\u0000\uC1F6\uF0FB" + // 8280 - 8289
"\uCADD\u0000\u0000\uB4F1\uB1F1\uCCB1\u0000\uF1A6\u0000\u0000" + // 8290 - 8299
"\uF1A7\u0000\u0000\uF1AC\uD5CE\uF1A9\u0000\u0000\uC8B3\u0000" + // 8300 - 8309
"\u0000\u0000\uF1A2\u0000\uF1AB\uF1A8\uF0F6\uB4E1\u0000\uF0F1" + // 8310 - 8319
"\u0000\uF0F7\u0000\u0000\u0000\u0000\uF0FA\u0000\uF0F8\u0000" + // 8320 - 8329
"\u0000\u0000\uF0F5\u0000\u0000\u0000\u0000\uF0FD\u0000\uF0F9" + // 8330 - 8339
"\uF0FC\uF0FE\u0000\uF1A1\u0000\u0000\u0000\uCEC1\uF0DD\uD1F1" + // 8340 - 8349
"\u0000\uF0E0\uB0CC\uBDEA\u0000\u0000\u0000\u0000\u0000\uD2DF" + // 8350 - 8359
"\uF0DF\u0000\uB4AF\uB7E8\uF0E6\uF0E5\uC6A3\uF0E1\uF0E2\uB4C3" + // 8360 - 8369
"\u0000\u0000\uF0E3\uD5EE\u0000\u0000\uCCDB\uBED2\uBCB2\u0000" + // 8370 - 8379
"\uE1FB\u0000\uE1FD\u0000\u0000\u0000\u0000\u0000\u0000\uE2A5" + // 8380 - 8389
"\u0000\u0000\u0000\uC1D4\u0000\u0000\u0000\u0000\uE2A3\u0000" + // 8390 - 8399
"\uE2A8\uB2FE\uE2A2\u0000\u0000\u0000\uC3CD\uB2C2\uE2A7\uE2A6" + // 8400 - 8409
"\u0000\uC1F7\u0000\uE4A4\u0000\uC7B3\uBDAC\uBDBD\uE4A5\u0000" + // 8410 - 8419
"\uD7C7\uB2E2\u0000\uE4AB\uBCC3\uE4AF\u0000\uBBEB\uE4B0\uC5A8" + // 8420 - 8429
"\uE4B1\u0000\u0000\u0000\u0000\uD5E3\uBFA3\u0000\uE4BA\u0000" + // 8430 - 8439
"\uE4B7\u0000\uCFF0\u0000\u0000\u0000\uE9CD\u0000\u0000\u0000" + // 8440 - 8449
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB3F7\u0000" + // 8450 - 8459
"\u0000\u0000\u0000\u0000\u0000\u0000\uE9D6\u0000\u0000\uE9DA" + // 8460 - 8469
"\u0000\u0000\u0000\uC6D4\uE0F4\u0000\uD4B2\u0000\uC8A6\uE0F6" + // 8470 - 8479
"\uE0F5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8480 - 8489
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE0F7\u0000" + // 8490 - 8499
"\u0000\uCDC1\uEEAF\u0000\u0000\u0000\u0000\uB3A9\u0000\u0000" + // 8500 - 8509
"\uEEB2\u0000\u0000\uEEB1\uBDE7\u0000\uEEB0\uCEB7\u0000\u0000" + // 8510 - 8519
"\u0000\u0000\uC5CF\u0000\u0000\u0000\u0000\uC1F4\uDBCE\uEEB3" + // 8520 - 8529
"\uD0F3\u0000\u0000\u0000\uE5AC\u0000\u0000\u0000\u0000\u0000" + // 8530 - 8539
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8540 - 8549
"\u0000\u0000\uE5AF\u0000\u0000\u0000\uE5AE\u0000\u0000\u0000" + // 8550 - 8559
"\u0000\u0000\u0000\uD9D3\uD9D8\u0000\u0000\u0000\uD9D9\u0000" + // 8560 - 8569
"\u0000\u0000\u0000\u0000\u0000\uC8E5\u0000\u0000\u0000\u0000" + // 8570 - 8579
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uA8B1" + // 8580 - 8589
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8590 - 8599
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8600 - 8609
"\uC6D9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE5AB" + // 8610 - 8619
"\uE5AD\u0000\u0000\u0000\u0000\uC7DA\u0000\u0000\u0000\u0000" + // 8620 - 8629
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDBC4\u0000\u0000" + // 8630 - 8639
"\u0000\u0000\u0000\u0000\u0000\u0000\uD9E8\uC9D7\u0000\u0000" + // 8640 - 8649
"\u0000\uB9B4\uCEF0\uF0AD\u0000\uC6B0\uB0EA\uC8BF\u0000\uCDDF" + // 8650 - 8659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uCECD\uEAB1\u0000" + // 8660 - 8669
"\u0000\u0000\u0000\uEAB2\u0000\uC6BF\uB4C9\u0000\u0000\u0000" + // 8670 - 8679
"\u0000\u0000\u0000\u0000\uEAB3\uE8AD\uE8AE\u0000\uC1A7\u0000" + // 8680 - 8689
"\u0000\u0000\uE8AF\u0000\u0000\u0000\uE8B0\u0000\u0000\uE8AC" + // 8690 - 8699
"\u0000\uE8B4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8700 - 8709
"\u0000\u0000\u0000\uE8AB\u0000\uE8B1\u0000\uE1F1\uBFF1\uE1F0" + // 8710 - 8719
"\uB5D2\u0000\u0000\u0000\uB1B7\u0000\u0000\u0000\u0000\uE1F3" + // 8720 - 8729
"\uE1F2\u0000\uBAFC\u0000\uE1F4\u0000\u0000\u0000\u0000\uB9B7" + // 8730 - 8739
"\u0000\uBED1\u0000\u0000\u0000\u0000\uC4FC\u0000\uBDE0\u0000" + // 8740 - 8749
"\u0000\uE4A7\u0000\u0000\uE4A6\u0000\u0000\u0000\uD1F3\uE4A3" + // 8750 - 8759
"\u0000\uE4A9\u0000\u0000\u0000\uC8F7\u0000\u0000\u0000\u0000" + // 8760 - 8769
"\uCFB4\u0000\uE4A8\uE4AE\uC2E5\u0000\u0000\uB6B4\u0000\uC4A3" + // 8770 - 8779
"\u0000\u0000\u0000\u0000\u0000\u0000\uE9D8\u0000\uBAE1\u0000" + // 8780 - 8789
"\u0000\u0000\u0000\uE9C9\u0000\uD3A3\u0000\u0000\u0000\uE9D4" + // 8790 - 8799
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9D7\uE9D0\u0000" + // 8800 - 8809
"\uEACE\u0000\u0000\uCEEE\u0000\uBBDE\u0000\uB3BF\u0000\u0000" + // 8810 - 8819
"\u0000\u0000\u0000\uC6D5\uBEB0\uCEFA\u0000\u0000\u0000\uC7E7" + // 8820 - 8829
"\u0000\uBEA7\uEAD0\u0000\u0000\uD6C7\u0000\u0000\u0000\uC1C0" + // 8830 - 8839
"\u0000\uEAAC\uEAAB\u0000\uEAAE\uEAAD\u0000\u0000\u0000\u0000" + // 8840 - 8849
"\uBDD8\u0000\uEAAF\u0000\uC2BE\u0000\u0000\u0000\u0000\uB4C1" + // 8850 - 8859
"\uB4F7\u0000\u0000\uBBA7\u0000\u0000\u0000\u0000\u0000\uECE6" + // 8860 - 8869
"\uECE5\uB7BF\uD6E9\u0000\u0000\u0000\u0000\uE7ED\u0000\uE7F2" + // 8870 - 8879
"\u0000\uE7F1\u0000\u0000\u0000\uB0E0\u0000\u0000\u0000\u0000" + // 8880 - 8889
"\uE7F5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 8890 - 8899
"\u0000\u0000\u0000\u0000\uB1EF\u0000\u0000\uD4F7\u0000\u0000" + // 8900 - 8909
"\u0000\u0000\u0000\uE3BE\u0000\u0000\u0000\u0000\u0000\u0000" + // 8910 - 8919
"\u0000\u0000\uEDAD\u0000\u0000\uF0E8\uF0E7\uF0E4\uB2A1\u0000" + // 8920 - 8929
"\uD6A2\uD3B8\uBEB7\uC8AC\u0000\u0000\uF0EA\u0000\u0000\u0000" + // 8930 - 8939
"\u0000\uD1F7\u0000\uD6CC\uBADB\uF0E9\u0000\uB6BB\u0000\u0000" + // 8940 - 8949
"\uCDB4\u0000\u0000\uC6A6\u0000\uC4B5\uC0CE\u0000\u0000\u0000" + // 8950 - 8959
"\uEAF3\uC4C1\u0000\uCEEF\u0000\u0000\u0000\u0000\uEAF0\uEAF4" + // 8960 - 8969
"\u0000\u0000\uC9FC\u0000\u0000\uC7A3\u0000\u0000\u0000\uCCD8" + // 8970 - 8979
"\uCEFE\u0000\u0000\u0000\uEAF5\uEAF6\uE7EA\u0000\uE7E6\u0000" + // 8980 - 8989
"\u0000\u0000\u0000\u0000\uE7EC\uE7EB\uC9BA\u0000\u0000\uD5E4" + // 8990 - 8999
"\u0000\uE7E5\uB7A9\uE7E7\u0000\u0000\u0000\u0000\u0000\u0000" + // 9000 - 9009
"\u0000\uE7EE\u0000\u0000\u0000\u0000\uE7F3\u0000\uD4E8\u0000" + // 9010 - 9019
"\u0000\u0000\u0000\u0000\uE5A2\u0000\u0000\u0000\u0000\u0000" + // 9020 - 9029
"\u0000\u0000\u0000\u0000\u0000\u0000\uB0C4\u0000\u0000\uE5A4" + // 9030 - 9039
"\u0000\u0000\uE5A3\u0000\u0000\u0000\u0000\u0000\u0000\uD9D6" + // 9040 - 9049
"\uC9AE\u0000\u0000\u0000\u0000\uD9D5\uD9D4\uD9D7\u0000\u0000" + // 9050 - 9059
"\u0000\u0000\uCBDB\u0000\uBDA9\u0000\u0000\u0000\u0000\u0000" + // 9060 - 9069
"\uC6A7\u0000\u0000\u0000\u0000\uA1E8\u0000\u0000\uA1EC\uA1A7" + // 9070 - 9079
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uA1E3\uA1C0\u0000" + // 9080 - 9089
"\u0000\uA3A7\u0000\u0000\uA1A4\u0000\u0000\u0000\u0000\u0000" + // 9090 - 9099
"\u0000\u0000\u0000\uC9ED\uB9AA\u0000\u0000\uC7FB\u0000\u0000" + // 9100 - 9109
"\uB6E3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uCCC9\u0000" + // 9110 - 9119
"\u0000\u0000\u0000\u0000\u0000\uF4EB\u0000\u0000\u0000\u0000" + // 9120 - 9129
"\u0000\u0000\u0000\uF4EC\u0000\u0000\u0000\u0000\u0000\u0000" + // 9130 - 9139
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9140 - 9149
"\u0000\uE2B0\u0000\u0000\uE2AF\u0000\uE9E1\u0000\u0000\u0000" + // 9150 - 9159
"\u0000\uE2B1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9160 - 9169
"\uD0FA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9170 - 9179
"\uE0AC\u0000\uD4FB\u0000\uDFF7\u0000\uC5E7\u0000\uE0AD\u0000" + // 9180 - 9189
"\uD3F7\u0000\uE0B6\uE0B7\u0000\uD5B1\u0000\u0000\u0000\u0000" + // 9190 - 9199
"\u0000\u0000\u0000\u0000\uEBA4\uBAC1\u0000\u0000\u0000\uCCBA" + // 9200 - 9209
"\u0000\u0000\u0000\uEBA5\u0000\uEBA7\u0000\u0000\u0000\uEBA8" + // 9210 - 9219
"\u0000\u0000\u0000\uEBA6\u0000\u0000\uCDBF\u0000\u0000\uC4F9" + // 9220 - 9229
"\u0000\u0000\uCFFB\uC9E6\u0000\u0000\uD3BF\u0000\uCFD1\u0000" + // 9230 - 9239
"\u0000\uE4B3\u0000\uE4B8\uE4B9\uCCE9\u0000\u0000\u0000\u0000" + // 9240 - 9249
"\u0000\uCCCE\u0000\uC0D4\uE4B5\uC1B0\uE2B2\u0000\u0000\u0000" + // 9250 - 9259
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE2B3\uCCA1" + // 9260 - 9269
"\u0000\uE2B4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9270 - 9279
"\u0000\u0000\u0000\u0000\u0000\u0000\uE2B5\u0000\uB3FC\uE4E8" + // 9280 - 9289
"\u0000\u0000\u0000\u0000\uB5E1\u0000\u0000\u0000\uD7CC\u0000" + // 9290 - 9299
"\u0000\u0000\uE4E6\u0000\uBBAC\u0000\uD7D2\uCCCF\uEBF8\u0000" + // 9300 - 9309
"\uE4E4\u0000\u0000\uB9F6\u0000\u0000\u0000\uD6CD\uE4D9\uBADD" + // 9310 - 9319
"\uBDC6\u0000\u0000\u0000\u0000\u0000\u0000\uE1F5\uE1F7\u0000" + // 9320 - 9329
"\u0000\uB6C0\uCFC1\uCAA8\uE1F6\uD5F8\uD3FC\uE1F8\uE1FC\uE1F9" + // 9330 - 9339
"\u0000\u0000\uE1FA\uC0EA\u0000\uE1FE\uE2A1\uC0C7\u0000\u0000" + // 9340 - 9349
"\u0000\uC5C8\uE4D8\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9350 - 9359
"\u0000\uCDC4\uE4CF\u0000\u0000\u0000\u0000\uE4D4\uE4D5\u0000" + // 9360 - 9369
"\uBAFE\u0000\uCFE6\u0000\u0000\uD5BF\u0000\u0000\u0000\uE4D2" + // 9370 - 9379
"\uCFAC\uC0E7\u0000\u0000\uEAF7\u0000\u0000\u0000\u0000\u0000" + // 9380 - 9389
"\uB6BF\uEAF8\u0000\uEAF9\u0000\uEAFA\u0000\u0000\uEAFB\u0000" + // 9390 - 9399
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9400 - 9409
"\u0000\uEAF1\uECDB\u0000\u0000\u0000\u0000\uD4EF\u0000\uECDD" + // 9410 - 9419
"\u0000\u0000\u0000\u0000\u0000\u0000\uDBC6\u0000\u0000\u0000" + // 9420 - 9429
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uECDE\u0000\u0000" + // 9430 - 9439
"\u0000\u0000\u0000\u0000\uB4F8\uD6A1\u0000\u0000\u0000\u0000" + // 9440 - 9449
"\u0000\uCFAF\uB0EF\u0000\u0000\uE0FC\u0000\u0000\u0000\u0000" + // 9450 - 9459
"\u0000\uE1A1\uB3A3\u0000\u0000\uE0FD\uE0FE\uC3B1\u0000\u0000" + // 9460 - 9469
"\uD7C1\u0000\u0000\uE7FA\uE7F9\u0000\uE7FB\u0000\uE7F7\u0000" + // 9470 - 9479
"\uE7FE\u0000\uE7FD\u0000\uE7FC\u0000\u0000\uC1D5\uC7D9\uC5FD" + // 9480 - 9489
"\uC5C3\u0000\u0000\u0000\u0000\u0000\uC7ED\u0000\u0000\u0000" + // 9490 - 9499
"\uC0A3\u0000\uBDA6\uE4D3\u0000\u0000\uB8C8\u0000\u0000\u0000" + // 9500 - 9509
"\u0000\u0000\uE4E7\uD4B4\u0000\u0000\u0000\u0000\u0000\u0000" + // 9510 - 9519
"\u0000\uE4DB\u0000\u0000\u0000\uC1EF\u0000\u0000\uE4E9\uECDA" + // 9520 - 9529
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uECD9\u0000\u0000" + // 9530 - 9539
"\u0000\uB0BE\u0000\u0000\u0000\u0000\u0000\u0000\uECD7\u0000" + // 9540 - 9549
"\uECD8\u0000\u0000\u0000\uECE4\u0000\u0000\u0000\u0000\u0000" + // 9550 - 9559
"\u0000\uC4B7\u0000\u0000\u0000\uE6A2\uCABC\u0000\u0000\u0000" + // 9560 - 9569
"\u0000\uBDE3\uB9C3\uE6A6\uD0D5\uCEAF\u0000\u0000\uE6A9\uE6B0" + // 9570 - 9579
"\u0000\uD2A6\u0000\uBDAA\uE6AD\u0000\u0000\uE7E3\u0000\u0000" + // 9580 - 9589
"\u0000\u0000\u0000\u0000\uCDE6\u0000\uC3B5\u0000\u0000\uE7E2" + // 9590 - 9599
"\uBBB7\uCFD6\u0000\uC1E1\uE7E9\u0000\u0000\u0000\uE7E8\u0000" + // 9600 - 9609
"\u0000\uE7F4\uB2A3\u0000\u0000\u0000\u0000\uE0C4\uD0E1\u0000" + // 9610 - 9619
"\u0000\u0000\uE0BC\u0000\u0000\uE0C9\uE0CA\u0000\u0000\u0000" + // 9620 - 9629
"\uE0BE\uE0AA\uC9A4\uE0C1\u0000\uE0B2\u0000\u0000\u0000\u0000" + // 9630 - 9639
"\u0000\uCAC8\uE0C3\u0000\uE0B5\uECC3\uCBB8\uC0C3\uCCFE\u0000" + // 9640 - 9649
"\u0000\u0000\u0000\uC1D2\u0000\uECC8\u0000\u0000\u0000\u0000" + // 9650 - 9659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBAE6" + // 9660 - 9669
"\uC0D3\u0000\uD6F2\u0000\u0000\u0000\uD1CC\uECBE\u0000\u0000" + // 9670 - 9679
"\u0000\u0000\uEAC1\u0000\u0000\u0000\uC2AF\uB4B6\u0000\u0000" + // 9680 - 9689
"\u0000\uD1D7\u0000\u0000\u0000\uB3B4\u0000\uC8B2\uBFBB\uECC0" + // 9690 - 9699
"\u0000\u0000\uD6CB\u0000\u0000\uECBF\uECC1\u0000\u0000\uE4EA" + // 9700 - 9709
"\u0000\u0000\u0000\uC1CA\u0000\u0000\u0000\u0000\u0000\u0000" + // 9710 - 9719
"\uCCB6\uB3B1\u0000\u0000\u0000\uE4FB\u0000\uE4F3\u0000\u0000" + // 9720 - 9729
"\u0000\uE4FA\u0000\uE4FD\u0000\uE4FC\u0000\u0000\u0000\uECA6" + // 9730 - 9739
"\u0000\u0000\uECA7\uD0AA\u0000\uC7B8\u0000\u0000\uB8E8\u0000" + // 9740 - 9749
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9750 - 9759
"\u0000\uECA8\u0000\u0000\u0000\u0000\u0000\u0000\uA1F4\uA1F3" + // 9760 - 9769
"\u0000\u0000\u0000\uA1F0\u0000\u0000\uA1F2\uA1F1\u0000\u0000" + // 9770 - 9779
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9780 - 9789
"\u0000\u0000\u0000\u0000\uDBC7\u0000\u0000\u0000\u0000\u0000" + // 9790 - 9799
"\u0000\u0000\u0000\u0000\uB4A3\u0000\u0000\u0000\uC3AC\uF1E6" + // 9800 - 9809
"\u0000\u0000\u0000\uE5FE\uE6A5\uCDD7\u0000\u0000\uB7C1\uE5FC" + // 9810 - 9819
"\uE5FD\uE6A3\u0000\u0000\uC4DD\uE6A8\u0000\u0000\uE6A7\u0000" + // 9820 - 9829
"\u0000\u0000\u0000\u0000\u0000\uC3C3\u0000\uC6DE\u0000\u0000" + // 9830 - 9839
"\uE6AA\u0000\uC3BB\u0000\uE3E3\uC5BD\uC1A4\uC2D9\uB2D7\u0000" + // 9840 - 9849
"\uE3ED\uBBA6\uC4AD\u0000\uE3F0\uBEDA\u0000\u0000\uE3FB\uE3F5" + // 9850 - 9859
"\uBAD3\u0000\u0000\u0000\u0000\uB7D0\uD3CD\u0000\uD6CE\uD5D3" + // 9860 - 9869
"\uB9C1\uD5B4\uD1D8\uE5A9\uE5A6\u0000\u0000\u0000\u0000\u0000" + // 9870 - 9879
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE5A7\uE5AA\u0000" + // 9880 - 9889
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 9890 - 9899
"\u0000\u0000\u0000\u0000\u0000\uF2AE\uBBA2\uC2B2\uC5B0\uC2C7" + // 9900 - 9909
"\u0000\u0000\uF2AF\u0000\u0000\u0000\u0000\u0000\uD0E9\u0000" + // 9910 - 9919
"\u0000\u0000\uD3DD\u0000\uC7DF\uD2CA\uCED6\u0000\uE3E4\uE3EC" + // 9920 - 9929
"\u0000\uC9F2\uB3C1\u0000\u0000\uE3E7\u0000\u0000\uC6E3\uE3E5" + // 9930 - 9939
"\u0000\u0000\uEDB3\uE3E6\u0000\u0000\u0000\u0000\uC9B3\u0000" + // 9940 - 9949
"\uC5E6\u0000\u0000\u0000\uB9B5\uBCA4\u0000\uE5A5\u0000\u0000" + // 9950 - 9959
"\u0000\u0000\u0000\u0000\uE5A1\u0000\u0000\u0000\u0000\u0000" + // 9960 - 9969
"\u0000\u0000\uE4FE\uB1F4\u0000\u0000\u0000\u0000\u0000\u0000" + // 9970 - 9979
"\u0000\u0000\u0000\u0000\u0000\uE5A8\u0000\uEBB1\uC7E2\u0000" + // 9980 - 9989
"\uEBB3\u0000\uBAA4\uD1F5\uB0B1\uEBB2\uEBB4\u0000\u0000\u0000" + // 9990 - 9999
"\uB5AA\uC2C8\uC7E8\u0000\uEBB5\u0000\uCBAE\uE3DF\u0000\u0000" + // 10000 - 10009
"\uD3C0\u0000\u0000\u0000\u0000\uD9DB\u0000\u0000\uD2E7\u0000" + // 10010 - 10019
"\u0000\uE4DF\u0000\uE4E0\u0000\u0000\uCFAA\u0000\u0000\u0000" + // 10020 - 10029
"\u0000\uCBDD\u0000\uE4DA\uE4D1\u0000\uE4E5\u0000\uC8DC\uE4E3" + // 10030 - 10039
"\u0000\u0000\uC4E7\uE4E2\u0000\uE4E1\u0000\u0000\uC6AF\u0000" + // 10040 - 10049
"\u0000\u0000\uC6E1\u0000\u0000\uE4F5\u0000\u0000\u0000\u0000" + // 10050 - 10059
"\u0000\uC2A9\u0000\u0000\u0000\uC0EC\uD1DD\uE4EE\u0000\u0000" + // 10060 - 10069
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF6AF\u0000" + // 10070 - 10079
"\u0000\uF6B0\u0000\u0000\uF6B1\u0000\uC2B6\u0000\u0000\u0000" + // 10080 - 10089
"\u0000\u0000\uB0D4\uC5F9\u0000\u0000\u0000\u0000\uF6B2\u0000" + // 10090 - 10099
"\uC1BA\u0000\uE8E8\u0000\uC3B7\uB0F0\u0000\u0000\u0000\u0000" + // 10100 - 10109
"\u0000\u0000\u0000\u0000\uE8F4\u0000\u0000\u0000\uE8F7\u0000" + // 10110 - 10119
"\u0000\u0000\uB9A3\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10120 - 10129
"\u0000\uF2FD\u0000\u0000\uF3A7\uF3A9\uF3A4\u0000\uF2FC\u0000" + // 10130 - 10139
"\u0000\u0000\uF3AB\u0000\uF3AA\u0000\u0000\u0000\u0000\uC2DD" + // 10140 - 10149
"\u0000\u0000\uF3AE\u0000\u0000\uC9D2\u0000\u0000\u0000\uC3CE" + // 10150 - 10159
"\uCEE0\uC0E6\u0000\u0000\u0000\u0000\uCBF3\u0000\uCCDD\uD0B5" + // 10160 - 10169
"\u0000\u0000\uCAE1\u0000\uE8F3\u0000\u0000\u0000\u0000\u0000" + // 10170 - 10179
"\u0000\u0000\u0000\u0000\u0000\uF6CB\u0000\u0000\u0000\u0000" + // 10180 - 10189
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7E9\u0000\u0000" + // 10190 - 10199
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB7DB\u0000\u0000" + // 10200 - 10209
"\u0000\u0000\u0000\u0000\u0000\uF4CE\uC1A3\u0000\u0000\uC6C9" + // 10210 - 10219
"\u0000\uB4D6\uD5B3\u0000\u0000\u0000\uF4D0\uF4CF\uF4D1\uCBDA" + // 10220 - 10229
"\uC4AE\u0000\u0000\u0000\uE4ED\u0000\u0000\u0000\u0000\uE4F6" + // 10230 - 10239
"\uE4F4\uC2FE\u0000\uE4DD\u0000\uE4F0\u0000\uCAFE\u0000\uD5C4" + // 10240 - 10249
"\u0000\u0000\uE4F1\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10250 - 10259
"\uD1FA\u0000\uBBD9\uECB1\u0000\u0000\uD2E3\u0000\u0000\u0000" + // 10260 - 10269
"\u0000\u0000\uCEE3\u0000\uC4B8\u0000\uC3BF\u0000\u0000\uB6BE" + // 10270 - 10279
"\uD8B9\uB1C8\uB1CF\uB1D1\uC5FE\u0000\uB1D0\u0000\uC3AB\u0000" + // 10280 - 10289
"\u0000\u0000\u0000\u0000\uF0A5\u0000\u0000\uDCB0\u0000\u0000" + // 10290 - 10299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10300 - 10309
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10310 - 10319
"\u0000\uC3D7\uD9E1\u0000\u0000\u0000\u0000\u0000\u0000\uC0E0" + // 10320 - 10329
"\uF4CC\uD7D1\u0000\u0000\uD6B9\uD5FD\uB4CB\uB2BD\uCEE4\uC6E7" + // 10330 - 10339
"\u0000\u0000\uCDE1\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10340 - 10349
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB4F5\u0000\uCBC0" + // 10350 - 10359
"\uBCDF\u0000\u0000\u0000\uE6AF\u0000\uC0D1\u0000\u0000\uD2CC" + // 10360 - 10369
"\u0000\u0000\u0000\uBCA7\u0000\u0000\u0000\u0000\u0000\u0000" + // 10370 - 10379
"\u0000\u0000\u0000\u0000\u0000\u0000\uE6B1\u0000\uD2F6\u0000" + // 10380 - 10389
"\u0000\u0000\uD7CB\uE4DC\uC2FA\uE4DE\u0000\uC2CB\uC0C4\uC2D0" + // 10390 - 10399
"\u0000\uB1F5\uCCB2\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10400 - 10409
"\u0000\u0000\u0000\uB5CE\u0000\u0000\u0000\u0000\uE4EF\u0000" + // 10410 - 10419
"\u0000\u0000\u0000\u0000\u0000\uC1CB\u0000\uD3E8\uD5F9\u0000" + // 10420 - 10429
"\uCAC2\uB6FE\uD8A1\uD3DA\uBFF7\u0000\uD4C6\uBBA5\uD8C1\uCEE5" + // 10430 - 10439
"\uBEAE\u0000\u0000\uD8A8\u0000\uD1C7\uD0A9\u0000\u0000\u0000" + // 10440 - 10449
"\uD8BD\uC7FE\uB6C9\u0000\uD4FC\uB2B3\uE4D7\u0000\u0000\u0000" + // 10450 - 10459
"\uCEC2\u0000\uE4CD\u0000\uCEBC\u0000\uB8DB\u0000\u0000\uE4D6" + // 10460 - 10469
"\u0000\uBFCA\u0000\u0000\u0000\uD3CE\u0000\uC3EC\u0000\u0000" + // 10470 - 10479
"\u0000\u0000\u0000\uA1CD\u0000\u0000\u0000\u0000\u0000\u0000" + // 10480 - 10489
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10490 - 10499
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10500 - 10509
"\u0000\u0000\u0000\u0000\uF6CD\u0000\uE9EB\u0000\u0000\u0000" + // 10510 - 10519
"\u0000\u0000\u0000\u0000\u0000\uE9EC\u0000\u0000\u0000\u0000" + // 10520 - 10529
"\u0000\u0000\u0000\u0000\uECAF\uC5B9\uB6CE\u0000\uD2F3\u0000" + // 10530 - 10539
"\u0000\u0000\u0000\u0000\u0000\u0000\uB5EE\uE4C4\uB5AD\u0000" + // 10540 - 10549
"\u0000\uD3D9\u0000\uE4C6\u0000\u0000\u0000\u0000\uD2F9\uB4E3" + // 10550 - 10559
"\u0000\uBBB4\u0000\u0000\uC9EE\u0000\uB4BE\u0000\u0000\u0000" + // 10560 - 10569
"\uBBEC\u0000\uD1CD\u0000\uCCED\uEDB5\u0000\u0000\u0000\uBFDB" + // 10570 - 10579
"\u0000\u0000\uC7A4\uD6B4\u0000\uC0A9\uDED1\uC9A8\uD1EF\uC5A4" + // 10580 - 10589
"\uB0E7\uB3B6\uC8C5\u0000\u0000\uB0E2\u0000\u0000\uB7F6\u0000" + // 10590 - 10599
"\u0000\uC5FA\u0000\u0000\uB6F3\u0000\uD5D2\uB3D0\uB5ED\u0000" + // 10600 - 10609
"\u0000\u0000\uD7CD\uE4C0\uCFFD\uE4BF\u0000\u0000\u0000\uC1DC" + // 10610 - 10619
"\uCCCA\u0000\u0000\u0000\u0000\uCAE7\u0000\u0000\u0000\u0000" + // 10620 - 10629
"\uC4D7\u0000\uCCD4\uE4C8\u0000\u0000\u0000\uE4C7\uE4C1\u0000" + // 10630 - 10639
"\uE9E2\uE9E3\uD1EA\uE9E5\u0000\uB4F9\uE9E4\u0000\uD1B3\uCAE2" + // 10640 - 10649
"\uB2D0\u0000\uE9E8\u0000\u0000\u0000\u0000\uE9E6\uE9E7\u0000" + // 10650 - 10659
"\u0000\uD6B3\u0000\u0000\u0000\uE9E9\uE9EA\u0000\u0000\u0000" + // 10660 - 10669
"\u0000\u0000\uF7B1\u0000\u0000\u0000\u0000\u0000\uD0AC\u0000" + // 10670 - 10679
"\uB0B0\u0000\u0000\u0000\uF7B2\uF7B3\u0000\uF7B4\u0000\u0000" + // 10680 - 10689
"\u0000\uC7CA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBCEB" + // 10690 - 10699
"\uB4C4\u0000\u0000\uC3A3\uB2E7\uDCFA\u0000\uDCF2\u0000\uDCEF" + // 10700 - 10709
"\u0000\uDCFC\uDCEE\uD2F0\uB2E8\u0000\uC8D7\uC8E3\uDCFB\u0000" + // 10710 - 10719
"\uDCED\u0000\u0000\u0000\uD0C4\uE2E0\uB1D8\uD2E4\u0000\u0000" + // 10720 - 10729
"\uE2E1\u0000\u0000\uBCC9\uC8CC\u0000\uE2E3\uECFE\uECFD\uDFAF" + // 10730 - 10739
"\u0000\u0000\u0000\uE2E2\uD6BE\uCDFC\uC3A6\u0000\u0000\u0000" + // 10740 - 10749
"\uE3C3\u0000\u0000\uE9AB\u0000\u0000\u0000\u0000\u0000\u0000" + // 10750 - 10759
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10760 - 10769
"\u0000\uD0A8\u0000\u0000\uE9A5\u0000\u0000\uB3FE\u0000\u0000" + // 10770 - 10779
"\uE9AC\uC0E3\u0000\uD0A3\u0000\u0000\u0000\u0000\u0000\u0000" + // 10780 - 10789
"\u0000\uE8F2\uD6EA\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 10790 - 10799
"\uE8E0\uE8E1\u0000\u0000\u0000\uD1F9\uBACB\uB8F9\u0000\u0000" + // 10800 - 10809
"\uB8F1\uD4D4\uE8EF\u0000\uDEF4\u0000\u0000\uC9E3\uDEF3\uB0DA" + // 10810 - 10819
"\uD2A1\uB1F7\u0000\uCCAF\u0000\u0000\u0000\u0000\u0000\u0000" + // 10820 - 10829
"\u0000\uDEF0\u0000\uCBA4\u0000\u0000\u0000\uD5AA\u0000\u0000" + // 10830 - 10839
"\u0000\u0000\u0000\uDEFB\u0000\uE1EA\uD0CE\u0000\uCDAE\u0000" + // 10840 - 10849
"\uD1E5\u0000\u0000\uB2CA\uB1EB\u0000\uB1F2\uC5ED\u0000\u0000" + // 10850 - 10859
"\uD5C3\uD3B0\u0000\uE1DC\u0000\u0000\u0000\uE1DD\u0000\uD2DB" + // 10860 - 10869
"\u0000\uB3B9\uB1CB\u0000\u0000\u0000\uB4D9\uB6ED\uD9B4\u0000" + // 10870 - 10879
"\u0000\u0000\u0000\uBFA1\u0000\u0000\u0000\uD9DE\uC7CE\uC0FE" + // 10880 - 10889
"\uD9B8\u0000\u0000\u0000\u0000\u0000\uCBD7\uB7FD\u0000\uD9B5" + // 10890 - 10899
"\u0000\uD9B7\uB1A3\uD3E1\uD9B9\uE4B6\uCED0\u0000\uBBC1\uB5D3" + // 10900 - 10909
"\u0000\uC8F3\uBDA7\uD5C7\uC9AC\uB8A2\uE4CA\u0000\u0000\uE4CC" + // 10910 - 10919
"\uD1C4\u0000\u0000\uD2BA\u0000\u0000\uBAAD\u0000\u0000\uBAD4" + // 10920 - 10929
"\u0000\u0000\u0000\u0000\u0000\u0000\uE4C3\uE4BB\u0000\u0000" + // 10930 - 10939
"\uE4BD\u0000\u0000\uC6D6\u0000\u0000\uBAC6\uC0CB\u0000\u0000" + // 10940 - 10949
"\u0000\uB8A1\uE4B4\u0000\u0000\u0000\u0000\uD4A1\u0000\u0000" + // 10950 - 10959
"\uBAA3\uBDFE\u0000\u0000\u0000\uE4BC\u0000\u0000\u0000\uE3A7" + // 10960 - 10969
"\uC7C4\u0000\u0000\u0000\u0000\uCFA4\u0000\u0000\uE3A9\uBAB7" + // 10970 - 10979
"\u0000\u0000\u0000\u0000\uE3A8\u0000\uBBDA\u0000\uE3A3\u0000" + // 10980 - 10989
"\u0000\u0000\uE3A4\uE3AA\u0000\uE3A6\u0000\uCEF2\uE3F6\uC5DD" + // 10990 - 10999
"\uB2A8\uC6FC\u0000\uC4E0\u0000\u0000\uD7A2\u0000\uC0E1\uE3F9" + // 11000 - 11009
"\u0000\u0000\uE3FA\uE3FD\uCCA9\uE3F3\u0000\uD3BE\u0000\uB1C3" + // 11010 - 11019
"\uEDB4\uE3F1\uE3F2\u0000\uE3F8\uD0BA\uC6C3\uD4F3\uE3FE\u0000" + // 11020 - 11029
"\uE9C2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9C3" + // 11030 - 11039
"\u0000\uE9B3\u0000\uE9B6\u0000\uBBB1\u0000\u0000\u0000\uE9C0" + // 11040 - 11049
"\u0000\u0000\u0000\u0000\u0000\u0000\uBCF7\u0000\u0000\u0000" + // 11050 - 11059
"\uE9C4\uB3D8\uCEDB\u0000\u0000\uCCC0\u0000\u0000\u0000\uE3E8" + // 11060 - 11069
"\uE3E9\uCDF4\u0000\u0000\u0000\u0000\u0000\uCCAD\u0000\uBCB3" + // 11070 - 11079
"\u0000\uE3EA\u0000\uE3EB\u0000\u0000\uD0DA\u0000\u0000\u0000" + // 11080 - 11089
"\uC6FB\uB7DA\u0000\uE9A4\u0000\u0000\u0000\uD2CE\u0000\u0000" + // 11090 - 11099
"\u0000\u0000\u0000\uE9A3\u0000\uD6B2\uD7B5\u0000\uE9A7\u0000" + // 11100 - 11109
"\uBDB7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11110 - 11119
"\u0000\u0000\u0000\uE8FC\uCDA1\uD6AD\uC7F3\u0000\u0000\u0000" + // 11120 - 11129
"\uD9E0\uBBE3\u0000\uBABA\uE3E2\u0000\u0000\u0000\u0000\u0000" + // 11130 - 11139
"\uCFAB\u0000\u0000\u0000\uE3E0\uC9C7\u0000\uBAB9\u0000\u0000" + // 11140 - 11149
"\u0000\uD1B4\uE3E1\uC8EA\uB9AF\uBDAD\uC7B7\uB4CE\uBBB6\uD0C0" + // 11150 - 11159
"\uECA3\u0000\u0000\uC5B7\u0000\u0000\u0000\u0000\u0000\u0000" + // 11160 - 11169
"\u0000\u0000\u0000\u0000\uD3FB\u0000\u0000\u0000\u0000\uECA4" + // 11170 - 11179
"\u0000\uECA5\uC6DB\u0000\u0000\u0000\uBFEE\u0000\uE8DE\u0000" + // 11180 - 11189
"\uE8DA\uB1FA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11190 - 11199
"\u0000\u0000\uB0D8\uC4B3\uB8CC\uC6E2\uC8BE\uC8E1\u0000\u0000" + // 11200 - 11209
"\u0000\uE8CF\uE8D4\uE8D6\u0000\uB9F1\uE8D8\uD7F5\u0000\uBCF1" + // 11210 - 11219
"\uBBBB\uB5B7\u0000\u0000\u0000\uC5F5\u0000\uDEE6\u0000\u0000" + // 11220 - 11229
"\u0000\uDEE3\uBEDD\u0000\u0000\uDEDF\u0000\u0000\u0000\u0000" + // 11230 - 11239
"\uB4B7\uBDDD\u0000\u0000\uDEE0\uC4ED\u0000\u0000\u0000\u0000" + // 11240 - 11249
"\u0000\uF5BD\u0000\u0000\u0000\uF5D4\uD3BB\u0000\uB3EC\u0000" + // 11250 - 11259
"\u0000\uCCA4\u0000\u0000\u0000\u0000\uF5D6\u0000\u0000\u0000" + // 11260 - 11269
"\u0000\u0000\u0000\u0000\u0000\uF5D7\uBEE1\uF5D8\uE9D1\u0000" + // 11270 - 11279
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9DD\u0000\uE9DF" + // 11280 - 11289
"\uC3CA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11290 - 11299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11300 - 11309
"\uCFF1\u0000\u0000\u0000\u0000\u0000\u0000\uD9D2\u0000\u0000" + // 11310 - 11319
"\u0000\uC1C5\u0000\u0000\u0000\u0000\u0000\uFEFA\uA1AD\u0000" + // 11320 - 11329
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uA1EB\u0000" + // 11330 - 11339
"\uA1E4\uA1E5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uA1F9" + // 11340 - 11349
"\u0000\u0000\u0000\u0000\u0000\uD3E7\uC2A1\u0000\uDAF1\u0000" + // 11350 - 11359
"\u0000\uCBE5\u0000\uDAF2\u0000\uCBE6\uD2FE\u0000\u0000\u0000" + // 11360 - 11369
"\uB8F4\u0000\u0000\uDAF3\uB0AF\uCFB6\u0000\u0000\uD5CF\u0000" + // 11370 - 11379
"\u0000\u0000\uCAA5\u0000\u0000\u0000\u0000\uD4DA\uDBD7\uDBD9" + // 11380 - 11389
"\u0000\uDBD8\uB9E7\uDBDC\uDBDD\uB5D8\u0000\u0000\uDBDA\u0000" + // 11390 - 11399
"\u0000\u0000\u0000\u0000\uDBDB\uB3A1\uDBDF\u0000\u0000\uBBF8" + // 11400 - 11409
"\u0000\uBCAB\u0000\u0000\uB9B9\u0000\u0000\uE8C1\u0000\uCDF7" + // 11410 - 11419
"\u0000\uE8CA\u0000\u0000\u0000\u0000\uCEF6\u0000\u0000\u0000" + // 11420 - 11429
"\u0000\uD5ED\u0000\uC1D6\uE8C4\u0000\uC3B6\u0000\uB9FB\uD6A6" + // 11430 - 11439
"\uE8C8\u0000\uB3D6\uB9D2\u0000\u0000\u0000\u0000\uD6B8\uEAFC" + // 11440 - 11449
"\uB0B4\u0000\u0000\u0000\u0000\uBFE6\u0000\u0000\uCCF4\u0000" + // 11450 - 11459
"\u0000\u0000\u0000\uCDDA\u0000\u0000\u0000\uD6BF\uC2CE\u0000" + // 11460 - 11469
"\uCECE\uCCA2\uD0AE\uCCB4\u0000\u0000\u0000\uCFAD\u0000\u0000" + // 11470 - 11479
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9D5\u0000\uE9DC" + // 11480 - 11489
"\uE9DB\u0000\u0000\u0000\u0000\u0000\uE9DE\u0000\u0000\u0000" + // 11490 - 11499
"\u0000\u0000\u0000\u0000\u0000\uEEBA\u0000\u0000\u0000\u0000" + // 11500 - 11509
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11510 - 11519
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD2B3" + // 11520 - 11529
"\uB6A5\uC7EA\uF1FC\uCFEE\uCBB3\uD0EB\uE7EF\uCDE7\uB9CB\uB6D9" + // 11530 - 11539
"\uE9C6\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11540 - 11549
"\u0000\u0000\u0000\uE9CA\u0000\u0000\u0000\u0000\uE9CE\u0000" + // 11550 - 11559
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB2DB" + // 11560 - 11569
"\u0000\uE9C8\uE9AF\u0000\uB8C5\u0000\uE9AD\u0000\uD3DC\uE9B4" + // 11570 - 11579
"\uE9B5\uE9B7\u0000\u0000\u0000\uE9C7\u0000\u0000\u0000\u0000" + // 11580 - 11589
"\u0000\u0000\uC0C6\uE9C5\u0000\u0000\uE9B0\u0000\u0000\uE9BB" + // 11590 - 11599
"\uB0F1\u0000\u0000\u0000\uCFF9\u0000\u0000\u0000\u0000\u0000" + // 11600 - 11609
"\u0000\u0000\u0000\u0000\u0000\u0000\uE0EB\u0000\u0000\u0000" + // 11610 - 11619
"\u0000\u0000\u0000\u0000\uC8C2\u0000\u0000\u0000\u0000\uBDC0" + // 11620 - 11629
"\u0000\u0000\u0000\u0000\uB8F2\u0000\u0000\u0000\u0000\uF2CB" + // 11630 - 11639
"\u0000\u0000\u0000\uF2CE\uC2F9\u0000\uD5DD\uF2CC\uF2CD\uF2CF" + // 11640 - 11649
"\uF2D3\u0000\u0000\u0000\uF2D9\uD3BC\u0000\u0000\u0000\u0000" + // 11650 - 11659
"\uB6EA\u0000\uEACB\u0000\uBBCE\u0000\u0000\u0000\u0000\u0000" + // 11660 - 11669
"\u0000\u0000\uBDFA\uC9CE\u0000\u0000\uEACC\u0000\u0000\uC9B9" + // 11670 - 11679
"\uCFFE\uEACA\uD4CE\uEACD\uEACF\u0000\u0000\uCDED\u0000\u0000" + // 11680 - 11689
"\u0000\u0000\uEAC9\uE9AA\u0000\u0000\uE9B9\u0000\u0000\uE9B8" + // 11690 - 11699
"\u0000\u0000\u0000\u0000\uE9AE\u0000\u0000\uE8FA\u0000\u0000" + // 11700 - 11709
"\uE9A8\u0000\u0000\u0000\u0000\u0000\uBFAC\uE9B1\uE9BA\u0000" + // 11710 - 11719
"\u0000\uC2A5\u0000\u0000\u0000\uE0D4\uE0D3\u0000\u0000\uE0D7" + // 11720 - 11729
"\u0000\u0000\u0000\u0000\uE0DC\uE0D8\u0000\u0000\u0000\uD6F6" + // 11730 - 11739
"\uB3B0\u0000\uD7EC\u0000\uCBBB\u0000\u0000\uE0DA\u0000\uCEFB" + // 11740 - 11749
"\u0000\u0000\u0000\uBAD9\uE8FD\u0000\u0000\u0000\uE9A1\u0000" + // 11750 - 11759
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uCDD6\u0000\u0000" + // 11760 - 11769
"\uD2AC\u0000\u0000\u0000\uE9B2\u0000\u0000\u0000\u0000\uE9A9" + // 11770 - 11779
"\u0000\u0000\u0000\uB4AA\u0000\uB4BB\uCCC4\u0000\u0000\uE9A6" + // 11780 - 11789
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11790 - 11799
"\uC9AD\u0000\uE9A2\uC0E2\u0000\u0000\u0000\uBFC3\u0000\u0000" + // 11800 - 11809
"\u0000\uE8FE\uB9D7\u0000\uE8FB\u0000\u0000\u0000\uDFDB\uDFE5" + // 11810 - 11819
"\u0000\uDFD7\uDFD6\uD7C9\uDFE3\uDFE4\uE5EB\uD2A7\uDFD2\u0000" + // 11820 - 11829
"\uBFA9\u0000\uD4DB\u0000\uBFC8\uDFD4\u0000\u0000\u0000\uCFCC" + // 11830 - 11839
"\u0000\u0000\uDFDD\u0000\uD1CA\u0000\uDFDE\uBCEC\u0000\uE8F9" + // 11840 - 11849
"\u0000\u0000\u0000\u0000\u0000\u0000\uC3DE\u0000\uC6E5\u0000" + // 11850 - 11859
"\uB9F7\u0000\u0000\u0000\u0000\uB0F4\u0000\u0000\uD7D8\u0000" + // 11860 - 11869
"\u0000\uBCAC\u0000\uC5EF\u0000\u0000\u0000\u0000\u0000\u0000" + // 11870 - 11879
"\uC2F3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 11880 - 11889
"\u0000\u0000\u0000\u0000\uF4F0\u0000\u0000\u0000\uF4EF\u0000" + // 11890 - 11899
"\u0000\uC2E9\u0000\uF7E1\uF7E2\u0000\uC5D4\u0000\uECB9\uECB8" + // 11900 - 11909
"\uC2C3\uECB7\u0000\u0000\u0000\u0000\uD0FD\uECBA\u0000\uECBB" + // 11910 - 11919
"\uD7E5\u0000\u0000\uECBC\u0000\u0000\u0000\uECBD\uC6EC\u0000" + // 11920 - 11929
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC4A5\u0000\u0000" + // 11930 - 11939
"\u0000\uEDE0\u0000\u0000\u0000\u0000\u0000\uEDE1\u0000\uEDE3" + // 11940 - 11949
"\u0000\u0000\uC1D7\u0000\u0000\uBBC7\u0000\u0000\u0000\u0000" + // 11950 - 11959
"\u0000\u0000\uB3B5\uD4FE\uB9EC\uD0F9\u0000\uE9ED\uD7AA\uE9EE" + // 11960 - 11969
"\uC2D6\uC8ED\uBAE4\uE9EF\uE9F0\uE9F1\uD6E1\uE9F2\uE9F3\uE9F5" + // 11970 - 11979
"\uE9F4\uE9F6\uE9F7\uC7E1\uE9F8\uD4D8\uE9F9\uBDCE\uE8E2\uE8E3" + // 11980 - 11989
"\uE8E5\uB5B5\uE8E7\uC7C5\uE8EB\uE8ED\uBDB0\uD7AE\u0000\uE8F8" + // 11990 - 11999
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8F5\u0000" + // 12000 - 12009
"\uCDB0\uE8F6\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12010 - 12019
"\uF4BF\u0000\u0000\u0000\u0000\u0000\uF4DE\uC1BC\uBCE8\u0000" + // 12020 - 12029
"\uC9AB\uD1DE\uE5F5\u0000\u0000\u0000\u0000\uDCB3\uD2D5\u0000" + // 12030 - 12039
"\u0000\uDCB4\uB0AC\uDCB5\uE8EE\uE8EC\uB9F0\uCCD2\uE8E6\uCEA6" + // 12040 - 12049
"\uBFF2\u0000\uB0B8\uE8F1\uE8F0\u0000\uD7C0\u0000\uE8E4\u0000" + // 12050 - 12059
"\uCDA9\uC9A3\u0000\uBBB8\uBDDB\uE8EA\u0000\u0000\u0000\u0000" + // 12060 - 12069
"\u0000\u0000\u0000\u0000\u0000\u0000\uF6CA\u0000\u0000\u0000" + // 12070 - 12079
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12080 - 12089
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC7E0\uF6A6" + // 12090 - 12099
"\u0000\u0000\uBEB8\u0000\u0000\uBEB2\u0000\uB5E5\u0000\u0000" + // 12100 - 12109
"\uB7C7\u0000\uCED3\u0000\u0000\uBDEF\uB3E2\u0000\uB8AB\u0000" + // 12110 - 12119
"\uD5B6\u0000\uEDBD\u0000\uB6CF\u0000\uCBB9\uD0C2\u0000\u0000" + // 12120 - 12129
"\u0000\u0000\u0000\u0000\u0000\u0000\uB7BD\u0000\u0000\uECB6" + // 12130 - 12139
"\uCAA9\u0000\u0000\uB8D2\uC9A2\u0000\u0000\uB6D8\u0000\u0000" + // 12140 - 12149
"\u0000\u0000\uEBB8\uBEB4\u0000\u0000\u0000\uCAFD\u0000\uC7C3" + // 12150 - 12159
"\u0000\uD5FB\u0000\u0000\uB7F3\u0000\u0000\u0000\u0000\u0000" + // 12160 - 12169
"\u0000\u0000\u0000\uECE0\u0000\uD7A6\u0000\uC5C0\u0000\u0000" + // 12170 - 12179
"\u0000\uEBBC\uB0AE\u0000\u0000\u0000\uBEF4\uB8B8\uD2AF\uB0D6" + // 12180 - 12189
"\uB5F9\u0000\uD8B3\u0000\uCBAC\u0000\uE3DD\uE8D9\u0000\u0000" + // 12190 - 12199
"\u0000\u0000\uD5A4\u0000\uB1EA\uD5BB\uE8CE\uE8D0\uB6B0\uE8D3" + // 12200 - 12209
"\u0000\uE8DD\uC0B8\u0000\uCAF7\u0000\uCBA8\u0000\u0000\uC6DC" + // 12210 - 12219
"\uC0F5\u0000\u0000\u0000\u0000\u0000\uE8E9\u0000\u0000\uD4DD" + // 12220 - 12229
"\u0000\uEAD1\u0000\u0000\uCFBE\u0000\u0000\u0000\u0000\uEAD2" + // 12230 - 12239
"\u0000\u0000\u0000\u0000\uCAEE\u0000\u0000\u0000\u0000\uC5AF" + // 12240 - 12249
"\uB0B5\u0000\u0000\u0000\u0000\u0000\uEAD4\u0000\u0000\uCAE0" + // 12250 - 12259
"\uD4E6\u0000\uE8C0\u0000\uE8C5\uE8C7\u0000\uC7B9\uB7E3\u0000" + // 12260 - 12269
"\uE8C9\u0000\uBFDD\uE8D2\u0000\u0000\uE8D7\u0000\uE8D5\uBCDC" + // 12270 - 12279
"\uBCCF\uE8DB\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uEDD6" + // 12280 - 12289
"\u0000\uB5EF\u0000\u0000\uC2B5\uB0AD\uCBE9\u0000\u0000\uB1AE" + // 12290 - 12299
"\u0000\uEDD4\u0000\u0000\u0000\uCDEB\uB5E2\u0000\uEDD5\uEDD3" + // 12300 - 12309
"\uEDD7\u0000\u0000\uB5FA\uC4FB\u0000\uE8DC\u0000\u0000\uB2E9" + // 12310 - 12319
"\u0000\u0000\u0000\uE8D1\u0000\u0000\uBCED\u0000\u0000\uBFC2" + // 12320 - 12329
"\uE8CD\uD6F9\u0000\uC1F8\uB2F1\u0000\u0000\u0000\u0000\u0000" + // 12330 - 12339
"\u0000\u0000\u0000\uE8DF\u0000\uCAC1\uB8DC\uCCF5\u0000\u0000" + // 12340 - 12349
"\u0000\uC0B4\u0000\u0000\uD1EE\uE8BF\uE8C2\u0000\u0000\uBABC" + // 12350 - 12359
"\u0000\uB1AD\uBDDC\u0000\uEABD\uE8C3\u0000\uE8C6\u0000\uE8CB" + // 12360 - 12369
"\u0000\u0000\u0000\u0000\uE8CC\u0000\uCBC9\uB0E5\uC9B1\u0000" + // 12370 - 12379
"\uD4D3\uC8A8\u0000\u0000\uB8CB\u0000\uE8BE\uC9BC\u0000\u0000" + // 12380 - 12389
"\uE8BB\u0000\uC0EE\uD0D3\uB2C4\uB4E5\u0000\uE8BC\u0000\u0000" + // 12390 - 12399
"\uD5C8\u0000\u0000\u0000\u0000\u0000\uB6C5\u0000\uE8BD\uCAF8" + // 12400 - 12409
"\uD7EE\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD4C2\uD3D0" + // 12410 - 12419
"\uEBC3\uC5F3\u0000\uB7FE\u0000\u0000\uEBD4\u0000\u0000\u0000" + // 12420 - 12429
"\uCBB7\uEBDE\u0000\uC0CA\u0000\u0000\u0000\uCDFB\u0000\uB3AF" + // 12430 - 12439
"\u0000\uC6DA\uD3B3\u0000\u0000\u0000\u0000\uB4BA\u0000\uC3C1" + // 12440 - 12449
"\uD7F2\u0000\u0000\u0000\u0000\uD5D1\u0000\uCAC7\u0000\uEAC5" + // 12450 - 12459
"\u0000\u0000\uEAC4\uEAC7\uEAC6\u0000\u0000\u0000\u0000\u0000" + // 12460 - 12469
"\uD6E7\u0000\uCFD4\u0000\uEDA5\uE2FE\uCAD1\u0000\u0000\u0000" + // 12470 - 12479
"\u0000\u0000\u0000\u0000\uC1B5\u0000\uBBD0\u0000\u0000\uBFD6" + // 12480 - 12489
"\u0000\uBAE3\u0000\u0000\uCBA1\u0000\u0000\u0000\uEDA6\uEDA3" + // 12490 - 12499
"\u0000\u0000\uEDA2\u0000\u0000\uCEE6\uDEDC\u0000\uCDB1\uC0A6" + // 12500 - 12509
"\u0000\u0000\uD7BD\u0000\uDEDB\uB0C6\uBAB4\uC9D3\uC4F3\uBEE8" + // 12510 - 12519
"\u0000\u0000\u0000\u0000\uB2B6\u0000\u0000\u0000\u0000\u0000" + // 12520 - 12529
"\u0000\u0000\u0000\uC0CC\uCBF0\uEAC0\u0000\uB0BA\uEABE\u0000" + // 12530 - 12539
"\u0000\uC0A5\u0000\u0000\u0000\uEABB\u0000\uB2FD\u0000\uC3F7" + // 12540 - 12549
"\uBBE8\u0000\u0000\u0000\uD2D7\uCEF4\uEABF\u0000\u0000\u0000" + // 12550 - 12559
"\uEABC\u0000\u0000\u0000\uEAC3\u0000\uD0C7\uCEDE\u0000\uBCC8" + // 12560 - 12569
"\u0000\u0000\uC8D5\uB5A9\uBEC9\uD6BC\uD4E7\u0000\u0000\uD1AE" + // 12570 - 12579
"\uD0F1\uEAB8\uEAB9\uEABA\uBAB5\u0000\u0000\u0000\u0000\uCAB1" + // 12580 - 12589
"\uBFF5\u0000\u0000\uCDFA\u0000\u0000\u0000\u0000\u0000\u0000" + // 12590 - 12599
"\uCEA4\uC8CD\u0000\uBAAB\uE8B8\uE8B9\uE8BA\uBEC2\u0000\u0000" + // 12600 - 12609
"\u0000\u0000\u0000\uD2F4\u0000\uD4CF\uC9D8\u0000\u0000\u0000" + // 12610 - 12619
"\u0000\u0000\u0000\u0000\u0000\u0000\uA1D6\u0000\u0000\u0000" + // 12620 - 12629
"\uA1D5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12630 - 12639
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12640 - 12649
"\uF0A6\u0000\u0000\u0000\uD1A8\u0000\uBEBF\uC7EE\uF1B6\uF1B7" + // 12650 - 12659
"\uBFD5\u0000\u0000\u0000\u0000\uB4A9\uC5CA\u0000\u0000\u0000" + // 12660 - 12669
"\u0000\u0000\u0000\u0000\u0000\uDFAB\u0000\u0000\u0000\u0000" + // 12670 - 12679
"\u0000\u0000\u0000\u0000\uD4DC\u0000\u0000\u0000\u0000\u0000" + // 12680 - 12689
"\uC8C1\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8B5\uE8B2" + // 12690 - 12699
"\uE8B3\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12700 - 12709
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8B7\u0000\u0000" + // 12710 - 12719
"\u0000\u0000\u0000\u0000\uB1C4\u0000\u0000\uF5BF\u0000\u0000" + // 12720 - 12729
"\uB5C5\uB2E4\u0000\uF5EC\uF5E9\u0000\uB6D7\u0000\uF5ED\u0000" + // 12730 - 12739
"\uF5EA\u0000\u0000\u0000\u0000\u0000\uF5EB\u0000\u0000\uB4DA" + // 12740 - 12749
"\uDFA6\u0000\uC0DE\u0000\u0000\uC9C3\u0000\u0000\u0000\u0000" + // 12750 - 12759
"\u0000\u0000\u0000\uB2D9\uC7E6\u0000\uDFA7\u0000\uC7DC\u0000" + // 12760 - 12769
"\u0000\u0000\u0000\uDFA8\uEBA2\u0000\u0000\u0000\u0000\u0000" + // 12770 - 12779
"\uCBD3\u0000\uD3F9\u0000\u0000\u0000\u0000\u0000\u0000\uE1E5" + // 12780 - 12789
"\u0000\uD1AD\u0000\u0000\uE1E6\uCEA2\u0000\u0000\u0000\u0000" + // 12790 - 12799
"\u0000\u0000\uE1E7\u0000\uB5C2\u0000\u0000\u0000\u0000\uE1E8" + // 12800 - 12809
"\uBBD5\u0000\u0000\uB7F7\u0000\uD6F4\uB5A3\uB2F0\uC4B4\uC4E9" + // 12810 - 12819
"\uC0AD\uDED4\u0000\uB0E8\uC5C4\uC1E0\u0000\uB9D5\u0000\uBEDC" + // 12820 - 12829
"\uCDD8\uB0CE\u0000\uCDCF\uDED6\uBED0\uD7BE\uDED5\uD5D0\uB0DD" + // 12830 - 12839
"\u0000\u0000\uC4E2\uDEF7\uDEFA\u0000\u0000\u0000\u0000\uDEF9" + // 12840 - 12849
"\u0000\u0000\u0000\uCCC2\u0000\uB0E1\uB4EE\u0000\u0000\u0000" + // 12850 - 12859
"\u0000\u0000\u0000\uE5BA\u0000\u0000\u0000\u0000\u0000\uD0AF" + // 12860 - 12869
"\u0000\u0000\uB2EB\u0000\uEBA1\uB2F3\uB8E9\uC2A7\u0000\u0000" + // 12870 - 12879
"\uBDC1\u0000\u0000\u0000\u0000\u0000\uDEF5\uDEF8\u0000\u0000" + // 12880 - 12889
"\uB2AB\uB4A4\u0000\u0000\uB4EA\uC9A6\u0000\u0000\u0000\u0000" + // 12890 - 12899
"\u0000\u0000\uDEF6\uCBD1\u0000\uB8E3\u0000\uE1A6\uB4B1\u0000" + // 12900 - 12909
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 12910 - 12919
"\u0000\u0000\u0000\u0000\uB8C9\uC6BD\uC4EA\u0000\uB2A2\u0000" + // 12920 - 12929
"\uD0D2\u0000\uE7DB\uBBC3\uD3D7\uD3C4\u0000\uB9E3\uDEEB\uCED5" + // 12930 - 12939
"\u0000\uB4A7\u0000\u0000\u0000\u0000\u0000\uBFAB\uBEBE\u0000" + // 12940 - 12949
"\u0000\uBDD2\u0000\u0000\u0000\u0000\uDEE9\u0000\uD4AE\u0000" + // 12950 - 12959
"\uDEDE\u0000\uDEEA\u0000\u0000\u0000\u0000\uC0BF\u0000\uDEEC" + // 12960 - 12969
"\uC2D3\u0000\uCCBD\uB3B8\u0000\uBDD3\u0000\uBFD8\uCDC6\uD1DA" + // 12970 - 12979
"\uB4EB\u0000\uDEE4\uDEDD\uDEE7\u0000\uEAFE\u0000\u0000\uC2B0" + // 12980 - 12989
"\uDEE2\u0000\u0000\uD6C0\uB5A7\u0000\uB2F4\u0000\uDEE8\u0000" + // 12990 - 12999
"\uDEF2\u0000\uB1D2\uCAD0\uB2BC\u0000\uCBA7\uB7AB\u0000\uCAA6" + // 13000 - 13009
"\u0000\u0000\u0000\uCFA3\u0000\u0000\uE0F8\uD5CA\uE0FB\u0000" + // 13010 - 13019
"\u0000\uE0FA\uC5C1\uCCFB\u0000\uC1B1\uE0F9\uD6E3\uB2AF\uD6C4" + // 13020 - 13029
"\uB5DB\u0000\u0000\uE1D6\u0000\u0000\u0000\u0000\u0000\u0000" + // 13030 - 13039
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13040 - 13049
"\u0000\u0000\u0000\u0000\u0000\u0000\uE1D7\u0000\u0000\u0000" + // 13050 - 13059
"\uE1D8\u0000\u0000\uC3DD\u0000\uE1A2\uB7F9\u0000\u0000\u0000" + // 13060 - 13069
"\u0000\u0000\u0000\uBBCF\u0000\u0000\u0000\u0000\u0000\u0000" + // 13070 - 13079
"\u0000\uE1A3\uC4BB\u0000\u0000\u0000\u0000\u0000\uE1A4\u0000" + // 13080 - 13089
"\u0000\uE1A5\u0000\uB9D1\u0000\u0000\uE5BB\uC1C8\u0000\u0000" + // 13090 - 13099
"\uD5AF\u0000\u0000\u0000\u0000\u0000\uE5BC\u0000\uE5BE\u0000" + // 13100 - 13109
"\u0000\u0000\u0000\u0000\u0000\u0000\uB4E7\uB6D4\uCBC2\uD1B0" + // 13110 - 13119
"\uB5BC\u0000\u0000\uCAD9\uCFC6\u0000\uB5E0\u0000\u0000\u0000" + // 13120 - 13129
"\u0000\uB6DE\uCADA\uB5F4\uDEE5\u0000\uD5C6\u0000\uDEE1\uCCCD" + // 13130 - 13139
"\uC6FE\u0000\uC5C5\u0000\u0000\u0000\uD2B4\u0000\uBEF2\u0000" + // 13140 - 13149
"\u0000\u0000\u0000\u0000\u0000\u0000\uC6AC\uB0E6\u0000\u0000" + // 13150 - 13159
"\u0000\uC5C6\uEBB9\u0000\u0000\u0000\u0000\uEBBA\u0000\u0000" + // 13160 - 13169
"\u0000\uEBBB\u0000\u0000\uD1C0\u0000\uC5A3\u0000\uEAF2\u0000" + // 13170 - 13179
"\uC4B2\uC4D3\uB5B2\uDED8\uD5F5\uBCB7\uBBD3\u0000\u0000\uB0A4" + // 13180 - 13189
"\u0000\uC5B2\uB4EC\u0000\u0000\u0000\uD5F1\u0000\u0000\uEAFD" + // 13190 - 13199
"\u0000\u0000\u0000\u0000\u0000\u0000\uDEDA\uCDA6\u0000\u0000" + // 13200 - 13209
"\uCDEC\u0000\u0000\uDFAA\u0000\uDFA9\u0000\uB2C1\u0000\u0000" + // 13210 - 13219
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13220 - 13229
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13230 - 13239
"\u0000\u0000\u0000\u0000\u0000\u0000\uD3E3\u0000\u0000\uF6CF" + // 13240 - 13249
"\uBFD9\uC2D5\uC7C0\u0000\uBBA4\uB1A8\u0000\u0000\uC5EA\u0000" + // 13250 - 13259
"\u0000\uC5FB\uCCA7\u0000\u0000\u0000\u0000\uB1A7\u0000\u0000" + // 13260 - 13269
"\u0000\uB5D6\u0000\u0000\u0000\uC4A8\u0000\uDED3\uD1BA\uB3E9" + // 13270 - 13279
"\u0000\uC3F2\uBCBC\u0000\u0000\u0000\uB3AD\u0000\u0000\u0000" + // 13280 - 13289
"\u0000\uBEF1\uB0D1\u0000\u0000\u0000\u0000\u0000\u0000\uD2D6" + // 13290 - 13299
"\uCAE3\uD7A5\u0000\uCDB6\uB6B6\uBFB9\uD5DB\u0000\uB8A7\uC5D7" + // 13300 - 13309
"\u0000\u0000\u0000\uDED2\uCBF9\uB1E2\u0000\uECE7\u0000\u0000" + // 13310 - 13319
"\u0000\uC9C8\uECE8\uECE9\u0000\uCAD6\uDED0\uB2C5\uD4FA\u0000" + // 13320 - 13329
"\u0000\uC6CB\uB0C7\uB4F2\uC8D3\u0000\u0000\u0000\uCDD0\u0000" + // 13330 - 13339
"\u0000\uBFB8\u0000\u0000\u0000\u0000\u0000\uDEBF\u0000\u0000" + // 13340 - 13349
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC4A2" + // 13350 - 13359
"\u0000\u0000\u0000\u0000\uDEC1\u0000\u0000\u0000\u0000\u0000" + // 13360 - 13369
"\u0000\u0000\u0000\u0000\uD3FE\uCCDC\u0000\u0000\u0000\u0000" + // 13370 - 13379
"\u0000\u0000\u0000\u0000\uCAC4\u0000\u0000\u0000\u0000\u0000" + // 13380 - 13389
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uECC5\uBEE6\uCCBF" + // 13390 - 13399
"\uC5DA\uBEBC\u0000\uECC6\u0000\uB1FE\u0000\u0000\u0000\uECC4" + // 13400 - 13409
"\uD5A8\uB5E3\u0000\uECC2\uC1B6\uB3E3\u0000\u0000\uC1CC\u0000" + // 13410 - 13419
"\uDEFC\uBEEF\u0000\uC6B2\u0000\u0000\u0000\u0000\u0000\u0000" + // 13420 - 13429
"\u0000\u0000\u0000\uB3C5\uC8F6\u0000\u0000\uCBBA\uDEFE\u0000" + // 13430 - 13439
"\u0000\uDFA4\u0000\u0000\u0000\u0000\uD7B2\u0000\uD1B2\uB3B2" + // 13440 - 13449
"\u0000\u0000\uB9A4\uD7F3\uC7C9\uBEDE\uB9AE\u0000\uCED7\u0000" + // 13450 - 13459
"\u0000\uB2EE\uDBCF\u0000\uBCBA\uD2D1\uCBC8\uB0CD\u0000\u0000" + // 13460 - 13469
"\uCFEF\u0000\u0000\u0000\u0000\u0000\uD9E3\uBDED\u0000\uBCDE" + // 13470 - 13479
"\uC9A9\u0000\u0000\u0000\u0000\u0000\u0000\uBCB5\u0000\u0000" + // 13480 - 13489
"\uCFD3\u0000\u0000\u0000\u0000\u0000\uE6C8\u0000\uE6C9\u0000" + // 13490 - 13499
"\uE6CE\u0000\uE6D0\u0000\u0000\u0000\uE6D1\u0000\u0000\u0000" + // 13500 - 13509
"\uC4CB\u0000\uBEC3\u0000\uD8B1\uC3B4\uD2E5\u0000\uD6AE\uCEDA" + // 13510 - 13519
"\uD5A7\uBAF5\uB7A6\uC0D6\u0000\uC6B9\uC5D2\uC7C7\u0000\uB9D4" + // 13520 - 13529
"\u0000\uB3CB\uD2D2\u0000\u0000\uD8BF\uBEC5\uC6F2\uD2B2\uE3B3" + // 13530 - 13539
"\u0000\u0000\uE3B6\uB7DF\u0000\uE3B4\uC0A2\u0000\u0000\u0000" + // 13540 - 13549
"\uE3BA\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13550 - 13559
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13560 - 13569
"\uD4B8\uE3B8\uB3EE\u0000\u0000\u0000\u0000\uEDA9\u0000\uD3FA" + // 13570 - 13579
"\uD3E4\u0000\u0000\u0000\uEDAA\uE3B9\uD2E2\u0000\u0000\u0000" + // 13580 - 13589
"\u0000\u0000\uE3B5\u0000\u0000\u0000\u0000\uD3DE\u0000\u0000" + // 13590 - 13599
"\u0000\u0000\uB8D0\uBBDD\u0000\u0000\u0000\u0000\u0000\uB5EB" + // 13600 - 13609
"\uBEE5\uB2D2\uB3CD\u0000\uB1B9\uE3AB\uB2D1\uB5AC\uB9DF\uB6E8" + // 13610 - 13619
"\u0000\u0000\uCFEB\uE3B7\u0000\uBBCC\u0000\u0000\uC8C7\uD0CA" + // 13620 - 13629
"\u0000\u0000\u0000\u0000\u0000\u0000\uBEAF\u0000\u0000\u0000" + // 13630 - 13639
"\u0000\u0000\uC6A9\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13640 - 13649
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13650 - 13659
"\u0000\u0000\uA8A3\u0000\uA8AB\u0000\uA8AF\u0000\uA8B3\u0000" + // 13660 - 13669
"\uA8B5\u0000\uA8B6\u0000\uA8B7\u0000\uA8B8\u0000\u0000\u0000" + // 13670 - 13679
"\uB2AA\u0000\u0000\u0000\uD3C2\u0000\uC3E3\u0000\uD1AB\u0000" + // 13680 - 13689
"\u0000\u0000\u0000\uDBC2\u0000\uC0D5\u0000\u0000\u0000\uDBC3" + // 13690 - 13699
"\u0000\uBFB1\u0000\u0000\u0000\u0000\u0000\u0000\uC4BC\uD3C6" + // 13700 - 13709
"\u0000\u0000\uBBBC\u0000\u0000\uD4C3\u0000\uC4FA\u0000\u0000" + // 13710 - 13719
"\uEDA8\uD0FC\uE3A5\u0000\uC3F5\u0000\uE3AD\uB1AF\u0000\uE3B2" + // 13720 - 13729
"\u0000\u0000\u0000\uBCC2\u0000\u0000\uE3AC\uB5BF\u0000\u0000" + // 13730 - 13739
"\u0000\uB4F6\u0000\uD9CE\u0000\uD9CF\uB4A2\uD9D0\u0000\u0000" + // 13740 - 13749
"\uB4DF\u0000\u0000\u0000\u0000\u0000\uB0C1\u0000\u0000\u0000" + // 13750 - 13759
"\u0000\u0000\u0000\u0000\uD9D1\uC9B5\u0000\u0000\u0000\u0000" + // 13760 - 13769
"\u0000\uECD1\u0000\u0000\u0000\u0000\uECD3\u0000\uBBCD\u0000" + // 13770 - 13779
"\uBCE5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 13780 - 13789
"\u0000\u0000\u0000\u0000\uECCF\u0000\uC9B7\u0000\uCFBF\u0000" + // 13790 - 13799
"\u0000\uE1BD\uE1BF\uC2CD\u0000\uB6EB\u0000\uD3F8\u0000\u0000" + // 13800 - 13809
"\uC7CD\u0000\u0000\uB7E5\u0000\u0000\u0000\u0000\u0000\u0000" + // 13810 - 13819
"\u0000\u0000\u0000\u0000\uBEFE\u0000\u0000\u0000\u0000\u0000" + // 13820 - 13829
"\uF3DA\u0000\uF3CC\u0000\uB5C8\u0000\uBDEE\uF3DC\u0000\u0000" + // 13830 - 13839
"\uB7A4\uBFF0\uD6FE\uCDB2\u0000\uB4F0\u0000\uB2DF\u0000\uF3D8" + // 13840 - 13849
"\u0000\uF3D9\uC9B8\u0000\uF3DD\u0000\u0000\uE1C0\uE1C1\u0000" + // 13850 - 13859
"\u0000\uE1C7\uB3E7\u0000\u0000\u0000\u0000\u0000\u0000\uC6E9" + // 13860 - 13869
"\u0000\u0000\u0000\u0000\u0000\uB4DE\u0000\uD1C2\u0000\u0000" + // 13870 - 13879
"\u0000\u0000\uE1C8\u0000\u0000\uE1C6\u0000\uCDFE\u0000\uCDDE" + // 13880 - 13889
"\uC2A6\uE6AB\uE6AC\uBDBF\uE6AE\uE6B3\u0000\u0000\uE6B2\u0000" + // 13890 - 13899
"\u0000\u0000\u0000\uE6B6\u0000\uE6B8\u0000\u0000\u0000\u0000" + // 13900 - 13909
"\uC4EF\u0000\u0000\u0000\uC4C8\u0000\u0000\uBEEA\uB5A1\uE2F9" + // 13910 - 13919
"\u0000\u0000\u0000\uBCB1\uE2F1\uD0D4\uD4B9\uE2F5\uB9D6\uE2F6" + // 13920 - 13929
"\u0000\u0000\u0000\uC7D3\u0000\u0000\u0000\u0000\u0000\uE2F0" + // 13930 - 13939
"\u0000\u0000\u0000\u0000\u0000\uD7DC\uEDA1\u0000\u0000\uE2F8" + // 13940 - 13949
"\uBBB3\uCCAC\uCBCB\uE2E4\uE2E6\uE2EA\uE2EB\u0000\u0000\u0000" + // 13950 - 13959
"\uE2F7\u0000\u0000\uE2F4\uD4F5\uE2F3\u0000\u0000\uC5AD\u0000" + // 13960 - 13969
"\uD5FA\uC5C2\uB2C0\u0000\u0000\uE2EF\u0000\uE2F2\uC1AF\uCBBC" + // 13970 - 13979
"\u0000\u0000\uC2A3\uBCF0\u0000\uD3B5\uC0B9\uC5A1\uB2A6\uD4F1" + // 13980 - 13989
"\u0000\u0000\uC0A8\uCAC3\uDED7\uD5FC\u0000\uB9B0\u0000\uC8AD" + // 13990 - 13999
"\uCBA9\u0000\uDED9\uBFBD\u0000\u0000\u0000\u0000\uC6B4\uD7A7" + // 14000 - 14009
"\uCAB0\uC4C3\uD6D2\uE2E7\u0000\u0000\uE2E8\u0000\u0000\uD3C7" + // 14010 - 14019
"\u0000\u0000\uE2EC\uBFEC\u0000\uE2ED\uE2E5\u0000\u0000\uB3C0" + // 14020 - 14029
"\u0000\u0000\u0000\uC4EE\u0000\u0000\uE2EE\u0000\u0000\uD0C3" + // 14030 - 14039
"\u0000\uBAF6\uE2E9\uB7DE\uCDF9\uD5F7\uE1DE\u0000\uBEB6\uB4FD" + // 14040 - 14049
"\u0000\uE1DF\uBADC\uE1E0\uBBB2\uC2C9\uE1E1\u0000\u0000\u0000" + // 14050 - 14059
"\uD0EC\u0000\uCDBD\u0000\u0000\uE1E2\u0000\uB5C3\uC5C7\uE1E3" + // 14060 - 14069
"\u0000\u0000\uE1E4\u0000\u0000\u0000\uD9C8\u0000\u0000\u0000" + // 14070 - 14079
"\uBCD9\uD9CA\u0000\u0000\u0000\uD9BC\u0000\uD9CB\uC6AB\u0000" + // 14080 - 14089
"\u0000\u0000\u0000\u0000\uD9C9\u0000\u0000\u0000\u0000\uD7F6" + // 14090 - 14099
"\u0000\uCDA3\u0000\u0000\u0000\u0000\uEDE5\u0000\u0000\u0000" + // 14100 - 14109
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14110 - 14119
"\u0000\u0000\uEDE7\u0000\u0000\u0000\u0000\u0000\uCABE\uECEA" + // 14120 - 14129
"\uC0F1\u0000\uC9E7\u0000\uE1B9\u0000\u0000\uE1BB\u0000\u0000" + // 14130 - 14139
"\u0000\u0000\u0000\u0000\uE1BE\u0000\u0000\u0000\u0000\u0000" + // 14140 - 14149
"\u0000\uE1BC\u0000\u0000\u0000\u0000\u0000\u0000\uD6C5\u0000" + // 14150 - 14159
"\u0000\u0000\u0000\u0000\u0000\u0000\uCBED\u0000\u0000\u0000" + // 14160 - 14169
"\u0000\u0000\u0000\u0000\u0000\uDAF4\u0000\u0000\uE3C4\u0000" + // 14170 - 14179
"\u0000\uC1A5\u0000\u0000\uF6BF\u0000\u0000\uF6C0\uF6C1\uC4D1" + // 14180 - 14189
"\u0000\uE5F9\uC8E7\uE5FA\uCDFD\u0000\uD7B1\uB8BE\uC2E8\u0000" + // 14190 - 14199
"\uC8D1\u0000\u0000\uE5FB\u0000\u0000\u0000\u0000\uB6CA\uBCCB" + // 14200 - 14209
"\u0000\u0000\uD1FD\uE6A1\u0000\uC3EE\u0000\u0000\u0000\u0000" + // 14210 - 14219
"\uE6A4\u0000\uCECB\u0000\uCBC3\uE0CD\uE0C6\uE0C2\u0000\uE0CB" + // 14220 - 14229
"\u0000\uE0BA\uE0BF\uE0C0\u0000\u0000\uE0C5\u0000\u0000\uE0C7" + // 14230 - 14239
"\uE0C8\u0000\uE0CC\u0000\uE0BB\u0000\u0000\u0000\u0000\u0000" + // 14240 - 14249
"\uCBD4\uE0D5\u0000\uD3F5\u0000\uB3D4\uB8F7\u0000\uDFBA\u0000" + // 14250 - 14259
"\uBACF\uBCAA\uB5F5\u0000\uCDAC\uC3FB\uBAF3\uC0F4\uCDC2\uCFF2" + // 14260 - 14269
"\uDFB8\uCFC5\u0000\uC2C0\uDFB9\uC2F0\u0000\u0000\u0000\uBEFD" + // 14270 - 14279
"\u0000\uC1DF\uCDCC\uD2F7\uECB0\u0000\u0000\u0000\u0000\u0000" + // 14280 - 14289
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14290 - 14299
"\uE5E6\u0000\uB9E9\uB5B1\u0000\uC2BC\uE5E8\uE5E7\uE5E9\u0000" + // 14300 - 14309
"\u0000\u0000\u0000\uD2CD\u0000\u0000\uC2FD\u0000\u0000\u0000" + // 14310 - 14319
"\u0000\uBBDB\uBFAE\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14320 - 14329
"\uCEBF\u0000\u0000\u0000\u0000\uE3BC\u0000\uBFB6\u0000\u0000" + // 14330 - 14339
"\u0000\u0000\u0000\u0000\u0000\u0000\uB4C8\u0000\uE3BB\u0000" + // 14340 - 14349
"\uBBC5\u0000\uC9F7\u0000\u0000\uC9E5\u0000\u0000\u0000\uC4BD" + // 14350 - 14359
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uEDAB\u0000\u0000" + // 14360 - 14369
"\uB6AE\u0000\u0000\u0000\u0000\u0000\uD0B8\u0000\uB0C3\uEDAE" + // 14370 - 14379
"\u0000\u0000\u0000\u0000\u0000\uEDAF\uC0C1\u0000\uE3C1\u0000" + // 14380 - 14389
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14390 - 14399
"\uF6BD\u0000\uF6BE\uB6A6\u0000\uD8BE\u0000\u0000\uB9C4\u0000" + // 14400 - 14409
"\u0000\u0000\uD8BB\u0000\uDCB1\u0000\u0000\u0000\u0000\u0000" + // 14410 - 14419
"\u0000\u0000\uE2B8\uF7CF\u0000\u0000\u0000\u0000\u0000\u0000" + // 14420 - 14429
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14430 - 14439
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7D3\uF7D2\u0000" + // 14440 - 14449
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC1AE" + // 14450 - 14459
"\uC0C8\u0000\u0000\u0000\u0000\u0000\u0000\uE2DB\uE2DA\uC0AA" + // 14460 - 14469
"\u0000\u0000\uC1CE\u0000\u0000\u0000\u0000\uE2DC\u0000\u0000" + // 14470 - 14479
"\u0000\u0000\u0000\uDDB0\uC6CE\u0000\u0000\uC0F2\u0000\u0000" + // 14480 - 14489
"\u0000\u0000\uC9AF\u0000\u0000\u0000\uDCEC\uDDAE\u0000\u0000" + // 14490 - 14499
"\u0000\u0000\uDDB7\u0000\u0000\uDCF0\uDDAF\u0000\uDDB8\u0000" + // 14500 - 14509
"\uCBEA\uC6F1\u0000\u0000\u0000\u0000\u0000\uE1AC\u0000\u0000" + // 14510 - 14519
"\u0000\uE1A7\uE1A9\u0000\u0000\uE1AA\uE1AF\u0000\u0000\uB2ED" + // 14520 - 14529
"\u0000\uE1AB\uB8DA\uE1AD\uE1AE\uE1B0\uB5BA\uE1B1\u0000\u0000" + // 14530 - 14539
"\u0000\uB5E8\u0000\u0000\uB5AB\u0000\u0000\u0000\u0000\u0000" + // 14540 - 14549
"\u0000\uCEBB\uB5CD\uD7A1\uD7F4\uD3D3\u0000\uCCE5\u0000\uBACE" + // 14550 - 14559
"\u0000\uD9A2\uD9DC\uD3E0\uD8FD\uB7F0\uD7F7\uD8FE\uD8FA\uD9A1" + // 14560 - 14569
"\uD5C5\u0000\u0000\u0000\u0000\uC3D6\uCFD2\uBBA1\u0000\uE5F3" + // 14570 - 14579
"\uE5F2\u0000\u0000\uE5F4\u0000\uCDE4\u0000\uC8F5\u0000\u0000" + // 14580 - 14589
"\u0000\u0000\u0000\u0000\u0000\uB5AF\uC7BF\u0000\uE5F6\u0000" + // 14590 - 14599
"\u0000\u0000\uD9A9\uD6B6\u0000\u0000\u0000\uB3DE\uD9A8\u0000" + // 14600 - 14609
"\uC0FD\u0000\uCACC\u0000\uD9AA\u0000\uD9A7\u0000\u0000\uD9B0" + // 14610 - 14619
"\u0000\u0000\uB6B1\u0000\u0000\u0000\uB9A9\u0000\uD2C0\u0000" + // 14620 - 14629
"\u0000\uBBD6\uEDA7\uD0F4\u0000\u0000\uEDA4\uBADE\uB6F7\uE3A1" + // 14630 - 14639
"\uB6B2\uCCF1\uB9A7\u0000\uCFA2\uC7A1\u0000\u0000\uBFD2\u0000" + // 14640 - 14649
"\u0000\uB6F1\u0000\uE2FA\uE2FB\uE2FD\uE2FC\uC4D5\uE3A2\u0000" + // 14650 - 14659
"\uD3C1\uBFAA\uDBCD\uD2EC\uC6FA\uC5AA\u0000\u0000\u0000\uDEC4" + // 14660 - 14669
"\u0000\uB1D7\uDFAE\u0000\u0000\u0000\uCABD\u0000\uDFB1\u0000" + // 14670 - 14679
"\uB9AD\u0000\uD2FD\u0000\uB8A5\uBAEB\u0000\u0000\uB3DA\u0000" + // 14680 - 14689
"\u0000\u0000\uB5DC\uE2D4\u0000\u0000\u0000\u0000\uE2D3\uB6C8" + // 14690 - 14699
"\uD7F9\u0000\u0000\u0000\u0000\u0000\uCDA5\u0000\u0000\u0000" + // 14700 - 14709
"\u0000\u0000\uE2D8\u0000\uE2D6\uCAFC\uBFB5\uD3B9\uE2D5\u0000" + // 14710 - 14719
"\u0000\u0000\u0000\uE2D7\u0000\uB7E2\u0000\u0000\uC9E4\u0000" + // 14720 - 14729
"\uBDAB\u0000\u0000\uCEBE\uD7F0\u0000\u0000\u0000\u0000\uD0A1" + // 14730 - 14739
"\u0000\uC9D9\u0000\u0000\uB6FB\uE6D8\uBCE2\u0000\uB3BE\u0000" + // 14740 - 14749
"\uC9D0\u0000\uE6D9\uB3A2\u0000\u0000\uE1B3\uE1B8\u0000\u0000" + // 14750 - 14759
"\u0000\u0000\u0000\uD1D2\u0000\uE1B6\uE1B5\uC1EB\u0000\u0000" + // 14760 - 14769
"\u0000\uE1B7\u0000\uD4C0\u0000\uE1B2\u0000\uE1BA\uB0B6\u0000" + // 14770 - 14779
"\u0000\u0000\u0000\uE1B4\u0000\uBFF9\uE2CF\u0000\u0000\u0000" + // 14780 - 14789
"\uD7AF\u0000\uC7EC\uB1D3\u0000\u0000\uB4B2\uE2D1\u0000\u0000" + // 14790 - 14799
"\u0000\uD0F2\uC2AE\uE2D0\u0000\uBFE2\uD3A6\uB5D7\uE2D2\uB5EA" + // 14800 - 14809
"\u0000\uC3ED\uB8FD\u0000\uB8AE\u0000\uC5D3\uB7CF\uCDC0\uC2C5" + // 14810 - 14819
"\u0000\uE5EF\u0000\uC2C4\uE5F0\u0000\u0000\u0000\u0000\u0000" + // 14820 - 14829
"\u0000\u0000\uE5F8\uCDCD\u0000\uC9BD\u0000\u0000\u0000\u0000" + // 14830 - 14839
"\u0000\u0000\u0000\uD2D9\uE1A8\u0000\u0000\u0000\u0000\uD3EC" + // 14840 - 14849
"\uBED6\uC6A8\uB2E3\u0000\u0000\uBED3\u0000\u0000\uC7FC\uCCEB" + // 14850 - 14859
"\uBDEC\uCEDD\u0000\u0000\uCABA\uC6C1\uE5EC\uD0BC\u0000\u0000" + // 14860 - 14869
"\u0000\uD5B9\u0000\u0000\u0000\uE5ED\u0000\u0000\u0000\u0000" + // 14870 - 14879
"\uCAF4\u0000\uDEC6\uDBBC\u0000\uD1D9\u0000\u0000\uC6E6\uC4CE" + // 14880 - 14889
"\uB7EE\u0000\uB7DC\u0000\u0000\uBFFC\uD7E0\u0000\uC6F5\u0000" + // 14890 - 14899
"\u0000\uB1BC\uDEC8\uBDB1\uCCD7\uDECA\u0000\uDEC9\u0000\u0000" + // 14900 - 14909
"\u0000\u0000\u0000\u0000\uF1E0\u0000\u0000\u0000\u0000\u0000" + // 14910 - 14919
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 14920 - 14929
"\u0000\u0000\u0000\u0000\u0000\uF1E1\u0000\u0000\u0000\uCEF7" + // 14930 - 14939
"\uB3E8\uC9F3\uBFCD\uD0FB\uCAD2\uE5B6\uBBC2\u0000\u0000\u0000" + // 14940 - 14949
"\uCFDC\uB9AC\u0000\u0000\u0000\u0000\uD4D7\u0000\u0000\uBAA6" + // 14950 - 14959
"\uD1E7\uCFFC\uBCD2\u0000\uE5B7\uC8DD\u0000\u0000\u0000\uBFED" + // 14960 - 14969
"\uB1F6\uCBDE\uE5B2\uC4FE\u0000\uCBFC\uE5B3\uD5AC\u0000\uD3EE" + // 14970 - 14979
"\uCAD8\uB0B2\u0000\uCBCE\uCDEA\u0000\u0000\uBAEA\u0000\u0000" + // 14980 - 14989
"\u0000\uE5B5\u0000\uE5B4\u0000\uD7DA\uB9D9\uD6E6\uB6A8\uCDF0" // 14990 - 14999
;
index2a =
"\uD2CB\uB1A6\uCAB5\u0000\uB1DA\u0000\u0000\u0000\uDBD5\u0000" + // 15000 - 15009
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15010 - 15019
"\uDBD6\u0000\u0000\u0000\uBABE\u0000\u0000\u0000\u0000\u0000" + // 15020 - 15029
"\u0000\u0000\u0000\u0000\u0000\uCEC9\u0000\u0000\u0000\u0000" + // 15030 - 15039
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15040 - 15049
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8B6\u0000\u0000" + // 15050 - 15059
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB9CF\u0000\uF0AC" + // 15060 - 15069
"\u0000\uB7C8\u0000\u0000\uC6A1\uC9B6\uC0B2\uDFF5\u0000\u0000" + // 15070 - 15079
"\uC5BE\u0000\uD8C4\uDFF9\uC4F6\u0000\u0000\u0000\u0000\u0000" + // 15080 - 15089
"\u0000\uE0A3\uE0A4\uE0A5\uD0A5\u0000\u0000\uE0B4\uCCE4\u0000" + // 15090 - 15099
"\uE0B1\u0000\uC8FE\uB2CE\u0000\u0000\u0000\u0000\u0000\uD3D6" + // 15100 - 15109
"\uB2E6\uBCB0\uD3D1\uCBAB\uB7B4\u0000\u0000\u0000\uB7A2\u0000" + // 15110 - 15119
"\u0000\uCAE5\u0000\uC8A1\uCADC\uB1E4\uD0F0\u0000\uC5D1\u0000" + // 15120 - 15129
"\u0000\u0000\uDBC5\uE6D7\u0000\u0000\u0000\u0000\u0000\u0000" + // 15130 - 15139
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD7D3" + // 15140 - 15149
"\uE6DD\u0000\uE6DE\uBFD7\uD4D0\u0000\uD7D6\uB4E6\uCBEF\uE6DA" + // 15150 - 15159
"\uD8C3\uD7CE\uD0A2\u0000\uC3CF\uE6CB\uB5D5\u0000\uE6CC\u0000" + // 15160 - 15169
"\u0000\uE6CF\u0000\u0000\uC4DB\u0000\uE6C6\u0000\u0000\u0000" + // 15170 - 15179
"\u0000\u0000\uE6CD\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15180 - 15189
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDDF8\u0000\u0000" + // 15190 - 15199
"\u0000\u0000\uC3EF\u0000\uC2FB\u0000\u0000\u0000\uD5E1\u0000" + // 15200 - 15209
"\u0000\uCEB5\u0000\u0000\u0000\u0000\uDDFD\uE6B9\u0000\u0000" + // 15210 - 15219
"\u0000\u0000\u0000\uC6C5\u0000\u0000\uCDF1\uE6BB\u0000\u0000" + // 15220 - 15229
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE6BC\u0000" + // 15230 - 15239
"\u0000\u0000\u0000\uBBE9\u0000\u0000\u0000\u0000\u0000\u0000" + // 15240 - 15249
"\uF6A5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15250 - 15259
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15260 - 15269
"\u0000\u0000\u0000\u0000\u0000\u0000\uA1D1\u0000\u0000\u0000" + // 15270 - 15279
"\u0000\u0000\u0000\uBDB9\u0000\u0000\u0000\u0000\u0000\u0000" + // 15280 - 15289
"\u0000\u0000\uECCC\uD1E6\uECCD\u0000\u0000\u0000\u0000\uC8BB" + // 15290 - 15299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF1F9" + // 15300 - 15309
"\uB4CF\u0000\u0000\u0000\u0000\u0000\u0000\uF1FA\u0000\u0000" + // 15310 - 15319
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15320 - 15329
"\u0000\uEDB2\uC9EF\u0000\u0000\uE6B7\u0000\uB6F0\u0000\u0000" + // 15330 - 15339
"\u0000\uC3E4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD3E9" + // 15340 - 15349
"\uE6B4\u0000\uE6B5\u0000\uC8A2\u0000\u0000\u0000\u0000\u0000" + // 15350 - 15359
"\uE6BD\u0000\u0000\u0000\uA1E6\u0000\u0000\u0000\u0000\u0000" + // 15360 - 15369
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15370 - 15379
"\u0000\u0000\u0000\uA1ED\u0000\u0000\u0000\u0000\u0000\u0000" + // 15380 - 15389
"\u0000\u0000\u0000\uD1C9\uBAB8\u0000\u0000\u0000\u0000\u0000" + // 15390 - 15399
"\uECC9\u0000\u0000\uECCA\u0000\uBBC0\uECCB\u0000\uECE2\uB1BA" + // 15400 - 15409
"\uB7D9\u0000\u0000\u0000\u0000\u0000\u0000\uCCF3\u0000\uEBE6" + // 15410 - 15419
"\u0000\uC0B0\uD2B8\uEBE7\u0000\u0000\u0000\uB8AF\uB8AD\u0000" + // 15420 - 15429
"\uEBE8\uC7BB\uCDF3\u0000\u0000\u0000\uEBEA\uEBEB\u0000\u0000" + // 15430 - 15439
"\u0000\u0000\u0000\u0000\uDDE1\u0000\u0000\u0000\u0000\u0000" + // 15440 - 15449
"\u0000\u0000\u0000\u0000\u0000\uDDD7\u0000\u0000\u0000\u0000" + // 15450 - 15459
"\u0000\uD6F8\u0000\uDDD9\uDDD8\uB8F0\uDDD6\u0000\u0000\u0000" + // 15460 - 15469
"\u0000\uD5E7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15470 - 15479
"\uDDF9\u0000\uEAB4\u0000\uEAB5\u0000\uEAB6\u0000\u0000\u0000" + // 15480 - 15489
"\u0000\uB8CA\uDFB0\uC9F5\u0000\uCCF0\u0000\u0000\uC9FA\uB5EC" + // 15490 - 15499
"\u0000\uC9DD\u0000\u0000\uB0C2\u0000\u0000\u0000\u0000\u0000" + // 15500 - 15509
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC5AE\uC5AB" + // 15510 - 15519
"\u0000\uC4CC\u0000\uBCE9\uCBFD\u0000\u0000\u0000\uBAC3\u0000" + // 15520 - 15529
"\u0000\uDECC\u0000\uD3C8\uDECD\u0000\uD2A2\u0000\u0000\u0000" + // 15530 - 15539
"\u0000\uDECE\u0000\u0000\u0000\u0000\uBECD\u0000\u0000\uDECF" + // 15540 - 15549
"\u0000\u0000\u0000\uCAAC\uD2FC\uB3DF\uE5EA\uC4E1\uBEA1\uCEB2" + // 15550 - 15559
"\uC4F2\uDCAF\uDCAC\u0000\uBEB3\u0000\uCAFB\u0000\u0000\u0000" + // 15560 - 15569
"\uDCAD\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC9CA" + // 15570 - 15579
"\uC4B9\u0000\u0000\u0000\u0000\u0000\uC7BD\uDCAE\u0000\u0000" + // 15580 - 15589
"\u0000\uD4F6\uD0E6\uDCA9\uB1A4\u0000\u0000\uB5CC\u0000\u0000" + // 15590 - 15599
"\u0000\u0000\u0000\uBFB0\u0000\u0000\u0000\u0000\u0000\uD1DF" + // 15600 - 15609
"\u0000\u0000\u0000\u0000\uB6C2\u0000\u0000\u0000\u0000\u0000" + // 15610 - 15619
"\u0000\u0000\u0000\u0000\u0000\uEDD2\uC1F2\uD3B2\uEDCB\uC8B7" + // 15620 - 15629
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uBCEF\u0000" + // 15630 - 15639
"\u0000\u0000\u0000\uC5F0\u0000\u0000\u0000\u0000\uF7FE\u0000" + // 15640 - 15649
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15650 - 15659
"\uC6EB\uECB4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15660 - 15669
"\u0000\u0000\u0000\u0000\u0000\u0000\uC2ED\uD4A6\uCDD4\uD1B1" + // 15670 - 15679
"\uB3DB\uC7FD\u0000\uB2B5\uC2BF\uE6E0\uCABB\uE6E1\uE6E2\uBED4" + // 15680 - 15689
"\uE6E3\uD7A4\uCDD5\uE6E5\uBCDD\uE6E4\uDCA5\u0000\uCCC3\u0000" + // 15690 - 15699
"\u0000\u0000\uB6D1\uDDC0\u0000\u0000\u0000\uDCA1\u0000\uDCA2" + // 15700 - 15709
"\u0000\u0000\u0000\uC7B5\u0000\u0000\u0000\uB6E9\u0000\u0000" + // 15710 - 15719
"\u0000\uDCA7\u0000\u0000\u0000\u0000\uDCA6\u0000\uDFFA\u0000" + // 15720 - 15729
"\uBFD0\uD7C4\u0000\uC9CC\u0000\u0000\uDFF8\uB0A1\u0000\u0000" + // 15730 - 15739
"\u0000\u0000\u0000\uDFFD\u0000\u0000\u0000\u0000\uDFFB\uE0A2" + // 15740 - 15749
"\u0000\u0000\u0000\u0000\u0000\uE0A8\u0000\u0000\u0000\u0000" + // 15750 - 15759
"\uB1A1\uDEB6\u0000\uDEB1\u0000\u0000\u0000\u0000\u0000\u0000" + // 15760 - 15769
"\u0000\uDEB2\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15770 - 15779
"\u0000\u0000\u0000\uD1A6\uDEB5\u0000\u0000\u0000\u0000\uDEAF" + // 15780 - 15789
"\u0000\u0000\u0000\uDEB0\u0000\uD0BD\u0000\u0000\u0000\uDEB4" + // 15790 - 15799
"\uCAED\uDEB9\u0000\u0000\u0000\u0000\u0000\u0000\uDEB8\u0000" + // 15800 - 15809
"\uDEB7\u0000\u0000\u0000\u0000\u0000\u0000\uEAD8\u0000\u0000" + // 15810 - 15819
"\uEAD9\u0000\u0000\u0000\u0000\u0000\u0000\uD4BB\u0000\uC7FA" + // 15820 - 15829
"\uD2B7\uB8FC\u0000\u0000\uEAC2\u0000\uB2DC\u0000\u0000\uC2FC" + // 15830 - 15839
"\u0000\uD4F8\uCCE6\uB2BA\u0000\u0000\u0000\uDBFD\u0000\u0000" + // 15840 - 15849
"\u0000\u0000\u0000\u0000\u0000\u0000\uDCA4\u0000\uDBFB\u0000" + // 15850 - 15859
"\u0000\u0000\u0000\uDBFA\u0000\u0000\u0000\uDBFC\uC5E0\uBBF9" + // 15860 - 15869
"\u0000\u0000\uDCA3\u0000\u0000\uE6DF\uBCBE\uB9C2\uE6DB\uD1A7" + // 15870 - 15879
"\u0000\u0000\uBAA2\uC2CF\u0000\uD8AB\u0000\u0000\u0000\uCAEB" + // 15880 - 15889
"\uE5EE\u0000\uE6DC\u0000\uB7F5\u0000\u0000\u0000\u0000\uC8E6" + // 15890 - 15899
"\u0000\u0000\uC4F5\u0000\u0000\uBCC5\u0000\uBCC4\uD2FA\uC3DC" + // 15900 - 15909
"\uBFDC\u0000\u0000\u0000\u0000\uB8BB\u0000\u0000\u0000\uC3C2" + // 15910 - 15919
"\u0000\uBAAE\uD4A2\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 15920 - 15929
"\u0000\u0000\uC7DE\uC4AF\uB2EC\uDBF3\uDBD2\uB9B8\uD4AB\uDBEC" + // 15930 - 15939
"\u0000\uBFD1\uDBF0\u0000\uDBD1\u0000\uB5E6\u0000\uDBEB\uBFE5" + // 15940 - 15949
"\u0000\u0000\u0000\uDBEE\u0000\uDBF1\u0000\u0000\u0000\uDBF9" + // 15950 - 15959
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9BC\uD5A5\u0000" + // 15960 - 15969
"\u0000\uE9BE\u0000\uE9BF\u0000\u0000\u0000\uE9C1\u0000\u0000" + // 15970 - 15979
"\uC1F1\u0000\u0000\uC8B6\u0000\u0000\u0000\uE9BD\u0000\u0000" + // 15980 - 15989
"\u0000\u0000\u0000\uEEC2\u0000\u0000\u0000\u0000\u0000\u0000" + // 15990 - 15999
"\u0000\u0000\uC4BF\uB6A2\u0000\uEDEC\uC3A4\u0000\uD6B1\u0000" + // 16000 - 16009
"\u0000\u0000\uCFE0\uEDEF\u0000\u0000\uC5CE\u0000\uB6DC\u0000" + // 16010 - 16019
"\uD1E4\u0000\u0000\u0000\u0000\uCBF4\uB4BD\u0000\uB0A6\u0000" + // 16020 - 16029
"\u0000\u0000\u0000\u0000\uDFF1\uCCC6\uDFF2\u0000\u0000\uDFED" + // 16030 - 16039
"\u0000\u0000\u0000\u0000\u0000\u0000\uDFE9\u0000\u0000\u0000" + // 16040 - 16049
"\u0000\u0000\uC9FB\u0000\u0000\uD3C3\uCBA6\u0000\uB8A6\uF0AE" + // 16050 - 16059
"\uB1C2\u0000\uE5B8\uCCEF\uD3C9\uBCD7\uC9EA\u0000\uB5E7\u0000" + // 16060 - 16069
"\uC4D0\uB5E9\u0000\uEEAE\uBBAD\u0000\u0000\uE7DE\u0000\uCAAE" + // 16070 - 16079
"\u0000\uC7A7\u0000\uD8A6\u0000\uC9FD\uCEE7\uBBDC\uB0EB\u0000" + // 16080 - 16089
"\u0000\u0000\uBBAA\uD0AD\u0000\uB1B0\uD7E4\uD7BF\u0000\uB5A5" + // 16090 - 16099
"\uC2F4\uC4CF\u0000\u0000\uB2A9\u0000\uB2B7\u0000\uB1E5\uDFB2" + // 16100 - 16109
"\uD7B9\uC6C2\u0000\u0000\uC0A4\u0000\uCCB9\u0000\uDBE7\uDBE1" + // 16110 - 16119
"\uC6BA\uDBE3\u0000\uDBE8\u0000\uC5F7\u0000\u0000\u0000\uDBEA" + // 16120 - 16129
"\u0000\u0000\uDBE9\uBFC0\u0000\u0000\u0000\uDBE6\uDBE5\u0000" + // 16130 - 16139
"\u0000\u0000\u0000\uBBC6\u0000\u0000\u0000\u0000\uD9E4\u0000" + // 16140 - 16149
"\u0000\u0000\uCAF2\uC0E8\uF0A4\u0000\uBADA\u0000\u0000\uC7AD" + // 16150 - 16159
"\u0000\u0000\u0000\uC4AC\u0000\u0000\uF7EC\uF7ED\uF7EE\u0000" + // 16160 - 16169
"\uF7F0\uD6B7\u0000\uDBE0\u0000\u0000\u0000\u0000\uBEF9\u0000" + // 16170 - 16179
"\u0000\uB7BB\u0000\uDBD0\uCCAE\uBFB2\uBBB5\uD7F8\uBFD3\u0000" + // 16180 - 16189
"\u0000\u0000\u0000\u0000\uBFE9\u0000\u0000\uBCE1\uCCB3\uDBDE" + // 16190 - 16199
"\uB0D3\uCEEB\uB7D8\uD2F2\uE0EF\uCDC5\u0000\uB6DA\u0000\u0000" + // 16200 - 16209
"\u0000\u0000\u0000\u0000\uE0F1\u0000\uD4B0\u0000\u0000\uC0A7" + // 16210 - 16219
"\uB4D1\u0000\u0000\uCEA7\uE0F0\u0000\u0000\u0000\uE0F2\uB9CC" + // 16220 - 16229
"\u0000\u0000\uB9FA\uCDBC\uE0F3\uE0D6\uE0D2\u0000\u0000\u0000" + // 16230 - 16239
"\u0000\u0000\u0000\uE0D0\uBCCE\u0000\u0000\uE0D1\u0000\uB8C2" + // 16240 - 16249
"\uD8C5\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD0EA" + // 16250 - 16259
"\u0000\u0000\uC2EF\u0000\u0000\uE0CF\uE0BD\uBFA6\uE0AF\uCEB9" + // 16260 - 16269
"\uE0AB\uC9C6\u0000\u0000\uC0AE\uE0AE\uBAED\uBAB0\uE0A9\u0000" + // 16270 - 16279
"\u0000\u0000\uDFF6\u0000\uE0B3\u0000\u0000\uE0B8\u0000\u0000" + // 16280 - 16289
"\u0000\uB4AD\uE0B9\u0000\u0000\uCFB2\uBAC8\u0000\uE0B0\uDFEB" + // 16290 - 16299
"\u0000\uDFEF\uDFF0\uBBBD\u0000\u0000\uDFF3\u0000\u0000\uDFF4" + // 16300 - 16309
"\u0000\uBBA3\u0000\uCADB\uCEA8\uE0A7\uB3AA\u0000\uE0A6\u0000" + // 16310 - 16319
"\u0000\u0000\uE0A1\u0000\u0000\u0000\u0000\uDFFE\u0000\uCDD9" + // 16320 - 16329
"\uDFFC\uB0A7\uC6B7\uDFD3\u0000\uBAE5\u0000\uB6DF\uCDDB\uB9FE" + // 16330 - 16339
"\uD4D5\u0000\u0000\uDFDF\uCFEC\uB0A5\uDFE7\uDFD1\uD1C6\uDFD5" + // 16340 - 16349
"\uDFD8\uDFD9\uDFDC\u0000\uBBA9\u0000\uDFE0\uDFE1\u0000\uDFE2" + // 16350 - 16359
"\uDFE6\uDFE8\uD3B4\uBED7\u0000\uDFC6\u0000\uDFCD\u0000\uC5D8" + // 16360 - 16369
"\u0000\u0000\u0000\u0000\uD5A6\uBACD\u0000\uBECC\uD3BD\uB8C0" + // 16370 - 16379
"\u0000\uD6E4\u0000\uDFC7\uB9BE\uBFA7\u0000\u0000\uC1FC\uDFCB" + // 16380 - 16389
"\uDFCC\u0000\uDFD0\u0000\u0000\uE6BE\u0000\u0000\u0000\u0000" + // 16390 - 16399
"\uE6BA\u0000\u0000\uC0B7\u0000\u0000\u0000\u0000\u0000\u0000" + // 16400 - 16409
"\u0000\u0000\u0000\uD3A4\uE6BF\uC9F4\uE6C3\u0000\u0000\uE6C4" + // 16410 - 16419
"\u0000\u0000\u0000\u0000\uD0F6\uD1BD\u0000\u0000\uDFC0\u0000" + // 16420 - 16429
"\u0000\uB4F4\u0000\uB3CA\u0000\uB8E6\uDFBB\u0000\u0000\u0000" + // 16430 - 16439
"\u0000\uC4C5\u0000\uDFBC\uDFBD\uDFBE\uC5BB\uDFBF\uDFC2\uD4B1" + // 16440 - 16449
"\uDFC3\u0000\uC7BA\uCED8\u0000\u0000\u0000\u0000\uDEA8\u0000" + // 16450 - 16459
"\u0000\u0000\uDEA7\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 16460 - 16469
"\u0000\u0000\uDEAD\u0000\uD4CC\u0000\u0000\u0000\u0000\uDEB3" + // 16470 - 16479
"\uDEAA\uDEAE\u0000\u0000\uC0D9\u0000\uD8E4\uD8E3\u0000\u0000" + // 16480 - 16489
"\u0000\u0000\u0000\uC5FC\u0000\u0000\u0000\u0000\u0000\u0000" + // 16490 - 16499
"\u0000\uD8E5\u0000\u0000\uD8E6\u0000\u0000\u0000\u0000\u0000" + // 16500 - 16509
"\u0000\u0000\uC1A6\u0000\uC8B0\uB0EC\uB9A6\uB7CD\uDFC1\u0000" + // 16510 - 16519
"\uDFC4\u0000\u0000\uB7F1\uB0C9\uB6D6\uB7D4\u0000\uBAAC\uCCFD" + // 16520 - 16529
"\uBFD4\uCBB1\uC6F4\u0000\uD6A8\uDFC5\u0000\uCEE2\uB3B3\u0000" + // 16530 - 16539
"\u0000\uCEFC\uB4B5\u0000\uCEC7\uBAF0\u0000\uCEE1\u0000\uD8DF" + // 16540 - 16549
"\u0000\u0000\u0000\uB0FE\u0000\uBEE7\u0000\uCAA3\uBCF4\u0000" + // 16550 - 16559
"\u0000\u0000\u0000\uB8B1\u0000\u0000\uB8EE\u0000\u0000\u0000" + // 16560 - 16569
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD8E2\u0000\uBDCB" + // 16570 - 16579
"\uB5FE\u0000\u0000\uBFDA\uB9C5\uBEE4\uC1ED\u0000\uDFB6\uDFB5" + // 16580 - 16589
"\uD6BB\uBDD0\uD5D9\uB0C8\uB6A3\uBFC9\uCCA8\uDFB3\uCAB7\uD3D2" + // 16590 - 16599
"\u0000\uD8CF\uD2B6\uBAC5\uCBBE\uCCBE\u0000\uDFB7\uB5F0\uDFB4" + // 16600 - 16609
"\u0000\u0000\uE2BA\u0000\uB4A6\u0000\u0000\uB1B8\u0000\u0000" + // 16610 - 16619
"\u0000\u0000\u0000\uB8B4\u0000\uCFC4\u0000\u0000\u0000\u0000" + // 16620 - 16629
"\uD9E7\uCFA6\uCDE2\u0000\u0000\uD9ED\uB6E0\u0000\uD2B9\u0000" + // 16630 - 16639
"\u0000\uB9BB\uD5BC\uBFA8\uC2AC\uD8D5\uC2B1\u0000\uD8D4\uCED4" + // 16640 - 16649
"\u0000\uDAE0\u0000\uCEC0\u0000\u0000\uD8B4\uC3AE\uD3A1\uCEA3" + // 16650 - 16659
"\u0000\uBCB4\uC8B4\uC2D1\u0000\uBEED\uD0B6\u0000\uDAE1\u0000" + // 16660 - 16669
"\u0000\u0000\u0000\uC7E4\uBDB3\uBFEF\u0000\uCFBB\u0000\u0000" + // 16670 - 16679
"\uD8D0\u0000\u0000\u0000\uB7CB\u0000\u0000\u0000\uD8D1\u0000" + // 16680 - 16689
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC6A5" + // 16690 - 16699
"\uC7F8\uD2BD\u0000\u0000\uD8D2\uC4E4\uD4C8\u0000\u0000\u0000" + // 16700 - 16709
"\u0000\uB0FC\uB4D2\u0000\uD0D9\u0000\u0000\u0000\u0000\uD9E9" + // 16710 - 16719
"\u0000\uDECB\uD9EB\u0000\u0000\u0000\u0000\uD8B0\uBBAF\uB1B1" + // 16720 - 16729
"\u0000\uB3D7\uD8CE\u0000\u0000\uD4D1\u0000\u0000\uB9A1\uB0A3" + // 16730 - 16739
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC2F1\u0000\u0000" + // 16740 - 16749
"\uB3C7\uDBEF\u0000\u0000\uDBF8\u0000\uC6D2\uDBF4\u0000\u0000" + // 16750 - 16759
"\uDBF5\uDBF7\uDBF6\u0000\u0000\uDBFE\u0000\uD3F2\uBCD3\uCEF1" + // 16760 - 16769
"\uDBBD\uC1D3\u0000\u0000\u0000\u0000\uB6AF\uD6FA\uC5AC\uBDD9" + // 16770 - 16779
"\uDBBE\uDBBF\u0000\u0000\u0000\uC0F8\uBEA2\uC0CD\u0000\u0000" + // 16780 - 16789
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDBC0\uCAC6" + // 16790 - 16799
"\uD8DC\uB6E7\uBCC1\uCCEA\u0000\u0000\u0000\u0000\u0000\u0000" + // 16800 - 16809
"\uCFF7\u0000\uD8DD\uC7B0\u0000\u0000\uB9D0\uBDA3\u0000\u0000" + // 16810 - 16819
"\uCCDE\u0000\uC6CA\u0000\u0000\u0000\u0000\u0000\uD8E0\u0000" + // 16820 - 16829
"\uD8DE\u0000\uB3AB\u0000\u0000\u0000\uD9C5\uBEEB\u0000\uD9C6" + // 16830 - 16839
"\uD9BB\uC4DF\u0000\uD9BE\uD9C1\uD9C0\u0000\u0000\u0000\u0000" + // 16840 - 16849
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD5AE\u0000\uD6B5" + // 16850 - 16859
"\u0000\uC7E3\u0000\uD0C5\u0000\uD9B6\u0000\u0000\uD9B1\u0000" + // 16860 - 16869
"\uD9B2\uC1A9\uD9B3\u0000\u0000\uBCF3\uD0DE\uB8A9\u0000\uBEE3" + // 16870 - 16879
"\u0000\uD9BD\u0000\u0000\u0000\u0000\uD9BA\u0000\uB0B3\u0000" + // 16880 - 16889
"\u0000\u0000\uD9C2\u0000\uC0DC\u0000\u0000\u0000\u0000\u0000" + // 16890 - 16899
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 16900 - 16909
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 16910 - 16919
"\u0000\u0000\u0000\u0000\uB6F9\uC9BE\u0000\u0000\u0000\uC5D0" + // 16920 - 16929
"\u0000\u0000\u0000\uC5D9\uC0FB\u0000\uB1F0\u0000\uD8D9\uB9CE" + // 16930 - 16939
"\u0000\uB5BD\u0000\u0000\uD8DA\u0000\u0000\uD6C6\uCBA2\uC8AF" + // 16940 - 16949
"\uC9B2\uB4CC\uBFCC\u0000\uB9F4\u0000\uD8DB\uB5B6\uB5F3\uD8D6" + // 16950 - 16959
"\uC8D0\u0000\u0000\uB7D6\uC7D0\uD8D7\u0000\uBFAF\u0000\u0000" + // 16960 - 16969
"\uDBBB\uD8D8\u0000\u0000\uD0CC\uBBAE\u0000\u0000\u0000\uEBBE" + // 16970 - 16979
"\uC1D0\uC1F5\uD4F2\uB8D5\uB4B4\u0000\uB3F5\u0000\u0000\uB4B9" + // 16980 - 16989
"\uC0AC\uC2A2\uDBE2\uDBE4\u0000\u0000\u0000\u0000\uD0CD\uDBED" + // 16990 - 16999
"\u0000\u0000\u0000\u0000\u0000\uC0DD\uDBF2\u0000\u0000\u0000" + // 17000 - 17009
"\u0000\u0000\u0000\u0000\uB6E2\u0000\u0000\u0000\u0000\u0000" + // 17010 - 17019
"\uC2D4\uC6E8\u0000\u0000\u0000\uB7AC\u0000\u0000\u0000\u0000" + // 17020 - 17029
"\u0000\u0000\u0000\uEEB4\u0000\uB3EB\u0000\u0000\u0000\uBBFB" + // 17030 - 17039
"\uEEB5\u0000\u0000\u0000\u0000\u0000\uE7DC\uBCB8\uB7B2\u0000" + // 17040 - 17049
"\u0000\uB7EF\u0000\u0000\u0000\u0000\u0000\u0000\uD9EC\u0000" + // 17050 - 17059
"\uC6BE\u0000\uBFAD\uBBCB\u0000\u0000\uB5CA\u0000\uDBC9\uD0D7" + // 17060 - 17069
"\u0000\uCDB9\uB0BC\uB3F6\uBBF7\uDBCA\uBAAF\u0000\uD4E4\uBEBB" + // 17070 - 17079
"\u0000\u0000\u0000\uC6E0\u0000\uD7BC\uDAA1\u0000\uC1B9\u0000" + // 17080 - 17089
"\uB5F2\uC1E8\u0000\u0000\uBCF5\u0000\uB4D5\u0000\u0000\u0000" + // 17090 - 17099
"\u0000\u0000\u0000\u0000\u0000\u0000\uC1DD\u0000\uC4FD\u0000" + // 17100 - 17109
"\u0000\uC4D8\u0000\uDFCA\u0000\uDFCF\u0000\uD6DC\u0000\u0000" + // 17110 - 17119
"\u0000\u0000\u0000\u0000\u0000\u0000\uDFC9\uDFDA\uCEB6\u0000" + // 17120 - 17129
"\uBAC7\uDFCE\uDFC8\uC5DE\u0000\u0000\uC9EB\uBAF4\uC3FC\u0000" + // 17130 - 17139
"\u0000\uE0DE\u0000\uE0E4\u0000\u0000\u0000\uC6F7\uD8AC\uD4EB" + // 17140 - 17149
"\uE0E6\uCAC9\u0000\u0000\u0000\u0000\uE0E5\u0000\u0000\u0000" + // 17150 - 17159
"\u0000\uB8C1\u0000\u0000\u0000\u0000\uE0E7\uE0E8\u0000\u0000" + // 17160 - 17169
"\u0000\u0000\uCCD9\u0000\u0000\u0000\u0000\uB7AA\u0000\u0000" + // 17170 - 17179
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17180 - 17189
"\u0000\u0000\u0000\u0000\u0000\uD4E5\u0000\u0000\u0000\uDEBD" + // 17190 - 17199
"\uB9DA\u0000\uDAA3\u0000\uD4A9\uDAA4\u0000\u0000\u0000\u0000" + // 17200 - 17209
"\u0000\uD9FB\uB6AC\u0000\u0000\uB7EB\uB1F9\uD9FC\uB3E5\uBEF6" + // 17210 - 17219
"\u0000\uBFF6\uD2B1\uC0E4\u0000\u0000\u0000\uB6B3\uD9FE\uD9FD" + // 17220 - 17229
"\u0000\u0000\uCFE1\uD8C9\u0000\uD8CA\uCFC3\u0000\uB3F8\uBEC7" + // 17230 - 17239
"\u0000\u0000\u0000\u0000\uD8CB\u0000\u0000\u0000\u0000\u0000" + // 17240 - 17249
"\u0000\u0000\uDBCC\u0000\u0000\u0000\u0000\uC8A5\u0000\u0000" + // 17250 - 17259
"\u0000\uCFD8\uBCBD\uD9E6\uD8E7\u0000\u0000\uC4DA\u0000\u0000" + // 17260 - 17269
"\uB8D4\uC8BD\u0000\u0000\uB2E1\uD4D9\u0000\u0000\u0000\u0000" + // 17270 - 17279
"\uC3B0\u0000\u0000\uC3E1\uDAA2\uC8DF\u0000\uD0B4\u0000\uBEFC" + // 17280 - 17289
"\uC5A9\u0000\u0000\u0000\u0000\uD3A9\uD3AA\uDDD3\uCFF4\uC8F8" + // 17290 - 17299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDDE6\u0000" + // 17300 - 17309
"\u0000\u0000\u0000\u0000\u0000\uDDC7\u0000\u0000\u0000\uDDE0" + // 17310 - 17319
"\uC2E4\u0000\u0000\uBEA4\u0000\u0000\uC8EB\u0000\u0000\uC8AB" + // 17320 - 17329
"\u0000\u0000\uB0CB\uB9AB\uC1F9\uD9E2\u0000\uC0BC\uB9B2\u0000" + // 17330 - 17339
"\uB9D8\uD0CB\uB1F8\uC6E4\uBEDF\uB5E4\uD7C8\u0000\uD1F8\uBCE6" + // 17340 - 17349
"\uCADE\u0000\u0000\uB3A7\u0000\uB6F2\uCCFC\uC0FA\u0000\u0000" + // 17350 - 17359
"\uC0F7\u0000\uD1B9\uD1E1\uD8C7\u0000\u0000\u0000\u0000\u0000" + // 17360 - 17369
"\u0000\u0000\uB2DE\u0000\u0000\uC0E5\u0000\uBAF1\u0000\u0000" + // 17370 - 17379
"\uD8C8\u0000\uD4AD\uD8A3\uD4CA\u0000\uD4AA\uD0D6\uB3E4\uD5D7" + // 17380 - 17389
"\u0000\uCFC8\uB9E2\u0000\uBFCB\u0000\uC3E2\u0000\u0000\u0000" + // 17390 - 17399
"\uB6D2\u0000\u0000\uCDC3\uD9EE\uD9F0\u0000\u0000\u0000\uB5B3" + // 17400 - 17409
"\u0000\uB6B5\u0000\u0000\u0000\u0000\uF4B9\u0000\u0000\uCDA7" + // 17410 - 17419
"\u0000\uF4BA\u0000\uF4BB\u0000\u0000\u0000\uF4BC\u0000\u0000" + // 17420 - 17429
"\u0000\u0000\u0000\u0000\u0000\u0000\uCBD2\u0000\uF4BD\u0000" + // 17430 - 17439
"\u0000\u0000\u0000\uF4BE\uBFFE\u0000\u0000\u0000\u0000\uB8B5" + // 17440 - 17449
"\u0000\u0000\uC0FC\u0000\u0000\u0000\u0000\uB0F8\u0000\u0000" + // 17450 - 17459
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17460 - 17469
"\u0000\u0000\u0000\u0000\u0000\u0000\uEAA6\u0000\u0000\u0000" + // 17470 - 17479
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17480 - 17489
"\u0000\u0000\u0000\u0000\uF6C7\u0000\u0000\u0000\u0000\u0000" + // 17490 - 17499
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17500 - 17509
"\u0000\u0000\uB7E7\u0000\u0000\uECA9\uECAA\uECAB\u0000\uECAC" + // 17510 - 17519
"\u0000\u0000\uC6AE\uECAD\uECAE\u0000\u0000\u0000\uB7C9\uCAB3" + // 17520 - 17529
"\uCFC0\u0000\u0000\uC2C2\u0000\uBDC4\uD5EC\uB2E0\uC7C8\uBFEB" + // 17530 - 17539
"\uD9AD\u0000\uD9AF\u0000\uCEEA\uBAEE\u0000\u0000\u0000\u0000" + // 17540 - 17549
"\u0000\uC7D6\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17550 - 17559
"\u0000\uB1E3\uC4E3\u0000\u0000\uD3B6\uD8F4\uD9DD\u0000\uD8FB" + // 17560 - 17569
"\u0000\uC5E5\u0000\u0000\uC0D0\u0000\u0000\uD1F0\uB0DB\u0000" + // 17570 - 17579
"\u0000\uBCD1\uD9A6\u0000\uD9A5\u0000\u0000\u0000\u0000\uD9AC" + // 17580 - 17589
"\uD9AE\u0000\uD9AB\uCAB9\uB4AB\u0000\uD8F3\u0000\uC9CB\uD8F6" + // 17590 - 17599
"\uC2D7\uD8F7\u0000\u0000\uCEB1\uD8F9\u0000\u0000\u0000\uB2AE" + // 17600 - 17609
"\uB9C0\u0000\uD9A3\u0000\uB0E9\u0000\uC1E6\u0000\uC9EC\u0000" + // 17610 - 17619
"\uCBC5\u0000\uCBC6\uD9A4\u0000\u0000\uB6AA\u0000\uC1BD\uD1CF" + // 17620 - 17629
"\u0000\uC9A5\uD8AD\u0000\uB8F6\uD1BE\uE3DC\uD6D0\u0000\u0000" + // 17630 - 17639
"\uB7E1\u0000\uB4AE\u0000\uC1D9\u0000\uD8BC\u0000\uCDE8\uB5A4" + // 17640 - 17649
"\uCEAA\uD6F7\u0000\uC0F6\uBED9\uD8AF\uCAB2\uC8CA\uD8EC\uD8EA" + // 17650 - 17659
"\uD8C6\uBDF6\uC6CD\uB3F0\u0000\uD8EB\uBDF1\uBDE9\u0000\uC8D4" + // 17660 - 17669
"\uB4D3\u0000\u0000\uC2D8\u0000\uB2D6\uD7D0\uCACB\uCBFB\uD5CC" + // 17670 - 17679
"\uB8B6\uCFC9\u0000\u0000\u0000\uD9DA\uD8F0\uC7AA\uD9EF\uCDF6" + // 17680 - 17689
"\uBFBA\u0000\uBDBB\uBAA5\uD2E0\uB2FA\uBAE0\uC4B6\u0000\uCFED" + // 17690 - 17699
"\uBEA9\uCDA4\uC1C1\u0000\u0000\u0000\uC7D7\uD9F1\u0000\uD9F4" + // 17700 - 17709
"\u0000\u0000\u0000\u0000\uC8CB\uD8E9\u0000\u0000\u0000\uD2DA" + // 17710 - 17719
"\uCFB0\uCFE7\u0000\u0000\u0000\u0000\uCAE9\u0000\u0000\uD8C0" + // 17720 - 17729
"\u0000\u0000\u0000\u0000\u0000\u0000\uC2F2\uC2D2\u0000\uC8E9" + // 17730 - 17739
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17740 - 17749
"\uC7AC\u0000\uC6F3\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17750 - 17759
"\uD8F8\uD2C1\u0000\u0000\uCEE9\uBCBF\uB7FC\uB7A5\uD0DD\u0000" + // 17760 - 17769
"\u0000\u0000\u0000\u0000\uD6DA\uD3C5\uBBEF\uBBE1\uD8F1\u0000" + // 17770 - 17779
"\u0000\uC9A1\uCEB0\uD2BB\uB6A1\u0000\uC6DF\u0000\u0000\u0000" + // 17780 - 17789
"\uCDF2\uD5C9\uC8FD\uC9CF\uCFC2\uD8A2\uB2BB\uD3EB\u0000\uD8A4" + // 17790 - 17799
"\uB3F3\u0000\uD7A8\uC7D2\uD8A7\uCAC0\u0000\uC7F0\uB1FB\uD2B5" + // 17800 - 17809
"\uB4D4\uB6AB\uCBBF\uD8A9\u0000\uD8EE\u0000\uB4FA\uC1EE\uD2D4" + // 17810 - 17819
"\u0000\u0000\uD8ED\u0000\uD2C7\uD8EF\uC3C7\u0000\u0000\u0000" + // 17820 - 17829
"\uD1F6\u0000\uD6D9\uD8F2\u0000\uD8F5\uBCFE\uBCDB\u0000\u0000" + // 17830 - 17839
"\u0000\uC8CE\u0000\uB7DD\u0000\uB7C2\uA2E5\uA2E6\uA2E7\uA2E8" + // 17840 - 17849
"\uA2E9\uA2EA\uA2EB\uA2EC\uA2ED\uA2EE\u0000\u0000\u0000\u0000" + // 17850 - 17859
"\u0000\u0000\u0000\uFEF8\u0000\u0000\u0000\u0000\u0000\u0000" + // 17860 - 17869
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uEBE3\u0000" + // 17870 - 17879
"\u0000\uB8AC\u0000\uCDD1\uEBE5\u0000\u0000\u0000\uEBE1\u0000" + // 17880 - 17889
"\uC1B3\u0000\u0000\u0000\u0000\u0000\uC6A2\u0000\uA5A1\uA5A2" + // 17890 - 17899
"\uA5A3\uA5A4\uA5A5\uA5A6\uA5A7\uA5A8\uA5A9\uA5AA\uA5AB\uA5AC" + // 17900 - 17909
"\uA5AD\uA5AE\uA5AF\uA5B0\uA5B1\uA5B2\uA5B3\uA5B4\uA5B5\uA5B6" + // 17910 - 17919
"\uA5B7\uA5B8\uA5B9\uA5BA\uA5BB\uA5BC\uA5BD\uA5BE\uA5BF\uA8E0" + // 17920 - 17929
"\uA8E1\uA8E2\uA8E3\uA8E4\uA8E5\uA8E6\uA8E7\uA8E8\uA8E9\u0000" + // 17930 - 17939
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17940 - 17949
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 17950 - 17959
"\u0000\uE6D5\u0000\uD9F8\u0000\u0000\uE6D6\u0000\u0000\u0000" + // 17960 - 17969
"\u0000\u0000\u0000\u0000\u0000\uE2DD\u0000\uE2DE\u0000\u0000" + // 17970 - 17979
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uDBC8\u0000\uD1D3" + // 17980 - 17989
"\uCDA2\u0000\u0000\uBDA8\u0000\u0000\u0000\uDEC3\uD8A5\uA5E0" + // 17990 - 17999
"\uA5E1\uA5E2\uA5E3\uA5E4\uA5E5\uA5E6\uA5E7\uA5E8\uA5E9\uA5EA" + // 18000 - 18009
"\uA5EB\uA5EC\uA5ED\uA5EE\uA5EF\uA5F0\uA5F1\uA5F2\uA5F3\uA5F4" + // 18010 - 18019
"\uA5F5\uA5F6\u0000\u0000\u0000\u0000\uA1A4\uFEED\uFEF1\uFEF2" + // 18020 - 18029
"\u0000\uA4A1\uA4A2\uA4A3\uA4A4\uA4A5\uA4A6\uA4A7\uA4A8\uA4A9" + // 18030 - 18039
"\uA4AA\uA4AB\uA4AC\uA4AD\uA4AE\uA4AF\uA4B0\uA4B1\uA4B2\uA4B3" + // 18040 - 18049
"\uA4B4\uA4B5\uA4B6\uA4B7\uA4B8\uA4B9\uA4BA\uA4BB\uA4BC\uA4BD" + // 18050 - 18059
"\uA4BE\uA4BF\uA5C0\uA5C1\uA5C2\uA5C3\uA5C4\uA5C5\uA5C6\uA5C7" + // 18060 - 18069
"\uA5C8\uA5C9\uA5CA\uA5CB\uA5CC\uA5CD\uA5CE\uA5CF\uA5D0\uA5D1" + // 18070 - 18079
"\uA5D2\uA5D3\uA5D4\uA5D5\uA5D6\uA5D7\uA5D8\uA5D9\uA5DA\uA5DB" + // 18080 - 18089
"\uA5DC\uA5DD\uA5DE\uA5DF\uA4E0\uA4E1\uA4E2\uA4E3\uA4E4\uA4E5" + // 18090 - 18099
"\uA4E6\uA4E7\uA4E8\uA4E9\uA4EA\uA4EB\uA4EC\uA4ED\uA4EE\uA4EF" + // 18100 - 18109
"\uA4F0\uA4F1\uA4F2\uA4F3\u0000\u0000\u0000\u0000\u0000\u0000" + // 18110 - 18119
"\u0000\uFEEF\uFEF0\uFEFB\uFEFC\u0000\uFEF9\u0000\u0000\u0000" + // 18120 - 18129
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18130 - 18139
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18140 - 18149
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uB3DD\uA4C0" + // 18150 - 18159
"\uA4C1\uA4C2\uA4C3\uA4C4\uA4C5\uA4C6\uA4C7\uA4C8\uA4C9\uA4CA" + // 18160 - 18169
"\uA4CB\uA4CC\uA4CD\uA4CE\uA4CF\uA4D0\uA4D1\uA4D2\uA4D3\uA4D4" + // 18170 - 18179
"\uA4D5\uA4D6\uA4D7\uA4D8\uA4D9\uA4DA\uA4DB\uA4DC\uA4DD\uA4DE" + // 18180 - 18189
"\uA4DF\uA1A1\uA1A2\uA1A3\uA1A8\u0000\uA1A9\uFEF5\uFEF6\uA1B4" + // 18190 - 18199
"\uA1B5\uA1B6\uA1B7\uA1B8\uA1B9\uA1BA\uA1BB\uA1BE\uA1BF\uFEF7" + // 18200 - 18209
"\uA1FE\uA1B2\uA1B3\uA1BC\uA1BD\u0000\u0000\u0000\u0000\u0000" + // 18210 - 18219
"\u0000\u0000\u0000\uC4AB\uB6D5\u0000\u0000\u0000\u0000\u0000" + // 18220 - 18229
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18230 - 18239
"\u0000\u0000\u0000\uDBD4\u0000\u0000\u0000\u0000\uF0AB\u0000" + // 18240 - 18249
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC6A4\u0000" + // 18250 - 18259
"\u0000\uD6E5\uF1E4\u0000\uF1E5\u0000\u0000\u0000\u0000\u0000" + // 18260 - 18269
"\u0000\u0000\u0000\u0000\u0000\uC3F3\uA1E2\u0000\uA1E1\u0000" + // 18270 - 18279
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18280 - 18289
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18290 - 18299
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF6A4" + // 18300 - 18309
"\u0000\uA7A7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18310 - 18319
"\u0000\u0000\u0000\u0000\u0000\u0000\uA7A1\uA7A2\uA7A3\uA7A4" + // 18320 - 18329
"\uA7A5\uA7A6\uA7A8\uA7A9\uA7AA\uA7AB\uA7AC\uA7AD\uA7AE\uA7AF" + // 18330 - 18339
"\uA7B0\uA7B1\uA1F6\uA1F5\u0000\u0000\u0000\u0000\u0000\u0000" + // 18340 - 18349
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18350 - 18359
"\uA1F8\uA1F7\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18360 - 18369
"\uFEFE\uFEFD\u0000\u0000\u0000\uF0CF\uBAD7\u0000\uF0D0\uF0D1" + // 18370 - 18379
"\uF0D2\uF0D3\uF0D4\uF0D5\uF0D6\uF0D8\u0000\u0000\uD3A5\uF0D7" + // 18380 - 18389
"\u0000\uF0D9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18390 - 18399
"\u0000\u0000\uF5BA\uC2B9\uA9E4\uA9E5\uA9E6\uA9E7\uA9E8\uA9E9" + // 18400 - 18409
"\uA9EA\uA9EB\uA9EC\uA9ED\uA9EE\uA9EF\u0000\u0000\u0000\u0000" + // 18410 - 18419
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18420 - 18429
"\u0000\u0000\u0000\u0000\u0000\u0000\uFEF3\u0000\u0000\u0000" + // 18430 - 18439
"\uA1AA\uA1AA\uA1AC\u0000\uA1AE\uA1AF\u0000\u0000\uA1B0\uA1B1" + // 18440 - 18449
"\u0000\u0000\u0000\uF7E0\u0000\u0000\u0000\u0000\u0000\u0000" + // 18450 - 18459
"\u0000\u0000\u0000\u0000\u0000\uDBCB\u0000\u0000\uD8AA\u0000" + // 18460 - 18469
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE5F7\uB9ED\u0000" + // 18470 - 18479
"\u0000\u0000\uF5D0\uF5D3\u0000\u0000\u0000\uBFE7\u0000\uB9F2" + // 18480 - 18489
"\uF5BC\uF5CD\u0000\u0000\uC2B7\u0000\u0000\u0000\uCCF8\u0000" + // 18490 - 18499
"\uBCF9\u0000\uF5CE\uF5CF\uF5D1\uB6E5\uF5D2\u0000\uF5D5\u0000" + // 18500 - 18509
"\u0000\u0000\uC8FA\uF6F9\uF6FA\uF6FB\uF6FC\u0000\u0000\uF6FD" + // 18510 - 18519
"\uF6FE\uF7A1\uF7A2\uF7A3\uF7A4\uF7A5\u0000\u0000\uF7A6\uF7A7" + // 18520 - 18529
"\uF7A8\uB1EE\uF7A9\uF7AA\uF7AB\u0000\u0000\uF7AC\uF7AD\uC1DB" + // 18530 - 18539
"\uF7AE\uA9C4\uA9C5\uA9C6\uA9C7\uA9C8\uA9C9\uA9CA\uA9CB\uA9CC" + // 18540 - 18549
"\uA9CD\uA9CE\uA9CF\uA9D0\uA9D1\uA9D2\uA9D3\uA9D4\uA9D5\uA9D6" + // 18550 - 18559
"\uA9D7\uA9D8\uA9D9\uA9DA\uA9DB\uA9DC\uA9DD\uA9DE\uA9DF\uA9E0" + // 18560 - 18569
"\uA9E1\uA9E2\uA9E3\uA9A4\uA9A5\uA9A6\uA9A7\uA9A8\uA9A9\uA9AA" + // 18570 - 18579
"\uA9AB\uA9AC\uA9AD\uA9AE\uA9AF\uA9B0\uA9B1\uA9B2\uA9B3\uA9B4" + // 18580 - 18589
"\uA9B5\uA9B6\uA9B7\uA9B8\uA9B9\uA9BA\uA9BB\uA9BC\uA9BD\uA9BE" + // 18590 - 18599
"\uA9BF\uA9C0\uA9C1\uA9C2\uA9C3\uA2D1\uA2D2\uA2D3\uA2D4\uA2D5" + // 18600 - 18609
"\uA2D6\uA2D7\uA2D8\uA2B1\uA2B2\uA2B3\uA2B4\uA2B5\uA2B6\uA2B7" + // 18610 - 18619
"\uA2B8\uA2B9\uA2BA\uA2BB\uA2BC\uA2BD\uA2BE\uA2BF\uA2C0\uA2C1" + // 18620 - 18629
"\uA2C2\uA2C3\uA2C4\u0000\u0000\u0000\u0000\u0000\uC7E5\u0000" + // 18630 - 18639
"\u0000\u0000\u0000\uD4A8\u0000\uE4CB\uD7D5\uE4C2\u0000\uBDA5" + // 18640 - 18649
"\uE4C5\u0000\u0000\uD3E6\u0000\uE4C9\uC9F8\u0000\u0000\uE4BE" + // 18650 - 18659
"\u0000\u0000\uD3E5\u0000\u0000\u0000\uD7D7\u0000\u0000\u0000" + // 18660 - 18669
"\u0000\uF7DC\u0000\u0000\u0000\u0000\u0000\u0000\uF7DD\u0000" + // 18670 - 18679
"\u0000\u0000\uF7DE\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18680 - 18689
"\u0000\u0000\u0000\u0000\uF7DF\uA2D9\uA2DA\uA2DB\uA2DC\uA2DD" + // 18690 - 18699
"\uA2DE\uA2DF\uA2E0\uA2E1\uA2E2\u0000\u0000\u0000\u0000\u0000" + // 18700 - 18709
"\u0000\u0000\u0000\u0000\u0000\uA2C5\uA2C6\uA2C7\uA2C8\uA2C9" + // 18710 - 18719
"\uA2CA\uA2CB\uA2CC\uA2CD\uA2CE\uA2CF\uA2D0\uA1D9\uA1D4\u0000" + // 18720 - 18729
"\u0000\uA1DC\uA1DD\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18730 - 18739
"\u0000\uA1DA\uA1DB\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18740 - 18749
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE8A9" + // 18750 - 18759
"\u0000\u0000\uB9E5\u0000\u0000\u0000\u0000\u0000\uD1FE\uE8A8" + // 18760 - 18769
"\u0000\u0000\u0000\u0000\u0000\u0000\uE8AA\u0000\uA8A1\u0000" + // 18770 - 18779
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18780 - 18789
"\u0000\u0000\u0000\u0000\u0000\u0000\uA8A5\u0000\u0000\u0000" + // 18790 - 18799
"\u0000\u0000\u0000\u0000\uA8A7\u0000\u0000\u0000\u0000\u0000" + // 18800 - 18809
"\uEBA9\uEBAB\uEBAA\u0000\u0000\u0000\u0000\u0000\uEBAC\u0000" + // 18810 - 18819
"\uCACF\uD8B5\uC3F1\u0000\uC3A5\uC6F8\uEBAD\uC4CA\u0000\uEBAE" + // 18820 - 18829
"\uEBAF\uEBB0\uB7D5\u0000\u0000\u0000\uB7FA\uA1CF\u0000\u0000" + // 18830 - 18839
"\u0000\u0000\uA1CE\u0000\uA1C4\uA1C5\uA1C9\uA1C8\uA1D2\u0000" + // 18840 - 18849
"\u0000\uA1D3\u0000\u0000\u0000\u0000\u0000\uA1E0\uA1DF\uA1C3" + // 18850 - 18859
"\uA1CB\u0000\u0000\u0000\u0000\u0000\uA1D7\u0000\u0000\u0000" + // 18860 - 18869
"\uE2BB\u0000\uBCA2\u0000\uE2BC\uE2BD\uE2BE\uE2BF\uE2C0\uE2C1" + // 18870 - 18879
"\uB7B9\uD2FB\uBDA4\uCACE\uB1A5\uCBC7\u0000\uE2C2\uB6FC\uC8C4" + // 18880 - 18889
"\uE2C3\u0000\u0000\uBDC8\u0000\uB1FD\uE2C4\u0000\uB6F6\uA2F1" + // 18890 - 18899
"\uA2F2\uA2F3\uA2F4\uA2F5\uA2F6\uA2F7\uA2F8\uA2F9\uA2FA\uA2FB" + // 18900 - 18909
"\uA2FC\u0000\u0000\u0000\u0000\uFEE0\uFEE1\uFEE2\uFEE3\uFEE4" + // 18910 - 18919
"\uFEE5\uFEE6\uFEE7\uFEE8\uFEE9\u0000\u0000\u0000\u0000\u0000" + // 18920 - 18929
"\u0000\u0000\uD3AC\uF2E5\uB2F5\u0000\u0000\uF2F2\u0000\uD0AB" + // 18930 - 18939
"\u0000\u0000\u0000\u0000\uF2F5\u0000\u0000\u0000\uBBC8\u0000" + // 18940 - 18949
"\uF2F9\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE5C0\u0000" + // 18950 - 18959
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18960 - 18969
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 18970 - 18979
"\u0000\u0000\u0000\uA1C1\u0000\u0000\u0000\u0000\u0000\u0000" + // 18980 - 18989
"\u0000\u0000\uEFFA\u0000\u0000\uE1D3\uE1D2\uC7B6\u0000\u0000" + // 18990 - 18999
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE1C9" + // 19000 - 19009
"\u0000\u0000\uE1CE\u0000\uE1D0\u0000\u0000\u0000\uDBB9\u0000" + // 19010 - 19019
"\u0000\uDBBA\u0000\u0000\uD3CF\uF4FA\uC7F5\uD7C3\uC5E4\uF4FC" + // 19020 - 19029
"\uF4FD\uF4FB\u0000\uBEC6\u0000\u0000\u0000\u0000\uD0EF\u0000" + // 19030 - 19039
"\u0000\uB7D3\u0000\u0000\uD4CD\uCCAA\u0000\u0001\u0002\u0003" + // 19040 - 19049
"\u0004\u0005\u0006\u0007\u0008\u0009\n\u000B\u000C\r" + // 19050 - 19059
"\u000E\u000F\u0010\u0011\u0012\u0013\u0014\u0015\u0016\u0017" + // 19060 - 19069
"\u0018\u0019\u001A\u001B\u001C\u001D\u001E\u001F\uA7E2\uA7E3" + // 19070 - 19079
"\uA7E4\uA7E5\uA7E6\uA7E7\uA7E8\uA7E9\uA7EA\uA7EB\uA7EC\uA7ED" + // 19080 - 19089
"\uA7EE\uA7EF\uA7F0\uA7F1\u0000\uA7D7\u0000\u0000\u0000\u0000" + // 19090 - 19099
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19100 - 19109
"\uC8AE\uE1EB\u0000\uB7B8\uE1EC\u0000\u0000\u0000\uE1ED\u0000" + // 19110 - 19119
"\uD7B4\uE1EE\uE1EF\uD3CC\u0000\u0000\u0000\u0000\u0000\u0000" + // 19120 - 19129
"\u0000\uDEBE\u0000\uDEC0\u0000\u0000\u0000\u0000\u0000\u0000" + // 19130 - 19139
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uD5BA\u0000" + // 19140 - 19149
"\u0000\u0000\uDEC2\u0000\u0000\u0000\u0000\uD0FE\u0000\u0000" + // 19150 - 19159
"\uC2CA\u0000\uD3F1\u0000\uCDF5\u0000\u0000\uE7E0\u0000\u0000" + // 19160 - 19169
"\uE7E1\u0000\u0000\u0000\u0000\uBEC1\u0000\u0000\u0000\u0000" + // 19170 - 19179
"\uC2EA\u0000\u0000\u0000\uE7E4\uA7B2\uA7B3\uA7B4\uA7B5\uA7B6" + // 19180 - 19189
"\uA7B7\uA7B8\uA7B9\uA7BA\uA7BB\uA7BC\uA7BD\uA7BE\uA7BF\uA7C0" + // 19190 - 19199
"\uA7C1\uA7D1\uA7D2\uA7D3\uA7D4\uA7D5\uA7D6\uA7D8\uA7D9\uA7DA" + // 19200 - 19209
"\uA7DB\uA7DC\uA7DD\uA7DE\uA7DF\uA7E0\uA7E1\uA6D0\uA6D1\u0000" + // 19210 - 19219
"\uA6D2\uA6D3\uA6D4\uA6D5\uA6D6\uA6D7\uA6D8\u0000\u0000\u0000" + // 19220 - 19229
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19230 - 19239
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC3BD" + // 19240 - 19249
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uC3C4\uE6C2\u0000" + // 19250 - 19259
"\u0000\u0000\u0000\u0000\uBDF2\u0000\uE4A2\u0000\u0000\uBAE9" + // 19260 - 19269
"\uE4AA\u0000\u0000\uE4AC\u0000\u0000\uB6FD\uD6DE\uE4B2\u0000" + // 19270 - 19279
"\uE4AD\u0000\u0000\u0000\uE4A1\u0000\uBBEE\uCDDD\uC7A2\uC5C9" + // 19280 - 19289
"\u0000\u0000\uF5B0\uF5B1\u0000\u0000\u0000\u0000\u0000\u0000" + // 19290 - 19299
"\uF5B2\u0000\u0000\uF5B3\uF5B4\uF5B5\u0000\u0000\u0000\u0000" + // 19300 - 19309
"\uF5B7\uF5B6\u0000\u0000\u0000\u0000\uF5B8\u0000\u0000\u0000" + // 19310 - 19319
"\u0000\u0000\uB9CA\u0000\u0000\uD0A7\uF4CD\u0000\u0000\uB5D0" + // 19320 - 19329
"\u0000\u0000\uC3F4\u0000\uBEC8\u0000\u0000\u0000\uEBB7\uB0BD" + // 19330 - 19339
"\u0000\u0000\uBDCC\u0000\uC1B2\u0000\uB1D6\uB3A8\u0000\u0000" + // 19340 - 19349
"\uF7AF\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19350 - 19359
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19360 - 19369
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19370 - 19379
"\u0000\uF6C9\u0000\u0000\uF7E4\u0000\u0000\u0000\u0000\uF7E5" + // 19380 - 19389
"\uF7E6\u0000\u0000\uF7E7\u0000\u0000\u0000\u0000\u0000\u0000" + // 19390 - 19399
"\uF7E8\uC2B4\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19400 - 19409
"\u0000\uF7EA\u0000\uF7EB\uA6B0\uA6B1\u0000\uA6B2\uA6B3\uA6B4" + // 19410 - 19419
"\uA6B5\uA6B6\uA6B7\uA6B8\u0000\u0000\u0000\u0000\u0000\u0000" + // 19420 - 19429
"\u0000\uA6C1\uA6C2\uA6C3\uA6C4\uA6C5\uA6C6\uA6C7\uA6C8\uA6C9" + // 19430 - 19439
"\uA6CA\uA6CB\uA6CC\uA6CD\uA6CE\uA6CF\uA8A4\uA8A2\u0000\u0000" + // 19440 - 19449
"\u0000\u0000\u0000\u0000\uA8A8\uA8A6\uA8BA\u0000\uA8AC\uA8AA" + // 19450 - 19459
"\u0000\u0000\u0000\u0000\uA8B0\uA8AE\u0000\u0000\u0000\uA1C2" + // 19460 - 19469
"\u0000\uA8B4\uA8B2\u0000\uA8B9\u0000\u0000\u0000\u0000\uCFA8" + // 19470 - 19479
"\u0000\u0000\u0000\u0000\u0000\uD0DC\u0000\u0000\u0000\u0000" + // 19480 - 19489
"\uD1AC\u0000\u0000\u0000\u0000\uC8DB\u0000\u0000\u0000\uECD6" + // 19490 - 19499
"\uCEF5\u0000\u0000\u0000\u0000\u0000\uCAEC\u0080\u0081\u0082" + // 19500 - 19509
"\u0083\u0084\u0085\u0086\u0087\u0088\u0089\u008A\u008B\u008C" + // 19510 - 19519
"\u008D\u0000\u0000\u0090\u0091\u0092\u0093\u0094\u0095\u0096" + // 19520 - 19529
"\u0097\u0098\u0099\u009A\u009B\u009C\u009D\u009E\u009F\u0060" + // 19530 - 19539
"\u0061\u0062\u0063\u0064\u0065\u0066\u0067\u0068\u0069\u006A" + // 19540 - 19549
"\u006B\u006C\u006D\u006E\u006F\u0070\u0071\u0072\u0073\u0074" + // 19550 - 19559
"\u0075\u0076\u0077\u0078\u0079\u007A\u007B\u007C\u007D\u007E" + // 19560 - 19569
"\u007F\u0040\u0041\u0042\u0043\u0044\u0045\u0046\u0047\u0048" + // 19570 - 19579
"\u0049\u004A\u004B\u004C\u004D\u004E\u004F\u0050\u0051\u0052" + // 19580 - 19589
"\u0053\u0054\u0055\u0056\u0057\u0058\u0059\u005A\u005B\\" + // 19590 - 19599
"\u005D\u005E\u005F\u0020\u0021\"\u0023\u0024\u0025\u0026" + // 19600 - 19609
"\u0027\u0028\u0029\u002A\u002B\u002C\u002D\u002E\u002F\u0030" + // 19610 - 19619
"\u0031\u0032\u0033\u0034\u0035\u0036\u0037\u0038\u0039\u003A" + // 19620 - 19629
"\u003B\u003C\u003D\u003E\u003F\u0000\uB6B8\uD4BA\u0000\uB3FD" + // 19630 - 19639
"\u0000\u0000\uDAED\uD4C9\uCFD5\uC5E3\u0000\uDAEE\u0000\u0000" + // 19640 - 19649
"\u0000\u0000\u0000\uDAEF\u0000\uDAF0\uC1EA\uCCD5\uCFDD\u0000" + // 19650 - 19659
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uCEC4\u0000\u0000" + // 19660 - 19669
"\u0000\uD5AB\uB1F3\u0000\u0000\u0000\uECB3\uB0DF\u0000\uECB5" + // 19670 - 19679
"\u0000\u0000\u0000\uB6B7\u0000\uC1CF\u0000\uF5FA\uD0B1\u0000" + // 19680 - 19689
"\u0000\uD5E5\u0000\uF7D5\u0000\u0000\u0000\u0000\uF7D6\u0000" + // 19690 - 19699
"\u0000\u0000\u0000\uF7D8\u0000\uF7DA\u0000\uF7D7\u0000\u0000" + // 19700 - 19709
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uF7DB\u0000\uF7D9" + // 19710 - 19719
"\u0000\u0000\u0000\u0000\uC3BA\u0000\uECE3\uD5D5\uECD0\u0000" + // 19720 - 19729
"\u0000\u0000\u0000\u0000\uD6F3\u0000\u0000\u0000\uECD2\uECCE" + // 19730 - 19739
"\u0000\u0000\u0000\u0000\uECD4\u0000\uECD5\u0000\u0000\uC9BF" + // 19740 - 19749
"\u0000\u0000\uB6F5\u0000\uDBB2\u0000\u0000\u0000\u0000\u0000" + // 19750 - 19759
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 19760 - 19769
"\u0000\u0000\u0000\u0000\u0000\uB1C9\u0000\u0000\u0000\u0000" + // 19770 - 19779
"\uDBB4\u0000\uDAFA\uD0CF\uC4C7\u0000\u0000\uB0EE\u0000\u0000" + // 19780 - 19789
"\u0000\uD0B0\u0000\uDAF9\u0000\uD3CA\uBAAA\uDBA2\uC7F1\u0000" + // 19790 - 19799
"\uDAFC\uDAFB\uC9DB\uDAFD\u0000\uDBA1\uD7DE\uDAFE\uC1DA\u0000" + // 19800 - 19809
"\u0000\uDBA5\u0000\uB9B1\uB2C6\uD4F0\uCFCD\uB0DC\uD5CB\uBBF5" + // 19810 - 19819
"\uD6CA\uB7B7\uCCB0\uC6B6\uB1E1\uB9BA\uD6FC\uB9E1\uB7A1\uBCFA" + // 19820 - 19829
"\uEADA\uEADB\uCCF9\uB9F3\uEADC\uB4FB\uC3B3\uB7D1\uBAD8\uEADD" + // 19830 - 19839
"\uD4F4\uEADE\uBCD6\uBBDF\u0000\uBFFD\uBBEA\uF7C9\uC6C7\uF7C8" + // 19840 - 19849
"\u0000\uF7CA\uF7CC\uF7CB\u0000\u0000\u0000\uF7CD\u0000\uCEBA" + // 19850 - 19859
"\u0000\uF7CE\u0000\u0000\uC4A7\u0000\u0000\u0000\u0000\u0000" + // 19860 - 19869
"\u0000\u0000\u0000\u0000\u0000\u0000\uB7AE\u0000\u0000\u0000" + // 19870 - 19879
"\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\u0000\uE9CB" + // 19880 - 19889
"\uE9CC\u0000\u0000\u0000\u0000\u0000\u0000\uD5C1\u0000\uC2B3" + // 19890 - 19899
"\uF6D0\u0000\u0000\uF6D1\uF6D2\uF6D3\uF6D4\u0000\u0000\uF6D6" + // 19900 - 19909
"\u0000\uB1AB\uF6D7\u0000\uF6D8\uF6D9\uF6DA\u0000\uF6DB\uF6DC" + // 19910 - 19919
"\u0000\u0000\u0000\u0000\uF6DD\uF6DE\uCFCA\u0000\uF6DF\uF6E0" + // 19920 - 19929
"\u0000\uF0BE\uF0BF\uBEE9\uF0C0\uB6EC\uF0C1\uF0C2\uF0C3\uF0C4" + // 19930 - 19939
"\uC8B5\uF0C5\uF0C6\u0000\uF0C7\uC5F4\u0000\uF0C8\u0000\u0000" + // 19940 - 19949
"\u0000\uF0C9\u0000\uF0CA\uF7BD\u0000\uF0CB\uF0CC\uF0CD\u0000" + // 19950 - 19959
"\uF0CE\u0000\uBFA4\uDBAB\u0000\u0000\u0000\uDBAA\uD4C7\uB2BF" + // 19960 - 19969
"\u0000\u0000\uDBAF\u0000\uB9F9\u0000\uDBB0\u0000\u0000\u0000" + // 19970 - 19979
"\u0000\uB3BB\u0000\u0000\u0000\uB5A6\u0000\u0000\u0000\u0000" + // 19980 - 19989
"\uB6BC\uDBB1\u0000\uB3C3\u0000\u0000\uF4F2\uB3AC\u0000\u0000" + // 19990 - 19999
"\u0000\u0000\uD4BD\uC7F7\u0000\u0000\u0000\u0000\u0000\uF4F4" + // 20000 - 20009
"\u0000\u0000\uF4F3\u0000\u0000\u0000\u0000\u0000\u0000\u0000" + // 20010 - 20019
"\u0000\u0000\u0000\uCCCB\u0000\uA3A1\uA3A2\uA3A3\uA1E7\uA3A5" + // 20020 - 20029
"\uA3A6\uFEEC\uA3A8\uA3A9\uA3AA\uA3AB\uA3AC\uA3AD\uA3AE\uA3AF" + // 20030 - 20039
"\uA3B0\uA3B1\uA3B2\uA3B3\uA3B4\uA3B5\uA3B6\uA3B7\uA3B8\uA3B9" + // 20040 - 20049
"\uA3BA\uA3BB\uA3BC\uA3BD\uA3BE\uA3BF"
;
}
}
}
|
[
"[email protected]"
] | |
eb6bb541a4c19669309cac02641677a72fc15983
|
bff7caef94b3283bb4b15f6e1d50cddd70e4dc8c
|
/src/main/java/com/swistak/CookBook/model/Security/UserRole.java
|
fda7cb4cb9e8fc51758bf43812cfd148cf1bfa65
|
[] |
no_license
|
Swistak06/CookBook
|
22c015f238231eeeefd6afa6823baf375e1b798f
|
7c3968ff4d1db1bc1af6254a9b8cda45182ad44b
|
refs/heads/master
| 2020-03-25T00:13:46.253629 | 2019-02-25T10:19:19 | 2019-02-25T10:19:19 | 143,174,937 | 0 | 0 | null | 2019-02-25T10:19:22 | 2018-08-01T15:30:08 |
Java
|
UTF-8
|
Java
| false | false | 910 |
java
|
package com.swistak.CookBook.model.Security;
import com.swistak.CookBook.model.User;
import javax.persistence.*;
@Entity
@Table(name = "user_roles")
public class UserRole {
@Id
@GeneratedValue
@Column(name = "user_role_id")
private long id;
@ManyToOne
@JoinColumn(name = "user_id")
private User user;
@ManyToOne
@JoinColumn(name = "role_id")
private Role role;
public UserRole() {
}
public UserRole(User user, Role role) {
this.user = user;
this.role = role;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Role getRole() {
return role;
}
public void setRole(Role role) {
this.role = role;
}
}
|
[
"[email protected]"
] | |
c9eb4e7b110d52805693a28c53f3dcd19a61d210
|
73d2a88310ada9bdb2a0b1fbf17bbc40d7d8eaff
|
/Task(2)/GeneralizedAnxiety.java
|
00c2db11782eb29a97bcaf5ea8c1a289ec30d8d7
|
[] |
no_license
|
YasmeenMedhat/Android-Development-Booster
|
9694d30a8a32e6405f829edb313892953d3c4492
|
43264ea3e8fc99b189080cf2c2e9adb510639f9a
|
refs/heads/main
| 2023-07-16T21:16:20.258801 | 2021-09-06T15:23:14 | 2021-09-06T15:23:14 | 402,402,244 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 838 |
java
|
package anxietyawareness;
public class GeneralizedAnxiety extends Anxiety {
String definition="This is when someone feels anxious and worried most of the time, over lots of different things.";
String symptoms= "-Heart beating faster\n" +
"-Chest tightness\n" +
"-Stomach problems\n" +
"-Sweaty palms\n" +
"-Difficulty sleeping\n" +
"-Difficulty eating";
String advice="Learn to calm and manage the physical symptoms of anxiety and free yourself of worry. Think about what do you need help with? Is it dealing with your emotions? managing your worries? reacting to them? managing physical responses to Anxiety?";
@Override
public String definition()
{
return definition;
}
@Override
public String displaySymptoms()
{
return symptoms;
}
@Override
public String reflectByAdvice()
{
return advice;
}
}
|
[
"[email protected]"
] | |
f521f8aad17dd111988c87aa22cd53f12b0d9e0d
|
581de6e4378c6c2e65ddf69355e1a35b23cb7578
|
/app/models/api/responses/cluster/RadioSummaryResponse.java
|
a37aecb5370f17c9d2d8cd7b82c85d60684ba167
|
[] |
no_license
|
gwyden/graylog2-web-interface
|
a7f03bff1dbbe739f641dc325f7370f7a8befdee
|
68c7219c41bcf75acc7c88430cdce4e5535624ce
|
refs/heads/master
| 2021-01-21T09:52:47.616259 | 2014-04-25T15:54:23 | 2014-04-25T15:54:23 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 961 |
java
|
/**
* Copyright 2013 Lennart Koopmann <[email protected]>
*
* This file is part of Graylog2.
*
* Graylog2 is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Graylog2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Graylog2. If not, see <http://www.gnu.org/licenses/>.
*
*/
package models.api.responses.cluster;
import com.google.gson.annotations.SerializedName;
/**
* @author Lennart Koopmann <[email protected]>
*/
public class RadioSummaryResponse extends ClusterEntitySummaryResponse {
}
|
[
"[email protected]"
] | |
5009edc8ae88713c77648dd898cb290b5b356f37
|
69de9958cbb9cd072eb837169d4d51afbfc84b0d
|
/cs/src/main/java/com/bsd/cse/model/input/PeriodTeamValue.java
|
ac0094b9a973e09fea6f4ab4592bda61a4cd41a9
|
[] |
no_license
|
bento0013/BB
|
2bc7db95285eeba32669116cc3c27ece058d795a
|
caf52e18d3975818a40fafe6881d64b5ee2813be
|
refs/heads/master
| 2016-09-05T13:46:07.169658 | 2014-11-22T17:49:32 | 2014-11-22T17:49:32 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 694 |
java
|
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.bsd.cse.model.input;
import com.bsd.cse.model.AbstractPojo;
/**
*
* @author bento
*/
public class PeriodTeamValue extends AbstractPojo{
private static final long serialVersionUID = 5863228427640897586L;
private Integer period;
private String teamName;
public Integer getPeriod() {
return period;
}
public void setPeriod(Integer period) {
this.period = period;
}
public String getTeamName() {
return teamName;
}
public void setTeamName(String teamName) {
this.teamName = teamName;
}
}
|
[
"[email protected]"
] | |
6342f701ed7bcc6c1d2808075fafedd0302a308f
|
eab06b48df2b63005150c10f1afc4d8bec9a3543
|
/src/test/java/code/code150/question149/SolutionTest.java
|
7acbfdf06339d23b7aadfc6952d152baf4c4a7e3
|
[] |
no_license
|
AziCat/leetcode-java
|
a0ca9db9663e1a86d82ffaa5fe34326ff1a0b441
|
0263ac668717a07ad4245edbb6d34db24b63b343
|
refs/heads/master
| 2023-04-30T18:19:13.100433 | 2023-04-19T08:04:14 | 2023-04-19T08:04:14 | 217,955,860 | 0 | 0 | null | 2020-10-14T02:48:50 | 2019-10-28T03:04:58 |
Java
|
UTF-8
|
Java
| false | false | 1,118 |
java
|
package code.code150.question149;
import org.junit.Assert;
import org.junit.Test;
import static org.junit.Assert.*;
public class SolutionTest {
@Test
public void maxPoints() throws Exception {
Solution solution = new Solution();
int[][] points = {};
Assert.assertEquals(0, solution.maxPoints(points));
}
@Test
public void maxPoints1() throws Exception {
Solution solution = new Solution();
int[][] points = {
{1, 1}, {2, 2}, {1, 1}
};
Assert.assertEquals(3, solution.maxPoints(points));
}
@Test
public void maxPoints12() throws Exception {
Solution solution = new Solution();
int[][] points = {
{1, 1}, {3, 2}, {5, 3}, {4, 1}, {2, 3}, {1, 4}
};
Assert.assertEquals(4, solution.maxPoints(points));
}
@Test
public void maxPoints212() throws Exception {
Solution solution = new Solution();
int[][] points = {
{3, 10}, {0, 2}, {3, 10}, {0, 2}
};
Assert.assertEquals(4, solution.maxPoints(points));
}
}
|
[
"[email protected]"
] | |
8e4ecd8b025892b82ea91bad2a2016f91a9fdc15
|
c0b312c7418f22ccbe1b1b3358667838e00b6243
|
/src/com/gridscape/sep/org/zigbee/sep/TargetReduction.java
|
cef44704529d021fb59c4484a63358a5c09f5da4
|
[] |
no_license
|
rahul-me/e-ope
|
cb8005ad93dfe9b5b2f792379f33b678c1bc76a3
|
3b2e76c3c0109ab10eb2caf013ed541ed54fb260
|
refs/heads/master
| 2022-04-16T18:17:45.953574 | 2020-04-10T17:44:41 | 2020-04-10T17:44:41 | 254,696,703 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,180 |
java
|
package com.gridscape.sep.org.zigbee.sep;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* The TargetReduction object is used by a Demand Response service provider to provide a RECOMMENDED threshold that a device/premises should maintain its consumption below. For example, a service provider can provide a RECOMMENDED threshold of some kWh for a 3-hour event. This means that the device/premises would maintain its consumption below the specified limit for the specified period.
*
* <p>Java class for TargetReduction complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="TargetReduction">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="type" type="{http://zigbee.org/sep}UnitType"/>
* <element name="value" type="{http://zigbee.org/sep}UInt16"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "TargetReduction", propOrder = {
"type",
"value"
})
public class TargetReduction {
@XmlElement(required = true)
protected UnitType type;
protected int value;
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link UnitType }
*
*/
public UnitType getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link UnitType }
*
*/
public void setType(UnitType value) {
this.type = value;
}
/**
* Gets the value of the value property.
*
*/
public int getValue() {
return value;
}
/**
* Sets the value of the value property.
*
*/
public void setValue(int value) {
this.value = value;
}
}
|
[
"[email protected]"
] | |
c64c232947f77a96f49e2bdcc583e5476906b018
|
9a545ee087d5691640a1aada93d2d23013f08fe7
|
/Football_Scores-master/app/src/main/java/com/thirdarm/footballscores/provider/bteam/BteamContentValues.java
|
df53a4e856181de6e88419f1f6982140c10afce1
|
[] |
no_license
|
rdayala/SuperDuo
|
c54e242e155e0da1cad22d772f96206b4b3494a9
|
24f495e3404085785c8e0148325622d73bb028d0
|
refs/heads/master
| 2021-01-10T05:03:26.088955 | 2016-02-10T05:56:02 | 2016-02-10T05:56:02 | 51,304,193 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,339 |
java
|
/*
* Created by rdayala
*
* Content provider files generated using Benoit Lubek's (BoD)
* Android ContentProvider Generator.
* (url: https://github.com/BoD/android-contentprovider-generator)
*/
package com.thirdarm.footballscores.provider.bteam;
import android.content.ContentResolver;
import android.content.Context;
import android.net.Uri;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import com.thirdarm.footballscores.provider.base.AbstractContentValues;
/**
* Content values wrapper for the {@code bteam} table.
*/
public class BteamContentValues extends AbstractContentValues {
@Override
public Uri uri() {
return BteamColumns.CONTENT_URI;
}
/**
* Update row(s) using the values stored by this object and the given selection.
*
* @param contentResolver The content resolver to use.
* @param where The selection to use (can be {@code null}).
*/
public int update(ContentResolver contentResolver, @Nullable BteamSelection where) {
return contentResolver.update(uri(), values(), where == null ? null : where.sel(), where == null ? null : where.args());
}
/**
* Update row(s) using the values stored by this object and the given selection.
*
* @param context The content resolver to use.
* @param where The selection to use (can be {@code null}).
*/
public int update(Context context, @Nullable BteamSelection where) {
return context.getContentResolver().update(uri(), values(), where == null ? null : where.sel(), where == null ? null : where.args());
}
/**
* The name of the team. (String, Not nullable)
*/
public BteamContentValues putName(@NonNull String value) {
if (value == null) throw new IllegalArgumentException("name must not be null");
mContentValues.put(BteamColumns.NAME, value);
return this;
}
/**
* The short name of the team. (String, Nullable)
*/
public BteamContentValues putShortname(@Nullable String value) {
mContentValues.put(BteamColumns.SHORTNAME, value);
return this;
}
public BteamContentValues putShortnameNull() {
mContentValues.putNull(BteamColumns.SHORTNAME);
return this;
}
/**
* The code name of the team. (String, Nullable)
*/
public BteamContentValues putCode(@Nullable String value) {
mContentValues.put(BteamColumns.CODE, value);
return this;
}
public BteamContentValues putCodeNull() {
mContentValues.putNull(BteamColumns.CODE);
return this;
}
/**
* The squad market value of the team. (String, Nullable)
*/
public BteamContentValues putValue(@Nullable String value) {
mContentValues.put(BteamColumns.VALUE, value);
return this;
}
public BteamContentValues putValueNull() {
mContentValues.putNull(BteamColumns.VALUE);
return this;
}
/**
* The team's crest url. (String, Nullable)
*/
public BteamContentValues putCresturl(@Nullable String value) {
mContentValues.put(BteamColumns.CRESTURL, value);
return this;
}
public BteamContentValues putCresturlNull() {
mContentValues.putNull(BteamColumns.CRESTURL);
return this;
}
}
|
[
"[email protected]"
] | |
36add849b22d9024038601791dd48121ac29a667
|
1b0c578992559628dc9b5f7c3abaf0d467a23899
|
/src/chapter08/FindNearestPoints.java
|
ad93625f329ab8feb951c50cb86680964ee6ad4a
|
[] |
no_license
|
RomaniEzzatYoussef/Exercises
|
c9897b92507abf2d7ddc79f7e05b8b3d208f1dad
|
396900c05dac95954f7ddbc424c5023deb562242
|
refs/heads/master
| 2020-09-25T05:52:16.701228 | 2019-12-13T19:26:12 | 2019-12-13T19:26:12 | 225,932,027 | 1 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,378 |
java
|
package chapter08;
import java.util.Scanner;
/**
*
* 07/12/2017 11:45:10 PM
*
* @author roman
*
*
* FindNearestPoints
*
*/
public class FindNearestPoints {
/**
* @param args
*/
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.print("Enter the number of points: ");
int numPoints = input.nextInt();
double[][] points = new double[numPoints][2];
for (int r = 0; r < points.length; r++)
{
points[r][0] = Math.random() * 100;
points[r][1] = Math.random() * 100;
}
int p1 = 0;
int p2 = 1; // Initial two points
double shortestDistance = distance(points[p1][0], points[p1][1], points[p2][0], points[p2][1]);
for (int i = 0; i < points.length; i++)
{
for (int j = i + 1; j < points.length; j++)
{
double distance = distance(points[i][0], points[i][1], points[j][0], points[j][1]);
if (shortestDistance > distance)
{
p1 = i; // Update p1
p2 = j; // Update p2
shortestDistance = distance;
}
}
}
System.out.println("The closest two points are " + "(" + points[p1][0] + ", " + points[p1][1] + ") and (" + points[p2][0] + ", " + points[p2][1] + ")");
input.close();
}
public static double distance(double x1, double y1, double x2, double y2)
{
return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));
}
}
|
[
"[email protected]"
] | |
8c887295a0e97e2421bdc58d8d76c7e542a9a087
|
219eec8263776f759d315eb44204e85ac78be117
|
/orderitem-2/src/main/java/com/zkdj/orderitem/util/EmailUtil.java
|
39e648c107d1c1df09ea0ea61fe48a9639c848ad
|
[] |
no_license
|
GoGoGoljc/tesco
|
cb4bebae6f962bf4b0d936765353074a75d24f0f
|
3da2c14216529501130a70144bbea3d19be520e8
|
refs/heads/master
| 2022-11-14T11:19:05.382728 | 2020-07-02T15:53:40 | 2020-07-02T15:53:40 | 276,685,995 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 752 |
java
|
package com.zkdj.orderitem.util;//package com.zkdj.orderitem.util;
//
//import org.springframework.mail.SimpleMailMessage;
//import org.springframework.mail.javamail.JavaMailSender;
//
///**
// * @author SJXY
// */
//public class EmailUtil {
// public static void sendMessage(String title, String content, String to, JavaMailSender sender){
// //开启分线程发送邮件
// new Thread(()->{
// SimpleMailMessage msg = new SimpleMailMessage();
// msg.setFrom("[email protected]");
// msg.setTo(to);
// msg.setSubject(title);
// msg.setText(content);
// sender.send(msg);
// System.out.println("发送邮件!");
// }).start();
// }
//
//}
|
[
"1316886226qq.com"
] |
1316886226qq.com
|
117bc6b09959ac5eacbdccfb73d4a5e952af89ab
|
d68b140f12c13f726e60fc4de48216c994ec0113
|
/Maven/test/ua/testApp/testApps/CalculateTest.java
|
5def612a7688a879df51c00af03948c3a29e8389
|
[] |
no_license
|
diego140584/My_Project
|
da31f643527d1d4ec93cb0ca4b10d4de28d54cd5
|
955bea5d3155312aac2ebc70013eb21f44277694
|
refs/heads/master
| 2020-04-30T15:09:00.359500 | 2016-06-07T22:33:32 | 2016-06-07T22:33:32 | 46,345,686 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 512 |
java
|
package ua.testApp.testApps;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Created by Stas on 11.03.2016.
*/
public class CalculateTest {
@Test
public void testAddresult() throws Exception {
Calculate calculate = new Calculate();
assertEquals(55, calculate.addresult(30,20,5));
}
@Test
public void testGetDivision()throws Exception {
Calculate calculate = new Calculate();
assertEquals(-55,calculate.getDivision(30,20,5));
}
}
|
[
"Stanislav Derkach"
] |
Stanislav Derkach
|
8d11df8431d82b8a2b24338821736eec0623ae65
|
09a1d457ece3f37cd15dcaa4ff72a50436d44572
|
/src/com/Students/DB/DAO/LessonDAO.java
|
9622dd3e0dc3996b24a5f5df0579546a3ca44958
|
[] |
no_license
|
goldim81/Students
|
aef37dc43ec3b86f66e57f1388e14f89fb1629ae
|
8cd7c7cbc593c3fe94946cf53c44625726a7a917
|
refs/heads/master
| 2021-07-08T00:57:32.945741 | 2017-10-05T20:12:54 | 2017-10-05T20:12:54 | 105,935,531 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,274 |
java
|
package com.Students.DB.DAO;
import com.Students.DB.ConnectionManagerPostgreSQL;
import com.Students.DB.IConnectionManager;
import com.Students.Object.Lesson;
import java.sql.*;
import java.util.ArrayList;
import java.util.List;
public class LessonDAO implements IDAO<Lesson> {
public static class LessonDAOException extends Exception {
}
private static IConnectionManager manager;
static {
manager = ConnectionManagerPostgreSQL.getInstance();
}
@Override
public List<Lesson> getAll() throws LessonDAOException {
List<Lesson> lessonList = new ArrayList<>();
Statement statement = null;
try {
statement = manager.getConnection().createStatement();
ResultSet resultSet = statement.executeQuery("SELECT * FROM public.\"Lesson\"");
while (resultSet.next()) {
Lesson lesson = new Lesson(resultSet.getShort("id"), resultSet.getString("topic"), resultSet.getDate("DateTime").toLocalDate(),
resultSet.getInt("class_room"), resultSet.getString("teacher"));
lessonList.add(lesson);
}
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
return lessonList;
}
@Override
public Lesson getByID(int id) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = manager.getConnection().prepareStatement("SELECT * FROM public.\"Lesson\" WHERE id = ? ");
statement.setInt(1, id);
ResultSet resultSet = statement.executeQuery();
resultSet.next();
return new Lesson(resultSet.getShort("id"), resultSet.getString("topic"), resultSet.getDate("DateTime").toLocalDate(),
resultSet.getInt("class_room"), resultSet.getString("teacher"));
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
private PreparedStatement getUpdateStatement() throws SQLException {
return manager.getConnection().prepareStatement(
"UPDATE public.\"Lesson\" " +
"SET topic = ?, DateTime = ?, class_room = ?, teacher = ?" +
"WHERE id = ? ");
}
@Override
public void update(Lesson obj) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = getUpdateStatement();
setField(statement, obj);
statement.setInt(5, obj.getId());
statement.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
@Override
public void updateAll(List<Lesson> objList) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = getUpdateStatement();
for (Lesson lesson : objList) {
setField(statement, lesson);
statement.setInt(5, lesson.getId());
statement.addBatch();
}
statement.executeBatch();
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
@Override
public void deleteByID(int id) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = manager.getConnection().prepareStatement(
"DELETE public.\"student\" WHERE id = ? ");
statement.setInt(1, id);
statement.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
private PreparedStatement getInsertStatement() throws SQLException {
return manager.getConnection().prepareStatement(
"INSERT INTO public.\"Lesson\" " +
"VALUE (topic = ?, DateTime = ?, class_room = ?, teacher = ?)");
}
@Override
public void insertOne(Lesson obj) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = getInsertStatement();
setField(statement, obj);
statement.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
@Override
public void insertAll(List<Lesson> objList) throws LessonDAOException {
PreparedStatement statement = null;
try {
statement = getInsertStatement();
for (Lesson obj : objList) {
setField(statement, obj);
statement.addBatch();
}
statement.executeBatch();
} catch (SQLException e) {
e.printStackTrace();
throw new LessonDAOException();
}
}
private void setField(PreparedStatement statement, Lesson obj) throws SQLException {
statement.setString(1, obj.getTopic());
statement.setDate(2, Date.valueOf(obj.getDateTime()));
statement.setInt(3, obj.getClassRoom());
statement.setString(4, obj.getTeacher());
}
}
|
[
"Programm81"
] |
Programm81
|
1c9258a995087ad3ea4649aeb62bd67c5406b89b
|
5912994e1f07cd27e36af732bd970ef3b6b7de42
|
/src/main/java/com/qhit/baseDevice/dao/IBaseDeviceDao.java
|
50d8e1dc78d7e278527a05b620ba54a2817c9882
|
[] |
no_license
|
himotutu/java-
|
5f68f275b9e454f74f25fd54e45a341231031cff
|
d41718962b451ab83df4b2423ee9371c312e92e6
|
refs/heads/master
| 2020-05-19T12:05:23.720085 | 2019-05-05T09:02:21 | 2019-05-05T09:02:21 | 185,006,699 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 937 |
java
|
package com.qhit.baseDevice.dao;
import org.apache.ibatis.annotations.Mapper;
import com.qhit.baseDevice.pojo.BaseDevice;
import java.util.List;
/**
* Created by GeneratorCode on 2019/04/08
*/
@Mapper
public interface IBaseDeviceDao {
boolean insert(Object object);
boolean update(Object object);
boolean updateSelective(Object object);
boolean delete(Object object);
List freeFind(String sql);
List findAll();
List findById(Object id);
boolean freeUpdate(String sql);
List<BaseDevice> search(BaseDevice baseDevice);
List findByDevname(Object devname);
List findByTypeid(Object typeid);
List findByDevdate(Object devdate);
List findByDevuser(Object devuser);
List findByCompid(Object compid);
List<BaseDevice> findDljByCompid(Integer compid);
List<BaseDevice> findCzjByCompid(Integer compid);
List<BaseDevice> findPdjByCompid(Integer compid);
}
|
[
"[email protected]"
] | |
0dc8b87210ba05586ec178a4a7d2578f7755c1e1
|
69a4f2d51ebeea36c4d8192e25cfb5f3f77bef5e
|
/methods/Method_7740.java
|
86ddc4cd1e27ed69092584661dc6c8b2e35197c1
|
[] |
no_license
|
P79N6A/icse_20_user_study
|
5b9c42c6384502fdc9588430899f257761f1f506
|
8a3676bc96059ea2c4f6d209016f5088a5628f3c
|
refs/heads/master
| 2020-06-24T08:25:22.606717 | 2019-07-25T15:31:16 | 2019-07-25T15:31:16 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,224 |
java
|
@Override public int getItemViewType(int section,int position){
HashMap<String,ArrayList<TLRPC.TL_contact>> usersSectionsDict=onlyUsers == 2 ? ContactsController.getInstance(currentAccount).usersMutualSectionsDict : ContactsController.getInstance(currentAccount).usersSectionsDict;
ArrayList<String> sortedUsersSectionsArray=onlyUsers == 2 ? ContactsController.getInstance(currentAccount).sortedUsersMutualSectionsArray : ContactsController.getInstance(currentAccount).sortedUsersSectionsArray;
if (onlyUsers != 0 && !isAdmin) {
ArrayList<TLRPC.TL_contact> arr=usersSectionsDict.get(sortedUsersSectionsArray.get(section));
return position < arr.size() ? 0 : 3;
}
else {
if (section == 0) {
if ((needPhonebook || isAdmin) && position == 1 || position == 3) {
return 2;
}
}
else {
if (sortType == 2) {
if (section == 1) {
return position < onlineContacts.size() ? 0 : 3;
}
}
else {
if (section - 1 < sortedUsersSectionsArray.size()) {
ArrayList<TLRPC.TL_contact> arr=usersSectionsDict.get(sortedUsersSectionsArray.get(section - 1));
return position < arr.size() ? 0 : 3;
}
}
}
}
return 1;
}
|
[
"[email protected]"
] | |
7c7bbb5452c371d83933d4f03f978243579ef2d8
|
f10c4e9e878776fa611185fbc8ac536f5a27c539
|
/src/test/Balok.java
|
ed2560c7f1e1e0eb3d87238da6fe7230d7df59dd
|
[] |
no_license
|
farkhan777/Modul3Proglan
|
6a910a8fd8ce724583c0d151e596596f1bdf8c47
|
74601c09d61a0a658c3bd5c71589cbbbe70e9459
|
refs/heads/master
| 2022-09-26T17:43:04.423836 | 2020-06-04T07:23:49 | 2020-06-04T07:23:49 | 269,289,013 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 704 |
java
|
package test;
public class Balok {
int panjang;
int lebar;
int tinggi;
public int getPanjang() {
return panjang;
}
public void setPanjang(int panjang) {
this.panjang = panjang;
}
public int getLebar() {
return lebar;
}
public void setLebar(int lebar) {
this.lebar = lebar;
}
public int getTinggi() {
return tinggi;
}
public void setTinggi(int tinggi) {
this.tinggi = tinggi;
}
public void hasil(){
Perhitungan ph = new Perhitungan();
System.out.println("Hasil volume balok : "+ph.volume(this));
System.out.println("Hasil luas balok : "+ph.luas(this));
}
}
|
[
"[email protected]"
] | |
17ec0fb534e2f58512e23e9c77c7fca6f6a0db74
|
9ff3c37df165c2e387e4c28fba5216e334225c27
|
/SpringMVCComponentAnket/src/com/merve/AnketController.java
|
c76817e63a23fa4c8d538595f85b344761abc539
|
[] |
no_license
|
mervenurgulbagci/SpringMVC-Anket
|
1a8b14dea200e2adf2f48360f0ae065ff8eda44c
|
032c233aa69ad5fff097587131ea3b2b1830f5e2
|
refs/heads/master
| 2022-10-24T20:46:32.120036 | 2020-06-17T19:44:11 | 2020-06-17T19:44:11 | 273,063,926 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,279 |
java
|
package com.merve;
import javax.servlet.http.HttpServletRequest;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class AnketController {
static Anket ank= new Anket();
@RequestMapping("/")
public String form1(Model m) {
Anket ank= new Anket();
m.addAttribute("anket", ank);
return "form1";
}
@RequestMapping("/form2")
public String form2(HttpServletRequest req, Model m) {
ank.setAd(req.getParameter("ad"));
ank.setSoyad(req.getParameter("soyad"));
ank.setYas(Integer.parseInt(req.getParameter("yas")));
ank.setMezuniyetYili(req.getParameter("mezuniyetYili"));
ank.setOkul(req.getParameter("okul"));
System.out.println(ank.toString());
m.addAttribute("anket", ank);
return "form2";
}
@RequestMapping("/saveform")
public String savePersonel(HttpServletRequest req, Model m) {
ank.setDogumYeri(req.getParameter("dogumYeri"));
String hobiler2=req.getParameter("hobiler");
ank.setYabanciDil("yabanciDil");
ank.setMeslek(req.getParameter("meslek"));
ank.setEhliyet(req.getParameter("ehliyet"));
m.addAttribute("anket", ank);
return "confirm";
}
}
|
[
"[email protected]"
] | |
949831657df0af84a0f63d16b314acc7de50a441
|
29634d0ae04bbe65403c90002465481147f75a08
|
/app/src/main/java/razerdp/com/zoomviewactivity/BaseScaleElementAnimaActivity.java
|
c7092302a333b714b446dc1ebdc435ce367fbf56
|
[
"MIT"
] |
permissive
|
razerdp/ZoomViewActivity
|
b57327ce0b15109cd583ebd00af1d519cd2630f9
|
95fe213216548ccfe501920042870f30a28bd7d1
|
refs/heads/master
| 2023-08-29T07:46:40.625085 | 2016-09-02T09:50:33 | 2016-09-02T09:50:33 | 67,190,616 | 14 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 8,387 |
java
|
package razerdp.com.zoomviewactivity;
import android.animation.Animator;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.app.Activity;
import android.content.Intent;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.RectF;
import android.os.Bundle;
import android.support.annotation.LayoutRes;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.text.TextUtils;
import android.util.Log;
import android.view.View;
import android.view.ViewTreeObserver;
import android.view.animation.DecelerateInterpolator;
import android.widget.ImageView;
import com.bumptech.glide.load.resource.bitmap.GlideBitmapDrawable;
import com.bumptech.glide.load.resource.drawable.GlideDrawable;
import com.bumptech.glide.request.animation.GlideAnimation;
import com.bumptech.glide.request.target.SimpleTarget;
/**
* Created by 大灯泡 on 2016/9/2.
*
* 包含放大缩小过渡动画的activity
*/
public abstract class BaseScaleElementAnimaActivity<V extends ImageView> extends AppCompatActivity {
protected V targetScaleAnimaedImageView;
private String picUrl;
private boolean needAnima;
private AnimatorSet currentAnimator;
private Point globalOffset;
private Rect startRect;
private Rect endRect;
@Override protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
initData();
}
@Override public void setContentView(@LayoutRes int layoutResID) {
super.setContentView(layoutResID);
initImageView();
}
private void initData() {
picUrl = getIntent().getStringExtra("url");
startRect = getIntent().getParcelableExtra("fromRect");
needAnima = startRect != null && !TextUtils.isEmpty(picUrl);
if (needAnima) {
endRect = new Rect();
globalOffset = new Point();
}
}
private void initImageView() {
targetScaleAnimaedImageView = getAnimaedImageView();
needAnima = (needAnima && targetScaleAnimaedImageView != null);
if (needAnima) {
targetScaleAnimaedImageView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override public boolean onPreDraw() {
//此时目标已经有了宽高信息
targetScaleAnimaedImageView.getGlobalVisibleRect(endRect, globalOffset);
playEnterAnima();
targetScaleAnimaedImageView.getViewTreeObserver().removeOnPreDrawListener(this);
return true;
}
});
targetScaleAnimaedImageView.setOnClickListener(new View.OnClickListener() {
@Override public void onClick(View v) {
playExitAnima();
}
});
}
}
@Override protected void onResume() {
super.onResume();
}
private void playEnterAnima() {
if (currentAnimator != null) {
currentAnimator.cancel();
}
onLoadingPicture(imageViewTarget, picUrl);
startRect.offset(-globalOffset.x, -globalOffset.y);
endRect.offset(-globalOffset.x, -globalOffset.y);
float[] ratios = calculateRatios(startRect, endRect);
targetScaleAnimaedImageView.setPivotX(0.5f);
targetScaleAnimaedImageView.setPivotY(0.5f);
final AnimatorSet enter = new AnimatorSet();
enter.play(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.X, startRect.left, endRect.left))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.Y, startRect.top, endRect.top))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.SCALE_X, ratios[0], 1f))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.SCALE_Y, ratios[1], 1f));
enter.setDuration(400);
enter.setInterpolator(new DecelerateInterpolator());
enter.addListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animation) {
currentAnimator = enter;
}
@Override
public void onAnimationEnd(Animator animation) {
currentAnimator = null;
}
@Override
public void onAnimationCancel(Animator animation) {
currentAnimator = null;
}
@Override
public void onAnimationRepeat(Animator animation) {
}
});
enter.start();
}
private void playExitAnima() {
if (currentAnimator != null) {
currentAnimator.cancel();
}
float[] ratios = calculateRatios(startRect, endRect);
Log.i("startRect", "exit after offset: >>> " + startRect.toString());
Log.d("endtRect", "exit after offset: >>> " + endRect.toString());
int deltaHeight = (int) (endRect.top * ratios[1]);
int deltaWidth = (int) (endRect.left * ratios[0]);
targetScaleAnimaedImageView.setPivotX(0.5f);
targetScaleAnimaedImageView.setPivotY(0.5f);
final AnimatorSet exit = new AnimatorSet();
exit.play(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.X, startRect.left - deltaWidth))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.Y, startRect.top - deltaHeight))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.SCALE_X, ratios[0]))
.with(ObjectAnimator.ofFloat(targetScaleAnimaedImageView, View.SCALE_Y, ratios[1]));
exit.setDuration(400);
exit.setInterpolator(new DecelerateInterpolator());
exit.addListener(new Animator.AnimatorListener() {
@Override
public void onAnimationStart(Animator animation) {
currentAnimator = exit;
}
@Override
public void onAnimationEnd(Animator animation) {
currentAnimator = null;
finish();
}
@Override
public void onAnimationCancel(Animator animation) {
currentAnimator = null;
}
@Override
public void onAnimationRepeat(Animator animation) {
}
});
exit.start();
}
@Override public void finish() {
super.finish();
overridePendingTransition(0, android.R.anim.fade_out);
}
private SimpleTarget<GlideDrawable> imageViewTarget = new SimpleTarget<GlideDrawable>() {
@Override public void onResourceReady(GlideDrawable resource, GlideAnimation<? super GlideDrawable> glideAnimation) {
if (resource instanceof GlideBitmapDrawable) {
targetScaleAnimaedImageView.setImageBitmap(((GlideBitmapDrawable) resource).getBitmap());
ImageRect imageRect = new ImageRect(targetScaleAnimaedImageView);
RectF rect = imageRect.getImageRect();
endRect.set((int) rect.left, (int) rect.top, (int) rect.right, (int) rect.bottom);
Log.d("imgrect", rect.toShortString());
}
}
};
protected abstract V getAnimaedImageView();
protected abstract void onLoadingPicture(SimpleTarget targetImageView, String url);
private float[] calculateRatios(Rect startBounds, Rect finalBounds) {
float[] result = new float[2];
float widthRatio = startBounds.width() * 1.0f / finalBounds.width() * 1.0f;
float heightRatio = startBounds.height() * 1.0f / finalBounds.height() * 1.0f;
result[0] = widthRatio;
result[1] = heightRatio;
return result;
}
public static void startWithScaleElementActivity(Activity from,
@Nullable String picUrl,
@Nullable Rect fromRect,
Class<? extends BaseScaleElementAnimaActivity> clazz) {
Intent intent = new Intent(from, clazz);
intent.putExtra("url", picUrl);
intent.putExtra("fromRect", fromRect);
from.startActivity(intent);
//禁用过渡动画
from.overridePendingTransition(0, 0);
}
}
|
[
"[email protected]"
] | |
f768386b2a73eb1f8e772590ebae4c8789eeed86
|
2980d9d1511bab70707baab31431a1161b2ef043
|
/src/main/java/leader/LeaderSelectorExample.java
|
b2823fe55faa2dc667e2c88c7292fdeecbb11a50
|
[] |
no_license
|
twangjie/CuratorExamples
|
0e316afe1664bf9cc2225042218bc1737b315065
|
931317da8f7818d0ace63dd15242d89cb74b358c
|
refs/heads/master
| 2021-01-01T04:48:08.744030 | 2017-07-14T15:50:41 | 2017-07-14T15:50:41 | 97,249,372 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,071 |
java
|
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 leader;
import com.google.common.collect.Lists;
import org.apache.curator.framework.CuratorFramework;
import org.apache.curator.framework.CuratorFrameworkFactory;
import org.apache.curator.retry.ExponentialBackoffRetry;
import org.apache.curator.test.TestingServer;
import org.apache.curator.utils.CloseableUtils;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.List;
public class LeaderSelectorExample {
private static final int CLIENT_QTY = 10;
private static final String PATH = "/examples/leader";
public static void main(String[] args) throws Exception {
// all of the useful sample code is in ExampleClient.java
System.out.println("Create " + CLIENT_QTY + " clients, have each negotiate for leadership and then wait a random number of seconds before letting another leader election occur.");
System.out.println("Notice that leader election is fair: all clients will become leader and will do so the same number of times.");
List<CuratorFramework> clients = Lists.newArrayList();
List<ExampleClient> examples = Lists.newArrayList();
TestingServer server = new TestingServer(2181);
try {
for (int i = 0; i < CLIENT_QTY; ++i) {
CuratorFramework client = CuratorFrameworkFactory.newClient(server.getConnectString(), new ExponentialBackoffRetry(1000, 3));
clients.add(client);
ExampleClient example = new ExampleClient(client, PATH, "Client #" + i);
examples.add(example);
client.start();
example.start();
}
System.out.println("Press enter/return to quit\n");
new BufferedReader(new InputStreamReader(System.in)).readLine();
} finally {
System.out.println("Shutting down...");
for (ExampleClient exampleClient : examples) {
CloseableUtils.closeQuietly(exampleClient);
}
for (CuratorFramework client : clients) {
CloseableUtils.closeQuietly(client);
}
CloseableUtils.closeQuietly(server);
}
}
}
|
[
"[email protected]"
] | |
f813354a6ed4350e30d61c6d7fa0116a05e76500
|
f3145a9a62942cf757a9536c41275701717d3e69
|
/target/tomcat/work/Tomcat/localhost/_/org/apache/jsp/WEB_002dINF/pages/userInfo_jsp.java
|
d2e09a4a9c82f01caeda4fba3ecbb455a5f20dad
|
[] |
no_license
|
Kamatchidevinaveen/login
|
967aaa73403da27e6e556702e7794032de338f40
|
5ac149b01a1a2786e58e515116387eb2f1ec9bcc
|
refs/heads/master
| 2020-03-31T07:28:27.793543 | 2018-10-08T05:49:18 | 2018-10-08T05:49:18 | 152,022,516 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,748 |
java
|
/*
* Generated by the Jasper component of Apache Tomcat
* Version: Apache Tomcat/7.0.47
* Generated at: 2018-09-20 10:11:42 UTC
* Note: The last modified time of this file was set to
* the last modified time of the source file after
* generation to assist with modification tracking.
*/
package org.apache.jsp.WEB_002dINF.pages;
import javax.servlet.*;
import javax.servlet.http.*;
import javax.servlet.jsp.*;
public final class userInfo_jsp extends org.apache.jasper.runtime.HttpJspBase
implements org.apache.jasper.runtime.JspSourceDependent {
private static final javax.servlet.jsp.JspFactory _jspxFactory =
javax.servlet.jsp.JspFactory.getDefaultFactory();
private static java.util.Map<java.lang.String,java.lang.Long> _jspx_dependants;
private javax.el.ExpressionFactory _el_expressionfactory;
private org.apache.tomcat.InstanceManager _jsp_instancemanager;
public java.util.Map<java.lang.String,java.lang.Long> getDependants() {
return _jspx_dependants;
}
public void _jspInit() {
_el_expressionfactory = _jspxFactory.getJspApplicationContext(getServletConfig().getServletContext()).getExpressionFactory();
_jsp_instancemanager = org.apache.jasper.runtime.InstanceManagerFactory.getInstanceManager(getServletConfig());
}
public void _jspDestroy() {
}
public void _jspService(final javax.servlet.http.HttpServletRequest request, final javax.servlet.http.HttpServletResponse response)
throws java.io.IOException, javax.servlet.ServletException {
final javax.servlet.jsp.PageContext pageContext;
javax.servlet.http.HttpSession session = null;
final javax.servlet.ServletContext application;
final javax.servlet.ServletConfig config;
javax.servlet.jsp.JspWriter out = null;
final java.lang.Object page = this;
javax.servlet.jsp.JspWriter _jspx_out = null;
javax.servlet.jsp.PageContext _jspx_page_context = null;
try {
response.setContentType("text/html");
pageContext = _jspxFactory.getPageContext(this, request, response,
null, true, 8192, true);
_jspx_page_context = pageContext;
application = pageContext.getServletContext();
config = pageContext.getServletConfig();
session = pageContext.getSession();
out = pageContext.getOut();
_jspx_out = out;
out.write("<html>\n");
out.write("<head>\n");
out.write("<meta http-equiv=\"Content-Type\" content=\"text/html; charset=ISO-8859-1\">\n");
out.write("<title>User Info</title>\n");
out.write("</head>\n");
out.write("<body>\n");
out.write("\n");
out.write("\t<form method=\"POST\" action=\"/uploadFile\" enctype=\"multipart/form-data\">\n");
out.write("\t <table>\n");
out.write("\t <tr>\n");
out.write("\t <td>Select a file to upload</td>\n");
out.write("\t <td><input type=\"file\" name=\"file\" /></td>\n");
out.write("\t </tr>\n");
out.write("\t <tr>\n");
out.write("\t <td><input type=\"submit\" value=\"Submit\" /></td>\n");
out.write("\t </tr>\n");
out.write("\t </table>\n");
out.write("\t</form>\n");
out.write("</body>\n");
out.write("</html>");
} catch (java.lang.Throwable t) {
if (!(t instanceof javax.servlet.jsp.SkipPageException)){
out = _jspx_out;
if (out != null && out.getBufferSize() != 0)
try { out.clearBuffer(); } catch (java.io.IOException e) {}
if (_jspx_page_context != null) _jspx_page_context.handlePageException(t);
else throw new ServletException(t);
}
} finally {
_jspxFactory.releasePageContext(_jspx_page_context);
}
}
}
|
[
"[email protected]@16.04.4"
] |
[email protected]@16.04.4
|
b95be278d0aad185c14661eab6b2d8fdff35ffbd
|
9b5c30d61b553b0e3474ca80ca968557dd1fa558
|
/app/src/main/java/com/umpay/payplugindemo/IdCardActivity.java
|
382185b92bf37561565be50dc6ebdfff991a102e
|
[] |
no_license
|
huishangplus/PayPluginDemo
|
81f9d1a857d1a95a68e981742bb22bc198c17443
|
59dc968d53367fbd7467a20425388f7002987039
|
refs/heads/master
| 2020-09-08T11:28:42.532747 | 2019-11-12T03:21:19 | 2019-11-12T03:21:19 | 221,116,083 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,423 |
java
|
package com.umpay.payplugindemo;
import android.os.Bundle;
import android.os.Handler;
import android.view.View;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TextView;
import com.umpay.payplugin.UMPay;
import com.umpay.payplugin.bean.IdCardRequest;
import com.umpay.payplugin.bean.IdCardResponse;
import com.umpay.payplugin.callback.UMIdCardCallback;
import com.umpay.payplugin.code.IdCardCode;
import com.umpay.payplugin.util.FastJsonUtils;
public class IdCardActivity extends BaseActivity implements View.OnClickListener {
private Button bt_search;
private Button bt_send;
private ScrollView sc;
private TextView tv_content;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_id_card);
bt_search = (Button) findViewById(R.id.bt_search);
bt_send = (Button) findViewById(R.id.bt_send);
sc = (ScrollView) findViewById(R.id.sc);
tv_content = (TextView) findViewById(R.id.tv_content);
bt_search.setOnClickListener(this);
bt_send.setOnClickListener(this);
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.bt_search:
IdCardRequest idCardRequest = new IdCardRequest();
idCardRequest.searchTimeOut = 40;
String json = FastJsonUtils.toJson(idCardRequest);
UMPay.getInstance().searchIdCard(json, umIdCardCallback);
stringBuffer.append("\n请帖身份证");
tv_content.setText(stringBuffer.toString());
break;
case R.id.bt_send:
sendApdu("0084000004");
sendApdu("00A4040010D1560001018003810000000200000002");
break;
}
}
/**
* 发送apdu 指令
*
* @param apdu
*/
public void sendApdu(String apdu) {
IdCardRequest request = new IdCardRequest();
request.str_apdu = apdu;
String jsons = FastJsonUtils.toJson(request);
UMPay.getInstance().sendApduToIdCard(jsons);
}
StringBuffer stringBuffer = new StringBuffer();
public UMIdCardCallback umIdCardCallback = new UMIdCardCallback() {
@Override
public void onReBind(int code, String msg) {
cancelDialog();
reBind(code, msg);
}
@Override
public void onSuccess(IdCardResponse idCardResponse) {
switch (idCardResponse.code) {
case IdCardCode.IDCARD_SEARCH_SUCCESS:
stringBuffer.append("\n搜卡成功");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.RESPONSE_SUCCESS:
stringBuffer.append("\n卡片返回信息:\n"
+ "传入:" + idCardResponse.requestApdu
+ "\n返回:" + idCardResponse.responeData);
stringBuffer.append("\n-----------------------------");
tv_content.setText(stringBuffer.toString());
scroll();
break;
}
}
@Override
public void onError(IdCardResponse idCardResponse) {
switch (idCardResponse.code) {
case IdCardCode.IDCARD_SEARCH_ERROR:
stringBuffer.append("\n搜卡成功");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.BINDER_ERROR:
stringBuffer.append("\n绑定失败,请重新绑定");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.IDCARD_SEARCH_TIMEOUT:
stringBuffer.append("\n寻卡超时,请重新发起搜卡");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.REQUEST_APDU_EMPTY:
stringBuffer.append("\n发送指令为空,请检查指令");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.JSON_ERROR_ONBACK:
stringBuffer.append("\n解析POS返回信息异常,请搜卡重试");
tv_content.setText(stringBuffer.toString());
scroll();
break;
case IdCardCode.RESPONSE_ERROR:
stringBuffer.append("\n apdu 指令返回信息异常");
stringBuffer.append("\n-----------------------------");
tv_content.setText(stringBuffer.toString());
scroll();
break;
}
}
};
/**
* 滑动scrollview
*/
void scroll() {
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
sc.scrollTo(0, tv_content.getMeasuredHeight());
}
}, 30);
}
@Override
protected void onDestroy() {
super.onDestroy();
UMPay.getInstance().stopIdCard();
}
}
|
[
"[email protected]"
] | |
b56df9ab5113183df889cd39d90bad6e9a3103ef
|
07dae024f13792c420bf365e7d3e309e02e9a9f4
|
/src/main/java/br/org/isac/portaltransparencia/portal/entity/TipoDocumento.java
|
96efe794da2e7930f5b15aff550772bb9826c3fc
|
[] |
no_license
|
helipe09/portal-spring
|
11e7432a89fea9b2f1d139c6a3a2ef457cede28d
|
5d62aa80657ff8ae2bcb203d03142e85cc6dae88
|
refs/heads/main
| 2023-03-12T14:44:27.678694 | 2021-02-17T18:43:24 | 2021-02-17T18:43:24 | 343,540,778 | 0 | 0 | null | 2021-03-01T20:00:50 | 2021-03-01T20:00:49 | null |
UTF-8
|
Java
| false | false | 2,265 |
java
|
package br.org.isac.portaltransparencia.portal.entity;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import javax.persistence.Transient;
@Entity
@Table(name = "pt_tipo_documento")
public class TipoDocumento {
@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Integer id;
@Column(name="nome", nullable = false)
private String nome;
@Column(name="ativo", nullable = false)
private String ativo;
@Column(name="grupo")
private Integer grupo;
@Column(name="periodicidade")
private Integer periodicidade;
@Column(name="prazoGuardaAnos")
private Integer prazoGuardaAnos;
@Column(name="localAplicacao")
private String localAplicacao;
@Transient
private String nomeGrupo;
@Transient
private String nomeSelect;
public String getNomeSelect() {
return nomeSelect;
}
public void setNomeSelect(String nomeSelect) {
this.nomeSelect = nomeSelect;
}
public String getNomeGrupo() {
return nomeGrupo;
}
public void setNomeGrupo(String nomeGrupo) {
this.nomeGrupo = nomeGrupo;
}
public Integer getGrupo() {
return grupo;
}
public void setGrupo(Integer grupo) {
this.grupo = grupo;
}
public Integer getPeriodicidade() {
return periodicidade;
}
public void setPeriodicidade(Integer periodicidade) {
this.periodicidade = periodicidade;
}
public Integer getPrazoGuardaAnos() {
return prazoGuardaAnos;
}
public void setPrazoGuardaAnos(Integer prazoGuardaAnos) {
this.prazoGuardaAnos = prazoGuardaAnos;
}
public String getLocalAplicacao() {
return localAplicacao;
}
public void setLocalAplicacao(String localAplicacao) {
this.localAplicacao = localAplicacao;
}
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public String getAtivo() {
return ativo;
}
public void setAtivo(String ativo) {
this.ativo = ativo;
}
}
|
[
"[email protected]"
] | |
22fd25e40e3a51bef57d8e278050211880c2d1af
|
3a7fe3e6f2454135072c128074b1f1c74f20cd24
|
/custom/amway/amwaynotificationengine/web/src/org/amway/notification/engine/validator/RegexpValidator.java
|
06a63b9235e603cb4d95494ca6cb79bf100acc29
|
[] |
no_license
|
nitin201187/amway
|
74a2d4f4efcb55048eaca892c8bbe007c2fb6d65
|
a26f2f0a3381ea31be1ca568545ff8c576cb4262
|
refs/heads/master
| 2021-01-10T06:23:13.084177 | 2017-07-20T04:56:55 | 2017-07-20T04:56:55 | 54,173,575 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,240 |
java
|
/*
* [y] hybris Platform
*
* Copyright (c) 2000-2015 hybris AG
* All rights reserved.
*
* This software is the confidential and proprietary information of hybris
* ("Confidential Information"). You shall not disclose such Confidential
* Information and shall use it only in accordance with the terms of the
* license agreement you entered into with hybris.
*
*
*/
package org.amway.notification.engine.validator;
import org.apache.commons.validator.routines.RegexValidator;
import org.springframework.beans.factory.annotation.Required;
import org.springframework.util.Assert;
import org.springframework.validation.Errors;
import org.springframework.validation.Validator;
/**
* Validates one specific string property specified by {@link #fieldPath} in any object
* if it is valid against given regular expression
*/
public class RegexpValidator implements Validator {
private String fieldPath;
private String regularExpression;
private String errorMessageID;
@Override
public boolean supports(Class<?> aClass)
{
return true;
}
@Override
public void validate(Object o, Errors errors) {
Assert.notNull(errors, "Errors object must not be null");
final String fieldValue = (String) errors.getFieldValue(getFieldPath());
RegexValidator validator = new RegexValidator(getRegularExpression());
if (!validator.isValid(fieldValue))
{
errors.rejectValue(getFieldPath(), getErrorMessageID(), new String[]
{ getFieldPath() }, null);
}
}
@Required
public void setFieldPath(final String fieldPath)
{
this.fieldPath = fieldPath;
}
public String getFieldPath()
{
return this.fieldPath;
}
@Required
public void setRegularExpression(final String regularExpression)
{
this.regularExpression = regularExpression;
}
public String getRegularExpression()
{
return this.regularExpression;
}
@Required
public void setErrorMessageID(final String errorMessageID)
{
this.errorMessageID = errorMessageID;
}
public String getErrorMessageID()
{
return this.errorMessageID;
}
}
|
[
"[email protected]"
] | |
cf3775262fd7d2848d6a944cd35c76fc43ad308c
|
5dcd24a01ddc5b68492d30f70d7df1ae193bd8f2
|
/WebServiceActorApi.Android/obj/Debug/110/android/src/androidx/cardview/R.java
|
f8fcef9d7a7e5b3cdde229252dffb56e17416be5
|
[] |
no_license
|
anagparedes/ActorAPICommunication
|
e1c9b5ec988317c127d33b59db4f244455db3651
|
7c5e0db5f862c262c60d0e6ee5ac3f5348df2d75
|
refs/heads/main
| 2023-08-02T06:54:24.260113 | 2021-09-25T14:14:14 | 2021-09-25T14:14:14 | 409,776,874 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,779 |
java
|
/* AUTO-GENERATED FILE. DO NOT MODIFY.
*
* This class was automatically generated by
* Xamarin.Android from the resource data it found.
* It should not be modified by hand.
*/
package androidx.cardview;
public final class R {
public static final class attr {
public static final int cardBackgroundColor = 0x7f030075;
public static final int cardCornerRadius = 0x7f030076;
public static final int cardElevation = 0x7f030077;
public static final int cardMaxElevation = 0x7f030079;
public static final int cardPreventCornerOverlap = 0x7f03007a;
public static final int cardUseCompatPadding = 0x7f03007b;
public static final int cardViewStyle = 0x7f03007c;
public static final int contentPadding = 0x7f0300c4;
public static final int contentPaddingBottom = 0x7f0300c5;
public static final int contentPaddingLeft = 0x7f0300c6;
public static final int contentPaddingRight = 0x7f0300c7;
public static final int contentPaddingTop = 0x7f0300c8;
}
public static final class color {
public static final int cardview_dark_background = 0x7f05002d;
public static final int cardview_light_background = 0x7f05002e;
public static final int cardview_shadow_end_color = 0x7f05002f;
public static final int cardview_shadow_start_color = 0x7f050030;
}
public static final class dimen {
public static final int cardview_compat_inset_shadow = 0x7f060052;
public static final int cardview_default_elevation = 0x7f060053;
public static final int cardview_default_radius = 0x7f060054;
}
public static final class style {
public static final int Base_CardView = 0x7f0f000e;
public static final int CardView = 0x7f0f00e1;
public static final int CardView_Dark = 0x7f0f00e2;
public static final int CardView_Light = 0x7f0f00e3;
}
public static final class styleable {
public static final int[] CardView = new int[] { 0x0101013f, 0x01010140, 0x7f030075, 0x7f030076, 0x7f030077, 0x7f030079, 0x7f03007a, 0x7f03007b, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8 };
public static final int CardView_android_minHeight = 1;
public static final int CardView_android_minWidth = 0;
public static final int CardView_cardBackgroundColor = 2;
public static final int CardView_cardCornerRadius = 3;
public static final int CardView_cardElevation = 4;
public static final int CardView_cardMaxElevation = 5;
public static final int CardView_cardPreventCornerOverlap = 6;
public static final int CardView_cardUseCompatPadding = 7;
public static final int CardView_contentPadding = 8;
public static final int CardView_contentPaddingBottom = 9;
public static final int CardView_contentPaddingLeft = 10;
public static final int CardView_contentPaddingRight = 11;
public static final int CardView_contentPaddingTop = 12;
}
}
|
[
"[email protected]"
] | |
4cee6d9d537c27ccfdea976f1301552ce737f64e
|
246b56e778306b502cd29504ae715d24b2cb04d0
|
/service/src/main/java/com/dem/entity/Order.java
|
866f6140fa11a50df1fbbd69d61808e8cdc851d4
|
[] |
no_license
|
huang-demo/fescardubbo
|
8ea37c9ff23903255adc454baf37c1b686074976
|
8225a77d76a56e35adcede7b5b84d6245d98aae7
|
refs/heads/master
| 2021-10-23T01:56:17.944364 | 2019-03-14T07:48:01 | 2019-03-14T07:48:01 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,343 |
java
|
/*
* Copyright 1999-2018 Alibaba Group Holding Ltd.
*
* 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.dem.entity;
import java.io.Serializable;
/**
* The type Order.
*/
public class Order implements Serializable {
/**
* The Id.
*/
public long id;
/**
* The User id.
*/
public String userId;
/**
* The Commodity code.
*/
public String commodityCode;
/**
* The Count.
*/
public int count;
/**
* The Money.
*/
public int money;
@Override
public String toString() {
return "Order{" +
"id=" + id +
", userId='" + userId + '\'' +
", commodityCode='" + commodityCode + '\'' +
", count=" + count +
", money=" + money +
'}';
}
}
|
[
"huang354079281"
] |
huang354079281
|
8c6e5f67b0c7eb7a73ccd7a0065c48c715c8e35b
|
599473a0352501548ba0d9089a730ceea7e0e1c1
|
/src/test/java/support/Results.java
|
9884627ce54b5b1aba58b2ba3f29f6ff07e551fe
|
[] |
no_license
|
raminder/QE_Engineer
|
7deb143d651f204249029b1559ab61f92a85acdf
|
35a6f06c59b3353cd70464765c25d5a4ae1a3153
|
refs/heads/master
| 2023-03-25T02:01:07.290784 | 2021-03-08T17:24:44 | 2021-03-08T17:24:44 | 344,562,309 | 0 | 0 | null | 2021-03-08T17:24:45 | 2021-03-04T17:54:55 |
Java
|
UTF-8
|
Java
| false | false | 4,537 |
java
|
package support ;
import java.util.List;
public class Results
{
private String name;
private String height;
private String mass;
private String hair_color;
private String skin_color;
private String eye_color;
private String birth_year;
private String gender;
private String homeworld;
private List<String> films;
private List<String> species;
private List<String> vehicles;
private List<String> starships;
private String created;
private String edited;
private String url;
private String rotation_period;
private String orbital_period;
private String diameter;
private String climate;
private String gravity;
private String terrain;
private String surface_water;
private String population;
private List<String> residents;
public void setName(String name){
this.name = name;
}
public String getName(){
return this.name;
}
public void setHeight(String height){
this.height = height;
}
public String getHeight(){
return this.height;
}
public void setMass(String mass){
this.mass = mass;
}
public String getMass(){
return this.mass;
}
public void setHair_color(String hair_color){
this.hair_color = hair_color;
}
public String getHair_color(){
return this.hair_color;
}
public void setSkin_color(String skin_color){
this.skin_color = skin_color;
}
public String getSkin_color(){
return this.skin_color;
}
public void setEye_color(String eye_color){
this.eye_color = eye_color;
}
public String getEye_color(){
return this.eye_color;
}
public void setBirth_year(String birth_year){
this.birth_year = birth_year;
}
public String getBirth_year(){
return this.birth_year;
}
public void setGender(String gender){
this.gender = gender;
}
public String getGender(){
return this.gender;
}
public void setHomeworld(String homeworld){
this.homeworld = homeworld;
}
public String getHomeworld(){
return this.homeworld;
}
public void setFilms(List<String> films){
this.films = films;
}
public List<String> getFilms(){
return this.films;
}
public void setSpecies(List<String> species){
this.species = species;
}
public List<String> getSpecies(){
return this.species;
}
public void setVehicles(List<String> vehicles){
this.vehicles = vehicles;
}
public List<String> getVehicles(){
return this.vehicles;
}
public void setStarships(List<String> starships){
this.starships = starships;
}
public List<String> getStarships(){
return this.starships;
}
public void setCreated(String created){
this.created = created;
}
public String getCreated(){
return this.created;
}
public void setEdited(String edited){
this.edited = edited;
}
public String getEdited(){
return this.edited;
}
public void setUrl(String url){
this.url = url;
}
public String getUrl(){
return this.url;
}
public String getRotation_period() {
return rotation_period;
}
public void setRotation_period(String rotation_period) {
this.rotation_period = rotation_period;
}
public String getOrbital_period() {
return orbital_period;
}
public void setOrbital_period(String orbital_period) {
this.orbital_period = orbital_period;
}
public String getDiameter() {
return diameter;
}
public void setDiameter(String diameter) {
this.diameter = diameter;
}
public String getClimate() {
return climate;
}
public void setClimate(String climate) {
this.climate = climate;
}
public String getGravity() {
return gravity;
}
public void setGravity(String gravity) {
this.gravity = gravity;
}
public String getTerrain() {
return terrain;
}
public void setTerrain(String terrain) {
this.terrain = terrain;
}
public String getSurface_water() {
return surface_water;
}
public void setSurface_water(String surface_water) {
this.surface_water = surface_water;
}
public String getPopulation() {
return population;
}
public void setPopulation(String population) {
this.population = population;
}
public List<String> getResidents() {
return residents;
}
public void setResidents(List<String> residents) {
this.residents = residents;
}
}
|
[
"[email protected]"
] | |
5fbb60b6a70d80a02ebc1874b6bd7c287784f4fd
|
ea11080a72772415150160bc0755fde5f4c8e367
|
/dbflute-runtime/src/main/java/org/seasar/dbflute/helper/token/file/exception/FileMakingRequiredOptionNotFoundException.java
|
9455e5524ef84cd6ee4578d2c83357db7c6b1522
|
[
"Apache-2.0"
] |
permissive
|
seasarorg/dbflute
|
d68ce1dacecfe98610a48de218596544cb0b5327
|
9cb32db332d7c73208abf1aa102997cfcb021209
|
refs/heads/master
| 2020-04-06T07:02:01.733311 | 2019-01-01T05:45:41 | 2019-01-01T05:45:41 | 13,241,864 | 14 | 9 | null | 2016-08-08T09:57:28 | 2013-10-01T11:27:10 |
Java
|
UTF-8
|
Java
| false | false | 1,331 |
java
|
/*
* Copyright 2004-2014 the Seasar Foundation and the Others.
*
* 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 org.seasar.dbflute.helper.token.file.exception;
/**
* @author jflute
*/
public class FileMakingRequiredOptionNotFoundException extends RuntimeException {
/** Serial version UID. (Default) */
private static final long serialVersionUID = 1L;
/**
* Constructor.
* @param msg The message for the exception. (NotNull)
*/
public FileMakingRequiredOptionNotFoundException(String msg) {
super(msg);
}
/**
* Constructor.
* @param msg Exception message. (NotNull)
* @param cause The wrapped exception. (NotNull)
*/
public FileMakingRequiredOptionNotFoundException(String msg, Throwable cause) {
super(msg, cause);
}
}
|
[
"[email protected]"
] | |
8599977e9b65eb4024fb375be0350f0087922dd4
|
a87484a5b081a2a3b5635d8583b0e5e80adf1995
|
/gmall-api/src/main/java/com/atguigu/gmall/entity/PmsSkuInfo.java
|
6116cbabbb2383071419e95e47899d6cdd48de4d
|
[] |
no_license
|
yuan-fen/shop
|
0f59b92563f7331d2e44de1a22416279e699307e
|
61b8acc6cb516e57ceead07100e019cdce50afe7
|
refs/heads/master
| 2020-05-25T20:07:32.806690 | 2020-05-13T09:26:25 | 2020-05-13T09:26:25 | 187,967,474 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,900 |
java
|
package com.atguigu.gmall.entity;
import javax.persistence.GeneratedValue;
import java.io.Serializable;
import javax.persistence.*;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
/**
* @param
* @return
*/
public class PmsSkuInfo implements Serializable {
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Id
@Column
String id;
@Column
String productId;
@Transient
String spuId;
@Column
BigDecimal price;
@Column
String skuName;
@Column
BigDecimal weight;
@Column
String skuDesc;
@Column
String catalog3Id;
@Column
String skuDefaultImg;
@Transient
List<PmsSkuImage> skuImageList;
@Transient
List<PmsSkuAttrValue> skuAttrValueList;
@Transient
List<PmsSkuSaleAttrValue> skuSaleAttrValueList;
public String getSpuId() {
return spuId;
}
public void setSpuId(String spuId) {
this.spuId = spuId;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
public String getSkuName() {
return skuName;
}
public void setSkuName(String skuName) {
this.skuName = skuName;
}
public BigDecimal getWeight() {
return weight;
}
public void setWeight(BigDecimal weight) {
this.weight = weight;
}
public String getSkuDesc() {
return skuDesc;
}
public void setSkuDesc(String skuDesc) {
this.skuDesc = skuDesc;
}
public String getCatalog3Id() {
return catalog3Id;
}
public void setCatalog3Id(String catalog3Id) {
this.catalog3Id = catalog3Id;
}
public String getSkuDefaultImg() {
return skuDefaultImg;
}
public void setSkuDefaultImg(String skuDefaultImg) {
this.skuDefaultImg = skuDefaultImg;
}
public String getProductId() {
return productId;
}
public void setProductId(String productId) {
this.productId = productId;
}
public List<PmsSkuImage> getSkuImageList() {
return skuImageList;
}
public void setSkuImageList(List<PmsSkuImage> skuImageList) {
this.skuImageList = skuImageList;
}
public List<PmsSkuAttrValue> getSkuAttrValueList() {
return skuAttrValueList;
}
public void setSkuAttrValueList(List<PmsSkuAttrValue> skuAttrValueList) {
this.skuAttrValueList = skuAttrValueList;
}
public List<PmsSkuSaleAttrValue> getSkuSaleAttrValueList() {
return skuSaleAttrValueList;
}
public void setSkuSaleAttrValueList(List<PmsSkuSaleAttrValue> skuSaleAttrValueList) {
this.skuSaleAttrValueList = skuSaleAttrValueList;
}
}
|
[
"[email protected]"
] | |
bd10bc782b6d7c94249c7e303e197db93b498595
|
4fffc29a38c84e6ed733017149c8c86a9ad60abd
|
/src/LearnMain.java
|
556aa5e07188b20e5dbe52dfc0ad34e8bceea79c
|
[] |
no_license
|
SvetlakovMaks/LearnMain
|
d60da3642e8547f1bede43df72da3123453e96ec
|
aaf782dbcd5c4fc4c8fb5d44e3af6018226735ef
|
refs/heads/master
| 2023-01-06T14:07:27.776269 | 2020-10-21T14:34:30 | 2020-10-21T14:34:30 | 306,051,553 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 199 |
java
|
public class LearnMain {
public static void main(String[] args) {
System.out.println("Hello, Java");
System.out.println(42);
System.out.println("\n\tJava " + 11);
}
}
|
[
"[email protected]"
] | |
3ccf432e0b28a84eaaae2f9a62cc9d6a3880f5e4
|
772cdc3cfcca859fa45853b48f5874cd82ca3952
|
/src/main/java/com/tianmu/openplatform/common/utils/DateUtil.java
|
bc3c718b9e5d1e7003bb95c233fb3187dc32c03a
|
[] |
no_license
|
gitzqs/skyeye
|
5fb712bb7de02b1792ae561e6b134bb5e3e6a555
|
fcfa5a7768517c30934d3d5ff9a996e20117e5f5
|
refs/heads/master
| 2020-03-20T03:40:39.366242 | 2018-06-13T03:04:12 | 2018-06-13T03:04:12 | 137,155,127 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 667 |
java
|
package com.tianmu.openplatform.common.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateUtil {
private static final String F1 = "yyMMddHHmmss";
private static final String F2 = "yyyy-MM-dd HH:mm:ss";
private static final SimpleDateFormat sdf = new SimpleDateFormat(F1);
private static final SimpleDateFormat sdf2 = new SimpleDateFormat(F2);
public static String formatDate(String sourceDateStr) throws Exception {
Date sourceDate = sdf.parse(sourceDateStr);
return sdf2.format(sourceDate);
}
public static void main(String[] args) throws Exception {
System.out.println(DateUtil.formatDate("180318154043"));
}
}
|
[
"[email protected]"
] | |
ee8c5b2666ed3de8d03209730532077c58641da8
|
87f433834cf4e0049b79e530c2926e68954d1c00
|
/sdk/resourcemanager/azure-resourcemanager/src/samples/java/com/azure/resourcemanager/network/generated/VirtualHubsGetInboundRoutesSamples.java
|
c5220051fa0767b77fed2e29a862e0430af1a250
|
[
"MIT",
"LicenseRef-scancode-generic-cla",
"LGPL-2.1-or-later",
"BSD-3-Clause",
"Apache-2.0",
"LicenseRef-scancode-public-domain",
"BSD-2-Clause",
"LicenseRef-scancode-warranty-disclaimer",
"LicenseRef-scancode-unknown-license-reference",
"CC0-1.0"
] |
permissive
|
kurtzeborn/azure-sdk-for-java
|
f1451d3b38247acb84cbb150bdd36587d244820e
|
6ea9b5842e042e4bbf75d926444528a9a9355506
|
refs/heads/main
| 2023-03-18T15:21:21.534700 | 2023-02-13T22:23:26 | 2023-02-13T22:23:26 | 255,533,567 | 0 | 0 |
MIT
| 2020-04-14T06:55:32 | 2020-04-14T06:55:31 | null |
UTF-8
|
Java
| false | false | 1,463 |
java
|
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.generated;
import com.azure.core.util.Context;
import com.azure.resourcemanager.network.models.GetInboundRoutesParameters;
/** Samples for VirtualHubs GetInboundRoutes. */
public final class VirtualHubsGetInboundRoutesSamples {
/*
* x-ms-original-file: specification/network/resource-manager/Microsoft.Network/stable/2022-07-01/examples/GetInboundRoutes.json
*/
/**
* Sample code: Inbound Routes for the Virtual Hub on a Particular Connection.
*
* @param azure The entry point for accessing resource management APIs in Azure.
*/
public static void inboundRoutesForTheVirtualHubOnAParticularConnection(
com.azure.resourcemanager.AzureResourceManager azure) {
azure
.networks()
.manager()
.serviceClient()
.getVirtualHubs()
.getInboundRoutes(
"rg1",
"virtualHub1",
new GetInboundRoutesParameters()
.withResourceUri(
"/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/expressRouteGateways/exrGw1/expressRouteConnections/exrConn1")
.withConnectionType("ExpressRouteConnection"),
Context.NONE);
}
}
|
[
"[email protected]"
] | |
a093dbcb91494bfe821f0e1f390f8d040a171f8a
|
23234350b657019c4882428d4d70569ccbaa4252
|
/src/AST/VarDeclList.java
|
9e18d560baaddb66d67c5c8173c914e3132c2192
|
[] |
no_license
|
dgkimura/MiniJava
|
b90497c77916d236f3d2e0a3d012aa332005f37e
|
59073b64490b47cd2037121166351345c04a7555
|
refs/heads/master
| 2020-04-11T04:23:59.886037 | 2012-07-22T06:23:40 | 2012-07-22T06:23:40 | 5,139,594 | 6 | 6 | null | null | null | null |
UTF-8
|
Java
| false | false | 406 |
java
|
package AST;
import java.util.Vector;
public class VarDeclList extends ASTNode {
private Vector list;
public VarDeclList(int ln) {
super(ln);
list = new Vector();
}
public void addElement(VarDecl n) {
list.addElement(n);
}
public VarDecl elementAt(int i) {
return (VarDecl)list.elementAt(i);
}
public int size() {
return list.size();
}
}
|
[
"[email protected]"
] | |
a0441633ec568d272b156334ba8593b68613624e
|
9b94b7681453167fe427ba866d9f38c367ab209f
|
/HelloWorld/src/Additon.java
|
583a2ef318fa42fb58681acc049af296093d64e9
|
[] |
no_license
|
pigunther/java
|
6ad70565b586a84af6c55db946811fa10ae92729
|
816e2f8eafb7f5c53337a77b6e6cc984715408c8
|
refs/heads/master
| 2021-01-18T23:43:33.170028 | 2017-04-03T22:01:22 | 2017-04-03T22:01:22 | 87,124,904 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 239 |
java
|
//import java.HelloWorld;
public class Additon{
public static void main(String[] args) {
System.out.println("Bye");
}
}
/*
class HelloWorld {
public static void main(String[] args) {
System.out.println("Bye\n");
}
}
*/
|
[
"[email protected]"
] | |
006094d309e6ed23da95f1c0f1a75f0ca7255cef
|
ec834894667ca6072d2aea31062025550d42bec8
|
/excelColumn.java
|
4aa3665161bae78858ed59cb92926718ba61494e
|
[] |
no_license
|
sanwong15/LeetCodePrep
|
dc04808347563d6b00c99ba92b2ef8204d66a523
|
b864fe9dab76362f6dbbb999f7b3cf951e1273c3
|
refs/heads/master
| 2021-01-17T12:57:57.558115 | 2016-07-08T23:53:19 | 2016-07-08T23:53:19 | 58,775,387 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,021 |
java
|
/*
* San Wong
* [email protected]
*
* LeetCode 171: Excel Sheet Column Number
* A -> 1
* B -> 2
* C -> 3
* ...
* Z -> 26
* AA -> 27
* AB -> 28
*
*/
public class excelColumn {
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("A converts to: " + titleToNumber("A"));
System.out.println("B converts to: " + titleToNumber("B"));
System.out.println("C converts to: " + titleToNumber("C"));
System.out.println("Z converts to: " + titleToNumber("Z"));
System.out.println("AA converts to: " + titleToNumber("AA"));
System.out.println("AB converts to: " + titleToNumber("AB"));
}
public static int titleToNumber(String s){
/*
* ASCII TABLE
*
* A = 65 --- Z = 90
*/
int powerTo = 0;
int val = 0;
for (int i=s.length()-1; i>=0; i--){
int charVal = s.charAt(i)-64;
val += charVal*Math.pow(26,powerTo);
powerTo++;
}
return val;
}
}
|
[
"[email protected]"
] | |
f2ecd3eaba8dde40a69a2fc85e998ad49a2fab3f
|
e6a86c40fc298cb9a56a815b12cf38ef8e26b625
|
/src/com/hlresidential/aceyourexam/TestFragment.java
|
e3c76aaf051a08a552f21b8fa428a9949921f0fe
|
[] |
no_license
|
onlymytho/highline
|
cad873f5a39c1a9c4ab9934ac71b6e0f7d9019e3
|
281c91fd0385d47c1715858b1d0d8dbcb7d3d59b
|
refs/heads/master
| 2021-01-19T18:51:24.861258 | 2014-05-09T19:42:11 | 2014-05-09T19:42:11 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 13,627 |
java
|
package com.hlresidential.aceyourexam;
import java.util.ArrayList;
import java.util.List;
import com.hlresidential.aceyourexam.VerticalViewPager.OnPageChangeListener;
import android.app.Activity;
import android.app.ActivityOptions;
import android.content.ContentResolver;
import android.content.ContentValues;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.os.Build;
import android.os.Bundle;
import android.support.v4.view.ViewPager;
import android.text.TextUtils;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.SurfaceView;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewParent;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
public class TestFragment extends MyFragment {
OnSubmitListener mCallback;
public interface OnSubmitListener {
public void onSubmitSelected();
}
private ViewPager basePager;
private VerticalAdapter vAdapter1;
private BasePagerAdapter baseAdapter;
private VerticalViewPager verticalPager1;
private VerticalViewPager verticalPager2 = null;
private List<View> pageViewsAL;
private List<View> verticalViewsAL;
private Activity activity;
private Context context;
private ContentResolver cr;
private Cursor query;
private Button btn_float_submit;
private View view1;
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
this.activity = activity;
try {
mCallback = (OnSubmitListener) activity;
} catch (ClassCastException e) {
throw new ClassCastException(activity.toString()
+ " must implement OnSubmitListener");
}
}
@Override
public void onStart() {
// TODO Auto-generated method stub
super.onStart();
btn_float_submit = (Button) getView().findViewById(R.id.btn_float_submit);
btn_float_submit.setOnClickListener(btnOnClickListener);
pageViewsAL = new ArrayList<View>(75);
verticalViewsAL = new ArrayList<View>(75);
ContentResolver cr = getActivity().getContentResolver();
String[] projection = new String[] { HLdb.COL_QUESTION,
HLdb.COL_DESCIPTION, HLdb.COL_ANSWER1, HLdb.COL_ANSWER2,
HLdb.COL_ANSWER3, HLdb.COL_ANSWER4, HLdb.KEY_ROWID,
HLdb.COL_DIFFICULTY, HLdb.COL_ID, HLdb.COL_ANSWER_KEY,
HLdb.COL_LAST_ANSWER };
String randomOrder = "RANDOM() LIMIT 10";
query = cr.query(HLProvider.CONTENT_URI, projection, null, null, randomOrder);
int noOfRows = query.getCount();
int iNote, iLastAnswer, iRandomizedLastAnswer = 0;
LayoutInflater inflater = this.activity.getLayoutInflater();
TextView tv_question, tv_description, htv_rowid, htv_answerkey, htv_last_answer, htv_answerstring, tv_answer1, tv_answer2, tv_answer3, tv_answer4;
RadioGroup rg_answers;
RadioButton rb_answer1;
RadioButton rb_answer2;
RadioButton rb_answer3;
RadioButton rb_answer4;
query.moveToFirst();
String answerString[] = { "0", " ", " ", " ", " ", "0", "0", "0", "0","0" };
RandomizeAnswers randomAnswers = new RandomizeAnswers();
while (query.isAfterLast() == false) {
verticalViewsAL
.add(inflater.inflate(R.layout.test_row, null));
tv_question = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.tv_question);
tv_description = (TextView) verticalViewsAL
.get(query.getPosition()).findViewById(R.id.tv_description);
tv_description = (TextView) verticalViewsAL
.get(query.getPosition()).findViewById(R.id.tv_description);
htv_rowid = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.htv_rowid);
String answerStrings[] = randomAnswers.getRandomAnswers(query);
rg_answers = (RadioGroup) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.rg_answers);
rb_answer1 = (RadioButton) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.rb_answer1);
rb_answer2 = (RadioButton) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.rb_answer2);
rb_answer3 = (RadioButton) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.rb_answer3);
rb_answer4 = (RadioButton) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.rb_answer4);
/* tv_answer1 = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.tv_answer1);
tv_answer2 = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.tv_answer2);
tv_answer3 = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.tv_answer3);
tv_answer4 = (TextView) verticalViewsAL.get(query.getPosition())
.findViewById(R.id.tv_answer4);*/
final RadioButton frb_answer1 = (RadioButton) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.rb_answer1);
final RadioButton frb_answer2 = (RadioButton) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.rb_answer2);
final RadioButton frb_answer3 = (RadioButton) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.rb_answer3);
final RadioButton frb_answer4 = (RadioButton) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.rb_answer4);
final TextView fhtv_rowid = (TextView) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.htv_rowid);
final TextView fhtv_answerkey = (TextView) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.htv_answerkey);
final TextView fhtv_last_answer = (TextView) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.htv_last_answer);
final TextView fhtv_answerstring = (TextView) verticalViewsAL.get(
query.getPosition()).findViewById(R.id.htv_answerstring);
rg_answers.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group,
int checkedId) {
if (checkedId == -1)
return;
String row_Id = (String) fhtv_rowid.getText();
if (checkedId == frb_answer1.getId()) {
setupUpdateResult(row_Id, "1");
} else if (checkedId == frb_answer2.getId()) {
setupUpdateResult(row_Id, "2");
} else if (checkedId == frb_answer3.getId()) {
setupUpdateResult(row_Id, "3");
} else if (checkedId == frb_answer4.getId()) {
setupUpdateResult(row_Id, "4");
}
}
private void setupUpdateResult(String row_Id, String clickedItem) {
fhtv_last_answer.setText(clickedItem);
// Need to un-randomize the last answer and it's correctness for the DB.
boolean isCorrect = false;
if (!fhtv_answerstring.getText().toString().equals("answerstring")) {
StringBuffer sbTemp = new StringBuffer(fhtv_answerstring.getText().toString());
String translatedLastAnswer = Character.toString((char) sbTemp.charAt(Integer.parseInt(clickedItem)));
if (translatedLastAnswer != null
&& translatedLastAnswer.equals(fhtv_answerstring.getText().toString().substring(0, 1))) {
isCorrect = true;
}
// Now translate their answer choice back to it's original value in the DB, prior to being randomized,
// since the database has no knowledge of randomization of answers. Don't want to muddy the waters.
if (translatedLastAnswer != null) {
// int adjustRowID = Integer.parseInt(row_Id);
// adjustRowID = adjustRowID + 1;
// String adjustedRowID = (Integer.toString(adjustRowID));
myonUpdateChosenAnswer(row_Id, translatedLastAnswer, isCorrect);
}// ques/a_key ques/a_key ques/a_key
} // 1 2 4 2 7 2
} // 2 1 5 3 8 2
}); // 3 2 6 2 9 1
// 10 4
iNote = query.getPosition() + 1;
fhtv_rowid.setText(query.getString(query
.getColumnIndexOrThrow(HLdb.KEY_ROWID)));
tv_question.setText("Q"
+ iNote
+ ". "
+ query.getString(query
.getColumnIndexOrThrow(HLdb.COL_QUESTION)));
rb_answer1.setText("A. " + answerStrings[1]);
rb_answer2.setText("B. " + answerStrings[2]);
rb_answer3.setText("C. " + answerStrings[3]);
rb_answer4.setText("D. " + answerStrings[4]);
tv_description.setText("Description. "
+ query.getString(query
.getColumnIndexOrThrow(HLdb.COL_DESCIPTION)));
iLastAnswer = 0;
iRandomizedLastAnswer = 0;
iLastAnswer = Integer.parseInt(query.getString(
query.getColumnIndexOrThrow(HLdb.COL_LAST_ANSWER))
.toString());
iRandomizedLastAnswer = Integer.parseInt(answerStrings[9]); // needs to be translated.
if (iRandomizedLastAnswer > 0 && iLastAnswer > 0) {
fhtv_last_answer.setText(String.valueOf(iRandomizedLastAnswer));
switch (iRandomizedLastAnswer) {
case 1:
rb_answer1.setChecked(true);
break;
case 2:
rb_answer2.setChecked(true);
break;
case 3:
rb_answer3.setChecked(true);
break;
case 4:
rb_answer4.setChecked(true);
break;
}
}
int aRowID = query.getPosition();
// htv_rowid.setText(String.valueOf(aRowID));
fhtv_answerstring.setText(answerStrings[0] + answerStrings[5]
+ answerStrings[6] + answerStrings[7] + answerStrings[8] + answerStrings[9]);
query.moveToNext();
}
view1 = inflater.inflate(R.layout.vertical_pager1, null);
pageViewsAL.add(view1);
verticalPager1 = (VerticalViewPager) view1.findViewById(R.id.pager1);
verticalPager2 = (VerticalViewPager) view1.findViewById(R.id.pager1);
vAdapter1 = new VerticalAdapter(verticalViewsAL);
verticalPager1.setAdapter(vAdapter1);
basePager = (ViewPager) getView().findViewById(R.id.basePager);
baseAdapter = new BasePagerAdapter(pageViewsAL);
basePager.setAdapter(baseAdapter);
// context = getActivity().getApplicationContext();
// context = getActivity().getApplicationContext();
// cursorAdapter = new CursorPagerAdapter(context, pageViews, query);
// basePager.setAdapter(cursorAdapter);
verticalPager1.setOnPageChangeListener(new OnPageChangeListener() {
public void onPageSelected(int arg0) { }
public void onPageScrolled(int arg0, float arg1, int arg2) { }
public void onPageScrollStateChanged(int arg0) {
//((TestActivity) context).onShowFloatButton();
// btn_floating_rb = (ImageButton) view1.findViewById(R.id.btn_floating_rb);
// btn_floating_rb.bringToFront();
// Log.e("TestFragment","onPageScrollStateChanged");
}
});
}
Button.OnClickListener btnOnClickListener = new Button.OnClickListener() {
@Override
public void onClick(View v) {
// Log.e("TestFragment", "Click Floating City in the clouds");
mCallback.onSubmitSelected();
// if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
// b = ActivityOptions.makeScaleUpAnimation(v, 0, 0, v.getWidth()/2, v.getHeight()/2).toBundle();
// b = ActivityOptions.makeScaleUpAnimation(v, (int)(v.getX() + v.getWidth() / 2), (int)(v.getY() + v.getHeight() / 2), v.getWidth()/2, v.getHeight()/2).toBundle();
// }
}
};
public void myonUpdateChosenAnswer(String id, String last_answers,
boolean isCorrectAnswer) {
ContentResolver cr = getActivity().getContentResolver();
ContentValues cv = new ContentValues();
// ques/a_key ques/a_key ques/a_key
// 1 2 4 2 7 2
// 2 1 5 3 8 2
// 3 2 6 2 9 1
// 10 4
if(isCorrectAnswer) {
cv.put(HLdb.COL_CORRECT, 1);
cv.put(HLdb.COL_INCORRECT, 0);
} else {
cv.put(HLdb.COL_CORRECT, 0);
cv.put(HLdb.COL_INCORRECT, 1);
}
cv.put(HLdb.COL_LAST_ANSWER, Integer.parseInt(last_answers));
String[] selectionArg1 = new String[] { id };
int updatedRowCount = 0;
updatedRowCount = cr.update(
/* URI */HLProvider.CONTENT_URI,
/* content values */cv,
/* where */HLdb.KEY_ROWID + " = ? ",
/* arguments */selectionArg1);
}
@Override
public void onActivityCreated(Bundle savedInstanceState) {
super.onActivityCreated(savedInstanceState);
// loadPreferences();
Log.i("ExperiementFragment", "LastScreen pref: " + prefLastScreen);
String[] projection = new String[] { HLdb.COL_QUESTION,
HLdb.COL_DESCIPTION, HLdb.COL_ANSWER1, HLdb.COL_ANSWER2,
HLdb.COL_ANSWER3, HLdb.COL_ANSWER4, HLdb.KEY_ROWID,
HLdb.COL_DIFFICULTY, HLdb.COL_ID, HLdb.COL_ANSWER_KEY };
int[] viewfields = new int[] { R.id.tv_question, R.id.tv_descripton };
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// TODO Auto-generated method stub
View view = inflater.inflate(R.layout.test_fragment, container,
false);
return view;
}
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onViewCreated(view, savedInstanceState);
}
@Override
public void onDestroy() {
// TODO Auto-generated method stub
super.onDestroy();
query.close();
}
}
|
[
"[email protected]"
] | |
e43f9ae5af8e58174ee065d7151ea6c7b8810ccc
|
83893946a9daaa90d1a06f5e1398e1490eefd92b
|
/app/src/main/java/appdebugdemo/lyb/com/appdebugdemo/util/BitmapCache.java
|
7af3ec0240a9afa3b7dec11277ba617d0d9200bf
|
[] |
no_license
|
jiafenggit/APPDebugDemo
|
54ccc5004e2349f50465046c4e9f427f4c5614f9
|
89d627e52ffd129cbf6181f45aa8ff341d469200
|
refs/heads/master
| 2021-01-15T10:41:51.115529 | 2015-05-06T09:39:03 | 2015-05-06T09:39:03 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,629 |
java
|
/*
* Copyright 2011 - AndroidQuery.com ([email protected])
*
* 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 appdebugdemo.lyb.com.appdebugdemo.util;
import android.graphics.Bitmap;
import java.util.Iterator;
import java.util.LinkedHashMap;
/**
* AQuery internal use only.
*
*/
public class BitmapCache extends LinkedHashMap<String, Bitmap>{
private static final long serialVersionUID = 1L;
private int maxCount;
private int maxPixels;
private int maxTotalPixels;
private int pixels;
public BitmapCache(int mc, int mp, int mtp){
super(8, 0.75F, true);
this.maxCount = mc;
this.maxPixels = mp;
this.maxTotalPixels = mtp;
}
@Override
public Bitmap put(String key, Bitmap bm){
Bitmap old = null;
int px = pixels(bm);
if(px <= maxPixels){
pixels += px;
old = super.put(key, bm);
if(old != null){
pixels -= pixels(old);
}
//AQUtility.debug("put", key);
}else{
//AQUtility.debug("reject", px + ":" + bm.getWidth() + ":" + bm.getHeight() + ":" + key);
}
return old;
}
@Override
public Bitmap remove(Object key){
Bitmap old = super.remove(key);
if(old != null){
pixels -= pixels(old);
}
//AQUtility.debug("remove pixels", key + ":" + size() + ":" + pixels);
return old;
}
@Override
public void clear(){
super.clear();
pixels = 0;
}
private int pixels(Bitmap bm){
if(bm == null) return 0;
return bm.getWidth() * bm.getHeight();
}
private void shrink(){
if(pixels > maxTotalPixels){
Iterator<String> keys = keySet().iterator();
while(keys.hasNext()){
keys.next();
keys.remove();
if(pixels <= maxTotalPixels){
break;
}
}
}
}
@Override
public boolean removeEldestEntry(Entry<String, Bitmap> eldest) {
if(pixels > maxTotalPixels || size() > maxCount){
/*
if(pixels > maxTotalPixels){
AQUtility.debug("evict by max size");
}else{
AQUtility.debug("evict by count", maxCount);
}
*/
remove(eldest.getKey());
}
shrink();
return false;
}
}
|
[
"[email protected]"
] | |
e689bf4f34bb664ac3ee763f8eac98005ba75a5b
|
1f6c2c7a4ee64f569201cb9bc4393170be5e7ffc
|
/OOP/collections-app/src/com/techlab/test/list/TestSetList.java
|
8f470053b9b70fee05419827f55cb4d879c0408d
|
[] |
no_license
|
devang123sak/swabhav-tech
|
822dd00000a0c2b3eafd947012d6ae8c6f7b7ece
|
d2fc5378e0c534625216d8f5905d09e443d7ce47
|
refs/heads/master
| 2020-03-08T14:34:41.311953 | 2019-04-19T18:18:15 | 2019-04-19T18:18:15 | 128,189,710 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,016 |
java
|
package com.techlab.test.list;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
public class TestSetList {
public static void main(String[] args) {
Set<Integer> nos;
nos = new HashSet<Integer>();
// nos = new LinkedHashSet<Integer>();
//nos = new TreeSet<Integer>();
nos.add(10);
nos.add(50);
nos.add(20);
nos.add(30);
printList(nos);
updateList(nos, 20, 400);
deleteListValue(nos, 50);
}
private static void printList(Set<Integer> nos) {
for (Integer value : nos) {
System.out.print(value + " ");
}
System.out.println(" ");
}
private static void updateList(Set<Integer> nos, int oldValue, int newValue) {
if (nos.contains(oldValue)) {
nos.remove(oldValue);
nos.add(newValue);
}
printList(nos);
}
private static void deleteListValue(Set<Integer> nos, int value) {
if (nos.contains(value)) {
nos.remove(value);
}
printList(nos);
}
}
|
[
"[email protected]"
] | |
1c65dc273db199660322b59aba936c81e7d09627
|
4fab44e9f3205863c0c4e888c9de1801919dc605
|
/AL-Game/src/com/aionemu/gameserver/dataholders/TeleLocationData.java
|
303e5809936798404a00d7ed226e2bf0f310657b
|
[] |
no_license
|
YggDrazil/AionLight9
|
fce24670dcc222adb888f4a5d2177f8f069fd37a
|
81f470775c8a0581034ed8c10d5462f85bef289a
|
refs/heads/master
| 2021-01-11T00:33:15.835333 | 2016-07-29T19:20:11 | 2016-07-29T19:20:11 | 70,515,345 | 2 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,922 |
java
|
/**
* This file is part of Aion-Lightning <aion-lightning.org>.
*
* Aion-Lightning is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Aion-Lightning is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. *
* You should have received a copy of the GNU General Public License
* along with Aion-Lightning.
* If not, see <http://www.gnu.org/licenses/>.
*/
package com.aionemu.gameserver.dataholders;
import com.aionemu.gameserver.model.templates.teleport.TelelocationTemplate;
import gnu.trove.map.hash.TIntObjectHashMap;
import javax.xml.bind.Unmarshaller;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
/**
* @author orz
*/
@XmlRootElement(name = "teleport_location")
@XmlAccessorType(XmlAccessType.FIELD)
public class TeleLocationData {
@XmlElement(name = "teleloc_template")
private List<TelelocationTemplate> tlist;
/**
* A map containing all teleport location templates
*/
private TIntObjectHashMap<TelelocationTemplate> loctlistData = new TIntObjectHashMap<TelelocationTemplate>();
void afterUnmarshal(Unmarshaller u, Object parent) {
for (TelelocationTemplate loc : tlist) {
loctlistData.put(loc.getLocId(), loc);
}
}
public int size() {
return loctlistData.size();
}
public TelelocationTemplate getTelelocationTemplate(int id) {
return loctlistData.get(id);
}
}
|
[
"[email protected]"
] | |
99eedefda2b9dfe2be692e1e8c58ce9ba5ed0a4d
|
f91cbac1aed9a75c142f00d339584b1185011961
|
/app/src/androidTest/java/com/community/tsinghua/ApplicationTest.java
|
387676971f95f9e61463e8c53519746b65dc04bb
|
[] |
no_license
|
cjkim118/THUKSA
|
952f6a59bfd68d53646b5ab44cfd11f3697a9c6b
|
c7a375b8944cb881f166ff9e789346c82bb81858
|
refs/heads/master
| 2021-01-10T13:41:30.469860 | 2016-01-21T08:36:01 | 2016-01-21T08:36:01 | 48,266,227 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 341 |
java
|
package com.community.tsinghua;
import android.app.Application;
import android.test.ApplicationTestCase;
/**
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a>
*/
public class ApplicationTest extends ApplicationTestCase<Application> {
public ApplicationTest() {
super(Application.class);
}
}
|
[
"[email protected]"
] | |
39f8e49ad952b85ce4da25f31c3a97d31b58f2d3
|
d61377e105ac205512aefad24bd37f750d58dbba
|
/Floodlight/src/main/java/net/floodlightcontroller/loadbalancer/LBPool.java
|
07961150e0feb8e7c6f6910c1d8bcc8233a9ff31
|
[
"Apache-2.0"
] |
permissive
|
RotemNe/SDN-Based-Private-Interconnection
|
f5bbe60c6e873a4267aead8c790fd89659d5a995
|
a12664285db66c819a2697acb799a992945aa307
|
refs/heads/master
| 2020-04-15T15:21:51.468622 | 2016-06-25T13:48:24 | 2016-06-25T13:48:24 | 46,444,885 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,181 |
java
|
/**
* Copyright 2013, Big Switch Networks, Inc.
*
* 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 net.floodlightcontroller.loadbalancer;
import java.util.ArrayList;
import org.codehaus.jackson.map.annotate.JsonSerialize;
import net.floodlightcontroller.loadbalancer.LoadBalancer.IPClient;
/**
* Data structure for Load Balancer based on
* Quantum proposal http://wiki.openstack.org/LBaaS/CoreResourceModel/proposal
*
* @author KC Wang
*/
@JsonSerialize(using=LBPoolSerializer.class)
public class LBPool {
protected String id;
protected String name;
protected String tenantId;
protected String netId;
protected short lbMethod;
protected byte protocol;
protected ArrayList<String> members;
protected ArrayList<String> monitors;
protected short adminState;
protected short status;
protected String vipId;
protected int previousMemberIndex;
public LBPool() {
id = String.valueOf((int) (Math.random()*10000));
name = null;
tenantId = null;
netId = null;
lbMethod = 0;
protocol = 0;
members = new ArrayList<String>();
monitors = new ArrayList<String>();
adminState = 0;
status = 0;
previousMemberIndex = -1;
}
public String pickMember(IPClient client) {
// simple round robin for now; add different lbmethod later
if (members.size() > 0) {
previousMemberIndex = (previousMemberIndex + 1) % members.size();
return members.get(previousMemberIndex);
} else {
return null;
}
}
}
|
[
"[email protected]"
] | |
0ba8bee520abaa33d3df2c5b91cb177266eb9dd3
|
05f4b6da3c9d2c869f44b12fc10deadbed059e3a
|
/src/main/Font.java
|
bc0d0a1f7a13005ea37dffe6654a4311024bb1d1
|
[] |
no_license
|
SolomonBaarda/PlatformerGame
|
108175d07ed164decb04f4e290a1bf32294aaf21
|
9f5205188200c42d47e9d7be3c36859c2c7faf23
|
refs/heads/master
| 2020-05-20T04:54:07.499985 | 2019-06-21T10:59:29 | 2019-06-21T10:59:29 | 185,392,622 | 1 | 0 | null | 2019-05-21T09:53:10 | 2019-05-07T11:59:57 |
Java
|
UTF-8
|
Java
| false | false | 1,044 |
java
|
package main;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.HashMap;
import java.util.Scanner;
public class Font {
private File fontFile;
private SpriteSheet fontSheet;
private HashMap<String, Sprite> letters;
public Font(File fontFile, SpriteSheet fontSheet) {
this.fontFile = fontFile;
this.fontSheet = fontSheet;
letters = new HashMap<>();
try {
Scanner s = new Scanner(fontFile);
while(s.hasNextLine()) {
// read each line and create a tile
String line = s.nextLine();
if(!line.startsWith("//")) {
String[] splitLine = line.split(",");
String letter = splitLine[0];
int spriteX = Integer.parseInt(splitLine[1]);
int spriteY = Integer.parseInt(splitLine[2]);
Sprite newLetter = fontSheet.getSprite(spriteX, spriteY);
letters.put(letter, newLetter);
}
}
s.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
}
}
public void renderWord() {
}
public void renderLetter() {
}
}
|
[
"[email protected]"
] | |
b5f3a104c57fcd15f15967cf3f6562c51fae8aa8
|
6177b74ef1ff7545171ee3ac30d57e0d2c60a952
|
/[Study] Concurrency/src/b/threadsafety/B_Atomicity.java
|
e9c960ab19a1a731777addf27353b5ab9b0552c3
|
[] |
no_license
|
alexandru-manea/study-concurrency
|
23ab245b666833f547c159abd3ad8ce08eabd8d8
|
5ee66457bebc83992b894d69b8719ef5cbc2abb3
|
refs/heads/master
| 2020-12-24T16:34:13.542560 | 2016-04-27T13:42:34 | 2016-04-27T13:42:34 | 16,943,435 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,690 |
java
|
package b.threadsafety;
import java.math.BigInteger;
import java.util.concurrent.atomic.AtomicLong;
import javax.servlet.*;
import $annotations.*;
public class B_Atomicity
{
/**
* ATOMIC OPERATIONS
* -----------------
*
* **********************************************************************************************************************************
* OPERATIONS A AND B ARE <ATOMIC WRT EACH OTHER> IF, FROM THE PERSPECTIVE OF A THREAD EXECUTING A, WHEN ANOTHER THREAD EXECUTES B,
* EITHER ALL OF B HAS EXECUTED, OR NONE OF IT HAS. AN <ATOMIC OPERATION> IS ONE THAT IS ATOMIC WRT ALL OPERATIONS, INCLUDING ITSELF,
* THAT OPERATE ON THE SAME STATE.
* **********************************************************************************************************************************
*
* COMPOUND ACTIONS :: Sequences of operations that must be executed atomically in order to remain thread-safe. Examples include:
*
* # READ-MODIFY-WRITE :: sequence of three discrete operations: fetch the current value, modify it, and write the new value back
* :: e.g. if one thread is interrupted in the middle of this operation, another may read an incorrect value
*
* # CHECK-THEN-ACT :: a potentially stale observation is used to make a decision on what to do next
* :: e.g. a thread is interrupted after the check, another one changes the boolean
*
*/
/**
* RACE CONDITIONS
* ---------------
*
* **********************************************************************************************************************************
* A <RACE CONDITION> OCCURS WHEN THE CORRECTNESS OF A COMPUTATION DEPENDS ON THE RELATIVE TIMING OR INTEARLIVING OF MULTIPLE THREADS
* BY THE RUNTIME. RACE CONDITIONS CAN OCCUR WHEN EXECUTING COMPOUND ACTIONS.
* **********************************************************************************************************************************
*
*/
/*
* EXAMPLE OF READ-MODIFY-WRITE AND OF A RACE CONDITION WITH OUR EXAMPLE
*
* Same factorization servlet, BUT WITH <ONE> STATE VARIABLE.
*
* It is NOT THREAD-SAFE because it is SUSCEPTIBLE TO LOST UPDATES. The increment operation is an example of a compound action,
* more exactly a READ-MODIFY-WRITE operation. Because it does not execute as a single, indivisible unit, a thread performing it
* can be interrupted just after reading value 'x'. Another one reads 'x' as well, and both set it to 'x+1', instead of ending up
* being 'x+2'. This is an example of a RACE CONDITION.
*/
@NotThreadSafe
class UnsafeCountingFactorizer implements Servlet
{
private long count = 0; // NEW
public long getCount() {return count;} // NEW
public void service(ServletRequest request, ServletResponse response)
{
BigInteger i = extractFromRequest(request);
BigInteger[] factors = factor(i);
++count; // NEW
encodeIntoResponse(response, factors);
}
// mock methods
public BigInteger extractFromRequest(ServletRequest request){return null;}
public void encodeIntoResponse(ServletResponse response, BigInteger[] factors){}
public BigInteger[] factor(BigInteger i){return null;}
// unimplemented methods from Servlet
public void destroy(){}
public ServletConfig getServletConfig(){return null;}
public String getServletInfo(){return null;}
public void init(ServletConfig arg0) throws ServletException{}
}
/**
* ONE SOLUTION :: JAVA.UTIL.CONCURRENT ATOMIC VARIABLE CLASSES
*
* IMPORTANT --> CAN MAKE THE CLASS THREAD-SAFE JUST BY USING THREAD-SAFE OBJECTS, LIKE ATOMIC LONG, ONLY WHEN WE HAVE
* INDEPENDENT STATE VARIABLES AND NO RELATIONSHIPS BETWEEN THEM ARE SPECIFIED IN THE INVARIANTS.
*
*/
/*
* By replacing the long counter with an <AtomicLong>, we ensure that all actions that access the counter state are atomic.
* Then the class becomes THREAD-SAFE, but only because WE HAVE ONE STATE VARIABLE.
*/
@ThreadSafe
class CountingFactorizer implements Servlet
{
private final AtomicLong count = new AtomicLong(0);
public long getCount()
{
return count.get(); // NEW
}
public void service(ServletRequest request, ServletResponse response)
{
BigInteger i = extractFromRequest(request);
BigInteger[] factors = factor(i);
count.incrementAndGet(); // NEW
encodeIntoResponse(response, factors);
}
// mock methods
public BigInteger extractFromRequest(ServletRequest request){return null;}
public void encodeIntoResponse(ServletResponse response, BigInteger[] factors){}
public BigInteger[] factor(BigInteger i){return null;}
// unimplemented methods from Servlet
public void destroy(){}
public ServletConfig getServletConfig(){return null;}
public String getServletInfo(){return null;}
public void init(ServletConfig arg0) throws ServletException{}
}
/*
* EXAMPLE OF CHECK-THEN-ACT AND OF A RACE CONDITION
*
* LAZY INITIALIZATION: defer initializing an object until it is actually needed while at the same time ensuring that it is
* initialized only once.
*
* It is NOT THREAD-SAFE because, in the presence of some unlucky timing, the value of instance might be changed while another
* thread is in mid-update, thus resulting in two different objects being created and returned. This happens because, as before,
* the action has to be atomic, because it deals with a shared, mutable state variable.
*/
@NotThreadSafe
class LazyInitRace
{
private ExpensiveObject instance = null;
public ExpensiveObject getInstance()
{
if (instance == null)
instance = new ExpensiveObject();
return instance;
}
class ExpensiveObject {}
}
}
|
[
"[email protected]"
] | |
208f8701aaf9ed225b7dffb2a3b8365b4920427b
|
073a2f879f526ebc0ffad9d06b86cc0d5d75e2c5
|
/service/service_ucenter/src/main/java/com/mengyi/service/UserAddressService.java
|
05bdcc5517de14261c9bbf4e3057bb2c1b9db2a6
|
[] |
no_license
|
mengyiyouth/mall_book
|
999cc89ee11cf52ea6f845ada2355acd1c881cf6
|
cd9a4ab05b5885e24a0b202d4ab50148a6e71eb5
|
refs/heads/master
| 2023-06-21T12:43:14.447032 | 2021-08-01T05:25:48 | 2021-08-01T05:25:48 | 391,533,748 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 361 |
java
|
package com.mengyi.service;
import com.mengyi.entity.UserAddress;
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
/**
* <p>
* 服务类
* </p>
*
* @author mengyiyouth
* @since 2021-05-13
*/
public interface UserAddressService extends IService<UserAddress> {
List<UserAddress> getAllAddress(String memberId);
}
|
[
"[email protected]"
] | |
5bcd7df83b29096df57e48c49531a81075219e1f
|
c26c95eb674379a37dde987fa2b1feac01d0074e
|
/java/exception/JavaApplication17.java
|
991d4c2f9bfdcddd582bdba1174b4d985ead77c8
|
[] |
no_license
|
rednoax/preparation
|
8fb403a3a6e1aef23a21bdcab1054ff8cea85dc9
|
c717e1920e68e5db5cce0c779a63f88b62996eb3
|
refs/heads/master
| 2022-01-31T16:28:05.187870 | 2022-01-21T14:06:33 | 2022-01-21T14:10:29 | 14,033,695 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 4,245 |
java
|
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package javaapplication17;
import static java.lang.System.*;
import java.io.*;
import java.util.*;
class Resource implements AutoCloseable {
private int i = 0;
public void set(int i) {
this.i = i;
}
@Override
public void close() {
String s = String.format("close %d", i);
out.printf("%s%n", s);
switch (i) {
case -2:
case -1:
case 2:
throw new NullPointerException(s);
}
}
Resource(Object o) {
}
}
/**
*
* try (...) {...}. no catch demo
input file name:
1. "a.txt" that doesn't exist under current dir. The following uses try() {} without any catch:
try's () will not handle the FileNotFoundException in it! NO close() is called since the object
fails to be instantiated!
run:
run:
a.txt
Exception in thread "main" java.io.FileNotFoundException: a.txt (系统找不到指定的文件。)
at java.base/java.io.FileInputStream.open0(Native Method)
at java.base/java.io.FileInputStream.open(FileInputStream.java:219)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:157)
at java.base/java.io.FileInputStream.<init>(FileInputStream.java:112)
at javaapplication17.JavaApplication17.main(JavaApplication17.java:44)
2. "build.xml" that does exist under current dir
then 0 or 1 to see different results;
the output of input 0:
run:
build.xml
try+, input:0
try-
close 0
main-
BUILD SUCCESSFUL (total time: 5 seconds)
the output of input 1:
run:
build.xml
try+, input:1
before throw
close 1
Exception in thread "main" java.lang.RuntimeException: RE
at javaapplication17.JavaApplication17.main(JavaApplication17.java:50)
the output of 2, the NullPointerException generated by close is suppressed, at last only the Exception in {} block
of try will be thrown.
run:
build.xml
try+, input:2
before throw
close 2
Exception in thread "main" java.lang.RuntimeException: RE
at javaapplication17.JavaApplication17.main(JavaApplication17.java:50)
Suppressed: java.lang.NullPointerException: close 2
at javaapplication17.Resource.close(JavaApplication17.java:24)
at javaapplication17.JavaApplication17.main(JavaApplication17.java:44)
the output of -1:
run:
build.xml
try+, input:-1
try-
close -1
Exception in thread "main" java.lang.NullPointerException: close -1
at javaapplication17.Resource.close(JavaApplication17.java:24)
at javaapplication17.JavaApplication17.main(JavaApplication17.java:56)
the output of -2:
run:
build.xml
try+, input:-2
before return
close -2
Exception in thread "main" java.lang.NullPointerException: close -2
at javaapplication17.Resource.close(JavaApplication17.java:24)
at javaapplication17.JavaApplication17.main(JavaApplication17.java:56)
the output of -3:
run:
build.xml
try+, input:-3
before return
close -3
BUILD SUCCESSFUL (total time: 5 seconds)
*/
public class JavaApplication17 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) throws FileNotFoundException {
// TODO code application logic here
Exception ex = new Exception("WillNotThrow");
ex.printStackTrace();
Scanner console = new Scanner(System.in);
String file = console.next();
try (Resource ms = new Resource(new FileInputStream(file))) {
out.print("try+, input:");
int i = console.nextInt();
ms.set(i);
if (i > 0) {
out.println("before throw");
throw new RuntimeException("RE");
} else if (i <= -2) {
out.println("before return");
return;
}
out.println("try-");
}
/*
catch (RuntimeException re) {
out.println("re");
}
*/
out.println("main-");
}
}
|
[
"[email protected]"
] | |
f5bef561f058e9a1a4369dce7f31d79016216276
|
61e922ae813217bd933a9f380d4a330e72fcb5e1
|
/src/main/java/com/adisava/panache/Status.java
|
678397c8b694f3b4290e2a6e13a996ef6fdd16b9
|
[] |
no_license
|
omeryounus/code-with-quarkus
|
1f1c89295186fc068cac7799d85aca70ec101b62
|
29188ac3f29c127737ddcde949bf2ef22980c95d
|
refs/heads/main
| 2023-04-07T19:54:33.256333 | 2021-04-10T13:53:45 | 2021-04-10T13:53:45 | 348,196,760 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 99 |
java
|
package com.adisava.panache;
public enum Status {
CHECKED_OUT,
CHECKED_IN,
ORDERED
}
|
[
"[email protected]"
] | |
342be8db902893b2f97f893d27ef26fe92a672c1
|
d5bdc5090de108867ae10edee48c88885463ae63
|
/app/src/main/java/com/example/claudio/qradmin/Alumno.java
|
4876d2f53cf26d553de9c90fd96a1bd1dcbcea69
|
[] |
no_license
|
Claudio72/QrAdmin
|
909f0c8fbe2516ad9b1480196e70fcccbf1cd93c
|
86814170f09d46eb71cedce0ec44c0ae85e2edd1
|
refs/heads/master
| 2021-01-17T11:23:20.419843 | 2017-03-06T05:29:40 | 2017-03-06T05:29:40 | 84,033,520 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,898 |
java
|
package com.example.claudio.qradmin;
import android.graphics.Bitmap;
import java.lang.ref.SoftReference;
import java.text.DateFormat;
import java.util.Date;
import static android.R.attr.bitmap;
/**
* Created by Claudio on 02/03/2017.
*/
public class Alumno {
private String nombre, apellido;
private String curso;
private String anio, mes, dia;
private Bitmap image;
public Bitmap getImage() {
return image;
}
public void setImage(Bitmap image) {
this.image = image;
}
public Alumno(String no, String cu, String timpo) {
nombre = no;
curso = cu;
String[] te = timpo.split("-");
anio = te[0];
mes = te[1];
dia = te[2];
}
public String getCurso() {
return curso;
}
public void setCurso(String curso) {
this.curso = curso;
}
public String getNombre() {
return nombre;
}
public void setNombre(String nombre) {
this.nombre = nombre;
}
public boolean calcularedad() {
String currentDateTimeString = DateFormat.getDateTimeInstance().format(new Date());
String[] ho = currentDateTimeString.split("/");
String dia = ho[0];
String mes = ho[1];
String anio = ho[2];
char[] bn = anio.toCharArray();
anio = new String();
for (int i = 0; i < 4; i++) {
anio = anio + bn[i];
}
System.out.println("dia" + dia);
System.out.println(mes);
System.out.println(anio);
int va = Integer.parseInt(dia);
int ru = Integer.parseInt(mes);
int em = Integer.parseInt(anio);
int b = ((em - Integer.parseInt(this.anio)));
b = b - 1;
if (va >= Integer.parseInt(this.dia) && ru >= Integer.parseInt(this.mes)) {
b = b + 1;
}
if (b >= 18) {
return true;
} else {
return false;
}
}
public int edadcalculada() {
String currentDateTimeString = DateFormat.getDateTimeInstance().format(new Date());
String[] ho = currentDateTimeString.split("/");
String dia = ho[0];
String mes = ho[1];
String anio = ho[2];
char[] bn = anio.toCharArray();
anio = new String();
for (int i = 0; i < 4; i++) {
anio = anio + bn[i];
}
System.out.println("dia" + dia);
System.out.println(mes);
System.out.println(anio);
int va = Integer.parseInt(dia);
int ru = Integer.parseInt(mes);
int em = Integer.parseInt(anio);
int b = ((em - Integer.parseInt(this.anio)));
b = b - 1;
if (va >= Integer.parseInt(this.dia) && ru >= Integer.parseInt(this.mes)) {
b = b + 1;
}
return b;
}
public void setApelli(String apelli){
apellido=apelli;
}
}
|
[
"[email protected]"
] | |
c97fa66404d4f1cae7723924d4d4d48d4e051049
|
d8a1d154337db56a0d199b99e0a68c27619bf9a5
|
/mas/src/main/java/com/biziitech/mlfm/dao/DaoOrder.java
|
1766dde069ff3c6fde4dbe1ea0feee0b357ef4c6
|
[] |
no_license
|
ToufiqAmin/project1
|
bf0ec3eb2fbf50994a37cfb2689f81cb99c7985a
|
c79af6e22dd1e881e5eb367d5d9875384bfcde80
|
refs/heads/master
| 2020-07-07T10:26:29.473959 | 2019-08-20T08:15:58 | 2019-08-20T08:15:58 | 203,323,794 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,486 |
java
|
package com.biziitech.mlfm.dao;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.springframework.web.bind.annotation.RequestParam;
import com.biziitech.mlfm.custom.model.ModelInquiryList;
import com.biziitech.mlfm.model.ModelOrder;
import com.biziitech.mlfm.model.ModelOrderOwner;
public interface DaoOrder {
public void saveOrder(ModelOrder order);
public List<ModelOrder> getOrderData();
public Optional<ModelOrder> getOrderById(Long orderId);
public List<Map<String,Object>> report();
//public List<ModelOrder> getAllOwner( String initial_Buyer,String ultimate_buyer,Long inquiry_Id,String mail_Id,Long user_inquery_no,String remarks,String user,Date inq_st,Date inq_ed,Date mail_st,Date mail_ed);
public List<ModelOrder> getAllOwner( String initial_Buyer,String ultimate_buyer,Long inquiry_Id,String mail_Id,Long user_inquery_no,String remarks,String user,Date inq_st,Date inq_ed);
public List<ModelOrder> getAllOwnerActive(Long initial_Buyer,Long ultimate_buyer,Long inquiry_Id,String mail_Id,Long user_inquery_no,String remarks,String user,Date inq_st,Date inq_ed,int active_status);
public List<ModelOrder> getOrderData(String initialBuyer,String ultimate_buyer, String user, Date stDate, Date endDate);
public List<ModelOrder> getAllOwnerBySearch(Long typeId, Long owner, Long ultimateOwner, Long inquiryId,
Long user, Date startDate, Date endDate, int status);
public List<ModelInquiryList> getOrderDeatailsData(Long ownerType,Long owner,Long ultimateOwner, Date startDate, Date endDate,Long user,int active);
//created by sohel rana on 14/03/2019
public void saveNewOrder(ModelOrder order);
public List<ModelInquiryList> getNewOrderData(Long id);
public List<ModelOrder> getAllInquiryData(Long typeId,Long owner,Long ultimateOwner,Long inquiryId,Long user,Date startDate,Date endDate,int status);
public List<ModelOrder> newInquiry(Long id);
//created by sohel rana on 18/04/2019
public List<ModelOrder> checkInquiry(Long ownerId,Date orderDate);
//created by sohel rana on 25/04/2019
public List<ModelOrder> getAllVerifiedInquiryData(Long typeId, Long owner, Long ultimateOwner, Long inquiryId,
Long user, Date startDate, Date endDate, int status, Date doneStartDate, Date doneEndDate,Long verifiedBy);
}
|
[
"Toufiq Amin@DESKTOP-7I4I04B"
] |
Toufiq Amin@DESKTOP-7I4I04B
|
c15a124ccee998d6b6827ba95835094489ba8840
|
89d1a909467989ba1ef6369b319a6c4a3ed332b7
|
/Walker.java
|
85c8901ee671959db42f85cb24e1fa68429f5f38
|
[] |
no_license
|
phungngo1020/Walker
|
e4637815a343ecb639da8e7c3c5551e2a08b9349
|
1a8c69d2d334e402b67f7e8ed5f6271a6c690c59
|
refs/heads/master
| 2020-06-05T08:37:05.817676 | 2019-06-17T16:06:36 | 2019-06-17T16:06:36 | 192,378,936 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 3,816 |
java
|
import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import javafx.scene.canvas.Canvas;
import javafx.scene.canvas.GraphicsContext;
import javafx.scene.paint.Color;
import javafx.scene.image.Image;
public class Walker extends Application {
Canvas canvas;
GraphicsContext gc;
Image image;
int x= 200;
int y= 200;
int steps=0;
boolean done = false;
boolean face = false;
public void step1() {
if (!done) {
int oldX = x;
int oldY = y;
double r = Math.random();
if (r < 0.25) x -= 5;
else if (r < 0.50) x += 5;
else if (r < 0.75) y -= 5;
else if (r < 1.00) y += 5;
steps++;
System.out.println("Step #"+steps+", r="+r+", walker moves from ("+oldX+","+oldY+") to ("+x+","+y+")");
if (face) {
gc.drawImage(image, x, y,50,50);
} else {
gc.setLineWidth(2);
gc.strokeLine(oldX,oldY,x,y);
}
} // endif...
if ((x<0) || (x>=350) || (y<0) || (y>=350)) {
done = true;
} // endif...
} // endmethod step1...
public void walk() {
while(!done) {
step1();
}
} // endmethod walk...
public void reset() {
x = 200;
y = 200;
done = false;
gc.setFill(Color.WHITE);
gc.fillRect(0,0,400,400);
if (face) {
gc.drawImage(image, x, y,50,50);
} // endif...
} // endmethod walk...
@Override
public void start(Stage primaryStage) {
Button btn1 = new Button();
btn1.setText("Step 1...");
btn1.setOnAction(
new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("step the walker...");
step1();
} // end method handle...
} // end new...
); // end call...
Button btn2 = new Button();
btn2.setText("Run...");
btn2.setOnAction(
new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("walk the walker...");
walk();
} // end method handle...
} // end new...
); // end call...
Button btn3 = new Button();
btn3.setText("Reset...");
btn3.setOnAction(
new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("resetting the walker...");
reset();
} // end method handle...
} // end new...
); // end call...
Button btn4 = new Button();
btn4.setText("switch to face...");
btn4.setOnAction(
new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
if (face) {
System.out.println("setting walker to line...");
btn4.setText("switch to face...");
} else {
System.out.println("setting walker to face...");
btn4.setText("switch to line...");
} // endif...
face = !face;
reset();
} // end method handle...
} // end new...
); // end call...
HBox hbox = new HBox();
BorderPane root = new BorderPane();
hbox.setSpacing(10);
hbox.setStyle("-fx-background-color: #336699;");
hbox.getChildren().addAll(btn1,btn2,btn3,btn4);
canvas = new Canvas(400,400);
gc = canvas.getGraphicsContext2D();
gc.setStroke(Color.GREEN);
gc.setLineWidth(3);
image = new Image("sad.png",50,50,false,false);
if (face) {
gc.drawImage(image, x, y,50,50);
} // endif...
root.setBottom(hbox);
root.setCenter(canvas);
Scene scene = new Scene(root);
primaryStage.setTitle("Walker...");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
|
[
"[email protected]"
] | |
60ce9098420e282b823a18202d4a71c97f53e894
|
2b59ca34e01dca5cfbc92055203f724ebc0a1ce6
|
/RSAChatClient.java
|
cf8777127adb021462d67245ec6f7f6128a15b8b
|
[] |
no_license
|
urjeet/RSA-Chat
|
407015296d7884a91d54e301306b8f2ddc48d414
|
64d7b550f895a669915ad895e8a6f2bc6bdac12f
|
refs/heads/master
| 2023-01-29T22:52:29.071291 | 2020-12-15T00:18:55 | 2020-12-15T00:18:55 | 320,160,076 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 7,706 |
java
|
/** Primitive chat client.
* This client connects to a server so that messages can be typed and forwarded
* to all other clients.
* Adapted from Dr. John Ramirez's CS1501
*@author Urjeet Deshmukh, November 18th 2020
*/
import java.util.*;
import java.io.*;
import java.net.*;
import javax.swing.*;
import java.awt.event.*;
import java.awt.*;
import java.math.*;
import java.text.*;
public class RSAChatClient extends JFrame implements Runnable, ActionListener {
public static final int PORT = 4444;
ObjectOutputStream myWriter;
ObjectInputStream myReader;
JTextArea outputArea;
JLabel prompt;
JTextField inputField;
String myName, serverName;
Socket connection;
SymmetricCipher cipher;
String encryptionType;
static int toExit = 0;
public RSAChatClient()
{
try{
myName = JOptionPane.showInputDialog(this, "Enter your user name: ");
serverName = JOptionPane.showInputDialog(this, "Enter the server name: ");
InetAddress addr = InetAddress.getByName(serverName);
connection = new Socket(addr, PORT); // Connect to server with new Socket
/* myReader =
new BufferedReader(
new InputStreamReader(
connection.getInputStream())); // Get Reader and Writer
myWriter =
new PrintWriter(
new BufferedWriter(
new OutputStreamWriter(connection.getOutputStream())), true);
myWriter.println(myName); // Send name to Server. Server will need
// this to announce sign-on and sign-off
// of clients
*/
myWriter = new ObjectOutputStream(connection.getOutputStream()); // Creates ObjectOutputStream on Socket
myWriter.flush(); // Calls flush() to prevent deadlock
myReader = new ObjectInputStream(connection.getInputStream()); // Creates ObjectInputStream on Socket
BigInteger E = (BigInteger)myReader.readObject(); // Receives the server's public key, E, as a BigInteger object
BigInteger N = (BigInteger)myReader.readObject(); // receives the server's public mod value, N, as a BigInteger object
encryptionType = (String)myReader.readObject(); //
System.out.println("Server's Public Key: " + E +"\n\nServer's Public Mod Value: " + N); // preferred symmetric cipher as a String object
System.out.println("\nEncrytpion Type: " + encryptionType); // "Sub" or "Add"
if(encryptionType.equalsIgnoreCase("sub")) { // Checks for which type of cipher and creates respecctive cipher
cipher = new Substitution();
System.out.println("Cipher Type: Substitution");
} else if(encryptionType.equalsIgnoreCase("add")) {
cipher = new Additive();
System.out.println("Cipher Type: Additive");
}
BigInteger key = new BigInteger(1, cipher.getKey()); // Gets key from cipher and converts to BigInteger
BigInteger encryptKey = key.modPow(E, N); // RSA-encrypts the BigInteger version of key using E and N
System.out.println("\nThe Symmetric Key is: " + encryptKey);
myWriter.writeObject(encryptKey); // Sends RSA-encrypted BigInteger key to server
myWriter.flush(); // Calls flush() to prevent deadlock
myWriter.writeObject(cipher.encode(myName)); // Encrypts name and sends it to server
myWriter.flush(); // Calls flush() to prevent deadlock
this.setTitle(myName); // Set title to identify chatter
Box b = Box.createHorizontalBox(); // Set up graphical environment for
outputArea = new JTextArea(8, 30); // user
outputArea.setBackground(Color.WHITE);
outputArea.setEditable(false);
outputArea.setWrapStyleWord(true);
outputArea.setLineWrap(true);
b.add(new JScrollPane(outputArea));
outputArea.append("Welcome to the Chat Group, " + myName + "\n");
inputField = new JTextField(""); // This is where user will type input
inputField.addActionListener(this);
prompt = new JLabel("Type your messages below:");
Container c = getContentPane();
c.add(b, BorderLayout.NORTH);
c.add(prompt, BorderLayout.CENTER);
c.add(inputField, BorderLayout.SOUTH);
Thread outputThread = new Thread(this); // Thread is to receive strings
outputThread.start(); // from Server
addWindowListener(
new WindowAdapter()
{
public void windowClosing(WindowEvent e)
{
try{
myWriter.writeObject(cipher.encode("CLIENT CLOSING"));
myWriter.flush();
connection.close();
//System.exit(0);
}catch(IOException exc){
System.out.println("Error in Closing Client.");
toExit = -1;
}
System.exit(toExit);
}
}
);
setSize(500, 200);
setVisible(true);
}catch (Exception e){
System.out.println("Problem starting client!");
}
}
public void run()
{
while (true)
{
try {
byte[] currMsg = (byte[])myReader.readObject();
System.out.println("\nArray of Bytes Received: " + Arrays.toString(currMsg));
String decodeMsg = cipher.decode(currMsg);
/*System.out.print("Decrypted Array of Bytes: [");
for (int i = 0; i < decodeMsg.length() - 1; i++){
System.out.print((int)decodeMsg.charAt(i) + ", ");
}
System.out.println((int) decodeMsg.charAt(decodeMsg.length() - 1) + "]");*/
System.out.println("Decrypted Array of Bytes: " + Arrays.toString(decodeMsg.getBytes()));
System.out.println("Corresponding String: " + decodeMsg);
String timeStamp = new SimpleDateFormat("MMM d, yyyy 'at' h:mm a").format(new Date()); // Includes time stamp of when chat was sent
outputArea.append(" " + decodeMsg + " " + "(" + timeStamp + ")" + "\n");
// outputArea.append(currMsg+"\n");
}
catch (Exception e)
{
System.out.println(e + ", closing client!");
break;
}
}
System.exit(0);
}
public void actionPerformed(ActionEvent e)
{
String currMsg = e.getActionCommand(); // Get input value
inputField.setText("");
try{
//myWriter.println(myName + ":" + currMsg); // Add name and send it
myWriter.writeObject(cipher.encode(myName + ":" + currMsg)); // Send encrypted message to server
myWriter.flush(); // Calls flush() to prevent deadlock
System.out.println("\nOriginal String Message: " + myName + ":" + currMsg);
System.out.println("Corresponding Array of Bytes: " + Arrays.toString((myName + ":" + currMsg).getBytes()));
System.out.println("Encrypted Array of Bytes: " + Arrays.toString(cipher.encode(myName + ":" + currMsg)));
}catch (Exception exc){
System.out.println("Message Sending to Server Failed.");
}
}
public static void main(String [] args)
{
RSAChatClient JR = new RSAChatClient();
JR.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
}
}
|
[
"[email protected]"
] | |
2fbd1eb52e93c51a9e32d2531d8508338682e18e
|
6bbdd7815987c802e78389e3da867e84135c3eb0
|
/other fun stuff by programming language/java/rebound puck game/gui/GameScores.java
|
a6e791178a07a2f1a88997d44e19a793d166bcef
|
[] |
no_license
|
stillsw/playzone
|
4cabc3fbcb6984353bfe9ca39a4f2d64ddf1602d
|
0ede5c4549d729eab1fa4308f6cf15782c1bb551
|
refs/heads/master
| 2021-02-19T00:36:33.147285 | 2020-10-31T18:59:58 | 2020-10-31T18:59:58 | 245,257,844 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,960 |
java
|
package firstReboundGame.gui;
import firstReboundGame.*;
import firstReboundGame.gameplay.*;
import java.awt.*;
import java.awt.geom.*;
public class GameScores extends GuiComponentAdapter
{
private ScoringManager scoringManager;
private int scoreForPlay;
private int totalScore;
public GameScores(ScoringManager scoringManager, ColorArrangement colorArrangement) {
super(colorArrangement);
this.scoringManager = scoringManager;
this.listenForScoreChanges();
this.listenForScoreActions();
}
private void listenForScoreChanges() {
scoringManager.addScoreChangeListener(
new ScoreChangeListener() {
public void finishedAPlay(int scoreForPlay, int totalScore, int streakWins, boolean extraLife) {
GameScores.this.scoreForPlay = scoreForPlay;
GameScores.this.totalScore = totalScore;
}
});
}
private void listenForScoreActions() {
scoringManager.addScoreActionListener(
new ScoreActionAdapter() {
public void startedGame(ScoringManager scoringManager) {
GameScores.this.scoreForPlay = 0;
GameScores.this.totalScore = 0;
}
public void changedLevel(ScoringManager scoringManager) {
GameScores.this.scoreForPlay = 0;
GameScores.this.totalScore = 0;
}
});
}
public boolean drawGuiComponent(Graphics2D g2) {
if (super.drawGuiComponent(g2)) {
g2.setColor(this.colorArrangement.getStrokeColor());
int ypos = (int)(this.placementRectangle.getY() + this.placementRectangle.getHeight());
g2.drawString(""+this.scoreForPlay, (int)this.placementRectangle.getX(), ypos - g2.getFontMetrics().getAscent());
g2.drawString(""+this.totalScore, (int)this.placementRectangle.getX(), ypos);
// g2.drawString("angle="+getStrikeAngle(), currXpos +10, currYpos -10);
// g2.drawString(""+useStrength, strengthRect.x - 5, strengthRect.y + strengthRect.height + 15);
}
return true;
}
}
|
[
"[email protected]"
] | |
9cf7d54799b869b4c28d6a8dd30390dfb5ff4281
|
8494b62d1bb28955c4081f808460f6788f16e129
|
/src/main/java/by/epam/hr/connection/ConnectionPool.java
|
10bd230779a662ab3bab25f0db4a264d821eb8cc
|
[] |
no_license
|
Qtexl2/ProjectHR
|
9838602065a319173f985b50319fbe714215c32e
|
017a051e20b7b7e7a3aba61e6c75ce2ca15c57eb
|
refs/heads/master
| 2021-05-11T23:39:44.427815 | 2018-05-01T15:35:39 | 2018-05-01T15:35:39 | 117,460,185 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 11,613 |
java
|
package by.epam.hr.connection;
import by.epam.hr.exception.ConnectionPoolException;
import org.apache.logging.log4j.Level;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
import java.util.Iterator;
import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicLong;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
/**
* The Class ConnectionPool.
*/
public class ConnectionPool{
/** The pool shutting down. */
private static AtomicBoolean poolShuttingDown;
/** The Constant LOGGER. */
private static final Logger LOGGER = LogManager.getLogger(ConnectionPool.class);
/** The instance. */
private static ConnectionPool instance;
/** The number attempts get connection. */
private static int numberAttemptsGetConnection;
/** The ms between attempts connection. */
private static int msBetweenAttemptsConnection;
/** How long to wait in second for a validation of connection (isValid(time)). */
private static final int TIME_VALID_CON = 2;
/** The lock instance. */
private static Lock lockInstance = new ReentrantLock();
/** The counter free connection. */
private static AtomicInteger counterFreeConnection;
/** The counter all connection. */
private static AtomicInteger counterAllConnection;
/** The pool created. */
private static AtomicBoolean poolCreated = new AtomicBoolean(false);
/** The increment connection. */
private static AtomicLong incrementConnection;
/** The time out force close. */
private static int timeOutForceClose;
/** The min size pool. */
private static int minSizePool;
/** The ms timer period. */
private static int msTimerPeriod;
/** The max size pool. */
private static int maxSizePool;
/** The min count free connections. */
private static int minCountFreeConnections;
/** The free connections. */
private LinkedBlockingQueue<PooledConnection> freeConnections;
/** The busy connections. */
private ArrayBlockingQueue<PooledConnection> busyConnections;
/** The config CP. */
private ConnectionPoolConfig configCP;
/**
* Instantiates a new connection pool.
*/
private ConnectionPool(){
poolShuttingDown = new AtomicBoolean(false);
configCP = new ConnectionPoolConfig();
timeOutForceClose = configCP.getTimeOutForceClose();
numberAttemptsGetConnection = configCP.getNumberAttemptsGetConnection();
msBetweenAttemptsConnection = configCP.getMsBetweenAttemptsConnection();
msTimerPeriod = configCP.getMsTimerPeriod();
minCountFreeConnections = configCP.getMinCountFreeConnections();
maxSizePool = configCP.getMaxConnections();
minSizePool = configCP.getMinConnections();
freeConnections = new LinkedBlockingQueue<>(maxSizePool);
busyConnections = new ArrayBlockingQueue<>(maxSizePool);
incrementConnection = new AtomicLong();
counterFreeConnection = new AtomicInteger();
counterAllConnection = new AtomicInteger();
for (int i = 0; i < minSizePool; i++) {
addConnection();
}
LOGGER.log(Level.INFO,"ConnectionPool was created with " + minSizePool + "connections");
}
/**
* Close connection.
*
* @param conn the conn
*/
private void closeConnection(PooledConnection conn){
if(conn != null) {
try {
conn.destroy();
counterAllConnection.decrementAndGet();
counterFreeConnection.decrementAndGet();
if (counterAllConnection.get() < 0) {
counterAllConnection.set(0);
}
} catch (ConnectionPoolException e) {
LOGGER.log(Level.WARN, "Connection not closed " + conn, e);
}
}
}
/**
* Destroy.
*/
public void destroy() {
if(poolShuttingDown.get())
{
return;
}
PooledConnection tempCon;
poolShuttingDown.set(true);
for (int i = 0; i < freeConnections.size(); i++) {
try {
tempCon = freeConnections.take();
instance.closeConnection(tempCon);
} catch (InterruptedException e) {
LOGGER.log(Level.WARN, "Connection not closed ", e);
}
}
configCP.destroy();
LOGGER.log(Level.INFO,"ConnectionPool was destroyed");
}
/**
* Gets the single instance of ConnectionPool.
*
* @return single instance of ConnectionPool
*/
public static ConnectionPool getInstance(){
if (!poolCreated.get()){
lockInstance.lock();
if(instance == null){
try {
instance = new ConnectionPool();
Timer timer = new Timer();
timer.schedule(new TimerTaskCheckConnections(instance,timer),1000,msTimerPeriod);
poolCreated.set(true);
}
finally {
lockInstance.unlock();
}
}
}
return instance ;
}
/**
* Release connection.
*
* @param connection the connection
*/
void releaseConnection(PooledConnection connection){
if(poolShuttingDown.get()){
instance.closeConnection(connection);
LOGGER.log(Level.WARN,"Pool is disabled!. The connection wasn't returned to the pool");
}
if(connection != null){
try{
if(!connection.isClosed()){
connection.setLastUsed(System.currentTimeMillis());
freeConnections.offer(connection);
busyConnections.remove(connection);
counterFreeConnection.incrementAndGet();
}
} catch (SQLException e) {
LOGGER.log(Level.WARN,"The connection wasn't returned to the pool",e);
}
}
}
/**
* Gets the connection.
*
* @return the connection
* @throws ConnectionPoolException the connection pool exception
*/
public PooledConnection getConnection() throws ConnectionPoolException {
if(poolShuttingDown.get()){
throw new ConnectionPoolException("Pool is disabled!");
}
PooledConnection connection;
for (int i = 0; i < numberAttemptsGetConnection; i++) {
try{
if(counterFreeConnection.get() > 0){
connection = freeConnections.poll();
if(connection.isClosed() | connection.isLogicalClose()){
connection = getConnection();
}
else {
connection.getMetaData().getTableTypes();
}
counterFreeConnection.decrementAndGet();
busyConnections.offer(connection);
return connection;
}
LOGGER.log(Level.INFO, "Wait " + msBetweenAttemptsConnection + " ms until the next connection attempt");
TimeUnit.MILLISECONDS.sleep(msBetweenAttemptsConnection);
}
catch (SQLException | InterruptedException e){
LOGGER.log(Level.WARN, "Connection not returned " );
}
}
throw new ConnectionPoolException("Pool is free!");
}
/**
* Adds the connection.
*/
private void addConnection() {
if(poolShuttingDown.get()){
return;
}
try {
if(counterAllConnection.get() < maxSizePool){
Connection connection = DriverManager.getConnection(configCP.getJdbcUrl(),configCP.getUsername(),configCP.getPassword());
PooledConnection pooledConnection = new PooledConnection(connection, incrementConnection.incrementAndGet());
pooledConnection.setLastUsed(System.currentTimeMillis());
freeConnections.add(pooledConnection);
counterFreeConnection.incrementAndGet();
counterAllConnection.incrementAndGet();
LOGGER.log(Level.INFO,"Create new connection " + pooledConnection );
}
} catch (SQLException e) {
LOGGER.log(Level.ERROR,"The pool could not create the connection",e);
}
}
/**
* Get size of pool.
*/
public int getSize(){
return freeConnections.size();
}
/**
* The Class TimerTaskCheckConnections.
*/
private static class TimerTaskCheckConnections extends TimerTask {
/** The connection pool. */
ConnectionPool connectionPool;
/** The timer. */
Timer timer;
/**
* Instantiates a new timer task check connections.
*
* @param connectionPool the connection pool
* @param timer the timer
*/
private TimerTaskCheckConnections(ConnectionPool connectionPool,Timer timer) {
this.connectionPool = connectionPool;
this.timer = timer;
}
/**
* @see java.util.TimerTask#run()
*/
public void run() {
if(poolShuttingDown.get()){
timer.cancel();
LOGGER.log(Level.INFO,"poolShutting is true. Timer cancel");
}
else {
Iterator<PooledConnection> conIterator = connectionPool.freeConnections.iterator();
long now = System.currentTimeMillis();
while (conIterator.hasNext()) {
PooledConnection con = conIterator.next();
try {
if (!con.isValid(TIME_VALID_CON)) {
conIterator.remove();
connectionPool.closeConnection(con);
LOGGER.log(Level.INFO, "Invalid connection will be closed " + con);
}
else if (counterFreeConnection.get() > minSizePool && con.getLastUsed() + timeOutForceClose < now) {
conIterator.remove();
connectionPool.closeConnection(con);
LOGGER.log(Level.INFO, "timeOutForceClose is over " + con);
}
else if(con.isLogicalClose()){
conIterator.remove();
connectionPool.closeConnection(con);
LOGGER.log(Level.INFO, "Logical close is true .Connection will be closed " + con);
}
} catch (SQLException e) {
LOGGER.log(Level.WARN, "Connection not closed " + con, e);
}
}
while (counterAllConnection.get() < minSizePool) {
ConnectionPool.getInstance().addConnection();
}
if (counterFreeConnection.get() < minCountFreeConnections) {
ConnectionPool.getInstance().addConnection();
}
}
}
}
}
|
[
"[email protected]"
] | |
e8f75544c5a2d46e2d57442114f66d9a715291ef
|
58dfbbda07c97dde38d784d5ab1ffd116943517f
|
/HealthyPets/src/Hund.java
|
df32c53938f843b0fafe19cfae45c6bbf5b77d1f
|
[] |
no_license
|
ValleTSF/ValleJava19
|
6257b15928554f3e63269f3184eb01fc3a61b84b
|
0002704e166540e7463f5d33fa3ad1d5d6333f33
|
refs/heads/master
| 2020-08-05T05:54:18.613958 | 2020-01-29T11:30:05 | 2020-01-29T11:30:05 | 212,421,059 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 407 |
java
|
public class Hund extends Djur {
// Inkapsling
private String foder = foderTyp.HUNDFODER.toString().toLowerCase() + ".";
public Hund(String namn, int vikt) {
super(namn, vikt);
}
@Override
public int foder() {
int måltid = Math.round(getVikt() / 100);
return måltid;
}
public String getFoder() {
return foder;
}
}
|
[
"[email protected]"
] | |
274e14c7de68166d67740f87215c15c62642a86c
|
6e1a69243cd2101bd736a46d36fea709f1855a60
|
/src/main/java/com/sky/springboot_api_encryption/service/DistributedLocker.java
|
dc73bd6c0f9c8dee06cf75b8ef1251cefdf2cfa7
|
[] |
no_license
|
skyunique/springboot_api_encryptionq
|
97bd702cf69a0fad470b8a89a76ee2b47ac5c25d
|
0a4ddaca5958aaab7cb5158d1fe45b9df1fb0d95
|
refs/heads/master
| 2022-11-05T13:38:13.822230 | 2020-06-22T09:35:56 | 2020-06-22T09:35:56 | 274,096,517 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 447 |
java
|
package com.sky.springboot_api_encryption.service;
import org.redisson.api.RLock;
import java.util.concurrent.TimeUnit;
public interface DistributedLocker {
RLock lock(String lockKey);
RLock lock(String lockKey, int timeout);
RLock lock(String lockKey, TimeUnit unit ,int timeout);
boolean tryLock(String lockKey,TimeUnit unit,int waitTime,int leaseTime);
void unlock(String lockKey);
void unlock(RLock lock);
}
|
[
"a-1@@SUNQIQI"
] |
a-1@@SUNQIQI
|
c034b26eb2d9d39a1766c635a89bcdf4e6653157
|
8e00ca5ba1d43e82b0489aeb93b260677acb3379
|
/src/main/java/com/devstackio/maven/loaders/PropertyLoader.java
|
8338cf0e03dd707a0631ae17c0e86653f68e0586
|
[
"MIT"
] |
permissive
|
marwensaid/devstack-cb-io
|
3d3811f73f119731c04d946d9b88464655b76dce
|
baafbd5b2c22981d75647e49fe51fa3b408ebb1f
|
refs/heads/master
| 2023-02-18T23:39:32.730609 | 2016-02-04T23:53:31 | 2016-02-04T23:53:31 | 51,517,022 | 1 | 1 |
MIT
| 2022-04-08T15:48:46 | 2016-02-11T13:39:21 |
Java
|
UTF-8
|
Java
| false | false | 1,498 |
java
|
package com.devstackio.maven.loaders;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
import javax.enterprise.context.ApplicationScoped;
/**
*
* @author devstackio
*/
@ApplicationScoped
public class PropertyLoader {
/**
* load property from META-INF/filePath
* @param filepath directory starting at META-INF/
* @return
*/
public Properties loadProperties( String file ) {
return this.loadProperties( file, "META-INF" );
}
/**
* load properties from path+file
* @param file
* @param path
* @return
*/
public Properties loadProperties( String file, String path ) {
Properties returnobj = new Properties();
String fullPath = path+file;
InputStream in = new InputStream() {
@Override
public int read() throws IOException {
return 0;
}
};
try {
in = ClassLoader.getSystemResourceAsStream( fullPath );
returnobj.load(in);
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
in.close();
} catch (Exception e){
e.printStackTrace();
}
}
return returnobj;
}
/**
* used to grab Properties if needed @ ApplicationContextListener
* @param thread
* @return
*/
public Properties loadFromThread( Thread thread, String filepath ) {
Properties returnobj = new Properties();
try {
returnobj.load( thread.getContextClassLoader().getResourceAsStream( filepath ));
} catch (Exception e) {
e.printStackTrace();
}
return returnobj;
}
}
|
[
"[email protected]"
] | |
23d48b4014f5357bb073dc578fc02c212b0aa25b
|
675cbffa1d3e6716f0f89db8ac0ca637105967cf
|
/RtmpResourceLib/src/main/java/net/lucode/hackware/magicindicator/FragmentContainerHelper.java
|
7640841cdc26e33ddf63f4a503263506fdc3a803
|
[] |
no_license
|
led-os/HTWorks
|
d5bd33e7fddf99930c318ced94869c17f7a97836
|
ee94e8a2678b8a2ea79e73026d665d57f312f7e2
|
refs/heads/master
| 2022-04-05T02:56:14.051111 | 2020-01-21T07:38:25 | 2020-01-21T07:38:25 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 6,298 |
java
|
package net.lucode.hackware.magicindicator;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.ValueAnimator;
import android.annotation.TargetApi;
import android.os.Build;
import android.view.animation.AccelerateDecelerateInterpolator;
import android.view.animation.Interpolator;
import net.lucode.hackware.magicindicator.buildins.commonnavigator.model.PositionData;
import java.util.ArrayList;
import java.util.List;
/**
* 使得MagicIndicator在FragmentContainer中使用
* Created by hackware on 2016/9/4.
*/
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public class FragmentContainerHelper {
private List<MagicIndicator> mMagicIndicators = new ArrayList<MagicIndicator>();
private ValueAnimator mScrollAnimator;
private int mLastSelectedIndex;
private int mDuration = 150;
private Interpolator mInterpolator = new AccelerateDecelerateInterpolator();
private Animator.AnimatorListener mAnimatorListener = new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
dispatchPageScrollStateChanged(ScrollState.SCROLL_STATE_IDLE);
mScrollAnimator = null;
}
};
private ValueAnimator.AnimatorUpdateListener mAnimatorUpdateListener = new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float positionOffsetSum = (Float) animation.getAnimatedValue();
int position = (int) positionOffsetSum;
float positionOffset = positionOffsetSum - position;
if (positionOffsetSum < 0) {
position = position - 1;
positionOffset = 1.0f + positionOffset;
}
dispatchPageScrolled(position, positionOffset, 0);
}
};
public FragmentContainerHelper() {
}
public FragmentContainerHelper(MagicIndicator magicIndicator) {
mMagicIndicators.add(magicIndicator);
}
/**
* IPagerIndicator支持弹性效果的辅助方法
*
* @param positionDataList
* @param index
* @return
*/
public static PositionData getImitativePositionData(List<PositionData> positionDataList, int index) {
if (index >= 0 && index <= positionDataList.size() - 1) { // 越界后,返回假的PositionData
return positionDataList.get(index);
} else {
PositionData result = new PositionData();
PositionData referenceData;
int offset;
if (index < 0) {
offset = index;
referenceData = positionDataList.get(0);
} else {
offset = index - positionDataList.size() + 1;
referenceData = positionDataList.get(positionDataList.size() - 1);
}
result.mLeft = referenceData.mLeft + offset * referenceData.width();
result.mTop = referenceData.mTop;
result.mRight = referenceData.mRight + offset * referenceData.width();
result.mBottom = referenceData.mBottom;
result.mContentLeft = referenceData.mContentLeft + offset * referenceData.width();
result.mContentTop = referenceData.mContentTop;
result.mContentRight = referenceData.mContentRight + offset * referenceData.width();
result.mContentBottom = referenceData.mContentBottom;
return result;
}
}
public void handlePageSelected(int selectedIndex) {
handlePageSelected(selectedIndex, true);
}
public void handlePageSelected(int selectedIndex, boolean smooth) {
if (mLastSelectedIndex == selectedIndex) {
return;
}
if (smooth) {
if (mScrollAnimator == null || !mScrollAnimator.isRunning()) {
dispatchPageScrollStateChanged(ScrollState.SCROLL_STATE_SETTLING);
}
dispatchPageSelected(selectedIndex);
float currentPositionOffsetSum = mLastSelectedIndex;
if (mScrollAnimator != null) {
currentPositionOffsetSum = (Float) mScrollAnimator.getAnimatedValue();
mScrollAnimator.cancel();
mScrollAnimator = null;
}
mScrollAnimator = new ValueAnimator();
mScrollAnimator.setFloatValues(currentPositionOffsetSum, selectedIndex); // position = selectedIndex, positionOffset = 0.0f
mScrollAnimator.addUpdateListener(mAnimatorUpdateListener);
mScrollAnimator.addListener(mAnimatorListener);
mScrollAnimator.setInterpolator(mInterpolator);
mScrollAnimator.setDuration(mDuration);
mScrollAnimator.start();
} else {
dispatchPageSelected(selectedIndex);
if (mScrollAnimator != null && mScrollAnimator.isRunning()) {
dispatchPageScrolled(mLastSelectedIndex, 0.0f, 0);
}
dispatchPageScrollStateChanged(ScrollState.SCROLL_STATE_IDLE);
dispatchPageScrolled(selectedIndex, 0.0f, 0);
}
mLastSelectedIndex = selectedIndex;
}
public void setDuration(int duration) {
mDuration = duration;
}
public void setInterpolator(Interpolator interpolator) {
if (interpolator == null) {
mInterpolator = new AccelerateDecelerateInterpolator();
} else {
mInterpolator = interpolator;
}
}
public void attachMagicIndicator(MagicIndicator magicIndicator) {
mMagicIndicators.add(magicIndicator);
}
private void dispatchPageSelected(int pageIndex) {
for (MagicIndicator magicIndicator : mMagicIndicators) {
// magicIndicator.onPageSelected(pageIndex);
}
}
private void dispatchPageScrollStateChanged(int state) {
for (MagicIndicator magicIndicator : mMagicIndicators) {
// magicIndicator.onPageScrollStateChanged(state);
}
}
private void dispatchPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
for (MagicIndicator magicIndicator : mMagicIndicators) {
// magicIndicator.onPageScrolled(position, positionOffset, positionOffsetPixels);
}
}
}
|
[
"[email protected]"
] | |
407551f2cc42c1aa3674a2cb79c46301455eb6f7
|
cd3e8ade406faa3ced4c2c303761fdd56f367473
|
/kodilla-patterns2/src/main/java/com/kodilla/patterns2/decorator/taxiportal/TaxiNetworkOrderDecorator.java
|
506f9f03abe8cefa7c46144df30f8dbceae890bb
|
[] |
no_license
|
krzysieksad/krzysiek-sadlak-kodilla-java
|
45bd75d83296e707507f95606570444c4f352639
|
2e19350ad6d7cd38ed6e3f5ef1f60193fcfacb8f
|
refs/heads/master
| 2018-09-17T21:00:56.508069 | 2018-06-05T21:41:35 | 2018-06-05T21:41:35 | 115,633,946 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 523 |
java
|
package com.kodilla.patterns2.decorator.taxiportal;
import java.math.BigDecimal;
public class TaxiNetworkOrderDecorator extends AbstractTaxiOrderDecorator {
public TaxiNetworkOrderDecorator(final TaxiOrder taxiOrder) {
super(taxiOrder);
}
@Override
public BigDecimal getCost() {
//hardcoded stub cost = 35
return super.getCost().add(new BigDecimal(35));
}
@Override
public String getDescription() {
return super.getDescription() + " by Taxi Network";
}
}
|
[
"[email protected]"
] | |
7830925a56296ecafedf069288c7b409400f6dbc
|
fa91450deb625cda070e82d5c31770be5ca1dec6
|
/Diff-Raw-Data/31/31_8237e9894b3075c80a8dea4a3d2225bc34e0ebf2/ProviderConfig/31_8237e9894b3075c80a8dea4a3d2225bc34e0ebf2_ProviderConfig_s.java
|
6403240cc7cf029374afe4aea9b771b2f68e90dd
|
[] |
no_license
|
zhongxingyu/Seer
|
48e7e5197624d7afa94d23f849f8ea2075bcaec0
|
c11a3109fdfca9be337e509ecb2c085b60076213
|
refs/heads/master
| 2023-07-06T12:48:55.516692 | 2023-06-22T07:55:56 | 2023-06-22T07:55:56 | 259,613,157 | 6 | 2 | null | 2023-06-22T07:55:57 | 2020-04-28T11:07:49 | null |
UTF-8
|
Java
| false | false | 35,474 |
java
|
/**
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 2007 Sun Microsystems Inc. All Rights Reserved
*
* The contents of this file are subject to the terms
* of the Common Development and Distribution License
* (the License). You may not use this file except in
* compliance with the License.
*
* You can obtain a copy of the License at
* https://opensso.dev.java.net/public/CDDLv1.0.html or
* opensso/legal/CDDLv1.0.txt
* See the License for the specific language governing
* permission and limitations under the License.
*
* When distributing Covered Code, include this CDDL
* Header Notice in each file and include the License file
* at opensso/legal/CDDLv1.0.txt.
* If applicable, add the following below the CDDL Header,
* with the fields enclosed by brackets [] replaced by
* your own identifying information:
* "Portions Copyrighted [year] [name of copyright owner]"
*
* $Id: ProviderConfig.java,v 1.24 2008-08-31 15:50:02 mrudul_uchil Exp $
*
*/
package com.sun.identity.wss.provider;
import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.io.IOException;
import java.io.FileNotFoundException;
import java.security.KeyStore;
import java.security.AccessController;
import java.security.NoSuchAlgorithmException;
import java.util.List;
import java.util.ArrayList;
import java.util.Properties;
import java.util.Set;
import java.util.Map;
import com.sun.identity.common.SystemConfigurationUtil;
import com.iplanet.services.util.Crypt;
import com.iplanet.sso.SSOToken;
import com.iplanet.sso.SSOException;
import com.iplanet.sso.SSOTokenManager;
import com.sun.identity.shared.Constants;
import com.sun.identity.security.AdminTokenAction;
import com.sun.identity.wss.security.SecurityMechanism;
/**
* This abstract class <code>ProviderConfig</code> represents the Web Services
* Server provider or the Web Services Client provider configuration.
* <p>Pluggable implementation of this abstract class can choose to store this
* configuration in desired configuration store. This pluggable implementation
* class can be configured in client's AMConfig.properties as value of
* "com.sun.identity.wss.provider.config.plugin" property.
* Having obtained an instance of ProviderConfig, its methods can be called to
* create, delete, modify, retrieve WSS agent profile and configuration for WSC
* and/or WSP attributes (key /value pairs).
*
* <p>All the static methods in this class are for the persistent
* operations.
* @supported.all.api
*/
public abstract class ProviderConfig {
/**
* Constant to define the web services client type.
*/
public static final String WSC = "WSCAgent";
/**
* Constant to define the web services provider type.
*/
public static final String WSP = "WSPAgent";
/**
* Property for the web services provider configuration plugin.
*/
public static final String WSS_PROVIDER_CONFIG_PLUGIN =
"com.sun.identity.wss.provider.config.plugin";
protected List secMech = null;
protected String serviceURI = null;
protected String providerName = null;
protected String wspEndpoint = null;
protected String wssProxyEndpoint = null;
protected String providerType = null;
protected KeyStore keyStore = null;
protected String privateKeyAlias = null;
protected String privateKeyType = null;
protected String publicKeyAlias = null;
protected boolean isResponseSigned = false;
protected boolean isResponseEncrypted = false;
protected boolean isRequestSigned = true;
protected boolean isRequestEncrypted = false;
protected boolean isRequestHeaderEncrypted = false;
protected List trustAuthorities = null;
protected String ksPasswd = null;
protected String keyPasswd = null;
protected String ksFile = null;
protected Properties properties = new Properties();
protected List usercredentials = null;
protected String serviceType = null;
protected boolean isDefaultKeyStore = false;
protected boolean forceAuthn = false;
protected boolean preserveSecHeaders = false;
protected String authenticationChain = null;
protected TrustAuthorityConfig taconfig = null;
protected Set samlAttributes = null;
protected boolean includeMemberships = false;
protected String nameIDMapper = null;
protected String attributeNS = null;
protected String kdcDomain = null;
protected String kdcServer = null;
protected String ticketCacheDir = null;
protected String servicePrincipal = null;
protected String keytabFile = null;
protected boolean verifyKrbSignature = false;
protected boolean usePassThroughToken = false;
protected String tokenConversionType = null;
protected String encryptionAlgorithm = "DESede";
protected int encryptionStrength = 0;
protected String signingRefType = "DirectReference";
protected static SSOToken adminToken = null;
private static Class adapterClass;
/**
* Returns the list of security mechanims that the provider is configured.
*
* @return list of security mechanisms.
*/
public List getSecurityMechanisms() {
return secMech;
}
/**
* Sets the list of security mechanisms.
*
* @param authMech the list of security mechanisms.
*/
public void setSecurityMechanisms(List authMech) {
this.secMech = authMech;
}
/**
* Returns the name of the Provider.
*
* @return the provider name.
*/
public String getProviderName() {
return providerName;
}
/**
* Returns the value of the property.
*
* @param property the name of property for which value is being retrieved.
*
* @return the value of the property.
*/
public String getProperty(String property) {
return properties.getProperty(property);
}
/**
* Sets the value for the given property in Provider Configuration.
*
* @param property the name of the property being set.
*
* @param value the property value being set.
*/
public void setProperty(String property, String value) {
properties.put(property, value);
}
/**
* Returns the endpoint of the web services provider.
*
* @return the endpoint of the web services provider.
*/
public String getWSPEndpoint() {
return wspEndpoint;
}
/**
* Sets the web services provider endpoint.
*
* @param endpoint the web services provider endpoint.
*/
public void setWSPEndpoint(String endpoint) {
this.wspEndpoint = endpoint;
}
/**
* Returns the endpoint of the web services security proxy.
*
* @return the endpoint of the web services security proxy.
*/
public String getWSSProxyEndpoint() {
return wssProxyEndpoint;
}
/**
* Sets the web services security proxy endpoint.
*
* @param endpoint the web services security proxy endpoint.
*/
public void setWSSProxyEndpoint(String endpoint) {
this.wssProxyEndpoint = endpoint;
}
/**
* Sets the service type.
* @param serviceType the service type.
*/
public void setServiceType(String serviceType) {
this.serviceType = serviceType;
}
/**
* Returns the service type.
*
* @return the service type.
*/
public String getServiceType() {
return serviceType;
}
/**
* Sets the user credentials list.
* @param usercredentials list of <code>PasswordCredential</code> objects.
*/
public void setUsers(List usercredentials) {
this.usercredentials = usercredentials;
}
/**
* Returns the list of <code>PasswordCredential</code>s of the user.
*
* @return the list of <code>PasswordCredential</code> objects.
*/
public List getUsers() {
return usercredentials;
}
/**
* Returns the provider type. It will be {@link #WSP} or {@link #WSC}
*
* @return the provider type.
*/
public String getProviderType() {
return providerType;
}
/**
* Returns the provider JKS <code>KeyStore</code>
*
* @return the JKS <code>KeyStore</code>
*/
public KeyStore getKeyStore() {
return keyStore;
}
/**
* Returns the keystore file.
*
* @return the keystore file name.
*/
public String getKeyStoreFile() {
return ksFile;
}
/**
* Returns the keystore password.
*
* @return the keystore password.
*/
public String getKeyStorePassword() {
return Crypt.decrypt(ksPasswd);
}
/**
* Returns the keystore encrypted password.
*
* @return the keystore encrypted password.
*/
public String getKeyStoreEncryptedPasswd() {
return ksPasswd;
}
/**
* Returns the key password in the keystore.
*
* @return the key password in the keystore.
*/
public String getKeyPassword() {
return Crypt.decrypt(keyPasswd);
}
/**
* Returns the keystore encrypted password.
*
* @return the keystore encrypted password.
*/
public String getKeyEncryptedPassword() {
return keyPasswd;
}
/**
* Sets the keystore for this provider.
*
* @param fileName the provider key store fully qualified file name.
*
* @param keyStorePassword the password required to access the key
* store file.
*
* @param keyPassword the password required to access the key from the
* keystore.
*
* @exception ProviderException if the key store file does not exist
* or an invalid password.
*/
public void setKeyStore(String fileName,
String keyStorePassword, String keyPassword)
throws ProviderException {
this.ksFile = fileName;
this.ksPasswd = Crypt.encrypt(keyStorePassword);
this.keyPasswd = Crypt.encrypt(keyPassword);
try {
File file = new File(fileName);
if(file.exists()) {
InputStream inputStream = new FileInputStream(fileName);
keyStore = KeyStore.getInstance("JKS");
keyStore.load(inputStream, keyStorePassword.toCharArray());
}
} catch (Exception ex) {
ProviderUtils.debug.error("ProviderConfig.setKeyStore: Could not" +
"set the key store file information", ex);
throw new ProviderException(ProviderUtils.bundle.getString(
"invalidKeyStore"));
}
}
/**
* Sets the keystore for this provider.
*
* @param keyStore the provider key store.
*
* @param password the password required to access the key store file.
*
*/
public void setKeyStore(KeyStore keyStore, String password) {
this.keyStore = keyStore;
this.ksPasswd = password;
}
/**
* Returns the key type for this provider.
*
* @return the key type of the provider.
*/
public String getKeyType() {
return privateKeyType;
}
/**
* Sets the key type for this provider.
*
* @param keyType the key type for this provider.
*/
public void setKeyType(String keyType) {
this.privateKeyType = keyType;
}
/**
* Returns the key alias for this provider.
*
* @return the key alias of the provider.
*/
public String getKeyAlias() {
return privateKeyAlias;
}
/**
* Sets the key alias for this provider.
*
* @param alias the key alias for this provider.
*/
public void setKeyAlias(String alias) {
this.privateKeyAlias = alias;
}
/**
* Returns the Public key alias for this provider's partner.
*
* @return the Public key alias of the provider's partner.
*/
public String getPublicKeyAlias() {
return publicKeyAlias;
}
/**
* Sets the Public key alias for this provider's partner.
*
* @param alias the Public key alias for this provider's partner.
*/
public void setPublicKeyAlias(String alias) {
this.publicKeyAlias = alias;
}
/**
* Returns true if the provider uses default keystore.
* @return true if the provider uses default keystore.
*/
public boolean useDefaultKeyStore() {
return isDefaultKeyStore;
}
/**
* Sets the provider to use the default keystore.
* @param set boolean variable to enable or disable to use the default
* keystore.
*/
public void setDefaultKeyStore(boolean set) {
this.isDefaultKeyStore = set;
}
/**
* Returns the SAML Attribute Mapping list. This method is used by the
* WSP configuration when enabled for SAML.
*/
public Set getSAMLAttributeMapping() {
return samlAttributes;
}
/**
* Sets the list of SAML attribute mappings. This method is used by the
* WSP configuration when enabled for SAML.
* @param attributeMap the list of SAML attribute mapping
*/
public void setSAMLAttributeMapping(Set attributeMap) {
this.samlAttributes = attributeMap;
}
/**
* Checks if the memberships should be included in the SAML attribute
* mapping.
* @return true if the memberships are included.
*/
public boolean shouldIncludeMemberships() {
return includeMemberships;
}
/**
* Sets a flag to include memberships for SAML attribute mapping.
* @param include boolean flag to indicate if the memberships needs to
* be included.
*/
public void setIncludeMemberships(boolean include) {
this.includeMemberships = include;
}
/**
* Returns the NameID mapper class
* @return returns the nameid mapper class.
*/
public String getNameIDMapper() {
return nameIDMapper;
}
/**
* Sets the NameID Mapper class.
* @param nameIDMapper NameID Mapper class.
*/
public void setNameIDMapper(String nameIDMapper){
this.nameIDMapper = nameIDMapper;
}
/**
* Returns SAML attribute namespace.
* @return returns SAML attribute namespace.
*/
public String getSAMLAttributeNamespace() {
return attributeNS;
}
/**
* Sets SAML attribute namespace.
* @param attributeNS SAML attribute namespace.
*/
public void setSAMLAttributeNamespace(String attributeNS) {
this.attributeNS = attributeNS;
}
/**
* Returns Kerberos Domain Controller Domain
* @return Kerberos Domain Controller Domain
*/
public String getKDCDomain() {
return kdcDomain;
}
/**
* Sets Kerberos Domain Controller Domain
* @param domain Kerberos Domain Controller Domain
*/
public void setKDCDomain(String domain) {
this.kdcDomain = domain;
}
/**
* Returns Kerberos Domain Controller Server.
* @return Kerberos Domain Controller Server.
*/
public String getKDCServer() {
return kdcServer;
}
/**
* Sets Kerberos Domain Controller Server
* @param kdcServer Kerberos Domain Controller Server
*/
public void setKDCServer(String kdcServer) {
this.kdcServer = kdcServer;
}
/**
* This method is used by the web services client to get the kerberos
* ticket cache directory.
* @return the kerberos ticket cache dir
*/
public String getKerberosTicketCacheDir() {
return ticketCacheDir;
}
/**
* Sets kerberos ticket cache dir.
* @param cacheDir kerberos ticket cache dir
*/
public void setKerberosTicketCacheDir(String cacheDir) {
this.ticketCacheDir = cacheDir;
}
/**
* This method is used by the web services provider to get the key tab file.
* @return the keytab file.
*/
public String getKeyTabFile() {
return keytabFile;
}
/**
* Sets the keytab file
* @param file the fully qualified file path
*/
public void setKeyTabFile(String file) {
this.keytabFile = file;
}
/**
* Returns kerberos service principal
* @return the kerberos service principal
*/
public String getKerberosServicePrincipal() {
return servicePrincipal;
}
/**
* Sets kerberos service principal.
* @param principal the kerberos service principal.
*/
public void setKerberosServicePrincipal(String principal) {
this.servicePrincipal = principal;
}
/**
* Returns true if kerberos signature needs to be validated.
* The signature validation is supported only with JDK6 onwards.
* @return true if the signature validation needs to be validated.
*/
public boolean isValidateKerberosSignature() {
return verifyKrbSignature;
}
/**
* Sets a boolean flag to enable or disable validate kerberos signature.
* @param validate boolean flag to enable or disable validate krb signature.
*/
public void setValidateKerberosSignature(boolean validate) {
this.verifyKrbSignature = validate;
}
/**
* Returns the provider's trusted authorities list.
*
* @return the list of the <code>TrustAuthorityConfig</code>s.
*/
public TrustAuthorityConfig getTrustAuthorityConfig() {
return taconfig;
}
/**
* Sets the trusted authority configurations.
*
* @param taconfig instance of the <code>TrustAuthorityConfig</code>.
*/
public void setTrustAuthorityConfig(TrustAuthorityConfig taconfig) {
this.taconfig = taconfig;
}
/**
* Checks if the response needs to be signed or not.
*
* @return true if the response needs to be signed.
*/
public boolean isResponseSignEnabled() {
return isResponseSigned;
}
/**
* Sets the response sign enable flag.
*
* @param enable enables the response signing.
*/
public void setResponseSignEnabled(boolean enable) {
isResponseSigned = enable;
}
/**
* Checks if the response needs to be encrypted or not.
*
* @return true if the response needs to be encrypted.
*/
public boolean isResponseEncryptEnabled() {
return isResponseEncrypted;
}
/**
* Sets the response encrypt enable flag.
*
* @param enable enables the response encryption.
*/
public void setResponseEncryptEnabled(boolean enable) {
isResponseEncrypted = enable;
}
/**
* Checks if the request needs to be signed or not.
*
* @return true if the request needs to be signed.
*/
public boolean isRequestSignEnabled() {
return isRequestSigned;
}
/**
* Sets the request sign enable flag.
*
* @param enable enables the request signing.
*/
public void setRequestSignEnabled(boolean enable) {
isRequestSigned = enable;
}
/**
* Checks if the request needs to be encrypted or not.
*
* @return true if the request needs to be encrypted.
*/
public boolean isRequestEncryptEnabled() {
return isRequestEncrypted;
}
/**
* Sets the request encrypt enable flag.
*
* @param enable enables the request encryption.
*/
public void setRequestEncryptEnabled(boolean enable) {
isRequestEncrypted = enable;
}
/**
* Checks if the request header needs to be encrypted or not.
*
* @return true if the request header needs to be encrypted.
*/
public boolean isRequestHeaderEncryptEnabled() {
return isRequestHeaderEncrypted;
}
/**
* Sets the request header encrypt enable flag.
*
* @param enable enables the request header encryption.
*/
public void setRequestHeaderEncryptEnabled(boolean enable) {
isRequestHeaderEncrypted = enable;
}
/**
* Returns true if the user force authentication is enabled.
* @return true if the user force authentication is enabled.
*/
public boolean forceUserAuthentication() {
return forceAuthn;
}
/**
* Sets the user force authentication attribute.
* @param forceAuthn the user force authentication attribute.
*/
public void setForceUserAuthentication(boolean forceAuthn) {
this.forceAuthn = forceAuthn;
}
/**
* Returns true if security header needs to be preserved.
* @return true if the security header needs to be preserved.
*/
public boolean preserveSecurityHeader() {
return preserveSecHeaders;
}
/**
* Sets if security header needs to be preserved.
* @param preserve value to be set, true if the security header needs
* to be preserved, false otherwise.
*/
public void setPreserveSecurityHeader(boolean preserve) {
this.preserveSecHeaders = preserve;
}
/**
* Returns the authentication chain mechanism to be used. This method
* is used only by the WSP configuration.
*
* @return the name of the authentication chain mechanism.
*/
public String getAuthenticationChain() {
return authenticationChain;
}
/**
* Sets the authentication chain mechanism. This method is used only by
* the WSP configuration.
* @param authenticationChain the name of the authentication chain
* mechanism.
*/
public void setAuthenticationChain(String authenticationChain) {
this.authenticationChain = authenticationChain;
}
/**
* Returns true if passthrough security token needs to be used.
* This is valid for a proxy web services client.
* @return true if passthrough security token needs to be used.
*/
public boolean usePassThroughSecurityToken() {
return usePassThroughToken;
}
/**
* Sets if passthrough security token needs to be used
* This is valid for a proxy web services client.
* @param usepassthrough flag to if the wsc needs to use passthrough
* security token.
*/
public void setPassThroughSecurityToken(boolean usepassthrough) {
this.usePassThroughToken = usepassthrough;
}
/**
* Returns the type of the token that needs to be converted to.
* This method is used by the web service providers to convert a
* SAMLToken to the desired token type.
* @return the type of the token that needs to be converted to.
*/
public String getTokenConversionType() {
return tokenConversionType;
}
/**
* Sets the type of the token that needs to be converted to.
* This method is used by the web service providers to convert a
* SAMLToken to the desired token type.
* @param tokenType the type of the token that needs to be converted to.
*/
public void setTokenConversionType(String tokenType) {
this.tokenConversionType = tokenType;
}
/**
* Returns signing reference type.
* @return the signing reference type.
*/
public String getSigningRefType() {
return signingRefType;
}
/**
* Sets the signing reference type.
* @param refType the signing reference type.
*/
public void setSigningRefType(String refType) {
this.signingRefType = refType;
}
/**
* Returns the encryption algorithm
* @return the encryption algorithm
*/
public String getEncryptionAlgorithm() {
return encryptionAlgorithm;
}
/**
* Sets the encryption algorithm.
* @param encAlg the encryption algorithm.
*/
public void setEncryptionAlgorithm(String encAlg) {
this.encryptionAlgorithm = encAlg;
}
/**
* Returns the encryption data strength.
* @return the encryption data strength.
*/
public int getEncryptionStrength() {
return encryptionStrength;
}
/**
* Sets the encryption data strength. *
* @param keyStrength the encryption data strength.
*/
public void setEncryptionStrength(int keyStrength) {
this.encryptionStrength = keyStrength;
}
/**
* Stores the provider configuration.
*
* @exception ProviderException if there is any failure.
*/
protected abstract void store() throws ProviderException;
/**
* Deletes the provider configuration.
*
* @exception ProviderException if there is any failure.
*/
protected abstract void delete() throws ProviderException;
/**
* Checks if the provider configuration exists.
*
* @return true if the provider exists.
*/
protected abstract boolean isExists();
/**
* Initializes the provider.
*
* @param providerName the provider name.
*
* @param providerType the provider type.
*
* @param token Single Sign-on token.
*
* @param isEndPoint Boolean flag indicating whether provider needs to be
* searched based on its end point value.
*
* @exception ProviderException if there is any failure.
*/
protected abstract void init(String providerName,
String providerType, SSOToken token, boolean isEndPoint)
throws ProviderException;
/**
* Saves the Provider in the configuration repository.
*
* @param config the provider configuration.
*
* @exception ProviderException if the creation is failed.
*/
public static void saveProvider(ProviderConfig config)
throws ProviderException {
config.store();
}
/**
* Returns the provider configuration for a given provider name.
*
* @param providerName the provider name.
*
* @param providerType the provider type.
*
* @exception ProviderException if unable to retrieve.
*/
public static ProviderConfig getProvider(
String providerName, String providerType) throws ProviderException {
ProviderConfig pc = getConfigAdapter();
SSOToken adminToken = getAdminToken();
pc.init(providerName, providerType, adminToken, false);
return pc;
}
/**
* Returns the provider configuration for a given provider name.
*
* @param providerName the provider name.
*
* @param providerType the provider type.
*
* @param isEndPoint flag to indicate search based on WSP end point.
*
* @exception ProviderException if unable to retrieve.
*/
public static ProviderConfig getProvider(
String providerName, String providerType, boolean isEndPoint)
throws ProviderException {
ProviderConfig pc = getConfigAdapter();
SSOToken adminToken = getAdminToken();
pc.init(providerName, providerType, adminToken, isEndPoint);
return pc;
}
/**
* Checks if the provider of given type does exists.
*
* @param providerName the name of the provider.
*
* @param providerType type of the provider.
*
* @return true if the provider exists with a given name and type.
*/
public static boolean isProviderExists(String providerName,
String providerType) {
try {
ProviderConfig config = getProvider(providerName, providerType);
return config.isExists();
} catch (ProviderException pe) {
ProviderUtils.debug.error("ProviderConfig.isProviderExists:: " +
"Provider Exception ", pe);
return false;
}
}
/**
* Checks if the provider of given type does exists.
*
* @param providerName the name of the provider.
*
* @param providerType type of the provider.
*
* @param isEndPoint flag to indicate check/search based on WSP end point.
*
* @return true if the provider exists with a given name and type.
*/
public static boolean isProviderExists(String providerName,
String providerType, boolean isEndPoint) {
try {
ProviderConfig config = getProvider(providerName, providerType,
isEndPoint);
return config.isExists();
} catch (ProviderException pe) {
ProviderUtils.debug.error("ProviderConfig.isProviderExists:: " +
"Provider Exception ", pe);
return false;
}
}
/**
* Removes the provider configuration.
*
* @param providerName the name of the provider.
*
* @param providerType the type of the provider.
*
* @exception ProviderException if any failure.
*/
public static void deleteProvider(
String providerName, String providerType) throws ProviderException {
ProviderConfig pc = getConfigAdapter();
pc.init(providerName, providerType, getAdminToken(), false);
pc.delete();
}
/**
* Returns the list of all available security mechanism objects.
*
* @return the list of <code>SecurityMechanism</code> objects.
*/
public static List getAllSupportedSecurityMech() {
List list = new ArrayList();
list.add(SecurityMechanism.WSS_NULL_SAML_SV);
list.add(SecurityMechanism.WSS_TLS_SAML_SV);
list.add(SecurityMechanism.WSS_CLIENT_TLS_SAML_SV);
list.add(SecurityMechanism.WSS_NULL_SAML_HK);
list.add(SecurityMechanism.WSS_TLS_SAML_HK);
list.add(SecurityMechanism.WSS_CLIENT_TLS_SAML_HK);
list.add(SecurityMechanism.WSS_NULL_X509_TOKEN);
list.add(SecurityMechanism.WSS_TLS_X509_TOKEN);
list.add(SecurityMechanism.WSS_CLIENT_TLS_X509_TOKEN);
list.add(SecurityMechanism.WSS_NULL_USERNAME_TOKEN);
list.add(SecurityMechanism.WSS_TLS_USERNAME_TOKEN);
list.add(SecurityMechanism.WSS_CLIENT_TLS_USERNAME_TOKEN);
list.add(SecurityMechanism.WSS_NULL_SAML2_SV);
list.add(SecurityMechanism.WSS_TLS_SAML2_SV);
list.add(SecurityMechanism.WSS_CLIENT_TLS_SAML2_SV);
list.add(SecurityMechanism.WSS_NULL_SAML2_HK);
list.add(SecurityMechanism.WSS_TLS_SAML2_HK);
list.add(SecurityMechanism.WSS_CLIENT_TLS_SAML2_HK);
list.add(SecurityMechanism.WSS_NULL_ANONYMOUS);
list.add(SecurityMechanism.WSS_TLS_ANONYMOUS);
list.add(SecurityMechanism.WSS_CLIENT_TLS_ANONYMOUS);
list.add(SecurityMechanism.WSS_NULL_USERNAME_TOKEN_PLAIN);
list.add(SecurityMechanism.WSS_TLS_USERNAME_TOKEN_PLAIN);
list.add(SecurityMechanism.WSS_CLIENT_TLS_USERNAME_TOKEN_PLAIN);
list.add(SecurityMechanism.WSS_NULL_KERBEROS_TOKEN);
list.add(SecurityMechanism.WSS_TLS_KERBEROS_TOKEN);
list.add(SecurityMechanism.WSS_CLIENT_TLS_KERBEROS_TOKEN);
list.add(SecurityMechanism.STS_SECURITY);
return list;
}
/**
* Returns the list of message level security mechanism objects.
*
* @return the list of message level <code>SecurityMechanism</code> objects.
*/
public static List getAllMessageLevelSecurityMech() {
List list = new ArrayList();
list.add(SecurityMechanism.WSS_NULL_SAML_SV);
list.add(SecurityMechanism.WSS_NULL_SAML_HK);
list.add(SecurityMechanism.WSS_NULL_X509_TOKEN);
list.add(SecurityMechanism.WSS_NULL_USERNAME_TOKEN);
list.add(SecurityMechanism.WSS_NULL_SAML2_SV);
list.add(SecurityMechanism.WSS_NULL_SAML2_HK);
list.add(SecurityMechanism.WSS_NULL_ANONYMOUS);
list.add(SecurityMechanism.WSS_NULL_USERNAME_TOKEN_PLAIN);
list.add(SecurityMechanism.WSS_NULL_KERBEROS_TOKEN);
list.add(SecurityMechanism.STS_SECURITY);
return list;
}
private static ProviderConfig getConfigAdapter() throws ProviderException {
if (adapterClass == null) {
String adapterName = SystemConfigurationUtil.getProperty(
WSS_PROVIDER_CONFIG_PLUGIN,
"com.sun.identity.wss.provider.plugins.AgentProvider");
try {
adapterClass = Class.forName(adapterName);
} catch (Exception ex) {
ProviderUtils.debug.error("ProviderConfig.getConfigAdapter: " +
"Failed in obtaining class", ex);
throw new ProviderException(
ProviderUtils.bundle.getString("initializationFailed"));
}
}
try {
return ((ProviderConfig) adapterClass.newInstance());
} catch (Exception ex) {
ProviderUtils.debug.error("ProviderConfig.getConfigAdapter: " +
"Failed in initialization", ex);
throw new ProviderException(
ProviderUtils.bundle.getString("initializationFailed"));
}
}
private static SSOToken getAdminToken() throws ProviderException {
if (adminToken == null) {
try {
adminToken = (SSOToken) AccessController.doPrivileged(
AdminTokenAction.getInstance());
SSOTokenManager.getInstance().refreshSession(adminToken);
} catch (SSOException se) {
ProviderUtils.debug.message("ProviderConfig.getAdminToken:: " +
"Trying second time ....");
adminToken = (SSOToken) AccessController.doPrivileged(
AdminTokenAction.getInstance());
}
}
return adminToken;
}
/**
* Sets the admin token.
* This admin token is required to be set if "create", "delete" or "save"
* operations are invoked on this <code>ProviderConfig</code> object.
* This admin token needs to be the valid SSOToken of the user who has
* "Agent Administrator" privileges.
*
* @param adminToken the agent admin token.
*/
public void setAdminToken(SSOToken adminToken) {
this.adminToken = adminToken;
}
}
|
[
"[email protected]"
] | |
059e7b24878ece548c2d248392756b2081402fb7
|
6161f430cbdea1fbe757c6dd73640d34eddb77e1
|
/gulimall-ware/src/main/java/com/liuscoding/gulimall/ware/service/impl/PurchaseDetailServiceImpl.java
|
111e46bad04ccb4cfc54df060b089b1360c3e5b2
|
[] |
no_license
|
hahagioi998/gulimall-1
|
a482b5411ce96048c2aa690d816610dcce951896
|
9d573a79ce63ace6bc35aafd785bc1ac39db20f5
|
refs/heads/master
| 2023-03-23T00:12:59.329634 | 2021-03-14T12:24:06 | 2021-03-14T12:24:06 | null | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,138 |
java
|
package com.liuscoding.gulimall.ware.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.toolkit.StringUtils;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springframework.stereotype.Service;
import java.util.List;
import java.util.Map;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.liuscoding.common.utils.PageUtils;
import com.liuscoding.common.utils.Query;
import com.liuscoding.gulimall.ware.dao.PurchaseDetailDao;
import com.liuscoding.gulimall.ware.entity.PurchaseDetailEntity;
import com.liuscoding.gulimall.ware.service.PurchaseDetailService;
@Service("purchaseDetailService")
public class PurchaseDetailServiceImpl extends ServiceImpl<PurchaseDetailDao, PurchaseDetailEntity> implements PurchaseDetailService {
@Override
public PageUtils queryPage(Map<String, Object> params) {
LambdaQueryWrapper<PurchaseDetailEntity> lambdaQuery = Wrappers.lambdaQuery();
String key = (String) params.get("key");
lambdaQuery.and(StringUtils.isNotEmpty(key),wq->wq.eq(PurchaseDetailEntity::getId,key)
.or().eq(PurchaseDetailEntity::getSkuId,key));
String status = (String) params.get("status");
lambdaQuery.eq(StringUtils.isNotEmpty(status),PurchaseDetailEntity::getStatus,status);
String wareId = (String) params.get("wareId");
lambdaQuery.eq(StringUtils.isNotEmpty(wareId),PurchaseDetailEntity::getWareId,wareId);
IPage<PurchaseDetailEntity> page = this.page(
new Query<PurchaseDetailEntity>().getPage(params),
lambdaQuery
);
return new PageUtils(page);
}
@Override
public List<PurchaseDetailEntity> listDetailByPurchaseId(Long id) {
LambdaQueryWrapper<PurchaseDetailEntity> lambdaQuery = Wrappers.lambdaQuery();
lambdaQuery.eq(PurchaseDetailEntity::getPurchaseId,id);
return this.list(lambdaQuery);
}
}
|
[
"[email protected]"
] | |
b1c991b62a7937b94dcc3b604f55ae55301cb1a5
|
fa1408365e2e3f372aa61e7d1e5ea5afcd652199
|
/src/testcases/CWE566_Authorization_Bypass_Through_SQL_Primary/CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet_54e.java
|
0d3c9a5491d28b674c33846b03aff1f05308425b
|
[] |
no_license
|
bqcuong/Juliet-Test-Case
|
31e9c89c27bf54a07b7ba547eddd029287b2e191
|
e770f1c3969be76fdba5d7760e036f9ba060957d
|
refs/heads/master
| 2020-07-17T14:51:49.610703 | 2019-09-03T16:22:58 | 2019-09-03T16:22:58 | 206,039,578 | 1 | 2 | null | null | null | null |
UTF-8
|
Java
| false | false | 5,226 |
java
|
/* TEMPLATE GENERATED TESTCASE FILE
Filename: CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet_54e.java
Label Definition File: CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet.label.xml
Template File: sources-sink-54e.tmpl.java
*/
/*
* @description
* CWE: 566 Authorization Bypass through SQL primary
* BadSource: user id taken from url parameter
* GoodSource: hardcoded user id
* Sinks: writeConsole
* BadSink : user authorization not checked
* Flow Variant: 54 Data flow: data passed as an argument from one method through three others to a fifth; all five functions are in different classes in the same package
*
* */
package testcases.CWE566_Authorization_Bypass_Through_SQL_Primary;
import testcasesupport.*;
import javax.servlet.http.*;
import java.sql.*;
import java.util.logging.Level;
public class CWE566_Authorization_Bypass_Through_SQL_Primary__Servlet_54e
{
public void badSink(String data , HttpServletRequest request, HttpServletResponse response) throws Throwable
{
Connection dBConnection = IO.getDBConnection();
PreparedStatement preparedStatement = null;
ResultSet resultSet = null;
int id = 0;
try
{
id = Integer.parseInt(data);
}
catch ( NumberFormatException nfx )
{
id = -1; /* Assuming this id does not exist */
}
try
{
preparedStatement = dBConnection.prepareStatement("select * from invoices where uid=?");
preparedStatement.setInt(1, id);
resultSet = preparedStatement.executeQuery();
/* POTENTIAL FLAW: no check to see whether the user has privileges to view the data */
IO.writeString("bad() - result requested: " + data +"\n");
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Error executing query", exceptSql);
}
finally
{
try
{
if (resultSet != null)
{
resultSet.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close ResultSet", exceptSql);
}
try
{
if (preparedStatement != null)
{
preparedStatement.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close PreparedStatement", exceptSql);
}
try
{
if (dBConnection != null)
{
dBConnection.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close Connection", exceptSql);
}
}
}
/* goodG2B() - use goodsource and badsink */
public void goodG2BSink(String data , HttpServletRequest request, HttpServletResponse response) throws Throwable
{
Connection dBConnection = IO.getDBConnection();
PreparedStatement preparedStatement = null;
ResultSet resultSet = null;
int id = 0;
try
{
id = Integer.parseInt(data);
}
catch ( NumberFormatException nfx )
{
id = -1; /* Assuming this id does not exist */
}
try
{
preparedStatement = dBConnection.prepareStatement("select * from invoices where uid=?");
preparedStatement.setInt(1, id);
resultSet = preparedStatement.executeQuery();
/* POTENTIAL FLAW: no check to see whether the user has privileges to view the data */
IO.writeString("bad() - result requested: " + data +"\n");
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Error executing query", exceptSql);
}
finally
{
try
{
if (resultSet != null)
{
resultSet.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close ResultSet", exceptSql);
}
try
{
if (preparedStatement != null)
{
preparedStatement.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close PreparedStatement", exceptSql);
}
try
{
if (dBConnection != null)
{
dBConnection.close();
}
}
catch (SQLException exceptSql)
{
IO.logger.log(Level.WARNING, "Could not close Connection", exceptSql);
}
}
}
}
|
[
"[email protected]"
] | |
d5f5ee4afc456a314ccc69fcd3becc4844603c0c
|
48e835e6f176a8ac9ae3ca718e8922891f1e5a18
|
/benchmark/training/org/apache/ignite/spi/discovery/tcp/ipfinder/s3/encrypt/SymmetricKeyEncryptionServiceTest.java
|
e162044c1624a230a3fad9c45cb7f3eea490cb8d
|
[] |
no_license
|
STAMP-project/dspot-experiments
|
f2c7a639d6616ae0adfc491b4cb4eefcb83d04e5
|
121487e65cdce6988081b67f21bbc6731354a47f
|
refs/heads/master
| 2023-02-07T14:40:12.919811 | 2019-11-06T07:17:09 | 2019-11-06T07:17:09 | 75,710,758 | 14 | 19 | null | 2023-01-26T23:57:41 | 2016-12-06T08:27:42 | null |
UTF-8
|
Java
| false | false | 1,662 |
java
|
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.apache.ignite.spi.discovery.tcp.ipfinder.s3.encrypt;
import java.nio.charset.StandardCharsets;
import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
import org.junit.Assert;
import org.junit.Test;
/**
* Class to test {@link SymmetricKeyEncryptionService}.
*/
public class SymmetricKeyEncryptionServiceTest extends GridCommonAbstractTest {
/**
* Symmetric key encryption service.
*/
private SymmetricKeyEncryptionService encryptionSvc;
/**
* Test whether encryption and decryption.
*/
@Test
public void testEncryptDecrypt() {
byte[] testData = "test string".getBytes(StandardCharsets.UTF_8);
byte[] encData = encryptionSvc.encrypt(testData);
byte[] decData = encryptionSvc.decrypt(encData);
Assert.assertArrayEquals(testData, decData);
}
}
|
[
"[email protected]"
] | |
757d1e8f534976393390a2a349a259fe051ebab1
|
43b415ef149f9ca933e2dea419ba1fea202bb90e
|
/src/org/netbeans/modules/corba/idl/editor/coloring/IDLSyntax.java
|
ce8e54deafb1041c0eb77c0e3714e3fe3c463821
|
[] |
no_license
|
wardat/Netbeans-v1.0.x
|
9aa632eae36572510dbb2eb892b2b9f394ce32cf
|
3f4f5dfb465504c6a233eb5c26c649bef351e751
|
refs/heads/master
| 2020-03-30T17:47:47.696568 | 2018-10-03T19:44:35 | 2018-10-03T19:44:35 | 151,470,593 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 43,673 |
java
|
/*
* Sun Public License Notice
*
* The contents of this file are subject to the Sun Public License
* Version 1.0 (the "License"). You may not use this file except in
* compliance with the License. A copy of the License is available at
* http://www.sun.com/
*
* The Original Code is NetBeans. The Initial Developer of the Original
* Code is Sun Microsystems, Inc. Portions Copyright 1997-2001 Sun
* Microsystems, Inc. All Rights Reserved.
*/
package org.netbeans.modules.corba.idl.editor.coloring;
import org.netbeans.editor.Syntax;
/**
* Syntax analyzes for IDL source files.
* Tokens and internal states are given below.
*
* @author Miloslav Metelka
* @version 1.00
*/
public class IDLSyntax extends Syntax {
// Token names
public static final String TN_DIRECTIVE = "directive";
// Token IDs
public static final int TEXT = 0; // plain text
public static final int ERROR = 1; // errorneous text
public static final int KEYWORD = 2; // keyword
public static final int IDENTIFIER = 3; // identifier
public static final int METHOD = 4; // method call i.e. name()
public static final int OPERATOR = 5; // operators like '+', '*=' etc.
public static final int LINE_COMMENT = 6; // comment till end of line
public static final int BLOCK_COMMENT = 7; // block comment
public static final int CHAR = 8; // char constant e.g. 'c'
public static final int STRING = 9; // string constant e.g. "string"
public static final int INT = 10; // integer constant e.g. 1234
public static final int HEX = 11; // hex constant e.g. 0x5a
public static final int OCTAL = 12; // octal constant e.g. 0123
public static final int LONG = 13; // long constant e.g. 12L
public static final int FLOAT = 14; // float constant e.g. 1.5e+43
public static final int DIRECTIVE = 15; // CPP derective e.g. #include <...>
// Internal states
private static final int ISI_ERROR = 1; // after carriage return
private static final int ISI_TEXT = 2; // inside white space
private static final int ISI_WS_P_IDENTIFIER = 3; // inside WS past identifier
private static final int ISI_LINE_COMMENT = 4; // inside line comment //
private static final int ISI_BLOCK_COMMENT = 5; // inside block comment /* ... */
private static final int ISI_STRING = 6; // inside string constant
private static final int ISI_STRING_A_BSLASH = 7; // inside string constant after backslash
private static final int ISI_CHAR = 8; // inside char constant
private static final int ISI_CHAR_A_BSLASH = 9; // inside char constant after backslash
private static final int ISI_IDENTIFIER = 10; // inside identifier
private static final int ISA_SLASH = 11; // slash char
private static final int ISA_EQ = 12; // after '='
private static final int ISA_GT = 13; // after '>'
private static final int ISA_GTGT = 14; // after '>>'
private static final int ISA_GTGTGT = 15; // after '>>>'
private static final int ISA_LT = 16; // after '<'
private static final int ISA_LTLT = 17; // after '<<'
private static final int ISA_PLUS = 18; // after '+'
private static final int ISA_MINUS = 19; // after '-'
private static final int ISA_STAR = 20; // after '*'
private static final int ISA_STAR_I_BLOCK_COMMENT = 21; // after '*'
private static final int ISA_PIPE = 22; // after '|'
private static final int ISA_PERCENT = 23; // after '%'
private static final int ISA_AND = 24; // after '&'
private static final int ISA_XOR = 25; // after '^'
private static final int ISA_EXCLAMATION = 26; // after '!'
private static final int ISA_ZERO = 27; // after '0'
private static final int ISI_INT = 28; // integer number
private static final int ISI_OCTAL = 29; // octal number
private static final int ISI_FLOAT = 30; // float number
private static final int ISI_FLOAT_EXP = 31; // float number
private static final int ISI_HEX = 32; // hex number
private static final int ISA_DOT = 33; // after '.'
private static final int ISA_HASH = 34; // right after '#'
private static final int ISA_DIRECTIVE = 36; // after directive
private static final int ISI_HERROR = 37; // after hash got error
/** Helper index used for method coloring */
int hlpInd = -1; // -1 means invalid value
public IDLSyntax() {
}
/*
public int nextToken() {
int tokenID = super.nextToken();
System.out.println("tokenID=" + getTokenName(tokenID));
return tokenID;
}
*/
public boolean isIdentifierPart(char ch) {
return Character.isJavaIdentifierPart(ch);
}
protected boolean matchKeywords () {
if (IDLKeywords.match (buffer, tokenOffset, offset - tokenOffset) > 0)
return true;
else
return false;
}
protected int parseToken() {
char actChar;
while(offset < stopOffset) {
actChar = buffer[offset];
switch (state) {
case INIT:
switch (actChar) {
case '\n':
offset++;
return EOL;
case ' ':
case '\t':
state = ISI_TEXT;
break;
case '"':
state = ISI_STRING;
break;
case '\'':
state = ISI_CHAR;
break;
case '/':
state = ISA_SLASH;
break;
case '=':
state = ISA_EQ;
break;
case '>':
state = ISA_GT;
break;
case '<':
state = ISA_LT;
break;
case '+':
state = ISA_PLUS;
break;
case '-':
state = ISA_MINUS;
break;
case '*':
state = ISA_STAR;
break;
case '|':
state = ISA_PIPE;
break;
case '%':
state = ISA_PERCENT;
break;
case '&':
state = ISA_AND;
break;
case '^':
state = ISA_XOR;
break;
case '!':
state = ISA_EXCLAMATION;
break;
case '0':
state = ISA_ZERO;
break;
case '.':
state = ISA_DOT;
break;
case '#':
state = ISA_HASH;
break;
default:
if (actChar >= '1' && actChar <= '9') { // '0' already handled
state = ISI_INT;
break;
}
if (Character.isJavaIdentifierStart(actChar)) { // identifier
state = ISI_IDENTIFIER;
break;
}
// everything else is an operator
offset++;
return OPERATOR;
}
break;
case ISI_ERROR:
switch (actChar) {
case ' ':
case '\t':
case '\n':
state = INIT;
return ERROR;
}
break;
case ISI_TEXT: // white space
if (actChar != ' ' && actChar != '\t') {
state = INIT;
return TEXT;
}
break;
case ISI_WS_P_IDENTIFIER:
switch (actChar) {
case ' ':
case '\t':
break;
default:
offset = hlpInd;
hlpInd = -1; // make hlpInd invalid
state = INIT;
return (actChar == '(') ? METHOD : IDENTIFIER;
}
break;
case ISI_LINE_COMMENT:
switch (actChar) {
case '\n':
state = INIT;
return LINE_COMMENT;
}
break;
case ISI_BLOCK_COMMENT:
switch (actChar) {
case '\n':
if (offset == tokenOffset) { // only '\n'
offset++;
return EOL; // stay in ISI_BLOCK_COMMENT state for next line
} else { // return comment token to qualify for previous if()
return BLOCK_COMMENT;
}
case '*':
state = ISA_STAR_I_BLOCK_COMMENT;
break;
}
break;
case ISI_STRING:
switch (actChar) {
case '\\':
state = ISI_STRING_A_BSLASH;
break;
case '\n':
state = INIT;
return STRING;
case '"':
offset++;
state = INIT;
return STRING;
}
break;
case ISI_STRING_A_BSLASH:
switch (actChar) {
case '"':
case '\\':
break;
default:
offset--;
break;
}
state = ISI_STRING;
break;
case ISI_CHAR:
switch (actChar) {
case '\\':
state = ISI_CHAR_A_BSLASH;
break;
case '\n':
state = INIT;
return CHAR;
case '\'':
offset++;
state = INIT;
return CHAR;
}
break;
case ISI_CHAR_A_BSLASH:
switch (actChar) {
case '\'':
case '\\':
break;
default:
offset--;
break;
}
state = ISI_CHAR;
break;
case ISI_IDENTIFIER:
if (!(Character.isJavaIdentifierPart(actChar))) {
if (matchKeywords()) { // it's keyword
state = INIT;
return KEYWORD;
} else {
switch (actChar) {
case '(': // it's method
state = INIT;
return METHOD;
case ' ':
case '\t':
state = ISI_WS_P_IDENTIFIER;
hlpInd = offset; // end of identifier
break;
default:
state = INIT;
return IDENTIFIER;
}
}
}
break;
case ISA_SLASH:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
case '/':
state = ISI_LINE_COMMENT;
break;
case '*':
state = ISI_BLOCK_COMMENT;
break;
default:
state = INIT;
return OPERATOR;
}
break;
case ISA_EQ:
switch (actChar) {
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_GT:
switch (actChar) {
case '>':
state = ISA_GTGT;
break;
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
break;
case ISA_GTGT:
switch (actChar) {
case '>':
state = ISA_GTGTGT;
break;
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
break;
case ISA_GTGTGT:
switch (actChar) {
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_LT:
switch (actChar) {
case '<':
state = ISA_LTLT;
break;
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
break;
case ISA_LTLT:
switch (actChar) {
case '<':
state = ISI_ERROR;
break;
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
break;
case ISA_PLUS:
switch (actChar) {
case '+':
// let it flow to '='
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_MINUS:
switch (actChar) {
case '-':
// let it flow to '='
case '=':
offset++;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_STAR:
switch (actChar) {
case '=':
offset++;
return OPERATOR;
case '/':
offset++;
state = INIT;
return ERROR; // '*/' outside comment
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_STAR_I_BLOCK_COMMENT:
switch (actChar) {
case '/':
offset++;
state = INIT;
return BLOCK_COMMENT;
default:
offset--;
state = ISI_BLOCK_COMMENT;
break;
}
break;
case ISA_PIPE:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_PERCENT:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_AND:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_XOR:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_EXCLAMATION:
switch (actChar) {
case '=':
offset++;
state = INIT;
return OPERATOR;
default:
state = INIT;
return OPERATOR;
}
// break;
case ISA_ZERO:
switch (actChar) {
case '.':
state = ISI_FLOAT;
break;
case 'x':
case 'X':
state = ISI_HEX;
break;
case 'l':
case 'L':
offset++;
state = INIT;
return LONG;
case 'f':
case 'F':
case 'd':
case 'D':
offset++;
state = INIT;
return FLOAT;
case '8': // it's error to have '8' and '9' in octal number
case '9':
state = ISI_ERROR;
break;
default:
if (actChar >= '0' && actChar <= '7') {
state = ISI_OCTAL;
break;
}
state = INIT;
return INT;
}
break;
case ISI_INT:
switch (actChar) {
case 'l':
case 'L':
offset++;
state = INIT;
return LONG;
case '.':
state = ISI_FLOAT;
break;
default:
if (!(actChar >= '0' && actChar <= '9')) {
state = INIT;
return INT;
}
}
break;
case ISI_OCTAL:
if (!(actChar >= '0' && actChar <= '7')) {
state = INIT;
return OCTAL;
}
break;
case ISI_FLOAT:
switch (actChar) {
case 'f':
case 'F':
case 'd':
case 'D':
offset++;
state = INIT;
return FLOAT;
case 'e':
case 'E':
state = ISI_FLOAT_EXP;
break;
default:
if (!((actChar >= '0' && actChar <= '9')
|| actChar == '.')) {
state = INIT;
return FLOAT;
}
}
break;
case ISI_FLOAT_EXP:
switch (actChar) {
case 'f':
case 'F':
case 'd':
case 'D':
offset++;
state = INIT;
return FLOAT;
default:
if (!((actChar >= '0' && actChar <= '9')
|| actChar == '-' || actChar == '+')) {
state = INIT;
return FLOAT;
}
}
break;
case ISI_HEX:
if (!((actChar >= 'a' && actChar <= 'f')
|| (actChar >= 'A' && actChar <= 'F')
|| (actChar >= '0' && actChar <= '9'))) {
state = INIT;
return HEX;
}
break;
case ISA_DOT:
if (actChar >= '0' && actChar <= '9') {
state = ISI_FLOAT;
break;
}
state = INIT;
return OPERATOR;
case ISA_HASH:
if (Character.isJavaIdentifierPart(actChar)) {
break; // continue possible directive string
}
if (matchDirective()) { // directive found
state = ISA_DIRECTIVE;
return DIRECTIVE;
}
switch (actChar) {
case '\n':
state = INIT;
return TEXT;
}
state = ISI_HERROR; // directive error
return ERROR;
case ISA_DIRECTIVE:
switch (actChar) {
case '\n':
state = INIT;
return DIRECTIVE;
}
break;
case ISI_HERROR:
switch (actChar) {
case '\n':
state = INIT;
return ERROR;
}
break;
} // end of switch(state)
offset = ++offset;
} // end of while(offset...)
/** At this stage there's no more text in the scanned buffer.
* Scanner first checks whether this is completely the last
* available buffer.
*/
if (lastBuffer) {
switch(state) {
case ISI_IDENTIFIER:
return matchKeywords() ? KEYWORD : IDENTIFIER;
case ISA_HASH:
return matchDirective() ? DIRECTIVE : TEXT;
case ISI_WS_P_IDENTIFIER:
offset = hlpInd;
hlpInd = -1;
state = INIT;
return IDENTIFIER;
case ISA_STAR_I_BLOCK_COMMENT:
return BLOCK_COMMENT;
case ISA_ZERO:
return INT;
case ISA_DOT:
case ISA_SLASH:
case ISA_EQ:
case ISA_GT:
case ISA_GTGT:
case ISA_GTGTGT:
case ISA_LT:
case ISA_LTLT:
case ISA_PLUS:
case ISA_MINUS:
case ISA_STAR:
case ISA_PIPE:
case ISA_PERCENT:
case ISA_AND:
case ISA_XOR:
case ISA_EXCLAMATION:
return OPERATOR;
case ISI_STRING_A_BSLASH:
return STRING;
case ISI_CHAR_A_BSLASH:
return CHAR;
}
}
/* At this stage there's no more text in the scanned buffer, but
* this buffer is not the last so the scan will continue on another buffer.
* The scanner tries to minimize the amount of characters
* that will be prescanned in the next buffer.
*/
switch (state) {
case ISI_ERROR:
return ERROR;
case ISI_TEXT:
return TEXT;
case ISI_WS_P_IDENTIFIER: // white space past identifier
return EOT; // rescan till begining of ?identifier/keyword?
case ISI_IDENTIFIER:
return EOT; // rescan till begining of ?identifier/keyword?
case ISA_HASH:
return EOT; // rescan till begining of ?identifier/keyword?
case ISA_DIRECTIVE:
return DIRECTIVE;
case ISI_HERROR:
return ERROR;
case ISI_LINE_COMMENT:
return LINE_COMMENT;
case ISI_BLOCK_COMMENT:
return BLOCK_COMMENT;
case ISI_STRING:
return STRING;
case ISI_STRING_A_BSLASH:
if (offset - tokenOffset > 1) {
offset--; // go to backslash char
state = ISI_STRING;
return STRING;
} else {
return EOT; // only one (backslash) char
}
case ISI_CHAR:
return CHAR;
case ISI_CHAR_A_BSLASH:
if (offset - tokenOffset > 1) {
offset--; // go to backslash char
state = ISI_CHAR;
return CHAR;
} else {
return EOT; // only one (backslash) char
}
case ISA_DOT:
case ISA_SLASH:
case ISA_EQ:
case ISA_GT:
case ISA_GTGT:
case ISA_GTGTGT:
case ISA_LT:
case ISA_LTLT:
case ISA_PLUS:
case ISA_MINUS:
case ISA_STAR:
case ISA_PIPE:
case ISA_PERCENT:
case ISA_AND:
case ISA_XOR:
case ISA_EXCLAMATION:
return EOT; // only short ones
case ISA_STAR_I_BLOCK_COMMENT:
return BLOCK_COMMENT;
case ISI_INT:
return INT;
case ISI_OCTAL:
return OCTAL;
case ISI_FLOAT:
return FLOAT;
case ISI_FLOAT_EXP:
return FLOAT;
case ISI_HEX:
return HEX;
}
return EOT;
}
/** match IDL keywords */
/*
private boolean matchKeywords() {
if (offset - tokenOffset > 9)
return false;
if (offset - tokenOffset <= 0)
return false;
switch (buffer[tokenOffset + 0]) {
case 'F':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 1] == 'A'
&& buffer[tokenOffset + 2] == 'L'
&& buffer[tokenOffset + 3] == 'S'
&& buffer[tokenOffset + 4] == 'E';
case 'O':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 1] == 'b'
&& buffer[tokenOffset + 2] == 'j'
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 'c'
&& buffer[tokenOffset + 5] == 't';
case 'T':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 1] == 'R'
&& buffer[tokenOffset + 2] == 'U'
&& buffer[tokenOffset + 3] == 'E';
case 'a':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'n':
return offset - tokenOffset == 3
&& buffer[tokenOffset + 2] == 'y';
case 't':
return offset - tokenOffset == 9
&& buffer[tokenOffset + 2] == 't'
&& buffer[tokenOffset + 3] == 'r'
&& buffer[tokenOffset + 4] == 'i'
&& buffer[tokenOffset + 5] == 'b'
&& buffer[tokenOffset + 6] == 'u'
&& buffer[tokenOffset + 7] == 't'
&& buffer[tokenOffset + 8] == 'e';
default:
return false;
}
case 'b':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 1] == 'o'
&& buffer[tokenOffset + 2] == 'o'
&& buffer[tokenOffset + 3] == 'l'
&& buffer[tokenOffset + 4] == 'e'
&& buffer[tokenOffset + 5] == 'a'
&& buffer[tokenOffset + 6] == 'n';
case 'c':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'a':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 2] == 's'
&& buffer[tokenOffset + 3] == 'e';
case 'h':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 2] == 'a'
&& buffer[tokenOffset + 3] == 'r';
case 'o':
if (offset - tokenOffset <= 2)
return false;
switch (buffer[tokenOffset + 2]) {
case 'n':
if (offset - tokenOffset <= 3)
return false;
switch (buffer[tokenOffset + 3]) {
case 's':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 4] == 't';
case 't':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 4] == 'e'
&& buffer[tokenOffset + 5] == 'x'
&& buffer[tokenOffset + 6] == 't';
default:
return false;
}
default:
return false;
}
default:
return false;
}
case 'd':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'e':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 2] == 'f'
&& buffer[tokenOffset + 3] == 'a'
&& buffer[tokenOffset + 4] == 'u'
&& buffer[tokenOffset + 5] == 'l'
&& buffer[tokenOffset + 6] == 't';
case 'o':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 2] == 'u'
&& buffer[tokenOffset + 3] == 'b'
&& buffer[tokenOffset + 4] == 'l'
&& buffer[tokenOffset + 5] == 'e';
default:
return false;
}
case 'e':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'n':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 2] == 'u'
&& buffer[tokenOffset + 3] == 'm';
case 'x':
return offset - tokenOffset == 9
&& buffer[tokenOffset + 2] == 'c'
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 'p'
&& buffer[tokenOffset + 5] == 't'
&& buffer[tokenOffset + 6] == 'i'
&& buffer[tokenOffset + 7] == 'o'
&& buffer[tokenOffset + 8] == 'n';
default:
return false;
}
case 'f':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'i':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 2] == 'x'
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 'd';
case 'l':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 2] == 'o'
&& buffer[tokenOffset + 3] == 'a'
&& buffer[tokenOffset + 4] == 't';
default:
return false;
}
case 'i':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'n':
if (offset - tokenOffset == 2)
return true;
switch (buffer[tokenOffset + 2]) {
case 'o':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 3] == 'u'
&& buffer[tokenOffset + 4] == 't';
case 't':
return offset - tokenOffset == 9
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 'r'
&& buffer[tokenOffset + 5] == 'f'
&& buffer[tokenOffset + 6] == 'a'
&& buffer[tokenOffset + 7] == 'c'
&& buffer[tokenOffset + 8] == 'e';
default:
return false;
}
default:
return false;
}
case 'l':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 1] == 'o'
&& buffer[tokenOffset + 2] == 'n'
&& buffer[tokenOffset + 3] == 'g';
case 'm':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 1] == 'o'
&& buffer[tokenOffset + 2] == 'd'
&& buffer[tokenOffset + 3] == 'u'
&& buffer[tokenOffset + 4] == 'l'
&& buffer[tokenOffset + 5] == 'e';
case 'o':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'c':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 2] == 't'
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 't';
case 'n':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 2] == 'e'
&& buffer[tokenOffset + 3] == 'w'
&& buffer[tokenOffset + 4] == 'a'
&& buffer[tokenOffset + 5] == 'y';
case 'u':
return offset - tokenOffset == 3
&& buffer[tokenOffset + 2] == 't';
default:
return false;
}
case 'r':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'a':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 2] == 'i'
&& buffer[tokenOffset + 3] == 's'
&& buffer[tokenOffset + 4] == 'e'
&& buffer[tokenOffset + 5] == 's';
case 'e':
return offset - tokenOffset == 8
&& buffer[tokenOffset + 2] == 'a'
&& buffer[tokenOffset + 3] == 'd'
&& buffer[tokenOffset + 4] == 'o'
&& buffer[tokenOffset + 5] == 'n'
&& buffer[tokenOffset + 6] == 'l'
&& buffer[tokenOffset + 7] == 'y';
default:
return false;
}
case 's':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'e':
return offset - tokenOffset == 8
&& buffer[tokenOffset + 2] == 'q'
&& buffer[tokenOffset + 3] == 'u'
&& buffer[tokenOffset + 4] == 'e'
&& buffer[tokenOffset + 5] == 'n'
&& buffer[tokenOffset + 6] == 'c'
&& buffer[tokenOffset + 7] == 'e';
case 'h':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 2] == 'o'
&& buffer[tokenOffset + 3] == 'r'
&& buffer[tokenOffset + 4] == 't';
case 't':
if (offset - tokenOffset <= 2)
return false;
switch (buffer[tokenOffset + 2]) {
case 'r':
if (offset - tokenOffset <= 3)
return false;
switch (buffer[tokenOffset + 3]) {
case 'i':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 4] == 'n'
&& buffer[tokenOffset + 5] == 'g';
case 'u':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 4] == 'c'
&& buffer[tokenOffset + 5] == 't';
default:
return false;
}
default:
return false;
}
case 'w':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 2] == 'i'
&& buffer[tokenOffset + 3] == 't'
&& buffer[tokenOffset + 4] == 'c'
&& buffer[tokenOffset + 5] == 'h';
default:
return false;
}
case 't':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 1] == 'y'
&& buffer[tokenOffset + 2] == 'p'
&& buffer[tokenOffset + 3] == 'e'
&& buffer[tokenOffset + 4] == 'd'
&& buffer[tokenOffset + 5] == 'e'
&& buffer[tokenOffset + 6] == 'f';
case 'u':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'n':
if (offset - tokenOffset <= 2)
return false;
switch (buffer[tokenOffset + 2]) {
case 'i':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 3] == 'o'
&& buffer[tokenOffset + 4] == 'n';
case 's':
return offset - tokenOffset == 8
&& buffer[tokenOffset + 3] == 'i'
&& buffer[tokenOffset + 4] == 'g'
&& buffer[tokenOffset + 5] == 'n'
&& buffer[tokenOffset + 6] == 'e'
&& buffer[tokenOffset + 7] == 'd';
default:
return false;
}
default:
return false;
}
case 'v':
return offset - tokenOffset == 4
&& buffer[tokenOffset + 1] == 'o'
&& buffer[tokenOffset + 2] == 'i'
&& buffer[tokenOffset + 3] == 'd';
case 'w':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'c':
return offset - tokenOffset == 5
&& buffer[tokenOffset + 2] == 'h'
&& buffer[tokenOffset + 3] == 'a'
&& buffer[tokenOffset + 4] == 'r';
case 's':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 2] == 't'
&& buffer[tokenOffset + 3] == 'r'
&& buffer[tokenOffset + 4] == 'i'
&& buffer[tokenOffset + 5] == 'n'
&& buffer[tokenOffset + 6] == 'g';
default:
return false;
}
default:
return false;
}
}
*/
private boolean matchDirective () {
if (offset - tokenOffset > 8)
return false;
if (offset - tokenOffset <= 0)
return false;
switch (buffer[tokenOffset + 0]) {
case '#':
if (offset - tokenOffset <= 1)
return false;
switch (buffer[tokenOffset + 1]) {
case 'd':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 2] == 'e'
&& buffer[tokenOffset + 3] == 'f'
&& buffer[tokenOffset + 4] == 'i'
&& buffer[tokenOffset + 5] == 'n'
&& buffer[tokenOffset + 6] == 'e';
case 'e':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 2] == 'n'
&& buffer[tokenOffset + 3] == 'd'
&& buffer[tokenOffset + 4] == 'i'
&& buffer[tokenOffset + 5] == 'f';
case 'i':
if (offset - tokenOffset <= 2)
return false;
switch (buffer[tokenOffset + 2]) {
case 'f':
if (offset - tokenOffset <= 3)
return false;
switch (buffer[tokenOffset + 3]) {
case 'd':
return offset - tokenOffset == 6
&& buffer[tokenOffset + 4] == 'e'
&& buffer[tokenOffset + 5] == 'f';
case 'n':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 4] == 'd'
&& buffer[tokenOffset + 5] == 'e'
&& buffer[tokenOffset + 6] == 'f';
default:
return false;
}
case 'n':
return offset - tokenOffset == 8
&& buffer[tokenOffset + 3] == 'c'
&& buffer[tokenOffset + 4] == 'l'
&& buffer[tokenOffset + 5] == 'u'
&& buffer[tokenOffset + 6] == 'd'
&& buffer[tokenOffset + 7] == 'e';
default:
return false;
}
case 'p':
return offset - tokenOffset == 7
&& buffer[tokenOffset + 2] == 'r'
&& buffer[tokenOffset + 3] == 'a'
&& buffer[tokenOffset + 4] == 'g'
&& buffer[tokenOffset + 5] == 'm'
&& buffer[tokenOffset + 6] == 'a';
default:
return false;
}
default:
return false;
}
}
public void relocate(char buffer[], int offset, int len, boolean lastBuffer) {
if (hlpInd >= 0) { // relocate hlpInd before calling super.relocScan()
hlpInd += (offset - this.offset);
}
super.relocate(buffer, offset, len, lastBuffer);
}
/** Create scan state appropriate for particular scanner */
public Syntax.StateInfo createStateInfo() {
return new IDLStateInfo();
}
/** Store state of this scanner into given scan state. */
public void storeState(Syntax.StateInfo stateInfo) {
super.storeState(stateInfo);
((IDLStateInfo)stateInfo).hlpPreScan = (hlpInd >= 0) ? (offset - hlpInd) : -1;
}
/** Load state into scanner. Indexes are already initialized
* when this function is called.
*/
public void loadState(Syntax.StateInfo stateInfo) {
super.loadState(stateInfo);
int hi = ((IDLStateInfo)stateInfo).hlpPreScan;
hlpInd = (hi >= 0) ? (offset - hi) : -1;
}
/** Initialize scanner in case the state stored in syntax mark
* is null.
*/
public void loadInitState() {
super.loadInitState();
hlpInd = -1;
}
public String getStateName(int stateNumber) {
switch(stateNumber) {
case ISI_ERROR:
return "ISI_ERROR";
case ISI_TEXT:
return "ISI_TEXT";
case ISI_WS_P_IDENTIFIER:
return "ISI_WS_P_IDENTIFIER";
case ISI_LINE_COMMENT:
return "ISI_LINE_COMMENT";
case ISI_BLOCK_COMMENT:
return "ISI_BLOCK_COMMENT";
case ISI_STRING:
return "ISI_STRING";
case ISI_STRING_A_BSLASH:
return "ISI_STRING_A_BSLASH";
case ISI_CHAR:
return "ISI_CHAR";
case ISI_CHAR_A_BSLASH:
return "ISI_CHAR_A_BSLASH";
case ISI_IDENTIFIER:
return "ISI_IDENTIFIER";
case ISA_SLASH:
return "ISA_SLASH";
case ISA_EQ:
return "ISA_EQ";
case ISA_GT:
return "ISA_GT";
case ISA_GTGT:
return "ISA_GTGT";
case ISA_GTGTGT:
return "ISA_GTGTGT";
case ISA_LT:
return "ISA_LT";
case ISA_LTLT:
return "ISA_LTLT";
case ISA_PLUS:
return "ISA_PLUS";
case ISA_MINUS:
return "ISA_MINUS";
case ISA_STAR:
return "ISA_STAR";
case ISA_STAR_I_BLOCK_COMMENT:
return "ISA_STAR_I_BLOCK_COMMENT";
case ISA_PIPE:
return "ISA_PIPE";
case ISA_PERCENT:
return "ISA_PERCENT";
case ISA_AND:
return "ISA_AND";
case ISA_XOR:
return "ISA_XOR";
case ISA_EXCLAMATION:
return "ISA_EXCLAMATION";
case ISA_ZERO:
return "ISA_ZERO";
case ISI_INT:
return "ISI_INT";
case ISI_OCTAL:
return "ISI_OCTAL";
case ISI_FLOAT:
return "ISI_FLOAT";
case ISI_FLOAT_EXP:
return "ISI_FLOAT_EXP";
case ISI_HEX:
return "ISI_HEX";
case ISA_DOT:
return "ISA_DOT";
default:
return super.getStateName(stateNumber);
}
}
public String getTokenName(int tokenID) {
switch (tokenID) {
case TEXT:
return TN_TEXT;
case ERROR:
return TN_ERROR;
case KEYWORD:
return TN_KEYWORD;
case IDENTIFIER:
return TN_IDENTIFIER;
case METHOD:
return TN_FUNCTION;
case OPERATOR:
return TN_OPERATOR;
case LINE_COMMENT:
return TN_LINE_COMMENT;
case BLOCK_COMMENT:
return TN_BLOCK_COMMENT;
case CHAR:
return TN_CHAR;
case STRING:
return TN_STRING;
case INT:
return TN_INT;
case HEX:
return TN_HEX;
case OCTAL:
return TN_OCTAL;
case LONG:
return TN_LONG;
case FLOAT:
return TN_FLOAT;
case DIRECTIVE:
return TN_DIRECTIVE;
default:
return super.getTokenName(tokenID);
}
}
public String toString() {
String s = super.toString();
s += ", hlpInd=" + hlpInd;
return s;
}
class IDLStateInfo extends Syntax.BaseStateInfo {
/** Helper prescan for method coloring */
int hlpPreScan;
}
}
/*
* <<Log>>
* 3 Gandalf 1.2 2/8/00 Karel Gardas
* 2 Gandalf 1.1 12/28/99 Miloslav Metelka Structural change and
* some renamings
* 1 Gandalf 1.0 11/9/99 Karel Gardas
* $
*/
|
[
"[email protected]"
] | |
34603d72e0694e813dd5391a045c9d8e9287a373
|
35a5c0bc2868b87922ba9003ab50823643a038d9
|
/src/main/java/org/openjfx/Line.java
|
ecc91ec237e8f9330e51730bc4af6a8f3524b34d
|
[] |
no_license
|
mmuellersoppart/MathematicianInTime
|
4b4d38870abe3f7bf651e7c10f636b50fb537be7
|
4cb9017f6b851699df2bf05484ff2f96bb390d40
|
refs/heads/master
| 2023-05-25T02:19:07.638807 | 2020-05-16T01:16:52 | 2020-05-16T01:16:52 | 264,333,279 | 0 | 0 | null | 2023-05-23T20:13:01 | 2020-05-16T01:14:56 |
Java
|
UTF-8
|
Java
| false | false | 2,515 |
java
|
//Marlon Mueller-Soppart
//
//Updated: 20200306
package org.openjfx;
import java.nio.channels.NonReadableChannelException;
import java.util.Arrays;
import java.util.Vector;
import java.util.ArrayList;
public abstract class Line implements ILine {
public LineTypes type;
public int id;
public ArrayList<Integer> nextLine = new ArrayList<>();
public int previousLine;
public String[] splitLine;
public SceneElements allSceneElements;
public Line(String line_String, SceneElements submittedElements)
{
//include manipulatable elements
allSceneElements = submittedElements;
//parse the line for type, id, previous, and next line(s)
String regex = "(::)";
splitLine = line_String.split(regex);
id = LineParser.getID(line_String);
type = LineParser.getType(line_String);
//prev
try {
previousLine = Integer.parseInt(splitLine[2]);
} catch (NumberFormatException e) {
System.out.println(String.format("ERROR: failed to convert previous line string to int. line num: %d", id));
}
//next
String nextLineString = splitLine[3];
try {
if(java.lang.Character.isDigit( nextLineString.charAt(0) )) {
nextLine.add(Integer.parseInt(nextLineString));
} else {
//remove brackets
nextLineString = nextLineString.substring(1, nextLineString.length() - 1);
// System.out.println(nextLineString);
String[] nextLinesList = nextLineString.split(",");
for(String lineNum: nextLinesList){
nextLine.add(Integer.parseInt(lineNum));
}
}
} catch (NumberFormatException e) {
System.out.println(String.format("ERROR: failed to convert next line string to int. line num: %d", id));
}
}
//getters
public LineTypes getType() { return type; }
public int getId() { return id; }
public ArrayList<Integer> getNextLine() { return nextLine; }
public int getPrevLine() { return previousLine; }
//implementing interface
@Override
public ArrayList<Integer> NextLine() {
return nextLine;
}
@Override
public int PreviousLine() {
return previousLine;
}
@Override
public String Execute() {
return "Hello";
}
@Override
public String ExecuteDry() {
return "SafeHello";
}
}
|
[
"[email protected]"
] | |
6c8531a0b1b202b44e64ca3e834ca07e07dd5670
|
09b76d18f5ef854f36fe2aed25abf032344c8a71
|
/app/src/main/java/com/example/nevertry/auto_register/NameAdapter.java
|
0a7e0f20f32357376e16778f867b1b02d9715640
|
[] |
no_license
|
nevertry070688/auto-post
|
1c9d02d48fb67f4b95383097f67aa6f4f727dfd4
|
d713a6588405c3bf8eadfa5fe2033cf670fd237f
|
refs/heads/master
| 2020-06-05T11:37:02.599557 | 2015-06-12T09:33:59 | 2015-06-12T09:33:59 | 35,935,280 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,869 |
java
|
package com.example.nevertry.auto_register;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Adapter;
import android.widget.AdapterView;
import android.widget.BaseAdapter;
import android.widget.TextView;
import java.util.ArrayList;
/**
* Created by nevertry on 6/11/15.
*/
public class NameAdapter extends BaseAdapter {
private Context mContext;
private ArrayList<String> No;
private ArrayList<String> content;
public NameAdapter(Context c, ArrayList<String> id,ArrayList<String> name) {
this.mContext = c;
this.No = id;
this.content = name;
}
public int getCount() {
// TODO Auto-generated method stub
return No.size();
}
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
public View getView(int pos, View child, ViewGroup parent) {
Holder mHolder;
LayoutInflater layoutInflater;
if (child == null) {
layoutInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
child = layoutInflater.inflate(R.layout.name_list, null);
mHolder = new Holder();
mHolder.txt_id = (TextView) child.findViewById(R.id.txt_No);
mHolder.txt_content = (TextView) child.findViewById(R.id.txt_Name);
child.setTag(mHolder);
} else {
mHolder = (Holder) child.getTag();
}
mHolder.txt_id.setText(No.get(pos));
mHolder.txt_content.setText(content.get(pos));
return child;
}
public class Holder {
TextView txt_id;
TextView txt_content;
}
}
|
[
"[email protected]"
] | |
803bd3c989cb689a135a62e464d8954430aa4d48
|
8353dce09cfab302a1d56370ac46db11f4991407
|
/OnlineTestMgtSystem/src/main/java/com/capg/onlinetest/service/AdminService.java
|
a54341c64e364ea0c369f88abd52a409f3fd75de
|
[] |
no_license
|
PiyushSinghThakur/OnlineTestSprint2
|
a92685844d980588f3e85e297e65ffcf7a9a659f
|
2b0dfb4c82ec17b062402bcb580443664eb45617
|
refs/heads/master
| 2022-05-28T12:32:35.854993 | 2020-04-29T19:43:17 | 2020-04-29T19:43:17 | 260,025,062 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 639 |
java
|
package com.capg.onlinetest.service;
import java.util.List;
import com.capg.onlinetest.model.Question;
import com.capg.onlinetest.model.Test;
import com.capg.onlinetest.model.User;
public interface AdminService {
public List<User> getAllUsers();
public String addTest(Test test);
public String updateTest(Test test);
public String deleteTest(int testId);
public List<Test> getAllTests();
public String addQuestions(int testId, Question question);
public String updateQuestions(int testId,Question question);
public String deleteQuestions(int testId,Question question);
public String assignTest(int userId, int testId);
}
|
[
"[email protected]"
] | |
7ad039116b6304d047e87ca982e0b086dfeebfde
|
66adce417daf0ca1c03cdb28b552d5ff80026585
|
/my-project-web/my-project-cart-web/src/main/java/com/qf/controller/CartController.java
|
71f698c20f9f1c8896128dd71ffcf3dac924eaae
|
[
"Apache-2.0"
] |
permissive
|
w13839659048/myteam-shop
|
36dcb68fcccc6a2b9a11e103efbcb95736766eb9
|
4326b8f5df7b03a02a4661c86d8ddede09f3829f
|
refs/heads/master
| 2022-07-08T07:55:37.467672 | 2020-03-14T15:48:50 | 2020-03-14T15:48:50 | 246,045,061 | 0 | 0 |
Apache-2.0
| 2022-06-17T02:57:35 | 2020-03-09T13:37:17 |
CSS
|
UTF-8
|
Java
| false | false | 4,795 |
java
|
package com.qf.controller;
import com.qf.constant.CookieConstant;
import com.qf.dto.ResultBean;
import com.qf.entity.TUser;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.client.RestTemplate;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.UUID;
@Controller
@RequestMapping("cart")
public class CartController {
@Autowired
private RestTemplate restTemplate;
@RequestMapping("add/{productId}/{count}")
@ResponseBody
public ResultBean addProduct(@CookieValue(name = CookieConstant.USER_CART,required = false)String uuid,
@PathVariable Long productId,
@PathVariable int count,
HttpServletResponse response,
HttpServletRequest request) {
Object o = request.getAttribute("user");
if (o!=null){
TUser user = (TUser) o;
System.out.println(user);
Long userId = user.getId();
String url=String.format("http://cart-service/addPro?id=%s&productId=%s&count=%s",userId,productId,count);
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
if (uuid==null||"".equals(uuid)){
uuid= UUID.randomUUID().toString();
Cookie cookie=new Cookie(CookieConstant.USER_CART,uuid);
cookie.setPath("/");
response.addCookie(cookie);
}
String url=String.format("http://cart-service/addPro?id=%s&productId=%s&count=%s",uuid,productId,count);
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
@RequestMapping("clean")
@ResponseBody
public ResultBean cleanCart(@CookieValue(value = CookieConstant.USER_CART,required = false)String uuid,
HttpServletRequest request,
HttpServletResponse response){
Object o = request.getAttribute("user");
if (o!=null) {
TUser user = (TUser) o;
String url=String.format("http://cart-service/cleanPro?uuid=%s",user.getId().toString());
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
if(uuid!=null&&!"".equals(uuid)){
Cookie cookie = new Cookie(CookieConstant.USER_CART,"");
cookie.setMaxAge(0);
cookie.setPath("/");
response.addCookie(cookie);
String url=String.format("http://cart-service/cleanPro?uuid=%s",uuid);
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
return ResultBean.error("当前用户没有购物车");
}
@RequestMapping("show")
@ResponseBody
public ResultBean showCart(@CookieValue(name=CookieConstant.USER_CART,required = false)String uuid,HttpServletRequest request) {
Object o = request.getAttribute("user");
if(o!=null){
TUser user = (TUser) o;
Long userId = user.getId();
String url=String.format("http://cart-service/showPro?id=%s",userId.toString());
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
String url=String.format("http://cart-service/showPro?id=%s",uuid);
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
@RequestMapping("merge")
@ResponseBody
public ResultBean merge(@CookieValue(name = CookieConstant.USER_CART,required = false)String uuid,
HttpServletResponse response,
HttpServletRequest request) {
TUser user = (TUser) request.getAttribute("user");
String userId = null;
if(user!=null){
userId = user.getId().toString();
}
Cookie cookie = new Cookie(CookieConstant.USER_CART,"");
cookie.setPath("/");
cookie.setMaxAge(0);
response.addCookie(cookie);
String url=String.format("http://cart-service/merge?uuid=%s&userId=%s",uuid,userId);
ResultBean resultBean = restTemplate.getForObject(url, ResultBean.class);
return resultBean;
}
}
|
[
"[email protected]"
] | |
2830d97a673485900a8d85916edc0d16555e48ee
|
d015ccd17f917fbb2446f211977fd78a96ec0591
|
/cp-book/ch3/dp/_836_LargestSubmatrix.java
|
2b99c4304f5bcfa6ad2a8ea5474568794a32a2fd
|
[
"MIT"
] |
permissive
|
andrey-yemelyanov/competitive-programming
|
f74d4f35c527b80f4ef0b5fc17d1a4aedbc36ff3
|
f5c5fc9a5951a81dbae1250e17cd3d51a96b7a47
|
refs/heads/master
| 2021-01-12T17:29:32.384671 | 2018-08-03T08:57:00 | 2018-08-03T08:57:00 | 71,582,272 | 1 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,695 |
java
|
import java.util.*;
import static java.lang.Math.*;
import java.util.stream.*;
/*
Problem name: 836 Largest Submatrix
Problem url: https://uva.onlinejudge.org/external/8/836.pdf
Author: Andrey Yemelyanov
*/
public class _836_LargestSubmatrix {
public static void main(String[] args){
Scanner s = new Scanner(System.in);
int nTests = s.nextInt(); s.nextLine(); s.nextLine();
while(nTests-- > 0){
List<int[]> m = new ArrayList<>();
while(true){
String line = "";
if(s.hasNext()){
line = s.nextLine();
}
if(!line.isEmpty()){
int[] row = new int[line.length()];
for(int i = 0; i < row.length; i++){
row[i] = Character.getNumericValue(line.charAt(i));
}
m.add(row);
}else{
int[][] matrix = new int[m.size()][m.get(0).length];
for(int i = 0; i < matrix.length; i++){
for(int j = 0; j < matrix[i].length; j++){
matrix[i][j] = m.get(i)[j];
}
}
int largest = largestSubmatrix(matrix);
if(largest == NEG_INF) System.out.println(0);
else System.out.println(largest);
if(nTests > 0) System.out.println();
break;
}
}
}
}
static final int NEG_INF = -1000000;
static int largestSubmatrix(int[][] matrix){
for(int i = 0; i < matrix.length; i++){
for(int j = 0; j < matrix[0].length; j++){
if(matrix[i][j] == 0) matrix[i][j] = NEG_INF;
}
}
return largestSubRectSum(buildSums(matrix));
}
static int largestSubRectSum(int[][] sums){
int n = sums.length; int m = sums[0].length;
int largestSubRect = Integer.MIN_VALUE;
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
for(int k = i; k < n; k++){
for(int l = j; l < m; l++){
largestSubRect = max(largestSubRect, getSubRectSum(sums, i, j, k, l));
}
}
}
}
return largestSubRect;
}
static int[][] buildSums(int[][] matrix){
int[][] sums = new int[matrix.length][matrix[0].length];
for(int i = 0; i < matrix.length; i++){
for(int j = 0; j < matrix[i].length; j++){
sums[i][j] = matrix[i][j];
if(i > 0) sums[i][j] += sums[i - 1][j];
if(j > 0) sums[i][j] += sums[i][j - 1];
if(i > 0 && j > 0) sums[i][j] -= sums[i - 1][j - 1];
}
}
return sums;
}
static int getSubRectSum(int[][] sums, int i, int j, int k, int l){
int subRect = sums[k][l];
if(i > 0) subRect -= sums[i - 1][l];
if(j > 0) subRect -= sums[k][j - 1];
if(i > 0 && j > 0) subRect += sums[i - 1][j - 1];
return subRect;
}
}
|
[
"[email protected]"
] | |
ec7fc3073e44c98a48ce31040d8ba2768f0848e8
|
ec3314ae1b981c1a53e48510605d8fdf8b110625
|
/DogWalkingServiceProject-master/src/main/java/com/sorokin/dogWalkingService/myPlugin/entities/ILog.java
|
bb37a3b8e7850083e6ad34ed339655068571d0cb
|
[] |
no_license
|
trinityyyY/DogWalkingService
|
1a13b83ba79835d91e7328691907b1a80137f1ca
|
cecebeddd47a42f9844ea298604f4e42eeb997c8
|
refs/heads/master
| 2023-07-03T13:32:09.744438 | 2021-08-05T11:15:43 | 2021-08-05T11:15:57 | 374,379,300 | 0 | 1 | null | null | null | null |
UTF-8
|
Java
| false | false | 316 |
java
|
package com.sorokin.dogWalkingService.myPlugin.entities;
import net.java.ao.Entity;
import net.java.ao.schema.StringLength;
public interface ILog extends Entity {
@StringLength(value=StringLength.UNLIMITED)
String getLog();
@StringLength(value=StringLength.UNLIMITED)
void setLog(String log);
}
|
[
"[email protected]"
] | |
26fa690a31d74294531fd46da73e432e3427800e
|
baa69a3133222ec2cef8de5b4f4ca662012e2fd8
|
/mern/src/main/java/com/datos/mern/exception/ServiceException.java
|
e3123bf5199a1ffb6109934d32445ab3b587f132
|
[] |
no_license
|
labt1/DPBPfinalBackEnd
|
04225bfa0386462b6f231c21ea098af5d13e2550
|
9a28c3658a59199db6db8fccfb773217cb22cff0
|
refs/heads/master
| 2022-11-29T19:34:56.427603 | 2020-08-17T14:22:42 | 2020-08-17T14:22:42 | 288,105,368 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 445 |
java
|
package com.datos.mern.exception;
public class ServiceException extends Exception{
private static final long serialVersionUID = 453115711084080405L;
public ServiceException() {
super();
}
public ServiceException(String message, Throwable cause) {
super(message, cause);
}
public ServiceException(String message) {
super(message);
}
public ServiceException(Throwable cause) {
super(cause);
}
}
|
[
"[email protected]"
] | |
dfb83f9b5ebb69c607b859a1cb3c3273ce2ebaf1
|
6063b28a3cc691b4c8a05c7364a8729ea9759f49
|
/src/main/java/com/alipay/api/domain/MybankCreditSceneprodPaymentQueryModel.java
|
477c5aaecbb865bc202bcfb84d9ea68a6d62cc5c
|
[] |
no_license
|
citi123/test-obj
|
f68b69c5bbf0dad4dcbfc4ff078645caa98e9084
|
83ee779f010fd1f3f42436d073c6a602407a0222
|
refs/heads/master
| 2022-10-29T14:02:02.200643 | 2019-07-01T07:20:05 | 2019-07-01T07:20:05 | 127,399,103 | 0 | 0 | null | 2022-10-12T19:51:52 | 2018-03-30T07:52:54 |
Java
|
UTF-8
|
Java
| false | false | 667 |
java
|
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 场景金融代收付结果查询
*
* @author auto create
* @since 1.0, 2018-01-23 11:37:34
*/
public class MybankCreditSceneprodPaymentQueryModel extends AlipayObject {
private static final long serialVersionUID = 4747793719231647882L;
/**
* 网商内部代收付申请单编号,外部机构根据此编号查询申请状态。
*/
@ApiField("in_apply_no")
private String inApplyNo;
public String getInApplyNo() {
return this.inApplyNo;
}
public void setInApplyNo(String inApplyNo) {
this.inApplyNo = inApplyNo;
}
}
|
[
"[email protected]"
] | |
0fe47dec5b926fb5a4fc9c6837e2620ffd093f06
|
eecfbdd0f1a59a91eb5642c158349fe6501ffd36
|
/app/src/main/java/com/satcatche/btserver/PinyinIME.java
|
a258b0f2b6dbca1a0b8bb9ae127469be29058249
|
[] |
no_license
|
vving1009/BluetoothRemoteControl
|
f4ad97cef467e31693e8d5d9a4509cd0e10caf23
|
14bd0d5156464da65540348b18758b36a86ca8ab
|
refs/heads/master
| 2020-03-21T07:32:10.272998 | 2018-06-29T08:51:31 | 2018-06-29T08:51:31 | 138,285,663 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 6,519 |
java
|
package com.satcatche.btserver;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.inputmethodservice.InputMethodService;
import android.util.Log;
import android.view.KeyEvent;
import android.view.View;
import android.view.inputmethod.EditorInfo;
import android.view.inputmethod.InputConnection;
import android.widget.ArrayAdapter;
import android.widget.Toast;
import static android.content.ContentValues.TAG;
/**
* PinyinIME
*
* @author 贾博瑄
*/
public class PinyinIME extends InputMethodService {
private Receiver mReceiver;
private SatcatcheKeyboardContainer mView;
private boolean isShow = false;
/**
* Local Bluetooth adapter
*/
private BluetoothAdapter mBluetoothAdapter = null;
/**
* Member object for the chat services
*/
private BluetoothChatService mChatService = null;
@Override
public void onCreate() {
super.onCreate();
mReceiver = new Receiver(this);
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction("com.satcatche.remoteservice.ime.key_event");
registerReceiver(mReceiver, intentFilter);
mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
// If the adapter is null, then Bluetooth is not supported
if (mBluetoothAdapter == null) {
Toast.makeText(this, "Bluetooth is not available", Toast.LENGTH_LONG).show();
}
mChatService = new BluetoothChatService(this);
if (!mBluetoothAdapter.isEnabled()) {
//Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
//startActivityForResult(enableIntent, REQUEST_ENABLE_BT);
// Otherwise, setup the chat session
Toast.makeText(this, "Bluetooth is disable", Toast.LENGTH_LONG).show();
}
if (mChatService != null) {
// Only if the state is STATE_NONE, do we know that we haven't started already
if (mChatService.getState() == BluetoothChatService.STATE_NONE) {
// Start the Bluetooth chat services
mChatService.start();
}
}
}
/**
* Makes this device discoverable for 300 seconds (5 minutes).
*/
private void ensureDiscoverable() {
if (mBluetoothAdapter.getScanMode() !=
BluetoothAdapter.SCAN_MODE_CONNECTABLE_DISCOVERABLE) {
Intent discoverableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);
discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);
startActivity(discoverableIntent);
}
}
@Override
public View onCreateInputView() {
this.mView = (SatcatcheKeyboardContainer) getLayoutInflater().inflate(R.layout.ime_keyboard_container, null);
this.mView.setService(this);
return mView;
}
@Override
public boolean onEvaluateFullscreenMode() {
return false;
}
@Override
public void onFinishCandidatesView(boolean finishingInput) {
super.onFinishCandidatesView(finishingInput);
}
@Override
public void onDestroy() {
unregisterReceiver(mReceiver);
if (mChatService != null) {
mChatService.stop();
}
super.onDestroy();
}
@Override
public void onStartInputView(EditorInfo info, boolean restarting) {
super.onStartInputView(info, restarting);
if (info.inputType == 0) {
requestHideSelf(0);
}
}
@Override
public void onWindowHidden() {
super.onWindowHidden();
isShow = false;
}
@Override
public void onWindowShown() {
super.onWindowShown();
isShow = true;
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
return !(!isShow || keyCode == 4) || super.onKeyDown(keyCode, event);
}
@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
return super.onKeyUp(keyCode, event);
}
public final void deleteText(int i) {
InputConnection currentInputConnection = getCurrentInputConnection();
if (currentInputConnection != null) {
currentInputConnection.beginBatchEdit();
currentInputConnection.deleteSurroundingText(i, 0);
currentInputConnection.endBatchEdit();
}
}
public final void commitText(String str) {
InputConnection currentInputConnection = getCurrentInputConnection();
if (currentInputConnection != null) {
currentInputConnection.beginBatchEdit();
currentInputConnection.commitText(str, 1);
currentInputConnection.endBatchEdit();
}
}
private static class Receiver extends BroadcastReceiver {
private final PinyinIME mPinyinIME;
public Receiver(PinyinIME pinyinIME) {
this.mPinyinIME = pinyinIME;
}
@Override
public void onReceive(Context context, Intent intent) {
try {
InputConnection currentInputConnection = mPinyinIME.getCurrentInputConnection();
if (intent != null && intent.getAction() != null) {
if (intent.getAction().equals("com.satcatche.remoteservice.ime.key_event")) {
int intExtra = intent.getIntExtra("keycode", 0);
int intExtra2 = intent.getIntExtra("action", 0);
if (mPinyinIME.isShow && intExtra != 4) {
PinyinIME pinyinIME = mPinyinIME;
KeyEvent keyEvent = new KeyEvent(0, 0, 0, intExtra, 0, 0, 0, 0, 2);
KeyEvent keyEvent2 = new KeyEvent(0, 0, 1, intExtra, 0, 0, 0, 0, 2);
pinyinIME.onKeyDown(intExtra, keyEvent);
pinyinIME.onKeyUp(intExtra, keyEvent2);
} else if (intExtra2 == 0) {
currentInputConnection.sendKeyEvent(new KeyEvent(0, intExtra));
} else {
currentInputConnection.sendKeyEvent(new KeyEvent(1, intExtra));
}
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
|
[
"[email protected]"
] | |
48fc8959592604977df7f17793a2d7742ac15e4a
|
26817a3e664d3eae4bab60f867fc049dbffe15e8
|
/free/src/main/java/com/sunshine/free/dao/MdLoanMapper.java
|
fd5078bf67a9ef400c9a9912f0ea6310d9f457a6
|
[] |
no_license
|
rookieteam2l/springBoot
|
7c9b234225864e4c9e9f09ca8c3ea0a471d76fcd
|
7f562e400bb6f380f8df216920133eb0da9cf1f4
|
refs/heads/master
| 2021-07-04T18:54:20.223753 | 2020-10-20T10:46:35 | 2020-10-20T10:46:35 | 190,550,357 | 4 | 0 | null | 2019-07-15T02:14:33 | 2019-06-06T09:04:25 |
CSS
|
UTF-8
|
Java
| false | false | 925 |
java
|
package com.sunshine.free.dao;
import com.sunshine.free.vo.MdLoanVO;
import com.sunshine.free.entity.MdLoan;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* @Description MdLoanMapper
* @author Free
* @date 2019-07-01
*/
@Mapper
public interface MdLoanMapper {
/**
* 新增借款申请
*
* @param mdLoanVO
* @return MdLoan
*/
int addLoan (MdLoanVO mdLoanVO);
/**
* 查询所有借款申请
*
* @param mdLoanVO
* @return List<MdLoan>
*/
List<MdLoan> getMdLoan(MdLoanVO mdLoanVO);
/**
* 功能描述: 批量更新借款状态
* @param mdLoanId
* @param approvalStatus
* @return int
* @author Free
* @date 2019/8/1 16:38
*/
int updateApprovalStatus(@Param("mdLoanId") String[] mdLoanId, @Param("approvalStatus") String approvalStatus);
}
|
[
"[email protected]"
] | |
9bee1e4d04aa0380aa99a15276e58083651a452b
|
dd2880e3559a7e7ee75bfb97b9f3f7db89bd1b95
|
/app/src/main/java/com/poxo/librarymanager/MainActivity.java
|
21cbe2486f5cb947adf88ca0e8067370d2b55fff
|
[] |
no_license
|
enigma-beep/LibraryManager
|
72addf881d59e5addb0adbb0ee90debb86f98782
|
8a384405925abf020787ae9dba270bc9a0209bd0
|
refs/heads/master
| 2023-03-19T09:06:14.320826 | 2021-03-13T11:57:07 | 2021-03-13T11:57:07 | 347,357,659 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 336 |
java
|
package com.poxo.librarymanager;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
|
[
"[email protected]"
] | |
20562c0ca250c30391769fca2f956b4b8b0a2aa1
|
d00b91a2cab2bab55f7a5ef8a6fc965ae336e43c
|
/src/test/java/com/bgasparotto/springboot/veggieburger/persistence/CustomerRepositoryTest.java
|
2c0263e4dffbe9f2ec75cf9263d258d62f3de6f9
|
[] |
no_license
|
bgasparotto/springboot-veggieburger
|
6a1aeef85ccbc3d99260f41438dcc5461409e09e
|
8607ba1dbecbea77385240734bff9a63407d8d80
|
refs/heads/master
| 2021-09-06T14:39:05.929555 | 2018-02-07T17:53:58 | 2018-02-07T17:53:58 | 113,491,314 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,096 |
java
|
package com.bgasparotto.springboot.veggieburger.persistence;
import com.bgasparotto.springboot.veggieburger.model.Address;
import com.bgasparotto.springboot.veggieburger.model.Country;
import com.bgasparotto.springboot.veggieburger.model.Customer;
import com.bgasparotto.springboot.veggieburger.model.Name;
public class CustomerRepositoryTest extends JpaRepositoryTest<Customer, Long> {
/**
* Constructor.
*
*/
public CustomerRepositoryTest() {
super(Customer::getId, Customer::setId);
}
@Override
protected Long getExistentEntityId() {
return 3L;
}
@Override
protected Customer getUnpersistedEntity() {
Customer customer = new Customer();
Name name = new Name("Mickey", null);
Country country = new Country(30L, "BR", "Brazil");
Address address = new Address(null, "Some address", "Some flat",
"123", "Sao Paulo", "Sao Paulo", country);
customer.setName(name);
customer.setAddress(address);
return customer;
}
@Override
protected int getExpectedListSize() {
return 3;
}
@Override
protected Long getNonExistentEntityId() {
return 4L;
}
}
|
[
"[email protected]"
] | |
e8e563ae839357f3a675b401369959502f013b8e
|
e030348e2500b9aee8c5261953b07f0f1114415d
|
/app/src/main/java/br/com/alura/leilao/ui/activity/ListaLeilaoActivity.java
|
0a83e441596a88371cac4f834a9a25842cc6dca8
|
[] |
no_license
|
leandroprogramador/android-tdd
|
ec87d9f2878a0538a13baa9366e50ddb77792b60
|
ccc9251f20fd867396a84413c09af7478a970a7c
|
refs/heads/master
| 2023-06-16T21:38:59.491277 | 2021-07-14T15:36:44 | 2021-07-14T15:36:44 | 385,984,053 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 2,233 |
java
|
package br.com.alura.leilao.ui.activity;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.RecyclerView;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import br.com.alura.leilao.R;
import br.com.alura.leilao.model.Lance;
import br.com.alura.leilao.model.Leilao;
import br.com.alura.leilao.model.Usuario;
import br.com.alura.leilao.ui.recyclerview.adapter.ListaLeilaoAdapter;
public class ListaLeilaoActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_lista_leilao);
ListaLeilaoAdapter adapter = new ListaLeilaoAdapter(this, leiloesDeExemplo());
RecyclerView recyclerView = findViewById(R.id.lista_leilao_recyclerview);
recyclerView.setAdapter(adapter);
adapter.setOnItemClickListener(new ListaLeilaoAdapter.OnItemClickListener() {
@Override
public void onItemClick(Leilao leilao) {
Intent vaiParaLancesLeilao = new Intent(ListaLeilaoActivity.this, LancesLeilaoActivity.class);
vaiParaLancesLeilao.putExtra("leilao", leilao);
startActivity(vaiParaLancesLeilao);
}
});
}
private List<Leilao> leiloesDeExemplo() {
Leilao console = new Leilao("Console");
console.propoe(new Lance(new Usuario("Leandrinho"), 800.0));
console.propoe(new Lance(new Usuario("Manu"), 1200.0));
Leilao computador = new Leilao("Computador");
computador.propoe(new Lance(new Usuario("Leandrinho"), 2000.0));
computador.propoe(new Lance(new Usuario("Manu"), 1800.0));
Leilao carro = new Leilao("Carro");
carro.propoe(new Lance(new Usuario("Leandrinho"), 15000.0));
carro.propoe(new Lance(new Usuario("Manu"), 12000.0));
carro.propoe(new Lance(new Usuario("Alex"), 16000.0));
carro.propoe(new Lance(new Usuario("Joana"), 13500.0));
return new ArrayList<>(Arrays.asList(
console,
computador,
carro
));
}
}
|
[
"[email protected]"
] | |
e1e63744369839ad7d6dbd7412e44a9018fc0191
|
ec3dcc9915916eb6b9369469f73ce33afd20f5a9
|
/Java_Basics_5/src/com/janbask/parameters/String_Methods.java
|
74d1b31ecbcbe28e0ef30c21415e29276ee4ce0b
|
[] |
no_license
|
sagarsomaiah98/SEP-WEEKEND-BATCH
|
af5ef672bfbd2c2be3c7a335c7fe6792c9a02583
|
a2525c073187dff54d5681909035b0469d7c33c9
|
refs/heads/main
| 2023-08-24T11:44:41.004397 | 2021-11-04T02:02:36 | 2021-11-04T02:02:36 | 403,043,398 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 382 |
java
|
package com.janbask.parameters;
public class String_Methods {
public void length(String input) {
System.out.println("Length of "+input + " is "+input.length());
}
public static void main(String[] args) {
// TODO Auto-generated method stub
String_Methods s= new String_Methods();
s.length("Philip");
s.length("Matt");
s.length("Sunna");
}
}
|
[
"[email protected]"
] | |
61622dbe9959d4f9cc3b1c3e330424b3edbdac59
|
6492d2c4887e29c6d433956b1c5e1216b7b59823
|
/AddressbookSpringApp/src/main/java/com/org/AddressbookSpringApp/repository/IStateRepository.java
|
742d53543352ad7798b02cc24968ac2619620b43
|
[] |
no_license
|
pooja14206/AdressbookSpringApp
|
21dec970c3f6ac0cb34b5406c8b149d59aded2ba
|
8ad28419c1747a1df1851e22ef01e34f115b6f79
|
refs/heads/master
| 2023-08-21T17:14:37.957523 | 2021-10-06T20:06:05 | 2021-10-06T20:06:05 | 395,503,918 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 309 |
java
|
package com.org.AddressbookSpringApp.repository;
import com.org.AddressbookSpringApp.model.StateData;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.stereotype.Repository;
@Repository
public interface IStateRepository extends JpaRepository<StateData, Integer > {
}
|
[
"[email protected]"
] | |
c893d2cb0940feb0eb41437b028909598c087e4b
|
b785e54ae09effa31c34e94e18fa838b6d96ab32
|
/softuni_game_store/src/main/java/game_store/utils/DataValidator.java
|
6314f678762a773867627d741ba9cac1730e7f8f
|
[
"MIT"
] |
permissive
|
komitoff/Java-DB-Fundamentals
|
41918695a39cd67fb1c332b573b5034c51ce679c
|
0615d4e21cd8f9a30544c1de42421ea9fc2ca4e5
|
refs/heads/master
| 2021-01-21T19:54:18.692996 | 2018-06-18T18:18:37 | 2018-06-18T18:18:37 | 92,173,895 | 0 | 0 | null | null | null | null |
UTF-8
|
Java
| false | false | 1,022 |
java
|
package game_store.utils;
import game_store.model.bindingModel.user.RegisterUser;
import javax.validation.ConstraintViolation;
import javax.validation.Validation;
import javax.validation.ValidatorFactory;
import java.util.Set;
public class DataValidator {
public static <T> String getInvalidParameterMessage(T target) {
ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
Set<ConstraintViolation<T>> constraints =
factory.getValidator().validate(target);
for (ConstraintViolation<T> constraint : constraints) {
return constraint.getMessage();
}
return null;
}
public static <T> boolean isValid(T target) {
ValidatorFactory factory = Validation.buildDefaultValidatorFactory();
Set<ConstraintViolation<T>> constraints =
factory.getValidator().validate(target);
for (ConstraintViolation<T> constraint : constraints) {
return false;
}
return true;
}
}
|
[
"[email protected]"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.