content stringlengths 4 1.04M | lang stringclasses 358
values | score int64 0 5 | repo_name stringlengths 5 114 | repo_path stringlengths 4 229 | repo_licenses listlengths 1 8 |
|---|---|---|---|---|---|
shh naive fizzbuzz
such fizz much n
very ans is ''
rly n % 3 is 0
ans more 'fizz'
wow
rly n % 5 is 0
ans more 'buzz'
wow
shh return number
rly ans is ''
wow n
amaze ans
wow
much n as 1 next n smallerish 100 next n bigified
very res is plz fizz with n
console dose loge with res
wow
| Dogescript | 3 | PinkDiamond1/dogescript | docker/samples/fizzbuzz.djs | [
"MIT"
] |
use clippy_utils::diagnostics::span_lint_and_sugg;
use clippy_utils::{is_expr_identity_function, is_trait_method};
use rustc_errors::Applicability;
use rustc_hir as hir;
use rustc_lint::LateContext;
use rustc_span::{source_map::Span, sym};
use super::FLAT_MAP_IDENTITY;
/// lint use of `flat_map` for `Iterators` where `flatten` would be sufficient
pub(super) fn check<'tcx>(
cx: &LateContext<'tcx>,
expr: &'tcx hir::Expr<'_>,
flat_map_arg: &'tcx hir::Expr<'_>,
flat_map_span: Span,
) {
if is_trait_method(cx, expr, sym::Iterator) && is_expr_identity_function(cx, flat_map_arg) {
span_lint_and_sugg(
cx,
FLAT_MAP_IDENTITY,
flat_map_span.with_hi(expr.span.hi()),
"use of `flat_map` with an identity function",
"try",
"flatten()".to_string(),
Applicability::MachineApplicable,
);
}
}
| Rust | 4 | narpfel/rust-clippy | clippy_lints/src/methods/flat_map_identity.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
invalid-escape = "This string has a bad \/ escape character."
| TOML | 2 | vanillajonathan/julia | stdlib/TOML/test/testfiles/invalid/string-bad-slash-escape.toml | [
"Zlib"
] |
<html>
<head>
<title>Link element test</title>
<link rel="stylesheet" href="link.css">
</head>
<body>
<div id="foo">I should be styled!</div>
</body>
</html>
| HTML | 3 | r00ster91/serenity | Base/res/html/misc/link.html | [
"BSD-2-Clause"
] |
[Desktop Entry]
Type=Application
Name=Test Menu Item Install
Exec=touch /tmp/xdg-test-menu-item-install.tmp
StartupNotify=false
| desktop | 2 | freedesktop-unofficial-mirror/xdg__xdg-utils | tests/xdg-desktop-menu/data/menu_item_test.desktop | [
"MIT"
] |
(*
* Copyright 2014, NICTA
*
* This software may be distributed and modified according to the terms of
* the BSD 2-Clause license. Note that NO WARRANTY is provided.
* See "LICENSE_BSD2.txt" for details.
*
* @TAG(NICTA_BSD)
*)
theory Sep_Provers_Example
imports Sep_Provers
begin
axiomatization
Moo :: "'a :: stronger_sep_algebra => bool" and
Bar :: "'a :: stronger_sep_algebra => bool"
where Moo_Bar : "Moo s \<Longrightarrow> Bar s"
(* sep_rule is 'rule' with rotations of the conjuncts in the conclusions *)
lemma "(A \<and>* B \<and>* C \<and>* Bar) s"
apply (sep_rule Moo_Bar)
oops
(* sep_drule is 'drule' with rotations of the conjuncts in the assumptions *)
lemma "(A \<and>* B \<and>* C \<and>* Moo) s \<Longrightarrow> R"
apply (sep_drule Moo_Bar)
oops
(* sep_erule is 'erule' with rotations of the conjuncts in either the assumptions,
the conclusions, or both. These are sep_erule, sep_erule_concl, and sep_erule_full respectively
*)
lemma "(A \<and>* B \<and>* C \<and>* Moo) s \<Longrightarrow> (A \<and>* B \<and>* C \<and>* Bar) s"
(* In this case we need to rotate both, so we use sep_erule_full *)
apply (sep_erule_full Moo_Bar)
apply (assumption)
done
axiomatization where Moo_Bar_R: "(Moo \<and>* R) s \<Longrightarrow> (Bar \<and>* R) s"
(* When we have theorems with the frame explicitly mentioned, we have to invoke our tactics with
(direct) option *)
lemma "(A \<and>* B \<and>* C \<and>* Moo) s \<Longrightarrow> (A \<and>* B \<and>* C \<and>* Bar) s"
apply (sep_erule_full (direct) Moo_Bar_R)
done
end
| Isabelle | 5 | pirapira/eth-isabelle | sep_algebra/Sep_Provers_Example.thy | [
"Apache-2.0"
] |
#include "caffe2/core/context_gpu.h"
#include "caffe2/operators/copy_op.h"
namespace caffe2 {
template <>
class CopyOnDeviceLikeOp<CUDAContext, CUDAContext, CUDAContext>
: public Operator<CUDAContext> {
public:
template <class... Args>
explicit CopyOnDeviceLikeOp(Args&&... args)
: Operator<CUDAContext>(std::forward<Args>(args)...) {}
USE_OPERATOR_FUNCTIONS(CUDAContext);
bool RunOnDevice() override {
auto& input = Input(0);
auto* output = OperatorBase::Output<Tensor>(0, CUDA);
CUDAContext context(GetGPUIDForPointer(Input(1).raw_data()));
output->ResizeLike(input);
context.template CopyItems<CUDAContext, CUDAContext>(
input.meta(),
input.numel(),
input.raw_data(),
output->raw_mutable_data(input.meta()));
return true;
}
};
// From CPU, copy it to whatever the current context
REGISTER_CUDA_OPERATOR(
CopyFromCPUInput,
CopyOp<CUDAContext, CUDAContext, CPUContext>);
// CopyGPUToCPU and CopyCPUToGPU should both be carried out in a cuda context,
// since gpu code will be involved.
REGISTER_CUDA_OPERATOR(
CopyGPUToCPU,
CopyOp<CUDAContext, CPUContext, CUDAContext>);
REGISTER_CUDA_OPERATOR(
CopyCPUToGPU,
CopyOp<CUDAContext, CUDAContext, CPUContext>);
// If we only specify Copy, we assume that it is a gpu to gpu copy - maybe
// involving different GPUs.
REGISTER_CUDA_OPERATOR(Copy, CopyOp<CUDAContext, CUDAContext, CUDAContext>);
REGISTER_CUDA_OPERATOR(
CopyOnDeviceLike,
CopyOnDeviceLikeOp<CUDAContext, CUDAContext, CUDAContext>);
} // namespace caffe2
using CopyGPUToCPU_CUDA = caffe2::
CopyOp<caffe2::CUDAContext, caffe2::CPUContext, caffe2::CUDAContext>;
using CopyCPUToGPU_CUDA = caffe2::
CopyOp<caffe2::CUDAContext, caffe2::CUDAContext, caffe2::CPUContext>;
C10_EXPORT_CAFFE2_OP_TO_C10_CUDA(CopyGPUToCPU, CopyGPUToCPU_CUDA);
C10_EXPORT_CAFFE2_OP_TO_C10_CPU_KERNEL_ONLY(CopyCPUToGPU, CopyCPUToGPU_CUDA);
| Cuda | 4 | Hacky-DH/pytorch | caffe2/operators/copy_op.cu | [
"Intel"
] |
module: access-path-implementation
synopsis: FFI declarations to allow access-path to call the debugger
nub on demand
author: Paul Howard
Copyright: Original Code is Copyright (c) 1995-2004 Functional Objects, Inc.
All rights reserved.
License: See License.txt in this distribution for details.
Warranty: Distributed WITHOUT WARRANTY OF ANY KIND
// C type aliases to make our FFI declarations look more like the
// prototypes in the nub header.
define C-struct <DESCRIPTOR>
end C-struct;
define C-pointer-type <DESCRIPTOR-POINTER> => <DESCRIPTOR>;
define constant <NUBHANDLE> = <DESCRIPTOR-POINTER>;
define constant <NUBINT> = <C-int>;
define constant <NUBPROCESS> = <NUBHANDLE>;
define constant <NUBTHREAD> = <NUBHANDLE>;
define constant <NUBLIBRARY> = <NUBHANDLE>;
define constant <NUB> = <NUBHANDLE>;
define class <THREAD-CONTEXT> (<object>)
constant slot thread-was-suspended-by-debugger? :: <boolean>,
required-init-keyword: suspended?:;
constant slot nub-descriptor :: <NUBHANDLE>,
required-init-keyword: nub-descriptor:;
end class;
define C-function get-local-hostname-length
result sz :: <NUBINT>;
c-name: "get_local_hostname_length";
end C-function;
define C-function get-local-hostname
parameter buf-size :: <NUBINT>;
parameter buffer :: <C-string>;
c-name: "get_local_hostname";
end C-function;
| Dylan | 3 | kryptine/opendylan | sources/runtime-manager/access-path/nub-ffi-defs.dylan | [
"BSD-2-Clause"
] |
Red/System [
Title: "Red/System call binding"
Author: ["Bruno Anselme" "Nenad Rakocevic"]
EMail: "be.red@free.fr"
File: %call.reds
Rights: "Copyright (c) 2014-2015 Bruno Anselme"
License: {
Distributed under the Boost Software License, Version 1.0.
See https://github.com/red/red/blob/master/BSL-License.txt
}
Notes: {
Slightly modified from original version for integration in the Red runtime.
}
Purpose: {
This binding implements a call function for Red/System (similar to rebol's call function).
POSIX version uses "wordexp" function to perform word expansion.
}
Reference: {
POSIX wordexp :
http://pubs.opengroup.org/onlinepubs/9699919799/functions/wordexp.html
}
]
ext-process: context [
#enum buffer-size! [READ_BUFFER_SIZE: 4096]
p-buffer!: alias struct! [ ;-- Data buffer struct, pointer and bytes count
count [integer!]
buffer [byte-ptr!]
]
str-buffer: as red-value! 0
#import [
LIBC-file cdecl [
realloc: "realloc" [ "Resize and return allocated memory."
memory [byte-ptr!]
size [integer!]
return: [byte-ptr!]
]
strstr: "strstr" [ "Search for sub-string."
string [c-string!]
substring [c-string!]
return: [c-string!]
]
strcpy: "strcpy" [ "Copy string including tail marker, return target."
target [c-string!]
source [c-string!]
return: [c-string!]
]
]
]
#either debug? = yes [
error-pipe: "Error Red/System call : pipe creation failed : "
error-dup2: "Error Red/System call : calling dup2 : "
error-sethandle: "Error Red/System call : SetHandleInformation failed : "
__red-call-print-error: func [ "Format and print on stderr"
[typed]
count [integer!] list [typed-value!]
/local
str [c-string!]
len [integer!]
][
str: make-c-string 1000
set-memory as byte-ptr! str null-byte 1000
until [
switch list/type [
type-c-string! [ sprintf [ (str + length? str) "%s" list/value ] ]
type-integer! [ sprintf [ (str + length? str) "%d" list/value ] ]
type-logic! [ sprintf [ (str + length? str) "%s" either as logic! list/value [ "true" ][ "false" ] ] ]
default [ sprintf [ (str + length? str) "%08Xh" list/value ] ] ;-- print as an hex value
]
list: list + 1
count: count - 1
zero? count
]
len: length? str
len: len + 1
str/len: #"^/"
#switch OS [ ;-- Write to stderr, no error check
Windows [ platform/WriteFile platform/GetStdHandle STD_ERROR_HANDLE str len :len null ]
#default [ platform/io-write stderr as byte-ptr! str len ]
]
free as byte-ptr! str
]
][
#define __red-call-print-error [comment]
]
f-desc!: alias struct! [ ;-- Files descriptors for posix pipe
reading [integer!]
writing [integer!]
]
init-global: does [
str-buffer: ALLOC_TAIL(root)
string/make-at str-buffer 1024 * 100 Latin1
]
insert-string: func [
str [red-string!]
data [p-buffer!]
shell? [logic!]
console? [logic!]
/local
temp [byte-ptr!]
buffer [byte-ptr!]
len [integer!]
count [integer!]
sout [red-string!]
node [series!]
][
if zero? data/count [exit]
either TYPE_OF(str) = TYPE_BINARY [
binary/rs-insert as red-binary! str 0 data/buffer data/count
][
sout: either null? str-buffer [
str-buffer: as red-value! allocate size? red-value!
string/make-at str-buffer 1024 * 100 Latin1
][as red-string! str-buffer]
string/rs-reset sout
node: GET_BUFFER(sout)
#either OS = 'Windows [
buffer: data/buffer
count: data/count
either any [console? win-shell? win-error?][
len: 0
len: platform/MultiByteToWideChar 0 0 buffer count null 0 ;-- CP_OEMCP
if len <= 0 [0] ;TBD free resource and throw error
temp: allocate len * 2
platform/MultiByteToWideChar 0 0 buffer count temp len
unicode/load-utf16 as-c-string temp len sout yes
free temp
][
unicode/load-utf8-buffer as-c-string buffer count node null yes
]
][
unicode/load-utf8-buffer as-c-string data/buffer data/count node null yes
]
string/concatenate str sout -1 0 yes yes
]
]
#switch OS [
Windows [ ;-- Windows
win-error?: no ;@@ make it local variable
win-shell?: no ;@@ make it local variable
init: does [init-global]
read-from-pipe: func [ "Read data from pipe fd into buffer"
fd [integer!] "File descriptor"
data [p-buffer!]
/local len size total
][
size: READ_BUFFER_SIZE ;-- get initial buffer size
total: 0
until [
len: 0
platform/ReadFile fd (data/buffer + total) (size - total) :len null
if len > 0 [
total: total + len
if total = size [
size: 2 * size
data/buffer: realloc data/buffer size
]
]
platform/GetLastError = ERROR_BROKEN_PIPE ;-- Pipe done - normal exit
]
data/count: total
] ; read-from-pipe
open-file-to-write: func [
pbuf [p-buffer!]
sa [security-attributes!]
return: [integer!]
/local
file [integer!]
][
file: platform/CreateFileW
as c-string! pbuf/buffer
GENERIC_WRITE
FILE_SHARE_READ or FILE_SHARE_WRITE
sa
OPEN_ALWAYS
FILE_ATTRIBUTE_NORMAL
null
either file = -1 [file: 0][platform/SetFilePointer file 0 null SET_FILE_END]
file
]
OS-call: func [ "Executes a DOS command to run another process."
cmd [c-string!] "The shell command"
waitend? [logic!] "Wait for end of command, implicit if any buffer is set"
show? [logic!] "Forces display of system's shell window"
console? [logic!] "Redirect outputs to console"
shell? [logic!] "Forces command to be run from shell"
in-buf [p-buffer!] "Input data buffer or null"
out-buf [p-buffer!] "Output data buffer or null"
err-buf [p-buffer!] "Error data buffer or null"
return: [integer!]
/local
pid [integer!]
inherit [logic!]
cmdstr [c-string!]
in-read [integer!]
in-write [integer!]
out-read [integer!]
out-write [integer!]
err-read [integer!]
err-write [integer!]
dev-null [integer!]
sa [security-attributes! value]
p-inf [process-info! value]
s-inf [startup-info! value]
len [integer!]
success [integer!]
][
win-error?: no
win-shell?: shell?
sa/nLength: size? security-attributes!
sa/lpSecurityDescriptor: 0
sa/bInheritHandle: true
out-read: 0 ;-- Pipes
out-write: 0
in-read: 0
in-write: 0
err-read: 0
err-write: 0
inherit: false
set-memory as byte-ptr! :s-inf null-byte size? startup-info!
s-inf/cb: size? startup-info!
s-inf/dwFlags: 0
s-inf/hStdInput: platform/GetStdHandle STD_INPUT_HANDLE
s-inf/hStdOutput: platform/GetStdHandle STD_OUTPUT_HANDLE
s-inf/hStdError: platform/GetStdHandle STD_ERROR_HANDLE
dev-null: platform/CreateFileW #u16 "nul:" GENERIC_WRITE FILE_SHARE_WRITE sa OPEN_EXISTING 0 null ;-- Pipe to nul
if in-buf <> null [
either in-buf/count = -1 [
in-read: platform/CreateFileW
as c-string! in-buf/buffer
GENERIC_READ
0
sa
OPEN_EXISTING
FILE_ATTRIBUTE_NORMAL or FILE_FLAG_SEQUENTIAL_SCAN
null
if in-read = -1 [return -1]
][
unless platform/CreatePipe :in-read :in-write sa 0 [ ;-- Create a pipe for child's input
__red-call-print-error [ error-pipe "stdin" ]
return -1
]
unless platform/SetHandleInformation in-write HANDLE_FLAG_INHERIT 0 [
__red-call-print-error [ error-sethandle "stdin" ]
return -1
]
]
s-inf/hStdInput: in-read
]
either out-buf <> null [
either out-buf/count = -1 [
out-write: open-file-to-write out-buf sa
][
out-buf/count: 0
out-buf/buffer: allocate READ_BUFFER_SIZE
unless platform/CreatePipe :out-read :out-write sa 0 [ ;-- Create a pipe for child's output
__red-call-print-error [ error-pipe "stdout" ]
return -1
]
unless platform/SetHandleInformation out-read HANDLE_FLAG_INHERIT 0 [
__red-call-print-error [ error-sethandle "stdout" ]
return -1
]
]
s-inf/hStdOutput: out-write
][
unless console? [ ;-- output must be redirected to "nul" or process returns an error code
s-inf/hStdOutput: dev-null
]
]
either err-buf <> null [
either err-buf/count = -1 [
err-write: open-file-to-write err-buf sa
][
err-buf/count: 0
err-buf/buffer: allocate READ_BUFFER_SIZE
unless platform/CreatePipe :err-read :err-write sa 0 [ ;-- Create a pipe for child's error
__red-call-print-error [ error-pipe "stderr" ]
return -1
]
unless platform/SetHandleInformation err-read HANDLE_FLAG_INHERIT 0 [
__red-call-print-error [ error-sethandle "stderr" ]
return -1
]
]
s-inf/hStdError: err-write
][
unless console? [
s-inf/hStdError: dev-null
]
]
if any [in-buf <> null out-buf <> null err-buf <> null][
waitend?: true
inherit: true
s-inf/dwFlags: STARTF_USESTDHANDLES
]
unless console? [
inherit: true
s-inf/dwFlags: STARTF_USESTDHANDLES
]
unless show? [s-inf/dwFlags: s-inf/dwFlags or STARTF_USESHOWWINDOW]
sa/bInheritHandle: inherit
either shell? [
len: (platform/lstrlen as byte-ptr! cmd) * 2
cmdstr: make-c-string (26 + len)
copy-memory as byte-ptr! cmdstr as byte-ptr! #u16 {cmd /s /c "} 22
copy-memory as byte-ptr! cmdstr + 22 as byte-ptr! cmd len
copy-memory as byte-ptr! cmdstr + 22 + len as byte-ptr! #u16 {"^@} 4
][
cmdstr: cmd
]
unless platform/CreateProcessW null cmdstr null null inherit 0 null null :s-inf :p-inf [
either 2 = platform/GetLastError [ ;-- ERROR_FILE_NOT_FOUND
len: (platform/lstrlen as byte-ptr! cmd) * 2
cmdstr: make-c-string (26 + len)
copy-memory as byte-ptr! cmdstr as byte-ptr! #u16 {cmd /s /c "} 22
copy-memory as byte-ptr! cmdstr + 22 as byte-ptr! cmd len
copy-memory as byte-ptr! cmdstr + 22 + len as byte-ptr! #u16 {"^@} 4
shell?: yes ;-- force /shell mode and try again
win-shell?: yes
unless platform/CreateProcessW null cmdstr null null inherit 0 null null :s-inf :p-inf [
__red-call-print-error [ "Error Red/System call : CreateProcess : ^"" cmd "^" Error : " platform/GetLastError]
if shell? [free as byte-ptr! cmdstr]
return -1
]
][
__red-call-print-error [ "Error Red/System call : CreateProcess : ^"" cmd "^" Error : " platform/GetLastError]
if shell? [free as byte-ptr! cmdstr]
return -1
]
]
if shell? [free as byte-ptr! cmdstr]
pid: 0
if in-buf <> null [
platform/CloseHandle in-read
len: in-buf/count
success: platform/WriteFile in-write as-c-string in-buf/buffer len :len null
if zero? success [
__red-call-print-error [ "Error Red/System call : write into pipe failed : " platform/GetLastError]
]
platform/CloseHandle in-write
]
if out-buf <> null [
platform/CloseHandle out-write
if out-buf/count <> -1 [read-from-pipe out-read out-buf]
platform/CloseHandle out-read
]
if err-buf <> null [
platform/CloseHandle err-write
if err-buf/count <> -1 [read-from-pipe err-read err-buf]
platform/CloseHandle err-read
if all [shell? err-buf/count > 0][win-error?: yes]
]
either any [console? waitend?][
platform/WaitForSingleObject p-inf/hProcess INFINITE
platform/GetExitCodeProcess p-inf/hProcess :pid
][
pid: p-inf/dwProcessId
]
platform/CloseHandle p-inf/hProcess
platform/CloseHandle p-inf/hThread
platform/CloseHandle dev-null
return pid
] ; call
] ; Windows
#default [ ;-- POSIX
shell-name: as c-string! 0
init: does [
shell-name: platform/getenv "SHELL"
if null? shell-name [shell-name: "/bin/sh"] ;-- if $SHELL is not defined
init-global
]
set-flags-fd: func [
fd [integer!]
/local
flags [integer!]
][
flags: platform/fcntl [fd F_GETFD 0]
platform/fcntl [fd F_SETFD flags or 1] ;-- FD_CLOEXEC
flags: platform/fcntl [fd F_GETFL 0]
platform/fcntl [fd F_SETFL flags or O_NONBLOCK]
]
OS-call: func [ "Executes a shell command, IO redirections to buffers."
cmd [c-string!] "The shell command"
waitend? [logic!] "Wait for end of command, implicit if any buffer is set"
show? [logic!] "<unused>"
console? [logic!] "Redirect outputs to console"
shell? [logic!] "Forces command to be run from shell"
in-buf [p-buffer!] "Input data buffer or null"
out-buf [p-buffer!] "Output data buffer or null "
err-buf [p-buffer!] "Error data buffer or null"
return: [integer!]
/local
pid status err wexp fd-in fd-out fd-err args dev-null str
pfds nfds fds revents n i input-len nbytes offset size to-read
out-len err-len out-size err-size pbuf in? out? err?
][
in?: all [in-buf <> null in-buf/count <> -1]
out?: all [out-buf <> null out-buf/count <> -1]
err?: all [err-buf <> null err-buf/count <> -1]
if in? [
input-len: 0
fd-in: declare f-desc!
if (platform/pipe as int-ptr! fd-in) = -1 [ ;-- Create a pipe for child's input
__red-call-print-error [ error-pipe "stdin" ]
return -1
]
]
if out? [ ;- Create buffer for output
out-len: 0
out-size: READ_BUFFER_SIZE
fd-out: declare f-desc!
if (platform/pipe as int-ptr! fd-out) = -1 [ ;-- Create a pipe for child's output
__red-call-print-error [ error-pipe "stdout" ]
return -1
]
]
if err? [ ;- Create buffer for error
err-len: 0
err-size: READ_BUFFER_SIZE
fd-err: declare f-desc!
if (platform/pipe as int-ptr! fd-err) = -1 [ ;-- Create a pipe for child's error
__red-call-print-error [ error-pipe "stderr" ]
return -1
]
]
pid: platform/fork
if pid = 0 [ ;-- Child process
if in-buf <> null [ ;-- redirect stdin to the pipe
either in-buf/count = -1 [ ;-- file
nfds: platform/io-open as c-string! in-buf/buffer O_RDONLY
if nfds < 0 [quit -1]
platform/dup2 nfds stdin
platform/io-close nfds
][
platform/io-close fd-in/writing
err: platform/dup2 fd-in/reading stdin
if err = -1 [ __red-call-print-error [ error-dup2 "stdin" ]]
platform/io-close fd-in/reading
]
]
either out-buf <> null [ ;-- redirect stdout to the pipe
either out-buf/count = -1 [
nfds: platform/_open
as c-string! out-buf/buffer
O_BINARY or O_WRONLY or O_CREAT or O_APPEND
438 ;-- 0666
if nfds < 0 [quit -1]
platform/dup2 nfds stdout
platform/io-close nfds
][
platform/io-close fd-out/reading
err: platform/dup2 fd-out/writing stdout
if err = -1 [ __red-call-print-error [ error-dup2 "stdout" ]]
platform/io-close fd-out/writing
]
][
if not console? [ ;-- redirect stdout to /dev/null.
dev-null: platform/io-open "/dev/null" O_WRONLY
err: platform/dup2 dev-null stdout
if err = -1 [ __red-call-print-error [ error-dup2 "stdout to null" ]]
platform/io-close dev-null
]
]
either err-buf <> null [ ;-- redirect stderr to the pipe
either err-buf/count = -1 [
nfds: platform/_open
as c-string! err-buf/buffer
O_BINARY or O_WRONLY or O_CREAT or O_APPEND
438 ;-- 0666
if nfds < 0 [quit -1]
platform/dup2 nfds stderr
platform/io-close nfds
][
platform/io-close fd-err/reading
err: platform/dup2 fd-err/writing stderr
if err = -1 [ __red-call-print-error [ error-dup2 "stderr" ]]
platform/io-close fd-err/writing
]
][
if not console? [ ;-- redirect stderr to /dev/null.
dev-null: platform/io-open "/dev/null" O_WRONLY
err: platform/dup2 dev-null stderr
if err = -1 [ __red-call-print-error [ error-dup2 "stderr to null" ]]
platform/io-close dev-null
]
]
if all [(in-buf = null) (not console?)] [platform/io-close stdin] ;-- no redirection, stdin closed
either shell? [
args: as str-array! allocate 4 * size? c-string!
args/item: shell-name args: args + 1
args/item: "-c" args: args + 1
args/item: cmd args: args + 1
args/item: null
args: args - 3 ;-- reset args pointer
platform/execvp shell-name args ;-- Process is launched here, execvp with str-array parameters
][
wexp: declare red/platform/wordexp-type! ;-- Create wordexp struct
status: platform/wordexp cmd wexp WRDE_SHOWERR ;-- Parse cmd into str-array
either status = 0 [ ;-- Parsing ok
platform/execvp wexp/we_wordv/item wexp/we_wordv ;-- Process is launched here, execvp with str-array parameters
][ ;-- Parsing nok
__red-call-print-error [ "Error Red/System call, wordexp parsing command : " cmd ]
switch status [
WRDE_NOSPACE [ __red-call-print-error [ "Attempt to allocate memory failed" ] ]
WRDE_BADCHAR [ __red-call-print-error [ "Use of the unquoted characters- <newline>, '|', '&', ';', '<', '>', '(', ')', '{', '}'" ] ]
WRDE_BADVAL [ __red-call-print-error [ "Reference to undefined shell variable" ] ]
WRDE_CMDSUB [ __red-call-print-error [ "Command substitution requested" ] ]
WRDE_SYNTAX [ __red-call-print-error [ "Shell syntax error, such as unbalanced parentheses or unterminated string" ] ]
]
]
]
;-- get here only when exec fails
quit -1
]
if pid > 0 [ ;-- Parent process
nfds: 0
pfds: as red/platform/pollfd! allocate 3 * size? red/platform/pollfd!
if in? [
waitend?: true
fds: pfds + nfds
fds/fd: fd-in/writing
set-flags-fd fds/fd
fds/events: POLLOUT
platform/io-close fd-in/reading
nfds: nfds + 1
]
if out? [ ;- Create buffer for output
waitend?: true
out-buf/count: 0
out-buf/buffer: allocate READ_BUFFER_SIZE
fds: pfds + nfds
fds/fd: fd-out/reading
set-flags-fd fds/fd
fds/events: POLLIN
platform/io-close fd-out/writing
nfds: nfds + 1
]
if err? [ ;- Create buffer for error
waitend?: true
err-buf/count: 0
err-buf/buffer: allocate READ_BUFFER_SIZE
fds: pfds + nfds
fds/fd: fd-err/reading
set-flags-fd fds/fd
fds/events: POLLIN
platform/io-close fd-err/writing
nfds: nfds + 1
]
n: nfds
while [n > 0][
i: platform/waitpid pid :status 1 ;-- WNOHANG: 1
if i = -1 [break]
if i = pid [
if out-buf <> null [
nbytes: platform/io-read fd-out/reading out-buf/buffer + out-len out-size - out-len
if nbytes > 0 [out-len: out-len + nbytes]
platform/io-close fd-out/reading
]
if err-buf <> null [
nbytes: platform/io-read fd-err/reading err-buf/buffer + err-len err-size - err-len
if nbytes > 0 [err-len: err-len + nbytes]
platform/io-close fd-err/reading
]
break
]
if 0 > platform/poll pfds nfds -1 [n: 0]
i: 0
while [all [i < nfds n > 0]][
fds: pfds + i
i: i + 1
revents: fds/events >>> 16
case [
revents and POLLERR <> 0 [
platform/io-close fds/fd
fds/fd: -1
n: n - 1
]
revents and POLLOUT <> 0 [
nbytes: platform/io-write fds/fd in-buf/buffer + input-len in-buf/count - input-len
if nbytes <= 0 [n: 0 nbytes: in-buf/count]
input-len: input-len + nbytes
if input-len >= in-buf/count [
platform/io-close fds/fd
fds/fd: -1
n: n - 1
]
]
revents and POLLIN <> 0 [
case [
all [out? fds/fd = fd-out/reading][
pbuf: out-buf
offset: :out-len
size: :out-size
]
all [err? fds/fd = fd-err/reading][
pbuf: err-buf
offset: :err-len
size: :err-size
]
true [0]
]
until [
to-read: size/value - offset/value
nbytes: platform/io-read fds/fd pbuf/buffer + offset/value to-read ;-- read pipe, store into buffer
if nbytes < 0 [break]
if nbytes = 0 [
platform/io-close fds/fd
fds/fd: -1
n: n - 1
]
offset/value: offset/value + nbytes
if offset/value >= size/value [
size/value: size/value + READ_BUFFER_SIZE
pbuf/buffer: realloc pbuf/buffer size/value
if null? pbuf/buffer [n: -1 break]
]
nbytes <> to-read
]
pbuf/count: offset/value
]
revents and POLLHUP <> 0 [platform/io-close fds/fd fds/fd: -1 n: n - 1]
revents and POLLNVAL <> 0 [n: -1]
true [0]
]
]
]
if console? [waitend?: yes]
if waitend? [
platform/waitpid pid :status 0 ;-- Wait child process terminate
either (status and 00FFh) <> 0 [ ;-- a signal occured. Low byte contains stop code
pid: -1
][
pid: status >> 8 ;-- High byte contains exit code
]
]
free as byte-ptr! pfds
]
pid
] ; call
] ; #default
] ; #switch
call: func [
cmd [red-string!]
wait? [logic!]
show? [logic!]
console? [logic!]
shell? [logic!]
in-str [red-string!]
redirout [red-string!]
redirerr [red-string!]
return: [red-integer!]
/local
pid [integer!]
inp [p-buffer!]
out [p-buffer!]
err [p-buffer!]
pad1 [float!]
pad2 [float!]
pad3 [float!]
len [integer!]
cstr [c-string!]
type [integer!]
][
#if gui-console? = yes [if console? [--NOT_IMPLEMENTED--]]
pad1: 0.0
pad2: pad1
pad3: pad1
inp: null
out: null
err: null
if in-str <> null [
switch TYPE_OF(in-str) [
TYPE_STRING [
PLATFORM_TO_CSTR(cstr in-str len)
inp: as p-buffer! :pad1 ;@@ a trick as we cannot declare struct on stack
inp/buffer: as byte-ptr! cstr
inp/count: len
]
TYPE_BINARY [
inp: as p-buffer! :pad1
inp/buffer: binary/rs-head as red-binary! in-str
inp/count: binary/rs-length? as red-binary! in-str
]
TYPE_FILE [
inp: as p-buffer! :pad1
inp/buffer: as byte-ptr! file/to-OS-path as red-file! in-str
inp/count: -1
]
]
]
if redirout <> null [
out: as p-buffer! :pad2
either TYPE_OF(redirout) = TYPE_FILE [
out/buffer: as byte-ptr! file/to-OS-path as red-file! redirout
out/count: -1
][
out/buffer: null
out/count: 0
]
]
if redirerr <> null [
err: as p-buffer! :pad3
either TYPE_OF(redirerr) = TYPE_FILE [
err/buffer: as byte-ptr! file/to-OS-path as red-file! redirerr
err/count: -1
][
err/buffer: null
err/count: 0
]
]
PLATFORM_TO_CSTR(cstr cmd len)
pid: OS-call cstr wait? show? console? shell? inp out err
if all [redirout <> null out/count <> -1][
insert-string redirout out shell? console?
free out/buffer
]
if all [redirerr <> null err/count <> -1][
insert-string redirerr err shell? console?
free err/buffer
]
integer/box pid
]
] ; context
| Red | 5 | GalenIvanov/red | runtime/call.reds | [
"BSL-1.0",
"BSD-3-Clause"
] |
# This is a first attempt and some type of logging
def log [message:any] {
let now = (date now | date format '%Y%m%d_%H%M%S.%f')
let mess = $"($now)|DBG|($message)(char nl)"
echo $mess | autoview
} | Nu | 3 | x3rAx/nu_scripts | stdlib_candidate/logging.nu | [
"MIT"
] |
<mt:Ignore>
# =======================
#
# ウィジェット-検索
#
# =======================
</mt:Ignore>
<div class="widget widget-search">
<form method="get" class="form-inline" id="search" action="<mt:AdminCGIPath /><mt:SearchScript />">
<input class="form-control form-control-sm" type="text" name="search" value="<mt:IfStatic><mt:IfStraightSearch><mt:SearchString escape="html" /></mt:IfStraightSearch></mt:IfStatic>">
<mt:If name="search_results">
<input type="hidden" name="IncludeBlogs" value="<mt:SearchIncludeBlogs />">
<input type="hidden" name="limit" value="<mt:Var name="ec_search_count" />">
<mt:Else>
<input type="hidden" name="IncludeBlogs" value="<mt:BlogParentWebsite><mt:WebsiteID /><mt:Blogs include_blogs="children">,<mt:BlogID /></mt:Blogs></mt:BlogParentWebsite>">
<input type="hidden" name="limit" value="<mt:Var name="ec_search_count" op="*" value="2" />">
</mt:If>
<button class="btn btn-sm btn-secondary" type="submit"><i class="fa fa-search"></i><span class="sr-only">検索</span></button>
</form>
<!-- /.widget --></div>
| MTML | 2 | webbingstudio/mt_theme_echo_bootstrap | dist/themes/echo_bootstrap/templates/widget_search.mtml | [
"MIT"
] |
#pragma once
#include <ATen/record_function.h>
#include <c10/util/Optional.h>
namespace torch {
namespace autograd {
namespace profiler {
// Creates a new profiling scope using RecordFunction and invokes its starting
// callbacks.
TORCH_API at::Tensor record_function_enter(const std::string& name, const c10::optional<std::string>& args = c10::nullopt);
// Schedules RecordFunction's end callbacks to be run on completion of a future.
TORCH_API c10::intrusive_ptr<c10::ivalue::Future> _call_end_callbacks_on_fut(
const at::Tensor& handle,
const c10::intrusive_ptr<c10::ivalue::Future>& fut);
} // namespace profiler
} // namespace autograd
} // namespace torch
| C | 4 | xiaohanhuang/pytorch | torch/csrc/autograd/record_function_ops.h | [
"Intel"
] |
[[messaging.kafka]]
== Apache Kafka Support
https://kafka.apache.org/[Apache Kafka] is supported by providing auto-configuration of the `spring-kafka` project.
Kafka configuration is controlled by external configuration properties in `spring.kafka.*`.
For example, you might declare the following section in `application.properties`:
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
kafka:
bootstrap-servers: "localhost:9092"
consumer:
group-id: "myGroup"
----
TIP: To create a topic on startup, add a bean of type `NewTopic`.
If the topic already exists, the bean is ignored.
See {spring-boot-autoconfigure-module-code}/kafka/KafkaProperties.java[`KafkaProperties`] for more supported options.
[[messaging.kafka.sending]]
=== Sending a Message
Spring's `KafkaTemplate` is auto-configured, and you can autowire it directly in your own beans, as shown in the following example:
[source,java,indent=0,subs="verbatim"]
----
include::{docs-java}/messaging/kafka/sending/MyBean.java[]
----
NOTE: If the property configprop:spring.kafka.producer.transaction-id-prefix[] is defined, a `KafkaTransactionManager` is automatically configured.
Also, if a `RecordMessageConverter` bean is defined, it is automatically associated to the auto-configured `KafkaTemplate`.
[[messaging.kafka.receiving]]
=== Receiving a Message
When the Apache Kafka infrastructure is present, any bean can be annotated with `@KafkaListener` to create a listener endpoint.
If no `KafkaListenerContainerFactory` has been defined, a default one is automatically configured with keys defined in `spring.kafka.listener.*`.
The following component creates a listener endpoint on the `someTopic` topic:
[source,java,indent=0,subs="verbatim"]
----
include::{docs-java}/messaging/kafka/receiving/MyBean.java[]
----
If a `KafkaTransactionManager` bean is defined, it is automatically associated to the container factory.
Similarly, if a `RecordFilterStrategy`, `ErrorHandler`, `CommonErrorHandler`, `AfterRollbackProcessor` or `ConsumerAwareRebalanceListener` bean is defined, it is automatically associated to the default factory.
Depending on the listener type, a `RecordMessageConverter` or `BatchMessageConverter` bean is associated to the default factory.
If only a `RecordMessageConverter` bean is present for a batch listener, it is wrapped in a `BatchMessageConverter`.
TIP: A custom `ChainedKafkaTransactionManager` must be marked `@Primary` as it usually references the auto-configured `KafkaTransactionManager` bean.
[[messaging.kafka.streams]]
=== Kafka Streams
Spring for Apache Kafka provides a factory bean to create a `StreamsBuilder` object and manage the lifecycle of its streams.
Spring Boot auto-configures the required `KafkaStreamsConfiguration` bean as long as `kafka-streams` is on the classpath and Kafka Streams is enabled by the `@EnableKafkaStreams` annotation.
Enabling Kafka Streams means that the application id and bootstrap servers must be set.
The former can be configured using `spring.kafka.streams.application-id`, defaulting to `spring.application.name` if not set.
The latter can be set globally or specifically overridden only for streams.
Several additional properties are available using dedicated properties; other arbitrary Kafka properties can be set using the `spring.kafka.streams.properties` namespace.
See also <<features#messaging.kafka.additional-properties>> for more information.
To use the factory bean, wire `StreamsBuilder` into your `@Bean` as shown in the following example:
[source,java,indent=0,subs="verbatim"]
----
include::{docs-java}/messaging/kafka/streams/MyKafkaStreamsConfiguration.java[]
----
By default, the streams managed by the `StreamBuilder` object it creates are started automatically.
You can customize this behavior using the configprop:spring.kafka.streams.auto-startup[] property.
[[messaging.kafka.additional-properties]]
=== Additional Kafka Properties
The properties supported by auto configuration are shown in <<application-properties#application-properties>>.
Note that, for the most part, these properties (hyphenated or camelCase) map directly to the Apache Kafka dotted properties.
See the Apache Kafka documentation for details.
The first few of these properties apply to all components (producers, consumers, admins, and streams) but can be specified at the component level if you wish to use different values.
Apache Kafka designates properties with an importance of HIGH, MEDIUM, or LOW.
Spring Boot auto-configuration supports all HIGH importance properties, some selected MEDIUM and LOW properties, and any properties that do not have a default value.
Only a subset of the properties supported by Kafka are available directly through the `KafkaProperties` class.
If you wish to configure the producer or consumer with additional properties that are not directly supported, use the following properties:
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
kafka:
properties:
"[prop.one]": "first"
admin:
properties:
"[prop.two]": "second"
consumer:
properties:
"[prop.three]": "third"
producer:
properties:
"[prop.four]": "fourth"
streams:
properties:
"[prop.five]": "fifth"
----
This sets the common `prop.one` Kafka property to `first` (applies to producers, consumers and admins), the `prop.two` admin property to `second`, the `prop.three` consumer property to `third`, the `prop.four` producer property to `fourth` and the `prop.five` streams property to `fifth`.
You can also configure the Spring Kafka `JsonDeserializer` as follows:
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
kafka:
consumer:
value-deserializer: "org.springframework.kafka.support.serializer.JsonDeserializer"
properties:
"[spring.json.value.default.type]": "com.example.Invoice"
"[spring.json.trusted.packages]": "com.example.main,com.example.another"
----
Similarly, you can disable the `JsonSerializer` default behavior of sending type information in headers:
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
kafka:
producer:
value-serializer: "org.springframework.kafka.support.serializer.JsonSerializer"
properties:
"[spring.json.add.type.headers]": false
----
IMPORTANT: Properties set in this way override any configuration item that Spring Boot explicitly supports.
[[messaging.kafka.embedded]]
=== Testing with Embedded Kafka
Spring for Apache Kafka provides a convenient way to test projects with an embedded Apache Kafka broker.
To use this feature, annotate a test class with `@EmbeddedKafka` from the `spring-kafka-test` module.
For more information, please see the Spring for Apache Kafka {spring-kafka-docs}#embedded-kafka-annotation[reference manual].
To make Spring Boot auto-configuration work with the aforementioned embedded Apache Kafka broker, you need to remap a system property for embedded broker addresses (populated by the `EmbeddedKafkaBroker`) into the Spring Boot configuration property for Apache Kafka.
There are several ways to do that:
* Provide a system property to map embedded broker addresses into configprop:spring.kafka.bootstrap-servers[] in the test class:
[source,java,indent=0,subs="verbatim"]
----
include::{docs-java}/messaging/kafka/embedded/property/MyTest.java[tag=*]
----
* Configure a property name on the `@EmbeddedKafka` annotation:
[source,java,indent=0,subs="verbatim"]
----
include::{docs-java}/messaging/kafka/embedded/annotation/MyTest.java[]
----
* Use a placeholder in configuration properties:
[source,yaml,indent=0,subs="verbatim",configprops,configblocks]
----
spring:
kafka:
bootstrap-servers: "${spring.embedded.kafka.brokers}"
----
| AsciiDoc | 4 | techAi007/spring-boot | spring-boot-project/spring-boot-docs/src/docs/asciidoc/messaging/kafka.adoc | [
"Apache-2.0"
] |
def fill:"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";
def e:"日本語";
e == "日本語"
| JSONiq | 0 | aakropotkin/jq | tests/utf8-truncate.jq | [
"CC-BY-3.0"
] |
regular-module:
module.run:
- name: test.echo
- text: hello
custom-module:
module.run:
- name: test.recho
- text: hello
| SaltStack | 2 | byteskeptical/salt | tests/integration/files/file/base/custom_module.sls | [
"Apache-2.0"
] |
div {
em > 'Foo'
bar > 'Bar'
}
---
div {
em >
'Foo'
bar >
'Bar'
}
===================================
div {
em > 'Foo'
bar > 'Bar'
}
span; section > div {
'A'
"B"
}
---
div {
em >
'Foo'
bar >
'Bar'
}
span;
section >
div {
'A'
'B'
}
=====================================
define foo
as (div.baz)
extends Bar{
h5 > 'Foo'
}
----
define foo as (div.baz) extends Bar {
h5 >
'Foo'
} | Mask | 2 | atmajs/MaskJS | test/tmpl/stringify/node_many.mask | [
"MIT"
] |
inline fun {{receiver}}.{{functionName}}(): {{returnType}} = {{functionName}}() {}
inline fun {{receiver}}.{{functionName}}({{additionalParams}}{{#additionalParams}}, {{/additionalParams}}init: (@AnkoViewDslMarker {{lambdaArgType}}).() -> Unit): {{returnType}} {
return ankoView({{factory}}, theme = 0) { init() }
}
inline fun {{receiver}}.{{themedFunctionName}}(theme: Int = 0): {{returnType}} = {{themedFunctionName}}(theme) {}
inline fun {{receiver}}.{{themedFunctionName}}(theme: Int = 0, {{additionalParams}}{{#additionalParams}}, {{/additionalParams}}init: (@AnkoViewDslMarker {{lambdaArgType}}).() -> Unit): {{returnType}} {
return ankoView({{factory}}, theme) { init() }
}
| HTML+Django | 4 | tobiasdubois/anko | anko/props/templates/view.mustache | [
"Apache-2.0"
] |
Feature: hub issue transfer
Background:
Given I am in "git://github.com/octocat/hello-world.git" git repo
And I am "srafi1" on github.com with OAuth token "OTOKEN"
Scenario: Transfer issue
Given the GitHub API server:
"""
count = 0
post('/graphql') {
halt 401 unless request.env['HTTP_AUTHORIZATION'] == 'token OTOKEN'
count += 1
case count
when 1
assert :query => /\A\s*query\(/,
:variables => {
:issue => 123,
:sourceOwner => "octocat",
:sourceRepo => "hello-world",
:targetOwner => "octocat",
:targetRepo => "spoon-knife",
}
json :data => {
:source => { :issue => { :id => "ISSUE-ID" } },
:target => { :id => "REPO-ID" },
}
when 2
assert :query => /\A\s*mutation\(/,
:variables => {
:issue => "ISSUE-ID",
:repo => "REPO-ID",
}
json :data => {
:transferIssue => { :issue => { :url => "the://url" } }
}
else
status 400
json :message => "request not stubbed"
end
}
"""
When I successfully run `hub issue transfer 123 spoon-knife`
Then the output should contain exactly "the://url\n"
Scenario: Transfer to another owner
Given the GitHub API server:
"""
count = 0
post('/graphql') {
count += 1
case count
when 1
assert :variables => {
:targetOwner => "monalisa",
:targetRepo => "playground",
}
json :data => {}
when 2
json :errors => [
{ :message => "New repository must have the same owner as the current repository" },
]
else
status 400
json :message => "request not stubbed"
end
}
"""
When I run `hub issue transfer 123 monalisa/playground`
Then the exit status should be 1
Then the stderr should contain exactly:
"""
API error: New repository must have the same owner as the current repository\n
"""
| Cucumber | 4 | JLLeitschuh/hub | features/issue-transfer.feature | [
"MIT"
] |
module.exports (terms) =
scope (statementList, alwaysGenerateFunction: false, variables: []) =
if (statementList.length == 1 @and @not alwaysGenerateFunction)
statement = statementList.0
if (statement.isReturn)
statement.expression
else
statement
else
statements = terms.asyncStatements (statementList)
fn = terms.functionCall (terms.subExpression (terms.block (variables, statements)), variables)
if (statements.returnsPromise)
terms.resolve(fn.alreadyPromise())
else
fn
| PogoScript | 3 | Sotrek/Alexa | Alexa_Cookbook/Workshop/StatePop/4_IOT/tests/node_modules/aws-sdk/node_modules/cucumber/node_modules/pogo/lib/terms/scope.pogo | [
"MIT"
] |
xquery version "1.0-ml";
import module namespace config = "http://marklogic.com/data-hub/config" at "/com.marklogic.hub/config.xqy";
import module namespace hub-test = "http://marklogic.com/data-hub/test" at "/test/data-hub-test-helper.xqy";
hub-test:clear-jobs-database(),
hub-test:clear-provenance-records($config:FINAL-DATABASE),
hub-test:clear-provenance-records($config:STAGING-DATABASE)
;
import module namespace hub-test = "http://marklogic.com/data-hub/test" at "/test/data-hub-test-helper.xqy";
import module namespace test = "http://marklogic.com/test" at "/test/test-helper.xqy";
hub-test:load-jobs($test:__CALLER_FILE__); | XQuery | 3 | iveyMarklogic/marklogic-data-hub | marklogic-data-hub/src/test/ml-modules/root/test/suites/data-hub/5/data-services/provenance/migrateProvenance/setup.xqy | [
"Apache-2.0"
] |
; Define a Dog object
Dog = Origin mimic do(
barkPhrase = "woof!"
bark = method(barkPhrase))
; Create Chihuahua subclass of Dog
Chihuahua = Dog mimic do(
barkPhrase = "yip!"
)
"Dog bark: #{Dog bark}" println
"Chihuahua bark: #{Chihuahua bark}" println
; make an instance
myChihuahua = Chihuahua mimic do(
barkPhrase = "¡Yo Quiero Taco Bell!"
)
"myChihuahua bark: #{myChihuahua bark}" println
| Ioke | 4 | olabini/ioke | examples/misc/inheritance.ik | [
"ICU",
"MIT"
] |
// @target: es5
var x = "\u{67";
| TypeScript | 1 | nilamjadhav/TypeScript | tests/cases/conformance/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings21_ES5.ts | [
"Apache-2.0"
] |
/*
MYTHREAD: the unique thread index
June. 6, 2008
Liao
*/
#include <stdio.h>
int main(){
printf("I am thread: %d \n", MYTHREAD);
return 0;
}
| Unified Parallel C | 1 | maurizioabba/rose | tests/CompileTests/UPC_tests/mythread.upc | [
"BSD-3-Clause"
] |
ifdef !disable_ox_libspicing below
-- -- _replacing babeling_ by staying on Onyx naming ball court side -- --
ifdef !disable_ox_typarchy
-- Crystal compatibility aliases:
-- The aliased types are hard coded into the compiler
type Object = Any
type Class = Kind
type Symbol = Tag
type Pointer = Ptr
type Array = List
type NamedTuple = TTup
type Hash = Map
type Proc = Fn
-- Full name alias for String
type String = Str
-- Full name alias for Tup
type Tuple = Tup
-- Short alias that is natural to use in everyday code
type Li = List
-- type Li<T> = List<T>
-- Full name alias for TTup
type TaggedTuple = TTup
-- type TaggedTuple<..:T> = TTup<..:T>
-- type Crystal = LavaFlow
-- -- The pre babeling way, staying on Crystal naming ball court side -- --
else
-- Onyx compat aliases for when `typicide_disabled` or
-- `all_deviations_disabled`
-- The aliased types are hard coded into the compiler
type Any = Object 'official-name
type Kind = Class 'official-name
type Tag = Symbol 'official-name
type Ptr = Pointer
type List = Array 'official-name
type Li = List
type Tup = Tuple
type TaggedTuple = NamedTuple 'official-name
type TTup = NamedTuple
type Map = Hash 'official-name
type Fn = Proc 'official-name
type Str = String
-- type LavaFlow = Crystal
end
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- This defeats the possibility of the "standard int" pragma. Consider allowing
-- the pragma even though it's defined as "platform int". Iff we define it as
-- "pointer width int" on the other hand - which would be more reasonable - it
-- should not be redefinable.
ifdef x86_64
type Intp = Int64
type Real = Float64
else
type Intp = Int32
type Real = Float64
end
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- Note: (idfr =~ /[A-Z]\d{1,3}/) is now reserved for type parameters/vars only.
-- Will change.
-- Reconsider!
--
type I8 = Int8 'official-name
type I16 = Int16 'official-name
type I32 = Int32 'official-name
type I64 = Int64 'official-name
type U8 = UInt8 'official-name
type U16 = UInt16 'official-name
type U32 = UInt32 'official-name
type U64 = UInt64 'official-name
type F32 = Float32 'official-name
type F64 = Float64 'official-name
| Ox | 4 | ozra/onyx-lang | src/onyx_prelude_intro.ox | [
"Apache-2.0"
] |
# This is a basic /etc/fstab that mounts up all of the virtual filesystems
# that older versions of Finit used to mount internally. It can serve as a
# starting point for systems running Busybox's mount implementation. Make
# sure that CONFIG_FEATURE_MOUNT_HELPERS enabled; as this is required
# create the /dev/{pts,shm} directories.
devtmpfs /dev devtmpfs defaults 0 0
mkdir#-p /dev/pts helper none 0 0
devpts /dev/pts devpts mode=620,ptmxmode=0666 0 0
mkdir#-p /dev/shm helper none 0 0
tmpfs /dev/shm tmpfs mode=0777 0 0
proc /proc proc defaults 0 0
tmpfs /tmp tmpfs mode=1777,nosuid,nodev 0 0
tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0
sysfs /sys sysfs defaults 0 0
| BitBake | 3 | srand/finit | contrib/fstab.bb | [
"MIT"
] |
redo-ifchange gitvars.pre prodname
read PROD <prodname
exec >$3
# Fix each line from gitvars.pre where git may or may not have already
# substituted the variables. If someone generated a tarball with 'git archive',
# then the data will have been substituted already. If we're in a checkout of
# the git repo, then it won't, but we can just ask git to do the substitutions
# right now.
while read line; do
# Lines *may* be of the form: $Format: ... $
x=${line#\$Format:} # remove prefix
if [ "$x" != "$line" ]; then
# git didn't substitute it
redo-always # git this from the git repo
x=${x%\$} # remove trailing $
if [ "$x" = "%d" ]; then
tag=$(git describe --match="$PROD-*")
x="(tag: $tag)"
else
x=$(git log -1 --pretty=format:"$x")
fi
fi
echo "$x"
done <gitvars.pre
redo-stamp <$3
| Stata | 4 | BlameJohnny/redo | redo/version/gitvars.do | [
"Apache-2.0"
] |
a { value: 10p\32x } | CSS | 0 | vjpr/swc | css/parser/tests/fixture/esbuild/misc/0LKvnY2GhG7ss8EXa0t6tQ/input.css | [
"Apache-2.0",
"MIT"
] |
#include "script_component.hpp"
/*
Name: TFAR_fnc_parseFrequenciesInput
Author: Dorbedo
parses a frequencies array and fills it up with default values
does a valuecheck and ignores wrong values
Arguments:
0: argument name <STRING>
1: min amount of channels <NUMBER>
2: min freq <NUMBER>
3: max freq <NUMBER>
4: round power <NUMBER>
Return Value:
parsed frequencies <ARRAY>
Example:
["[50.16549, 51122, 52, 53, 4, 5, 56, 57, 58, 59, ""asd"", asd, ""88""]", 8, 87, 40] call TFAR_fnc_parseFrequenciesInput;
Public: Yes
*/
params [
["_valueString", "", [""]],
["_minChannels", TFAR_MAX_CHANNELS, [TFAR_MAX_CHANNELS]],
["_maxFreq", TFAR_MAX_SW_FREQ, [TFAR_MAX_SW_FREQ]],
["_minFreq", TFAR_MIN_SW_FREQ, [TFAR_MIN_SW_FREQ]],
["_roundPower", TFAR_FREQ_ROUND_POWER, [TFAR_FREQ_ROUND_POWER]]
];
// add brackets if they are missing
private _firstChar = _valueString select [0,1];
private _lastChar = _valueString select [(count _valueString) - 1,1];
if (_firstChar != "[") then {
_valueString = "[" + _valueString;
};
if (_lastChar != "]") then {
_valueString = _valueString + "]";
};
_valueString = _valueString splitString " " joinString ""; //remove spaces
private _parsedValue = (parseSimpleArray _valueString) apply {
if (IS_STRING(_x)) then {parseNumber _x} else {_x};
};
_parsedValue = _parsedValue select {
IS_NUMBER(_x) &&
{_x >= _minFreq} &&
{_x <= _maxFreq}
};
_parsedValue = _parsedValue apply {QTFAR_ROUND_FREQUENCYP(_x,_roundPower)};
if ((count _parsedValue) < _minChannels) then {
private _randomized = [_minChannels,_maxFreq,_minFreq,_roundPower] call DFUNC(generateFrequencies);
_parsedValue append _randomized;
_parsedValue resize _minChannels;
};
_parsedValue
| SQF | 5 | MrDj200/task-force-arma-3-radio | addons/core/functions/fnc_parseFrequenciesInput.sqf | [
"RSA-MD"
] |
/*##############################################################################
HPCC SYSTEMS software Copyright (C) 2012 HPCC Systems®.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
############################################################################## */
#option ('globalFold', false);
datalibx := service
string141 addressclean(const string src, const string filter) : eclrtl,library='dab',entrypoint='rtlStringFilter';
end;
Address1 := '41 S TRINGO DRIVE #104';
Address2 := 'DELRAY BEACH FL 33445';
Clean_Address := datalibx.addressclean(Address1,Address2);
d := dataset('~local::rkc::person', { varstring15 name, varunicode10 id, unsigned8 filepos{virtual(fileposition)} }, flat);
i := index(d, {d}, '~key.person');
a1 := i((name in [V'RICHARD',(varstring)(Clean_Address[1..10])]) and id = (varunicode)U'ABC');
output(a1);
a2 := i((name in [(varstring)(Clean_Address[1..10])]));
output(a2);
a3 := i((name = ((varstring)Clean_Address)[1..10]));
output(a3);
| ECL | 3 | miguelvazq/HPCC-Platform | ecl/regress/indexread17.ecl | [
"Apache-2.0"
] |
#!/usr/bin/gnuplot -persist
set title "Boehm-GC: Pause Times - Classic vs. Optimized Modes" font ",18"
set xlabel "Interval #"
set xtics out nomirror
set xtic 1000000
set grid noxtics ytics
set ylabel "Pause Time [ms]"
set terminal pdfcairo transparent enhanced fontscale 0.5 size 5.00in, 3.00in
set key box at 4810000,77 Left enhanced opaque samplen 3 height 0.5
set output "GC_bench.pdf"
plot "boehm_full.txt" title "{/Monospace -gc boehm\\_full}" w i lt 1, "boehm_incr_opt.txt" title "{/Monospace -gc boehm\\_incr\\_opt}" w i lt 2, "boehm_full_opt.txt" title "{/Monospace -gc boehm\\_full\\_opt}" w i lt 7
set output
set terminal svg size 900,600 dynamic enhanced
set output "GC_bench.svg"
replot
set output
# EOF
| Gnuplot | 4 | gamemaker1/v | vlib/v/tests/bench/gcboehm/GC_bench.plt | [
"MIT"
] |
reverted:
--- ../../../../external/protobuf_2.5.0/src/google/protobuf/io/zero_copy_stream_impl_lite.cc 2013-02-26 09:56:42.000000000 -0800
+++ ./src/google/protobuf/io/zero_copy_stream_impl_lite.cc 2016-01-27 09:52:04.639700200 -0800
@@ -32,6 +32,8 @@
// Based on original Protocol Buffers design by
// Sanjay Ghemawat, Jeff Dean, and others.
+#include <algorithm>
+
#include <google/protobuf/io/zero_copy_stream_impl_lite.h>
#include <google/protobuf/stubs/common.h>
#include <google/protobuf/stubs/stl_util.h>
reverted:
--- ../../../../external/protobuf_2.5.0/vsprojects/libprotobuf.vcxproj 2016-01-27 08:25:20.359514100 -0800
+++ ./vsprojects/libprotobuf.vcxproj 2016-01-27 09:51:29.043053000 -0800
@@ -72,7 +72,7 @@
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
@@ -86,7 +86,7 @@
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
@@ -99,7 +99,7 @@
<ClCompile>
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader />
<WarningLevel>Level3</WarningLevel>
@@ -110,7 +110,7 @@
<ClCompile>
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOBUF_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
reverted:
--- ../../../../external/protobuf_2.5.0/vsprojects/libprotoc.vcxproj 2016-01-27 08:25:20.390734900 -0800
+++ ./vsprojects/libprotoc.vcxproj 2016-01-27 09:53:20.927148800 -0800
@@ -72,7 +72,7 @@
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<MinimalRebuild>true</MinimalRebuild>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
@@ -86,7 +86,7 @@
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<Optimization>Disabled</Optimization>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
<RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary>
<PrecompiledHeader>
@@ -99,7 +99,7 @@
<ClCompile>
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader />
<WarningLevel>Level3</WarningLevel>
@@ -110,7 +110,7 @@
<ClCompile>
<AdditionalOptions>/wd4244 /wd4267 /wd4018 /wd4355 /wd4800 /wd4251 /wd4996 /wd4146 /wd4305 %(AdditionalOptions)</AdditionalOptions>
<AdditionalIncludeDirectories>../src;.;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
+ <PreprocessorDefinitions>_SILENCE_STDEXT_HASH_DEPRECATION_WARNINGS;WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
- <PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;_USRDLL;LIBPROTOC_EXPORTS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<PrecompiledHeader>
</PrecompiledHeader>
| Diff | 1 | zadcha/rethinkdb | mk/support/pkg/patch/protobuf_1-fix-build-errors.patch | [
"Apache-2.0"
] |
module openconfig-wifi-types {
yang-version "1";
// namespace
namespace "http://openconfig.net/yang/wifi/wifi-types";
// Assign this module a prefix to be used by other modules, when imported.
prefix "oc-wifi-types";
import openconfig-extensions { prefix oc-ext; }
// Some required meta
organization "OpenConfig working group";
contact
"OpenConfig working group
www.openconfig.net";
description
"This module contains a set of WiFi-specific type definitions
that are used in the openconfig-wifi modules. It can be
imported by any module to make use of these types.";
oc-ext:openconfig-version "0.1.2";
revision "2020-05-19" {
description
"Update namespace per new directory structure";
reference "0.1.2";
}
revision "2020-03-24" {
description
"Update namespace and fix BETTER_CHANNEL enum";
reference "0.1.1";
}
revision "2017-07-25" {
description
"Initial revision";
reference "0.1.0";
}
//typdef statements
typedef channels-type {
type uint8 {
range "1..14 | 36 | 40 | 44| 48 | 52 | 56 | 60 | 64 | 100 | 104 | 108 | 112 | 116 | 120 | 124 | 128 | 132 | 136 | 140 | 144 | 149 | 153 | 157 | 161 | 165";
}
description
"Type to specify all the WiFi channels available for use. This is
a superset of what may be allowed by any one particular regulatory
domain.";
}
// identity statements
identity CLIENT_STATE {
description
"Base type to specify the current state of a Client.";
}
identity ASSOCIATED {
base CLIENT_STATE;
description
"Client has finished 802.11 Association phase. This implies 'Open' system,
or 802.11 Authentication complete.";
}
identity L2AUTH_REQD {
base CLIENT_STATE;
description
"Client has Assocated, but not L2 Authenticated (e.g. 802.1X)";
}
identity L3AUTH_REQD {
base CLIENT_STATE;
description
"Client has Assocated, but not L3 Authenticated (e.g. Captive Portal)";
}
identity DHCP_REQD {
base CLIENT_STATE;
description
"Client has Associated & Authenticated, but has not obtained IP address.";
}
identity AUTHENTICATED {
base CLIENT_STATE;
description
"Client has fully Authenticated & permitted to access network resources.";
}
identity L2AUTH_FAILURE_REJECT {
base CLIENT_STATE;
description
"L2 failure, due to RADIUS Access-Reject.";
}
identity L2AUTH_FAILURE_TIMEOUT {
base CLIENT_STATE;
description
"L2 failure, due to RADIUS timeout.";
}
identity L3AUTH_FAILURE {
base CLIENT_STATE;
description
"L3 failure. Could be incorrect CP credentials or higher layer
Captive Portal issues.";
}
identity DHCP_FAILURE {
base CLIENT_STATE;
description
"Client has Associated & Authenticated but has failed to recieve an IP
address, utilizing DHCP.";
}
identity POWERSAVE {
base CLIENT_STATE;
description
"AP has recieved a PS frame, indicating the client is currently in a
powersave state.";
}
identity BLACKLISTED {
base CLIENT_STATE;
description
"This client has been blacklisted, through either L2 (MAC) or higher-level
(signature) mechanisms.";
}
identity AP_STATE {
description "The Up/Down state of an AP.";
}
identity UP {
base AP_STATE;
description
"The AP is in the up state.";
}
identity DOWN {
base AP_STATE;
description
"The AP is in the down state.";
}
identity UPGRADING {
base AP_STATE;
description
"The AP is in the Downgrading firmware state.";
}
// Possible basic-rates are: 1, 2, 5.5, 6, 9, 11, 12, 18, 24, 36, 48, 54 //
identity DATA_RATE {
description "base type to specify available Data-rates.";
}
identity RATE_1MB {
base DATA_RATE;
description "1 Mbps DSSS PHY";
}
identity RATE_2MB {
base DATA_RATE;
description "2 Mbps DSSS PHY";
}
identity RATE_5.5MB {
base DATA_RATE;
description "5.5 Mbps DSSS PHY";
}
identity RATE_6MB {
base DATA_RATE;
description "6 Mbps OFDM PHY";
}
identity RATE_9MB {
base DATA_RATE;
description "9 Mbps OFDM PHY";
}
identity RATE_11MB {
base DATA_RATE;
description "11 Mbps DSSS PHY";
}
identity RATE_12MB {
base DATA_RATE;
description "12 Mbps OFDM PHY";
}
identity RATE_18MB {
base DATA_RATE;
description "18 Mbps OFDM PHY";
}
identity RATE_24MB {
base DATA_RATE;
description "24 Mbps OFDM PHY";
}
identity RATE_36MB {
base DATA_RATE;
description "36 Mbps OFDM PHY";
}
identity RATE_48MB {
base DATA_RATE;
description "48 Mbps OFDM PHY";
}
identity RATE_54MB {
base DATA_RATE;
description "54 Mbps OFDM PHY";
}
identity OPERATING_FREQUENCY {
description "Operating frequency of a Radio or SSID.";
}
identity FREQ_2GHZ {
base OPERATING_FREQUENCY;
description "The Radio or SSID will operate at 2.4GHz only.";
}
identity FREQ_5GHZ {
base OPERATING_FREQUENCY;
description "The Radio or SSID will operate at 5GHz only.";
}
identity FREQ_2_5_GHZ {
base OPERATING_FREQUENCY;
description
"The Radio or SSID will be dual-band; operating in
both 2.4 & 5GHz frequencies.
Dual-band Radio typically refers to a Monitor-mode radio, hopping
between frequencies, dwelling for a configurable amount of time on
each frequency.";
}
identity CLIENT_CAPABILITIES {
description
"Client capabilities, as reported by Assoc. Req. or
Probe Req. frames.";
}
identity MU_BEAMFORMER {
base CLIENT_CAPABILITIES;
description "Whether this STA can MU-MIMO Beamform.";
}
identity MU_BEAMFORMEE {
base CLIENT_CAPABILITIES;
description "Whether this STA can Rx MU-MIMO Beamformed frames.";
}
identity DOT_11R {
base CLIENT_CAPABILITIES;
description
"Whether this STA supports 802.11r. Note, must be
enabled on BSS for this to be accurate.";
}
identity DOT_11V {
base CLIENT_CAPABILITIES;
description
"Whether this STA supports 802.11v BSS Transition. Note, must
be enabled on BSS for this to be accurate; unless Probe Req.
are observied in addition to Assoc. Req.";
}
identity CHANGE_REASON_TYPE {
description
"Base type to specify the reason an Access Point
has changed channels.";
}
identity DFS {
base CHANGE_REASON_TYPE;
description
"DFS hit occured.";
}
identity NOISE {
base CHANGE_REASON_TYPE;
description
"Excessive amounts of non-802.11 Noise occured.";
}
identity ERRORS {
base CHANGE_REASON_TYPE;
description
"Excessive reception of frames which
failed the FCS occured.";
}
identity BETTER_CHANNEL {
base CHANGE_REASON_TYPE;
description
"A less utilized channel exists. eg CCI avoidance
led to this channel-change.";
}
// Extend channel-change reasons here, when applicable.
}
| YANG | 4 | fossabot/public | release/models/wifi/openconfig-wifi-types.yang | [
"Apache-2.0"
] |
#! /bin/sh /usr/share/dpatch/dpatch-run
## cassandra_logdir_fix.dpatch by Michael Shuler <michael@pbandjelly.org>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: No description.
@DPATCH@
diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' cassandra~/bin/cassandra cassandra/bin/cassandra
--- cassandra~/bin/cassandra 2014-09-15 19:42:28.000000000 -0500
+++ cassandra/bin/cassandra 2014-09-15 21:15:15.627505503 -0500
@@ -134,7 +134,7 @@
props="$3"
class="$4"
cassandra_parms="-Dlogback.configurationFile=logback.xml"
- cassandra_parms="$cassandra_parms -Dcassandra.logdir=$CASSANDRA_HOME/logs"
+ cassandra_parms="$cassandra_parms -Dcassandra.logdir=/var/log/cassandra"
cassandra_parms="$cassandra_parms -Dcassandra.storagedir=$cassandra_storagedir"
if [ "x$pidpath" != "x" ]; then
| Darcs Patch | 3 | xsir/stratio-cassandra | debian/patches/002cassandra_logdir_fix.dpatch | [
"Apache-2.0"
] |
=pod
=head1 NAME
EVP_PKEY_missing_parameters, EVP_PKEY_copy_parameters, EVP_PKEY_parameters_eq,
EVP_PKEY_cmp_parameters, EVP_PKEY_eq,
EVP_PKEY_cmp - public key parameter and comparison functions
=head1 SYNOPSIS
#include <openssl/evp.h>
int EVP_PKEY_missing_parameters(const EVP_PKEY *pkey);
int EVP_PKEY_copy_parameters(EVP_PKEY *to, const EVP_PKEY *from);
int EVP_PKEY_parameters_eq(const EVP_PKEY *a, const EVP_PKEY *b);
int EVP_PKEY_eq(const EVP_PKEY *a, const EVP_PKEY *b);
The following functions have been deprecated since OpenSSL 3.0, and can be
hidden entirely by defining B<OPENSSL_API_COMPAT> with a suitable version value,
see L<openssl_user_macros(7)>:
int EVP_PKEY_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b);
int EVP_PKEY_cmp(const EVP_PKEY *a, const EVP_PKEY *b);
=head1 DESCRIPTION
The function EVP_PKEY_missing_parameters() returns 1 if the public key
parameters of B<pkey> are missing and 0 if they are present or the algorithm
doesn't use parameters.
The function EVP_PKEY_copy_parameters() copies the parameters from key
B<from> to key B<to>. An error is returned if the parameters are missing in
B<from> or present in both B<from> and B<to> and mismatch. If the parameters
in B<from> and B<to> are both present and match this function has no effect.
The function EVP_PKEY_parameters_eq() checks the parameters of keys
B<a> and B<b> for equality.
The function EVP_PKEY_eq() checks the keys B<a> and B<b> for equality,
including their parameters if they are available.
=head1 NOTES
The main purpose of the functions EVP_PKEY_missing_parameters() and
EVP_PKEY_copy_parameters() is to handle public keys in certificates where the
parameters are sometimes omitted from a public key if they are inherited from
the CA that signed it.
The deprecated functions EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters() differ in
their return values compared to other _cmp() functions. They are aliases for
EVP_PKEY_eq() and EVP_PKEY_parameters_eq().
The function EVP_PKEY_cmp() previously only checked the key parameters
(if there are any) and the public key, assuming that there always was
a public key and that private key equality could be derived from that.
Because it's no longer assumed that the private key in an L<EVP_PKEY(3)> is
always accompanied by a public key, the comparison can not rely on public
key comparison alone.
Instead, EVP_PKEY_eq() (and therefore also EVP_PKEY_cmp()) now compares:
=over 4
=item 1.
the key parameters (if there are any)
=item 2.
the public keys or the private keys of the two B<EVP_PKEY>s, depending on
what they both contain.
=back
=begin comment
Exactly what is compared is ultimately at the discretion of the provider
that holds the key, as they will compare what makes sense to them that fits
the selector bits they are passed.
=end comment
=head1 RETURN VALUES
The function EVP_PKEY_missing_parameters() returns 1 if the public key
parameters of B<pkey> are missing and 0 if they are present or the algorithm
doesn't use parameters.
These functions EVP_PKEY_copy_parameters() returns 1 for success and 0 for
failure.
The functions EVP_PKEY_cmp_parameters(), EVP_PKEY_parameters_eq(),
EVP_PKEY_cmp() and EVP_PKEY_eq() return 1 if their
inputs match, 0 if they don't match, -1 if the key types are different and
-2 if the operation is not supported.
=head1 SEE ALSO
L<EVP_PKEY_CTX_new(3)>,
L<EVP_PKEY_keygen(3)>
=head1 HISTORY
The EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters() functions were deprecated in
OpenSSL 3.0.
The EVP_PKEY_eq() and EVP_PKEY_parameters_eq() were added in OpenSSL 3.0 to
replace EVP_PKEY_cmp() and EVP_PKEY_cmp_parameters().
=head1 COPYRIGHT
Copyright 2006-2021 The OpenSSL Project Authors. All Rights Reserved.
Licensed under the Apache License 2.0 (the "License"). You may not use
this file except in compliance with the License. You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.
=cut
| Pod | 4 | lbbxsxlz/openssl | doc/man3/EVP_PKEY_copy_parameters.pod | [
"Apache-2.0"
] |
{{>partial_header}}
using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using Swashbuckle.AspNetCore.Annotations;
using Swashbuckle.AspNetCore.SwaggerGen;
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
using {{packageName}}.Attributes;
{{#hasAuthMethods}}using {{packageName}}.Security;{{/hasAuthMethods}}
using Microsoft.AspNetCore.Authorization;
using {{modelPackage}};
namespace {{packageName}}.Controllers
{ {{#operations}}
/// <summary>
/// {{description}}
/// </summary>{{#description}}
[Description("{{description}}")]{{/description}}
[ApiController]
public class {{classname}}Controller : ControllerBase{{#interfaceController}}, I{{classname}}Controller{{/interfaceController}}
{ {{#operation}}
/// <summary>
/// {{#summary}}{{summary}}{{/summary}}
/// </summary>
{{#notes}}/// <remarks>{{notes}}</remarks>{{/notes}}{{#allParams}}
/// <param name="{{paramName}}">{{description}}</param>{{/allParams}}{{#responses}}
/// <response code="{{code}}">{{message}}</response>{{/responses}}
[{{httpMethod}}]
[Route("{{{basePathWithoutHost}}}{{{path}}}")]
{{#authMethods}}
{{#-first}}
{{#isBasic}}
[Authorize(AuthenticationSchemes = BasicAuthenticationHandler.SchemeName)]
{{/isBasic}}
{{#isBearer}}
[Authorize(AuthenticationSchemes = BearerAuthenticationHandler.SchemeName)]
{{/isBearer}}
{{#isApiKey}}
[Authorize(AuthenticationSchemes = ApiKeyAuthenticationHandler.SchemeName)]
{{/isApiKey}}
{{/-first}}
{{/authMethods}}
[ValidateModelState]
[SwaggerOperation("{{operationId}}")]{{#responses}}{{#dataType}}
[SwaggerResponse(statusCode: {{code}}, type: typeof({{&dataType}}), description: "{{message}}")]{{/dataType}}{{^dataType}}{{/dataType}}{{/responses}}
public virtual IActionResult {{operationId}}({{#allParams}}{{>pathParam}}{{>queryParam}}{{>bodyParam}}{{>formParam}}{{>headerParam}}{{#hasMore}}, {{/hasMore}}{{/allParams}})
{ {{#responses}}
{{#dataType}}
//TODO: Uncomment the next line to return response {{code}} or use other options such as return this.NotFound(), return this.BadRequest(..), ...
// return StatusCode({{code}}, default({{&dataType}}));
{{/dataType}}
{{^dataType}}
//TODO: Uncomment the next line to return response {{code}} or use other options such as return this.NotFound(), return this.BadRequest(..), ...
// return StatusCode({{code}});
{{/dataType}}{{/responses}}
{{#returnType}}
string exampleJson = null;
{{#examples}}
exampleJson = "{{{example}}}";
{{/examples}}
{{#isListCollection}}{{>listReturn}}{{/isListCollection}}{{^isListCollection}}{{#isMapContainer}}{{>mapReturn}}{{/isMapContainer}}{{^isMapContainer}}{{>objectReturn}}{{/isMapContainer}}{{/isListCollection}}
{{!TODO: defaultResponse, examples, auth, consumes, produces, nickname, externalDocs, imports, security}}
//TODO: Change the data returned
return new ObjectResult(example);{{/returnType}}{{^returnType}}
throw new NotImplementedException();{{/returnType}}
}
{{/operation}}
}
{{/operations}}
}
| HTML+Django | 5 | jjssoftware/swagger-codegen | modules/swagger-codegen/src/main/resources/aspnetcore/3.0/controller.mustache | [
"Apache-2.0"
] |
(*
* The MIT License (MIT)
*
* Copyright (c) 2014 Hongwei Xi
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.)
*)
// Source: https://github.com/githwxi/ATS-Postiats-contrib/blob/0f26aa0df8542d2ae21df9be1e13208f66f571d6/contrib/libats-/hwxi/teaching/mygrading/HATS/csv_parse.hats
(* ****** ****** *)
//
// Author: Hongwei Xi
// Authoremail: gmhwxiATgmailDOTcom
// Start time: the first of July, 2016
//
(* ****** ****** *)
//
#ifdef
MYGRADING_HATS
#then
#else
//
extern
fun
csv_parse_line
(
line: string
) : List0_vt(Strptr1)
//
#endif // #ifdef
//
(* ****** ****** *)
local
//
staload
UN = "prelude/SATS/unsafe.sats"
//
extern
fun{}
getpos(): int
//
extern
fun{}
is_end(): bool
//
extern
fun{}
char_at(): int
//
extern
fun{}
Strptr1_at(i0: int): Strptr1
//
extern
fun{}
rmove(): void
extern
fun{}
rmove_while(test: char -<cloref1> bool): void
//
in (* in-of-local *)
//
implement
{}(*tmp*)
rmove_while
(test) = let
//
val c0 = char_at()
//
in
//
if c0 >= 0 then
if test(int2char0(c0)) then (rmove(); rmove_while(test)) else ()
// end of [if]
//
end // end of [rmove_while]
(* ****** ****** *)
implement
csv_parse_line
(line) = let
//
val line = g1ofg0(line)
//
var i: int = 0
val p_i = addr@i
//
val n0 = sz2i(length(line))
//
macdef get_i() = $UN.ptr0_get<int>(p_i)
macdef inc_i() = $UN.ptr0_addby<int>(p_i, 1)
macdef set_i(i0) = $UN.ptr0_set<int>(p_i, ,(i0))
//
implement
getpos<>() = get_i()
//
implement
is_end<>() = get_i() >= n0
//
implement
char_at<>() = let
val i = get_i()
val i = ckastloc_gintGte(i, 0)
//
in
if i < n0 then char2u2int0(line[i]) else ~1
end // end of [char_at]
//
implement
Strptr1_at<>(i0) = let
//
val i1 = get_i()
val i0 = ckastloc_gintGte(i0, 0)
val i1 = ckastloc_gintBtwe(i1, i0, n0)
//
in
$UN.castvwtp0(
string_make_substring(line, i2sz(i0), i2sz(i1-i0))
) (* $UN.castvwtp0 *)
end // end of [Strptr1_at]
//
implement
rmove<>() =
if get_i() < n0 then inc_i()
//
vtypedef res_vt = List0_vt(Strptr1)
//
fun
loop
(
i: int, res: res_vt
) : res_vt =
if
is_end()
then res
else let
val () =
(
if i > 0 then rmove()
)
val i0 = getpos()
var f0 =
(
lam@(c: char) =<clo> c != ','
)
val () = rmove_while($UN.cast(addr@f0))
val s0 = Strptr1_at(i0)
in
loop(i+1, list_vt_cons(s0, res))
end // end of [else]
//
in
list_vt_reverse(loop(0(*i*), list_vt_nil((*void*))))
end // end of [csv_parse_line]
end // end of [local]
(* ****** ****** *)
(* end of [csv_parse.hats] *)
| ATS | 5 | JavascriptID/sourcerer-app | src/test/resources/samples/langs/ATS/csv_parse.hats | [
"MIT"
] |
enum A { A }
enum B { B }
fn main() { let x: A = A::A; match x { B::B => { } } } //~ ERROR mismatched types
| Rust | 3 | Eric-Arellano/rust | src/test/ui/match/match-tag-nullary.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
{{! Copyright (c) Avanade. Licensed under the MIT License. See https://github.com/Avanade/Beef }}
/*
* This file is automatically generated; any changes will be lost.
*/
#nullable enable
#pragma warning disable
using Beef.Data.Database.Cdc;
using Beef.Entities;
using Beef.Mapper;
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
using Newtonsoft.Json;
{{/ifeq}}
using System;
using System.Collections.Generic;
{{#if UsesGlobalIdentifier}}
using System.Threading.Tasks;
{{/if}}
namespace {{Root.NamespaceCdcPublisher}}.Entities
{
/// <summary>
/// Represents the CDC model for the root (parent) database table '{{Schema}}.{{Name}}'.
/// </summary>
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
{{/ifeq}}
public partial class {{ModelName}}Cdc : ITableKey, IETag{{#ifval ColumnIsDeleted}}, ICdcLogicallyDeleted{{/ifval}}{{#if IdentifierMapping}}, IGlobalIdentifier{{/if}}{{#if UsesGlobalIdentifier}}, ICdcLinkIdentifierMapping{{/if}}
{
{{#if IdentifierMapping}}
/// <summary>
/// Gets or sets the <see cref="IGlobalIdentifier.GlobalId"/>.
/// </summary>
[JsonProperty("globalId", DefaultValueHandling = DefaultValueHandling.Ignore)]
public string? GlobalId { get; set; }
{{/if}}
{{#each SelectedEntityColumns}}
/// <summary>
/// Gets or sets the '{{sentence NameAlias}}' ({{Parent.Schema}}.{{Parent.Name}}.{{#ifval IdentifierMappingParent}}{{IdentifierMappingParent.Name}}{{else}}{{Name}}{{/ifval}}) {{#ifval IdentifierMappingParent}}mapped identifier{{else}}column{{/ifval}} value.
/// </summary>
{{#unless IgnoreSerialization}}
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonProperty("{{camel NameAlias}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
{{/ifeq}}
{{/unless}}
public {{DotNetType}}{{#if IsDotNetNullable}}?{{/if}} {{pascal NameAlias}} { get; set; }
{{#unless @last}}
{{else}}
{{#ifne Parent.JoinNonCdcChildren.Count 0}}
{{/ifne}}
{{/unless}}
{{/each}}
{{#each JoinNonCdcChildren}}
{{#each Columns}}
/// <summary>
/// Gets or sets the '{{Name}}' column value (join table '{{Parent.Schema}}.{{Parent.Name}}').
/// </summary>
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonProperty("{{camel NameAlias}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
{{/ifeq}}
public {{DotNetType}}{{#if IsDotNetNullable}}?{{/if}} {{pascal NameAlias}} { get; set; }
{{#unless @last}}
{{else}}
{{#unless @../last}}
{{/unless}}
{{/unless}}
{{/each}}
{{/each}}
{{#each JoinCdcChildren}}
{{#ifeq JoinCardinality 'OneToMany'}}
/// <summary>
/// Gets or sets the related (one-to-many) <see cref="{{Parent.ModelName}}Cdc.{{ModelName}}Collection"/> (database table '{{Schema}}.{{TableName}}').
/// </summary>
[JsonProperty("{{camel PropertyName}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
[MapperIgnore()]
public {{Parent.ModelName}}Cdc.{{ModelName}}CdcCollection? {{PropertyName}} { get; set; }
{{else}}
/// <summary>
/// Gets or sets the related (one-to-one) <see cref="{{Parent.ModelName}}Cdc.{{ModelName}}"/> (database table '{{Schema}}.{{TableName}}').
/// </summary>
[JsonProperty("{{camel PropertyName}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
[MapperIgnore()]
public {{Parent.ModelName}}Cdc.{{ModelName}}Cdc? {{PropertyName}} { get; set; }
{{/ifeq}}
{{/each}}
/// <summary>
/// Gets or sets the entity tag (calculated as a JSON serialized hash value).
/// </summary>
[JsonProperty("etag", DefaultValueHandling = DefaultValueHandling.Ignore)]
[MapperIgnore()]
public string? ETag { get; set; }
{{#ifval ColumnIsDeleted}}
/// <summary>
/// Indicates whether the entity is logically deleted ('{{ColumnIsDeleted.Name}}' column).
/// </summary>
[MapperProperty("{{ColumnIsDeleted.Name}}")]
public bool? IsDeleted { get; set; }
/// <summary>
/// Clears all the non-key (i.e non <see cref="Beef.Entities.UniqueKey"/>) properties where <see cref="IsDeleted"/> as the data is technically non-existing.
/// </summary>
public void ClearWhereDeleted()
{
if (!IsDeleted.HasValue || !IsDeleted.Value)
return;
{{#each SelectedEntityColumns}}
{{#unless IncludeColumnOnDelete}}
{{pascal NameAlias}} = default{{#if IsDotNetNullable}}!{{/if}};
{{/unless}}
{{/each}}
{{#each JoinNonCdcChildren}}
{{#each Columns}}
{{#unless IncludeColumnOnDelete}}
{{pascal NameAlias}} = default{{#if IsDotNetNullable}}!{{/if}};
{{/unless}}
{{/each}}
{{/each}}
{{#each JoinCdcChildren}}
{{PropertyName}} = default!;
{{/each}}
}
{{/ifval}}
/// <summary>
/// <inheritdoc/>
/// </summary>
[MapperIgnore()]
public UniqueKey UniqueKey => new UniqueKey({{#each PrimaryKeyColumns}}{{#unless @first}}, {{/unless}}{{pascal NameAlias}}{{/each}});
/// <summary>
/// <inheritdoc/>
/// </summary>
[MapperIgnore()]
public string[] UniqueKeyProperties => new string[] { {{#each PrimaryKeyColumns}}{{#unless @first}}, {{/unless}}nameof({{pascal NameAlias}}){{/each}} };
{{#each PrimaryKeyColumns}}
/// <summary>
/// Gets or sets the '{{sentence NameAlias}}' <i>primary key</i> ({{Parent.Schema}}.{{Parent.Name}}.{{Name}}) column value (from the actual database table primary key; not from the change-data-capture source).
/// </summary>
/// <remarks>Will have a <c>default</c> value when the record no longer exists within the database (i.e. has been physically deleted).</remarks>
public {{DotNetType}}{{#if IsDotNetNullable}}?{{/if}} TableKey_{{pascal NameAlias}} { get; set; }
{{/each}}
/// <summary>
/// <inheritdoc/>
/// </summary>
/// <remarks><inheritdoc/></remarks>
public UniqueKey TableKey => new UniqueKey({{#each PrimaryKeyColumns}}{{#unless @first}}, {{/unless}}TableKey_{{pascal NameAlias}}{{/each}});
{{#if UsesGlobalIdentifier}}
/// <summary>
/// Link any new global identifiers.
/// </summary>
/// <param name="coll">The <see cref="CdcValueIdentifierMappingCollection"/>.</param>
/// <param name="idGen">The <see cref="IStringIdentifierGenerator"/>.</param>
public async Task LinkIdentifierMappingsAsync(CdcValueIdentifierMappingCollection coll, IStringIdentifierGenerator idGen)
{
{{#if IdentifierMapping}}
coll.AddAsync(GlobalId == default, async () => new CdcValueIdentifierMapping { Value = this, Property = nameof(GlobalId), Schema = "{{Schema}}", Table = "{{Name}}", Key = this.CreateIdentifierMappingKey(), GlobalId = await idGen.GenerateIdentifierAsync<{{ModelName}}Cdc>().ConfigureAwait(false) });
{{/if}}
{{#each SelectedEntityColumns}}
{{#ifval IdentifierMappingParent}}
coll.AddAsync({{NameAlias}} == default && {{IdentifierMappingParent.NameAlias}} != default, async () => new CdcValueIdentifierMapping { Value = this, Property = nameof({{NameAlias}}), Schema = "{{IdentifierMappingSchema}}", Table = "{{IdentifierMappingTable}}", Key = {{IdentifierMappingParent.NameAlias}}.ToString(), GlobalId = await idGen.GenerateIdentifierAsync<{{Parent.ModelName}}Cdc>().ConfigureAwait(false) });
{{/ifval}}
{{/each}}
{{#each JoinCdcChildren}}
{{#ifeq JoinCardinality 'OneToMany'}}
{{PropertyName}}?.ForEach(async item => await item.LinkIdentifierMappingsAsync(coll, idGen).ConfigureAwait(false));
{{else}}
await ({{PropertyName}}?.LinkIdentifierMappingsAsync(coll, idGen) ?? Task.CompletedTask).ConfigureAwait(false);
{{/ifeq}}
{{/each}}
}
/// <summary>
/// Re-link the new global identifiers.
/// </summary>
/// <param name="coll">The <see cref="CdcValueIdentifierMappingCollection"/>.</param>
public void RelinkIdentifierMappings(CdcValueIdentifierMappingCollection coll)
{
{{#if IdentifierMapping}}
coll.Invoke(GlobalId == default, () => GlobalId = coll.GetGlobalId(this, nameof(GlobalId)));
{{/if}}
{{#each SelectedEntityColumns}}
{{#ifval IdentifierMappingParent}}
coll.Invoke({{NameAlias}} == default && {{IdentifierMappingParent.NameAlias}} != default, () => {{NameAlias}} = coll.GetGlobalId(this, nameof({{NameAlias}})));
{{/ifval}}
{{/each}}
{{#each JoinCdcChildren}}
{{#ifeq JoinCardinality 'OneToMany'}}
{{PropertyName}}?.ForEach(item => item.RelinkIdentifierMappings(coll));
{{else}}
{{PropertyName}}?.RelinkIdentifierMappings(coll);
{{/ifeq}}
{{/each}}
}
{{/if}}
{{#each CdcJoins}}
#region {{ModelName}}Cdc
/// <summary>
/// Represents the CDC model for the related (child) database table '{{Schema}}.{{TableName}}' (known uniquely as '{{Name}}').
/// </summary>
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonObject(MemberSerialization = MemberSerialization.OptIn)]
{{/ifeq}}
public partial class {{ModelName}}Cdc : IUniqueKey{{#if IdentifierMapping}}, IGlobalIdentifier{{/if}}{{#if UsesGlobalIdentifier}}, ICdcLinkIdentifierMapping{{/if}}
{
{{#if IdentifierMapping}}
/// <summary>
/// Gets or sets the <see cref="IGlobalIdentifier.GlobalId"/>.
/// </summary>
[JsonProperty("globalId", DefaultValueHandling = DefaultValueHandling.Ignore)]
public string? GlobalId { get; set; }
{{/if}}
{{#each Columns}}
/// <summary>
/// Gets or sets the '{{sentence NameAlias}}' ({{Parent.Schema}}.{{Parent.Name}}.{{#ifval IdentifierMappingParent}}{{IdentifierMappingParent.Name}}{{else}}{{Name}}{{/ifval}}) {{#ifval IdentifierMappingParent}}mapped identifier{{else}}column{{/ifval}} value.
/// </summary>
{{#unless IgnoreSerialization}}
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonProperty("{{camel NameAlias}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
{{/ifeq}}
{{/unless}}
public {{DotNetType}}{{#if IsDotNetNullable}}?{{/if}} {{pascal NameAlias}} { get; set; }
{{#unless @last}}
{{else}}
{{#ifne Parent.JoinNonCdcChildren.Count 0}}
{{/ifne}}
{{/unless}}
{{/each}}
{{#each JoinNonCdcChildren}}
{{#each Columns}}
/// <summary>
/// Gets or sets the '{{Name}}' column value (join table '{{Parent.Schema}}.{{Parent.Name}}').
/// </summary>
{{#ifeq Root.JsonSerializer 'Newtonsoft'}}
[JsonProperty("{{camel NameAlias}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
{{/ifeq}}
public {{DotNetType}}{{#if IsDotNetNullable}}?{{/if}} {{pascal NameAlias}} { get; set; }
{{#unless @last}}
{{else}}
{{#unless @../last}}
{{/unless}}
{{/unless}}
{{/each}}
{{/each}}
{{#each JoinCdcChildren}}
{{#ifeq JoinCardinality 'OneToMany'}}
/// <summary>
/// Gets or sets the related (one-to-many) <see cref="{{Parent.ModelName}}Cdc.{{ModelName}}Collection"/> (database table '{{Schema}}.{{TableName}}').
/// </summary>
[JsonProperty("{{camel PropertyName}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
[MapperIgnore()]
public {{Parent.ModelName}}Cdc.{{ModelName}}CdcCollection? {{PropertyName}} { get; set; }
{{else}}
/// <summary>
/// Gets or sets the related (one-to-one) <see cref="{{Parent.ModelName}}Cdc.{{ModelName}}"/> (database table '{{Schema}}.{{TableName}}').
/// </summary>
[JsonProperty("{{camel PropertyName}}", DefaultValueHandling = {{#if SerializationEmitDefault}}DefaultValueHandling.Include{{else}}DefaultValueHandling.Ignore{{/if}})]
[MapperIgnore()]
public {{Parent.ModelName}}Cdc.{{ModelName}}Cdc? {{PropertyName}} { get; set; }
{{/ifeq}}
{{/each}}
/// <summary>
/// <inheritdoc/>
/// </summary>
[MapperIgnore()]
public UniqueKey UniqueKey => new UniqueKey({{#each PrimaryKeyColumns}}{{#unless @first}}, {{/unless}}{{pascal NameAlias}}{{/each}});
/// <summary>
/// <inheritdoc/>
/// </summary>
[MapperIgnore()]
public string[] UniqueKeyProperties => new string[] { {{#each PrimaryKeyColumns}}{{#unless @first}}, {{/unless}}nameof({{pascal NameAlias}}){{/each}} };
{{#each JoinHierarchyReverse}}
{{#unless @last}}
{{#each OnSelectColumns}}
/// <summary>
/// Gets or sets the '{{Parent.JoinTo}}_{{Name}}' additional joining column (informational); for internal join use only (not serialized).
/// </summary>
public {{ToDbColumn.DotNetType}} {{Parent.JoinTo}}_{{Name}} { get; set; }
{{/each}}
{{/unless}}
{{/each}}
{{#if Parent.UsesGlobalIdentifier}}
/// <summary>
/// Link any new global identifiers.
/// </summary>
/// <param name="coll">The <see cref="CdcValueIdentifierMappingCollection"/>.</param>
/// <param name="idGen">The <see cref="IStringIdentifierGenerator"/>.</param>
public async Task LinkIdentifierMappingsAsync(CdcValueIdentifierMappingCollection coll, IStringIdentifierGenerator idGen)
{
{{#if IdentifierMapping}}
coll.AddAsync(GlobalId == default, async () => new CdcValueIdentifierMapping { Value = this, Property = nameof(GlobalId), Schema = "{{Schema}}", Table = "{{TableName}}", Key = this.CreateIdentifierMappingKey(), GlobalId = await idGen.GenerateIdentifierAsync<{{ModelName}}Cdc>().ConfigureAwait(false) });
{{/if}}
{{#each Columns}}
{{#ifval IdentifierMappingParent}}
coll.AddAsync({{NameAlias}} == default && {{IdentifierMappingParent.NameAlias}} != default, async () => new CdcValueIdentifierMapping { Value = this, Property = nameof({{NameAlias}}), Schema = "{{IdentifierMappingSchema}}", Table = "{{IdentifierMappingTable}}", Key = {{IdentifierMappingParent.NameAlias}}.ToString(), GlobalId = await idGen.GenerateIdentifierAsync<{{Parent.ModelName}}Cdc>().ConfigureAwait(false) });
{{/ifval}}
{{/each}}
}
/// <summary>
/// Re-link the new global identifiers.
/// </summary>
/// <param name="coll">The <see cref="CdcValueIdentifierMappingCollection"/>.</param>
public void RelinkIdentifierMappings(CdcValueIdentifierMappingCollection coll)
{
{{#if IdentifierMapping}}
coll.Invoke(GlobalId == default, () => GlobalId = coll.GetGlobalId(this, nameof(GlobalId)));
{{/if}}
{{#each Columns}}
{{#ifval IdentifierMappingParent}}
coll.Invoke({{NameAlias}} == default && {{IdentifierMappingParent.NameAlias}} != default, () => {{NameAlias}} = coll.GetGlobalId(this, nameof({{NameAlias}})));
{{/ifval}}
{{/each}}
}
{{/if}}
}
/// <summary>
/// Represents the CDC model for the related (child) database table collection '{{Schema}}.{{Name}}'.
/// </summary>
public partial class {{ModelName}}CdcCollection : List<{{ModelName}}Cdc> { }
#endregion
{{/each}}
}
}
#pragma warning restore
#nullable restore | Harbour | 5 | ciaranodonnell/Beef | tools/Beef.CodeGen.Core/Templates/DbCdcEntity_cs.hb | [
"MIT"
] |
input Params {
# Id
id: ID
# Name
name: String
}
| GraphQL | 3 | fuelingtheweb/prettier | tests/graphql_newline/input.graphql | [
"MIT"
] |
import QtQuick.Layouts 1.4
import QtQuick 2.4
import QtQuick.Controls 2.0
import org.kde.kirigami 2.4 as Kirigami
import Mycroft 1.0 as Mycroft
Mycroft.Delegate {
id: systemImageFrame
skillBackgroundColorOverlay: "#000000"
property bool hasTitle: sessionData.title.length > 0 ? true : false
property bool hasCaption: sessionData.caption.length > 0 ? true : false
ColumnLayout {
id: systemImageFrameLayout
anchors.fill: parent
Kirigami.Heading {
id: systemImageTitle
visible: hasTitle
enabled: hasTitle
Layout.fillWidth: true
Layout.preferredHeight: paintedHeight + Kirigami.Units.largeSpacing
level: 3
text: sessionData.title
wrapMode: Text.Wrap
font.family: "Noto Sans"
font.weight: Font.Bold
}
AnimatedImage {
id: systemImageDisplay
visible: true
enabled: true
Layout.fillWidth: true
Layout.fillHeight: true
source: sessionData.image
property var fill: sessionData.fill
onFillChanged: {
console.log(fill)
if(fill == "PreserveAspectCrop"){
systemImageDisplay.fillMode = 2
} else if (fill == "PreserveAspectFit"){
console.log("inFit")
systemImageDisplay.fillMode = 1
} else if (fill == "Stretch"){
systemImageDisplay.fillMode = 0
} else {
systemImageDisplay.fillMode = 0
}
}
Rectangle {
id: systemImageCaptionBox
visible: hasCaption
enabled: hasCaption
anchors.bottom: parent.bottom
anchors.left: parent.left
anchors.right: parent.right
height: systemImageCaption.paintedHeight
color: "#95000000"
Kirigami.Heading {
id: systemImageCaption
level: 2
anchors.left: parent.left
anchors.leftMargin: Kirigami.Units.largeSpacing
anchors.right: parent.right
anchors.rightMargin: Kirigami.Units.largeSpacing
anchors.verticalCenter: parent.verticalCenter
text: sessionData.caption
wrapMode: Text.Wrap
font.family: "Noto Sans"
font.weight: Font.Bold
}
}
}
}
}
| QML | 3 | assistent-cat/mycroft-core | mycroft/res/ui/SYSTEM_AnimatedImageFrame.qml | [
"Apache-2.0"
] |
mes 2,2,4
exa edata
edata
con 0
| Eiffel | 0 | wyan/ack | mach/em24/libend/edata.e | [
"BSD-3-Clause"
] |
package com.baeldung.doubles;
import java.math.BigDecimal;
public class SplitFloatingPointNumbers {
public static void main(String[] args) {
double doubleNumber = 24.04;
splitUsingFloatingTypes(doubleNumber);
splitUsingString(doubleNumber);
splitUsingBigDecimal(doubleNumber);
}
private static void splitUsingFloatingTypes(double doubleNumber) {
System.out.println("Using Floating Point Arithmetics:");
int intPart = (int) doubleNumber;
System.out.println("Double Number: "+doubleNumber);
System.out.println("Integer Part: "+ intPart);
System.out.println("Decimal Part: "+ (doubleNumber - intPart));
}
private static void splitUsingString(double doubleNumber) {
System.out.println("Using String Operations:");
String doubleAsString = String.valueOf(doubleNumber);
int indexOfDecimal = doubleAsString.indexOf(".");
System.out.println("Double Number: "+doubleNumber);
System.out.println("Integer Part: "+ doubleAsString.substring(0, indexOfDecimal));
System.out.println("Decimal Part: "+ doubleAsString.substring(indexOfDecimal));
}
private static void splitUsingBigDecimal(double doubleNumber) {
System.out.println("Using BigDecimal Operations:");
BigDecimal bigDecimal = new BigDecimal(String.valueOf(doubleNumber));
int intValue = bigDecimal.intValue();
System.out.println("Double Number: "+bigDecimal.toPlainString());
System.out.println("Integer Part: "+intValue);
System.out.println("Decimal Part: "+bigDecimal.subtract(new BigDecimal(intValue)).toPlainString());
}
}
| Java | 4 | DBatOWL/tutorials | core-java-modules/core-java-lang-math/src/main/java/com/baeldung/doubles/SplitFloatingPointNumbers.java | [
"MIT"
] |
/* fourth.css */
#project-title {
font-family: serif;
} | CSS | 2 | ravitejavalluri/brackets | test/spec/ExtensionUtils-test-files/sub dir/fourth.css | [
"MIT"
] |
_seq '67 69 71 72 74 76' gen_vals
_args 4 zeros
72 mtof 4 pset
_amps '1.0 0.5 0.25 0.5' gen_vals
_pad 262144 4 p 40 'amps' gen_padsynth
1 p 40 200 scale 4 * bpm2dur dmetro
0.6 maytrig dup 0 _args tset
0.002 0.004 0.2 tenvx
0 p 0 4 scale floor _seq tget
0.1 port
mtof
dup 2 _args tset
0.2 1
0 _args tget 0 5 trand dup floor 3 p cf
2 p 0.5 port 0 3 scale
fm *
2 _args tget 4 p /
0.1 0 _pad osc +
2 _args tget 1.5 * 4 p / 0.1 0 _pad osc +
dup dup 5 8 3000 zrev drop 0.3 * +
| SourcePawn | 2 | wtholliday/Sporth | util/pd/distant_intelligence.sp | [
"MIT",
"Unlicense"
] |
{} (:package |test-math)
:configs $ {} (:init-fn |test-math.main/main!) (:reload-fn |test-math.main/reload!)
:files $ {}
|test-math.main $ {}
:ns $ quote
ns test-math.main $ :require
:defs $ {}
|test-numbers $ quote
defn test-numbers ()
assert= 3 (+ 1 2)
assert= 10 (+ 1 2 3 4)
assert= 4 (- 10 1 2 3)
assert= 24 (* 1 2 3 4)
assert= 15 (/ 360 2 3 4)
assert= (- 2) -2
assert= (/ 2) 0.5
assert-detect identity $ < 1 2 3 4 5
assert-detect identity $ > 10 8 6 4
assert-detect empty? nil
assert-detect empty? ([])
do true
|log-title $ quote
defn log-title (title)
echo
echo title
echo
|test-math $ quote
defn test-math ()
echo "|sin 1" $ sin 1
echo "|cos 1" $ cos 1
assert= 1 $ + (pow (sin 1) 2) (pow (cos 1) 2)
assert= 1 $ floor 1.1
assert= 2 $ ceil 1.1
assert= 1 $ round 1.1
assert= 2 $ round 1.8
assert= 2 $ .round 1.8
assert= 0.8 $ .fract 1.8
assert= 81 $ pow 3 4
assert= 1 $ &number:rem 33 4
assert= 9 $ sqrt 81
echo |PI &PI
echo |E &E
|test-compare $ quote
defn test-compare ()
assert= 4 $ max $ [] 1 2 3 4
assert= 1 $ min $ [] 1 2 3 4
assert-detect identity $ /= 1 2
assert= (&compare 1 |1) -1
assert= (&compare |1 1) 1
assert= (&compare 1 1) 0
assert= (&compare |1 |1) 0
assert= (&compare 1 :k) -1
assert= (&compare :k |k) -1
assert= (&compare :k ({})) -1
assert= (&compare :k ([])) -1
assert= (&compare :k (#{})) -1
assert= (&compare :k (:: 0 0)) -1
|test-hex $ quote
fn ()
log-title "|Testing hex"
assert= 16 0x10
assert= 15 0xf
|test-integer $ quote
fn ()
log-title "|Testing integer"
assert= true (round? 1)
assert= false (round? 1.1)
|test-methods $ quote
fn ()
log-title "|Testing number methods"
assert= 1 $ .floor 1.1
assert= 16 $ .pow 2 4
assert= 2 $ .ceil 1.1
assert= 0 $ .empty 1.1
assert= 2.1 $ .inc 1.1
assert= 1 $ .round 1.1
assert= false $ .round? 1.1
assert= true $ .round? 1
assert= 2 $ .sqrt 4
assert= 3 $ .rem 3 6
assert= 2 $ .rem 11 3
; "has problem in comparing float numbers"
assert= 0.1 $ .fract 1.1
|test-bit-math $ quote
fn ()
log-title "|testing bit math"
assert= 0 $ bit-shr 1 1
assert= 1 $ bit-shr 2 1
assert= 1 $ bit-shr 4 2
assert= 2 $ bit-shl 1 1
assert= 4 $ bit-shl 2 1
assert= 16 $ bit-shl 4 2
|main! $ quote
defn main! ()
log-title "|Testing numbers"
test-numbers
log-title "|Testing math"
test-math
log-title "|Testing compare"
test-compare
test-hex
test-integer
test-methods
test-bit-math
do true
:proc $ quote ()
:configs $ {} (:extension nil)
| Cirru | 5 | calcit-lang/calcit.rs | calcit/test-math.cirru | [
"MIT"
] |
xof 0303txt 0032
template XSkinMeshHeader {
<3cf169ce-ff7c-44ab-93c0-f78f62d172e2>
WORD nMaxSkinWeightsPerVertex;
WORD nMaxSkinWeightsPerFace;
WORD nBones;
}
template VertexDuplicationIndices {
<b8d65549-d7c9-4995-89cf-53a9a8b031e3>
DWORD nIndices;
DWORD nOriginalVertices;
array DWORD indices[nIndices];
}
template SkinWeights {
<6f0d123b-bad2-4167-a0d0-80224f25fabb>
STRING transformNodeName;
DWORD nWeights;
array DWORD vertexIndices[nWeights];
array FLOAT weights[nWeights];
Matrix4x4 matrixOffset;
}
template AnimTicksPerSecond {
<9e415a43-7ba6-4a73-8743-b73d47e88476>
DWORD AnimTicksPerSecond;
}
AnimTicksPerSecond {
24;
}
Material Material {
0.639216;0.639216;0.639216;1.000000;;
96.078430;
0.498039;0.498039;0.498039;;
0.000000;0.000000;0.000000;;
}
Frame Root {
FrameTransformMatrix {
1.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,-0.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;
}
Frame Cube {
FrameTransformMatrix {
1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.000000,0.000000,1.000000;;
}
Mesh Cube {
24;
-1.000000;-1.000000;1.000000;,
1.000000;-1.000000;-1.000000;,
-1.000000;-1.000000;-1.000000;,
1.000000;-1.000000;1.000000;,
0.999999;1.000000;-1.000001;,
-1.000000;1.000000;1.000000;,
-1.000000;1.000000;-1.000000;,
1.000000;1.000000;0.999999;,
1.000000;-1.000000;-1.000000;,
1.000000;1.000000;0.999999;,
0.999999;1.000000;-1.000001;,
1.000000;-1.000000;1.000000;,
-1.000000;-1.000000;-1.000000;,
0.999999;1.000000;-1.000001;,
-1.000000;1.000000;-1.000000;,
1.000000;-1.000000;-1.000000;,
-1.000000;-1.000000;1.000000;,
-1.000000;1.000000;-1.000000;,
-1.000000;1.000000;1.000000;,
-1.000000;-1.000000;-1.000000;,
-1.000000;1.000000;1.000000;,
1.000000;-1.000000;1.000000;,
-1.000000;-1.000000;1.000000;,
1.000000;1.000000;0.999999;;
12;
3;0,2,1;,
3;0,1,3;,
3;4,6,5;,
3;4,5,7;,
3;8,10,9;,
3;8,9,11;,
3;12,14,13;,
3;12,13,15;,
3;16,18,17;,
3;16,17,19;,
3;20,22,21;,
3;20,21,23;;
MeshNormals {
24;
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;-1.000000;0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;0.000000;,
0.000000;1.000000;0.000000;,
-1.000000;0.000000;0.000000;,
-1.000000;0.000000;0.000000;,
-1.000000;0.000000;0.000000;,
-1.000000;0.000000;0.000000;,
0.000000;0.000000;-1.000000;,
0.000000;0.000000;-1.000000;,
0.000000;0.000000;-1.000000;,
0.000000;0.000000;-1.000000;,
1.000000;0.000000;0.000000;,
1.000000;0.000000;0.000000;,
1.000000;0.000000;0.000000;,
1.000000;0.000000;0.000000;,
0.000000;0.000000;1.000000;,
0.000000;0.000000;1.000000;,
0.000000;0.000000;1.000000;,
0.000000;0.000000;1.000000;;
12;
3;0,2,1;,
3;0,1,3;,
3;4,6,5;,
3;4,5,7;,
3;8,10,9;,
3;8,9,11;,
3;12,14,13;,
3;12,13,15;,
3;16,18,17;,
3;16,17,19;,
3;20,22,21;,
3;20,21,23;;
}
MeshTextureCoords {
24;
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;,
0.000000;0.000000;;
}
VertexDuplicationIndices {
24;
24;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23;
}
MeshMaterialList {
1;
12;
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0;
{ Material }
}
XSkinMeshHeader {
1;
1;
1;
}
SkinWeights {
"Cube";
24;
0,
1,
2,
3,
4,
5,
6,
7,
8,
9,
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20,
21,
22,
23;
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000,
1.000000;
1.000000,-0.000000,-0.000000,-0.000000,-0.000000,-0.000000,1.000000,-0.000000,-0.000000,1.000000,-0.000000,-0.000000,-0.000000,-0.000000,-0.000000,1.000000;;
}
}
}
} | Logos | 3 | sercand/assimp | test/models/X/test_cube_text.x | [
"BSD-3-Clause"
] |
Transcript show: ’hello world’; cr.
| Smalltalk | 1 | kennethsequeira/Hello-world | Pharo/pharo.st | [
"MIT"
] |
/**
* @license Copyright 2016 The Lighthouse Authors. All Rights Reserved.
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*/
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular') format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium') format('woff');
}
:root {
--color-bg: white;
--color-blue: #0535C1;
--font-size: 14px;
--report-font-family: Roboto, Helvetica, Arial, sans-serif;
--report-font-family-monospace: 'Roboto Mono', 'Menlo', 'dejavu sans mono', 'Consolas', 'Lucida Console', monospace;
}
* {
box-sizing: border-box;
}
html, body {
padding: 0;
margin: 0;
width: 270px;
background-color: var(--color-bg);
color: #212121;
font-family: var(--report-font-family);
font-size: var(--font-size);
line-height: 18px;
user-select: none;
}
body {
padding: 16px;
}
.hidden {
display: none;
}
.header__icon {
margin: 2px auto 0;
}
.errormsg {
color: var(--color-blue);
font-weight: 500;
text-align: center;
}
.errormsg:empty {
display: none;
}
.button {
font-family: var(--report-font-family);
font-weight: 500;
font-size: var(--font-size);
background-color: transparent;
border: none;
cursor: pointer;
}
.button:focus {
outline: none;
}
.button--generate {
-webkit-font-smoothing: antialiased;
border: 1px solid transparent;
color: var(--color-bg);
margin: 8px auto;
padding: 6px 14px 6px 14px;
border-radius: 13px;
background-color: var(--color-blue);
transition: 0.1s all;
}
.button--generate:hover {
background-color: #042790;
border: 1px solid #0535C1;
}
.button--generate:disabled {
background-color: #cccccc;
border: none;
color: #666666;
cursor: not-allowed;
}
.section {
display: grid;
justify-content: center;
}
.section:first-child {
border-bottom: solid 1px lightgray;
padding-bottom: 10px;
}
.section-header {
font-size: var(--font-size);
font-weight: 500;
margin-bottom: 5px;
}
.section--description {
font-size: 14px;
color: grey;
}
.devtools-shortcut {
font-family: var(--report-font-family-monospace);
}
.button--configure {
position: absolute;
top: 15px;
right: 10px;
color: rgb(71, 71, 71);
}
.main--options-visible .button--configure {
color: var(--color-blue);
}
.button--configure:disabled {
color: grey;
cursor: not-allowed;
}
.psi-disclaimer {
font-size: 12px;
text-align: center;
color: grey;
}
.psi-disclaimer a {
color: inherit;
text-decoration: none;
}
.options__title {
font-size: var(--font-size);
font-weight: 500;
margin-bottom: 5px;
}
.section--options label {
display: flex;
align-items: center;
}
.section--options input {
margin-top: 0;
margin-bottom: 0;
margin-right: 8px;
}
.options__list {
padding: 0;
margin: 0;
list-style-type: none;
}
/* Visibility stuff */
.section--options {
display: none;
}
.main--options-visible + .section--options {
display: block;
}
.main--options-visible .section--devtools-info {
display: none;
}
| CSS | 3 | martin-maunoury/lighthouse | clients/extension/styles/lighthouse.css | [
"Apache-2.0"
] |
#!/bin/sh
set -e
cd ~/.vim_runtime
cat ~/.vim_runtime/vimrcs/basic.vim > ~/.vimrc
echo "Installed the Basic Vim configuration successfully! Enjoy :-)"
| Shell | 4 | shriniwas26/vimrc | install_basic_vimrc.sh | [
"MIT"
] |
--TEST--
Bug #47168 (printf of floating point variable prints maximum of 40 decimal places)
--FILE--
<?php
$dyadic = 0.00000000000045474735088646411895751953125;
var_dump(printf ("%1.41f\n",unserialize(serialize($dyadic))));
?>
--EXPECT--
0.00000000000045474735088646411895751953125
int(44)
| PHP | 3 | guomoumou123/php5.5.10 | ext/standard/tests/strings/bug47168.phpt | [
"PHP-3.01"
] |
// nested function calls with cast.
fn main() {
self.ptr
.set(intrinsics::arith_offset(self.ptr.get() as *mut u8, 1) as *mut T);
self.ptr
.set(intrinsics::arith_offset(self.ptr.get(), mem::size_of::<T>() as isize) as *mut u8);
}
| Rust | 3 | mbc-git/rust | src/tools/rustfmt/tests/target/issue-2324.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
# Copyright (C) 2001-2008, Parrot Foundation.
=head1 NAME
examples/benchmarks/primes2.pir - Calculate prime numbers < 10000
=head1 SYNOPSIS
% time ./parrot examples/benchmarks/primes2.pir
=head1 DESCRIPTION
Calculates all the prime numbers up to 10000 and prints out the number
of primes and the last one found. Use integer registers.
=cut
.sub main :main
.local int i, max, i6, i7
i = 0
max = 10000
i6 = 0
i7 = 0
LOOP:
$I0 = isprime(i)
unless $I0 goto NOTPRIME
i7 = i
inc i6
NOTPRIME:
inc i
if i == max goto DONE
goto LOOP
DONE:
print "N primes calculated to "
print i
print " is "
say i6
print "last is: "
say i7
.end
.sub isprime
.param int input
.local int n
if input < 1 goto FALSE
n = input - 1
LOOP:
if n <= 1 goto DONE
$I1 = input % n
unless $I1 goto FALSE
dec n
goto LOOP
DONE:
.return(1)
FALSE:
.return(0)
.end
=head1 SEE ALSO
F<examples/benchmarks/primes.c>,
F<examples/benchmarks/primes.pasm>,
F<examples/benchmarks/primes.pl>,
F<examples/benchmarks/primes2.pir>,
F<examples/benchmarks/primes2.c>,
F<examples/benchmarks/primes2.py>.
=cut
# Local Variables:
# mode: pir
# fill-column: 100
# End:
# vim: expandtab shiftwidth=4 ft=pir:
| Parrot Internal Representation | 5 | winnit-myself/Wifie | examples/benchmarks/primes2_i.pir | [
"Artistic-2.0"
] |
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
contract ContextMock is Context {
event Sender(address sender);
function msgSender() public {
emit Sender(_msgSender());
}
event Data(bytes data, uint256 integerValue, string stringValue);
function msgData(uint256 integerValue, string memory stringValue) public {
emit Data(_msgData(), integerValue, stringValue);
}
}
contract ContextMockCaller {
function callSender(ContextMock context) public {
context.msgSender();
}
function callData(
ContextMock context,
uint256 integerValue,
string memory stringValue
) public {
context.msgData(integerValue, stringValue);
}
}
| Solidity | 4 | FabianBenShaddai/openzeppelin-contracts | contracts/mocks/ContextMock.sol | [
"MIT"
] |
<?xml version='1.0' encoding='UTF-8'?>
<?python
#
# Copyright (c) SAS Institute Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
?>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://purl.org/kid/ns#"
py:extends="'library.kid'">
<div id="fileList" py:def="fileList(files)">
<table style="width: 100%;">
<tr py:for="pathId, path, fileId, version, fObj in files">
<?python #
from conary.lib import sha1helper
import os
from urllib import quote
url = "getFile?path=%s;pathId=%s;fileId=%s;fileV=%s" % (quote(os.path.basename(path)),
sha1helper.md5ToString(pathId),
sha1helper.sha1ToString(fileId),
quote(version.asString()))
?>
<td>${fObj.modeString()}</td>
<td>${fObj.inode.owner()}</td>
<td>${fObj.inode.group()}</td>
<td>${fObj.sizeString()}</td>
<td>${fObj.timeString()}</td>
<td><a href="${url}">${path.decode('utf8', 'replace')}</a></td>
</tr>
</table>
</div>
<head/>
<body>
<div id="inner">
<h2>Files in <a href="troveInfo?t=${troveName}">${troveName}</a></h2>
${fileList(fileIters)}
</div>
</body>
</html>
| Genshi | 3 | sassoftware/conary | conary/server/templates/files.kid | [
"Apache-2.0"
] |
-- The user_version should match the "000X" from the file name
-- Ex: 0001_create_notebooks_table should have a user_verison of 1
PRAGMA user_version=1;
-- Create the initial table to store notebooks
CREATE TABLE notebooks (
id TEXT NOT NULL PRIMARY KEY,
org_id TEXT NOT NULL,
name TEXT NOT NULL,
spec TEXT NOT NULL,
created_at TIMESTAMP,
updated_at TIMESTAMP
);
| SQL | 4 | ldwformat/influxdb | sqlite/migrations/0001_create_notebooks_table.sql | [
"MIT"
] |
```{r}
# @type x : numeric
# @type y : numeric
test_function <- function(x<caret>, y, z, d) {
print("This is test function")
barplot(x)
x + 1 + 1
z
}
x <- 10
z <- "dsds"
y <- x + x
```
```{python}
x = 10
def test_function(x):
return 42 + x
```
```{r}
y <- y * x
``` | RMarkdown | 3 | DeagleGross/Rplugin | testData/rename/renameParameterInRmd.rmd | [
"MIT",
"BSD-2-Clause",
"Apache-2.0"
] |
= Documentation for HTTP Basic Auth Feature
The HTTP basic auth feature allows logins using HTTP basic authentication,
described in RFC 1945.
In your routing block, you can require HTTP basic authentication via:
rodauth.require_http_basic_auth
If you want to allow HTTP basic authentication but not require it, you can
call:
rodauth.http_basic_auth
== Auth Value Methods
http_basic_auth_realm :: The realm to return in the WWW-Authenticate header.
require_http_basic_auth? :: If true, when +rodauth.require_login+ or +rodauth.require_authentication+ is used, return a 401 status page if basic auth has not been provided, instead of redirecting to the login page. If false, +rodauth.require_login+ or +rodauth.require_authentication+ will check for HTTP basic authentication if not already logged in. False by default.
| RDoc | 4 | monorkin/rodauth | doc/http_basic_auth.rdoc | [
"MIT"
] |
BEGIN { FS=" "; }
NR == 1 { nf=split(FILENAME,f,".")
print "<HTML>";
print "<HEAD><TITLE>" f[1] "</TITLE></HEAD>";
print "<BODY BGCOLOR=\"#ffffff\">";
print "<H1>Vim Documentation: " f[1] "</H1>";
print "<A NAME=\"top\"></A>";
print "<HR>";
print "<PRE>";
}
{
#
# protect special chars
#
gsub(/&/,"\\&");
gsub(/>/,"\\>");
gsub(/</,"\\<");
gsub(/"/,"\\"");
gsub(/%/,"\\%");
nf=split($0,tag," ");
tagkey[t]=tag[1];tagref[t]=tag[2];tagnum[t]=NR;
print $1 " " $2 " line " NR >"tags.ref"
n=split($2,w,".");
printf ("|<A HREF=\"%s.html#%s\">%s</A>| %s\n",w[1],$1,$1,$2);
}
END {
topback();
print "</PRE>\n</BODY>\n\n\n</HTML>";
}
#
# as main we keep index.txt (by default)
# other candidate, help.txt
#
function topback () {
printf("<A HREF=\"#top\">top</A> - ");
printf("<A HREF=\"help.html\">back to help</A>\n");
}
| Awk | 5 | uga-rosa/neovim | runtime/doc/maketags.awk | [
"Vim"
] |
# Model for brewnit
module model
import db_binding
redef class Fermentable
redef fun to_s do
return "{class_name}: {name}, potential: {potential}, colour: {colour}"
end
end
redef class Yeast
redef fun to_s do
var ret = new Buffer
ret.append "Yeast {brand}, {name}"
if not aliases.is_empty then ret.append "; Aliases: "
ret.append(aliases.join(", "))
return ret.to_s
end
end
redef class Equipment
redef fun to_s do
return "Equipment: {name}, Mean efficiency: {efficiency}%, Total volume: {volume}, trub losses: {trub_losses}, loss/hour: {boil_loss * 100.0}%"
end
end
redef class FermentableProfile
redef fun to_s do return "Fermentable: {fermentable}, quantity: {quantity}"
end
redef class Hop
redef fun to_s do return "Hop: {name}"
end
redef class HopProfile
redef fun to_s do return "{hop}, AA: {alpha_acid}, quantity: {quantity}, use: {if use == boil then "Boil" else "Dry Hop"}, time: {time}"
end
redef class Recipe
redef fun to_s do
var res = new Buffer
res.append "Recipe {name}, volume: {target_volume}, mash_temperature: {target_mash_temp}, mash_time: {mash_time}\n{equipment}\n{yeast}\nMalts:\n"
for i in malts do
res.append i.to_s
res.append "\n"
end
res.append "Hops:\n"
for i in hops do
res.append i.to_s
res.append "\n"
end
return res.to_s
end
end
| Nit | 4 | ajnavarro/language-dataset | data/github.com/R4PaSs/brewnit/2e8cf983d6dbae1e57f2d1c79cb3a98d2e992c26/src/model/model.nit | [
"MIT"
] |
label ccb0008a:
太一 "「掃除、手伝おうか?」"
call gl(1,"TCYM0003|TCYM0003")
call vsp(1,1)
with dissolve
"美希はにっこり笑う。"
voice "vfccb0008amki000"
美希 "「ことわる」"
太一 "「うわーーーーーーーーーーんっ」"
"拒絶されたっ。"
"手ひどく、容赦なく、一片の同情さえなく。"
call gl(1,"TCYM0021|TCYM0021")
call vsp(1,1)
with dissolve
voice "vfccb0008amki001"
美希 "「先輩、血とか苦手ですよね?」"
太一 "「え、まあ確かにそうだけど」"
"どうして知ってる?"
"黒い疑惑が表出した。"
"0.5秒で奈落に叩き戻した。"
"美希だぞ。"
"俺の大切な、たいせつな……お花ちゃんなのだ。"
voice "vfccb0008amki002"
美希 "「せんぱい?」"
太一 "「そうなのだ。血は苦手なのだ」"
call gl(1,"TCYM0000|TCYM0000")
call vsp(1,1)
with dissolve
voice "vfccb0008amki003"
美希 "「血ではないんですけど絵の具が散らばってしまっているですのだ」"
voice "vfccb0008amki004"
美希 "「だから掃除も大変なのですのだ」"
call gl(1,"TCYM0003|TCYM0003")
call vsp(1,1)
with dissolve
voice "vfccb0008amki005"
美希 "「さらにこの短いスカートはかがむとパンツが見えてしまいますので、興奮した先輩に対処しながら掃除するのはとても大変ですのだ」"
太一 "「ごもっともですのだ」"
"実にストレートな物言い。"
"気に入った。"
太一 "「それは確かに苦労ですのだ」"
call gl(1,"TCYM0000|TCYM0000")
call vsp(1,1)
with dissolve
voice "vfccb0008amki006"
美希 "「伝染してますよ」"
太一 "「それは確かに苦労だろうな、ごほん」"
call gl(1,"TCYM0001|TCYM0000")
call vsp(1,1)
with dissolve
voice "vfccb0008amki007"
美希 "「さー」"
"敬礼した。"
太一 "「ごはんはもぐもぐしているかね?」"
voice "vfccb0008amki008"
美希 "「は、しているであります」"
太一 "「では大人である俺はあえて身を引き、かげながら見守ることで弟子の成長を間接的に応援していこうではないか」"
voice "vfccb0008amki009"
美希 "「さー、恐縮です」"
return
# | Ren'Py | 3 | fossabot/cross-channel_chinese-localization_project | AllPlatforms/scripts/ccb/ccb0008a.rpy | [
"Apache-2.0"
] |
require './assertions'
parser = require '../lib/parser/parser'
require './parserAssertions'
create terms () = require '../lib/parser/codeGenerator'.code generator ()
describe 'parser'
terms = nil
before
terms := create terms ()
describe 'terminals'
describe 'integers'
it 'can parse 5'
(expression '5') should contain fields {
integer 5
}
it 'can parse 09'
(expression '09') should contain fields {
integer 9
}
it 'can parse hex 0x1234abcd'
(expression '0xBad1') should contain fields {
integer 47825
}
it 'float'
(expression '5.6') should contain fields {
float 5.6
}
describe 'variables'
it 'simple'
(expression 'total weight') should contain fields {
variable ['total', 'weight']
}
it 'cjk'
(expression '你好') should contain fields {
variable ['你好']
}
it 'can use $ as a variable'
(expression '$') should contain fields {
variable ['$']
}
describe 'strings'
it 'simple string'
(expression '''a string''') should contain fields {
is string
string 'a string'
}
it 'string with single quotes'
(expression '''''''alright!'''' he said''') should contain fields {
is string
string '''alright!'' he said'
}
it 'string with backslash'
(expression "'one \\ two'") should contain fields {
is string
string "one \\ two"
}
it 'multiline string'
(expression " 'one\n two'") should contain fields {
is string
string "one\ntwo"
}
it 'multiline string with empty lines'
(expression " 'one\n\n two\n\n three'") should contain fields {
is string
string "one\n\ntwo\n\nthree"
}
it 'multiline double-quote string'
(expression " \"one\n two\"") should contain fields {
is string
string "one\ntwo"
}
it 'two multiline string in function'
(expression "x 'one\n two' y \"three\n four\"") should contain fields {
is function call
function {variable ['x', 'y']}
function arguments [
{string "one\ntwo"}
{string "three\nfour"}
]
}
describe 'interpolated strings'
it 'simple'
(expression '"a string"') should contain fields {
is string
string 'a string'
}
it 'empty'
(expression '""') should contain fields {
is string
string ''
}
it 'with newline'
(expression '"one\ntwo"') should contain fields {
string "one\ntwo"
}
it 'with windows newline'
(expression '"one\n\rtwo"') should contain fields {
string "one\n\rtwo"
}
it 'with newline escape and indentation should not remove indentation'
(expression ' "one\n two"') should contain fields {
string "one\n two"
}
it 'with indentation'
(expression " \"one\n two\"") should contain fields {
string "one\ntwo"
}
it 'with windows indentation'
(expression " \"one\n\r two\"") should contain fields {
string "one\ntwo"
}
it 'with single variable expression'
(expression '"a boat #(boat length) meters in length"') should contain fields {
is interpolated string
components [
{string 'a boat '}
{variable ['boat', 'length']}
{string ' meters in length'}
]
}
it 'with hash # character at end'
(expression '"this is a hash: #"') should contain fields {
is string
string 'this is a hash: #'
}
it 'with hash # character in middle'
(expression '"this is a hash: #, ok?"') should contain fields {
is string
string 'this is a hash: #, ok?'
}
it 'with escaped #'
(expression '"a boat \#(boat length) meters in length"') should contain fields {
is string
string 'a boat #(boat length) meters in length'
}
it 'with complex expression'
(expression '"a boat #(lookup boat length from (boat database)) meters in length"') should contain fields {
is interpolated string
components [
{string 'a boat '}
{
function {variable ['lookup', 'boat', 'length', 'from']}
function arguments [{variable ['boat', 'database']}]
}
{string ' meters in length'}
]
}
it 'in block'
(expression "abc =\n \"\#(stuff)\"") should contain fields {
is definition
target {
is variable
variable ['abc']
}
source {
is variable
variable ['stuff']
}
}
it 'with inner interpolation'
(expression '"a boat #("#(boat length) meters") in length"') should contain fields {
is interpolated string
components [
{string 'a boat '}
{
is interpolated string
components [
{variable ['boat', 'length']}
{string ' meters'}
]
}
{string ' in length'}
]
}
describe 'sub expressions'
it 'single expression'
(expression '(x)') should contain fields {variable ['x']}
describe 'lists'
it 'empty'
(expression '[]') should contain fields {
is list
items []
}
it 'one item'
(expression '[1]') should contain fields {
is list
items [{integer 1}]
}
it 'two items'
(expression '[1, 2]') should contain fields {
is list
items [
{integer 1}
{integer 2}
]
}
it 'two items separated by newlines'
(expression "[\n 1\n 2\n]") should contain fields {
is list
items [
{integer 1}
{integer 2}
]
}
describe 'hashes'
it 'empty hash'
(expression '{}') should contain fields {
is hash
entries []
}
it 'hash with one entry'
(expression '{port 1234}') should contain fields {
is hash
entries [
{
field ['port']
value {integer 1234}
}
]
}
it 'hash with two entries'
(expression '{port 1234, ip address ''1.1.1.1''}') should contain fields {
is hash
entries [
{
field ['port']
value {integer 1234}
}
{
field ['ip', 'address']
value {string '1.1.1.1'}
}
]
}
it 'hash with two entries on different lines'
(expression "{port = 1234\nip address = '1.1.1.1'}") should contain fields {
is hash
entries [
{
field ['port']
value {integer 1234}
}
{
field ['ip', 'address']
value {string '1.1.1.1'}
}
]
}
it 'hash with string with assignment'
(expression "{'port' = 1234}") should contain fields {
is hash
entries [
{
field {string 'port'}
value {integer 1234}
}
]
}
it 'values can be specified on a new line'
(expression "{
height =
80
}") should contain fields {
is hash
entries [
{
field ['height']
value {integer 80}
}
]
}
it 'should allow methods to be defined, redefining self'
(expression '{say hi to (name, greeting: nil) = print (name)}') should contain fields {
is hash
entries [
{
field ['say', 'hi', 'to']
value {
is block
redefines self
body {
statements [
{
is function call
function {variable ['print']}
}
]
}
parameters [{variable ['name']}]
optional parameters [{
is hash entry
field ['greeting']
}]
}
}
]
}
it 'hash with true entry'
(expression '{port 1234, readonly}') should contain fields {
is hash
entries [
{
field ['port']
value {integer 1234}
}
{
field ['readonly']
value (undefined)
}
]
}
describe 'function calls'
it 'function call'
(expression 'touch (file)') should contain fields {
function {variable ['touch']}
function arguments [{variable ['file']}]
}
it 'function call with two arguments in parens'
(expression 'f (a, b)') should contain fields {
function {variable ['f']}
function arguments [
{variable ['a']}
{variable ['b']}
]
}
it 'two expressions'
(expression '(x, y)') should contain fields {
is function call
function {variable ['x']}
function arguments [
{variable ['y']}
]
}
it 'function call with splat argument'
(expression 'touch (files) ...') should contain fields {
function {variable ['touch']}
function arguments [
{variable ['files']}
{is splat}
]
}
it 'function call with splat argument'
(expression 'copy (files, ..., dir)') should contain fields {
function {variable ['copy']}
function arguments [
{variable ['files']}
{is splat}
{variable ['dir']}
]
}
it 'async operator and comma are separate operators'
(statements 'f!,a') should contain fields (
terms.async statements [
terms.resolve (terms.variable ['f'])
terms.variable ['a']
]
)
it 'function call with no argument'
(expression 'delete everything ()') should contain fields {
function {variable ['delete', 'everything']}
function arguments []
}
it 'async function call with no arguments'
(expression 'delete everything()!') should contain fields (
terms.async statements [
terms.resolve (terms.function call (terms.variable ['delete', 'everything'], []))
].statements.0
)
it 'function call with block with parameters'
(expression "with file (file) @(stream)\n stream") should contain fields {
function {variable ['with', 'file']}
function arguments [
{variable ['file']}
{
body {statements [{variable ['stream']}]}
parameters [{variable ['stream']}]
}
]
}
it 'function call with block with optional parameters'
(expression "with file (file) @(stream: nil)\n stream") should contain fields {
function {variable ['with', 'file']}
function arguments [
{variable ['file']}
{
body {statements [{variable ['stream']}]}
parameters []
optionalParameters [{field ['stream'], value {isNil}}]
}
]
}
it 'function call with block with long parameters'
(expression "open database @(database connection)\n database connection") should contain fields {
function {variable ['open', 'database']}
function arguments [
{
parameters [
{variable ['database', 'connection']}
]
body {statements [{variable ['database', 'connection']}]}
}
]
}
it 'function call with two blocks with parameters'
(expression 'name @(x) @{x} @ (y) @ {y}') should contain fields {
function {variable ['name']}
function arguments [
{
body {statements [{variable ['x']}]}
parameters [{variable ['x']}]
}
{
body {statements [{variable ['y']}]}
parameters [{variable ['y']}]
}
]
}
it 'function call with two optional arguments'
(expression 'name (a, port: 34, server: s)') should contain fields {
function {variable ['name']}
function arguments [
{variable ['a']}
]
optional arguments [
{
field ['port']
value {integer 34}
}
{
field ['server']
value {variable ['s']}
}
]
}
describe 'object operations'
it 'method call'
(expression 'object.method (argument)') should contain fields {
is method call
object {variable ['object']}
name ['method']
method arguments [{variable ['argument']}]
}
it 'method call with optional arguments'
(expression 'object.method (argument, view: view)') should contain fields {
is method call
object {variable ['object']}
name ['method']
method arguments [{variable ['argument']}]
optional arguments [
{field ['view'], value {variable ['view']}}
]
}
it 'field reference'
(expression 'object.field') should contain fields {
is field reference
object {variable ['object']}
name ['field']
}
it 'field reference with newline'
(expression "object.\nfield") should contain fields {
is field reference
object {variable ['object']}
name ['field']
}
it 'indexer'
(expression 'object.(x)') should contain fields {
is indexer
object {variable ['object']}
indexer {variable ['x']}
}
it 'parses no argument method with ()'
(expression 'object.method()') should contain fields {
is method call
object {variable ['object']}
name ['method']
method arguments []
}
it 'parses no argument method with () and field'
(expression 'object.method().field') should contain fields {
is field reference
object {
is method call
object {variable ['object']}
name ['method']
method arguments []
}
name ['field']
}
it 'parses no argument method with ! and field and spaces'
(expression 'object.method()! . field') should contain fields (
terms.async statements [
terms.field reference (
terms.resolve (
terms.method call (
terms.variable ['object']
['method']
[]
)
)
['field']
)
].statements.0
)
it 'parses no argument method with ! and field'
(expression 'object.method()!.field') should contain fields (
terms.async statements [
terms.field reference (
terms.resolve (
terms.method call (
terms.variable ['object']
['method']
[]
)
)
['field']
)
].statements.0
)
describe 'blocks'
it 'empty block'
(expression '@{}') should contain fields {
is block
parameters []
redefines self (false)
body {statements []}
}
it 'block'
(expression '@{x, y}') should contain fields {
is block
parameters []
redefines self (false)
body {statements [
{variable ['x']}
{variable ['y']}
]}
}
it 'block with no parameters'
(expression '@() @{x}') should contain fields {
is block
parameters []
redefines self (false)
body {statements [
{variable ['x']}
]}
}
it 'block with parameter'
(expression "@(x)\n x, y") should contain fields {
is block
parameters [{variable ['x']}]
redefines self (false)
body {
statements [
{variable ['x']}
{variable ['y']}
]
}
}
it 'block in parens'
(expression "(one\n two\n)") should contain fields {
is function call
function {variable ['one']}
function arguments [
{
is block
body {
statements [
{variable ['two']}
]
}
}
]
}
it 'block with parameter, redefining self'
(expression '@(x) => @{x, y}') should contain fields {
is block
parameters [{variable ['x']}]
redefines self (true)
body {
statements [
{variable ['x']}
{variable ['y']}
]
}
}
describe 'statements'
it 'can be separated by commas (,)'
(statements 'a, b') should contain fields {
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'can span multiple lines terminated with \'
(statements "a\\\nb") should contain fields {
statements [
{variable ['a', 'b']}
]
}
it 'can be separated by unix new lines'
(statements "a\nb") should contain fields {
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'can be separated by windows new lines'
(statements "a\r\nb") should contain fields {
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'windows indentation'
(statements "app (stuff) =\r
ok\r
\r
url (path) =\r
ok") should contain fields {
statements [
{is definition}
{is definition}
]
}
describe 'operators'
it 'should be lower precedence than object operation'
(expression 'o.m 2 * o.x') should contain fields {
is operator
operator '*'
operator arguments [
{
is method call
object {variable ['o']}
name ['m']
method arguments [{integer 2}]
}
{
is field reference
object {variable ['o']}
name ['x']
}
]
}
it 'unary operators should be higher precedence than binary operators'
(expression 'a && ! b') should contain fields {
is operator
operator '&&'
operator arguments [
{variable ['a']}
{
is operator
operator '!'
operator arguments [{variable ['b']}]
}
]
}
it 'can have newlines immediately after operator'
(expression "a &&\nb") should contain fields {
is operator
operator '&&'
operator arguments [
{variable ['a']}
{variable ['b']}
]
}
describe 'definition and assignment'
it 'definition'
(expression 'x = y') should contain fields {
is definition
target {variable ['x']}
source {variable ['y']}
}
it 'assignment'
(expression 'x := y') should contain fields {
is definition
is assignment
target {variable ['x']}
source {variable ['y']}
}
it 'assignment on next line'
(expression "x =\n y") should contain fields {
is definition
target {variable ['x']}
source {variable ['y']}
}
describe 'function definition'
it 'function with one parameter'
(expression 'func (x) = x') should contain fields {
is definition
target {variable ['func']}
source {
parameters [{variable ['x']}]
body {statements [{variable ['x']}]}
}
}
it 'function with one parameter, and one optional parameter'
(expression 'func (x, port: 80) = x') should contain fields {
is definition
target {variable ['func']}
source {
parameters [{variable ['x']}]
optional parameters [{field ['port'], value {integer 80}}]
body {statements [{variable ['x']}]}
}
}
it 'field assignment'
(expression 'o.x = y') should contain fields {
is definition
target {
is field reference
object {variable ['o']}
name ['x']
}
source {variable ['y']}
}
it 'index assignment'
(expression 'o.(x) = y') should contain fields {
is definition
target {
is indexer
object {variable ['o']}
indexer {variable ['x']}
}
source {variable ['y']}
}
it 'assignment from field'
(expression 'x = y.z') should contain fields {
is definition
target {variable ['x']}
source {
is field reference
object {
variable ['y']
}
name ['z']
}
}
it 'assignment of async function'
(expression 'x()! = 8') should contain fields (
terms.definition (
terms.variable ['x']
terms.closure (
[]
terms.statements ([terms.integer 8], definitions: []).promisify (statements: true)
returnPromise: true
)
)
)
it 'definition of function with no arguments, using empty parens "()"'
(expression 'x () = 8') should contain fields {
is definition
target {variable ['x']}
source {
is block
parameters []
body {
statements [{integer 8}]
}
}
}
it 'assignment from method call'
(expression 'x = y.z (a)') should contain fields {
is definition
target {variable ['x']}
source {
is method call
object {
variable ['y']
}
name ['z']
method arguments [{variable ['a']}]
}
}
it 'field assignment from method call'
(expression 'i.x = y.z (a)') should contain fields {
is definition
target {
is field reference
object {variable ['i']}
name ['x']
}
source {
is method call
object {
variable ['y']
}
name ['z']
method arguments [{variable ['a']}]
}
}
describe 'regexps'
it 'simple'
(expression 'r/abc/') should contain fields {
is reg exp
pattern 'abc'
}
it 'with options'
(expression 'r/abc/img') should contain fields {
is reg exp
pattern 'abc'
options 'img'
}
it 'with escaped back ticks'
(expression 'r/abc\/def\/ghi/') should contain fields {
is reg exp
pattern 'abc/def/ghi'
}
it 'with various escapes'
(expression 'r/abc\/def\nghi\/jkl/') should contain fields {
is reg exp
pattern 'abc/def\nghi/jkl'
}
it 'with newline'
(expression "a = r/abc\n def/") should contain fields {
is definition
target {
is variable
variable ['a']
}
source {
is reg exp
pattern "abc\\ndef"
}
}
describe 'comments'
it 'should not treat comment-like syntax as comments in strings'
(statements "get 'http://pogoscript.org/'") should contain fields {
is statements
statements [{
is function call
function {variable ['get']}
function arguments [
{string 'http://pogoscript.org/'}
]
}]
}
describe 'should allow one-line C++ style comments, as in: // this is a comment'
it 'when at the end of a line'
(statements "a // this is a comment\nb") should contain fields {
is statements
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'when at the end of a line on windows'
(statements "a // this is a comment\r\nb") should contain fields {
is statements
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'before an indented block'
(statements "a // this is a comment\n b") should contain fields {
is statements
statements [{
is function call
function {variable ['a']}
function arguments [{
is block
body {
statements [
{variable ['b']}
]
}
}]
}]
}
it 'when at end of file'
(statements "a // this is a comment") should contain fields {
is statements
statements [
{variable ['a']}
]
}
it 'when between lines'
(statements "a\n// this is a comment\nb") should contain fields {
is statements
statements [
{variable ['a']}
{variable ['b']}
]
}
it 'comments the start of a multiline comment'
(statements "a
// not starting another comment /*
b") shouldContainFields {
is statements
statements [
{variable ['a']}
{variable ['b']}
]
}
describe 'should allow multi-line C style comments, as in: /* this is a comment */'
it 'when on one line'
(statements "a /* comment */ b") should contain fields {
statements [
{variable ['a', 'b']}
]
}
it 'when there are two'
(statements "a /* comment */ b /* another comment */ c") should contain fields {
statements [
{variable ['a', 'b', 'c']}
]
}
it 'when between lines'
(statements "a\n/* comment */\nb\n/* another comment */\nc") should contain fields {
statements [
{variable ['a']}
{variable ['b']}
{variable ['c']}
]
}
it 'when it contains a * character'
(statements "a /* sh*t */ b") should contain fields {
statements [
{variable ['a', 'b']}
]
}
it 'when it contains contiguous * characters'
(statements "a /* what a **** of bol***ks */ b") should contain fields {
statements [
{variable ['a', 'b']}
]
}
it 'when it covers two lines'
(statements "a /* line one\nline two */ b") should contain fields {
statements [{
is variable
variable ['a', 'b']
}]
}
it 'when it is terminated by the end of file'
(statements "a /* comment to eof") should contain fields {
statements [
{variable ['a']}
]
}
it 'when it extends to the end of the file'
(statements "a /* comment to end */") should contain fields {
statements [
{variable ['a']}
]
}
it 'when it extends to the end of the file followed by newline'
(statements "a /* comment to end */\n") should contain fields {
statements [
{variable ['a']}
]
}
it 'lexer'
create parser = require '../lib/parser/parser'.create parser
lex parser = create parser (terms: terms)
tokens = lex parser.lex 'a (b)'
(tokens) should contain fields [
['identifier', 'a']
['(']
['identifier', 'b']
[')']
['eof']
]
it 'ignores hash bang #!, at the beginning of the file'
(statements '#! /usr/bin/env pogo
a
b') should contain fields (
terms.async statements [
terms.variable ['a']
terms.variable ['b']
]
)
it 'ignores hash bang #!, at the beginning of the file on windows'
(statements "#! /usr/bin/env pogo\r\na\r\nb") should contain fields (
terms.async statements [
terms.variable ['a']
terms.variable ['b']
]
)
| PogoScript | 5 | featurist/pogoscript | test/parserSpec.pogo | [
"BSD-2-Clause"
] |
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/doid/imports/symp_import.owl#"
xml:base="http://purl.obolibrary.org/obo/doid/imports/symp_import.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:oboInOwl="http://www.geneontology.org/formats/oboInOwl#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/doid/imports/symp_import.owl">
<owl:versionIRI rdf:resource="http://purl.obolibrary.org/obo/doid/imports/symp_import.owl"/>
<dc:description>The Symptom Ontology has been developed as a standardized ontology for symptoms of human diseases.</dc:description>
<dc:title>Symptom Ontology</dc:title>
<terms:license rdf:resource="https://creativecommons.org/publicdomain/zero/1.0/"/>
<oboInOwl:date rdf:datatype="http://www.w3.org/2001/XMLSchema#string">03:05:2019 13:30</oboInOwl:date>
<oboInOwl:default-namespace rdf:datatype="http://www.w3.org/2001/XMLSchema#string">symptoms</oboInOwl:default-namespace>
<oboInOwl:hasOBOFormatVersion rdf:datatype="http://www.w3.org/2001/XMLSchema#string">1.2</oboInOwl:hasOBOFormatVersion>
<oboInOwl:saved-by rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lschriml</oboInOwl:saved-by>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115">
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">definition</rdfs:label>
</owl:AnnotationProperty>
<!-- http://www.geneontology.org/formats/oboInOwl#id -->
<owl:AnnotationProperty rdf:about="http://www.geneontology.org/formats/oboInOwl#id"/>
<!-- http://www.w3.org/2000/01/rdf-schema#label -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<!-- http://www.w3.org/2002/07/owl#deprecated -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/SYMP_0000000 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000000">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000000</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cellulitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000001 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000001">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000001</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal cramp</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000002 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000002">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000002</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal distention</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000005</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ataxia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000006</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">backache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000007</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000320"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000008</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blindness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000009</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blister</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000015</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">giddiness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000016</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">confusion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000017 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000017">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000017</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">crinkle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000018 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000018">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000018</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">darkening of skin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000392"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000019</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deafness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000020</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dehydration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000021 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000021">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000021</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">delirium</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000022 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000022">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000022</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">depression</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000023 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000023">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000016"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000023</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disorientation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000024 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000024">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000024</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">drowsiness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000025 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000025">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000614"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000025</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry cough</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000030</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000032 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000032">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000032</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flaccidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000033</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flat keratotic capsule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019159"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000036</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhagic gastroenteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000038</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dyspneic enteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000039 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000039">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000039</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000040 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000040">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000040</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000041 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000041">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000041</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000045 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000045">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000045</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatic necrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000046 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000046">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000046</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000047 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000047">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000158"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000047</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatosplenomegaly</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000051 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000051">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000051</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hydrocephalus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000054 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000054">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000054</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypergammaglobulinemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000056 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000056">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000056</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperpigmentation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000058 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000058">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000058</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperreflexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000059 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000059">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000059</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypotension</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000061 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000061">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000061</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inflammation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000063 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000063">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000063</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intestinal hemorrhage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000064 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000064">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000064</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">joint pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000066 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000066">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000066</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">keratotic nodules of the skin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000068 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000068">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000068</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">laryngitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000069 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000069">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000069</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">laryngotracheitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000070">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000070</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in myocardium</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000074 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000074">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000074</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in swim bladder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000075 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000075">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000075</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lethargy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000076 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000076">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000076</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">listlessness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000079 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000079">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000079</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coordination symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000082 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000082">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000082</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in lung</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000083 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000083">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000083</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymphangitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000084 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000084">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000084</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymphoblastoma</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000086 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000086">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000086</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymphopenia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000087 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000087">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000045"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000087</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">massive hepatic necrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000089 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000089">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000089</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">meningoencephalitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000090 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000090">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000090</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">encephalitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000091 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000091">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000090"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000091</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild encephalitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000092 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000092">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000092</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin lesion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000093 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000093">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000093</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle cramp</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000094 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000094">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000094</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000095 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000095">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000095</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">myocarditis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000098 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000098">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000098</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nephritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000099 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000099">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000892"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000099</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000100 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000100">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000100</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in pancreas</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000102 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000102">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000102</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peritonitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000106 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000106">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000106</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">plasmacytosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000107 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000107">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000107</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pleural effusion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000109">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000109</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth papules</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000112 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000112">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000112</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tracheitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000114 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000114">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000114</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thrombocytopenia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000116 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000116">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000116</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prostration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000118 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000118">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000587"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000118</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rales</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000121 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000121">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000121</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rhinitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000124 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000124">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000124</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000125 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000125">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000125</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liver inflammation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000127 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000127">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000006"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000127</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe backache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000128 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000128">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000128</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">conjunctivitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000129 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000129">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000128"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000129</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe conjunctivitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000130 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000130">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000504"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000130</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe headache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000131 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000131">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000064"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000131</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe joint pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000132 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000132">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000132</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">necrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000133 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000133">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000132"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000133</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe necrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000134 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000134">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000134</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sinusitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000136 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000136">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000092"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000136</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin ulcer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000139 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000139">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000139</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sneezing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000141">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000141</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spasticity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000144 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000144">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019168"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000144</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bronchopneumonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000146 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000146">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000146</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">feces and droppings symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000147 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000147">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000147</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">steatorrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000153 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000153">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000153</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vasculitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000156 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000156">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000156</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thirst</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000157 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000157">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019138"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000157</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thymus symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000158 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000158">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019138"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000158</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spleen symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000160 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000160">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000160</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tracheobronchitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000162 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000162">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000162</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tremor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000164 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000164">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000615"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000164</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incoordination</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000174 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000174">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000174</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wasting</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000177 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000177">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000177</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000178 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000178">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000178</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weight loss</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000180 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000180">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000180</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liver symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000182 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000182">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019155"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000182</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bubo</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000183 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000183">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000183</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000184 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000184">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000184</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">change in skin color</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000185 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000185">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000185</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weariness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000186 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000186">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000186</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exhaustion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000187 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000187">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000187</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tiredness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000188 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000188">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000188</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal discomfort</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000189 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000189">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000189</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postural reaction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000190 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000190">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000190</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wheelbarrowing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000193 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000193">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000193</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hopping</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000194 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000194">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000194</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">conscious proprioception</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000195 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000195">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000195</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal hemiwalking hemistanding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000196 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000196">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000196</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reproductive system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000197 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000197">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000197</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abortion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000198 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000198">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000198</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">miscarriage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000199 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000199">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000197"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000199</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spontaneous abortion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000200 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000200">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019169"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000200</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute arthritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000201 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000201">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000089"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000201</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute meningoencephalitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000202 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000202">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000202</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute painful vision loss</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000205 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000205">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000205</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">salivary gland symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000206 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000206">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000205"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000206</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute suppurative parotiditis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000207 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000207">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000207</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">afebrile</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000208 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000208">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000208</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000209 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000209">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000209</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ischemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000210 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000210">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019165"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000210</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">photophobia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000211 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000211">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000211</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">asthenopia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000212 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000212">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000212</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eye strain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000213 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000213">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000213</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">agraphia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000214 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000214">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000214</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anomia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000215 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000215">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000215</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to comprehend speech</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000216 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000216">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000216</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to speak</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000217 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000217">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000217</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to form words</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000218 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000218">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000218</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">poor enunciation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000219 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000219">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000215"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000219</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">receptive aphasia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000220 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000220">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000220</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">areflexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000221 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000221">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000220"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000221</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absence of knee jerk reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000222 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000222">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000094"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000222</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">limb weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000223 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000223">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000222"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000223</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arm weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000224 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000224">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000222"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000224</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">leg weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000225 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000225">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000225</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">asthenia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000226 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000226">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000898"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000226</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">atrial fibrillation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000227 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000227">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000227</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blood vessel infection</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000228 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000228">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000570"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000228</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhagic diarrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000229 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000229">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000229</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bloody stool</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000230 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000230">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000230</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">body ache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000231 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000231">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000287"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000231</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bradycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000232 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000232">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000232</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bronchiolitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000233 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000233">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000233</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to think clearly</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000234 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000234">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000239"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000234</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cloudy cornea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000235 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000235">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000235</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">colic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000236 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000236">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000236</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">colicky pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000237 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000237">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000237</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">congestion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000238 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000238">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000373"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000238</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">continuous profuse salivation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000239 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000239">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000239</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cornea symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000240 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000240">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000239"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000240</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">corneal opacity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000241 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000241">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000239"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000241</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">corneal ulcers</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000242 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000242">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000614"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000242</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cough with bloody sputum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000243 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000243">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000243</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cyclic fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000244 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000244">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000244</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alteration of appetite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000245 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000245">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000244"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000245</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased appetite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000246 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000246">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000244"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000246</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">increased appetite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000247 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000247">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000247</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">proprioception symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000248 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000248">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000247"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000248</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased conscious proprioception</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000249 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000249">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000249</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reflex symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000250 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000250">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000250</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased flexor withdrawal reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000251 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000251">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000251</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dermal abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000252 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000252">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000252</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diffuse rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000253 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000253">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000253</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anisocoria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000254 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000254">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000417"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000254</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dilated pupil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000255 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000255">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000255</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diminished gastro-intestinal motility</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000256 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000256">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000256</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diminished gag reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000257 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000257">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000220"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000257</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absent gag reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000258 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000258">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000320"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000258</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">double vision</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000259 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000259">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000025"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000259</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry hacking cough</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000260 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000260">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000260</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry mouth</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000261 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000261">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000261</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dry mucous membrane</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000262 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000262">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000262</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">endocarditis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000263 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000263">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000263</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epididymitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000264 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000264">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000264</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epididymorchitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000265 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000265">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000265</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">absence seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000266 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000266">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000124"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000266</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">focal seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000267 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000267">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000124"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000267</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000268 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000268">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000268</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tonic-clonic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000269 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000269">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000124"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000269</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epileptic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000270 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000270">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000266"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000270</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">simple partial seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000271 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000271">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000266"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000271</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">complex partial seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000272 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000272">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000272</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">myoclonic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000273 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000273">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000273</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clonic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000274 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000274">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000274</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tonic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000275 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000275">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000267"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000275</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">atonic seizure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000277 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000277">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000373"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000277</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">excess salivation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000278 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000278">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000136"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000278</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extensive ulcer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000279 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000279">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000186"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000279</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extreme exhaustion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000280 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000280">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000280</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extreme fatigue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000281 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000281">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000281</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eye discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000282 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000282">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000254"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000282</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fixed dilated pupils</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000283 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000283">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000283</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facial paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000284 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000284">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000284</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fixed pupil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000285 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000285">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000285</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flaccid paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000286 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000286">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000286</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">floppy head</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000287 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000287">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000287</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arrhythmia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000289 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000289">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000289</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eczema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000290 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000290">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000290</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">belching</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000291 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000291">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000291</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gas pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000292 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000292">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000292</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heart failure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000293 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000293">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000293</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemiparesis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000294 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000294">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000294</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemolysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000295 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000295">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000295</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatic abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000296 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000296">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000296</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatic dysfunction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000297 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000297">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019155"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000297</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hilar lymphadenitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000298 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000298">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000559"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000298</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hoarse voice</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000299 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000299">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000299</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000300 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000300">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000892"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000300</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperesthesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000301 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000301">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000301</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypopyon</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000302 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000302">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000302</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypothermia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000303 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000303">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000303</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypoxemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000304 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000304">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000079"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000304</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">impaired coordination</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000305 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000305">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000305</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">impaired gag reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000306 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000306">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000522"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000306</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to feed</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000307 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000307">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000329"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000307</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inibility to stand</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000308 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000308">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000308</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to swallow</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000309 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000309">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000244"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000309</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of appetite</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000310 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000310">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000310</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inflamed eyes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000311 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000311">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000311</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intestinal hypermotility</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000312 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000312">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000312</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">joint symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000313 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000313">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000312"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000313</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">joint inflammation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000314 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000314">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000239"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000314</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">keratitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000315 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000315">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000315</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lateroventral deviation of the head</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000316 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000316">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000093"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000316</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">leg cramp</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000317 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000317">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000317</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">leukopenia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000318 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000318">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000318</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of balance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000319 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000319">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000249"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000319</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of tendon reflex</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000320 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000320">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000320</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vision symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000321 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000321">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000320"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000321</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of vision</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000322 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000322">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000322</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">low birth weight</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000323 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000323">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000323</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">melena</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000324 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000324">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000324</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bronchitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000325 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000325">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000324"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000325</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild bronchitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000326 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000326">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000059"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000326</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild hypotension</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000327 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000327">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000596"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000327</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tetanic convulsion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000328 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000328">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000327"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000328</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild tetanic convulsion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000329 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000329">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000329</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">motor weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000330 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000330">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000330</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth sore</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000331 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000331">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000331</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscles ache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000332 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000332">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000332</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle soreness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000333 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000333">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000333</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000334 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000334">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000334</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle necrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000335 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000335">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000384"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000335</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neck weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000336 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000336">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000336</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neurological dysfunction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000337 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000337">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000337</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">night sweats</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000338 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000338">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000338</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nystagmus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000339 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000339">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000258"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000339</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">occasional diplopia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000340 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000340">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000538"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000340</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">limb edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000341 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000341">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000341</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ophthalmoplegia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000342 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000342">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000342</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slurred speech</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000343 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000343">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000343</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">painful lymph glands</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000344 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000344">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000538"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000344</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">palpebral edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000345 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000345">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000345</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">panting respiration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000346 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000346">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000346</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">papule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000347 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000347">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000347</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lip paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000348 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000348">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000348</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">throat muscle paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000349 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000349">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000349</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paraplegia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000350 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000350">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000205"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000350</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parotid abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000352 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000352">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000094"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000352</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">peripheral muscle weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000353 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000353">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000353</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">phlegm</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000354 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000354">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000354</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pneumonitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000355 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000355">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000522"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000355</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">poor feeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000356 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000356">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000356</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">phlebitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000357 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000357">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000357</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postphlebitic ulcer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000358 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000358">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000358</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">premature labor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000359 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000359">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000359</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">profound weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000360 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000360">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000174"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000360</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">emaciation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000361 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000361">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000360"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000361</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">progressive emaciation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000362 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000362">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000116"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000362</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">progressive prostration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000363 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000363">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000177"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000363</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">progressive weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000364 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000364">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000364</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prostate symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000365 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000365">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000364"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000365</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prostatic abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000366 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000366">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000364"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000366</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prostatic infection</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000367 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000367">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000367</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">proteinuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000368 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000368">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000368</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">proximal paralysis of arm and leg</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000369 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000369">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000369</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ptosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000370 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000370">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000370</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000371 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000371">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000371</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000372 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000372">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000372</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">runny nose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000373 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000373">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000205"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000373</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">salivation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000374 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000374">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000374</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">scrotal abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000375 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000375">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000001"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000375</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe abdominal cramp</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000376 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000376">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000570"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000376</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe diarrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000377 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000377">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000377</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mastitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000378 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000378">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000377"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000378</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe mastitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000379 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000379">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019161"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000379</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe myalgia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000380 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000380">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019168"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000380</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe pneumonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000381 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000381">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000158"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000381</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spleen abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000382 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000382">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000382</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">staggering gait</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000383 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000383">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000384"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000383</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stiff neck</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000384 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000384">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000597"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000384</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neck symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000385 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000385">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000597"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000385</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">throat symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000386 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000386">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000386</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000387 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000387">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000597"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000387</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">head symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000388 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000388">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000388</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nose symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000389 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000389">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000389</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stupor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000390 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000390">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000390</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thyroid symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000391 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000391">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000390"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000391</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thyroid abscesses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000392 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000392">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000392</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ear symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000393 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000393">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000392"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000393</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tinnitus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000394 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000394">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000394</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle twitching</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000395 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000395">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000394"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000395</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facial muscle twitching</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000396 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000396">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000254"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000396</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mydriasis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000397 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000397">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000396"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000397</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">unreactive mydriasis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000398 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000398">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000398</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vaginal discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000399 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000399">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000610"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000399</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vertigo</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000400 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000400">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000411"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000400</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weak cry</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000401 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000401">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000479"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000401</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wobble</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000402 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000402">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000402</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cachexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000403 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000403">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000403</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">weight gain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000404 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000404">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000404</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dyspareunia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000405 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000405">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000405</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vaginismus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000406 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000406">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000406</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bruise</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000407 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000407">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000407</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syncope</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000408 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000408">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000408</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cataplexy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000409 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000409">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000882"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000409</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperthermia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000410 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000410">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000410</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neurological and physiological symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000411 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000411">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000411</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">infant symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000412 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000412">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000412</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000413 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000413">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000413</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">catatonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000414 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000414">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000414</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysarthria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000415 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000415">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000416"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000415</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amaurosis fugax</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000416 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000416">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000321"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000416</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">amaurosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000417 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000417">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000417</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pupil symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000418 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000418">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000417"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000418</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">contracted pupil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000419 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000419">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000418"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000419</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">miosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000420 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000420">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000420</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bloating</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000421 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000421">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000421</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematochezia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000422 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000422">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000422</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dyspepsia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000423 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000423">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000423</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pyrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000424 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000424">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000424</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">claudication</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000425 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000425">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000425</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reticulocytosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000426 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000426">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000426</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">macrocytosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000427 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000427">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000427</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">impotence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000428 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000428">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000428</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypoventilation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000429 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000429">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000429</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bradypnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000430 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000430">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000576"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000430</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pleuritic chest pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000431 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000431">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000431</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sputum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000432 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000432">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000432</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">itching</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000433 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000433">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000538"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000433</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anasarca</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000434 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000434">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000434</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urticaria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000435 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000435">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000435</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paresthesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000436 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000436">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000436</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal vaginal bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000437 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000437">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000437</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">earache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000438 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000438">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000438</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">toothache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000439 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000439">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000439</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">heartburn</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000440 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000440">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000440</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hair loss</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000441 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000441">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000064"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000441</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">elbow pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000442 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000442">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000064"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000442</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">knee pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000443 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000443">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000064"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000443</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shoulder pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000444 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000444">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000444</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nail discoloration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000445 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000445">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000445</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">faint</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000446 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000446">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000446</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bloodshot eye</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000447 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000447">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000431"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000447</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bloody sputum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000448 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000448">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000448</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epistaxis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000449 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000449">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000450"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000449</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cardiogenic shock</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000450 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000450">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000450</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shock</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000451 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000451">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000450"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000451</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">septic shock</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000452 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000452">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000431"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000452</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal sputum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000453 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000453">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000453</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000454 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000454">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000454</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000455 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000455">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000403"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000455</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal weight gain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000456 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000456">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000456</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000457 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000457">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000457</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000458 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000458">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000458</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nausea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000459 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000459">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000459</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">digestive system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000460 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000460">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000180"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000460</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hepatomegaly</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000461 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000461">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000461</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000462 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000462">
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000462</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000463 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000463">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000464"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000463</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lack of normal physiological development</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000464 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000464">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000464</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lack of expected normal physiological development in childhood</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000465 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000465">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000464"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000465</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">failure to thrive</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000466 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000466">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000464"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000466</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">delayed milestones</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000467 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000467">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000467</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000468 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000468">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000468</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000469 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000469">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000469</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000470 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000470">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000470</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000471 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000471">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000471</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000472 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000472">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000472</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">early satiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000473 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000473">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000473</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nutrition, metabolism, and development symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000474 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000474">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000178"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000474</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal loss of weight and underweight</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000475 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000475">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000474"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000475</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">underweight</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000476 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000476">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000474"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000476</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of weight</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000477 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000477">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000477</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000478 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000478">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000478</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000479 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000479">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000479</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormality of gait</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000480 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000480">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000480</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nervous system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000481 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000481">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000481</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">persistent vegetative state</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000482 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000482">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000482</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alteration of consciousness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000483 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000483">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000483</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000484 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000484">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000484</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000485 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000485">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000485</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000486 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000486">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000486</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000487 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000487">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000487</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000488 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000488">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000488</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin and integumentary tissue symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000489 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000489">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000489</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal bowel sound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000490 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000490">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000490</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000491 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000491">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000491</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">continuous leakage of urine</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000492 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000492">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000492</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary incontinence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000493 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000493">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000493</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysphagia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000494 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000494">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000235"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000494</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal colic</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000495 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000495">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000495</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urethral discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000496 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000496">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000496</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000497 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000497">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000497</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000498 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000498">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000498</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000499 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000499">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000499</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000500 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000500">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000500</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000501 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000501">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000501</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000502 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000502">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000502</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mixed incontinence (female) (male)</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000503 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000503">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000503</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adult failure to thrive</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000504 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000504">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000504</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">headache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000505 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000505">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000505</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">throat pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000506 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000506">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000506</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhage from throat</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000507 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000507">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000507</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">head swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000508 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000508">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000508</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aphasia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000509 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000509">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000509</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flatulence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000510 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000510">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000510</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pallor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000511 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000511">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000511</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flushing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000512 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000512">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000853"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000512</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">male stress incontinence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000513 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000513">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000513</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stridor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000514 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000514">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000514</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory system and chest symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000515 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000515">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000515</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hiccough</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000516 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000516">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000516</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lump in chest</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000517 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000517">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000517</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemoptysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000518 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000518">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000518</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000519 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000519">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000519</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal feces</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000520 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000520">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000520</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">visible peristalsis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000521 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000521">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000521</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enlargement of lymph nodes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000522 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000522">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000522</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">feeding difficulties and mismanagement</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000523 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000523">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000523</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anorexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000524 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000524">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000524</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polyphagia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000525 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000525">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000525</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transient alteration of awareness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000526 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000526">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000526</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ascites</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000527 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000527">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000527</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">undiagnosed cardiac murmur</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000528 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000528">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000528</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cardiovascular system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000529 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000529">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000287"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000529</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tachycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000530 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000530">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000530</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">palpitation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000531 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000531">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000158"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000531</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">splenomegaly</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000532 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000532">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000532</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urge incontinence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000533 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000533">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000533</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">post-void dribbling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000534 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000534">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000534</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spontaneous ecchymoses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000535 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000535">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000535</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">change in skin texture</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000536 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000536">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000536</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disturbance of skin sensation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000537 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000537">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000537</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cyanosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000538 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000538">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000538</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000539 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000539">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000539</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">jaundice</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000540 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000540">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000540</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">painful respiration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000541 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000541">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000541</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000542 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000542">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000542</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000543 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000543">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000543</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">memory loss</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000544 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000544">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000544</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transient paralysis of limb</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000545 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000545">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000545</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000546 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000546">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000546</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000547 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000547">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000547</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000548 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000548">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000548</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000549 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000549">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000549</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000550 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000550">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000550</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">clubbing of fingers</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000551 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000551">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000551</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disturbances of sensation of smell and taste</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000552 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000552">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000552</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">meningismus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000553 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000553">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000553</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neurologic neglect syndrome</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000554 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000554">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000554</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000555 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000555">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000555</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000556 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000556">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000556</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">localized superficial lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000557 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000557">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000557</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary retention</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000558 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000558">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000557"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000558</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incomplete bladder emptying</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000559 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000559">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000559</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">voice disturbance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000560 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000560">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000560</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polydipsia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000561 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000561">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000561</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000562 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000562">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000478"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000562</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000563 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000563">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000563</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary frequency</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000564 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000564">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000564</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nocturia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000565 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000565">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000565</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polyuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000566 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000566">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000566</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sleep disturbance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000567 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000567">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000567</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">general symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000568 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000568">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000464"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000568</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">short stature</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000569 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000569">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000569</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">oliguria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000570 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000570">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000570</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diarrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000571 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000571">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000571</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">insomnia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000572 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000572">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000573"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000572</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">splitting of urinary stream</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000573 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000573">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000573</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urinary stream symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000574 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000574">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000559"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000574</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aphonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000575 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000575">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000576"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000575</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">precordial pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000576 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000576">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000576</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chest pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000577 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000577">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000411"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000577</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fussy infant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000578 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000578">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000578</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incontinence without sensory awareness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000579 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000579">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000571"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000579</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">insomnia with sleep apnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000580 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000580">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000580</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysfunctions associated with sleep stages</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000581 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000581">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000600"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000581</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sleep apnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000582 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000582">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000582</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypersomnia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000583 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000583">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000582"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000583</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypersomnia with sleep apnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000584 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000584">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000584</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disruptions of 24-hour sleep-wake cycle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000585 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000585">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000585</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sleep related movement disorder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000586 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000586">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000586</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">overflow incontinence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000587 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000587">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000587</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal chest sound</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000588 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000588">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000588</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extravasation of urine</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000589 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000589">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000573"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000589</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slowing of urinary stream</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000590 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000590">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000590</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">urgency of urination</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000591 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000591">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000484"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000591</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal tenderness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000592 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000592">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000411"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000592</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">excessive crying of infant</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000593 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000593">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000593</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gangrene</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000594 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000594">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000594</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal involuntary movement</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000595 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000595">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000596"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000595</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">febrile convulsion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000596 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000596">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000596</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">convulsion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000597 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000597">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000597</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">head and neck symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000598 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000598">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000598</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory abnormality</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000599 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000599">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000599</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cheyne-stokes respiration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000600 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000600">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000600</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">apnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000601 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000601">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000601</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperventilation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000602 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000602">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000602</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">orthopnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000603 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000603">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000603</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tachypnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000604 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000604">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000604</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wheezing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000605 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000605">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000605</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coma</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000606 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000606">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000606</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nocturnal enuresis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000607 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000607">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000607</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hallucination</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000608 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000608">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000608</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syncope and collapse</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000609 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000609">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000609</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized hyperhidrosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000610 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000610">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000610</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dizziness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000611 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000611">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000611</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000612 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000612">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000454"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000612</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal rigidity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000613 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000613">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000613</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000614 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000614">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000614</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cough</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000615 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000615">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000079"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000615</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lack of coordination</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000616 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000616">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000616</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of height</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000617 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000617">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000617</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">torticollis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000618 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000618">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000618</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal posture</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000619 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000619">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000619</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tetany</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000620 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000620">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000457"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000620</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000621 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000621">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000621</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">alexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000622 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000622">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019155"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000622</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute mesenteric lymphadenitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000623 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000623">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000731"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000623</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute renal failure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000625 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000625">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000625</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">conscious disturbance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000627 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000627">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000628"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000627</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">disturbed vision</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000628 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000628">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000320"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000628</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vision distortion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000629 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000629">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000629</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exanthema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000630 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000630">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000504"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000630</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">frontal headache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000631 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000631">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000208"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000631</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemolytic anemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000632 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000632">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000064"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000632</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hip pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000633 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000633">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000006"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000633</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inflammatory low back pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000634 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000634">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000634</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">leukocytosis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000635 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000635">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000006"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000635</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">low backache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000636 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000636">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000636</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">maculopapular rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000637 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000637">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000637</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">opisthotonus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000638 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000638">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000638</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">papular rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000639 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000639">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000639</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rectorrhagia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000640 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000640">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000640</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ankle rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000641 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000641">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000641</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal involvement</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000643 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000643">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000643</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory failure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000644 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000644">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000644</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ruffled feather</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000646 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000646">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000313"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000646</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">synovitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000647 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000647">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000136"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000647</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tache noire</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000648 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000648">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000648</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tenesmus</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000649 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000649">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000649</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">terminal ileitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000650 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000650">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000650</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thick white exudate on tongue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000651 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000651">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000651</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000652 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000652">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000651"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000652</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">wound discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000653 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000653">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000653</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yellow dropping</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000654 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000654">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000654</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">irritability</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000655 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000655">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000655</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mouth bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000656 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000656">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000656</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pale mucous membrane</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000657 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000657">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000725"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000657</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ischemic necrosis of jejunum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000658 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000658">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000658</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extraocular muscles paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000659 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000659">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000659</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pareses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000660 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000660">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000660</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">purpuric rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000661 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000661">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000661</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">recumbency</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000662 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000662">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000662</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shakes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000663 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000663">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000663</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">uncoordinated gait</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000664 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000664">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000664</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yellow exudate from nose</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000665 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000665">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000665</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yellow exudate from eyes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000666 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000666">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000666</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal behavior</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000669 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000669">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000669</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal hemistanding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000670 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000670">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000189"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000670</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abnormal hemiwalking</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000671 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000671">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000671</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sudden onset of fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000672 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000672">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000672</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abscess</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000673 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000673">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000858"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000673</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bradykinesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000674 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000674">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000336"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000674</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute cranial nerve dysfunction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000675 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000675">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000570"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000675</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute diarrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000676 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000676">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000039"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000676</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute enteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000677 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000677">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019159"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000677</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute gastroenteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000678 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000678">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000678</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute mental dysfunction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000679 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000679">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019153"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000679</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute dyspnea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000680 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000680">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000476"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000680</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute weight loss</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000681 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000681">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000681</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">aggressive behavior</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000682 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000682">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000682</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">altered mental status</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000683 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000683">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000683</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">tachypnoea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000684 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000684">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000504"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000684</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bifrontal headache</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000685 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000685">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000685</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">brain cyst</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000686 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000686">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000614"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000686</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chronic cough</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000688 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000688">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000594"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000688</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">circling movement</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000689 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000689">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000689</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cramp</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000690 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000690">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000690</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cranial nerve palsies</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000691 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000691">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000691</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cytopenia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000692 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000692">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000692</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">low blood pressure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000693 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000693">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000693</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased facial sensation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000694 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000694">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000694</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased jaw tone</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000695 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000695">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000473"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000695</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased milk production</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000696 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000696">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000696</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased motor response</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000697 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000697">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000697</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased pharyngeal tone</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000698 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000698">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000522"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000698</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased sucking</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000699 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000699">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000094"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000699</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">deltoid muscle weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000700 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000700">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000700</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diminished spontaneous movement</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000701 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000701">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000701</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasal discharge</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000702 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000702">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000702</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">distended loops of intestines on rectal</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000703 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000703">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000392"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000703</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">droopy ears</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000704 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000704">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000559"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000704</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysphonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000705 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000705">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000508"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000705</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">expressive aphasia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000706 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000706">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000706</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facial weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000707 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000707">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000707</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">flaccid muscle tone</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000709 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000709">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000061"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000709</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">granulomatous inflammation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000710 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000710">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000710</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">head pressing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000711 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000711">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000711</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hind limb paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000712 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000712">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000712</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">infertility</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000713 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000713">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000713</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to lie flat</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000714 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000714">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000714</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intraretinal hemorrhage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000715 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000715">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000715</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">skin desquamation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000716 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000716">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000716</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">swelling symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000717 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000717">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000716"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000717</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">leg swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000718 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000718">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000718</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">loss of consciousness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000719 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000719">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000719</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">memory impairment</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000720 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000720">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000631"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000720</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microangiopathic hemolytic anemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000721 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000721">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000208"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000721</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">moderate anemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000722 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000722">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000722</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">moderate conjuctival injection</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000723 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000723">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000672"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000723</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple abscesses</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000724 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000724">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000724</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple organ failure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000725 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000725">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000725</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">necrosis of jejunum</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000726 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000726">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019142"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000726</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">painful reginal lymphadenopathy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000727 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000727">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000727</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">palate weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000728 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000728">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000711"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000728</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">partial hind limb paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000729 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000729">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000729</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pulmonary consolidation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000730 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000730">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000730</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rapid respiration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000731 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000731">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000731</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal failure</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000732 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000732">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000005"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000732</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sudden ataxis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000733 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000733">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000094"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000733</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sternocleidomastoid weakness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000734 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000734">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000734</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stroke</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000735 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000735">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019168"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000735</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">suppurative pneumonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000736 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000736">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000716"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000736</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymph gland swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000737 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000737">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000737</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">respiratory tract mucosa ulcer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000738 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000738">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000570"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000738</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">yellowish green diarrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000739 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000739">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000739</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">bronchopulmonary bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000740 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000740">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000740</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">genitourinary hemorrhage</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000741 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000741">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000388"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000741</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasal bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000742 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000742">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000655"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000742</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gum bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000743 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000743">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000487"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000743</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blotchy red rash</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000744 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000744">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019142"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000744</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cervical lymphadenopathy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000745 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000745">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000745</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">change in body sensation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000746 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000746">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000746</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">enanthem</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000747 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000747">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000116"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000747</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extreme prostration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000748 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000748">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000538"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000748</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facial edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000749 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000749">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000749</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemodynamic instability</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000750 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000750">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000750</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhage into mucous membrane</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000751 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000751">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000751</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhage into skin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000752 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000752">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000752</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">herpetic lesion on upper lip</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000753 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000753">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000412"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000753</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intense anxiety</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000754 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000754">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000576"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000754</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">severe chest pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000755 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000755">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019149"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000755</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">intense toxemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000756 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000756">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000756</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">menorrhagia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000757 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000757">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000128"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000757</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild conjunctivitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000758 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000758">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000758</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neurological alteration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000759 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000759">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000759</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">parotid pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000760 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000760">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000760</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">petechiae</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000761 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000761">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000761</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">extracellular fluid alteration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000762 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000762">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000761"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000762</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">excess lymphocytes in cerebrospinal fluid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000763 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000763">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000763</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">renal alteration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000764 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000764">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000764</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">retrobulbar pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000765 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000765">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000765</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sensory disturbance</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000766 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000766">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000766</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">slow pulse</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000767 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000767">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000767</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subconjunctival bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000768 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000768">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000768</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">testicular pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000769 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000769">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000769</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vascular alteration</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000770 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000770">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000770</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pelvic symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000771 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000771">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000770"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000771</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000772 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000772">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000770"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000772</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000773 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000773">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000770"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000773</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000774 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000774">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000774</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000775 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000775">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000775</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000776 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000776">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000776</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000777 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000777">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000777</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000778 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000778">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000778</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000779 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000779">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000779</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000780 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000780">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000780</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000781 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000781">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000773"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000781</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic pelvic lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000782 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000782">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000782</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000783 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000783">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000783</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000784 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000784">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000784</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000785 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000785">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000785</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000786 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000786">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000786</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000787 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000787">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000787</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000788 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000788">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000788</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000789 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000789">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000772"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000789</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant pelvic mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000790 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000790">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000790</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000791 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000791">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000791</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000792 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000792">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000792</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000793 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000793">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000793</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000794 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000794">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000794</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000795 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000795">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000795</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000796 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000796">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000796</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000797 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000797">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000771"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000797</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant pelvic swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000798 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000798">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000798</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000799 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000799">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000461"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000799</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000800 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000800">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000800</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000801 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000801">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000801</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000802 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000802">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000802</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000803 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000803">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000803</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000804 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000804">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000804</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000805 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000805">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000805</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000806 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000806">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000806</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000807 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000807">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000798"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000807</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000808 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000808">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000808</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">multiple sites abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000809 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000809">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000809</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">periumbilic abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000810 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000810">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000810</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">epigastric abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000811 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000811">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000811</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left upper quadrant abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000812 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000812">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000812</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right lower quadrant abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000813 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000813">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000813</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">right upper quadrant abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000814 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000814">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000814</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">generalized abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000815 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000815">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000799"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000815</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">left lower quadrant abdominal lump</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000816 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000816">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000566"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000816</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">dysfunctions associated with arousal from sleep</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000817 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000817">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000482"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000817</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">inability to concentrate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000818 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000818">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000818</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">localized superficial mass</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000819 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000819">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000819</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">localized superficial swelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000820 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000820">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000820</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass in chest</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000821 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000821">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000821</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">swelling in chest</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000822 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000822">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000039"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000822</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chronic enteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000823 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000823">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000231"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000823</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sinus bradycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000824 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000824">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000529"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000824</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">junctional tachycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000825 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000825">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000529"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000825</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">paroxysmal tachycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000826 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000826">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000529"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000826</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sinus tachycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000827 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000827">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000529"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000827</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ventricular tachycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000828 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000828">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000828</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sore eyes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000829 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000829">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000829</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neck pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000830 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000830">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000830</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">phantom pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000831 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000831">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000831</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nociceptive pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000832 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000832">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000832</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">neuropathic pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000833 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000833">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000833</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">visceral pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000834 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000834">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000892"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000834</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypoesthesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000835 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000835">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000892"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000835</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypoalgesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000836 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000836">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000892"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000836</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperalgesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000837 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000837">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000837</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chronic pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000838 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000838">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000838</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">breakthrough pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000839 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000839">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000839</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">acute pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000840 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000840">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000840</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">allodynia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000841 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000841">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000299"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000841</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">reactive hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000842 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000842">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000299"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000842</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">active hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000843 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000843">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000299"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000843</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">functional hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000844 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000844">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000844</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">face hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000845 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000845">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000384"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000845</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperemia of the neck</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000846 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000846">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000846</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chest hyperemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000847 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000847">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000847</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spastic paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000848 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000848">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000030"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000848</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">motor paralysis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000849 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000849">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000196"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000849</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stillbirth</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000850 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000850">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000299"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000850</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">congested sclera</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000851 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000851">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000040"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000851</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gross hematuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000852 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000852">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000486"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000852</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anuria</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000853 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000853">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000492"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000853</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">stress incontinence</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000854 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000854">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000756"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000854</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypermenorrhea</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000855 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000855">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000756"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000855</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">metrorrhagia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000856 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000856">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000399"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000856</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">subjective vertigo</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000857 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000857">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000399"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000857</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">objective vertigo</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000858 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000858">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000858</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypokinesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000859 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000859">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000858"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000859</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">rigidity hypokinesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000860 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000860">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000858"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000860</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">postural instability hypokinesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000861 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000861">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000858"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000861</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">freezing hypokinesia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000862 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000862">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000862</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">referred pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000863 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000863">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000863</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">facial tremor</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000864 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000864">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000864</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in oropharynx</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000865 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000865">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000865</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lesions in mouth</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000866 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000866">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000384"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000866</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cervical edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000867 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000867">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000867</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gastrointestinal bleeding</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000868 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000868">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000868</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">breathing problems</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000869 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000869">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000237"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000869</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">nasal congestion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000870 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000870">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000870</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">icteric eyes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000871 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000871">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000871</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">icteric mucous membrane</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000872 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000872">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000872</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">icteric skin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000873 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000873">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000392"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000873</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">otitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000874 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000874">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000874</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematoma</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000875 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000875">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000875</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lameness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000876 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000876">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000528"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000876</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pericardial effusion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000877 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000877">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000386"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000877</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">decreased tongue tone</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000878 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000878">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000878</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">transient fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000879 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000879">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000881"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000879</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">low-grade fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000880 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000880">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000880</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">prolonged fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000881 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000881">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000881</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mild fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000882 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000882">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000882</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">high fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000883 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000883">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000882"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000883</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">very high fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000886 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000886">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000886</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyperpyrexia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000887 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000887">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000887</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Pel-Epstein fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000888 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000888">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000888</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">continuous fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000889 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000889">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000889</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">remittent fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000890 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000890">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000613"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000890</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">relapsing fever</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000891 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000891">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000891</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">musculoskeletal system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000892 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000892">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000892</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sensation perception</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000893 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000893">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000692"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000893</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hypotensive</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000894 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000894">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000894</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cold clammy skin</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000895 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000895">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019138"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000895</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">anaphylactic shock</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000896 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000896">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000896</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">exophthalmos</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000897 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000897">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000231"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000897</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ventricular bradycardia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000898 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000898">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000287"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000898</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">cardiac fibrillation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000899 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000899">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000898"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0000899</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ventricular fibrillation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0000900 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0000900">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019138"/>
<oboInOwl:id>SYMP:0000900</oboInOwl:id>
<rdfs:label xml:lang="en">allergic reaction</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0017795 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0017795">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000462"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0017795</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemic and immune system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019138 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019138">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0017795"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019138</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">immune system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019139 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019139">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0017795"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019139</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemic system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019140 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019140">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0017795"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019140</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematopoietic system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019141 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019141">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019138"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019141</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymphatic system symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019142 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019142">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019142</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">adenopathy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019143 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019143">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019143</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">coagulopathy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019144 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019144">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019144</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microangiopathy</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019145 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019145">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019145</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">vomiting</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019146 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019146">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019146</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hyponatremia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019147 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019147">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019145"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019147</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematemesis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019148 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019148">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019148</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">septicemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019149 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019149">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019149</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">toxemia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019150 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019150">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019150</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pharyngitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019151 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019151">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019151</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pulmonary edema</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019152 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019152">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019175"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019152</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">diaphoresis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019153 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019153">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000598"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019153</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">shortness of breath</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019154 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019154">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000514"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019154</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hemorrhagic mediastinitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019155 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019155">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019141"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019155</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lymphadenitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019156 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019156">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019139"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019156</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hematogenous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019158 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019158">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019158</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eschar</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019159 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019159">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000459"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019159</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gastroenteritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019160 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019160">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019160</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">boil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019161 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019161">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000099"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019161</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle pain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019162 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019162">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000183"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019162</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">muscle tightness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019163 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019163">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000387"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019163</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">eye symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019164 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019164">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019164</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">excessive tearing</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019165 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019165">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019165</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">light sensitivity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019167 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019167">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019167</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pustule</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019168 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019168">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000354"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019168</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pneumonia</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019169 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019169">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000891"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019169</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">arthritis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019171 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019171">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019171</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">spondylitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019172 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019172">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019163"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019172</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ocular lesion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019173 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019173">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019173</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">meningitis</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019174 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019174">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000567"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019174</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chills</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019175 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019175">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019175</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sweaty</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019176 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019176">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019176</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">malaise</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019177 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019177">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019177</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">fatigue</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019178 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019178">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000488"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019178</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">necrotic lesion</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019179 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019179">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000410"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019179</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">lightheadedness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019180 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019180">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000146"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019180</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">constipation</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019181 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019181">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000385"/>
<oboInOwl:id rdf:datatype="http://www.w3.org/2001/XMLSchema#string">SYMP:0019181</oboInOwl:id>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">hoarseness</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019182 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019182">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0000480"/>
<rdfs:label xml:lang="en">behavioral symptom</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019183 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019183">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<rdfs:label xml:lang="en">hyperactivity</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019184 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019184">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<rdfs:label xml:lang="en">limited attention</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019185 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019185">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<rdfs:label xml:lang="en">communication difficulty</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019186 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019186">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<rdfs:label xml:lang="en">obsessive interests</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/SYMP_0019187 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/SYMP_0019187">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/SYMP_0019182"/>
<rdfs:label xml:lang="en">repetitive behavior</rdfs:label>
</owl:Class>
</rdf:RDF>
<!-- Generated by the OWL API (version 4.5.6) https://github.com/owlcs/owlapi -->
| Web Ontology Language | 4 | cthoyt/HumanDiseaseOntology | src/ontology/imports/symp_import.owl | [
"CC0-1.0"
] |
<div class="panel white hidden" id="panel-sort">
<small class="wide"><span class="gray">sort by</span> name</small>
<p sort="azdesc" class="clickable" onclick="changeFolderSort('azdesc');">a - z</p>
<i sort="azdesc" class="ri-arrow-down-fill" onclick="changeFolderSort('azdesc');"></i>
<b></b>
<p sort="azasc" class="clickable" onclick="changeFolderSort('azasc');">z - a</p>
<i sort="azasc" class="ri-arrow-down-fill" onclick="changeFolderSort('azasc');"></i>
<small class="wide"><span class="gray">sort by</span> time</small>
<p sort="gendesc" class="clickable" onclick="changeFolderSort('gendesc');">new</p>
<i sort="gendesc" class="ri-arrow-down-fill" onclick="changeFolderSort('gendesc');"></i>
<b></b>
<p sort="genasc" class="clickable" onclick="changeFolderSort('genasc');">old</p>
<i sort="genasc" class="ri-arrow-down-fill" onclick="changeFolderSort('genasc');"></i>
<small class="wide"><span class="gray">sort by</span> format</small>
<p sort="extasc" class="clickable" onclick="changeFolderSort('extasc');">a - z</p>
<i sort="extasc" class="ri-arrow-down-fill" onclick="changeFolderSort('extasc');"></i>
<b></b>
<p sort="extdesc" class="clickable" onclick="changeFolderSort('extdesc');">z - a</p>
<i sort="extdesc" class="ri-arrow-down-fill" onclick="changeFolderSort('extdesc');"></i>
</div>
| Kit | 3 | pws1453/web-client | source/imports/app/docs-panel-sort.kit | [
"MIT"
] |
<%= render partial: "test/second_json_partial" %> | HTML+ERB | 1 | swaathi/rails | actionview/test/fixtures/test/_first_json_partial.json.erb | [
"MIT"
] |
2016-01-21 11:34:14 fsociety hey sir
2016-01-21 11:39:23 error406 Mornin! how u dooo
2016-01-21 11:39:58 fsociety sleepy
2016-01-21 11:40:03 fsociety very sleepy
2016-01-21 11:40:29 fsociety realised i have to write my youtube list as a txtfile and give it to you, because well no chromecast on dean's phone.
2016-01-21 12:05:30 error406 heheh cool, yeah I gotta get my own list together today!
2016-01-21 12:18:54 fsociety haha, if mat was invited he'd just show hentai
2016-01-21 12:58:19 error406 lol after last year, yeah not inviting mat hahaha
2016-01-21 12:58:51 fsociety hahaha
2016-01-21 12:59:00 fsociety At this point I'm not sure if Meg is coming or not
2016-01-21 12:59:15 fsociety shes been an over-anxious bunny all day today..
2016-01-21 12:59:37 error406 heheh all good thought that might happen considering her timeline
2016-01-21 13:02:09 fsociety i said to her i'll go and call her every hour and say "im having so much fun"
2016-01-21 13:02:13 fsociety hahaha
2016-01-21 13:06:21 error406 hehe well at least it is only 2 mins away if she gets her stuff done =)
2016-01-21 13:07:32 fsociety she will cave in
2016-01-21 13:07:34 fsociety i know she will
2016-01-21 13:07:45 fsociety she likes hanging out with you guys and she needs some social time away from her thesis
2016-01-21 16:03:56 < error406 (error406@error418.info) has quit (Leaving...)
2016-01-21 18:11:56 - irc: disconnected from server
2016-02-18 16:52:27 fsociety you are online
2016-02-18 16:52:27 [16:52]
2016-02-18 16:52:30 fsociety excellent
2016-02-18 16:58:00 [16:52]
2016-02-18 16:58:28 error406 hey sorry gfot sucked in to ue4 =) lol was I not showing up?
2016-02-18 17:04:00 [16:58]
2016-02-19 12:44:05 error406 shoodby doo be doo deany poo, how the fuck are you siiir?
2016-02-19 12:44:05 [12:44]
2016-02-19 12:46:50 fsociety thats a new entry for you
2016-02-19 12:47:02 fsociety yeah doing okay.. testing vulkan
2016-02-19 12:50:47 error406 heheh don't wanna be too repetitive! =)
2016-02-19 12:50:47 error406 ooo sounds fun! I'm still finishing off this menu/HUD shit.. almost done now - got fancy xbox icons heheh
2016-02-19 12:51:51 error406 I've been thinking about making south park's Heroin Hero heheh
2016-02-19 12:57:00 [12:51]
2016-02-19 12:59:10 fsociety hahaha
2016-02-19 12:59:19 fsociety well you did rip all the models after all
2016-02-19 13:04:17 error406 lol I was thinking making it full blown ue4 beauty... realistic trees, awesome dragon like this::
2016-02-19 13:04:17 error406 http://3dfoin.com/wyvern.html
2016-02-19 13:04:17 error406 this dude has an unreal pack that looks a bit nicer than this but same model basically
2016-02-19 13:06:08 fsociety haha.. you've now sucken down the ue4 rabbit hole
2016-02-19 13:09:47 fsociety tempted to start my own darknet
2016-02-19 13:09:48 fsociety https://hyperboria.net/
2016-02-19 13:15:00 [13:09]
2016-02-19 13:36:57 error406 hahah well it would be a fun way to share your huge collection of tv shows n movies!
2016-02-19 13:36:57 [13:36]
2016-02-19 13:39:38 fsociety i'm very tempted
2016-02-19 13:39:45 fsociety very, very tempted
2016-02-19 13:39:56 fsociety if i'm not a watch list, then this will achieve my dream
2016-02-19 13:40:29 error406 hahahah
2016-02-19 13:40:29 error406 Don't worry, you're on many a list I'm sure
2016-02-19 13:43:23 fsociety i guess the next process - is to be actively pursued
2016-02-19 13:43:54 error406 hahahah nooo you're good without that heheh
2016-02-19 13:44:36 error406 hey btw I can change your alias and dans alias so they are shorter on here and don't take up a whole line on screen but how do I change my own??
2016-02-19 13:44:52 error406 You're now Deanoid btw heheh
2016-02-19 13:44:58 fsociety i'm not sure i don't use pidgin
2016-02-19 13:45:03 fsociety i talk to you via the wonders of irc
2016-02-19 13:45:18 fsociety cause i'm a hipster stuck in the early 90s
2016-02-19 13:45:31 fsociety and whenever i load up a terminal window your head explodes. lol
2016-02-19 13:45:36 error406 aahhh I miss ye olde irc
2016-02-19 13:45:47 fsociety i use it quite actively
2016-02-19 13:45:53 fsociety i can even put steam chat in here
2016-02-19 13:46:33 fsociety i got accepted as a member of linux australia the other day
2016-02-19 13:46:47 fsociety they background check each submission
2016-02-19 13:46:49 error406 haha nice you have your official nerd badge hehe
2016-02-19 13:46:52 fsociety exactly
2016-02-19 13:46:59 fsociety now to grow a neckbeard
2016-02-19 13:47:19 error406 and stop showering
2016-02-19 13:48:02 fsociety hahaha
2016-02-19 13:48:06 fsociety not sure if meg would like that
2016-02-19 13:48:51 error406 lol that did cross my mind.. yeah keep up with the showers then.. but I would be interested to see you with a decent beard on ya
2016-02-19 13:49:25 fsociety i've considered it occasionally
2016-02-19 13:49:35 fsociety but the effort i would have to go to
2016-02-19 13:53:18 fsociety i found the perfect operating system for you, its everything you cant stand
2016-02-19 13:53:18 [13:53]
2016-02-19 13:53:47 fsociety http://rlsd2.dimakrasner.com/
2016-02-19 13:53:55 fsociety i think this suits all of your graphical needs
2016-02-19 13:54:47 fsociety i guess i'm just one of those weird computer users
2016-02-19 13:54:57 fsociety i bring it down to the fact i still want computers to be niche
2016-02-19 13:56:25 error406 hahah o kaaay...
2016-02-19 13:56:25 error406 btw...
2016-02-19 13:58:47 fsociety yesss
2016-02-19 13:58:57 error406 sorry one sec
2016-02-19 14:00:34 error406 bearded dean heheh <https://goo.gl/photos/YXPaGHHtbeyFrDtg7>
2016-02-19 14:01:02 fsociety hahahahahahahahahahahaha
2016-02-19 14:01:27 fsociety im putting this image as my new image for all chat protocols now
2016-02-19 14:01:40 error406 NOW you're ready for linux!
2016-02-19 14:01:40 error406 hahah nice
2016-02-19 14:02:02 fsociety it is quietly perfect
2016-02-19 14:02:10 fsociety i guess thats the next step for me
2016-02-19 14:02:23 error406 hagrid it up a little!
2016-02-19 14:02:34 error406 I think it's a good look
2016-02-19 14:02:48 fsociety not sure if meg will stay with me
2016-02-19 14:03:24 error406 I dunno, everybody loves Hagrid!
2016-02-19 14:03:52 fsociety im gonna freak meg out tonight, im gonna show her this pic and go i'm really considering this look
2016-02-19 14:03:55 fsociety just so i can see her face
2016-02-19 14:05:06 error406 hahahaha there's no way she'll take you seriously
2016-02-19 14:07:39 error406 I will make u a better one that looks a bit more believable then you can move on to the hargid one heheh
2016-02-19 14:09:08 fsociety hahaha okay
2016-02-19 14:09:08 [14:09]
2016-02-19 14:23:45 error406 u have a higher res photo of yer noggin I could use?
2016-02-19 14:24:39 fsociety not really
2016-02-19 14:24:39 [14:24]
2016-02-19 14:24:56 error406 this one will have to do then!
2016-02-19 14:25:10 error406 just finishing off some work n will get to that in a sec
2016-02-19 14:31:00 [14:25]
2016-02-19 14:32:33 fsociety http://store.steampowered.com/app/320540/
2016-02-19 14:32:35 fsociety this looks fun
2016-02-19 14:38:00 [14:32]
2016-02-19 14:40:03 error406 I was lookin at that the other day, but there were some average reviews for it...
2016-02-19 14:40:33 error406 it def did seem fun at first, but I can see what some of the reviewers were saysin
2016-02-19 14:40:51 error406 that is another type of game I was thinkin could be fun to fuck round with tho
2016-02-19 14:40:56 error406 makin wise
2016-02-19 14:43:33 fsociety yeah i noticed the reviews
2016-02-19 14:44:00 fsociety destruction matt derby?
2016-02-19 14:44:01 fsociety ;)
2016-02-19 14:47:56 error406 lol wat?
2016-02-19 14:50:37 fsociety i just imagined a game where there a ton of mats everywhere and you are in a car
2016-02-19 14:50:38 fsociety hahaha
2016-02-19 14:51:32 error406 lol ok, you lost me
2016-02-19 14:51:43 error406 officially heheh
2016-02-19 14:52:01 fsociety i went off in my own little word there
2016-02-19 14:52:11 fsociety its friday, i want to go home
2016-02-19 14:53:02 error406 hahahah ahh know how trhat one goes... got any fun plans for the weekend btw?
2016-02-19 14:53:02 [14:53]
2016-02-19 14:53:18 fsociety ummm.. none really
2016-02-19 14:53:23 fsociety probably play some games
2016-02-19 14:53:26 fsociety might install ue4 tonight
2016-02-19 14:53:27 fsociety ..again
2016-02-19 14:59:00 [14:53]
2016-02-19 15:02:00 error406 HAHAHA I like this one <https://goo.gl/photos/23frQM41LnZC8fS68> XD
2016-02-19 15:02:41 fsociety is that hipster dean
2016-02-19 15:03:14 error406 haha no I'm working on ultimate hipster dean right now, that's suave dean
2016-02-19 15:09:00 [15:03]
2016-02-19 15:10:57 error406 aaaand ultimate hipster dean haha <https://goo.gl/photos/84aSx9ZiEgDsXt3JA>
2016-02-19 15:11:21 error406 there you go.. now you have some beard options heheh
2016-02-19 15:12:23 fsociety BWAHAHAHAHA
2016-02-19 15:13:20 error406 yeah I don't think you should grow a beard any more hahaha
2016-02-19 15:13:31 error406 maybe the suave one
2016-02-19 15:13:34 error406 maybe
2016-02-19 15:14:06 fsociety suave one works
2016-02-19 15:14:14 fsociety i think you've had enough dean for one day
2016-02-19 15:14:14 fsociety haha
2016-02-19 15:14:43 error406 I dunno.. wanna be inn midget porn?
2016-02-19 15:14:46 error406 as the midget?
2016-02-19 15:15:06 error406 XD
2016-02-19 15:15:09 fsociety oh god
2016-02-19 15:15:14 fsociety i'm fine
2016-02-19 15:15:23 fsociety dont superimpose me in porn images
2016-02-19 15:15:27 error406 hahahaha
2016-02-19 15:15:38 fsociety that would be disturbing
2016-02-19 15:15:43 fsociety amusing, but disturbing
2016-02-19 15:16:12 error406 only gay grandpa ones
2016-02-19 15:16:35 fsociety oh gawd
2016-02-19 15:16:40 error406 I would do that, but thern I would have to search and look at gay grandpa pporn so ur safe hehe
2016-02-19 15:16:45 fsociety i was gonna say, heard from your old housemate lately
2016-02-19 15:17:19 error406 lol wat that is a weird segway hahaha
2016-02-19 15:17:19 error406 yeah caught up last week actually
2016-02-19 15:17:43 fsociety well it reminded me of her dirty mind and how you guys would push the envelope
2016-02-19 15:17:49 fsociety how is she doing
2016-02-19 15:18:22 error406 aahhh now I get it..
2016-02-19 15:18:22 error406 yeah not bad! she's been dating a nnew fella for a while, n he's moving in next weekend! With her.. not me hahah
2016-02-19 15:19:52 fsociety HAHAHAHAHA
2016-02-19 15:19:56 fsociety now that would be disturbing
2016-02-19 15:21:57 fsociety well good to hear anyhoo.. how about mat
2016-02-19 15:21:59 fsociety still AWOL
2016-02-19 15:22:57 error406 yeah like I used to say, he would only call me when he needed something, and force me to be his dealer, now that all that's over, not a word!
2016-02-19 15:28:00 [15:22]
2016-02-19 16:43:59 fsociety home time yaaaaaaaaaay
2016-02-19 16:43:59 [16:43]
2016-02-19 16:44:20 fsociety time to go home and do more nerdy things
2016-02-19 16:44:52 error406 hahah well have a nice weekend sire! cya round!
2016-02-19 16:45:29 fsociety i'd say i'd see you at white night.. but that is probably too difficult
2016-02-19 16:46:38 - irc: disconnected from server
2016-03-01 10:28:12 error406 Allooooo! I really gotta make pidgin load on startup
2016-03-01 10:28:59 fsociety haha
2016-03-01 10:29:13 fsociety you're the only one who is not always online
2016-03-01 10:29:54 fsociety hows life
2016-03-01 10:29:55 error406 lol oh yeah u guys both use it on your phone right? should probably set that up too...
2016-03-01 10:30:02 fsociety we do
2016-03-01 10:30:21 error406 yeah not bad, bit tired, losta work lately, worked til 3 last night
2016-03-01 10:30:21 error406 how u doin sir?
2016-03-01 10:30:30 fsociety struggling with quitting smoking
2016-03-01 10:30:48 fsociety umm.. fought with meg this morning cause he she couldn't find her keys
2016-03-01 10:30:55 fsociety and.. thats about it
2016-03-01 10:30:59 fsociety been a rough morning
2016-03-01 10:32:28 error406 That's no good! well all I cann say is it does get a bit easier... still sucks tho hehe
2016-03-01 10:32:28 error406 you get a vaporiser?
2016-03-01 10:55:16 fsociety other than that, not much.. your brother wanted me to play again on wednesday. but ive been feel very under the weather since yesterday
2016-03-01 10:55:23 fsociety mostly due to quitting smoking
2016-03-01 10:55:35 fsociety just tired a lot, once again to quitting smoking
2016-03-01 11:19:43 error406 so how long u been off the cigs so far??
2016-03-01 12:36:55 fsociety 3 days
2016-03-01 14:21:42 fsociety so here is the error msg i get
2016-03-01 14:21:48 fsociety 5 Reallocated_Sector_Ct 0x0033 137 137 140 Pre-fail Always FAILING_NOW 1863
2016-03-01 14:21:59 fsociety and here is what google says
2016-03-01 14:22:00 fsociety 5 Reallocated_Sector_Ct 0x0033 137 137 140 Pre-fail Always FAILING_NOW 1863
2016-03-01 14:22:02 fsociety woops
2016-03-01 14:22:10 fsociety 5 Reallocated_Sector_Ct 0x0033 137 137 140 Pre-fail Always FAILING_NOW 1863
2016-03-01 14:22:14 fsociety god damn it
2016-03-01 14:22:24 fsociety Reallocated Sectors Count - Potential indicator of imminent electromechanical failure.
2016-03-01 14:22:28 fsociety there we go
2016-03-01 14:27:00 error406 hehehe yeah good idea to replace it BEFORE it complertely fails hehe
2016-03-01 14:30:14 fsociety im trying to copy stuff of it to minimal effort, its copying at 5mb a sec
2016-03-01 14:30:39 fsociety there goes my copy of gta5 again
2016-03-01 14:30:43 fsociety fuck my life
2016-03-01 14:30:44 fsociety haha
2016-03-01 14:31:41 error406 your hdd is still kinda workin no? AND WHY THE FUCK DIDN'T YOU BACK THAT DAMN THING UP AHRHRHRRH!~!!!!
2016-03-01 14:31:46 error406 hehe
2016-03-01 14:32:41 fsociety i did.. on that drive
2016-03-01 14:33:06 error406 well what about your other copy then?
2016-03-01 14:33:20 fsociety thats okay, but i must treat it with care and not mod it
2016-03-01 14:34:00 fsociety sooo.. i didn't realise you didn't know your brother till you were 16
2016-03-01 14:34:09 fsociety or around there
2016-03-01 14:34:31 fsociety now that i'm ingrained your family due to drums.. haha
2016-03-01 14:34:36 fsociety in your family*
2016-03-01 14:55:01 error406 hahaha dang no gettin rid of you now! lol yeah my sis in Perth didn't know I existed til I called he up out of the blue one day when I was about 24 heheh
2016-03-01 15:10:02 fsociety haha oh wow
2016-03-01 15:10:37 fsociety seems i performed over and beyond for your brother and his friends.. they were like can we rehearse this week, and next week and the week after. hahaha
2016-03-01 15:10:44 fsociety i told them to stop overinflating my ego
2016-03-02 09:53:30 error406 shoo bopbadoo boop beep bloop SPLONK
2016-03-02 09:53:44 fsociety SPLERRRNK
2016-03-02 09:53:52 fsociety so have you spoken to your brother lately
2016-03-02 09:54:03 fsociety i'm curious as to his thoughts on sunday without me being in the room
2016-03-02 09:55:04 error406 THWAAARK GRRRNNNNN
2016-03-02 09:55:04 error406 hehe oinly bereifly, but yeah def liked having you round drummin!
2016-03-02 09:55:58 fsociety excellent :)
2016-03-02 09:56:04 fsociety glad to be of service to the family.. haha
2016-03-02 09:56:07 fsociety how are you doing today
2016-03-02 09:58:01 error406 yeah good, just about finished all my work, couple of hours n I'll be moving back to unreal woo!
2016-03-02 09:58:01 error406 What about yerself? feeling a bit better than yesterday?
2016-03-02 09:58:08 fsociety i did do a doozy on my back though.. not used to playing for that long.. and the kit in his house wasn't ergonomically set up for me properly. but i did the best i can. hopefully some time next week another jam is planned
2016-03-02 09:58:50 fsociety well i realised if i get that drive back, and i can use it temporarily - put in the rma (which has a 5 year warranty) and give you my old black back .. haha
2016-03-02 09:58:53 fsociety should only take 2 weeks
2016-03-02 10:00:37 fsociety how is ue4 going for you :)
2016-03-02 10:03:06 error406 hehe well that's better than having to buy a new one at least!
2016-03-02 10:03:25 fsociety indeed
2016-03-02 10:03:40 fsociety most likely i'll probably just keep rma'ing it over and over again if it has a 5-yr warranty
2016-03-02 10:03:40 fsociety haha
2016-03-02 10:04:56 error406 and yeah going really well, learning heaps thsese days.. have custom characters in, can animate any other object in ways not usually possible in game engines, and generallly picking up heaps about the overall engine... have learned how to do menu systems, better lighting, and moving onto ai next!
2016-03-02 10:05:15 error406 lol FREE DRIVES FOREVER!!
2016-03-02 10:05:42 fsociety wouldn't that be wonderful
2016-03-02 10:05:52 fsociety i want to build your thing for linux just to check performance comparison
2016-03-02 10:06:00 fsociety im looking out for the vulkan update for ue4 as well
2016-03-02 10:08:13 error406 hehe well you're welcome to grab a copy of a project and give it a go!
2016-03-02 10:11:33 fsociety excellent
2016-03-02 10:11:45 fsociety now to figure out how to compile under this linux distro.. i'll figure this out now
2016-03-02 10:12:24 error406 I'd be interested to also see if I can make a scene overload my 970 and then see how it runs on sli hehe
2016-03-02 10:12:41 error406 just for the fun of using your sli lol
2016-03-02 10:13:42 fsociety yeah sure.. go for your life :)
2016-03-02 10:15:09 error406 I've got one scene with 80 guys in it and it's not hurting anything yet, I'll just keep duplicating peole til it hurts it heheh
2016-03-02 10:17:41 error406 wow just made it 320 guys and it's still having no problem.. granted they are the same guy doing the ssame movement tho
2016-03-02 10:17:59 fsociety wait for the 4k braahh
2016-03-02 10:23:47 fsociety ue4 compiling as we speak
2016-03-02 10:35:05 fsociety do you have anywhere that i could download the probject files :)
2016-03-02 10:36:05 fsociety just so i can compile the project when i get home really quickly.. rather than doing the whole here is a usb stick. blah, blah, blah.
2016-03-02 10:36:32 error406 aahh it'll be easier to just copy them... the baptcare foilder is 16gb (not that big on complile tho hehe)
2016-03-02 10:37:04 error406 I think the most I could get it down tro woulbe be 1-2gb
2016-03-02 10:37:33 fsociety ahh that large hey
2016-03-02 10:37:43 fsociety i'll bring my trusty usb 3 usbstick then
2016-03-02 10:37:53 fsociety so damn quick, cant go back to crappy ones
2016-03-02 10:38:25 error406 hehe cool, yyean dan and I talked about saring projects online then quickly realised that was kinda out of the question, especially with his slow internets
2016-03-02 10:40:59 fsociety haha.. carrier pidgin for dan
2016-03-02 10:41:53 error406 lol depending how much a pidgeon can carry, that might be faster jfor a lot of australians haha
2016-03-02 10:42:33 fsociety we can do carrier cupcake
2016-03-02 10:42:35 fsociety raaahhhhh
2016-03-02 10:43:09 error406 you just need a drone with food to direct him hehe
2016-03-02 10:43:16 fsociety so cute
2016-03-02 10:45:02 error406 lol did I tell you abouty the cat hack in gta?
2016-03-02 10:46:16 fsociety i think so
2016-03-02 10:47:03 fsociety what version is ue4 up to currently?
2016-03-02 10:47:05 fsociety 4.10?
2016-03-02 10:49:00 error406 4.11 is in preview, so yeah think 4.10 is the latest stable one
2016-03-02 10:50:09 fsociety haha this is serious rabbit hole stuff. compiling unreal 4 with the editor.
2016-03-02 10:50:24 fsociety https://wiki.unrealengine.com/Building_On_Linux
2016-03-02 11:14:06 error406 hehe rabbit holes can be so fun! =)
2016-03-02 11:22:41 fsociety currently compiling mono for the ide
2016-03-02 11:22:42 fsociety hahaha
2016-03-02 11:22:45 fsociety slow gradual process
2016-03-02 11:29:31 error406 ahhh the joys of linux! least you can make your home pc do that whilst you're at work hehe
2016-03-02 11:29:48 fsociety hahaha yeah
2016-03-02 11:30:23 fsociety ive been studying nodejs of late
2016-03-02 11:30:29 fsociety which javascript without the need for a browser
2016-03-02 11:30:39 fsociety can do some pretty cool things with it, javascript is so damn easy.
2016-03-02 11:30:46 fsociety i like its formatting
2016-03-02 11:33:53 fsociety getting there slowly
2016-03-02 11:33:54 fsociety https://u.teknik.io/Zvsey.png
2016-03-02 11:34:25 fsociety had to compile certain libraries locally and setup a custom environmental path so it wouldn't conflict my "actual" installed libraries
2016-03-02 11:34:31 fsociety ue4 is really particular with what it wants
2016-03-02 11:45:48 fsociety so i've been on the vaporizer since friday
2016-03-02 11:45:50 fsociety working well
2016-03-02 11:52:19 error406 lol sorry window got lost behind opther shit hehe
2016-03-02 11:52:19 error406 hehe does that mean I can start using the vape memes with you? yay!
2016-03-02 11:52:19 error406 so javascript as well hey?
2016-03-02 11:53:47 fsociety yes you can use those vape
2016-03-02 11:53:52 fsociety yeah i'm on a programming rampage
2016-03-02 11:54:14 fsociety might as well become base knowledgable with all the most popular ones i haven't looked at
2016-03-02 11:56:19 error406 IT BEGINS <http://vaping360.com/wp-content/uploads/2014/10/PKdHYWl.jpg>
2016-03-02 11:57:50 error406 you turnin into a hipster smoker =P <http://i.imgur.com/1hpB6oW.jpg>
2016-03-02 11:59:02 fsociety more like saving myself from cancer.. let me see this image
2016-03-02 11:59:25 fsociety could you send me those old hipster photos you made of me again, gonna send em to meg at work.. haha
2016-03-02 11:59:51 fsociety OMG. It compiled. UE4 actually successfully compiled
2016-03-02 12:00:47 error406 https://photos.google.com/share/AF1QipNbXzHQy0tbwwEJGm-m_QbABkjyOPHgeiLUJVnIv4ngyyhxKdIPAeDreF5ZYSHLkg?key=enpSNUVFQmtIZEVWSFJEbjBpaGxyRVhsSWIxMklR
2016-03-02 12:01:04 error406 hehe awesome that didnt take too long!
2016-03-02 12:01:20 fsociety https://u.teknik.io/giEzp.png
2016-03-02 12:01:38 fsociety there are a few things i need to actually do, but all the libraries seem to be talking to each other alright.. now to compile the ide
2016-03-02 12:02:59 fsociety https://u.teknik.io/giEzp.png
2016-03-02 12:03:04 fsociety sorry about that incomplete url
2016-03-02 12:09:05 fsociety ahh now the real compiling starts.. its taking forever now
2016-03-02 12:09:06 fsociety https://u.teknik.io/OCpV3.png
2016-03-02 13:15:35 error406 oh lol so it hadn't really started before? how long does it take to compile??
2016-03-02 13:21:49 fsociety let me check to see where it is at
2016-03-02 13:21:57 fsociety forever
2016-03-02 13:22:01 fsociety its at 48/788
2016-03-02 13:22:08 fsociety about 10 minutes ago it was 28
2016-03-02 13:22:18 error406 hahah well it *might* be done some time tomorrow then hehe
2016-03-02 13:23:06 fsociety https://u.teknik.io/uD9m1.png
2016-03-02 13:23:11 fsociety and its pushing the machine
2016-03-02 13:23:41 fsociety from what i can tell though it seems to be using the gpu to do most of the compiling
2016-03-02 13:23:44 fsociety thats pretty cool
2016-03-02 13:24:25 error406 yeah they're pretty good at utilising the graphics hardware, good to see someone is doing things properly hehe
2016-03-02 13:24:40 fsociety cause i checked the cpu temp and its only sitting at 39 degrees
2016-03-02 13:24:48 fsociety hmm.. time to check gpu temp
2016-03-02 13:25:22 fsociety up to using 6gb at the moment to compile
2016-03-02 13:25:55 error406 so it's using both cards, or u just mean ram?
2016-03-02 13:30:23 fsociety ram
2016-03-02 13:55:22 - irc: disconnected from server
2016-03-02 16:13:37 fsociety still compiling
2016-03-02 16:13:40 fsociety up to module 466
2016-03-02 16:13:44 fsociety just over halfway
2016-03-02 16:13:45 fsociety haha
2016-03-02 16:40:54 error406 lol that happened a lot quicker than I was imagining!
2016-03-02 16:51:55 fsociety i like my pc :)
2016-03-02 17:29:13 < error406 (error406@error418.info) has quit (bitlbee.localhost error418.info)
2016-03-02 17:30:26 > error406 (error406@error418.info) is back on server
2016-03-02 17:56:52 - irc: disconnected from server
| IRC log | 0 | 0x4b1dN/2016-dots | misc/weechat/logs/irc.bitlbee.error406.weechatlog | [
"MIT"
] |
import { isZhCN } from '../utils/util';
import packageInfo from '../../../package.json';
import logo from '../assets/logo.svg';
import antDesignVue from '../assets/ant-design-vue.svg';
import { SearchOutlined } from '@ant-design/icons-vue';
export default {
props: {
name: String,
searchData: Array,
},
data() {
return {
value: null,
};
},
mounted() {
this.initDocSearch(this.$i18n.locale);
},
methods: {
handleClose(key) {
localStorage.removeItem('jobs-notification-key');
localStorage.setItem('jobs-notification-key', key);
},
initDocSearch(locale) {
window.docsearch({
apiKey: '92003c1d1d07beef165b08446f4224a3',
indexName: 'antdv',
inputSelector: '#search-box input',
algoliaOptions: { facetFilters: [isZhCN(locale) ? 'cn' : 'en'] },
transformData(hits) {
hits.forEach(hit => {
hit.url = hit.url.replace('www.antdv.com', window.location.host);
hit.url = hit.url.replace('https:', window.location.protocol);
});
return hits;
},
debug: false, // Set debug to true if you want to inspect the dropdown
});
},
handleClick() {
const name = this.name;
const path = this.$route.path;
const newName = isZhCN(name) ? name.replace(/-cn\/?$/, '') : `${name}-cn`;
this.$router.push({
path: path.replace(name, newName),
});
this.$i18n.locale = isZhCN(name) ? 'en-US' : 'zh-CN';
},
onSelect(val) {
this.$router.push(val);
this.value = val;
},
},
render() {
const name = this.name;
const isCN = isZhCN(name);
const path = this.$route.path;
const selectedKeys = path === '/jobs/list-cn' ? ['jobs'] : ['components'];
return (
<header id="header">
<a-row>
<a-col class="header-left" xxl={4} xl={5} lg={5} md={6} sm={24} xs={24}>
<router-link to={{ path: '/' }} id="logo">
<img alt="logo" height="32" src={logo} />
<img alt="logo" height="16" src={antDesignVue} />
</router-link>
<a-button
ghost
size="small"
onClick={this.handleClick}
class="header-lang-button"
key="lang-button"
>
{isCN ? 'English' : '中文'}
</a-button>
</a-col>
<a-col xxl={20} xl={19} lg={19} md={18} sm={0} xs={0}>
<div id="search-box">
<SearchOutlined />
<a-input
placeholder={isCN ? '搜索组件...' : 'input search text'}
style="width: 200px"
/>
</div>
<span id="github-btn" class="github-btn">
<a class="gh-btn" href="//github.com/vueComponent/ant-design-vue/" target="_blank">
<span class="gh-ico" aria-hidden="true"></span>
<span class="gh-text">Star</span>
</a>
</span>
<a-button
ghost
size="small"
onClick={this.handleClick}
class="header-lang-button"
key="lang-button"
>
{isCN ? 'English' : '中文'}
</a-button>
<a-select
style="width: 100px"
size="small"
defaultValue={packageInfo.version}
class="version"
>
<a-select-option value={packageInfo.version}>{packageInfo.version}</a-select-option>
<a-select-option value="1.x" onClick={() => (location.href = 'https://1x.antdv.com')}>
1.x
</a-select-option>
</a-select>
<a-menu selectedKeys={selectedKeys} mode="horizontal" class="menu-site" id="nav">
<a-menu-item key="components">
<router-link to="/docs/vue/introduce">{isCN ? '组件' : 'Components'}</router-link>
</a-menu-item>
{isCN ? (
<a-menu-item key="store">
<a
href="https://store.antdv.com/pro/"
target="_blank"
style="position: relative;"
>
商店
<a-badge color="red" style="position: absolute;top: -10px;right: -10px;" />
</a>
</a-menu-item>
) : null}
{isCN ? (
<a-menu-item key="geektime">
<a
href="https://time.geekbang.org/course/intro/100024601?code=KHKYcoBU6vZa8nMglg7AWfDxxi3BWrz9INAzAY3umPk%3D"
target="_blank"
style="position: relative;"
>
Vue 实战教程
<a-badge color="red" style="position: absolute;top: -10px;right: -10px;" />
</a>
</a-menu-item>
) : null}
<a-menu-item key="sponsor">
<router-link
to={{
path: isCN ? '/docs/vue/sponsor-cn/' : '/docs/vue/sponsor/',
}}
>
{isCN ? '支持我们' : 'Support us'}
</router-link>
</a-menu-item>
<a-sub-menu key="Ecosystem" title={isCN ? '更多' : 'More'}>
<a-menu-item key="pro">
<a target="_blank" href="https://pro.antdv.com">
Pro (Admin)
</a>
</a-menu-item>
<a-menu-item key="design">
<router-link
to={{
path: isCN ? '/docs/vue/download-cn/' : '/docs/vue/download/',
}}
>
{isCN ? '设计资源' : 'Design Resources'}
</router-link>
</a-menu-item>
<a-menu-item key="vscode">
<a
target="_blank"
href="https://marketplace.visualstudio.com/items?itemName=ant-design-vue.vscode-ant-design-vue-helper"
>
VS Code Extension
</a>
</a-menu-item>
<a-menu-item key="awesome">
<a target="_blank" href="https://github.com/vueComponent/ant-design-vue-awesome">
Awesome
</a>
</a-menu-item>
<a-menu-item key="wechat">
<a-popover
placement="right"
content={
<img
width="160"
height="160"
alt="wechat"
src="https://qn.antdv.com/wechat.jpeg"
/>
}
>
<a>{isCN ? '微信' : 'WeChat'}</a>
</a-popover>
</a-menu-item>
<a-menu-item key="qq">
<a>QQ 群1:217490093(3000人已满)</a>
<a>QQ 群2:809774695</a>
</a-menu-item>
</a-sub-menu>
</a-menu>
</a-col>
</a-row>
</header>
);
},
};
| JSX | 4 | YaroShkvorets/ant-design-vue | site/src/components/header.jsx | [
"MIT"
] |
_ = require 'underscore'
proxyquire = require 'proxyquire'
stubDefaultsJSON = null
execHitory = []
ChildProcess =
exec: (command, callback) ->
execHitory.push(arguments)
callback(null, '', null)
fs =
exists: (path, callback) ->
callback(true)
readFile: (path, callback) ->
callback(null, JSON.stringify(stubDefaultsJSON))
readFileSync: (path) ->
JSON.stringify(stubDefaultsJSON)
writeFileSync: (path) ->
null
unlink: (path, callback) ->
callback(null) if callback
DefaultClientHelper = proxyquire "../src/default-client-helper",
"child_process": ChildProcess
"fs": fs
describe "DefaultClientHelper", ->
beforeEach ->
stubDefaultsJSON = [
{
LSHandlerRoleAll: 'com.apple.dt.xcode',
LSHandlerURLScheme: 'xcdoc'
},
{
LSHandlerRoleAll: 'com.fournova.tower',
LSHandlerURLScheme: 'github-mac'
},
{
LSHandlerRoleAll: 'com.fournova.tower',
LSHandlerURLScheme: 'sourcetree'
},
{
LSHandlerRoleAll: 'com.google.chrome',
LSHandlerURLScheme: 'http'
},
{
LSHandlerRoleAll: 'com.google.chrome',
LSHandlerURLScheme: 'https'
},
{
LSHandlerContentType: 'public.html',
LSHandlerRoleViewer: 'com.google.chrome'
},
{
LSHandlerContentType: 'public.url',
LSHandlerRoleViewer: 'com.google.chrome'
},
{
LSHandlerContentType: 'com.apple.ical.backup',
LSHandlerRoleAll: 'com.apple.ical'
},
{
LSHandlerContentTag: 'icalevent',
LSHandlerContentTagClass: 'public.filename-extension',
LSHandlerRoleAll: 'com.apple.ical'
},
{
LSHandlerContentTag: 'icaltodo',
LSHandlerContentTagClass: 'public.filename-extension',
LSHandlerRoleAll: 'com.apple.reminders'
},
{
LSHandlerRoleAll: 'com.apple.ical',
LSHandlerURLScheme: 'webcal'
},
{
LSHandlerContentTag: 'coffee',
LSHandlerContentTagClass: 'public.filename-extension',
LSHandlerRoleAll: 'com.sublimetext.2'
},
{
LSHandlerRoleAll: 'com.apple.facetime',
LSHandlerURLScheme: 'facetime'
},
{
LSHandlerRoleAll: 'com.apple.dt.xcode',
LSHandlerURLScheme: 'xcdevice'
},
{
LSHandlerContentType: 'public.png',
LSHandlerRoleAll: 'com.macromedia.fireworks'
},
{
LSHandlerRoleAll: 'com.apple.dt.xcode',
LSHandlerURLScheme: 'xcbot'
},
{
LSHandlerRoleAll: 'com.microsoft.rdc.mac',
LSHandlerURLScheme: 'rdp'
},
{
LSHandlerContentTag: 'rdp',
LSHandlerContentTagClass: 'public.filename-extension',
LSHandlerRoleAll: 'com.microsoft.rdc.mac'
},
{
LSHandlerContentType: 'public.json',
LSHandlerRoleAll: 'com.sublimetext.2'
},
{
LSHandlerContentTag: 'cson',
LSHandlerContentTagClass: 'public.filename-extension',
LSHandlerRoleAll: 'com.sublimetext.2'
},
{
LSHandlerRoleAll: 'com.apple.mail',
LSHandlerURLScheme: 'mailto'
}
]
describe "DefaultClientHelperMac", ->
beforeEach ->
execHitory = []
@helper = new DefaultClientHelper.Mac()
describe "available", ->
it "should return true", ->
expect(@helper.available()).toEqual(true)
describe "readDefaults", ->
describe "writeDefaults", ->
it "should `lsregister` to reload defaults after saving them", ->
callback = jasmine.createSpy('callback')
@helper.writeDefaults(stubDefaultsJSON, callback)
callback.callCount is 1
command = execHitory[2][0]
expect(command).toBe("/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user")
describe "isRegisteredForURLScheme", ->
it "should require a callback is provided", ->
expect( -> @helper.isRegisteredForURLScheme('mailto')).toThrow()
it "should return true if a matching `LSHandlerURLScheme` record exists for the bundle identifier", ->
spyOn(@helper, 'readDefaults').andCallFake (callback) ->
callback([{
"LSHandlerRoleAll": "com.apple.dt.xcode",
"LSHandlerURLScheme": "xcdoc"
}, {
"LSHandlerContentTag": "cson",
"LSHandlerContentTagClass": "public.filename-extension",
"LSHandlerRoleAll": "com.sublimetext.2"
}, {
"LSHandlerRoleAll": "com.nylas.nylas-mail",
"LSHandlerURLScheme": "mailto"
}])
@helper.isRegisteredForURLScheme 'mailto', (registered) ->
expect(registered).toBe(true)
it "should return false when other records exist for the bundle identifier but do not match", ->
spyOn(@helper, 'readDefaults').andCallFake (callback) ->
callback([{
LSHandlerRoleAll: "com.apple.dt.xcode",
LSHandlerURLScheme: "xcdoc"
},{
LSHandlerContentTag: "cson",
LSHandlerContentTagClass: "public.filename-extension",
LSHandlerRoleAll: "com.sublimetext.2"
},{
LSHandlerRoleAll: "com.nylas.nylas-mail",
LSHandlerURLScheme: "atom"
}])
@helper.isRegisteredForURLScheme 'mailto', (registered) ->
expect(registered).toBe(false)
it "should return false if another bundle identifier is registered for the `LSHandlerURLScheme`", ->
spyOn(@helper, 'readDefaults').andCallFake (callback) ->
callback([{
LSHandlerRoleAll: "com.apple.dt.xcode",
LSHandlerURLScheme: "xcdoc"
},{
LSHandlerContentTag: "cson",
LSHandlerContentTagClass: "public.filename-extension",
LSHandlerRoleAll: "com.sublimetext.2"
},{
LSHandlerRoleAll: "com.apple.mail",
LSHandlerURLScheme: "mailto"
}])
@helper.isRegisteredForURLScheme 'mailto', (registered) ->
expect(registered).toBe(false)
describe "registerForURLScheme", ->
it "should remove any existing records for the `LSHandlerURLScheme`", ->
@helper.registerForURLScheme 'mailto', =>
@helper.readDefaults (values) ->
expect(JSON.stringify(values).indexOf('com.apple.mail')).toBe(-1)
it "should add a record for the `LSHandlerURLScheme` and the app's bundle identifier", ->
@helper.registerForURLScheme 'mailto', =>
@helper.readDefaults (defaults) ->
match = _.find defaults, (d) ->
d.LSHandlerURLScheme is 'mailto' and d.LSHandlerRoleAll is 'com.nylas.nylas-mail'
expect(match).not.toBe(null)
it "should write the new defaults", ->
spyOn(@helper, 'readDefaults').andCallFake (callback) ->
callback([{
LSHandlerRoleAll: "com.apple.dt.xcode",
LSHandlerURLScheme: "xcdoc"
}])
spyOn(@helper, 'writeDefaults')
@helper.registerForURLScheme('mailto')
expect(@helper.writeDefaults).toHaveBeenCalled()
| CoffeeScript | 3 | cnheider/nylas-mail | packages/client-app/spec/default-client-helper-spec.coffee | [
"MIT"
] |
"use strict";
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _createSvgIcon = _interopRequireDefault(require("./utils/createSvgIcon"));
var _jsxRuntime = require("react/jsx-runtime");
var _default = (0, _createSvgIcon.default)( /*#__PURE__*/(0, _jsxRuntime.jsx)("path", {
d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-3.31 0-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4c0-2.24-1.85-4.09-4.16-3.99l1.57 1.57L12 11.5l-4-4 4-4 1.41 1.41-1.6 1.6C15.28 6.4 18 9.18 18 12.5c0 3.31-2.69 6-6 6z"
}), 'ReplayCircleFilledOutlined');
exports.default = _default; | JavaScript | 4 | good-gym/material-ui | packages/material-ui-icons/lib/ReplayCircleFilledOutlined.js | [
"MIT"
] |
create table utf8mb4 (`主键` int primary key comment '注释'); | SQL | 4 | WizardXiao/tidb | br/tests/lightning_character_sets/utf8mb4/charsets.utf8mb4-schema.sql | [
"Apache-2.0"
] |
CLASS ltc_ci DEFINITION FINAL FOR TESTING
DURATION MEDIUM
RISK LEVEL CRITICAL.
PRIVATE SECTION.
METHODS run_ci FOR TESTING RAISING cx_static_check.
ENDCLASS.
CLASS ltc_ci IMPLEMENTATION.
METHOD run_ci.
DATA lv_repo_url TYPE string.
IF zcl_abapgit_persist_factory=>get_settings( )->read( )->get_experimental_features( ) = abap_false.
RETURN.
ENDIF.
"Use STVARV to optionally override repo in local system
SELECT SINGLE low
INTO lv_repo_url
FROM tvarvc
WHERE name = 'ABAPGIT_TEST_URL_PDTS' ##WARN_OK.
zcl_abapgit_objects_ci_tests=>run(
iv_object = 'PDTS'
iv_url = lv_repo_url ).
ENDMETHOD.
ENDCLASS.
CLASS ltc_smoke_test DEFINITION FINAL FOR TESTING
DURATION SHORT
RISK LEVEL HARMLESS.
PRIVATE SECTION.
DATA mo_cut TYPE REF TO zif_abapgit_object.
METHODS setup.
METHODS run_simple_methods FOR TESTING RAISING cx_static_check.
ENDCLASS.
CLASS ltc_smoke_test IMPLEMENTATION.
METHOD setup.
DATA ls_item TYPE zif_abapgit_definitions=>ty_item.
IF zcl_abapgit_persist_factory=>get_settings( )->read( )->get_experimental_features( ) = abap_false.
RETURN.
ENDIF.
ls_item-obj_type = 'PDTS'.
ls_item-obj_name = '99999999'.
TRY.
CREATE OBJECT mo_cut TYPE zcl_abapgit_object_pdts
EXPORTING
is_item = ls_item
iv_language = sy-langu.
CATCH zcx_abapgit_exception.
cl_abap_unit_assert=>fail( ).
ENDTRY.
ENDMETHOD.
METHOD run_simple_methods.
IF zcl_abapgit_persist_factory=>get_settings( )->read( )->get_experimental_features( ) = abap_false.
RETURN.
ENDIF.
mo_cut->get_comparator( ).
mo_cut->get_deserialize_steps( ).
mo_cut->get_metadata( ).
mo_cut->is_active( ).
ENDMETHOD.
ENDCLASS.
| ABAP | 4 | Manny27nyc/abapGit | src/objects/zcl_abapgit_object_pdts.clas.testclasses.abap | [
"MIT"
] |
!include "MUI2.nsh"
!searchparse /file ../Source/AppDef.h '#define APP_VERSIONSTR _T("' APP_VERSION '")'
!define PROGRAM_NAME "ElfView"
!define DISPLAY_NAME "Elf Viewer"
; The name of the installer
Name "${DISPLAY_NAME} v${APP_VERSION}"
; The file to write
OutFile "${PROGRAM_NAME}-${APP_VERSION}-32.exe"
; The default installation directory
InstallDir $PROGRAMFILES\${PROGRAM_NAME}
; Registry key to check for directory (so if you install again, it will
; overwrite the old one automatically)
InstallDirRegKey HKLM "Software\NSIS_${PROGRAM_NAME}" "Install_Dir"
; Request application privileges for Windows Vista
RequestExecutionLevel admin
;--------------------------------
;Interface Settings
!define MUI_ABORTWARNING
;--------------------------------
;Pages
;!insertmacro MUI_PAGE_LICENSE "${NSISDIR}\Docs\Modern UI\License.txt"
!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES
!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES
;--------------------------------
;Languages
!insertmacro MUI_LANGUAGE "English"
;--------------------------------
; Pages
;Page components
;Page directory
;Page instfiles
;UninstPage uninstConfirm
;UninstPage instfiles
;--------------------------------
!define REG_UNINSTALL "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PROGRAM_NAME}"
; The stuff to install
Section "${DISPLAY_NAME} (required)"
SectionIn RO
; Set output path to the installation directory.
SetOutPath $INSTDIR
; Put file there
File "..\Win32\Release\ElfView.exe"
File "..\changelog.html"
; Write the installation path into the registry
WriteRegStr HKLM SOFTWARE\NSIS_${PROGRAM_NAME} "Install_Dir" "$INSTDIR"
; Write the uninstall keys for Windows
WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayName" "${DISPLAY_NAME}"
WriteRegStr HKLM "${REG_UNINSTALL}" "UninstallString" '"$INSTDIR\uninstall.exe"'
WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoModify" 1
WriteRegDWORD HKLM "${REG_UNINSTALL}" "NoRepair" 1
WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayIcon" '"$INSTDIR\ElfView.exe"'
WriteRegStr HKLM "${REG_UNINSTALL}" "DisplayVersion" "${APP_VERSION}"
WriteUninstaller "uninstall.exe"
SectionEnd
; Optional section (can be disabled by the user)
Section "Start Menu Shortcuts"
CreateDirectory "$SMPROGRAMS\${DISPLAY_NAME}"
CreateShortCut "$SMPROGRAMS\${DISPLAY_NAME}\Uninstall.lnk" "$INSTDIR\uninstall.exe" "" "$INSTDIR\uninstall.exe" 0
CreateShortCut "$SMPROGRAMS\${DISPLAY_NAME}\${DISPLAY_NAME}.lnk" "$INSTDIR\ElfView.exe" "" "$INSTDIR\ElfView.exe" 0
CreateShortCut "$SMPROGRAMS\${DISPLAY_NAME}\changelog.html.lnk" "$INSTDIR\changelog.html" "" "$INSTDIR\changelog.html" 0
SectionEnd
;--------------------------------
; Uninstaller
Section "Uninstall"
; Remove registry keys
DeleteRegKey HKLM "${REG_UNINSTALL}"
DeleteRegKey HKLM SOFTWARE\NSIS_${PROGRAM_NAME}
; Remove files and uninstaller
Delete $INSTDIR\ElfView.exe
Delete $INSTDIR\changelog.html
Delete $INSTDIR\uninstall.exe
; Remove shortcuts, if any
Delete "$SMPROGRAMS\${DISPLAY_NAME}\*.*"
; Remove directories used
RMDir "$SMPROGRAMS\${DISPLAY_NAME}"
RMDir "$INSTDIR"
SectionEnd
| NSIS | 5 | Croden1999/Play- | tools/ElfView/win32_installer/installer32.nsi | [
"BSD-2-Clause"
] |
--TEST--
Test get_declared_classes() function : testing autoloaded classes
--FILE--
<?php
echo "*** Testing get_declared_classes() : testing autoloaded classes ***\n";
spl_autoload_register(function ($class_name) {
require_once $class_name . '.inc';
});
echo "\n-- before instance is declared --\n";
var_dump(in_array('AutoLoaded', get_declared_classes()));
echo "\n-- after instance is declared --\n";
$class = new AutoLoaded();
var_dump(in_array('AutoLoaded', get_declared_classes()));
echo "\nDONE\n";
?>
--EXPECT--
*** Testing get_declared_classes() : testing autoloaded classes ***
-- before instance is declared --
bool(false)
-- after instance is declared --
bool(true)
DONE
| PHP | 4 | NathanFreeman/php-src | ext/standard/tests/class_object/get_declared_classes_variation1.phpt | [
"PHP-3.01"
] |
Features Found By Circle
Xs Ys Xe Ye Len Xc Yc Rad Ang.st Ang.end
125 110 123 102 110 106 110 19 0 333
111 94 82 118 44 86 94 25 0 100
228 104 204 120 34 210 104 18 0 110
90 135 81 110 32 94 119 17 104 215
| Arc | 2 | dkuspawono/TILT-Compiler | BenchData/csim.arc | [
"MIT-CMU"
] |
module C
import A
A.defA = ?newHole
| Idris | 0 | Qqwy/Idris2-Erlang | idris2/tests/idris2/import003/C.idr | [
"BSD-3-Clause"
] |
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @flow
*/
import * as React from 'react';
import {isInternalFacebookBuild} from 'react-devtools-feature-flags';
import {REACT_DEVTOOLS_WORKPLACE_URL} from 'react-devtools-shared/src/constants';
import Icon from '../Icon';
import styles from './shared.css';
export default function WorkplaceGroup() {
if (!isInternalFacebookBuild) {
return null;
}
return (
<div className={styles.WorkplaceGroupRow}>
<Icon className={styles.ReportIcon} type="facebook" />
<a
className={styles.ReportLink}
href={REACT_DEVTOOLS_WORKPLACE_URL}
rel="noopener noreferrer"
target="_blank"
title="Report bug">
Report this on Workplace
</a>
<div className={styles.FacebookOnly}>(Facebook employees only.)</div>
</div>
);
}
| JavaScript | 3 | GBKstc/react-analysis | packages/react-devtools-shared/src/devtools/views/ErrorBoundary/WorkplaceGroup.js | [
"MIT"
] |
100 5 0 0
0 1 6 3 24 21 2 33 1 [0] [0] [0] [0] [0] [0]
1 1 1 59 [12]
2 1 1 23 [9]
3 1 3 74 51 58 [7] [7] [7]
4 1 1 100 [6]
5 1 1 14 [7]
6 1 1 71 [12]
7 1 1 19 [9]
8 1 1 79 [15]
9 1 1 20 [7]
10 1 2 22 8 [13] [13]
11 1 1 69 [10]
12 1 1 67 [13]
13 1 1 81 [12]
14 1 1 18 [11]
15 1 1 85 [12]
16 1 1 44 [13]
17 1 1 84 [5]
18 1 1 48 [14]
19 1 1 41 [7]
20 1 2 86 68 [10] [10]
21 1 2 36 31 [11] [11]
22 1 1 26 [13]
23 1 1 47 [14]
24 1 1 64 [13]
25 1 1 95 [11]
26 1 2 33 72 [-63] [14]
27 1 3 14 11 72 [13] [13] [13]
28 1 1 90 [8]
29 1 1 60 [7]
30 1 1 37 [10]
31 1 1 81 [7]
32 1 1 70 [14]
33 1 2 16 26 [6] [6]
34 1 1 97 [15]
35 1 2 29 37 [10] [10]
36 1 1 57 [13]
37 1 1 12 [13]
38 1 1 35 [14]
39 1 1 58 [10]
40 1 2 17 9 [7] [7]
41 1 3 70 99 32 [13] [13] [13]
42 1 1 75 [11]
43 1 1 49 [13]
44 1 2 90 27 [15] [15]
45 1 1 55 [15]
46 1 1 56 [13]
47 1 1 40 [8]
48 1 1 63 [13]
49 1 1 74 [13]
50 1 1 61 [10]
51 1 1 6 [6]
52 1 2 54 12 [6] [6]
53 1 2 18 94 [8] [8]
54 1 1 38 [7]
55 1 2 45 52 [-15] [8]
56 1 1 42 [11]
57 1 1 45 [6]
58 1 1 68 [13]
59 1 3 25 7 48 [5] [5] [5]
60 1 1 88 [15]
61 1 1 43 [15]
62 1 1 11 [9]
63 1 1 7 [13]
64 1 3 90 28 24 [8] [8] [-13]
65 1 2 5 10 [12] [12]
66 1 2 39 58 [12] [12]
67 1 2 93 76 [7] [7]
68 1 1 98 [9]
69 1 2 8 22 [14] [-109]
70 1 1 99 [7]
71 1 2 82 6 [9] [-12]
72 1 1 53 [9]
73 1 1 92 [13]
74 1 1 34 [11]
75 1 1 87 [9]
76 1 1 4 [7]
77 1 1 46 [11]
78 1 1 66 [15]
79 1 1 5 [5]
80 1 1 50 [7]
81 1 3 21 31 101 [-18] [-10] [7]
82 1 2 86 80 [13] [13]
83 1 1 15 [8]
84 1 1 77 [7]
85 1 2 91 4 [12] [12]
86 1 1 96 [11]
87 1 2 73 85 [7] [7]
88 1 1 89 [9]
89 1 1 78 [14]
90 1 1 30 [7]
91 1 1 76 [7]
92 1 1 9 [14]
93 1 2 85 83 [8] [8]
94 1 1 62 [12]
95 1 1 65 [9]
96 1 1 13 [11]
97 1 2 26 64 [6] [6]
98 1 1 101 [7]
99 1 1 101 [8]
100 1 1 101 [6]
101 1 0
0 1 0 0 0 0 0 0
1 1 12 2 2 0 3 3
2 1 9 2 3 0 0 2
3 1 7 0 0 1 1 3
4 1 6 3 1 0 1 1
5 1 7 3 2 1 2 2
6 1 12 1 3 2 0 2
7 1 9 2 1 2 0 1
8 1 15 3 1 1 3 0
9 1 7 3 0 1 3 1
10 1 13 3 3 3 3 0
11 1 10 1 3 3 2 2
12 1 13 1 2 0 1 1
13 1 12 0 3 1 0 1
14 1 11 3 1 3 1 0
15 1 12 0 3 1 0 2
16 1 13 3 2 0 1 3
17 1 5 0 3 3 1 1
18 1 14 2 0 2 2 1
19 1 7 0 0 1 2 3
20 1 10 0 2 2 1 2
21 1 11 3 1 2 0 3
22 1 13 3 2 1 3 3
23 1 14 1 3 3 0 2
24 1 13 2 0 1 2 0
25 1 11 1 0 1 2 3
26 1 14 3 0 1 0 1
27 1 13 2 1 1 3 0
28 1 8 3 1 0 2 2
29 1 7 3 0 1 2 2
30 1 10 3 0 2 2 3
31 1 7 3 2 0 2 1
32 1 14 2 3 1 0 1
33 1 6 2 1 3 3 0
34 1 15 0 2 1 2 1
35 1 10 2 2 0 2 1
36 1 13 0 2 3 3 1
37 1 13 3 1 0 2 2
38 1 14 0 1 2 1 2
39 1 10 3 2 1 1 2
40 1 7 2 3 2 0 3
41 1 13 1 2 2 1 3
42 1 11 1 0 2 2 1
43 1 13 2 1 2 2 0
44 1 15 3 1 2 0 2
45 1 15 0 2 2 3 1
46 1 13 2 1 1 3 2
47 1 8 2 2 2 1 0
48 1 13 2 2 0 3 3
49 1 13 3 0 1 3 1
50 1 10 1 3 2 0 3
51 1 6 0 2 0 1 1
52 1 6 1 0 1 1 2
53 1 8 1 1 2 0 3
54 1 7 0 2 2 1 3
55 1 8 2 1 1 0 0
56 1 11 3 3 0 3 1
57 1 6 1 0 2 1 2
58 1 13 1 2 3 2 0
59 1 5 1 1 1 0 1
60 1 15 2 1 2 3 1
61 1 15 1 2 0 1 0
62 1 9 3 1 1 2 2
63 1 13 3 3 1 3 2
64 1 8 3 3 1 3 0
65 1 12 3 2 2 1 3
66 1 12 3 1 0 1 2
67 1 7 2 3 1 0 2
68 1 9 2 0 3 2 1
69 1 14 0 2 2 3 1
70 1 7 0 1 3 2 1
71 1 9 1 0 1 3 3
72 1 9 1 2 3 1 3
73 1 13 2 2 2 2 0
74 1 11 0 1 0 1 2
75 1 9 1 1 2 2 3
76 1 7 1 0 3 2 1
77 1 11 1 2 1 2 0
78 1 15 1 2 2 1 1
79 1 5 1 2 3 0 2
80 1 7 2 2 2 2 0
81 1 7 1 3 1 2 3
82 1 13 3 0 1 3 3
83 1 8 0 2 0 3 2
84 1 7 0 3 3 2 2
85 1 12 0 2 2 1 1
86 1 11 2 0 3 1 2
87 1 7 2 2 0 1 1
88 1 9 1 3 3 1 3
89 1 14 3 3 3 3 2
90 1 7 0 3 2 1 3
91 1 7 3 1 2 2 3
92 1 14 0 1 2 3 3
93 1 8 0 1 1 2 2
94 1 12 3 2 1 0 3
95 1 9 3 3 2 0 2
96 1 11 2 3 1 0 3
97 1 6 3 0 2 3 1
98 1 7 1 3 1 1 0
99 1 8 2 1 2 2 0
100 1 6 2 3 0 3 1
101 1 0 0 0 0 0 0
8 9 8 9 9
| Eagle | 0 | klorel/or-tools | examples/data/rcpsp/single_mode_max_delay/testsetc/psp167.sch | [
"Apache-2.0"
] |
#pragma TextEncoding="UTF-8"
#pragma rtGlobals=3
#pragma ModuleName=SIDAMShowParameters
#include "SIDAM_Utilities_Image"
#ifndef SIDAMshowProc
#pragma hide = 1
#endif
Static Constant FONTSIZE = 10
Static Constant FONTSTYLE = 0
Function SIDAMShowParameters()
String grfName = WinName(0,1)
DFREF dfr = getSIDAMSettingDFR(grfName)
if (!DataFolderRefStatus(dfr))
return 0
endif
// A notebook can not be a subwindow of a graph. Therefore, create a new panel
// as a subwindow of a graph, and create a notebook as a subwindow of the panel.
NewPanel/HOST=$grfName/EXT=0/W=(0,0,10,10) as "properties" // the size is temporary
String pnlName = S_name
ModifyPanel/W=$grfName#$pnlName fixedSize=0
String nbName = "nb", fullName = grfName+"#"+pnlName+"#"+nbName
NewNotebook/F=0/K=1/N=$nbName/V=0/W=(0,0,1,1)/HOST=$grfName#$pnlName
Variable tabSize = getTabWidth(dfr, GetDefaultFont(fullName)) + 20
writeParameters(dfr, fullName)
Notebook $fullName defaultTab=tabSize, fSize=FONTSIZE, statusWidth=0, writeProtect=1
Notebook $fullName selection={startOfFile, startOfFile}, text="", visible=1 // Move to the top
GetWindow $grfName wsizeDC
MoveSubWindow/W=$grfName#$pnlName fnum=(0,0,tabSize*2*screenresolution/72,V_bottom-V_top)
SetActiveSubwindow $grfName
End
Static Function/S rightclickMenu()
String grfName = WinName(0,1)
if (!strlen(grfName))
return ""
endif
DFREF dfr = getSIDAMSettingDFR(grfName)
return SelectString(DataFolderRefStatus(dfr),"(","") + "Data Parameters..."
End
Static Function/DF getSIDAMSettingDFR(String grfName)
Wave/Z srcw = SIDAMImageWaveRef(grfName)
if (!WaveExists(srcw))
Wave/Z srcw = TraceNameToWaveRef(grfName,StringFromList(0,TraceNameList(grfName,";",1)))
endif
if (!WaveExists(srcw))
return $""
endif
return GetWavesDataFolderDFR(srcw):$(SIDAM_DF_SETTINGS)
End
Static Constant MAXITEMS = 512
Static Function writeParameters(DFREF dfr, String notebookName, [int style])
int i, k, n
String name
if (ParamIsDefault(style))
if (isNanonis(dfr))
style = 1
else
style = 0
endif
endif
Make/N=(2,MAXITEMS)/T/FREE params
for (i = 0, k = 0, n = CountObjectsDFR(dfr,2); i < n; i++, k++)
name = GetIndexedObjNameDFR(dfr,2,i)
NVAR/SDFR=dfr var = $name
params[][k] = {name, num2str(var)}
endfor
for (i = 0, n = CountObjectsDFR(dfr,3); i < n; i++, k++)
name = GetIndexedObjNameDFR(dfr,3,i)
SVAR/SDFR=dfr str = $name
params[][k] = {name, str}
endfor
if (style)
nanonisStyle(params)
endif
for (i = 0; strlen(params[0][i]) > 0; i++)
Notebook $notebookName text=params[0][i]+"\t"+params[1][i]+"\r"
endfor
for (i = 0, n = CountObjectsDFR(dfr,4); i < n; i++)
name = GetIndexedObjNameDFR(dfr,4,i)
Notebook $notebookName text="\r:"+name+"\r"
writeParameters(dfr:$name, notebookName, style=style)
endfor
End
Static Function getTabWidth(DFREF dfr, String fontName)
int n2 = CountObjectsDFR(dfr,2), n3 = CountObjectsDFR(dfr,3), n4 = CountObjectsDFR(dfr,4), i
String name
Make/N=(n2+n3+n4)/FREE/B/U tw
for (i = 0; i < n2; i++)
name = GetIndexedObjNameDFR(dfr,2,i)
tw[i] = FontSizeStringWidth(fontName,FONTSIZE,FONTSTYLE,name)
endfor
for (i = 0; i < n3; i++)
name = GetIndexedObjNameDFR(dfr,3,i)
tw[i+n2] = FontSizeStringWidth(fontName,FONTSIZE,FONTSTYLE,name)
endfor
for (i = 0; i < n4; i++)
name = GetIndexedObjNameDFR(dfr,4,i)
tw[i+n2+n3] = getTabWidth(dfr:$name, fontName)
endfor
return WaveMax(tw)
End
// for nanonis
Static Function isNanonis(DFREF dfr)
SVAR/SDFR=dfr/Z Experiment
NVAR/SDFR=dfr/Z NANONIS_VERSION
return SVAR_Exists(Experiment) || NVAR_Exists(NANONIS_VERSION)
End
#if IgorVersion() >= 9
Static Function nanonisStyle(Wave/T params)
int i, j
String prefix, txt
Variable coef, v
Wave indexw = nanonisStyleSearch(params, "Setpoint")
if (numpnts(indexw))
params[0][indexw[0]] += " ("+params[1][indexw[1]]+")"
endif
for (i = 0; strlen(params[0][i]) > 0; i++)
if (strsearch(params[0][i],"acquisition_time",0) != -1)
v = str2num(params[1][i])
if (v < 180)
Sprintf txt "%.2f s", v
elseif (v < 3600)
Sprintf txt "%d m %d s", floor(v/60), mod(v,60)
else
Sprintf txt "%d h %d m %d s", floor(v/3600), floor(mod(v,3600)/60), mod(v,60)
endif
params[][i] = {"acquisition time", txt}
elseif (strsearch(params[0][i],"n_pixels",0) != -1 && \
strsearch(params[0][i+1],"n_lines",0) != -1)
InsertPoints/M=1 i+2, 1, params
params[0][i+2] = "number of pixels"
params[1][i+2] = params[1][i]+", "+params[1][i+1]
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"width_m",0) != -1 && \
strsearch(params[0][i+1],"height_m",0) != -1)
InsertPoints/M=1 i+2, 1, params
Sprintf txt, "%.2f, %.2f", str2num(params[1][i])*1e9,\
str2num(params[1][i+1])*1e9
params[][i+2] = {"size (nm)", txt}
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"center_x_m",0) != -1 && \
strsearch(params[0][i+1],"center_y_m",0) != -1)
InsertPoints/M=1 i+2, 1, params
Sprintf txt, "%.2f, %.2f", str2num(params[1][i])*1e9,\
str2num(params[1][i+1])*1e9
params[][i+2] = {"center (nm)", txt}
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"Grid_settings",0) != -1)
InsertPoints/M=1 i+1, 3, params
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(0,params[1][i]))*1e9,\
str2num(StringFromList(1,params[1][i]))*1e9
params[][i+1] = {"Grid center (nm)", txt}
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(2,params[1][i]))*1e9,\
str2num(StringFromList(3,params[1][i]))*1e9
params[][i+2] = {"Grid size (nm)", txt}
Sprintf txt, "%.2f", str2num(StringFromList(4,params[1][i]))
params[][i+3] = {"Grid angle (deg)", txt}
DeletePoints/M=1 i, 1, params
i += 2
elseif (strsearch(params[0][i],"Scanfield",0) != -1)
InsertPoints/M=1 i+1, 3, params
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(0,params[1][i]))*1e9, \
str2num(StringFromList(1,params[1][i]))*1e9
params[][i+1] = {"Scanfield center (nm)", txt}
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(2,params[1][i]))*1e9,\
str2num(StringFromList(3,params[1][i]))*1e9
params[][i+2] = {"Scanfield size (nm)", txt}
Sprintf txt, "%.2f", str2num(StringFromList(4,params[1][i]))
params[][i+3] = {"Scanfield angle (deg)", txt}
DeletePoints/M=1 i, 1, params
i += 2
elseif (strsearch(params[0][i],"P gain",0) != -1)
params[0][i] = "P gain (m)"
elseif (strsearch(params[0][i],"I gain",0) != -1)
params[0][i] = "I gain (m/s)"
endif
endfor
Make/T/N=(2,11)/FREE uw
uw[][0] = {"_V_m_2_","V/m^2"}
uw[][1] = {"_m_s_","m/s"}
uw[][2] = {"_m_V_","m/V"}
uw[][3] = {"_A_V_","A/V"}
uw[][4] = {"_V_V_","V/V"}
uw[][5] = {"_m_","m"}
uw[][6] = {"_A_","A"}
uw[][7] = {"_V_","V"}
uw[][8] = {"_s_","s"}
uw[][9] = {"_Hz_","Hz"}
uw[][10] = {"_deg_","deg"}
for (i = 0; strlen(params[0][i]) > 0; i++)
for (j = 0; j < DimSize(uw, 1); j++)
if (strsearch(params[0][i],uw[0][j],0) == -1)
continue
endif
[prefix, coef] = nanonisStylePrefix(str2num(params[1][i]))
params[0][i] = ReplaceString(uw[0][j],params[0][i],"("+prefix+uw[1][j]+")")
params[1][i] = num2str(str2num(params[1][i])*10^coef)
endfor
params[0][i] = ReplaceString("_",params[0][i]," ")
endfor
End
#else
Static Function nanonisStyle(Wave/T params)
int i, j
String units = "m;m/s;m/V;A;A/V;s"
String unit, prefix, txt
Variable coef, v
Wave indexw = nanonisStyleSearch(params, "Setpoint")
if (numpnts(indexw))
params[0][indexw[0]] += " ("+params[1][indexw[1]]+")"
endif
for (i = 0; strlen(params[0][i]) > 0; i++)
if (strsearch(params[0][i],"acquisition time",0) != -1)
v = str2num(params[1][i])
if (v < 180)
Sprintf txt "%.2f s", v
elseif (v < 3600)
Sprintf txt "%d m %d s", floor(v/60), mod(v,60)
else
Sprintf txt "%d h %d m %d s", floor(v/3600), floor(mod(v,3600)/60), mod(v,60)
endif
params[][i] = {"acquisition time", txt}
elseif (strsearch(params[0][i],"# pixels",0) != -1 && \
strsearch(params[0][i+1],"# lines",0) != -1)
InsertPoints/M=1 i+2, 1, params
params[0][i+2] = "number of pixels"
params[1][i+2] = params[1][i]+", "+params[1][i+1]
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"width (m)",0) != -1 && \
strsearch(params[0][i+1],"height (m)",0) != -1)
InsertPoints/M=1 i+2, 1, params
Sprintf txt, "%.2f, %.2f", str2num(params[1][i])*1e9,\
str2num(params[1][i+1])*1e9
params[][i+2] = {"size (nm)", txt}
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"center x (m)",0) != -1 && \
strsearch(params[0][i+1],"center y (m)",0) != -1)
InsertPoints/M=1 i+2, 1, params
Sprintf txt, "%.2f, %.2f", str2num(params[1][i])*1e9,\
str2num(params[1][i+1])*1e9
params[][i+2] = {"center (nm)", txt}
DeletePoints/M=1 i, 2, params
elseif (strsearch(params[0][i],"Grid settings",0) != -1)
InsertPoints/M=1 i+1, 3, params
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(0,params[1][i]))*1e9,\
str2num(StringFromList(1,params[1][i]))*1e9
params[][i+1] = {"Grid center (nm)", txt}
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(2,params[1][i]))*1e9,\
str2num(StringFromList(3,params[1][i]))*1e9
params[][i+2] = {"Grid size (nm)", txt}
Sprintf txt, "%.2f", str2num(StringFromList(4,params[1][i]))
params[][i+3] = {"Grid angle (deg)", txt}
DeletePoints/M=1 i, 1, params
i += 2
elseif (strsearch(params[0][i],"Scanfield",0) != -1)
InsertPoints/M=1 i+1, 3, params
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(0,params[1][i]))*1e9, \
str2num(StringFromList(1,params[1][i]))*1e9
params[][i+1] = {"Scanfield center (nm)", txt}
Sprintf txt, "%.2f, %.2f", str2num(StringFromList(2,params[1][i]))*1e9,\
str2num(StringFromList(3,params[1][i]))*1e9
params[][i+2] = {"Scanfield size (nm)", txt}
Sprintf txt, "%.2f", str2num(StringFromList(4,params[1][i]))
params[][i+3] = {"Scanfield angle (deg)", txt}
DeletePoints/M=1 i, 1, params
i += 2
elseif (strsearch(params[0][i],"P gain",0) != -1)
params[0][i] = "P gain (m)"
elseif (strsearch(params[0][i],"I gain",0) != -1)
params[0][i] = "I gain (m/s)"
endif
endfor
for (i = 0; strlen(params[0][i]) > 0; i++)
for (j = 0; j < ItemsInList(units); j++)
unit = StringFromList(j,units)
if (strsearch(params[0][i],"("+unit+")",0) == -1)
continue
endif
[prefix, coef] = nanonisStylePrefix(str2num(params[1][i]))
params[0][i] = ReplaceString("("+unit+")",params[0][i],"("+prefix+unit+")")
params[1][i] = num2str(str2num(params[1][i])*10^coef)
endfor
endfor
End
#endif
Static Function[String prefix, Variable coef] nanonisStylePrefix(Variable var)
int exponent = floor(log(abs(var)))
if (exponent < -15 || exponent > 9)
return ["", 0]
endif
int index = floor(exponent/3)+6
Make/T/FREE prefixw = {"a", "f", "p", "n", "u", "m", "", "k", "M", "G"}
return [prefixw[index], 18-3*index]
End
Static Function/WAVE nanonisStyleSearch(Wave/T params, String regstr)
DFREF dfrSav = GetDataFolderDFR()
SetDataFolder NewFreeDataFolder()
Duplicate/T params tw
MatrixTranspose tw
Grep/E=regstr/INDX/Q tw
Wave indxw = W_Index
SetDataFolder dfrSav
return indxw
End
| IGOR Pro | 5 | yuksk/SIDAM | src/SIDAM/func/SIDAM_ShowParameters.ipf | [
"MIT"
] |
#!/usr/bin/env zsh
# vim:ft=zsh ts=2 sw=2 sts=2
_emotty_sets[emoji]="
crystal_ball
ghost
jack_o_lantern
see_no_evil_monkey
hear_no_evil_monkey
speak_no_evil_monkey
smiling_cat_face_with_open_mouth
extraterrestrial_alien
rocket
billiards
bomb
pill
japanese_symbol_for_beginner
direct_hit
cyclone
diamond_shape_with_a_dot_inside
sparkle
eight_spoked_asterisk
eight_pointed_black_star
"
| Shell | 3 | chensanle/ohmyzsh | plugins/emotty/emotty_emoji_set.zsh | [
"MIT"
] |
rly foo
shh 1
but rly bar
shh 2
but
shh 3
wow
| Dogescript | 0 | joeratt/dogescript | test/spec/rly/rly-but-rly-but/source.djs | [
"MIT"
] |
discard """
output: '''123
c is not nil'''
"""
# bug #9149
type
Container = ref object
data: int
converter containerToString*(x: Container): string = $x.data
var c = Container(data: 123)
var str = string c
echo str
if c == nil: # this line can compile on v0.18, but not on 0.19
echo "c is nil"
if not c.isNil:
echo "c is not nil"
| Nimrod | 3 | JohnAD/Nim | tests/overload/tconverter_to_string.nim | [
"MIT"
] |
'fileTypes': ['alittle']
'name': 'Alittle'
'scopeName': 'source.alittle'
'patterns': [
{
'captures':
'0':
'name': 'keyword.alittle'
'match': 'alittle'
}
]
| CoffeeScript | 2 | pyrolabs/atom | spec/fixtures/packages/package-with-grammars/grammars/alittle.cson | [
"MIT"
] |
#!/usr/bin/env bash
set -euo pipefail
shopt -s globstar
# NOTE: we want to use --network=host everywhere we use docker here, for
# performance (supposedly). We include X:X port mappings which will be used on
# Mac and Windows(?) where --network=host is ignored.
echo_pretty() {
echo ">>> $(tput setaf 2)$1$(tput sgr0)"
}
die_usage() {
cat <<EOL
-------------------------=========########========-------------------------
Run hasura benchmarks
Usage:
$ $0 <benchmark_dir> [<hasura_docker_image>] [<sleep_time_sec_before_bench>]
The first argument chooses the particular benchmark set to run e.g. "chinook"
or "big_schema" (these correspond to directories under 'benchmark_sets/').
The second optional argument is the docker image name to test. e.g.
"hasura/graphql-engine:latest" If omitted we'll look for a hasura instance
launched with 'dev.sh graphql-engine'.
-------------------------=========########========-------------------------
EOL
exit 1
}
[ ! -d "benchmark_sets/${1-}" ] && die_usage
BENCH_DIR="$(pwd)/benchmark_sets/$1"
REQUESTED_HASURA_DOCKER_IMAGE="${2-}"
# We may wish to sleep after setting up the schema, etc. to e.g. allow memory
# to settle to a baseline before we measure it:
if [ -z "${3-}" ]; then
POST_SETUP_SLEEP_TIME=0
else
POST_SETUP_SLEEP_TIME="$3"
fi
# Make sure we clean up, even if something goes wrong:
function cleanup {
if [ ! -z "${HASURA_CONTAINER_NAME-}" ]; then
echo_pretty "Stopping and removing hasura container"
docker stop "$HASURA_CONTAINER_NAME" && docker rm "$HASURA_CONTAINER_NAME" \
|| echo "Stopping hasura failed, maybe it never started?"
fi
pg_cleanup || echo "Stopping postgres failed, maybe it never started?"
custom_cleanup || echo "Custom cleanup failed"
}
trap cleanup EXIT
# How can we communicate with localhost from a container?
if [ $(uname -s) = Darwin ]; then
# Docker for mac:
LOCALHOST_FROM_CONTAINER=host.docker.internal
DOCKER_NETWORK_HOST_MODE=""
else
LOCALHOST_FROM_CONTAINER=127.0.0.1
DOCKER_NETWORK_HOST_MODE="--network=host"
fi
# The beefy c4.8xlarge EC2 instance has two sockets, so we'll try our best to
# pin hasura on one and postgres on the other
if taskset -c 17 sleep 0 ; then
echo_pretty "CPUs? Running on a beefy CI machine"
TASKSET_HASURA="taskset -c 0-6" # SOCKET/NUMA_NODE 0
TASKSET_K6="taskset -c 7,8" # SOCKET/NUMA_NODE 0
TASKSET_PG="taskset -c 9-17" # SOCKET/NUMA_NODE 1
HASURA_RTS="-qa -N7"
# This is a sort of hack to, on CI (where circleci doesn't handle control
# characters properly), force K6 to not print progress bar updates. But note
# that the fabric script that calls this script will also fail if this is not
# run with a pTTY...
# This is still not great because K6 spits out progress every second or so.
# TODO maybe combine this stuff into a single are-we-on-ci check / env var
K6_DOCKER_t_OR_init="--init"
else
echo_pretty "CPUs? Running on a puny local machine"
TASKSET_HASURA=""
TASKSET_PG=""
TASKSET_K6=""
HASURA_RTS=""
K6_DOCKER_t_OR_init="-t"
fi
##################
# Postgres #
##################
# FYI this is adapted from scripts/containers/postgres, and uses settings
# (ports, passwords, etc) identical to `dev.sh postgres` for compatibility
# with `dev.sh graphql-engine`
PG_PORT=25432
PG_PASSWORD=postgres
PG_CONTAINER_NAME="hasura-dev-postgres-$PG_PORT"
PG_DB_URL="postgres://postgres:$PG_PASSWORD@$LOCALHOST_FROM_CONTAINER:$PG_PORT/postgres"
PSQL_DOCKER="docker exec -u postgres -i $PG_CONTAINER_NAME psql $PG_DB_URL"
if [ "$(awk '/^MemTotal:/{print $2}' /proc/meminfo)" -ge "30000000" ]; then
echo_pretty "RAM? Running on a beefy CI machine"
# These are the suggested values from https://pgtune.leopard.in.ua/#/
# using the parameters of c4.8xlarge, divided by two (since hasura is running
# on the same instance): 9 cores and 30GB RAM, as "web application".
#
# NOTE: no spaces here or this will break
CONF=$(cat <<-EOF
shared_buffers=7680MB
effective_cache_size=23040MB
maintenance_work_mem=1920MB
checkpoint_completion_target=0.9
wal_buffers=16MB
default_statistics_target=100
random_page_cost=1.1
effective_io_concurrency=200
work_mem=19660kB
min_wal_size=1GB
max_wal_size=4GB
max_worker_processes=9
max_parallel_workers_per_gather=4
max_parallel_workers=9
max_parallel_maintenance_workers=4
port=$PG_PORT
EOF
)
# otherwise just use a configuration assuming 8GB RAM local dev machine:
else
echo_pretty "RAM? Running on a puny local machine"
CONF=$(cat <<-EOF
max_connections=50
shared_buffers=1GB
effective_cache_size=3GB
maintenance_work_mem=256MB
checkpoint_completion_target=0.9
wal_buffers=16MB
default_statistics_target=100
random_page_cost=1.1
effective_io_concurrency=200
work_mem=20971kB
min_wal_size=1GB
max_wal_size=4GB
max_worker_processes=2
max_parallel_workers_per_gather=1
max_parallel_workers=2
max_parallel_maintenance_workers=1
port=$PG_PORT
EOF
)
fi
# log lines above as -c flag arguments we pass to postgres
CONF_FLAGS=$(echo "$CONF" | sed -e 's/^/-c /' | tr '\n' ' ')
# NOTE: after some consideration we decided to serve postgres from ramdisk
# here. A few reasons:
#
# - EBS is incredibly finicky and difficult to provision correctly[1]; we
# could easily add a new benchmark which exhausts our IOPS and causes
# confusing regression-like results
# - SQL-gen regressions should still show up as regressions if we're backed by
# tmpfs; only perhaps the magnitidue would change. We also expected PG to be
# doing significant in-memory caching on the small datasets here.
# - There is some evidence[2] that ramdisk is actually a decent approximation of
# the performance of a perfectly-tuned durable PG instance (i.e. the latency
# numbers we get here are useful in absolute terms as well, representing ideal
# performance)
#
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/EBSPerformance.html
# [2]: https://performance.sunlight.io/postgres/
function pg_launch_container(){
echo_pretty "Launching postgres container: $PG_CONTAINER_NAME"
$TASKSET_PG docker run \
--mount type=tmpfs,destination=/var/lib/postgresql/data \
--name "$PG_CONTAINER_NAME" \
-p 127.0.0.1:"$PG_PORT":$PG_PORT \
--expose="$PG_PORT" \
-e POSTGRES_PASSWORD="$PG_PASSWORD" \
$DOCKER_NETWORK_HOST_MODE \
-d circleci/postgres:11.5-alpine-postgis \
$CONF_FLAGS
}
function pg_wait() {
echo -n "Waiting for postgres to come up"
until ( $PSQL_DOCKER -c '\l' ) &>/dev/null; do
echo -n '.' && sleep 0.2
done
echo " Ok"
}
function pg_cleanup(){
echo_pretty "Removing $PG_CONTAINER_NAME and its volumes"
docker stop "$PG_CONTAINER_NAME"
docker rm -v "$PG_CONTAINER_NAME"
}
######################
# graphql-engine #
######################
# This matches the default we use in `dev.sh graphql-engine`
HASURA_GRAPHQL_SERVER_PORT=8181
# For Mac compatibility, we need to use this URL for hasura when communicating
# FROM a container (in this case graphql-bench):
HASURA_URL_FROM_CONTAINER="http://$LOCALHOST_FROM_CONTAINER:$HASURA_GRAPHQL_SERVER_PORT"
# ...and for anything outside a container, just:
HASURA_URL="http://127.0.0.1:$HASURA_GRAPHQL_SERVER_PORT"
# Maybe launch the hasura instance we'll benchmark
function maybe_launch_hasura_container() {
if [ ! -z "$REQUESTED_HASURA_DOCKER_IMAGE" ]; then
HASURA_CONTAINER_NAME="graphql-engine-to-benchmark"
$TASKSET_HASURA docker run -d -p 127.0.0.1:$HASURA_GRAPHQL_SERVER_PORT:$HASURA_GRAPHQL_SERVER_PORT \
--name "$HASURA_CONTAINER_NAME" \
-e HASURA_GRAPHQL_DATABASE_URL=$PG_DB_URL \
-e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
-e HASURA_GRAPHQL_SERVER_PORT="$HASURA_GRAPHQL_SERVER_PORT" \
$DOCKER_NETWORK_HOST_MODE \
"$REQUESTED_HASURA_DOCKER_IMAGE" \
graphql-engine serve +RTS -T $HASURA_RTS -RTS
# ^^^ We run with `+RTS -T` to expose the /dev/rts_stats endpoint for
# inspecting memory usage stats
else
echo_pretty "We'll benchmark the hasura instance at port $HASURA_GRAPHQL_SERVER_PORT"
fi
}
function hasura_wait() {
# Wait for the graphql-engine under bench to be ready
echo -n "Waiting for graphql-engine at $HASURA_URL"
if [ -z "$REQUESTED_HASURA_DOCKER_IMAGE" ]; then
echo -n " (e.g. from 'dev.sh graphql-engine')"
fi
until curl -s "$HASURA_URL/v1/query" &>/dev/null; do
echo -n '.' && sleep 0.2
done
echo ""
echo " Ok"
echo -n "Sleeping for an additional $POST_SETUP_SLEEP_TIME seconds as requested... "
sleep "$POST_SETUP_SLEEP_TIME"
echo " Ok"
}
#####################
# graphql-bench #
#####################
# We want to always use the latest graphql-bench. Installing is idempotent and
# fairly speedy the second time, if no changes.
function install_latest_graphql_bench() {
echo_pretty "Installing/updating graphql-bench"
graphql_bench_git=$(mktemp -d -t graphql-bench-XXXXXXXXXX)
git clone --depth=1 https://github.com/hasura/graphql-bench.git "$graphql_bench_git"
cd "$graphql_bench_git"
# We name this 'graphql-bench-ci' so it doesn't interfere with other versions
# (e.g. local dev of `graphql-bench`, installed with `make
# build_local_docker_image`:
docker build -t graphql-bench-ci:latest ./app
cd -
echo_pretty "Done"
}
function run_benchmarks() {
echo_pretty "Starting benchmarks"
cd "$BENCH_DIR"
# This reads config.query.yaml from the current directory, outputting
# report.json to the same directory
$TASKSET_K6 docker run $DOCKER_NETWORK_HOST_MODE -v "$PWD":/app/tmp -i $K6_DOCKER_t_OR_init \
graphql-bench-ci query \
--config="./tmp/config.query.yaml" \
--outfile="./tmp/report.json" --url "$HASURA_URL_FROM_CONTAINER/v1/graphql"
echo_pretty "Done. Report at $PWD/report.json"
cd -
}
function custom_setup() {
cd "$BENCH_DIR"
if [ -x setup.sh ]; then
echo_pretty "Running custom setup script"
./setup.sh
fi
cd -
}
function custom_cleanup() {
cd "$BENCH_DIR"
if [ -x cleanup.sh ]; then
echo_pretty "Running custom cleanup script"
./cleanup.sh
fi
cd -
}
function load_data_and_schema() {
echo_pretty "Loading data and adding schema"
cd "$BENCH_DIR"
if [ -f dump.sql.gz ]; then
gunzip -c dump.sql.gz | $PSQL_DOCKER &> /dev/null
else
echo_pretty "No data to load"
fi
if [ -f replace_metadata.json ]; then
# --fail-with-body is what we want, but is not available on older curl:
# TODO LATER: use /v1/metadata once stable
curl --fail -X POST -H "Content-Type: application/json" -d @replace_metadata.json "$HASURA_URL/v1/query"
else
echo_pretty "No metadata to replace"
fi
cd -
}
##################################
# bringing it all together... #
##################################
# Start this ahead of time...
pg_launch_container
# meanwhile...
install_latest_graphql_bench
# Wait for pg, then bring up hasura if needed
pg_wait
maybe_launch_hasura_container
hasura_wait
custom_setup
load_data_and_schema
run_benchmarks
| Shell | 5 | devrsi0n/graphql-engine | server/benchmarks/bench.sh | [
"Apache-2.0",
"MIT"
] |
module Fw {
type ComBuffer
@ Port for passing communication packet buffers
port Com(
ref data: ComBuffer @< Buffer containing packet data
context: U32 @< Call context value; meaning chosen by user
)
}
| FORTRAN | 2 | AlperenCetin0/fprime | Fw/Com/Com.fpp | [
"Apache-2.0"
] |
#!/usr/bin/env awk -f
#
# @license Apache-2.0
#
# Copyright (c) 2017 The Stdlib Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Computes the corrected sample skewness.
#
# Usage: skewness
#
# Input:
# - a column of numbers
#
# Output:
# - corrected sample skewness
#
# References:
# - Joanes, D. N., and C. A. Gill. 1998. "Comparing measures of sample skewness and kurtosis." *Journal of the Royal Statistical Society: Series D (The Statistician)* 47 (1). Blackwell Publishers Ltd: 183–89. doi:[10.1111/1467-9884.00122](http://dx.doi.org/10.1111/1467-9884.00122).
BEGIN {
deltaN = 0
delta = 0
term1 = 0
mean = 0
M2 = 0
M3 = 0
g1 = 0
N = 0
}
{
N += 1
delta = $1 - mean
deltaN = delta / N
term1 = delta * deltaN * (N-1)
M3 += term1*deltaN*(N-2) - 3*deltaN*M2
M2 += term1
mean += deltaN
}
END {
if (N < 3) {
print ""
} else {
g1 = sqrt(N)*M3 / (M2*sqrt(M2))
print sqrt(N*(N-1)) * g1 / (N-2)
}
}
| Awk | 5 | ghalimi/stdlib | tools/awk/skewness.awk | [
"BSL-1.0"
] |
-- Let's prove substitutivity, symmetry and transitivity of equality:
make ship : (X : Set)(x : X)(y : X)(q : :- x == y)(P : X -> Set) -> P x -> P y ;
lambda X, x, y, q, P, px ;
give coe (P x) (P y) ?q px ;
give con (refl (X -> Set) P % x y _) ;
root ;
make sym := (\ S s t q -> ship S s t _ (\ x -> :- x == s) _) : (S : Set)(s : S)(t : S) -> :- s == t -> :- t == s ;
make trans := (\ S s t u q r -> ship S t s (sym S s t _) (\ x -> :- x == u) r) : (S : Set)(s : S)(t : S)(u : S) -> :- s == t -> :- t == u -> :- s == u ;
<= [xf] NatCase k ;
= 'suc 'zero ;
<= [xf] NatCase xf^2 ;
= 'suc 'zero ;
-- Unfortunately, our implementation of elimination with a motive is currently
-- unable to simplify the hypothesis, so we have to extract the justification
-- for the recursive calls by hand.
make rec := ship Nat k ('suc ('suc xf^1)) ? (aux P^2) xf^5 : _ ;
next ;
give trans Nat k ('suc xf^6) ('suc ('suc xf^1)) ? ? ;
give sym Nat ('suc xf^6) k xf^4 ;
give sym Nat ('suc xf^1) xf^6 xf ;
out ;
out ;
-- Having done that, we can make the recursive call. We need a blunderbuss to
-- deal with finding the labelled types!
= plus (fib xf^1) (fib ('suc xf^1)) ;
give rec - ! ;
give rec ! ;
| PigLatin | 4 | mietek/epigram | src/Detritus/Fibonacci.pig | [
"MIT"
] |
#include <errno.h>
#include <string.h> // strcmp, strerror
#include <sys/utsname.h> // uname
#include "liboffsetfinder64.hpp"
#include "getoffsets.h"
static offsets_t off;
static bool didInit = false;
static tihmstar::offsetfinder64* finder = 0;
offsets_t* get_offsets()
{
if (!didInit){
finder = new tihmstar::offsetfinder64("/System/Library/Caches/com.apple.kernelcaches/kernelcache");
off.base = 0xfffffff007004000;
off.sizeof_task = (kptr_t)finder->find_sizeof_task();
off.task_itk_self = (kptr_t)finder->find_task_itk_self();
off.task_itk_registered = (kptr_t)finder->find_task_itk_registered();
off.task_bsd_info = (kptr_t)finder->find_task_bsd_info();
off.proc_ucred = (kptr_t)finder->find_proc_ucred();
off.vm_map_hdr = (kptr_t)finder->find_vm_map_hdr();
off.ipc_space_is_task = (kptr_t)finder->find_ipc_space_is_task();
off.realhost_special = 0x10;
off.iouserclient_ipc = (kptr_t)finder->find_iouserclient_ipc();
off.vtab_get_retain_count = (kptr_t)finder->find_vtab_get_retain_count();
off.vtab_get_external_trap_for_index = (kptr_t)finder->find_vtab_get_external_trap_for_index();
off.zone_map = (kptr_t)finder->find_zone_map();
off.kernel_map = (kptr_t)finder->find_kernel_map();
off.kernel_task = (kptr_t)finder->find_kernel_task();
off.realhost = (kptr_t)finder->find_realhost();
off.copyin = (kptr_t)finder->find_copyin();
off.copyout = (kptr_t)finder->find_copyout();
off.chgproccnt = (kptr_t)finder->find_chgproccnt();
off.kauth_cred_ref = (kptr_t)finder->find_kauth_cred_ref();
off.ipc_port_alloc_special = (kptr_t)finder->find_ipc_port_alloc_special();
off.ipc_kobject_set = (kptr_t)finder->find_ipc_kobject_set();
off.ipc_port_make_send = (kptr_t)finder->find_ipc_port_make_send();
off.osserializer_serialize = (kptr_t)finder->find_osserializer_serialize();
off.rop_ldr_x0_x0_0x10 = (kptr_t)finder->find_rop_ldr_x0_x0_0x10();
didInit = true;
}
return &off;
}
kptr_t find_symbol(const char* symbol) {
if (!didInit){
finder = new tihmstar::offsetfinder64("/System/Library/Caches/com.apple.kernelcaches/kernelcache");
didInit = true;
}
return (kptr_t)finder->find_sym(symbol);
}
| C++ | 4 | OsmanDere/metasploit-framework | external/source/exploits/CVE-2017-13861/liboffsetfinder64/getoffsets.cpp | [
"BSD-2-Clause",
"BSD-3-Clause"
] |
parameters:
- name: artifacts
type: object
default: {}
- name: downloadPath
type: string
default: $(Build.SourcesDirectory)
steps:
- ${{ each artifact in parameters.artifacts }}:
- task: DownloadBuildArtifacts@0
displayName: Download ${{artifact}}
inputs:
artifactName: ${{artifact}}
downloadPath: ${{parameters.downloadPath}}
- script: unzip ${{artifact}}/${{artifact}} -d out
displayName: Unzip ${{artifact}}
| YAML | 4 | Embodimentgeniuslm3/BDB11A0E2DE062D2E39E4C5301B2FE5E | script/vsts/platforms/templates/download-unzip.yml | [
"MIT"
] |
example. 86400 IN SOA ns1 admin 2018031900 (
1800 900 604800 86400 )
86400 IN NS ns1
86400 IN NS ns2
86400 IN ZONEMD 2018031900 1 1 (
31cefb03814f5062
ad12fa951ba0ef5f
8da6ae354a415767
246f7dc932ceb1e7
42a2108f529db6a3
3a11c01493de358d )
ns1 3600 IN A 203.0.113.63
ns2 3600 IN AAAA 2001:db8::63
occluded.sub 7200 IN TXT "I'm occluded but must be digested"
sub 7200 IN NS ns1
duplicate 300 IN TXT "I must be digested just once"
duplicate 300 IN TXT "I must be digested just once"
foo.test. 555 IN TXT "out-of-zone data must be excluded"
non-apex 900 IN ZONEMD 2018031900 1 1 (
616c6c6f77656420
6275742069676e6f
7265642e20616c6c
6f77656420627574
2069676e6f726564
2e20616c6c6f7765 )
| DNS Zone | 3 | luisdallos/unbound | testdata/zonemd.example_a2.zone | [
"BSD-3-Clause"
] |
using AMQPClient
const VIRTUALHOST = "/"
const HOST = "127.0.0.1"
function send()
# 1. Create a connection to the localhost or 127.0.0.1 of virtualhost '/'
connection(; virtualhost=VIRTUALHOST, host=HOST) do conn
# 2. Create a channel to send messages
channel(conn, AMQPClient.UNUSED_CHANNEL, true) do chan
queue = "task_queue"
# 3. Configure the queue
success, queue_name, message_count, consumer_count = queue_declare(chan, queue, durable=true)
# 4. Prepare the message text
if length(Base.ARGS) >= 1
received = Base.ARGS[1]
else
received = "Hello World"
end
# 5. Prepare the payload
data = convert(Vector{UInt8}, codeunits(received))
msg = Message(data, content_type="text/plain", delivery_mode=PERSISTENT)
# 6. Send the payload
basic_publish(chan, msg; exchange="", routing_key=queue)
println("Message sent: $received")
end
end
end
send()
| Julia | 4 | muhammadali8767/rabbit_php | julia/new_task.jl | [
"Apache-2.0"
] |
<p class="username gray"></p>
<p class="email gray"></p>
<button id="verify-email-warning" class="red" onclick="showVerifyEmailPopup();">verify your email address</button>
<p> </p>
<p>
<span>plan</span>
<span>
<span class="storage allowedStorage">400</span>
<small class="unit gray allowedStorageUnit">gb</small>
</span>
</p>
<p>
<span>using</span>
<span>
<span class="storage usedStorage">900</span>
<small class="unit gray usedStorageUnit">kb</small>
</span>
</p>
<p> </p>
<p class="gray for-free-users">help us make the internet a more private & beautiful place, where everyone can feel at home and safe.</p>
<p class="gray for-paid-users">thank you for being a paid user and helping us make the internet a more private & beautiful place.</p>
<p> </p>
<p class="gray for-paid-users">need more storage?</p>
<a class="green bold" href="plans">switch to a larger plan</a>
| Kit | 1 | pws1453/web-client | source/imports/app/account-tab-overview.kit | [
"MIT"
] |
# Bash script
# for x in {0..8}; do
# for i in {30..37}; do
# for a in {40..47}; do
# echo -ne "\e[$x;$i;$a""m\\\e[$x;$i;$a""m\e[0;37;40m "
# done
# echo
# done
# echo
# done
# echo ""
# Nushell 0.32.0
for x in 0..8 {
let row = (for i in 30..37 {
let row = (for a in 40..47 {
let color = $"($x);($i);($a)"
$"(ansi -e $color)m\e[($color)(ansi -e '0;37;40')m "
} | str collect)
$"($row)(char newline)"
} | str collect)
$"($row)(char newline)"
} | str collect
# Nushell 0.31.0
# echo 0..8 | each { |style|
# let row = (echo 30..37 | each { |fg|
# let row = (echo 40..47 | each { |bg|
# let color = $"($style);($fg);($bg)m"
# $"(ansi -e $color)($color)(ansi reset) "
# } | str collect)
# $"($row)(char newline)"
# } | str collect)
# $"($row)(char newline)"
# } | str collect | Nu | 4 | x3rAx/nu_scripts | coloring/color_tables.nu | [
"MIT"
] |
// Copyright 2006-2015 Las Venturas Playground. All rights reserved.
// Use of this source code is governed by the GPLv2 license, a copy of which can
// be found in the LICENSE file.
/**
* There are two types of countdowns in Las Venturas Playground. Firstly, there is the global
* countdown which will be shown for all players. It will be displayed on their screen as a medium
* sized box, aligned right below the amount of money they're carrying.
*
* Secondly, there are personal countdowns. These are much more prominent as they'll be visible
* in the center of their screen, with larger characters and a bigger surface area. These are used
* for many minigames, for example to display the amount of time left before the player can start.
*
* There are six public methods which systems using this class will care about.
*
* Countdown::startGlobalCountdown(duration)
* Countdown::stopGlobalCountdown()
* Countdown::startPlayerCountdown(playerId, duration)
* Countdown::stopPlayerCountdown(playerId)
*
* Countdown::disableGlobalCountdownForPlayer(playerId)
* Countdown::enableGlobalCountdownForPlayer(playerId)
*
* Player-specific countdowns will automatically be stopped after a player disconnects. Upon a new
* player's connection, we'll make sure to display and running countdowns for them.
*
* @author Russell Krupke <russell@sa-mp.nl>
*/
class Countdown {
// What is the maximum countdown duration, in seconds?
public const MaximumDuration = 300;
// How many seconds should the "GO" text be displayed?
const SecondsToDisplayGo = 3;
// A single global text-draw to be shared among all players.
new Text: m_globalDisplay;
// At which timestamp should the global countdown stop ticking?
new m_globalFinishTimestamp;
// What is the text that's currently being displayed on the global countdown?
new m_globalTimestampDisplay[8];
// Should displaying active global countdowns be disabled for a certain player?
new bool: m_globalDisplayDisabledForPlayer[MAX_PLAYERS];
/**
* Initialize the global count-down display for all players. The displayed box is a light-gray
* rectangle on the right half of the screen, aligned exactly below the amount of cash the
* player is carrying, one line high to fit nicely above the death list.
*/
@list(OnGameModeInit)
public initialize() {
m_globalDisplay = TextDrawCreate(457.0, 33.0, "_");
TextDrawAlignment(m_globalDisplay, 2);
TextDrawColor(m_globalDisplay, Color::White);
TextDrawBoxColor(m_globalDisplay, Color::LightGrayBackground);
TextDrawUseBox(m_globalDisplay, 1);
TextDrawFont(m_globalDisplay, 1);
TextDrawTextSize(m_globalDisplay, 0.0, 64.0);
TextDrawLetterSize(m_globalDisplay, 0.51, 2.3);
TextDrawSetOutline(m_globalDisplay, 1);
}
/**
* Start a new global countdown, which will immediately be displayed on the screens of all
* players. This function will fail if the duration is longer than the set limit, or if another
* countdown is already in process.
*
* @param duration The duration of the countdown, in seconds.
* @return boolean Were we able to start the global countdown?
*/
public bool: startGlobalCountdown(duration) {
if (duration > Countdown::MaximumDuration || m_globalFinishTimestamp != 0)
return false;
m_globalFinishTimestamp = Time->currentTime() + duration;
m_globalTimestampDisplay[0] = 0;
new countdownDisplay[8];
Time->formatRemainingTime(duration, countdownDisplay, sizeof(countdownDisplay));
TextDrawSetString(m_globalDisplay, countdownDisplay);
for (new playerId = 0; playerId <= PlayerManager->highestPlayerId(); ++playerId) {
if (m_globalDisplayDisabledForPlayer[playerId] || !Player(playerId)->isConnected())
continue;
TextDrawShowForPlayer(playerId, m_globalDisplay);
}
return true;
}
/**
* Immediately stop the global countdown. It will be hidden for all players and the counters
* will be reset, also making it possible for a new counter to start.
*/
public stopGlobalCountdown() {
TextDrawHideForAll(m_globalDisplay);
m_globalFinishTimestamp = 0;
m_globalTimestampDisplay[0] = 0;
}
/**
* Enable displaying the global countdown counters for a certain player.
*
* @param playerId Id of the player to re-enable display for.
*/
public enableGlobalCountdownForPlayer(playerId) {
m_globalDisplayDisabledForPlayer[playerId] = false;
if (m_globalFinishTimestamp != 0)
TextDrawShowForPlayer(playerId, m_globalDisplay);
}
/**
* Disable displaying the global countdown displays for a player. This is useful for mini-games
* and other environments in which the player won't care about the countdown.
*
* There is a hack in DeprecatedTimerRuntime::onTwoSecondTimerTick breaking the functionality
* of this function, until a proper State Manager has been introduced to the gamemode.
*
* @param playerId Id of the player to disable the display for.
*/
public disableGlobalCountdownForPlayer(playerId) {
if (m_globalDisplayDisabledForPlayer[playerId])
return;
m_globalDisplayDisabledForPlayer[playerId] = true;
if (m_globalFinishTimestamp != 0)
TextDrawHideForPlayer(playerId, m_globalDisplay);
}
/**
* Upon a player's connecting to the server, we have to initialize their personal display text-
* draw. Furthermore, if the global timer is running, be sure to show it to them.
*
* @param playerId Id of the player who has connected to the server.
*/
@list(OnPlayerConnect)
public onPlayerConnect(playerId) {
if (m_globalFinishTimestamp != 0)
TextDrawShowForPlayer(playerId, m_globalDisplay);
m_globalDisplayDisabledForPlayer[playerId] = false;
}
/**
* Clean up player-specific timer statistics when the player disconnects.
*
* @param playerId Id of the player who is disconnecting from the server.
*/
@list(OnPlayerDisconnect)
public onPlayerDisconnect(playerId) {
m_globalDisplayDisabledForPlayer[playerId] = true;
}
/**
* Process decrementing the value of the global countdown, display of the right amount of time
* remaining (either seconds or "GO"), and hiding the display when it's finished.
*/
private processGlobalCountdown() {
new countdownDisplay[8],
difference = m_globalFinishTimestamp - Time->currentTime();
if (difference > 0) {
// The countdown is still ticking with a positive number of seconds remaining.
Time->formatRemainingTime(difference, countdownDisplay, sizeof(countdownDisplay));
} else if ((difference + SecondsToDisplayGo) > 0) {
// The countdown is finished, but we like to display the "GO" text.
format(countdownDisplay, sizeof(countdownDisplay), "~y~GO");
} else {
// The countdown has finished, so we have to shut it down.
this->stopGlobalCountdown();
return;
}
// We cache the displayed timestamp so that we don't update all players too often.
if (m_globalTimestampDisplay[0] == 0 || strcmp(m_globalTimestampDisplay, countdownDisplay) != 0) {
format(m_globalTimestampDisplay, sizeof(m_globalTimestampDisplay), "%s", countdownDisplay);
TextDrawSetString(m_globalDisplay, countdownDisplay);
}
}
/**
* Process all running countdowns. We start with the global counter, and then proceed to the
* player specific counters if any is in process. This method gets called four times per second,
* because we'd like it to be time accurate and update whenever necessary.
*/
@list(HighResolutionTimer)
public processControl() {
if (m_globalFinishTimestamp != 0)
this->processGlobalCountdown();
/// @todo Implement per-player timer process?
}
/**
* Determine whether a global countdown is being displayed for a certain player. The primary
* use-case for this is to prevent overlap with other UI elements.
*
* @param playerId Id of the player who may be seeing a countdown.
* @return boolean Is the countdown being displayed on their screen?
*/
public inline bool: isGlobalCountdownActiveForPlayer(playerId) {
return (m_globalFinishTimestamp != 0 && m_globalDisplayDisabledForPlayer[playerId] == false);
}
/**
* Determine whether global countdowns are disabled for a certain player.
*
* @param playerId Id of the player to verify the status for.
* @return boolean Is the global countdown disabled for this player?
*/
public inline bool: isGlobalCountdownDisabledForPlayer(playerId) {
return (m_globalDisplayDisabledForPlayer[playerId]);
}
};
| PAWN | 5 | EPIC-striker/playground | pawn/Features/Visual/Countdown.pwn | [
"MIT"
] |
package com.baeldung.trywithresource;
public class AutoCloseableMain {
public static void main(String[] args) throws Exception {
orderOfClosingResources();
}
private static void orderOfClosingResources() throws Exception {
try (AutoCloseableResourcesFirst af = new AutoCloseableResourcesFirst();
AutoCloseableResourcesSecond as = new AutoCloseableResourcesSecond()) {
af.doSomething();
as.doSomething();
}
}
} | Java | 4 | DBatOWL/tutorials | core-java-modules/core-java-exceptions-2/src/main/java/com/baeldung/trywithresource/AutoCloseableMain.java | [
"MIT"
] |
<!-- Cartpole Model
The state space is populated with joints in the order that they are
defined in this file. The actuators also operate on joints.
State-Space (name/joint/parameter):
- cart slider position (m)
- pole hinge angle (rad)
- cart slider velocity (m/s)
- pole hinge angular velocity (rad/s)
Actuators (name/actuator/parameter):
- cart motor force x (N)
-->
<%
noise = opts.get("noise", False)
pole1_height = 0.6
pole2_height = 0.6
if noise:
import numpy as np
pole1_height = pole1_height + np.random.uniform(-0.1, 0.4)
pole2_height = pole2_height + np.random.uniform(-0.1, 0.4)
%>
<mujoco model='cartpole'>
<compiler inertiafromgeom='true'
coordinate='local'/>
<custom>
<numeric name="frame_skip" data="2" />
</custom>
<default>
<joint damping='0.05' />
<geom contype='0'
friction='1 0.1 0.1'
rgba='0.7 0.7 0 1' />
</default>
<option timestep='0.01'
gravity='1e-5 0 -9.81'
integrator="RK4"
/>
<size nstack='3000'/>
<worldbody>
<geom name='floor'
pos='0 0 -3.0'
size='40 40 40'
type='plane'
rgba='0.8 0.9 0.8 1' />
<geom name='rail'
type='capsule'
pos='0 0 0'
quat='0.707 0 0.707 0'
size='0.02 1'
rgba='0.3 0.3 0.7 1' />
<body name='cart' pos='0 0 0'>
<joint name='slider'
type='slide'
limited='true'
pos='0 0 0'
axis='1 0 0'
range='-10 10'
margin='0.01'/>
<geom name='cart'
type='capsule'
pos='0 0 0'
quat='0.707 0 0.707 0'
size='0.1 0.1' />
<body name='pole' pos='0 0 0'>
<joint name='hinge'
type='hinge'
pos='0 0 0'
axis='0 1 0'/>
<geom name='cpole'
type='capsule'
fromto='0 0 0 0 0 ${pole1_height}'
size='0.045 ${pole1_height/2}'
rgba='0 0.7 0.7 1' />
<body name='pole2' pos='0 0 ${pole1_height}'>
<joint name='hinge2'
type='hinge'
pos='0 0 0'
axis='0 1 0'/>
<geom name='cpole2'
type='capsule'
fromto='0 0 0 0 0 ${pole2_height}'
size='0.045 ${pole2_height/2}'
rgba='0 0.7 0.7 1' />
<site name='tip'
size='0.01 0.01'
pos='0 0 ${pole2_height}'/>
</body>
</body>
</body>
</worldbody>
<actuator>
<motor name='slide'
joint='slider'
gear='500'
ctrlrange='-1 1'
ctrllimited='true'/>
</actuator>
</mujoco>
| Mako | 5 | RussellM2020/maml_gps | vendor/mujoco_models/inverted_double_pendulum.xml.mako | [
"MIT"
] |
using Uno;
using Uno.UX;
namespace Fuse
{
public static class StaticClass
{
}
public class NotStaticClass
{
}
}
| Uno | 3 | mortend/fuse-studio | Source/CodeCompletion/Outracks.CodeCompletion.UXNinja.TestsCommon/TestData/StaticClass.uno | [
"MIT"
] |
%%
%unicode 5.1
%public
%class UnicodeNotGeneralCategory
%type int
%standalone
%include ../../resources/common-unicode-enumerated-property-java
%%
<<EOF>> { printOutput(); return 1; }
\p{Ll} { setCurCharPropertyValue("Ll"); }
\P{Ll} { setCurCharPropertyValue("Not-Ll"); }
| JFlex | 3 | Mivik/jflex | testsuite/testcases/src/test/cases/unicode-general-category/UnicodeNotGeneralCategory.flex | [
"BSD-3-Clause"
] |
#include "pch.h"
#include "start_visible.h"
bool is_start_visible()
{
static const auto app_visibility = []() {
winrt::com_ptr<IAppVisibility> result;
CoCreateInstance(CLSID_AppVisibility,
nullptr,
CLSCTX_INPROC_SERVER,
__uuidof(result),
result.put_void());
return result;
}();
if (!app_visibility)
{
return false;
}
BOOL visible;
auto result = app_visibility->IsLauncherVisible(&visible);
return SUCCEEDED(result) && visible;
}
| C++ | 4 | tameemzabalawi/PowerToys | src/modules/ShortcutGuide/ShortcutGuide/start_visible.cpp | [
"MIT"
] |
trait Bar {
type Baz;
}
struct Foo<T> where T: Bar, <T as Bar>::Baz: String { //~ ERROR expected trait, found struct
t: T,
}
struct Qux<'a, T> where T: Bar, <&'a T as Bar>::Baz: String { //~ ERROR expected trait, found struct
t: &'a T,
}
fn foo<T: Bar>(_: T) where <T as Bar>::Baz: String { //~ ERROR expected trait, found struct
}
fn qux<'a, T: Bar>(_: &'a T) where <&'a T as Bar>::Baz: String { //~ ERROR expected trait, found
}
fn main() {}
| Rust | 3 | Eric-Arellano/rust | src/test/ui/traits/assoc_type_bound_with_struct.rs | [
"ECL-2.0",
"Apache-2.0",
"MIT-0",
"MIT"
] |
MSTRINGIFY(
// Node indices for each link
//#define float3 float4
__kernel void
IntegrateKernel(
const int numNodes,
const float solverdt,
__global float * g_vertexInverseMasses,
__global float4 * g_vertexPositions,
__global float4 * g_vertexVelocity,
__global float4 * g_vertexPreviousPositions,
__global float4 * g_vertexForceAccumulator)
{
int nodeID = get_global_id(0);
if( nodeID < numNodes )
{
float3 position = g_vertexPositions[nodeID].xyz;
float3 velocity = g_vertexVelocity[nodeID].xyz;
float3 force = g_vertexForceAccumulator[nodeID].xyz;
float inverseMass = g_vertexInverseMasses[nodeID];
g_vertexPreviousPositions[nodeID] = (float4)(position, 0.f);
velocity += force * inverseMass * solverdt;
position += velocity * solverdt;
g_vertexForceAccumulator[nodeID] = (float4)(0.f, 0.f, 0.f, 0.0f);
g_vertexPositions[nodeID] = (float4)(position, 0.f);
g_vertexVelocity[nodeID] = (float4)(velocity, 0.f);
}
}
); | OpenCL | 3 | albertobarri/idk | tests/third_party/bullet/src/BulletMultiThreaded/GpuSoftBodySolvers/OpenCL/OpenCLC/Integrate.cl | [
"MIT"
] |
{
"version" : "v1_0_21",
"payload" : {
"payloadName" : "SmsCptPrepaidPayload",
"payloadClass" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidPayload",
"payloadDoc" : [ "Отправка SMS контент провайдеру от пользователя с prepaid тарификацией" ]
},
"startPoint" : {
"coordinates" : {
"x" : 146,
"y" : -237
},
"coordinatesSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 220
},
"builderPayloadSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 195
},
"processingItems" : [ {
"type" : "PROCESSOR",
"className" : "BrtProxyHandler",
"name" : "initialRequestProcessor"
} ]
},
"processors" : [ {
"identity" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxNoMoneyContent"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"processorDoc" : null,
"handlerTitle" : "cpaLogFailedTarification",
"handlerDoc" : [ "Логирование факта неуспешной тарификации" ],
"withHandlerSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 539
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxPrepaidFailed"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"processorDoc" : null,
"handlerTitle" : "cpaLogFailedTarification",
"handlerDoc" : [ "Логирование факта неуспешной тарификации" ],
"withHandlerSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 539
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "BrtProxyHandler",
"name" : "initialRequestProcessor"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"processorDoc" : [ "Вызывает методы для работы с биллингом", "Резервирование средств, прерывание или успешная тарификация, например" ],
"handlerTitle" : "initNewSession",
"handlerDoc" : [ "Резервирует средства в биллинге оператора, вызывая инициализацию BRT-сессии" ],
"withHandlerSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 239
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "SystemAttributeProcessor",
"name" : "systemAttributeMaxPushTimeoutProcessor"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"processorDoc" : [ "Works with ServiceAttribute entity" ],
"handlerTitle" : "findByNameOrThrow",
"handlerDoc" : [ "Return SystemAttribute or throws exception if it's not found" ],
"withHandlerSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 408
}
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserSmppBuyOperationsLogger",
"name" : "userLogPrepaidFailed"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"processorDoc" : null,
"handlerTitle" : "writeSmsBuy",
"handlerDoc" : [ "Запись информации о SMS-покупке в MSISDN_TX" ],
"withHandlerSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 456
}
} ],
"subgraphs" : [ ],
"mergePoints" : [ {
"identity" : {
"type" : "PROCESSOR",
"className" : "BrtProxyHandler",
"name" : "initialRequestProcessor"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 240
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ "OK" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "SystemAttributeProcessor",
"name" : "systemAttributeMaxPushTimeoutProcessor"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "OK",
"docs" : [ "Выполнен успешный резерв средств" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"OK" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 200
}
},
"mergeStatusSources" : {
"OK" : {
"className" : "ru.fix.cpapsm.subscription.common.graph.model.BrtPrepaidResult",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
}, {
"mergeStatuses" : [ "BRT_TARIFF_ERROR" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxPrepaidFailed"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "BRT_TARIFF_ERROR",
"docs" : [ "Ошибка BRT при запросе Initial Request. Возможные причины" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"BRT_TARIFF_ERROR" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 201
}
},
"mergeStatusSources" : {
"BRT_TARIFF_ERROR" : {
"className" : "ru.fix.cpapsm.subscription.common.graph.model.BrtPrepaidResult",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
}, {
"mergeStatuses" : [ "NO_MONEY_CONTENT" ],
"isOnAny" : false,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxNoMoneyContent"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ {
"mergeStatus" : "NO_MONEY_CONTENT",
"docs" : [ "Ошибка недостатка средств в ответе на запрос к BRT на контентном счете" ]
} ],
"transitionOnAnySource" : null,
"transitionOnStatusSource" : {
"NO_MONEY_CONTENT" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 202
}
},
"mergeStatusSources" : {
"NO_MONEY_CONTENT" : {
"className" : "ru.fix.cpapsm.subscription.common.graph.model.BrtPrepaidResult",
"fileName" : null,
"fileNameLine" : null
}
},
"complete" : false,
"onAny" : false
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "SystemAttributeProcessor",
"name" : "systemAttributeMaxPushTimeoutProcessor"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 409
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 206
},
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 206
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : true,
"onAny" : true
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxPrepaidFailed"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 540
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : false,
"mergeProcessingItem" : null,
"handleByProcessingItem" : {
"type" : "PROCESSOR",
"className" : "UserSmppBuyOperationsLogger",
"name" : "userLogPrepaidFailed"
},
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : null,
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 209
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : false,
"onAny" : true
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "BillingJournal",
"name" : "billingTxNoMoneyContent"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 540
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 213
},
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 213
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : true,
"onAny" : true
} ]
}, {
"identity" : {
"type" : "PROCESSOR",
"className" : "UserSmppBuyOperationsLogger",
"name" : "userLogPrepaidFailed"
},
"coordinates" : {
"x" : 100,
"y" : 100
},
"coordinatesSource" : null,
"mergeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 457
},
"mergerTitle" : null,
"mergerDocs" : [ ],
"transitions" : [ {
"mergeStatuses" : [ ],
"isOnAny" : true,
"isComplete" : true,
"mergeProcessingItem" : null,
"handleByProcessingItem" : null,
"completeCoordinates" : {
"x" : 100,
"y" : 100
},
"completeCoordinatesSource" : null,
"completeSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 216
},
"transitionsDoc" : [ ],
"transitionOnAnySource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 216
},
"transitionOnStatusSource" : { },
"mergeStatusSources" : { },
"complete" : true,
"onAny" : true
} ]
} ],
"serializationPointSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfigIT",
"fileName" : "SmsCptPrepaidGraphConfigIT.java",
"fileNameLine" : 155
},
"coordinatesSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 219
},
"buildGraphSource" : {
"className" : "ru.fix.cpapsm.smpp.server.graph.SmsCptPrepaidGraphConfig",
"fileName" : "SmsCptPrepaidGraphConfig.java",
"fileNameLine" : 221
}
} | Rouge | 4 | fix-ru/completable-reactor | completable-reactor-graph-viewer/src/test/resources/PayloadWithEmpty.rg | [
"MIT"
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.