commit
af835af1b8
@ -0,0 +1,31 @@
|
||||
HELP.md
|
||||
target/
|
||||
!.mvn/wrapper/maven-wrapper.jar
|
||||
!**/src/main/**
|
||||
!**/src/test/**
|
||||
|
||||
### STS ###
|
||||
.apt_generated
|
||||
.classpath
|
||||
.factorypath
|
||||
.project
|
||||
.settings
|
||||
.springBeans
|
||||
.sts4-cache
|
||||
|
||||
### IntelliJ IDEA ###
|
||||
.idea
|
||||
*.iws
|
||||
*.iml
|
||||
*.ipr
|
||||
|
||||
### NetBeans ###
|
||||
/nbproject/private/
|
||||
/nbbuild/
|
||||
/dist/
|
||||
/nbdist/
|
||||
/.nb-gradle/
|
||||
build/
|
||||
|
||||
### VS Code ###
|
||||
.vscode/
|
@ -0,0 +1,118 @@
|
||||
/*
|
||||
* Copyright 2012-2019 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* https://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.
|
||||
*/
|
||||
|
||||
import java.net.*;
|
||||
import java.io.*;
|
||||
import java.nio.channels.*;
|
||||
import java.util.Properties;
|
||||
|
||||
public class MavenWrapperDownloader {
|
||||
|
||||
private static final String WRAPPER_VERSION = "0.5.5";
|
||||
/**
|
||||
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
|
||||
*/
|
||||
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
|
||||
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
|
||||
|
||||
/**
|
||||
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
|
||||
* use instead of the default one.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
|
||||
".mvn/wrapper/maven-wrapper.properties";
|
||||
|
||||
/**
|
||||
* Path where the maven-wrapper.jar will be saved to.
|
||||
*/
|
||||
private static final String MAVEN_WRAPPER_JAR_PATH =
|
||||
".mvn/wrapper/maven-wrapper.jar";
|
||||
|
||||
/**
|
||||
* Name of the property which should be used to override the default download url for the wrapper.
|
||||
*/
|
||||
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
|
||||
|
||||
public static void main(String args[]) {
|
||||
System.out.println("- Downloader started");
|
||||
File baseDirectory = new File(args[0]);
|
||||
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
|
||||
|
||||
// If the maven-wrapper.properties exists, read it and check if it contains a custom
|
||||
// wrapperUrl parameter.
|
||||
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
|
||||
String url = DEFAULT_DOWNLOAD_URL;
|
||||
if (mavenWrapperPropertyFile.exists()) {
|
||||
FileInputStream mavenWrapperPropertyFileInputStream = null;
|
||||
try {
|
||||
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
|
||||
Properties mavenWrapperProperties = new Properties();
|
||||
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
|
||||
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
|
||||
} catch (IOException e) {
|
||||
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
|
||||
} finally {
|
||||
try {
|
||||
if (mavenWrapperPropertyFileInputStream != null) {
|
||||
mavenWrapperPropertyFileInputStream.close();
|
||||
}
|
||||
} catch (IOException e) {
|
||||
// Ignore ...
|
||||
}
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading from: " + url);
|
||||
|
||||
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
|
||||
if (!outputFile.getParentFile().exists()) {
|
||||
if (!outputFile.getParentFile().mkdirs()) {
|
||||
System.out.println(
|
||||
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
|
||||
}
|
||||
}
|
||||
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
|
||||
try {
|
||||
downloadFileFromURL(url, outputFile);
|
||||
System.out.println("Done");
|
||||
System.exit(0);
|
||||
} catch (Throwable e) {
|
||||
System.out.println("- Error downloading");
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
}
|
||||
|
||||
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
|
||||
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
|
||||
String username = System.getenv("MVNW_USERNAME");
|
||||
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
|
||||
Authenticator.setDefault(new Authenticator() {
|
||||
@Override
|
||||
protected PasswordAuthentication getPasswordAuthentication() {
|
||||
return new PasswordAuthentication(username, password);
|
||||
}
|
||||
});
|
||||
}
|
||||
URL website = new URL(urlString);
|
||||
ReadableByteChannel rbc;
|
||||
rbc = Channels.newChannel(website.openStream());
|
||||
FileOutputStream fos = new FileOutputStream(destination);
|
||||
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
|
||||
fos.close();
|
||||
rbc.close();
|
||||
}
|
||||
|
||||
}
|
Binary file not shown.
@ -0,0 +1,2 @@
|
||||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.2/apache-maven-3.6.2-bin.zip
|
||||
wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar
|
@ -0,0 +1,2 @@
|
||||
[InternetShortcut]
|
||||
URL=https://github.com/hankcs/HanLP/
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,108 @@
|
||||
,Mg,Rg,a,ad,ag,al,an,b,begin,bl,c,cc,d,dg,dl,e,end,f,gb,gc,gg,gi,gm,gp,i,j,k,l,m,mq,n,nba,nbc,nf,ng,nhd,nhm,nis,nit,nmc,nnd,nnt,nr,nr1,nr2,nrf,nrj,ns,nsf,nt,ntc,ntcb,ntcf,ntch,nth,nto,nts,ntu,nz,o,p,pba,pbei,q,qt,qv,r,rr,ry,rys,ryt,ryv,rz,rzs,rzt,rzv,s,t,tg,u,ude1,ude2,ude3,udeng,udh,uguo,ule,ulian,uls,usuo,uyy,uzhe,uzhi,v,vd,vf,vg,vi,vl,vn,vshi,vx,vyou,w,x,y,z
|
||||
Mg,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,20,0,0,0,0,0,0,8,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,4,0,0,2,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,2,50,4,0,0
|
||||
Rg,0,2,0,0,10,0,0,20,0,0,6,11,22,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,63,0,0,0,43,0,0,38,0,0,0,0,10,0,0,20,0,0,4,0,0,0,0,0,0,0,0,0,4,0,14,0,2,0,0,0,0,0,2,0,0,0,4,0,0,0,0,2,0,0,16,0,0,14,0,0,0,0,0,0,0,0,0,50,0,18,6,0,0,4,2,0,6,104,0,0,0
|
||||
a,18,6,28002,1524,4365,95,2967,6967,0,51,3286,9623,21325,44,44,134,7352,8032,277,106,39,379,103,27,0,35,984,38,12556,19605,215549,0,0,2940,13115,379,16,6713,54,55,2756,9405,2127,0,0,871,36,5224,371,316,221,2,0,7,1,16,0,9,30087,75,13295,577,924,10581,3085,2092,1512,1855,312,18,16,201,1688,54,2,532,1266,5912,1203,323,146037,11989,1767,2253,471,544,18783,62,297,283,78,572,2609,121922,274,5124,5151,22351,736,36503,3548,16,2120,235465,2772,2813,931
|
||||
ad,0,0,3941,934,61,34,228,399,0,8,590,1749,6074,2,14,6,404,977,22,4,2,48,12,4,0,2,82,4,488,550,15422,0,0,54,302,118,2,202,0,0,60,489,74,0,0,21,0,267,25,51,12,1,0,1,0,0,1,0,5274,0,7310,1081,858,109,66,38,315,188,18,0,0,5,294,8,0,76,109,184,28,20,15670,2394,54,109,77,70,1189,6,48,11,38,28,126,90864,173,1008,359,12451,503,13110,2131,141,1214,20461,50,172,64
|
||||
ag,0,58,1557,26,862,0,28,792,0,1,104,496,1351,14,10,0,239,664,96,2,0,8,2,0,0,0,152,2,490,265,11349,0,0,104,3090,20,0,675,2,2,162,893,211,0,0,193,0,209,4,9,12,0,0,1,1,0,0,0,2283,74,820,9,47,1399,144,94,32,143,32,0,0,12,1053,0,0,16,88,198,195,2,1349,23,28,149,0,18,252,6,10,46,12,33,80,8438,15,167,905,786,34,728,104,0,91,6908,217,159,36
|
||||
al,0,0,61,8,2,0,8,8,0,0,38,34,238,0,0,0,94,75,0,0,0,0,0,0,0,0,8,0,47,93,289,0,0,0,63,0,0,0,0,0,0,2,4,0,0,6,0,2,0,0,0,0,0,0,0,0,0,0,67,0,92,2,8,16,2,0,28,26,0,0,0,0,16,0,0,6,6,46,0,2,3733,978,10,14,16,0,270,0,0,0,2,0,20,468,4,30,14,62,22,80,46,0,70,8265,4,58,12
|
||||
an,0,0,1468,145,25,8,384,243,0,8,337,2900,2183,0,2,0,854,737,0,0,0,34,14,0,0,0,64,4,776,852,12999,0,0,33,383,0,0,967,6,0,57,759,18,0,0,20,0,81,4,4,0,0,0,0,1,0,0,0,1076,0,694,15,47,60,42,95,77,131,8,0,0,26,42,0,0,29,31,166,0,132,7705,487,12,596,15,16,556,0,12,30,2,42,260,5649,40,184,107,1372,102,4669,395,0,102,30354,12,270,119
|
||||
b,8,27,6326,537,1061,16,982,7497,0,34,1160,2432,6022,103,32,12,744,6304,125,76,49,318,56,57,0,106,442,8,2809,3177,132785,4,0,1154,6828,384,4,10327,62,14,3192,17209,850,0,0,538,12,2962,385,628,167,2,1,14,67,211,3,24,18103,50,5203,80,389,2355,653,520,297,180,34,2,0,22,2003,58,4,162,1116,1468,360,25,21510,440,94,888,22,48,285,9,42,131,43,284,309,45439,783,1253,1629,7569,284,23495,4005,16,1608,26128,2475,109,146
|
||||
begin,0,8,22901,5075,1764,944,735,28467,0,4474,100571,24630,63804,36,3946,152,522934,16592,136,51,76,742,121,34,24,1008,34,58,48585,28289,163760,24,0,5250,5389,819,40,12288,169,112,7147,33934,87605,0,0,14026,404,51342,13090,17675,3422,262,4,26,177,3275,61,1008,83683,149,170703,774,1673,2551,1566,180,19325,49261,1118,38,40,2976,30518,3460,1320,24240,6301,166132,1779,16,22,39,24,430,0,374,2,181,2,262,10,22,2,136812,934,2060,3469,16873,4898,20039,980,6,6888,259176,7001,48,1267
|
||||
bl,0,0,69,21,0,22,8,3,0,0,14,72,457,0,0,0,38,95,0,0,0,0,2,0,0,0,0,0,15,43,441,0,0,10,12,0,0,14,0,0,3,22,22,0,0,19,0,37,15,5,2,0,0,0,0,2,0,0,96,1,88,6,4,1,2,0,34,190,0,0,0,4,26,2,0,48,2,4,4,0,3368,44,0,22,2,2,4,0,0,0,8,0,22,796,22,6,8,160,44,141,82,0,12,6598,6,6,2
|
||||
c,1,0,13713,3285,396,250,610,4032,0,344,7196,2455,46952,22,464,2,16,2975,109,27,12,180,69,24,0,78,21,50,6636,12417,51932,17,0,1474,908,525,15,2741,31,22,879,3137,5950,0,0,1652,24,4231,1340,657,295,8,0,0,13,60,7,46,17281,12,32084,1084,1969,1031,356,68,4539,26484,1114,12,46,754,7540,584,146,6354,1992,9967,225,6,428,14,120,118,32,120,190,110,2,84,56,12,2,85289,637,1307,647,8720,2142,7869,10969,14,5699,63249,992,150,442
|
||||
cc,0,18,18033,2912,888,108,2471,9214,0,240,5076,1617,16676,71,192,0,18,6244,483,86,245,721,106,58,4,338,6,44,9603,10202,151057,40,3,3326,2375,984,62,7862,198,218,2436,8762,20073,0,0,4707,122,15887,5792,3606,1241,113,8,7,84,547,26,208,43637,36,20791,510,1514,696,324,249,2459,11682,185,2,14,131,5649,471,54,4862,3630,10872,413,0,157,45,16,44,0,287,30,30,0,188,0,38,615,88145,703,1730,1096,10745,1392,26902,40,189,992,12382,3389,0,612
|
||||
d,0,2,160106,25765,2519,2302,7869,9433,0,491,13942,12988,178687,324,846,29,1411,12032,122,4,12,291,190,25,4,64,200,164,22181,23243,97070,8,0,915,7149,515,12,2120,19,8,421,2980,3742,0,0,898,48,3575,908,480,203,10,0,0,18,36,2,10,52802,111,141795,7757,23723,13102,2412,1726,5631,9304,713,50,406,1588,11608,550,36,4057,2358,6294,2284,272,29344,5059,2747,1166,62,2315,6151,1495,240,763,2026,846,444,778838,5628,20911,7851,86469,14893,50914,82473,822,43560,74290,966,613,2227
|
||||
dg,0,0,454,0,70,0,2,6,0,0,0,26,239,0,0,2,34,22,0,0,0,0,0,0,0,0,0,0,11,9,152,0,0,0,91,0,0,16,0,0,2,8,28,0,0,7,0,6,0,2,0,0,0,0,0,0,0,0,113,2,240,0,0,21,12,4,0,52,0,0,0,0,0,2,0,4,0,3,2,0,32,4,4,2,0,0,52,0,0,0,0,0,8,595,0,157,190,48,2,16,106,0,16,248,0,6,0
|
||||
dl,0,0,236,59,20,0,4,31,0,2,78,58,1258,2,0,0,42,134,0,0,2,2,22,0,0,0,0,2,60,80,555,0,0,18,10,8,0,11,2,0,14,40,24,0,0,4,0,144,35,11,0,2,0,0,0,3,0,0,289,5,468,62,50,8,0,0,18,82,0,0,0,0,24,6,0,16,27,10,2,0,726,1282,4,10,0,0,10,0,0,4,4,0,18,2522,22,62,0,177,62,272,118,2,22,6978,4,24,14
|
||||
e,0,0,4,0,6,0,0,2,0,0,0,0,12,0,0,18,24,2,0,0,0,0,0,0,0,0,4,0,12,10,22,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,4,0,0,0,2,0,0,8,8,0,0,2,0,0,0,0,0,0,0,0,0,2,2,2,0,0,16,0,0,0,0,0,0,50,0,8,0,7,0,6,0,0,2,2572,0,4,0
|
||||
end,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
f,15,16,12760,3228,940,318,398,8714,0,169,3056,3517,51361,63,147,8,1151,3726,129,12,17,155,488,16,0,125,385,50,10137,20403,64224,36,0,645,6809,415,8,3394,20,79,554,3090,2806,0,0,872,12,2876,661,367,169,7,0,2,10,72,6,14,17377,44,12253,319,2352,2676,2616,467,1420,4558,329,34,2,258,2811,174,4,1175,1457,2999,295,300,72063,110,160,751,59,418,6698,138,243,1127,175,92,196,117726,648,2911,1510,16107,2334,11743,2932,131,7185,236719,613,359,729
|
||||
gb,0,0,144,34,8,0,5,26,0,0,81,376,369,0,0,0,103,218,100,10,2,0,10,0,0,0,14,0,28,17,985,0,0,4,114,50,4,13,5,24,0,70,0,0,0,18,0,1,0,0,0,0,0,0,0,0,0,0,156,0,161,2,26,80,4,8,14,0,0,0,0,0,37,0,0,2,12,8,0,0,880,0,0,137,2,6,22,0,2,14,0,0,2,870,2,27,1,195,3,315,62,0,51,3427,13,2,1
|
||||
gc,0,0,4,0,2,0,9,12,0,0,3,74,34,0,0,0,2,30,6,16,0,2,0,0,0,0,2,0,29,21,207,0,0,6,2,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,0,34,0,10,14,2,0,2,0,0,0,0,0,14,0,0,0,4,2,0,0,221,0,0,104,0,0,0,0,0,2,0,0,0,299,0,8,2,22,0,36,32,0,4,808,2,0,0
|
||||
gg,0,0,131,8,4,2,6,28,0,2,12,206,162,0,0,0,8,68,0,0,0,6,0,0,0,0,0,0,16,13,808,0,0,0,18,0,0,13,6,0,0,24,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,81,0,42,0,2,14,8,0,0,0,0,0,0,0,4,0,0,2,0,2,0,0,184,2,0,132,0,0,0,0,8,0,2,0,0,322,20,0,2,57,16,271,10,0,2,900,0,0,0
|
||||
gi,0,0,428,40,17,0,43,83,0,0,85,728,803,4,4,0,510,531,2,0,0,35,0,0,0,0,84,0,85,106,2635,0,0,10,39,9,0,144,3,0,26,116,20,0,0,8,0,29,2,5,0,0,0,0,0,0,0,0,492,0,397,4,22,44,6,4,20,20,0,0,0,8,26,2,0,22,42,32,0,4,1269,4,0,308,4,14,74,0,14,14,6,0,8,2453,8,24,20,337,48,1105,62,1,22,5293,39,0,4
|
||||
gm,0,0,102,53,2,0,25,32,0,0,8,120,132,0,0,0,250,56,0,0,0,10,0,37,0,0,30,0,59,86,2804,2,0,12,50,0,0,23,0,0,10,6,18,0,0,18,0,2,0,1,0,0,0,0,0,0,0,0,220,0,68,2,8,34,8,0,0,2,0,0,0,0,2,0,0,0,38,9,2,8,5012,0,0,60,0,0,24,0,0,1,2,0,7,458,0,16,2,92,4,241,40,0,0,1725,6,6,6
|
||||
gp,0,0,37,26,0,0,2,0,0,0,8,99,90,0,0,0,6,74,0,0,0,0,0,0,0,0,2,0,54,15,256,0,0,6,34,0,0,12,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,0,131,0,0,7,0,0,0,0,0,0,0,0,6,2,0,0,4,10,0,0,204,0,0,4,0,12,8,0,0,0,0,0,0,215,0,4,0,12,0,104,30,0,4,444,6,2,0
|
||||
i,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,2,0,0,0,124,0,0,0
|
||||
j,0,0,84,1,2,2,0,60,0,0,20,68,272,0,0,0,36,113,0,0,0,2,0,0,0,6,0,0,250,225,3845,0,0,0,23,0,0,64,8,0,3,458,8,0,0,26,0,37,6,6,0,0,0,0,0,0,0,0,329,0,107,0,0,29,0,0,4,8,0,0,0,0,4,2,0,6,15,272,4,0,302,0,0,27,0,0,4,0,0,0,4,0,2,904,8,2,8,137,2,171,3,0,8,876,10,0,2
|
||||
k,0,0,1018,341,42,96,74,311,0,4,298,530,6016,2,40,2,453,318,8,0,0,10,2,2,0,2,117,0,298,371,5394,0,0,65,151,122,2,211,0,0,21,110,129,0,0,92,9,49,4,4,2,0,0,0,0,0,0,0,1782,1,2367,48,156,71,66,2,72,67,16,6,0,36,172,10,0,42,378,190,6,2,4494,36,42,70,6,30,6,2,150,94,16,2,2,9534,39,148,107,1527,423,1584,191,4,154,7422,88,14,38
|
||||
l,0,0,14,6,0,0,4,6,0,0,10,20,291,0,0,0,46,59,0,0,0,0,28,0,0,0,0,2,47,61,107,0,0,2,6,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,0,22,2,0,0,0,2,0,6,0,0,0,4,0,0,0,4,0,0,0,0,253,4,0,8,0,2,8,0,0,4,0,0,0,230,2,6,2,44,10,50,32,0,2,1764,4,4,2
|
||||
m,2,0,13472,766,1563,42,564,4172,0,34,759,2858,22366,78,22,6,8293,6745,326,24,10,331,28,34,0,219,820,0,13712,4977,121907,2,0,1349,11188,74,17,5525,15,20,1212,4102,737,0,0,401,0,2853,416,710,105,4,0,6,99,80,8,19,14793,8,7250,101,321,157861,32735,16681,163,427,56,14,4,44,421,43,4,230,786,2802,352,18,19698,258,13,142,18,104,354,180,26,887,34,1,39,46722,183,2712,2161,8388,437,7075,12440,44,472,155742,7293,248,127
|
||||
mq,1,0,35959,1999,609,432,1363,10166,0,262,1840,3576,30746,21,112,22,4499,24867,114,36,39,349,170,52,0,46,283,17,7152,10424,191929,24,0,3582,2268,475,45,8733,113,39,3099,12557,1537,0,0,681,19,4808,1482,1438,469,15,4,15,8,115,10,32,38069,32,13569,242,2105,3215,703,734,559,2169,199,2,10,275,791,54,7,466,1990,4251,145,56,33705,495,51,265,70,197,1562,100,129,206,52,43,683,66770,651,4251,1421,15629,2789,16865,4249,48,1330,159388,1994,708,1499
|
||||
n,9,10,143076,31427,5575,1802,18028,36543,0,909,34309,162940,414058,563,1224,339,56393,245177,1159,105,512,3069,3523,281,23,131,15249,204,78449,54122,878207,18,0,5975,47769,1804,158,79733,861,157,7233,66454,29081,0,0,7430,223,16226,2423,3507,1054,38,3,33,58,926,30,66,169115,315,171968,2993,18422,22404,10844,3359,8448,8789,1501,90,177,4312,21913,1996,39,4194,19420,33227,1962,2982,400856,3820,687,36619,1084,3430,16446,727,5075,5118,4101,989,8650,857390,9633,25035,11656,138859,17651,277168,50463,1213,19056,1794391,12080,9352,6759
|
||||
nba,0,0,6,6,2,0,0,4,0,0,2,18,31,0,0,0,4,12,0,0,2,0,0,0,0,0,0,0,4,6,82,2,0,2,48,8,0,8,0,0,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,12,0,18,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,19,0,0,21,0,0,0,2,0,0,0,0,0,53,0,4,0,11,0,7,26,0,4,206,1,0,0
|
||||
nbc,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0
|
||||
nf,0,0,1382,332,130,48,569,495,0,2,983,2679,5413,2,8,26,1921,3658,16,16,0,10,2,0,0,0,576,0,899,836,9320,0,0,825,1792,18,12,939,6,11,116,251,70,0,0,45,0,124,22,8,15,0,0,0,0,0,0,0,2255,2,2007,14,177,452,50,38,100,85,75,0,0,82,372,4,4,96,318,184,6,8,5216,26,39,2112,14,55,212,4,33,54,139,2,49,11009,59,240,184,1512,160,1719,1165,2,521,28069,355,229,60
|
||||
ng,4,51,5254,757,1602,40,190,2965,0,18,1008,3205,14170,234,68,22,2488,6764,80,12,10,58,35,66,0,2,803,0,2568,1635,39678,4,0,845,8641,251,21,2731,17,12,553,4232,1840,0,0,456,12,895,194,128,36,6,0,7,1,17,8,3,7949,84,6395,123,1028,3480,635,338,309,840,41,2,2,91,5435,40,0,228,635,1953,172,38,11409,369,44,1354,20,74,1121,35,105,320,127,80,560,37736,220,970,2761,5200,386,5245,885,15,1015,85043,466,224,312
|
||||
nhd,0,0,271,52,10,0,80,153,0,0,317,1271,763,4,0,10,640,229,34,0,0,8,0,0,0,0,121,0,70,119,4385,0,0,20,205,127,0,125,2,0,5,43,6,0,0,2,0,2,0,1,0,0,0,0,0,1,0,0,509,0,236,0,32,22,8,18,15,28,10,0,0,30,87,6,0,9,0,79,2,0,2702,18,30,1140,6,0,133,0,6,17,30,10,45,1782,18,22,14,614,8,636,277,0,115,11155,16,76,0
|
||||
nhm,0,0,20,2,0,0,0,3,0,0,10,70,50,1,0,0,26,24,22,0,0,0,0,0,0,0,0,0,14,36,228,0,0,6,8,0,11,17,0,0,6,4,5,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,49,0,36,0,28,19,0,0,1,0,0,0,0,0,8,0,0,4,0,0,0,0,139,0,0,81,0,0,0,0,0,0,0,0,8,221,0,16,1,34,0,34,14,0,8,834,19,0,0
|
||||
nis,0,0,3432,2326,198,23,333,5447,0,46,1770,9960,24277,2,114,0,1726,9488,28,2,31,80,57,10,1,43,56,17,6470,5955,41972,0,0,82,1756,34,2,9936,1032,3,970,44446,959,0,0,244,2,3273,169,491,44,1,0,0,1,75,0,3,8510,12,15292,271,567,749,177,93,731,328,44,5,3,192,1043,61,6,406,1921,5762,125,9,25220,8,3,3344,21,44,321,34,227,289,69,0,106,65283,1059,1222,292,9352,683,24062,1498,83,958,64819,868,148,66
|
||||
nit,0,0,103,16,0,0,0,135,0,6,27,82,118,0,0,0,12,29,4,0,0,1,0,1,4,0,0,0,63,75,643,0,0,0,15,12,0,215,22,0,8,1584,102,0,0,4,0,6,0,9,3,0,0,0,0,0,0,0,83,0,49,0,4,3,0,0,9,2,0,0,0,0,5,0,2,14,16,44,0,0,395,0,0,50,0,0,0,0,2,2,0,0,0,589,8,13,7,97,0,244,19,0,6,813,26,0,0
|
||||
nmc,0,0,23,10,0,0,0,10,0,0,35,196,94,0,0,0,32,45,19,1,0,0,0,0,0,0,4,0,7,9,278,0,0,20,12,0,6,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,0,80,0,0,12,0,2,4,2,0,0,0,0,5,0,0,2,0,0,0,0,274,0,0,135,0,6,0,0,0,4,0,0,0,357,0,10,0,9,0,22,58,0,14,953,9,0,0
|
||||
nnd,0,0,1354,867,78,12,109,623,0,2,421,1804,5973,2,21,6,832,639,0,0,0,18,12,0,0,6,1415,2,1083,677,9474,0,0,123,355,11,0,1443,4,0,489,1070,3441,0,0,1351,63,267,5,141,36,0,0,0,0,0,0,1,2652,3,3044,51,255,104,22,18,136,40,6,8,4,88,254,32,0,112,401,469,63,0,4576,2,2,380,8,7,55,20,206,65,129,2,96,13242,118,254,492,2481,371,2149,307,2,145,13647,190,104,18
|
||||
nnt,0,0,5527,2459,290,157,263,1900,0,113,2024,9944,30894,10,223,0,3244,3962,0,0,0,59,17,11,0,9,7018,22,3120,2390,35856,0,0,59,1898,21,24,4192,0,0,173,6737,98515,0,0,11275,1341,775,170,309,41,3,0,0,1,28,0,5,8889,50,27211,342,1272,954,297,125,493,820,52,10,5,265,1358,119,8,475,1874,6376,390,8,23068,6,33,1699,203,46,553,215,502,507,149,280,256,100729,1123,1424,796,9299,1245,12842,1645,83,688,103592,926,253,88
|
||||
nr,0,24,5871,2310,417,172,213,2422,0,104,3120,18443,47469,3,359,14,8984,3507,6,0,7,62,30,4,0,16,220,16,3702,4125,39570,0,0,205,2605,56,6,2798,7,10,281,15587,13168,0,0,631,0,1197,125,176,96,4,2,11,3,44,6,6,12472,35,36070,413,3958,1468,238,152,899,1474,47,2,32,563,1219,132,30,1497,2763,10203,159,2,30974,26,36,8101,150,66,406,68,454,1089,281,88,728,130364,641,1622,6412,12957,1928,6968,5265,76,1246,144370,688,234,436
|
||||
nr1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
nr2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0
|
||||
nrf,0,88,1209,378,192,24,77,666,0,12,682,3692,9422,6,48,2,1278,852,2,2,0,25,18,10,0,34,61,0,1007,892,12287,0,0,92,1313,35,0,2188,14,0,165,2047,459,0,0,608,0,594,100,94,45,1,0,1,3,2,0,3,2885,0,7024,104,520,450,44,41,197,331,11,4,2,71,322,66,2,417,402,3357,86,2,8373,12,10,826,145,24,104,30,89,166,65,8,112,20018,102,194,328,2324,276,1674,1101,8,202,19277,782,26,103
|
||||
nrj,0,0,12,24,6,0,0,10,0,0,26,116,514,0,22,0,60,52,0,0,0,0,0,0,0,0,0,0,37,33,290,0,0,0,23,0,0,26,0,0,1,22,6,0,0,0,0,2,0,9,0,0,0,0,0,0,0,0,70,0,471,0,20,12,2,0,0,10,0,0,0,0,8,0,0,14,23,418,0,0,336,0,0,110,0,4,4,0,0,2,4,0,10,960,2,24,2,46,12,38,68,0,0,746,6,2,0
|
||||
ns,0,2,9776,1507,1008,60,664,8207,0,53,1334,7988,19067,40,191,0,2002,11875,18,0,127,430,591,14,0,52,368,136,11767,8837,136428,9,0,897,6022,84,6,35472,205,2,3971,13528,2694,0,0,1616,84,34465,942,508,523,1,0,0,0,283,0,7,35127,6,11263,177,488,2131,455,141,1165,238,59,5,14,191,3883,808,0,762,5477,12825,329,10,28707,445,0,6068,12,106,162,37,331,168,101,20,847,46905,611,1469,945,8952,713,15951,2305,0,1623,77078,1935,109,236
|
||||
nsf,0,0,2154,244,133,12,200,1155,0,18,354,3160,4270,12,38,0,619,2745,16,0,8,81,188,2,0,11,98,6,1127,2001,29083,14,0,171,750,14,0,4007,18,0,1412,6064,377,0,0,1545,0,1372,2422,571,81,0,0,0,0,168,0,16,5898,4,2318,18,212,168,19,22,330,54,6,10,0,29,635,147,0,182,1437,1528,16,0,8657,20,0,1085,6,28,32,2,80,44,34,8,277,10028,114,113,89,1597,136,2928,550,4,454,17178,889,12,41
|
||||
nt,0,0,859,617,41,6,31,1665,0,19,241,2486,5768,1,39,0,685,1266,17,2,3,31,16,16,1,16,9,7,1040,2359,9595,1,0,33,234,9,2,1264,87,2,202,19854,613,0,0,92,1,839,114,963,35,0,0,0,8,235,0,4,3638,1,5588,80,60,69,54,3,154,23,5,0,1,25,340,12,0,94,352,3257,56,2,5591,46,1,817,0,2,14,2,55,58,14,0,15,18546,309,119,87,2031,133,4099,302,10,141,14425,182,1,27
|
||||
ntc,0,0,276,51,37,4,4,246,0,6,82,563,1472,2,7,0,89,245,0,0,4,50,10,0,0,0,9,4,428,350,7351,0,0,25,145,0,7,651,11,1,60,701,68,0,0,71,0,302,24,117,24,0,1,0,1,1,0,0,1048,0,673,6,22,66,9,2,39,15,2,0,0,8,51,5,0,49,37,314,0,0,1239,2,0,372,0,0,4,0,54,28,7,0,0,2226,51,30,26,248,30,1427,72,1,45,2831,969,0,9
|
||||
ntcb,0,0,18,12,0,0,0,9,0,0,1,78,93,0,3,0,5,30,0,0,0,0,0,0,0,0,0,0,10,26,150,0,0,0,0,0,0,2,1,0,0,114,3,0,0,1,0,267,10,48,1,1,0,0,0,0,0,0,105,0,87,1,0,12,3,0,7,1,0,0,0,0,3,2,0,4,6,38,1,0,113,0,0,27,0,0,0,0,1,1,0,0,0,173,7,2,1,10,3,66,10,0,0,264,14,0,1
|
||||
ntcf,0,0,3,2,0,0,0,2,0,0,1,11,8,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,6,0,0,1,0,0,0,0,0,0,0,0,0,17,0,0,0,13,0,3,1,0,0,19,0,0,0
|
||||
ntch,0,0,5,7,0,0,0,2,0,0,1,17,16,0,0,0,2,16,0,0,0,0,0,0,0,0,0,0,0,12,38,0,0,0,6,0,0,0,0,0,0,12,0,0,0,0,0,6,0,0,0,0,0,0,0,1,0,0,17,0,12,0,0,0,2,0,0,0,0,1,0,0,0,2,0,0,7,4,0,0,31,0,0,16,0,0,0,0,0,0,0,0,0,119,4,6,0,18,0,9,8,0,4,166,1,0,0
|
||||
nth,0,0,20,4,1,0,2,28,0,0,1,48,71,0,0,0,8,22,0,0,0,0,0,0,0,0,0,0,122,33,147,0,0,0,17,4,0,0,0,0,2,227,29,0,0,0,0,12,0,9,0,0,0,0,1,0,0,0,111,0,64,0,1,1,3,0,0,0,0,0,0,0,1,0,0,0,18,25,1,0,162,0,0,44,0,0,0,4,0,0,0,0,0,393,9,2,3,92,2,232,5,0,6,561,8,0,0
|
||||
nto,0,0,140,104,0,0,1,376,0,7,13,353,1128,0,10,0,40,60,0,0,0,0,3,0,0,0,1,0,163,401,1622,0,0,0,13,0,0,81,2,0,15,4357,31,0,0,2,0,246,3,315,0,0,0,0,0,127,0,0,613,0,947,14,1,2,1,1,31,2,0,0,0,0,24,1,0,2,22,694,9,0,637,0,0,170,0,0,0,0,3,3,0,0,0,3365,74,13,2,319,11,688,4,5,11,1598,11,3,0
|
||||
nts,0,0,9,4,0,0,0,8,0,0,2,15,10,0,0,0,18,32,0,0,0,0,0,0,0,0,0,0,7,35,56,0,0,0,0,0,0,0,0,0,0,62,17,0,0,0,0,7,1,0,0,0,0,0,0,0,0,0,42,0,10,0,0,3,0,0,1,0,0,0,0,0,0,0,0,1,10,4,0,0,42,0,0,12,0,0,0,0,0,1,0,0,1,45,1,5,0,22,0,6,3,0,2,183,0,0,0
|
||||
ntu,0,0,58,9,1,0,2,54,0,2,6,146,163,0,2,0,23,73,4,0,2,3,0,4,0,0,0,0,44,153,734,0,0,1,11,1,0,49,25,0,12,605,90,0,0,8,0,40,4,111,3,0,0,0,1,3,0,0,473,0,108,0,2,1,0,0,5,0,0,0,0,1,15,0,0,5,24,53,0,0,441,0,0,96,0,0,0,0,0,10,0,0,0,630,8,5,3,124,2,192,8,0,6,756,11,0,0
|
||||
nz,0,12,24035,5373,1952,390,1932,9126,0,212,7080,36660,71084,128,293,121,16259,39183,203,27,81,568,326,17,3,135,4577,58,18468,22693,200680,17,0,2898,13632,739,32,15466,217,66,1784,20244,9512,1,2,3137,128,14997,1282,1584,377,16,2,68,16,220,22,19,51931,39,35896,731,3720,4835,1393,1076,1945,4044,304,51,60,818,9161,268,14,1870,4262,13439,711,251,113835,1771,365,13215,381,757,11281,174,828,1168,743,479,2670,170418,1815,5197,2733,30492,3121,51361,10019,218,3540,488709,3690,2584,1430
|
||||
o,0,0,140,0,9,2,0,6,0,0,2,5,61,2,0,2,8,10,0,0,0,0,0,0,0,0,0,0,8,56,185,0,0,2,102,0,0,11,0,0,0,16,4,0,0,2,0,8,0,0,0,0,0,0,0,0,0,0,79,157,34,0,2,8,0,12,0,5,0,0,0,0,2,0,0,0,0,4,0,0,176,70,0,6,0,0,4,0,0,0,9,6,16,399,0,2,23,84,0,20,4,0,0,1209,16,2,1
|
||||
p,0,20,35935,6491,2559,264,1922,23649,0,257,612,3130,27028,65,424,26,278,26495,443,63,300,885,266,96,0,1427,50,120,41324,42536,315667,49,0,3604,7787,1581,70,23399,321,66,3608,22145,25563,0,0,6375,240,89275,22753,16559,2368,192,20,87,482,2510,79,888,91906,66,16631,274,1823,4415,3817,642,13614,52166,2619,1146,111,596,29850,7880,319,10944,33682,87586,1292,22,3544,1287,264,387,26,722,7654,82,0,300,8,1053,626,153652,1047,4836,2775,23386,2867,38809,645,8,1432,49330,6508,224,1372
|
||||
pba,0,0,1080,233,30,2,136,604,0,6,20,26,549,0,2,0,0,197,16,0,16,37,2,2,0,6,0,2,363,767,14174,6,0,446,219,20,7,393,0,0,48,348,537,0,0,108,2,1019,134,67,37,0,0,0,5,5,2,1,2737,0,259,0,12,187,24,2,508,5362,19,0,0,4,1263,68,0,732,329,326,22,0,20,14,0,0,0,4,0,0,0,16,0,6,2,3729,8,50,67,524,102,1218,0,0,44,1137,156,0,33
|
||||
pbei,0,0,1724,696,99,18,59,905,0,14,4,11,1754,2,29,0,2,243,34,10,6,71,0,0,2,42,6,2,848,1532,16221,12,0,236,362,116,0,963,0,0,385,1491,1208,0,0,239,4,1629,468,690,106,0,0,1,5,211,0,19,6148,6,444,0,6,455,78,22,142,1545,56,0,0,4,540,24,0,286,549,74,52,0,0,10,6,0,0,0,0,30,0,0,0,2,0,48100,116,681,1495,3100,384,3964,0,16,4,1222,123,0,115
|
||||
q,3,0,11895,540,850,153,389,6377,0,33,667,3116,9174,19,40,2,2801,8762,61,18,24,122,71,20,0,20,124,1,5876,2223,96638,8,0,1653,3530,114,21,4251,31,14,1382,6557,765,0,0,660,18,1854,454,243,241,4,0,1,1,24,0,8,11156,8,4814,88,511,7238,506,2519,920,391,459,4,0,52,943,24,2,163,913,1362,171,30,14402,178,66,631,14,60,469,44,29,115,64,126,320,25594,270,1103,1277,5226,778,6921,1071,33,676,87207,1033,226,425
|
||||
qt,2,0,3267,103,120,16,31,698,0,3,247,375,3952,8,8,4,621,6101,0,0,0,16,28,0,0,206,15,2,2008,1292,16994,0,0,278,1172,4,4,126,5,0,44,319,246,0,0,44,4,395,77,10,3,0,0,0,0,2,0,0,1743,2,1254,15,82,845,269,185,171,303,170,0,4,21,160,14,10,60,95,1096,251,12,9530,8,11,80,4,421,761,13,8,47,119,42,129,7839,61,740,861,1674,79,1134,221,2,147,20004,42,130,62
|
||||
qv,2,6,1215,159,153,5,19,422,0,0,82,551,1964,3,2,7,699,2106,2,1,12,5,2,4,0,0,55,0,333,262,9621,0,0,121,415,14,0,155,0,1,28,183,92,0,0,27,2,370,35,8,2,0,0,0,0,0,0,0,1246,8,1029,4,106,374,27,206,29,67,2,0,0,3,29,0,0,16,53,244,38,6,1509,27,6,107,3,18,207,0,0,0,8,62,30,5700,83,228,405,1455,139,1846,171,2,150,15258,207,28,26
|
||||
r,0,0,3865,816,74,56,386,1434,0,51,696,590,12380,14,66,0,64,1330,32,16,20,61,64,2,0,28,30,12,2823,2669,41195,0,0,380,385,88,4,3275,190,12,346,2907,396,0,0,107,26,828,225,199,27,3,0,0,2,52,0,0,7292,3,5479,232,398,423,195,72,1208,888,18,0,0,33,661,38,12,70,576,3948,41,4,4653,76,40,196,2,32,15,12,14,88,19,0,36,26209,204,749,347,3812,601,9608,587,8,665,9767,337,18,122
|
||||
rr,0,0,10495,3550,223,362,487,2774,0,176,6756,9076,92618,14,445,38,551,3811,6,0,0,80,238,0,0,15,110,68,3406,6715,32267,0,0,63,840,127,0,1399,7,0,175,987,190,0,0,51,0,472,16,44,1,0,0,1,1,7,1,1,11094,19,31084,2354,2037,2188,283,70,2133,3539,452,46,38,1830,2930,752,68,2311,5875,8623,64,74,70115,10,322,192,238,260,1077,224,1014,1870,343,6,115,145064,431,5406,456,15525,2992,82600,12986,37,3851,27101,192,1047,584
|
||||
ry,0,0,1145,50,74,8,123,138,0,0,106,180,3887,2,0,8,116,75,0,0,0,2,2,0,0,0,0,0,56,465,10234,0,0,173,192,18,0,106,1,0,62,197,10,0,0,0,0,28,14,9,2,0,0,0,0,0,0,0,706,4,828,28,14,405,147,146,17,110,49,0,0,8,148,0,0,24,105,39,44,0,760,47,6,6,8,8,205,14,0,58,20,0,12,4234,2,724,40,539,58,1110,710,0,262,6514,52,767,12
|
||||
rys,0,0,30,0,0,0,0,0,0,0,0,8,222,0,10,0,20,2,0,0,0,0,0,0,0,0,0,0,0,0,82,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,4,0,16,0,0,4,2,0,0,6,0,24,0,0,8,0,0,0,0,0,0,0,38,0,0,0,0,4,78,0,0,0,0,0,0,492,0,324,14,78,2,34,46,0,66,1094,0,88,0
|
||||
ryt,0,0,2,16,0,0,0,0,0,0,2,2,150,2,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,16,79,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,21,0,15,0,8,0,0,0,0,9,11,0,0,0,0,0,0,0,0,0,0,0,20,0,2,0,0,6,32,0,0,0,0,0,0,498,1,48,6,112,0,22,4,0,2,593,2,8,0
|
||||
ryv,0,0,510,126,7,4,45,126,0,2,200,146,2815,0,12,0,30,60,2,0,0,0,0,0,0,2,2,0,94,268,1286,0,0,25,65,2,0,53,0,0,10,36,58,0,0,16,0,90,23,11,3,0,0,0,0,3,0,0,840,0,1265,134,106,98,14,0,58,264,6,0,0,64,305,6,2,147,10,198,6,8,2300,14,0,8,0,90,232,8,0,0,0,0,0,12176,16,322,60,1050,118,1779,112,6,122,3558,6,390,20
|
||||
rz,0,18,14223,1000,354,189,735,3551,0,54,648,1921,14058,10,57,2,99,1459,199,34,10,239,239,33,0,4,326,58,4289,8734,112113,6,0,944,2392,146,0,9337,47,36,861,5228,682,0,0,199,18,1762,270,295,187,6,0,2,5,26,0,12,13328,0,7437,105,1169,4189,1644,612,225,879,76,0,2,1169,1085,50,8,142,1343,2737,118,14,5620,146,22,508,34,58,70,38,22,733,20,12,30,38751,312,771,723,5681,1090,10734,2233,42,2183,22277,689,82,272
|
||||
rzs,0,0,364,169,5,10,29,187,0,6,157,179,2046,2,2,0,20,3026,0,0,20,0,4,0,0,0,6,0,201,209,5814,0,0,50,228,2,0,337,0,0,103,238,31,0,0,6,0,19,4,16,2,1,0,0,0,4,0,0,1224,0,598,16,50,464,14,130,53,130,0,2,0,19,294,0,0,2,42,119,8,2,2474,6,2,68,2,32,102,6,6,26,2,0,22,5292,42,229,37,842,101,1072,406,12,370,3290,82,64,21
|
||||
rzt,0,0,32,18,0,2,0,16,0,0,34,6,335,0,0,0,0,14,0,0,0,0,0,0,0,0,0,0,27,73,247,0,0,0,12,0,0,16,0,0,10,40,62,0,0,4,0,23,1,2,0,0,0,0,0,0,0,1,93,0,70,2,12,0,0,0,26,314,2,0,0,0,14,0,0,0,12,36,0,2,274,0,0,0,0,0,0,0,0,2,0,0,0,348,4,73,2,28,2,16,38,0,26,1258,2,0,4
|
||||
rzv,0,2,3700,690,26,114,166,1351,0,60,3150,1088,18233,6,30,6,20,1794,32,10,4,28,6,0,0,1,20,86,14061,14248,18617,0,0,287,838,16,1,478,0,0,140,833,126,0,0,18,2,81,40,11,24,0,0,0,0,0,0,0,3518,6,4142,118,239,20204,672,1558,332,1026,110,10,0,161,1700,18,0,152,359,697,70,4,11224,40,40,55,137,8,82,6,6,144,88,0,167,16803,48,1407,162,1203,475,1271,17390,2,225,4844,22,219,170
|
||||
s,0,0,4473,720,123,82,342,1912,0,32,817,1219,9497,14,86,12,883,1782,32,46,7,131,145,10,0,4,23,6,2829,3450,30273,5,0,400,1017,42,8,3073,5,6,547,1519,340,0,0,94,4,622,52,83,34,2,2,0,3,8,1,1,6734,22,2453,116,558,392,31,72,324,212,68,14,0,32,835,41,0,344,472,404,126,154,17245,112,4,196,32,198,308,28,10,157,36,8,50,33859,254,1663,260,7317,645,8451,391,14,2558,31929,220,76,202
|
||||
t,2,0,8615,3058,339,144,267,3645,0,74,3226,4708,47234,16,60,0,2831,26263,12,4,12,112,234,13,2,286,34,19,11043,13256,63957,0,0,405,2098,121,2,2290,7,10,695,2301,4258,0,0,979,38,12624,2021,1721,387,42,4,4,6,377,4,58,18031,6,32456,237,2493,3227,1497,354,2850,8885,156,3,2,306,2526,263,138,1237,1669,64927,5230,725,37644,47,58,242,30,212,899,242,110,356,437,8,556,98318,952,10693,699,17346,851,10669,4481,16,3498,199393,1754,182,296
|
||||
tg,8,2,391,43,218,0,20,685,0,0,56,171,1313,14,4,0,142,521,0,0,6,0,4,2,0,4,26,0,442,495,5071,0,0,15,858,4,0,119,9,0,12,600,174,0,0,22,4,571,29,18,2,0,0,3,0,8,0,11,820,0,1186,3,72,222,58,114,280,173,12,0,0,0,1458,8,0,16,158,1327,364,0,739,16,0,16,0,0,372,20,0,8,0,6,27,3468,7,313,204,537,38,277,86,0,123,5684,34,15,8
|
||||
u,0,0,9,4,0,0,2,10,0,0,15,20,199,0,0,0,3,36,0,0,0,0,2,0,0,0,0,0,71,109,155,0,0,0,24,0,0,0,0,0,2,5,8,0,0,2,0,34,6,1,0,0,0,0,0,0,0,0,85,0,22,0,0,12,0,0,0,130,0,0,0,0,6,2,0,6,2,12,0,0,73,5,2,0,0,0,22,0,0,0,0,0,2,131,0,1,2,8,2,6,30,0,2,5288,0,8,0
|
||||
ude1,0,2,71242,5540,1743,347,9409,26807,0,170,6474,521,23371,53,60,52,442,7288,1161,347,328,1674,1570,321,0,258,59,288,30389,49168,763990,99,1,9496,4534,1334,168,13260,304,486,7021,28454,22668,0,0,5521,204,18696,5082,3369,1412,65,23,33,60,295,31,127,122007,60,3447,90,351,4090,1103,289,4264,6761,355,4,0,60,6734,184,2,4382,7428,10463,661,2,340,220,14,94,0,66,328,54,86,54,172,4,4,30578,276,483,1879,6150,2343,226791,20926,39,1503,113294,7770,1442,1980
|
||||
ude2,0,0,697,192,30,34,38,94,0,0,37,422,1931,2,2,2,140,355,0,0,2,0,0,0,0,0,16,6,176,222,2633,0,0,9,132,0,0,116,2,0,12,87,38,0,0,12,0,109,4,3,8,0,0,1,1,0,0,0,1327,0,3221,384,211,150,0,22,22,30,0,0,0,56,55,0,0,20,25,76,28,4,1127,10,4,50,0,16,12,14,0,8,16,0,7,23703,124,481,77,2259,144,2114,103,49,558,4197,19,12,16
|
||||
ude3,0,0,3479,736,34,945,155,45,0,20,130,113,5062,6,14,0,6,284,0,0,0,0,0,0,0,0,0,14,255,282,1127,0,0,8,63,74,0,10,0,0,14,9,76,0,0,5,0,29,4,1,2,0,0,0,0,0,0,0,922,8,423,68,14,42,10,12,24,146,20,0,0,116,225,20,0,100,12,92,38,0,89,0,8,58,0,139,0,18,0,0,6,18,16,2959,14,366,34,616,222,82,96,0,175,365,6,12,396
|
||||
udeng,0,0,4836,284,66,53,225,2620,0,28,30,180,3473,4,10,0,204,355,107,22,12,202,0,2,0,7,2,0,5899,6403,46679,0,0,311,525,22,1,550,27,0,355,709,107,0,0,7,2,477,70,99,33,0,0,0,1,23,0,0,5812,0,1165,22,78,208,213,59,569,1016,52,0,8,4,1033,38,0,289,339,397,44,0,574,2996,20,6,0,56,286,0,8,24,22,638,5,6669,125,202,109,995,226,5625,36,8,162,16588,30,4,42
|
||||
udh,0,0,12,10,0,4,2,2,0,0,20,20,348,0,0,0,18,44,0,0,0,0,0,0,0,0,0,0,3,7,83,0,0,0,18,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33,0,32,0,2,2,0,0,2,50,8,0,0,0,6,4,0,10,0,8,0,0,2,0,0,0,0,0,18,0,80,4,0,0,0,632,0,32,0,12,8,4,14,0,10,3798,0,6,0
|
||||
uguo,0,0,3099,71,24,12,41,296,0,6,56,34,547,0,10,0,54,596,0,0,0,32,12,2,0,30,0,32,1268,2983,4708,2,0,64,198,42,0,178,10,0,40,290,275,0,0,76,4,403,169,60,13,0,0,0,0,7,0,8,1277,2,185,8,10,461,34,16,271,714,187,2,56,32,478,30,0,357,145,799,4,0,1813,0,494,2,12,32,1620,0,28,0,22,216,22,1525,8,78,24,626,50,658,10,0,48,5129,86,106,6
|
||||
ule,2,0,17519,2644,333,221,843,5532,0,262,668,751,11461,2,97,62,1392,2849,51,0,22,261,78,20,0,96,22,94,23780,43252,62029,0,1,989,1818,417,19,3703,51,16,728,2579,5563,0,0,1220,46,8243,1620,1549,375,44,2,13,69,194,12,92,17501,18,4803,96,189,3762,509,222,2683,11304,1616,66,46,337,4747,288,4,3978,3436,8324,187,4,742,57,0,6,22,50,80,8,0,56,46,0,160,20661,298,4344,422,4928,1113,9773,60,0,282,93974,1303,1968,517
|
||||
ulian,0,0,133,0,14,0,0,56,0,0,8,25,156,0,2,0,0,190,2,0,0,6,0,0,0,0,0,0,76,181,1691,0,0,34,231,2,0,61,12,0,52,168,209,0,0,38,4,78,48,11,0,0,0,0,0,0,0,0,300,0,151,2,10,244,4,18,19,354,2,0,0,0,72,26,0,26,72,80,0,0,32,0,56,27,0,6,0,0,0,0,0,0,0,1450,3,86,22,297,18,94,0,0,6,180,47,0,4
|
||||
uls,0,0,27,38,0,16,0,6,0,4,129,35,1120,0,0,0,8,2,0,0,0,0,0,0,0,0,0,0,5,14,138,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,8,4,0,0,0,0,0,0,0,0,0,65,0,34,0,0,2,0,0,6,47,8,0,0,2,20,0,2,46,0,10,0,0,26,0,0,0,8,2,0,0,0,2,2,0,8,390,2,10,0,17,28,40,606,0,28,8270,0,32,6
|
||||
usuo,0,0,234,49,7,2,8,210,0,4,2,97,248,0,0,0,9,195,0,0,0,8,0,1,0,0,0,0,20,31,928,0,0,0,55,0,0,713,3,0,5,381,48,0,0,0,0,17,1,2,1,0,0,0,0,0,0,0,316,0,773,0,4,16,4,4,2,0,0,0,0,10,6,0,0,0,5,17,0,0,103,0,0,27,0,12,2,0,0,11,0,12,3,13825,5,67,974,496,44,701,5,0,0,585,4,2,0
|
||||
uyy,0,0,657,42,8,30,12,24,0,4,14,14,264,0,4,0,38,25,0,0,0,0,0,2,0,0,0,0,7,5,238,0,0,0,8,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,173,3,176,10,32,14,2,0,2,14,0,0,0,0,4,0,0,0,4,5,0,0,2280,97,2,0,2,5,146,0,0,0,6,0,0,1142,10,38,2,244,62,105,54,0,72,5361,0,66,54
|
||||
uzhe,0,0,1620,103,46,12,72,358,0,44,65,109,1021,0,48,0,28,239,0,0,6,14,4,0,0,1,4,12,890,2495,8416,0,0,206,217,16,0,155,0,6,102,208,422,0,0,140,8,499,96,35,30,1,0,0,0,6,0,0,2065,4,601,50,34,213,40,12,130,1848,116,0,0,120,509,25,0,427,265,334,34,2,484,74,0,50,0,24,124,0,0,0,8,0,0,3253,8,156,52,916,142,450,18,0,14,4550,60,165,226
|
||||
uzhi,0,0,2597,84,339,2,10,1154,0,0,30,162,1328,6,0,0,4,492,0,0,0,4,2,0,0,2,10,0,256,36,8573,0,0,12,4605,2,0,18,0,0,2,17,45,0,0,10,0,34,12,1,0,0,0,0,0,0,0,0,608,0,500,0,0,1201,968,1170,0,12,0,0,0,2,97,2,0,0,34,44,404,0,24,418,4,0,0,4,2,0,0,156,0,2,0,3803,4,4,697,600,48,186,0,0,44,1242,0,11,30
|
||||
v,2,60,147309,29519,5654,1576,11278,53886,0,1075,14755,41918,0,501,1046,170,21723,81831,1544,337,415,2319,826,179,24,1426,4913,592,112740,126799,976144,62,2,14513,50503,6758,401,44454,491,459,8654,52501,42087,0,0,10845,359,83224,21344,12252,3334,252,13,72,567,1548,59,652,229132,186,169347,7782,7870,23754,7631,4989,22939,112695,9164,543,256,3981,49431,4810,112,22468,29110,58627,2792,292,208119,4071,10260,6992,942,15074,257946,232,114,1139,166,25590,3296,364310,1356,53237,9992,33400,14516,505658,21547,304,18806,916011,11910,5714,3448
|
||||
vd,0,0,1165,151,50,0,150,129,0,6,66,227,787,8,0,2,215,216,4,0,0,10,0,4,0,6,37,0,540,973,2305,0,0,18,36,2,0,234,0,0,0,61,61,0,0,11,0,48,6,12,4,1,0,0,0,1,0,0,807,6,1783,38,34,44,9,18,28,34,0,0,2,0,44,2,0,48,52,245,8,42,1280,62,0,44,0,16,490,0,0,0,0,68,14,18730,90,248,84,4537,60,4334,59,2,55,3748,182,8,14
|
||||
vf,0,0,3837,740,202,72,189,1391,0,32,328,672,6343,6,27,6,471,2674,13,2,2,26,60,16,0,14,53,12,3172,7011,21325,12,0,244,1037,61,8,3080,12,0,74,320,766,0,0,184,6,5176,816,225,49,6,0,5,37,33,3,23,5746,10,2896,134,171,1021,526,123,429,2051,430,206,2,118,1057,644,2,763,1563,1502,203,20,14034,21,82,43,98,790,15290,4,6,34,16,12,52,30045,104,868,418,5329,432,4710,267,49,248,45012,324,621,198
|
||||
vg,0,28,2386,200,953,11,112,2653,0,18,223,875,2565,30,16,4,5971,1557,15,6,0,15,2,0,0,22,137,3,1935,1215,16119,0,0,1005,4248,25,2,763,4,6,337,1150,820,0,0,288,5,903,95,99,31,4,0,1,0,10,0,2,2223,6,1694,14,124,1142,206,282,80,344,102,0,2,13,767,30,0,65,152,1118,96,1,2457,117,169,324,12,38,1021,12,14,110,7,121,290,12064,24,1299,1518,1671,74,1352,273,0,551,18231,439,87,124
|
||||
vi,0,0,10217,1391,379,208,658,2657,0,26,3294,7884,23580,50,56,46,11862,27345,25,6,42,70,102,15,0,164,2377,46,12960,10272,81721,2,0,721,13763,227,47,2812,29,16,1259,3050,2379,0,0,433,10,4254,701,609,141,1,0,10,4,19,1,11,15755,36,22343,377,1242,1389,982,941,1000,3110,395,36,17,288,1560,112,18,801,2460,5229,271,149,59728,1508,926,3161,262,838,17315,36,84,144,219,1603,1599,63940,293,5447,3182,19740,919,18671,2064,33,938,244746,1049,2036,280
|
||||
vl,0,0,703,70,34,19,75,127,0,6,254,777,1767,0,4,4,1819,887,0,0,0,2,4,0,0,1,144,2,137,335,3466,0,0,52,320,2,2,124,0,0,13,97,128,0,0,18,0,68,27,3,9,0,0,0,0,0,0,0,960,0,679,86,86,75,2,31,38,324,22,2,0,22,97,6,0,86,47,117,18,2,22014,2964,8,456,78,28,1082,1,8,12,44,26,375,4908,24,200,107,633,273,1044,318,38,88,74299,26,556,22
|
||||
vn,0,0,30175,5543,592,239,4512,11067,0,186,5946,45686,47614,87,110,76,15931,48990,464,100,192,1027,396,71,0,101,2987,57,15187,18665,323130,0,0,1353,11916,1158,37,17979,92,47,1240,13778,3467,0,0,983,37,4365,1094,839,396,13,0,4,7,60,5,18,33887,8,25335,206,1305,5771,3118,3083,4129,10667,950,22,86,692,7392,456,8,2860,6836,5646,297,427,109801,1086,1026,11130,344,2311,26055,37,167,845,228,1543,2757,159940,1263,6954,2031,26540,2571,110924,6984,97,2185,516134,2272,2342,470
|
||||
vshi,2,0,12367,2201,268,353,641,4850,0,365,369,962,16164,20,380,0,14,1671,132,63,28,158,268,21,0,118,12,72,5505,23704,49958,12,2,1037,821,729,14,2648,59,29,949,5186,5195,0,0,1272,56,12666,2580,1753,539,54,2,16,65,226,30,161,18640,10,26002,608,1048,5205,351,69,2057,12276,3878,70,29,2134,3223,220,8,1688,2165,8602,176,4,222,14,26,24,12,26,6,38,2,8,382,4,0,39938,565,735,753,4736,3336,5086,40,0,1839,23719,868,180,595
|
||||
vx,0,0,164,99,2,0,0,60,0,0,0,20,77,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,9,230,0,0,0,0,0,0,0,0,0,0,29,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,157,0,14,0,0,2,0,0,2,0,0,0,0,0,2,0,0,0,6,0,0,0,6,0,0,0,0,0,120,0,0,0,0,0,0,2250,45,0,0,238,0,668,0,0,0,26,0,0,0
|
||||
vyou,0,0,11115,1812,245,52,731,2808,0,168,430,122,5907,5,30,2,52,789,104,6,12,294,24,8,0,12,98,66,16427,18736,45050,6,0,429,1076,524,29,648,25,12,448,2374,826,0,0,148,0,892,254,117,54,3,0,0,0,6,2,6,6766,0,1472,30,240,3736,79,216,543,1765,3780,2,46,254,1698,120,0,1295,400,732,40,0,4,49,37,4,0,1055,4762,0,0,0,24,0,65,14287,124,135,680,2745,448,4194,2,0,5,5168,226,54,127
|
||||
w,38,37,132500,46292,7960,2507,6208,60297,0,2483,237498,105192,434381,343,4623,1330,1607841,59938,1155,413,836,2676,1092,288,46,2086,1465,620,144729,96488,740146,144,0,20001,22082,5784,740,47862,813,693,10827,83322,200078,0,0,29285,1070,172005,30832,36055,6879,655,27,115,662,6682,257,1822,314667,1158,288149,8869,12330,18469,5453,1338,44251,190147,4740,240,161,6366,81405,5874,1236,62455,24142,173995,5734,68,53643,913,590,9875,120,1392,1770,2294,142,1485,404,170,1395,837492,9420,11277,11028,90304,27136,101656,30865,263,24501,381809,39280,974,5973
|
||||
x,0,0,1233,221,214,4,29,1606,0,2,508,2591,4295,16,10,1,2070,1683,44,3,2,143,51,32,0,2,926,0,341,361,20627,0,0,135,1919,1300,16,1056,0,27,835,1156,575,0,0,354,0,683,127,110,45,0,0,0,0,0,0,1,4204,2,2326,7,158,2683,115,2260,106,68,44,0,0,24,238,10,0,130,350,542,43,2,5655,27,10,996,8,38,111,6,39,37,61,0,21,9371,79,225,174,1634,98,2536,826,2,327,48484,758,57,50
|
||||
y,0,0,48,12,8,0,4,16,0,0,22,6,66,0,0,16,423,11,0,0,0,0,0,0,0,0,0,0,10,20,295,0,0,20,50,0,0,0,0,0,0,4,8,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,36,14,18,0,0,6,2,2,0,40,8,0,0,0,19,0,0,20,10,14,0,0,22,0,2,14,0,0,24,2,0,0,0,0,2,200,0,6,10,23,8,6,12,0,8,37666,10,42,0
|
||||
z,0,0,850,24,12,4,102,252,0,0,81,215,762,0,6,2,245,173,2,0,0,4,2,0,0,0,24,2,360,1031,6081,0,0,164,158,12,4,107,0,0,119,389,42,0,0,20,2,131,2,2,0,0,0,0,0,0,0,0,1096,0,637,36,38,41,66,22,8,54,4,0,0,5,31,0,2,24,64,257,4,0,7051,1219,2,21,16,58,99,0,2,0,0,12,55,3961,11,111,41,959,138,474,427,0,86,7529,48,94,126
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,310 @@
|
||||
①大蒜蒸西瓜
|
||||
①大青叶粥
|
||||
①山慈姑菜心肉片
|
||||
①鲤鱼赤小豆汤
|
||||
①龙眼肉粥
|
||||
②柴胡当归蛋汤
|
||||
②红参龙眼肉汤
|
||||
②菊花鱼汤
|
||||
②菠菜血肝汤
|
||||
②葱白黑鱼
|
||||
②赤豆红枣汤
|
||||
②鸡骨草煲田螺
|
||||
②麦冬百合汤
|
||||
③天麻地黄鸭
|
||||
③山药粥
|
||||
③川贝生梨炖鸽子
|
||||
③百合莲子藕
|
||||
③赤豆红枣粥
|
||||
③黄精炖瘦肉
|
||||
③黄芪小麦粥
|
||||
③龙眼汽锅鸡
|
||||
④冬玉汤
|
||||
④百合汤
|
||||
④竹沥粥
|
||||
④解暑凤脯
|
||||
⑤椰子汁
|
||||
⑤芪杞炖乳鸽
|
||||
⑤花生衣红枣汤
|
||||
⑤蘑菇大枣汤
|
||||
⑤金银花露
|
||||
⑥小白菜苡仁粥
|
||||
⑥山药扁豆粥
|
||||
⑥柴胡小米粥
|
||||
⑦荷叶冬瓜汤
|
||||
⑦葡萄粥
|
||||
万寿菊糖水
|
||||
中药保留灌肠
|
||||
乌雌鸡粥
|
||||
二精丸
|
||||
二花茶①
|
||||
二豆糯米粥
|
||||
人参炖猪蹄
|
||||
体疗法
|
||||
体育法
|
||||
佩药法
|
||||
健脾益胃散
|
||||
健脾茶汤
|
||||
八宝粥
|
||||
八段锦
|
||||
冬瓜皮汤
|
||||
冬瓜鲤鱼汤
|
||||
冰糖杨梅
|
||||
利水化湿法
|
||||
刮背法
|
||||
刺络拔罐法
|
||||
南瓜炖牛肉
|
||||
南瓜荞麦面
|
||||
参枣米饭
|
||||
参苓白术散
|
||||
双花粥
|
||||
发汗豉粥
|
||||
呼气提肛法
|
||||
四君子汤
|
||||
回酥狮子头
|
||||
地黄汁
|
||||
地黄饮②
|
||||
地黄饮方
|
||||
坐浴法
|
||||
壮阳狗肉汤(《大众药膳》)
|
||||
声电针法
|
||||
壶熨法
|
||||
外敷法
|
||||
外治法
|
||||
大发茶
|
||||
大枣方①
|
||||
大田螺汤
|
||||
天花粉粥
|
||||
天麻什锦饭
|
||||
寒鸦
|
||||
导引法
|
||||
小米麦麸饼
|
||||
山药地黄炖猪胰
|
||||
山药扁豆粥②
|
||||
山药粥
|
||||
山药粥②
|
||||
山药粥⑦
|
||||
山药麦片粥
|
||||
川贝冰糖粥
|
||||
平肝熄风法
|
||||
当归生姜羊肉汤
|
||||
心理疗法
|
||||
情志法
|
||||
手抓羊肉
|
||||
抛空
|
||||
护理法
|
||||
抬臀法
|
||||
拍击法
|
||||
拔罐法
|
||||
拔罐疗法
|
||||
按摩法
|
||||
按脊法
|
||||
挑治法
|
||||
推拿或理疗法
|
||||
推拿按摩法
|
||||
推拿法
|
||||
提刮法
|
||||
提肛运动法
|
||||
摩擦腰肾法
|
||||
摩腰
|
||||
擦涂法
|
||||
放风粥
|
||||
敷脐法
|
||||
无花果粥
|
||||
明矾拌橄榄
|
||||
春笋炒枸杞
|
||||
杂粮
|
||||
杏仁粥⑥
|
||||
杏仁粥⑦
|
||||
杏仁粥方
|
||||
杏仁肉
|
||||
杞叶羊肾粥
|
||||
杞子桂圆饭
|
||||
板栗炖菜心
|
||||
枸杞炖兔肉
|
||||
柿霜糖
|
||||
核桃肉甜杏仁蜂蜜咳嗽方
|
||||
桂圆肉粥
|
||||
桂枝甘草汤加肉桂
|
||||
桑椹
|
||||
梅花点舌丹
|
||||
梨膏糖
|
||||
梳耳法
|
||||
榆皮粥②
|
||||
橄榄萝卜饮
|
||||
气雾吸入法
|
||||
水针法
|
||||
沐浴法
|
||||
油柑子汤
|
||||
泡脚
|
||||
注射浸润法
|
||||
泽泻粥①
|
||||
洗法
|
||||
洗足法
|
||||
济生肾气丸
|
||||
海蜇萝卜丝
|
||||
淡藕粉粥
|
||||
淮山圆肉炖水鱼
|
||||
淮山百合鳗鱼
|
||||
淮山粥
|
||||
清咽茶
|
||||
清咽薄荷糖
|
||||
清炖鹌鹑
|
||||
清热法
|
||||
清脑羹
|
||||
清蒸茶鲫鱼(《活人心统》)
|
||||
清蒸鲥鱼
|
||||
湖莲丸
|
||||
滴眼疗法
|
||||
激光针法
|
||||
灌肠法
|
||||
火腿冬菇小白菜
|
||||
灯芯花鲫鱼粥
|
||||
烩生鸡丝
|
||||
热敷法
|
||||
热熨法
|
||||
熊肉腌方
|
||||
熨引法
|
||||
燕窝
|
||||
独脚金炖猴子肉
|
||||
猪肝炒菠菜
|
||||
猪胰淡菜汤
|
||||
猪颐酒方
|
||||
玉竹粥
|
||||
玉米茶
|
||||
玫瑰露
|
||||
理中丸
|
||||
生地煲蟹汤
|
||||
田鸡饭
|
||||
电针法
|
||||
电针疗法
|
||||
番石榴蜜糖水
|
||||
皮肤针疗法
|
||||
盒熨法
|
||||
睡眠时间合理
|
||||
砂锅梅香鸡
|
||||
磁场敷贴法
|
||||
磁疗法
|
||||
磁疗药离子导入法
|
||||
穴位注射法
|
||||
穴位注射疗法
|
||||
穴位电极法
|
||||
竹叶心粥
|
||||
糖醋带鱼
|
||||
素炒菠菜
|
||||
素烧冬瓜②
|
||||
素焖扁豆
|
||||
红花蕺菜汤
|
||||
经络导平法
|
||||
绿豆羹
|
||||
老年慢性支气管炎糖
|
||||
耐寒法
|
||||
耳穴
|
||||
耳穴法
|
||||
耳穴贴膏法
|
||||
肉末口蘑烧豆腐
|
||||
肉末炒蚕豆
|
||||
肉羹方
|
||||
肾气丸
|
||||
胸穴指压法
|
||||
腕踝针疗法
|
||||
膏摩法
|
||||
艾灸法
|
||||
芝麻茶
|
||||
芡实白果粥
|
||||
花生仁拌芹菜
|
||||
花生红枣粥
|
||||
花生蚕豆汤
|
||||
花生赤豆茅根汤
|
||||
花粉绿豆糕
|
||||
花粉茶
|
||||
芹菜粥
|
||||
苍耳叶羹
|
||||
苏煎方
|
||||
茵陈粥②
|
||||
荠菜粥
|
||||
药浴法
|
||||
药熨法
|
||||
药物法
|
||||
药离子透入法
|
||||
药罐法
|
||||
荷叶肉
|
||||
荸荠汁
|
||||
荸荠粥
|
||||
莲子粥
|
||||
莲子肚丝
|
||||
莲子芡实粥③
|
||||
菊花龙井茶
|
||||
萝卜块炖牛肉
|
||||
萝卜大枣生姜蜜汁饮
|
||||
萝卜汁煮麦芽糖
|
||||
萝卜粥
|
||||
萝卜麦芽糖咳嗽方
|
||||
葱豉粥①
|
||||
蒲公英粥③
|
||||
蒸汽吸入法
|
||||
蔊菜粥
|
||||
薄荷粥②
|
||||
薄荷糖(《简便单方》)
|
||||
薄荷茶②
|
||||
薏苡仁粥
|
||||
蘑菇汤
|
||||
蚕豆炖牛肉
|
||||
蜂房地丁汤
|
||||
蜂蜜萝卜汁
|
||||
蜜饯橘皮
|
||||
蜜饯雪梨
|
||||
补肺汤
|
||||
补阳法
|
||||
西瓜番茄汁
|
||||
西红柿炒鸡蛋
|
||||
谷糠烧鲫鱼
|
||||
豉薤汤
|
||||
起居法
|
||||
超声雾化吸入法
|
||||
醋煎豆腐
|
||||
野狼喉嗉皮
|
||||
金匮薯蓣丸
|
||||
针灸法
|
||||
银花粥
|
||||
银花薄荷芦根汤
|
||||
阴道纳药法
|
||||
雪梨汁
|
||||
雾化吸入法
|
||||
雾化法
|
||||
青果粥
|
||||
青梅酒②
|
||||
青蒜炒猪心
|
||||
青龙白虎汤
|
||||
静脉注射法
|
||||
面针疗法
|
||||
音频电疗法
|
||||
食物敷贴疗法
|
||||
食物点滴疗法
|
||||
食疗法
|
||||
首乌桑椹面
|
||||
香佩疗法
|
||||
马勃糖
|
||||
马勃糖(《袖珍方》)
|
||||
马齿苋荠菜粥
|
||||
鱼腥草煲猪肺
|
||||
鲍片鹑蛋
|
||||
鲜梨饮
|
||||
鲜羊奶
|
||||
鲜茅根粥
|
||||
鲤鱼山楂鸡蛋汤
|
||||
鲫鱼粥
|
||||
鸡丝烩豌豆
|
||||
鸡内金山药粥
|
||||
鸡片烩蚕豆
|
||||
鸭肉芡实扁豆汤
|
||||
鸭跖薄荷汁
|
||||
鸽肉山玉饭
|
||||
麦芽茶
|
||||
麻桃蜜糕
|
||||
麻油核桃蜂蜜饮
|
||||
黄瓜叶
|
||||
黄瓜饮
|
||||
黄芪山药粥
|
||||
黄芪童子鸡
|
||||
黑木耳
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,17 @@
|
||||
,A,B,C,D,F,G,I,J,K,L,M,P,S,W,X,Z
|
||||
A,0,0,19945,883,2013,58781,3290,1582,19254,1422,282,944,0,0,0,0
|
||||
B,3013,0,0,0,0,0,0,0,0,0,0,0,0,0,0,125708
|
||||
C,0,0,25949,57230,142,1908,850,1603,53,169,260,834,0,144,0,0
|
||||
D,0,109511,4389,6473,135,1018,476,229,28,105,177,120,0,59,4586,0
|
||||
F,0,0,971,2666,138,127,92,163,5,7,5,87,0,48,0,0
|
||||
G,0,0,24497,42962,1283,5178,3104,2782,182,1415,756,1173,0,140,0,0
|
||||
I,0,0,2515,5556,34,270,179,181,3,39,56,210,0,11,0,0
|
||||
J,0,0,2002,4973,69,96,85,707,4,95,47,535,0,23,0,0
|
||||
K,0,19920,1162,2036,13,184,64,57,16,3,32,25,0,0,1238,0
|
||||
L,0,0,1289,1476,19,68,58,481,1,18,10,289,0,0,0,0
|
||||
M,1000,0,569,758,1,7,11,128,0,76,86,143,0,1,0,0
|
||||
P,0,0,1647,1989,70,54,200,425,0,67,29,433,0,9,0,0
|
||||
S,9509,0,2911,104,278,12704,476,212,4031,210,23,86,0,0,0,1131650
|
||||
W,0,0,123,150,23,105,11,9,0,4,0,10,0,0,0,0
|
||||
X,0,0,1173,50,91,2972,158,77,1173,79,17,34,0,0,0,0
|
||||
Z,95874,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19796133
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,16 @@
|
||||
,A,B,C,D,E,F,G,K,L,M,S,U,V,X,Z
|
||||
A,20637728,0,0,0,0,0,0,195129,0,0,0,453,0,0,0
|
||||
B,0,1,155650,0,94221,0,2964,0,19,0,0,24,0,0,43757
|
||||
C,0,0,0,155393,0,0,0,0,0,0,0,47,461,0,0
|
||||
D,2409,3427,0,0,0,0,0,0,141568,16990,0,0,0,63,0
|
||||
E,1491,2198,0,0,1000,0,0,0,81654,9104,0,4,0,45,0
|
||||
F,0,20,0,0,0,0,0,0,0,0,0,0,0,0,0
|
||||
G,6,0,0,1000,0,0,0,0,2907,1000,0,0,0,0,0
|
||||
K,0,217510,0,0,0,18,0,0,0,0,0,0,0,7506,11
|
||||
L,256487,1000,0,0,0,0,0,0,0,0,0,7,0,0,0
|
||||
M,0,29629,0,0,0,0,0,0,0,0,0,0,0,526,0
|
||||
S,1097701,43031,0,0,1000,2,0,21858,0,0,0,32,0,928,1
|
||||
U,0,0,251,0,275,0,0,0,0,0,0,0,0,0,46
|
||||
V,447,13,0,0,0,1,0,19,0,0,0,0,0,0,0
|
||||
X,0,0,0,9064,0,0,0,0,0,0,0,5,18,0,0
|
||||
Z,594,807,0,0,0,0,0,0,38385,4010,0,0,0,19,0
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -0,0 +1,11 @@
|
||||
,A,B,C,D,E,G,H,S,X,Z
|
||||
A,0,0,128976,0,0,118988,0,0,0,2579
|
||||
B,6960,0,630,0,0,762,0,0,0,223548
|
||||
C,0,0,0,57172,0,0,118369,0,0,0
|
||||
D,0,0,0,0,1931,0,55241,0,0,0
|
||||
E,0,0,0,0,0,0,1931,0,0,0
|
||||
G,97,109734,4096,0,0,3354,1766,0,15109,30172
|
||||
H,164,118756,9008,0,0,2843,0,0,11253,35283
|
||||
S,19157,0,1694,0,0,2342,0,0,0,1116397
|
||||
X,0,0,10652,0,0,15788,0,0,0,349
|
||||
Z,200190,4732,20485,0,0,20251,0,0,427,19965543
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,87 @@
|
||||
僞=偽
|
||||
兌=兑
|
||||
冑=胄
|
||||
冗=宂
|
||||
勳=勛
|
||||
南涌=南涌
|
||||
叄=叁
|
||||
啓=啟
|
||||
嘆=歎
|
||||
囪=囱
|
||||
大欖涌=大欖涌
|
||||
大涌=大涌
|
||||
妝=粧
|
||||
媼=媪
|
||||
嫋=裊
|
||||
嫺=嫻
|
||||
嬀=媯
|
||||
岩=巖
|
||||
悅=悦
|
||||
慍=愠
|
||||
戶=户
|
||||
挩=捝
|
||||
搵=揾
|
||||
擡=抬
|
||||
敓=敚
|
||||
敘=敍
|
||||
東涌=東涌
|
||||
柺=枴
|
||||
梲=棁
|
||||
棱=稜
|
||||
榲=榅
|
||||
檯=枱
|
||||
氳=氲
|
||||
沙河涌=沙河涌
|
||||
沙魚涌=沙魚涌
|
||||
河涌=河涌
|
||||
泥涌=泥涌
|
||||
涌=湧
|
||||
涌尾=涌尾
|
||||
涗=涚
|
||||
深涌=深涌
|
||||
溪涌=溪涌
|
||||
溫=温
|
||||
溼=濕
|
||||
潙=溈
|
||||
潨=潀
|
||||
熅=煴
|
||||
爲=為
|
||||
痹=痺
|
||||
癡=痴
|
||||
皁=皂
|
||||
稅=税
|
||||
竈=灶
|
||||
糉=粽
|
||||
縕=緼
|
||||
繮=韁
|
||||
纔=才
|
||||
脫=脱
|
||||
膃=腽
|
||||
臥=卧
|
||||
臺=台
|
||||
菸=煙
|
||||
葵涌=葵涌
|
||||
蒕=蒀
|
||||
蔥=葱
|
||||
蔿=蒍
|
||||
蘊=藴
|
||||
蛻=蜕
|
||||
蠔涌=蠔涌
|
||||
衆=眾
|
||||
衛=衞
|
||||
西涌=西涌
|
||||
覈=核
|
||||
說=説
|
||||
贗=贋
|
||||
踊=踴
|
||||
轀=輼
|
||||
醞=醖
|
||||
鉢=缽
|
||||
鉤=鈎
|
||||
銳=鋭
|
||||
閱=閲
|
||||
鰂魚涌=鰂魚涌
|
||||
鰮=鰛
|
||||
鱉=鼈
|
||||
麻涌=麻涌
|
||||
黎涌=黎涌
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -0,0 +1,516 @@
|
||||
PN結=PN接面
|
||||
SQL注入=SQL隱碼攻擊
|
||||
SQL注入攻擊=SQL隱碼攻擊
|
||||
三極管=三極體
|
||||
下拉列表=下拉選單
|
||||
並行計算=平行計算
|
||||
中間件=中介軟體
|
||||
串口=串列埠
|
||||
串行=序列
|
||||
串行端口=串列埠
|
||||
主引導記錄=主開機記錄
|
||||
主板=主機板
|
||||
乍得=查德
|
||||
也門=葉門
|
||||
二極管=二極體
|
||||
互聯網=網際網路
|
||||
交互=互動
|
||||
交互式=互動式
|
||||
人工智能=人工智慧
|
||||
仙童半導體=快捷半導體
|
||||
代碼=程式碼
|
||||
代碼頁=內碼表
|
||||
以太網=乙太網
|
||||
任務欄=工作列
|
||||
任務管理器=工作管理員
|
||||
仿真=模擬
|
||||
伯利茲=貝里斯
|
||||
位圖=點陣圖
|
||||
低級=低階
|
||||
佛得角=維德角
|
||||
便攜式=行動式
|
||||
保存=儲存
|
||||
信噪比=訊雜比
|
||||
信息=資訊
|
||||
信息安全=資訊保安
|
||||
信息技術=資訊科技
|
||||
信息論=資訊理論
|
||||
信號=訊號
|
||||
信道=通道
|
||||
傅里葉=傅立葉
|
||||
傳感=感測
|
||||
像素=畫素
|
||||
僞=偽
|
||||
僞代碼=虛擬碼
|
||||
優先級=優先順序
|
||||
元數據=後設資料
|
||||
元編程=超程式設計
|
||||
元音=母音
|
||||
兇=凶
|
||||
光標=游標
|
||||
光盤=光碟
|
||||
光驅=光碟機
|
||||
克羅地亞=克羅埃西亞
|
||||
免提=擴音
|
||||
內存=記憶體
|
||||
內核=核心
|
||||
內置=內建
|
||||
內聯函數=行內函數
|
||||
全局=全域性
|
||||
全角=全形
|
||||
兼容=相容
|
||||
冒泡排序=氣泡排序
|
||||
出租車=計程車
|
||||
函數=函式
|
||||
函數式編程=函數語言程式設計
|
||||
刀片服務器=刀鋒伺服器
|
||||
分佈式=分散式
|
||||
分區=分割槽
|
||||
分辨率=解析度
|
||||
列支敦士登=列支敦斯登
|
||||
利比里亞=賴比瑞亞
|
||||
刷新=重新整理
|
||||
刻錄=燒錄
|
||||
前綴=字首
|
||||
剪切=剪下
|
||||
剪貼板=剪貼簿
|
||||
創建=建立
|
||||
加納=迦納
|
||||
加蓬=加彭
|
||||
加載=載入
|
||||
半角=半形
|
||||
博客=部落格
|
||||
博茨瓦納=波札那
|
||||
卡塔爾=卡達
|
||||
危地馬拉=瓜地馬拉
|
||||
卸載=解除安裝
|
||||
厄瓜多爾=厄瓜多
|
||||
厄立特里亞=厄利垂亞
|
||||
原代碼=原始碼
|
||||
參數=引數
|
||||
參數表=參數列
|
||||
句柄=控制代碼
|
||||
可視化=視覺化
|
||||
吉布堤=吉布地
|
||||
呼出=撥出
|
||||
呼叫轉移=來電轉駁
|
||||
命令式編程=指令式程式設計
|
||||
命令行=命令列
|
||||
命名空間=名稱空間
|
||||
咖喱=咖哩
|
||||
哈希=雜湊
|
||||
哈薩克斯坦=哈薩克
|
||||
哥斯達黎加=哥斯大黎加
|
||||
啓=啟
|
||||
單片機=微控制器
|
||||
回調=回撥
|
||||
固件=韌體
|
||||
圖像=影象
|
||||
圖庫=相簿
|
||||
圖標=圖示
|
||||
圖瓦盧=吐瓦魯
|
||||
土庫曼斯坦=土庫曼
|
||||
在線=線上
|
||||
圭亞那=蓋亞那
|
||||
地址=地址
|
||||
地址欄=位址列
|
||||
坦桑尼亞=坦尚尼亞
|
||||
埃塞俄比亞=衣索比亞
|
||||
城域網=都會網路
|
||||
基里巴斯=吉里巴斯
|
||||
堆棧=堆疊
|
||||
場效應管=場效電晶體
|
||||
塔吉克斯坦=塔吉克
|
||||
塞拉利昂=獅子山
|
||||
塞浦路斯=塞普勒斯
|
||||
塞舌爾=塞席爾
|
||||
壁紙=桌布
|
||||
外置=外接
|
||||
外鍵=外來鍵
|
||||
多任務=多工
|
||||
多態=多型
|
||||
多米尼加=多明尼加
|
||||
多線程=多執行緒
|
||||
奔馳=賓士
|
||||
奶酪=乳酪
|
||||
嫺=嫻
|
||||
嬀=媯
|
||||
字庫=字型檔
|
||||
字段=欄位
|
||||
字符=字元
|
||||
字符串=字串
|
||||
字符集=字符集
|
||||
字節=位元組
|
||||
字體=字型
|
||||
存儲=儲存
|
||||
存盤=存檔
|
||||
安提瓜和巴布達=安地卡及巴布達
|
||||
宏=巨集
|
||||
宏內核=單核心
|
||||
寄存器=暫存器
|
||||
密鑰=金鑰
|
||||
實例=例項
|
||||
實模式=真實模式
|
||||
審覈=稽覈
|
||||
寫保護=防寫
|
||||
寬帶=寬頻
|
||||
尋址=定址
|
||||
對話框=對話方塊
|
||||
對象=物件
|
||||
導入=匯入
|
||||
導出=匯出
|
||||
尼日利亞=奈及利亞
|
||||
尼日爾=尼日
|
||||
局域網=區域網
|
||||
局部=區域性
|
||||
屏幕=螢幕
|
||||
屏蔽=遮蔽
|
||||
岡比亞=甘比亞
|
||||
峯=峰
|
||||
嵌套=巢狀
|
||||
巴巴多斯=巴貝多
|
||||
巴布亞新幾內亞=巴布亞紐幾內亞
|
||||
布基納法索=布吉納法索
|
||||
布爾=布林
|
||||
布隆迪=蒲隆地
|
||||
帕勞=帛琉
|
||||
帶寬=頻寬
|
||||
幺=么
|
||||
幾內亞比紹=幾內亞比索
|
||||
引導程序=載入程式
|
||||
彙編=彙編
|
||||
彙編語言=組合語言
|
||||
後綴=字尾
|
||||
循環=迴圈
|
||||
性價比=價效比
|
||||
性能=效能
|
||||
意大利=義大利
|
||||
截取=擷取
|
||||
截屏=截圖
|
||||
所羅門羣島=索羅門羣島
|
||||
打印=列印
|
||||
打印機=印表機
|
||||
打開=開啟
|
||||
拋出=丟擲
|
||||
持久性=永續性
|
||||
指針=指標
|
||||
捲積=摺積
|
||||
掃描儀=掃描器
|
||||
掛斷=結束通話
|
||||
採樣=取樣
|
||||
採樣率=取樣率
|
||||
接口=介面
|
||||
控件=控制元件
|
||||
插件=外掛
|
||||
搜索=搜尋
|
||||
操作數=運算元
|
||||
操作系統=作業系統
|
||||
擡=抬
|
||||
擴展=擴充套件
|
||||
擴展名=副檔名
|
||||
支持=支援
|
||||
支持者=支持者
|
||||
散列=雜湊
|
||||
數字=數字
|
||||
數字印刷=數位印刷
|
||||
數字電子=數位電子
|
||||
數字電路=數位電路
|
||||
數據=資料
|
||||
數據倉庫=資料倉儲
|
||||
數據報=資料包
|
||||
數據庫=資料庫
|
||||
數據挖掘=資料探勘
|
||||
數據源=資料來源
|
||||
數組=陣列
|
||||
文件=檔案
|
||||
文件名=檔名
|
||||
文件夾=資料夾
|
||||
文件擴展名=副檔名
|
||||
文字處理=文書處理
|
||||
文本=文字
|
||||
文檔=文件
|
||||
文萊=汶萊
|
||||
斯威士蘭=史瓦濟蘭
|
||||
斯洛文尼亞=斯洛維尼亞
|
||||
新西蘭=紐西蘭
|
||||
方便麵=速食麵
|
||||
映射=對映
|
||||
時分多址=分時多重進接
|
||||
時分複用=分時多工
|
||||
時鐘頻率=時脈頻率
|
||||
晶閘管=閘流體
|
||||
晶體管=電晶體
|
||||
智能=智慧
|
||||
曬=晒
|
||||
最終用戶=終端使用者
|
||||
有損壓縮=有失真壓縮
|
||||
服務器=伺服器
|
||||
本地代碼=原生代碼
|
||||
析構函數=解構函式
|
||||
枚舉=列舉
|
||||
查找=查詢
|
||||
查看=檢視
|
||||
格林納達=格瑞那達
|
||||
格魯吉亞=喬治亞
|
||||
桌面型=桌上型
|
||||
棱=稜
|
||||
構造函數=建構函式
|
||||
標識符=識別符號
|
||||
模塊=模組
|
||||
模擬=模擬
|
||||
模擬電子=類比電子
|
||||
模擬電路=類比電路
|
||||
檐=簷
|
||||
權限=許可權
|
||||
歐拉=尤拉
|
||||
正則表達式=正規表示式
|
||||
死機=宕機
|
||||
殺毒=防毒
|
||||
比特=位元
|
||||
比特幣=比特幣
|
||||
比特率=位元率
|
||||
毛里塔尼亞=茅利塔尼亞
|
||||
毛里求斯=模里西斯
|
||||
污=汙
|
||||
沙特阿拉伯=沙烏地阿拉伯
|
||||
泄=洩
|
||||
波分複用=波長分波多工
|
||||
波斯尼亞黑塞哥維那=波士尼亞赫塞哥維納
|
||||
津巴布韋=辛巴威
|
||||
洪都拉斯=宏都拉斯
|
||||
消息=訊息
|
||||
涌=湧
|
||||
涼菜=冷盤
|
||||
添加=新增
|
||||
源代碼=原始碼
|
||||
源文件=原始檔
|
||||
源碼=原始碼
|
||||
溢出=溢位
|
||||
溫納圖萬=那杜
|
||||
演示文稿=簡報
|
||||
潙=溈
|
||||
潨=潀
|
||||
激光=鐳射
|
||||
激活=啟用
|
||||
烏茲別克斯坦=烏茲別克
|
||||
無損壓縮=無失真壓縮
|
||||
爲=為
|
||||
牀=床
|
||||
物理內存=實體記憶體
|
||||
物理地址=實體地址
|
||||
特立尼達和多巴哥=千里達及托巴哥
|
||||
狀態欄=狀態列
|
||||
瑙魯=諾魯
|
||||
瓦努阿圖=萬那杜
|
||||
用戶=使用者
|
||||
用戶名=使用者名稱
|
||||
界面=介面
|
||||
異步=非同步
|
||||
痹=痺
|
||||
癡=痴
|
||||
登錄=登入
|
||||
發佈=釋出
|
||||
發送=傳送
|
||||
皮膚=面板
|
||||
盤片=碟片
|
||||
盤符=碟符
|
||||
盧旺達=盧安達
|
||||
目標代碼=目的碼
|
||||
相冊=相簿
|
||||
着=著
|
||||
睾=睪
|
||||
矢量=向量
|
||||
知識產權=智慧財產權
|
||||
短信=簡訊
|
||||
砹=砈
|
||||
硅=矽
|
||||
硬件=硬體
|
||||
硬盤=硬碟
|
||||
碼分多址=分碼多重進接
|
||||
碼率=位元速率
|
||||
磁盤=磁碟
|
||||
磁道=磁軌
|
||||
社區=社羣
|
||||
科摩羅=葛摩
|
||||
科特迪瓦=象牙海岸
|
||||
移動硬盤=行動硬碟
|
||||
移動網絡=行動網路
|
||||
移動資料=行動資料
|
||||
移動通信=行動通訊
|
||||
移動電話=行動電話
|
||||
程序=程式
|
||||
程序員=程式設計師
|
||||
空分多址=分空間多重進接
|
||||
空分複用=空間多工
|
||||
突尼斯=突尼西亞
|
||||
窗口=視窗
|
||||
竈=灶
|
||||
端口=埠
|
||||
筆記本電腦=膝上型電腦
|
||||
算子=運算元
|
||||
算法=演算法
|
||||
範式=正規化
|
||||
粘貼=貼上
|
||||
糉=粽
|
||||
紅心大戰=傷心小棧
|
||||
納米=奈米
|
||||
索馬里=索馬利亞
|
||||
組件=元件
|
||||
綁定=繫結
|
||||
網上鄰居=網路上的芳鄰
|
||||
網卡=網絡卡
|
||||
網吧=網咖
|
||||
網絡=網路
|
||||
網關=閘道器
|
||||
線程=執行緒
|
||||
編程=程式設計
|
||||
編程語言=程式語言
|
||||
緩存=快取
|
||||
縮略圖=縮圖
|
||||
縮進=縮排
|
||||
總線=匯流排
|
||||
繮=韁
|
||||
纔=才
|
||||
缺省=預設
|
||||
羣=群
|
||||
老撾=寮國
|
||||
聖基茨和尼維斯=聖克里斯多福及尼維斯
|
||||
聖文森特和格林納丁斯=聖文森及格瑞那丁
|
||||
聖盧西亞=聖露西亞
|
||||
聖馬力諾=聖馬利諾
|
||||
聯繫=聯絡
|
||||
聯繫歷史=通話記錄
|
||||
聲卡=音效卡
|
||||
聲明=宣告
|
||||
肯尼亞=肯亞
|
||||
脫機=離線
|
||||
腳本=指令碼
|
||||
自動轉屏=自動旋轉螢幕
|
||||
臺式機=桌上型電腦
|
||||
航天飛機=太空梭
|
||||
芯片=晶片
|
||||
莫桑比克=莫三比克
|
||||
菜單=選單
|
||||
萊索托=賴索托
|
||||
萬維網=全球資訊網
|
||||
萬象=永珍
|
||||
蔿=蒍
|
||||
藍牙=藍芽
|
||||
蘇里南=蘇利南
|
||||
虛函數=虛擬函式
|
||||
虛擬機=虛擬機器
|
||||
衆=眾
|
||||
表達式=表示式
|
||||
裏=裡
|
||||
複印=影印
|
||||
複選按鈕=覈取按鈕
|
||||
複選框=覈取方塊
|
||||
覈=核
|
||||
視圖=檢視
|
||||
視頻=視訊
|
||||
解釋器=直譯器
|
||||
觸摸=觸控
|
||||
觸摸屏=觸控式螢幕
|
||||
計算機安全=電腦保安
|
||||
計算機科學=電腦科學
|
||||
訪問=訪問
|
||||
設備=裝置
|
||||
設置=設定
|
||||
註冊機=序號產生器
|
||||
註冊表=登錄檔
|
||||
註銷=登出
|
||||
詞組=片語
|
||||
調制=調變
|
||||
調度=排程
|
||||
調用=呼叫
|
||||
調色板=調色盤
|
||||
調製解調器=數據機
|
||||
調試=除錯
|
||||
調試器=偵錯程式
|
||||
變量=變數
|
||||
貝寧=貝南
|
||||
贊比亞=尚比亞
|
||||
踊=踴
|
||||
蹦極=笨豬跳
|
||||
軟件=軟體
|
||||
軟驅=軟碟機
|
||||
輔音=子音
|
||||
通信=通訊
|
||||
通訊卡=通話卡
|
||||
通配符=萬用字元
|
||||
連接=連線
|
||||
連接器=聯結器
|
||||
進制=進位制
|
||||
進程=程序
|
||||
運算符=運算子
|
||||
運行=執行
|
||||
過程式編程=程序式程式設計
|
||||
遞歸=遞迴
|
||||
遠程=遠端
|
||||
適配器=介面卡
|
||||
邏輯門=邏輯閘
|
||||
酰=醯
|
||||
重命名=重新命名
|
||||
重裝=重灌
|
||||
重載=過載
|
||||
金屬氧化物半導體=金氧半導體
|
||||
鈁=鍅
|
||||
鈈=鈽
|
||||
鉢=缽
|
||||
錄像=錄影
|
||||
錇=鉳
|
||||
鍀=鎝
|
||||
鎄=鑀
|
||||
鎇=鋂
|
||||
鎿=錼
|
||||
鏈接=連結
|
||||
鏈表=連結串列
|
||||
鏡像=映象
|
||||
鐦=鉲
|
||||
鑥=鎦
|
||||
門戶網站=入口網站
|
||||
門電路=閘電路
|
||||
閃存=快閃記憶體
|
||||
關係數據庫=關聯式資料庫
|
||||
阿塞拜疆=亞塞拜然
|
||||
阿拉伯聯合酋長國=阿拉伯聯合大公國
|
||||
隊列=佇列
|
||||
集成=整合
|
||||
集成電路=積體電路
|
||||
集羣=叢集
|
||||
雲存儲=雲端儲存
|
||||
雲計算=雲端計算
|
||||
面向對象=物件導向
|
||||
面向過程=程序導向
|
||||
音頻=音訊
|
||||
頁眉=頁首
|
||||
頁腳=頁尾
|
||||
項目=專案
|
||||
預處理器=前處理器
|
||||
頭文件=標頭檔案
|
||||
頻分多址=分頻多重進接
|
||||
頻分複用=分頻多工
|
||||
類型=型別
|
||||
類模板=類别範本
|
||||
顯像管=映象管
|
||||
顯卡=顯示卡
|
||||
顯存=視訊記憶體
|
||||
飛行模式=飛航模式
|
||||
首席信息官=資訊長
|
||||
首席執行官=執行長
|
||||
首席技術官=技術長
|
||||
首席運營官=營運長
|
||||
香農=夏農
|
||||
馬爾代夫=馬爾地夫
|
||||
馬里共和國=馬利共和國
|
||||
高性能計算=高效能運算
|
||||
高端=高階
|
||||
高級=高階
|
||||
高速緩存=快取記憶體
|
||||
鮎=鯰
|
||||
麪=麵
|
||||
默認=預設
|
||||
默認值=預設值
|
||||
點擊=點選
|
||||
鼠標=滑鼠
|
||||
齶=顎
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,10 @@
|
||||
nm要怎么吃药
|
||||
nm可以吃什么药
|
||||
nm的治疗方法
|
||||
nm怎么治
|
||||
nm怎么办
|
||||
nm怎么解决
|
||||
nm要吃什么药
|
||||
nm可以怎么吃药
|
||||
nm的解决办法
|
||||
nm要吃什么药
|
@ -0,0 +1,11 @@
|
||||
nm有什么表现
|
||||
得nm会怎样
|
||||
nm有什么症状
|
||||
nm是什么样子
|
||||
得nm会出现什么
|
||||
得nm是什么样的
|
||||
得nm会出现什么情况
|
||||
nm的症状是什么
|
||||
nm的表现是什么
|
||||
nm的症状
|
||||
nm的表现
|
@ -0,0 +1,8 @@
|
||||
nhm 的使用方法
|
||||
nhm 的操作方法
|
||||
nhm 的用法
|
||||
nhm 怎么用
|
||||
nhm 一天吃多少次合适
|
||||
nhm 一次吃多少合适
|
||||
nhm 的用量
|
||||
|
@ -0,0 +1,8 @@
|
||||
nhm 的作用
|
||||
nhm 的作用是什么
|
||||
nhm 有什么用
|
||||
nhm 能XXX吗
|
||||
nhm 对XXX有用吗
|
||||
nhm 能治疗XX病吗
|
||||
nhm 可以治什么疾病
|
||||
|
@ -0,0 +1 @@
|
||||
1.7.5
|
@ -0,0 +1,310 @@
|
||||
#!/bin/sh
|
||||
# ----------------------------------------------------------------------------
|
||||
# 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
|
||||
#
|
||||
# https://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.
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
# ----------------------------------------------------------------------------
|
||||
# Maven2 Start Up Batch script
|
||||
#
|
||||
# Required ENV vars:
|
||||
# ------------------
|
||||
# JAVA_HOME - location of a JDK home dir
|
||||
#
|
||||
# Optional ENV vars
|
||||
# -----------------
|
||||
# M2_HOME - location of maven2's installed home dir
|
||||
# MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||
# e.g. to debug Maven itself, use
|
||||
# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||
# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||
# ----------------------------------------------------------------------------
|
||||
|
||||
if [ -z "$MAVEN_SKIP_RC" ] ; then
|
||||
|
||||
if [ -f /etc/mavenrc ] ; then
|
||||
. /etc/mavenrc
|
||||
fi
|
||||
|
||||
if [ -f "$HOME/.mavenrc" ] ; then
|
||||
. "$HOME/.mavenrc"
|
||||
fi
|
||||
|
||||
fi
|
||||
|
||||
# OS specific support. $var _must_ be set to either true or false.
|
||||
cygwin=false;
|
||||
darwin=false;
|
||||
mingw=false
|
||||
case "`uname`" in
|
||||
CYGWIN*) cygwin=true ;;
|
||||
MINGW*) mingw=true;;
|
||||
Darwin*) darwin=true
|
||||
# Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
|
||||
# See https://developer.apple.com/library/mac/qa/qa1170/_index.html
|
||||
if [ -z "$JAVA_HOME" ]; then
|
||||
if [ -x "/usr/libexec/java_home" ]; then
|
||||
export JAVA_HOME="`/usr/libexec/java_home`"
|
||||
else
|
||||
export JAVA_HOME="/Library/Java/Home"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
if [ -r /etc/gentoo-release ] ; then
|
||||
JAVA_HOME=`java-config --jre-home`
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$M2_HOME" ] ; then
|
||||
## resolve links - $0 may be a link to maven's home
|
||||
PRG="$0"
|
||||
|
||||
# need this for relative symlinks
|
||||
while [ -h "$PRG" ] ; do
|
||||
ls=`ls -ld "$PRG"`
|
||||
link=`expr "$ls" : '.*-> \(.*\)$'`
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
PRG="$link"
|
||||
else
|
||||
PRG="`dirname "$PRG"`/$link"
|
||||
fi
|
||||
done
|
||||
|
||||
saveddir=`pwd`
|
||||
|
||||
M2_HOME=`dirname "$PRG"`/..
|
||||
|
||||
# make it fully qualified
|
||||
M2_HOME=`cd "$M2_HOME" && pwd`
|
||||
|
||||
cd "$saveddir"
|
||||
# echo Using m2 at $M2_HOME
|
||||
fi
|
||||
|
||||
# For Cygwin, ensure paths are in UNIX format before anything is touched
|
||||
if $cygwin ; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME=`cygpath --unix "$M2_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
|
||||
fi
|
||||
|
||||
# For Mingw, ensure paths are in UNIX format before anything is touched
|
||||
if $mingw ; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME="`(cd "$M2_HOME"; pwd)`"
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ]; then
|
||||
javaExecutable="`which javac`"
|
||||
if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
|
||||
# readlink(1) is not available as standard on Solaris 10.
|
||||
readLink=`which readlink`
|
||||
if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
|
||||
if $darwin ; then
|
||||
javaHome="`dirname \"$javaExecutable\"`"
|
||||
javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
|
||||
else
|
||||
javaExecutable="`readlink -f \"$javaExecutable\"`"
|
||||
fi
|
||||
javaHome="`dirname \"$javaExecutable\"`"
|
||||
javaHome=`expr "$javaHome" : '\(.*\)/bin'`
|
||||
JAVA_HOME="$javaHome"
|
||||
export JAVA_HOME
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ -z "$JAVACMD" ] ; then
|
||||
if [ -n "$JAVA_HOME" ] ; then
|
||||
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
|
||||
# IBM's JDK on AIX uses strange locations for the executables
|
||||
JAVACMD="$JAVA_HOME/jre/sh/java"
|
||||
else
|
||||
JAVACMD="$JAVA_HOME/bin/java"
|
||||
fi
|
||||
else
|
||||
JAVACMD="`which java`"
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ ! -x "$JAVACMD" ] ; then
|
||||
echo "Error: JAVA_HOME is not defined correctly." >&2
|
||||
echo " We cannot execute $JAVACMD" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "$JAVA_HOME" ] ; then
|
||||
echo "Warning: JAVA_HOME environment variable is not set."
|
||||
fi
|
||||
|
||||
CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
|
||||
|
||||
# traverses directory structure from process work directory to filesystem root
|
||||
# first directory with .mvn subdirectory is considered project base directory
|
||||
find_maven_basedir() {
|
||||
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "Path not specified to find_maven_basedir"
|
||||
return 1
|
||||
fi
|
||||
|
||||
basedir="$1"
|
||||
wdir="$1"
|
||||
while [ "$wdir" != '/' ] ; do
|
||||
if [ -d "$wdir"/.mvn ] ; then
|
||||
basedir=$wdir
|
||||
break
|
||||
fi
|
||||
# workaround for JBEAP-8937 (on Solaris 10/Sparc)
|
||||
if [ -d "${wdir}" ]; then
|
||||
wdir=`cd "$wdir/.."; pwd`
|
||||
fi
|
||||
# end of workaround
|
||||
done
|
||||
echo "${basedir}"
|
||||
}
|
||||
|
||||
# concatenates all lines of a file
|
||||
concat_lines() {
|
||||
if [ -f "$1" ]; then
|
||||
echo "$(tr -s '\n' ' ' < "$1")"
|
||||
fi
|
||||
}
|
||||
|
||||
BASE_DIR=`find_maven_basedir "$(pwd)"`
|
||||
if [ -z "$BASE_DIR" ]; then
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
##########################################################################################
|
||||
# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||
# This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||
##########################################################################################
|
||||
if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found .mvn/wrapper/maven-wrapper.jar"
|
||||
fi
|
||||
else
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
|
||||
fi
|
||||
if [ -n "$MVNW_REPOURL" ]; then
|
||||
jarUrl="$MVNW_REPOURL/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar"
|
||||
else
|
||||
jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar"
|
||||
fi
|
||||
while IFS="=" read key value; do
|
||||
case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
|
||||
esac
|
||||
done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Downloading from: $jarUrl"
|
||||
fi
|
||||
wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
|
||||
if $cygwin; then
|
||||
wrapperJarPath=`cygpath --path --windows "$wrapperJarPath"`
|
||||
fi
|
||||
|
||||
if command -v wget > /dev/null; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found wget ... using wget"
|
||||
fi
|
||||
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||
wget "$jarUrl" -O "$wrapperJarPath"
|
||||
else
|
||||
wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD "$jarUrl" -O "$wrapperJarPath"
|
||||
fi
|
||||
elif command -v curl > /dev/null; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Found curl ... using curl"
|
||||
fi
|
||||
if [ -z "$MVNW_USERNAME" ] || [ -z "$MVNW_PASSWORD" ]; then
|
||||
curl -o "$wrapperJarPath" "$jarUrl" -f
|
||||
else
|
||||
curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o "$wrapperJarPath" "$jarUrl" -f
|
||||
fi
|
||||
|
||||
else
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo "Falling back to using Java to download"
|
||||
fi
|
||||
javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
|
||||
# For Cygwin, switch paths to Windows format before running javac
|
||||
if $cygwin; then
|
||||
javaClass=`cygpath --path --windows "$javaClass"`
|
||||
fi
|
||||
if [ -e "$javaClass" ]; then
|
||||
if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo " - Compiling MavenWrapperDownloader.java ..."
|
||||
fi
|
||||
# Compiling the Java class
|
||||
("$JAVA_HOME/bin/javac" "$javaClass")
|
||||
fi
|
||||
if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
|
||||
# Running the downloader
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo " - Running MavenWrapperDownloader.java ..."
|
||||
fi
|
||||
("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
##########################################################################################
|
||||
# End of extension
|
||||
##########################################################################################
|
||||
|
||||
export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
|
||||
if [ "$MVNW_VERBOSE" = true ]; then
|
||||
echo $MAVEN_PROJECTBASEDIR
|
||||
fi
|
||||
MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
|
||||
|
||||
# For Cygwin, switch paths to Windows format before running java
|
||||
if $cygwin; then
|
||||
[ -n "$M2_HOME" ] &&
|
||||
M2_HOME=`cygpath --path --windows "$M2_HOME"`
|
||||
[ -n "$JAVA_HOME" ] &&
|
||||
JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
|
||||
[ -n "$CLASSPATH" ] &&
|
||||
CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
|
||||
[ -n "$MAVEN_PROJECTBASEDIR" ] &&
|
||||
MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
|
||||
fi
|
||||
|
||||
# Provide a "standardized" way to retrieve the CLI args that will
|
||||
# work with both Windows and non-Windows executions.
|
||||
MAVEN_CMD_LINE_ARGS="$MAVEN_CONFIG $@"
|
||||
export MAVEN_CMD_LINE_ARGS
|
||||
|
||||
WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||
|
||||
exec "$JAVACMD" \
|
||||
$MAVEN_OPTS \
|
||||
-classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
|
||||
"-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
|
||||
${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
|
@ -0,0 +1,182 @@
|
||||
@REM ----------------------------------------------------------------------------
|
||||
@REM Licensed to the Apache Software Foundation (ASF) under one
|
||||
@REM or more contributor license agreements. See the NOTICE file
|
||||
@REM distributed with this work for additional information
|
||||
@REM regarding copyright ownership. The ASF licenses this file
|
||||
@REM to you under the Apache License, Version 2.0 (the
|
||||
@REM "License"); you may not use this file except in compliance
|
||||
@REM with the License. You may obtain a copy of the License at
|
||||
@REM
|
||||
@REM https://www.apache.org/licenses/LICENSE-2.0
|
||||
@REM
|
||||
@REM Unless required by applicable law or agreed to in writing,
|
||||
@REM software distributed under the License is distributed on an
|
||||
@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
||||
@REM KIND, either express or implied. See the License for the
|
||||
@REM specific language governing permissions and limitations
|
||||
@REM under the License.
|
||||
@REM ----------------------------------------------------------------------------
|
||||
|
||||
@REM ----------------------------------------------------------------------------
|
||||
@REM Maven2 Start Up Batch script
|
||||
@REM
|
||||
@REM Required ENV vars:
|
||||
@REM JAVA_HOME - location of a JDK home dir
|
||||
@REM
|
||||
@REM Optional ENV vars
|
||||
@REM M2_HOME - location of maven2's installed home dir
|
||||
@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
|
||||
@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
|
||||
@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
|
||||
@REM e.g. to debug Maven itself, use
|
||||
@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
|
||||
@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
|
||||
@REM ----------------------------------------------------------------------------
|
||||
|
||||
@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
|
||||
@echo off
|
||||
@REM set title of command window
|
||||
title %0
|
||||
@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'
|
||||
@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
|
||||
|
||||
@REM set %HOME% to equivalent of $HOME
|
||||
if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
|
||||
|
||||
@REM Execute a user defined script before this one
|
||||
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
|
||||
@REM check for pre script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
|
||||
if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
|
||||
:skipRcPre
|
||||
|
||||
@setlocal
|
||||
|
||||
set ERROR_CODE=0
|
||||
|
||||
@REM To isolate internal variables from possible post scripts, we use another setlocal
|
||||
@setlocal
|
||||
|
||||
@REM ==== START VALIDATION ====
|
||||
if not "%JAVA_HOME%" == "" goto OkJHome
|
||||
|
||||
echo.
|
||||
echo Error: JAVA_HOME not found in your environment. >&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||
echo location of your Java installation. >&2
|
||||
echo.
|
||||
goto error
|
||||
|
||||
:OkJHome
|
||||
if exist "%JAVA_HOME%\bin\java.exe" goto init
|
||||
|
||||
echo.
|
||||
echo Error: JAVA_HOME is set to an invalid directory. >&2
|
||||
echo JAVA_HOME = "%JAVA_HOME%" >&2
|
||||
echo Please set the JAVA_HOME variable in your environment to match the >&2
|
||||
echo location of your Java installation. >&2
|
||||
echo.
|
||||
goto error
|
||||
|
||||
@REM ==== END VALIDATION ====
|
||||
|
||||
:init
|
||||
|
||||
@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
|
||||
@REM Fallback to current working directory if not found.
|
||||
|
||||
set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
|
||||
IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
|
||||
|
||||
set EXEC_DIR=%CD%
|
||||
set WDIR=%EXEC_DIR%
|
||||
:findBaseDir
|
||||
IF EXIST "%WDIR%"\.mvn goto baseDirFound
|
||||
cd ..
|
||||
IF "%WDIR%"=="%CD%" goto baseDirNotFound
|
||||
set WDIR=%CD%
|
||||
goto findBaseDir
|
||||
|
||||
:baseDirFound
|
||||
set MAVEN_PROJECTBASEDIR=%WDIR%
|
||||
cd "%EXEC_DIR%"
|
||||
goto endDetectBaseDir
|
||||
|
||||
:baseDirNotFound
|
||||
set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
|
||||
cd "%EXEC_DIR%"
|
||||
|
||||
:endDetectBaseDir
|
||||
|
||||
IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
|
||||
|
||||
@setlocal EnableExtensions EnableDelayedExpansion
|
||||
for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
|
||||
@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
|
||||
|
||||
:endReadAdditionalConfig
|
||||
|
||||
SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
|
||||
set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
|
||||
set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
|
||||
|
||||
set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar"
|
||||
|
||||
FOR /F "tokens=1,2 delims==" %%A IN ("%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties") DO (
|
||||
IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
|
||||
)
|
||||
|
||||
@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
|
||||
@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
|
||||
if exist %WRAPPER_JAR% (
|
||||
if "%MVNW_VERBOSE%" == "true" (
|
||||
echo Found %WRAPPER_JAR%
|
||||
)
|
||||
) else (
|
||||
if not "%MVNW_REPOURL%" == "" (
|
||||
SET DOWNLOAD_URL="%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar"
|
||||
)
|
||||
if "%MVNW_VERBOSE%" == "true" (
|
||||
echo Couldn't find %WRAPPER_JAR%, downloading it ...
|
||||
echo Downloading from: %DOWNLOAD_URL%
|
||||
)
|
||||
|
||||
powershell -Command "&{"^
|
||||
"$webclient = new-object System.Net.WebClient;"^
|
||||
"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {"^
|
||||
"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');"^
|
||||
"}"^
|
||||
"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"^
|
||||
"}"
|
||||
if "%MVNW_VERBOSE%" == "true" (
|
||||
echo Finished downloading %WRAPPER_JAR%
|
||||
)
|
||||
)
|
||||
@REM End of extension
|
||||
|
||||
@REM Provide a "standardized" way to retrieve the CLI args that will
|
||||
@REM work with both Windows and non-Windows executions.
|
||||
set MAVEN_CMD_LINE_ARGS=%*
|
||||
|
||||
%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
|
||||
if ERRORLEVEL 1 goto error
|
||||
goto end
|
||||
|
||||
:error
|
||||
set ERROR_CODE=1
|
||||
|
||||
:end
|
||||
@endlocal & set ERROR_CODE=%ERROR_CODE%
|
||||
|
||||
if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
|
||||
@REM check for post script, once with legacy .bat ending and once with .cmd ending
|
||||
if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
|
||||
if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
|
||||
:skipRcPost
|
||||
|
||||
@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
|
||||
if "%MAVEN_BATCH_PAUSE%" == "on" pause
|
||||
|
||||
if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
|
||||
|
||||
exit /B %ERROR_CODE%
|
@ -0,0 +1,91 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.2.2.RELEASE</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
<groupId>com.cmkg</groupId>
|
||||
<artifactId>cmkg</artifactId>
|
||||
<version>0.0.1-SNAPSHOT</version>
|
||||
<name>cmkg</name>
|
||||
<description>Demo project for Spring Boot</description>
|
||||
|
||||
<properties>
|
||||
<java.version>1.8</java.version>
|
||||
</properties>
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>alimaven</id>
|
||||
<name>aliyun maven</name>
|
||||
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-data-neo4j</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-web</artifactId>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-test</artifactId>
|
||||
<scope>test</scope>
|
||||
<exclusions>
|
||||
<exclusion>
|
||||
<groupId>org.junit.vintage</groupId>
|
||||
<artifactId>junit-vintage-engine</artifactId>
|
||||
</exclusion>
|
||||
</exclusions>
|
||||
</dependency>
|
||||
|
||||
<!-- spark包-->
|
||||
<dependency>
|
||||
<groupId>org.apache.spark</groupId>
|
||||
<artifactId>spark-core_2.11</artifactId>
|
||||
<version>2.3.0</version>
|
||||
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.spark/spark-mllib -->
|
||||
<dependency>
|
||||
<groupId>org.apache.spark</groupId>
|
||||
<artifactId>spark-mllib_2.11</artifactId>
|
||||
<version>2.3.0</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.hankcs</groupId>
|
||||
<artifactId>hanlp</artifactId>
|
||||
<version>portable-1.7.1</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.janino</groupId>
|
||||
<artifactId>janino</artifactId>
|
||||
<version>3.0.8</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>alimaven spring plugin</id>
|
||||
<name>alimaven spring plugin</name>
|
||||
<url>https://maven.aliyun.com/repository/spring-plugin</url>
|
||||
</pluginRepository>
|
||||
</pluginRepositories>
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
@ -0,0 +1,13 @@
|
||||
package com.cmkg.cmkg;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class CmkgApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(CmkgApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
@ -0,0 +1,74 @@
|
||||
package com.cmkg.cmkg.Controller;
|
||||
|
||||
|
||||
import com.cmkg.cmkg.database.ReturnData;
|
||||
import com.cmkg.cmkg.node.disease;
|
||||
import com.cmkg.cmkg.node.medicine;
|
||||
import com.cmkg.cmkg.repository.QuestionRespository;
|
||||
import com.cmkg.cmkg.server.QuestionService;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
@RestController
|
||||
@RequestMapping("/rest/cmkg/question")
|
||||
public class QuestionController {
|
||||
@Autowired
|
||||
QuestionService questionService;
|
||||
//做个小测试
|
||||
@Autowired
|
||||
public QuestionRespository questionRespository;
|
||||
public String Search_disease_Success="查找病症成功";
|
||||
public String Search_medicine_Success="查找药品成功";
|
||||
public String SearchFaile="查找信息失败";
|
||||
public int code;
|
||||
|
||||
ReturnData rd=new ReturnData();
|
||||
disease dis=new disease();
|
||||
medicine med=new medicine();
|
||||
|
||||
@RequestMapping("/hello")
|
||||
public String JudgeAtrribute(@RequestParam("name") String name){
|
||||
String re = null;
|
||||
try {
|
||||
re = questionService.answer(name);
|
||||
System.out.println(re);
|
||||
} catch (Exception e) {
|
||||
re = "有错误";
|
||||
e.printStackTrace();
|
||||
}
|
||||
//去每个表里做查找,找到了的话做查询
|
||||
// System.out.println(questionRespository);
|
||||
// System.out.println(name);
|
||||
// Long i = questionRespository.getDiseaseId(name);
|
||||
// System.out.println(i);
|
||||
// if(questionRespository.getDiseaseId(name)!=0){//说明输入的事病症
|
||||
// String symptom=questionRespository.getDiseaseSymptom(name);
|
||||
// String[] tomedicine=questionRespository.getDiseaseToMedicine(name);
|
||||
// dis.setName(name);
|
||||
// dis.setSyptom(symptom);
|
||||
// dis.setTeammates(tomedicine);
|
||||
// rd.setMessage(Search_disease_Success);
|
||||
// rd.setCode(200);
|
||||
// rd.setData(dis);
|
||||
// return rd;
|
||||
// }else if(questionRespository.getMedicineId(name)!=0){//说明输入的是养生方法或药品名称
|
||||
// String operation=questionRespository.getMedicineOperation(name);
|
||||
// String syndromes=questionRespository.getMedicineSyndromes(name);
|
||||
// med.setName(name);
|
||||
// med.setOperation(operation);
|
||||
// med.setSyndromes(syndromes);
|
||||
// rd.setCode(200);
|
||||
// rd.setMessage(Search_medicine_Success);
|
||||
// rd.setData(med);
|
||||
// return rd;
|
||||
// }else{
|
||||
// rd.setMessage(SearchFaile);
|
||||
// rd.setCode(502);
|
||||
// return rd;
|
||||
// }
|
||||
|
||||
return re;
|
||||
}
|
||||
}
|
@ -0,0 +1,37 @@
|
||||
package com.cmkg.cmkg.database;
|
||||
|
||||
import com.cmkg.cmkg.node.disease;
|
||||
import com.cmkg.cmkg.node.medicine;
|
||||
|
||||
public class ReturnData {
|
||||
|
||||
private String message;
|
||||
// private com.cmkg.cmkg.node.disease disease_data;
|
||||
private Object data;
|
||||
private int code;
|
||||
|
||||
public void setMessage(String message){
|
||||
this.message=message;
|
||||
}
|
||||
|
||||
|
||||
public void setCode(int code){
|
||||
this.code=code;
|
||||
}
|
||||
|
||||
public String getMessage(){
|
||||
return message;
|
||||
}
|
||||
|
||||
public int getCode(){
|
||||
return code;
|
||||
}
|
||||
|
||||
public void setData(Object data) {
|
||||
this.data = data;
|
||||
}
|
||||
|
||||
public Object getData() {
|
||||
return data;
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
保存mysql的数据实体信息
|
@ -0,0 +1,69 @@
|
||||
package com.cmkg.cmkg.node;
|
||||
|
||||
|
||||
import org.neo4j.ogm.annotation.GeneratedValue;
|
||||
import org.neo4j.ogm.annotation.Id;
|
||||
import org.neo4j.ogm.annotation.NodeEntity;
|
||||
import org.neo4j.ogm.annotation.Relationship;
|
||||
|
||||
import java.util.Set;
|
||||
|
||||
@NodeEntity
|
||||
public class Disease {
|
||||
|
||||
@Id @GeneratedValue private Long did;
|
||||
private String name;
|
||||
private String syptom;
|
||||
private String proune;
|
||||
private String mchar;
|
||||
@Relationship(type = "my", direction = Relationship.DIRECTION)
|
||||
public String[] teammates;
|
||||
|
||||
public Long getDid() {
|
||||
return did;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getSyptom() {
|
||||
return syptom;
|
||||
}
|
||||
|
||||
public String getProune() {
|
||||
return proune;
|
||||
}
|
||||
|
||||
public String getMchar() {
|
||||
return mchar;
|
||||
}
|
||||
|
||||
public void setDid(Long did) {
|
||||
this.did = did;
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public void setSyptom(String syptom) {
|
||||
this.syptom = syptom;
|
||||
}
|
||||
|
||||
public void setProune(String proune) {
|
||||
this.proune = proune;
|
||||
}
|
||||
|
||||
public void setMchar(String mchar) {
|
||||
this.mchar = mchar;
|
||||
}
|
||||
|
||||
public String[] getTeammates() {
|
||||
return teammates;
|
||||
}
|
||||
|
||||
public void setTeammates(String[] teammates) {
|
||||
this.teammates = teammates;
|
||||
}
|
||||
}
|
@ -0,0 +1 @@
|
||||
保存图数据库的节点信息
|
@ -0,0 +1,115 @@
|
||||
package com.cmkg.cmkg.node;
|
||||
|
||||
import org.neo4j.ogm.annotation.GeneratedValue;
|
||||
import org.neo4j.ogm.annotation.Id;
|
||||
|
||||
public class medicine {
|
||||
|
||||
@Id @GeneratedValue Long yid;
|
||||
private String name;
|
||||
private String sympton;
|
||||
private String disease;
|
||||
private String taboo;//禁用
|
||||
private String function;//功能
|
||||
private String remark;//
|
||||
private String syndromes;//
|
||||
private String position;//
|
||||
private String operation;//用法
|
||||
|
||||
public Long getId(){
|
||||
return yid;
|
||||
}
|
||||
|
||||
public String getName(){
|
||||
return name;
|
||||
}
|
||||
|
||||
public String getSympton(){
|
||||
return sympton;
|
||||
}
|
||||
|
||||
public String getDisease(){
|
||||
return disease;
|
||||
}
|
||||
|
||||
public String getTaboo(){
|
||||
return taboo;
|
||||
}
|
||||
|
||||
public String getFunction(){
|
||||
return function;
|
||||
}
|
||||
|
||||
public String getRemark(){
|
||||
return remark;
|
||||
}
|
||||
|
||||
public String getSyndromes(){
|
||||
return syndromes;
|
||||
}
|
||||
|
||||
public String getPosition(){
|
||||
return position;
|
||||
}
|
||||
|
||||
public String getOperation(){
|
||||
return operation;
|
||||
}
|
||||
|
||||
public void setYid(Long id){
|
||||
this.yid=id;
|
||||
}
|
||||
|
||||
public void setName(String name){
|
||||
this.name=name;
|
||||
}
|
||||
|
||||
public void setSympton(String sympton){
|
||||
this.sympton=sympton;
|
||||
}
|
||||
|
||||
public void setDisease(String disease){
|
||||
this.disease=disease;
|
||||
}
|
||||
|
||||
public void setTaboo(String taboo){
|
||||
this.taboo=taboo;
|
||||
}
|
||||
|
||||
public void setFunction(String function){
|
||||
this.function=function;
|
||||
}
|
||||
|
||||
public void setRemark(String remark){
|
||||
this.remark=remark;
|
||||
}
|
||||
|
||||
public void setSyndromes(String syndromes){
|
||||
this.syndromes=syndromes;
|
||||
}
|
||||
|
||||
public void setPosition(String position){
|
||||
this.position=position;
|
||||
}
|
||||
|
||||
public void setOperation(String operation){
|
||||
this.operation=operation;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String toString() {
|
||||
return "Yangsheng{" +
|
||||
"yid=" + yid +
|
||||
", name='" + name + '\'' +
|
||||
", symptom='"+sympton + '\'' +
|
||||
", disease='" + disease +'\'' +
|
||||
",taboo='" + taboo + '\'' +
|
||||
",function='" + function + '\'' +
|
||||
",remark='" +remark + '\'' +
|
||||
",syndromes='" +syndromes + '\'' +
|
||||
",postiton='" +position +'\'' +
|
||||
",operation='" +operation +'\'' +
|
||||
'}';
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.cmkg.cmkg.repository;
|
||||
|
||||
import com.cmkg.cmkg.node.disease;
|
||||
import com.cmkg.cmkg.node.medicine;
|
||||
import org.springframework.data.neo4j.annotation.Query;
|
||||
import org.springframework.data.neo4j.repository.Neo4jRepository;
|
||||
import org.springframework.data.repository.query.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public interface MedicineRespository extends Neo4jRepository<medicine,Long>{
|
||||
|
||||
@Query("MATCH (n:Yangsheng) where n.name={name} return n")
|
||||
List<disease> getDisease(@Param("name") String name);
|
||||
}
|
@ -0,0 +1 @@
|
||||
操作数据库的接口
|
@ -0,0 +1,5 @@
|
||||
package com.cmkg.cmkg.server;
|
||||
|
||||
public interface QuestionService {
|
||||
String answer(String question) throws Exception;
|
||||
}
|
@ -0,0 +1 @@
|
||||
由server
|
@ -0,0 +1,3 @@
|
||||
spring.data.neo4j.username=neo4j
|
||||
spring.data.neo4j.password=chinesemedicine
|
||||
spring.data.neo4j.uri=bolt://114.116.199.154:5003
|
@ -0,0 +1,28 @@
|
||||
package com.cmkg.cmkg;
|
||||
|
||||
import com.cmkg.cmkg.repository.QuestionRespository;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
import scala.util.parsing.json.JSONArray;
|
||||
import scala.util.parsing.json.JSONObject;
|
||||
|
||||
@SpringBootTest
|
||||
class CmkgApplicationTests {
|
||||
@Autowired
|
||||
QuestionRespository questionRespository;
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
|
||||
String name="平和质";
|
||||
int id=questionRespository.getDiseaseId(name);
|
||||
String symtom = questionRespository.getDiseaseSymptom(name);
|
||||
System.out.println("id="+id+"\n");
|
||||
System.out.println("syntom="+symtom+"\n");
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in new issue