From e20e2f63b215fb0ea39a73edc64fb1d5120a14e7 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Thu, 6 Jul 2017 19:37:50 +0200 Subject: [PATCH 01/22] python source codes --- .../conll_coref_adder.cpython-34.pyc | Bin 0 -> 3206 bytes .../conll_prediction_selector.cpython-34.pyc | Bin 0 -> 607 bytes .../__pycache__/conll_selector.cpython-34.pyc | Bin 0 -> 5041 bytes .../conll_training_selector.cpython-34.pyc | Bin 0 -> 601 bytes .../demo/Coreference/CoNLL/conll_add_coref.py | 104 ++++++++ .../block/demo/Coreference/CoNLL/conll_api.py | 230 ++++++++++++++++++ .../demo/Coreference/CoNLL/conll_api.pyc | Bin 0 -> 13118 bytes .../Coreference/CoNLL/conll_coref_adder.py | 94 +++++++ .../demo/Coreference/CoNLL/conll_evaluator.py | 163 +++++++++++++ .../demo/Coreference/CoNLL/conll_main.py | 116 +++++++++ .../demo/Coreference/CoNLL/conll_node.py | 130 ++++++++++ .../demo/Coreference/CoNLL/conll_node.pyc | Bin 0 -> 6579 bytes .../CoNLL/conll_prediction_selector.py | 10 + .../demo/Coreference/CoNLL/conll_processor.py | 111 +++++++++ .../Coreference/CoNLL/conll_processor.pyc | Bin 0 -> 5540 bytes .../demo/Coreference/CoNLL/conll_selector.py | 169 +++++++++++++ .../CoNLL/conll_training_selector.py | 10 + .../Coreference/CoNLL/coref_prediction.py | 6 + .../onto_coreference_adder.cpython-34.pyc | Bin 0 -> 868 bytes .../onto_coreference_getter.cpython-34.pyc | Bin 0 -> 2476 bytes .../onto_id_conversion.cpython-34.pyc | Bin 0 -> 1419 bytes .../__pycache__/onto_main.cpython-34.pyc | Bin 0 -> 1465 bytes .../onto_word_conversion.cpython-34.pyc | Bin 0 -> 1575 bytes .../onto_word_correspondence.cpython-34.pyc | Bin 0 -> 2284 bytes .../demo/Coreference/OntoNotes/onto_conv.py | 49 ++++ .../OntoNotes/onto_coreference_adder.py | 18 ++ .../OntoNotes/onto_coreference_getter.py | 65 +++++ .../demo/Coreference/OntoNotes/onto_main.py | 44 ++++ .../OntoNotes/onto_word_conversion.py | 68 ++++++ .../OntoNotes/onto_word_correspondence.py | 93 +++++++ .../__pycache__/auxiliaries.cpython-34.pyc | Bin 0 -> 1172 bytes .../demo/Coreference/Other/auxiliaries.py | 34 +++ .../block/demo/Coreference/Other/predictor.py | 67 +++++ udapi/block/demo/Coreference/Other/trainer.py | 41 ++++ .../pdt_add_coreference.cpython-34.pyc | Bin 0 -> 2898 bytes .../pdt_clusterization.cpython-34.pyc | Bin 0 -> 2352 bytes .../pdt_get_coreference.cpython-34.pyc | Bin 0 -> 6208 bytes .../pdt_id_conversion.cpython-34.pyc | Bin 0 -> 1846 bytes .../PDT/__pycache__/pdt_main.cpython-34.pyc | Bin 0 -> 2007 bytes .../pdt_word_correspondence.cpython-34.pyc | Bin 0 -> 2369 bytes .../Coreference/PDT/pdt_add_coreference.py | 78 ++++++ .../Coreference/PDT/pdt_clusterization.py | 62 +++++ udapi/block/demo/Coreference/PDT/pdt_conv.py | 61 +++++ .../Coreference/PDT/pdt_get_coreference.py | 170 +++++++++++++ .../demo/Coreference/PDT/pdt_id_conversion.py | 48 ++++ udapi/block/demo/Coreference/PDT/pdt_main.py | 70 ++++++ .../PDT/pdt_word_correspondence.py | 77 ++++++ 47 files changed, 2188 insertions(+) create mode 100644 udapi/block/demo/Coreference/CoNLL/__pycache__/conll_coref_adder.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/__pycache__/conll_prediction_selector.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/__pycache__/conll_selector.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/__pycache__/conll_training_selector.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_add_coref.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_api.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_api.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_coref_adder.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_evaluator.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_main.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_node.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_node.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_prediction_selector.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_processor.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_processor.pyc create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_selector.py create mode 100644 udapi/block/demo/Coreference/CoNLL/conll_training_selector.py create mode 100644 udapi/block/demo/Coreference/CoNLL/coref_prediction.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_adder.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_getter.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_id_conversion.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_main.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_word_conversion.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_word_correspondence.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_conv.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_coreference_adder.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_coreference_getter.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_main.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_word_conversion.py create mode 100644 udapi/block/demo/Coreference/OntoNotes/onto_word_correspondence.py create mode 100644 udapi/block/demo/Coreference/Other/__pycache__/auxiliaries.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/Other/auxiliaries.py create mode 100644 udapi/block/demo/Coreference/Other/predictor.py create mode 100644 udapi/block/demo/Coreference/Other/trainer.py create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_add_coreference.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_clusterization.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_get_coreference.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_id_conversion.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_main.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/__pycache__/pdt_word_correspondence.cpython-34.pyc create mode 100644 udapi/block/demo/Coreference/PDT/pdt_add_coreference.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_clusterization.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_conv.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_get_coreference.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_id_conversion.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_main.py create mode 100644 udapi/block/demo/Coreference/PDT/pdt_word_correspondence.py diff --git a/udapi/block/demo/Coreference/CoNLL/__pycache__/conll_coref_adder.cpython-34.pyc b/udapi/block/demo/Coreference/CoNLL/__pycache__/conll_coref_adder.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..860ee74a7ce6654c42a5be094eb9d7f38f8afce0 GIT binary patch literal 3206 zcmbVO&2Jk;6o0e3wqwVMofblainGaad=)o6N4k z3HGVwjKq=ufHOkk#2+%(o^s(2-~zul>o~5{6YHJlnKv`qb z9@4_&pnn}Ly9pBF6%-Q<1@#089$OS!)U)W5(5BF#2VglQ1>Lu)XM>(_pU~@bKiZ(7BG5F_FZopb0vl9J`?clIQAJna$6k;s+4uY~lqz5q{NT7$M!SKQ{V9lci6%rIPEj=-LF2zDw`gF~hj)Lc zsYMgmfwx9KS+q5Pa+~f8n%b0?XkvV@h4E}4hzEU(rp^hgWLUHL@_Zhfi3VjOqGGsH z49cV~nu!Wc9HR#vtOG5X;R;PEGyq-Up}-#xDrRtSk?`&y9@8p~-!U5r$LP?sMw1#1 zsuZr$o<-`R8G>0Yq+mkOHS9Wg$nOrTT&4R&(^VS(OcOzaIs`qSY26&FPJ=aL&Kiwl znqat&X`iO+H2#_<>ojO!{3T5rG+AZ$vC;#t@_c;nmc=jew4UFnSYmtZa-BnVjd;CZYXmZ7>PjLe?(Pr=a`e_*kf`MRPK$EFqWCF79HML%9R9XHI!K(lh9{VE%5DBh1wZL zS(G(4_CN}K4=`}&? z!m%z`O>uPj3>LMQRm{POv#o??!08Wk#=lTblnYbI78e}e5AXhHVCjSleA)t9?IAJu zDR;P7u?qOa6=X0JD;T=~R=a|pD%gx_!myd)0p@Jf=CVvw=H^TetJyx-q@A-W1_lTX z96?CSI=VHlEG6@iN-}ru{@lHH=tiM?)s<2Hom8$Iql&m%QMXa)z77qR!=pmjs$l~I>jf4ksyp23&cd1qftT2 zxTx!*-mW+5CB@tTZT|4tucKvefc%fok?q!sdIeh_@6bz_De4S4F#Gy2pE*Stnt0nq zyo-y*E)sq9G;1@1r!$Y6*`<@R*P?;mnSgdBGI=DQC z?}<$22BK!SF5_38x_%s=ep%!hzARiInmb!Gm)J$w^8Hu%hU*Co15N7yyM>!vJ ze8uZ`&`i#f(?Ae`LeHJ?*VzvPV5WMNCBDYwbtZ2zVecyzyP(P_HL>Bu{R+(_4Qj-x u+a{S?CEYYPY@742ZEjY@m7?lQI3{M@j{|Nbvam5;Ibeu*Hs0rAn|=SvrvcD>x1WlDIg@(5~<^d=FbzCKf(` zi91JCGr%c#dA`K&-m||a2jdTQcgq;SCk!G$JjJZfu%!4fC;&;$j~cfRm{2w8VHGgVQ@S{GV1#wu!W!b32{tWU6LAWj@X6bL-xjeVkCgh6-Q z^DM1SbJgUg+ESus7xbo_Vb%c_q*;Vsbp1|30+f(hYP<4Nh$O2;S@SZ>xN57MtF>rF zCbGn?lJrTmX|l}Em#gN{RQ*ES7e+mcRF_7~jMbU8x>6c(G@lFQjQ$~zFIU|pGgdY> z$*a72*e8Kx9@zTyUtfHZNm(VOma-d5S(>yh2v4MZX_KP=V)r)wwodIX^?WQN zOgDGJ+&T*V_`=!b&KW0XeBcZ*I^(^w%@tZw?)DF6xO1gJ-RQEHc10^U?a2EDZgrRN literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/CoNLL/__pycache__/conll_selector.cpython-34.pyc b/udapi/block/demo/Coreference/CoNLL/__pycache__/conll_selector.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0504a020f11c72a617b84614a26f81ab46c5e05b GIT binary patch literal 5041 zcma)A%WvDr9Ui`9S(YEM^Kz2S(pjKgZL(H3T`c-So5XgKwt?ctPJEVo_gt}KvAH#V$pm5mSV0w<2K9jq)8N`3bTRe+KI^)-zb!V8(;cWTC~rLbJuV!QNP`jTW12HJrB? z&l-ku?sb#kAfVd#F;TdKB>#$xGnxuB)0ZfiG+o=G88H!+Z5BE#tmrZdQ!K3Na)pJ{ zEUf7=8fREo*X1e;XIVI>%NQ`v!UbKfvG5!V7j+qfmsogSm+LINz`~2Vj1Mod@Ukw? zv2YnDxuWLQlDOOTB=7PdO+-NZr-%Mmkk*joFOa=vY#%vJp%1cavNt9Z_jS9W+x4Nc z0T0NmF5l!wHfkW(p*af?{LB6fTP@c z^r#t}f@`(^O4a)!3AmIVtvgL{5pK-5Y+N^oS5L#cS{$2WJ%!;mlE(V)DCAfJwPU~s z=m9YhN7d3*G-g#>SJ9XaFqr}Q96Rjj9!t^Z&^PPPKWE1k_8I~**#YFTS@;N&!bhVe zP|-^qZZiBmdkyu>zW7_=3tN9d!Ze{m)^NAxj-E`5qzj43Xs65FV2ocX-K68Dd)(cP zUhvo@tn$y+9zT7w?%vyQ*B;(&J=j=xf8KJpA8xq!pKd>WvXKvaYXO>8!%?+eo_afj zIP7vY-xvHvlnms!VJ7BBdGEE6nq-5$P9h2#qa5MKySyX=x}B5Tk3K|1ieqshb) zb)2V;#T`F5cNs_ARd^2TiFJR^GAjv8+X3rW6#-cgAc{ZA73Oomv048v? z!F?Zv%z6%h+5*A5H8MbWZ5;$cn~_IDca!|}77b}shQG~Wi8}6$eB(FVNVI(Qt`|KY99yWG1or)5{zIU5mQf$ScBD! z@>qP4jkUggEcTU+wZDC=j@Y}J5}dWHj^pp`uCj0L)?xpfyAj-LlV4-&U<`Evwy>kD zb@t5Gxye@WjQPA3A*agTKym(4fOYyL%+N9j0VBvE$y#aUQ+1o|&lLN$O8wY* zMj4K7v$W3ASy~9=!FDd=-}>__?6}I(Ick1gWy=})d1DyH;eq)qYX<{brX@gzwi*|P zU**$P3%fd4ML7M+EsOmkg4#aIEr`GJPz*_Lb$Tg-BZ&e=Ng5A!kn_YJXVhO^Ns0} z-)YaC_WbP`@^qu{+Fr=r;<#m2`aKRd8tb^zKIg}Ne=iYH;K7&1$sk5p!{LeB6~gXS zRDXmdDPvBB!md$YTr`&KTLxb1Lu2&X7Y)4TMXPRHLqJ~0(+A*d!;ebd@2uDr5ZLt4 ze@Z%tkVte?Fk9PtV{pWpRg`x6DaIWmNzJp334U0_Klij0u4ueoiD(LWPVH0=D$s3X z_{&_uprxsRHoJ&O#I^|S?@D*Xp(!vW@tBF_EG>x(5gr@Ai6x2=q`gd*;w2q#{K=S< z%d#XWDEtm7JD)wgQbM#q=mWxxo>MgE3pC`%TZR_^s<2{2lGJ1=tR3XW&;{)f?x2Dg zfbc;~bmzS|xLCZvZAOZTNF5Sd0D*vsQo!}X?+!RHJYll=#9{>-)GVlBiw2cHq3knc z$^u;~Qk!;tto$*wx_xN^#cZAS(zru#P|vKf3@q91?~$ZN4QhNQw4?R%n+0i3uA{VD zK#L2-(Xx(qj2ygN(PiC!I1SDZ-%GsSXyF1j6-iIivPvJm0IGEja}-rW8F6{1^WrIXQywVIP9rc z@>a-57h2*Y%jGTS6pJAHv(Tc~(^c;uMs(yf7{aD9YO;JYYgLEA6gYk~V52-{tC8}T}dwV6{WIYqUD?m(tozJ03swlXG^Xcbuf1xYR-qbp4IE*aO2>ZCH2qHn7)ud1F$uEg_H&GULm zIOtNj?sLt)L=WS@fOOLI+7) zUPcD3uhcKqYk1e{4$2kecm<6jkFlVCP+29QR`m}lf=p0%pEbLx{v)apDM~K;RH>lU>a-~c`%*qNanYTaonG5orP-#Mi(!Cn xr~1t1Vc iterator ): + actual_coreferent = self.list_of_coreferents[ iterator ] + else: + actual_coreferent = None + + fields = line.split( '\t') + if ( line[0] == '#' ): # comment line beginning with # + if ( len( fields) == 4 and fields[1] == '$' ): # new sentence with paragraph and sentence id + para_id = int( fields[2]) + sent_id = int( fields[3]) + self.output.write( line) + elif ( line != ' \n' ): # not a blank line -> record line + try: + word_id = int( fields[0]) + if ( actual_coreferent != None and actual_coreferent.id == ( para_id, sent_id, word_id ) ): + misc = fields[-1] # adding to the last column + coref_info = "Coref=" + str( actual_coreferent.cluster_id) + if ( misc == "_\n" or misc == "_" ): # no other information in the column + new_misc = coref_info + "\n" + else: # adding to another information + new_misc = misc[:-1] + "|" + coref_info + "\n" # [:-1] ... except newline + new_line = join_with_separator( fields[:-1] + [ new_misc ], '\t') # rebuildng the line with the new last column + self.output.write( new_line) + iterator += 1 + #actual_coreferent = self.list_of_coreferents[ iterator ] + continue + self.output.write( line) + except: # range line + self.output.write( line) + else: # blank line + self.output.write( line) + + def build_clusters( self, list_of_triplets): # triplets( pronoun id, referent id, bool - are coreferents?) + for triplet in list_of_triplets: + if ( triplet[2] ): # if they are coreferents + # obtaining Coreferents from ids + pronoun = self.get_coreferent( triplet[0]) # these methos fill list of coreferents + referent = self.get_coreferent( triplet[1]) + # connection between Coreferents + pronoun.add_coreferent( referent) + referent.add_coreferent( pronoun) + + # adding cluster id to all Coreferents in the cluster + cluster_id = 0 + for coref in self.list_of_coreferents: + if ( coref.cluster_id == -1 ): # if the cluster still doesn't have an id + coref.rewrite_cluster_id( cluster_id) # recursion + cluster_id += 1 + + def get_coreferent( self, coreferent_id): # -> Coreferent + """ + returns Coreferent by id - either existing or it newly created + """ + for i in range( len( self.list_of_coreferents)): + if ( coreferent_id < self.list_of_coreferents[i].id ): # new coreferent in the middle + coreferent = Coreferent( coreferent_id) + self.list_of_coreferents = self.list_of_coreferents[:i] + [ coreferent ] + self.list_of_coreferents[i:] + return coreferent + elif ( coreferent_id == self.list_of_coreferents[i].id ): # existing coreferent + return self.list_of_coreferents[i] + coreferent = Coreferent( coreferent_id) # new coreferent at the end + self.list_of_coreferents.append( coreferent) + return coreferent + +class Coreferent: + def __init__( self, id): # id ... triplet ( para id, sent id, word id ) + self.id = id + self.coreferents = [] + self.cluster_id = -1 + def add_coreferent( self, coreferent): # void + if ( coreferent not in self.coreferents ): + self.coreferents.append( coreferent) + def rewrite_cluster_id( self, new_cluster_id): # void + """ + recursive method for setting cluster id to all coreferents in the cluster + """ + if ( self.cluster_id != new_cluster_id ): + self.cluster_id = new_cluster_id + for coref in self.coreferents: + coref.rewrite_cluster_id( self.cluster_id) \ No newline at end of file diff --git a/udapi/block/demo/Coreference/CoNLL/conll_api.py b/udapi/block/demo/Coreference/CoNLL/conll_api.py new file mode 100644 index 00000000..e945d23f --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_api.py @@ -0,0 +1,230 @@ +# Jan Faryad +# 20. 4. 2017 +# +# static class for serving as interface for operations over processed document + +from math import fabs + +class CoNLL_API: + """ + static class for serving as interface for operations over processed document + """ + # NODE API + # fields getters + def get_id( node): # -> int ( -1 for range nodes ) + return node.id + def get_form( node): # -> string + return node.form + def get_lemma( node): # -> string + return node.lemma + def get_upostag( node): # -> string + return node.upostag + def get_xpostag( node): # -> string, NOT USED (language specific) + return node.xpostag + def get_feats( node): # -> list of features, feature = pair (name=string, list of values), value = string + return node.feats + def get_head( node): # -> Node + return node.head + def get_deprel( node): # -> string + return node.deprel + def get_deps( node): # -> list of secondary dependencies, = pair ( head=Node, name=string) + return node.deps + def get_misc( node): # -> list of other information, = pair (name=string, value=string) + return node.misc + + def get_full_id( node): # -> triplet of ints + """ + unique node id in the whole document + """ + para_id = node.sentence.paragraph.number + sent_id = node.sentence.number + return ( para_id, sent_id, node.id ) + + def has_upostag( node, list_of_possible_upostags): # -> bool + """ + controls if the node's upostag is on of the possible ones + """ + return ( node.upostag in list_of_possible_upostags ) + def has_feature( node, feature_name, list_of_possible_values): # -> bool + """ + controls if the node has the given feature and if one of it's values is possible + """ + for feat in node.feats: + if ( feat[0] == feature_name ): + # if the intersection of the present and possible values is non-empty + return ( len( set( feat[1]) & set( list_of_possible_values) ) > 0 ) + # for value in feat[1]: + # if ( value in list_of_possible_values ): + # return True + return False + def has_deprel( node, list_of_possible_deprels): # -> bool + """ + controls if the node's dependecy relation is on of the possible ones + """ + return ( node.deprel in list_of_possible_deprels ) + def get_features_by_name( node, name): # -> list of strings + """ + returns the list of values of the given feature (empty if the feature is ont present) + """ + for feat in node.feats: + if ( feat[0] == name ): + return feat[1] + return [] + def get_misc_by_name( node, name): # -> string + """ + returns value of the given misc + """ + for misc in node.misc: + if ( misc[0] == name ): + return misc[1] + return None + + + def is_leaf( node): # -> bool + return ( node.subnodes == [] ) + def is_range_node( node): # -> bool + return ( node.depth == -1 ) + def get_depth( node): # -> int ( -1 for range nodes ) + return node.depth + def get_subnodes_number( node): # -> int + return len( node.subnodes) + def get_subnodes( node): # -> list of Nodes + return node.subnodes + def get_root_path( node): # -> list of Nodes + return node.root_path + def get_sentence( node): # -> Sentence + return node.sentence + + # SENTENCE, PARAGRAPH AND DOCUMENT API + def get_root( sent): # -> Node + return sent.root + def get_depth( sent): # -> int + return sent.depth + def get_nodes_number( sent): # -> int + return sent.nodes_number + def get_nodes( sent): # -> list of Nodes + return sent.nodes + + def get_sentences( para): # -> list of Sentences + return para.sentences + def get_paragraphs( doc): # -> list of Paragraphs + return doc.paragraphs + + def previous_paragraph( para): # -> Paragraph, None for the first paragraph in the document + index_of_previous = para.number - 2 # list indeces from 0 + if ( index_of_previous >= 0 ): + return para.document.paragraphs[ index_of_previous ] + def next_paragraph( para): # -> Paragraph, None for the last paragraph in the document + index_of_next = para.number # list indeces from 0 + if ( index_of_next < len( para.document.paragraphs) ): + return para.document.paragraphs[ index_of_next ] + def previous_sentence( sent): # -> Sentence, None for the first sentence in the paragraph + index_of_previous = sent.number - 2 # list indeces from 0 + if ( index_of_previous >= 0 ): + return sent.paragraph.sentences[ index_of_previous ] + else: + prev_para = CoNLL_API.previous_paragraph( sent.paragraph) # possibly in the previous paragraph + if ( prev_para != None ): + return prev_para.sentences[-1] + def next_sentence( sent): # -> Sentence, None for the last sentence in the paragraph + index_of_next = sent.number # list indeces from 0 + if ( index_of_next < len( sent.paragraph.sentences) ): + return sent.paragraph.sentences[ index_of_next ] + else: + next_para = CoNLL_API.next_paragraph( sent.paragraph) # possibly in the next paragraph + if ( next_para != None ): + return next_para.sentences[0] + + # TWO NODES RELATION + def in_same_sentence( node_1, node_2): # -> bool + return ( node_1.sentence == node_2.sentence ) + def in_same_paragraph( node_1, node_2): # -> bool + return ( node_1.sentence.paragraph == node_2.sentence.paragraph ) + def surface_node_distance( node_1, node_2): # -> int + """ + surface distance of two words in the sentence, -1 if they are not the the same sentence + """ + if ( not CoNLL_API.in_same_sentence( node_1, node_2) ): + return -1 + values = [ fabs( node_1.id_range[0] - node_1.id_range[1] ), # general, works also for range nodes + fabs( node_1.id_range[1] - node_1.id_range[0] ) # don't know, which one come first + ] + return int( round( min( values))) + def surface_sentence_distance( node_1, node_2): # -> int + """ + surface distance of the sentences of two words in the paragraph, -1 if they are not the the same paragraph + """ + if ( not CoNLL_API.in_same_paragraph( node_1, node_2) ): + return -1 + return int( round( fabs( node_1.sentence.number - node_2.sentence.number))) + def surface_paragraph_distance( node_1, node_2): # -> int + """ + surface distance of the paragraphs of two words in the documet + """ + return int( round( fabs( node_1.sentence.paragraph.number - node_2.sentence.paragraph.number))) + def depth_distance( node_1, node_2): # -> int + """ + difference of depths + """ + return int( round( fabs( CoNLL_API.get_depth( node_1) - CoNLL_API.get_depth( node_2)))) + def is_supernode_of( node_1, node_2): # -> bool + return ( node_1 in node_2.root_path) + def closest_common_supernode( node_1, node_2): # -> Node + """ + first common supernode (coming upwards from the given nodes) + """ + if ( not CoNLL_API.in_same_sentence( node_1, node_2) or CoNLL_API.is_range_node( node_1) or CoNLL_API.is_range_node( node_2) ): + return None # not in the same sentence or one of the nodes is a range node + ccs = node_1.sentence.root # == node_2.sentence.root + ran = min( len( node_1.root_path), len( node_2.root_path)) # meaningful only to the lower depth of the nodes + for i in range( ran): + if ( node_1.root_path[i] == node_2.root_path[i] ): + ccs = node_1.root_path[i] + else: + return ccs + return ccs # == one of the given nodes + def ccs_depth( node_1, node_2): # -> int + """ + depth of the closest common supernode, -1 if they don't have a ccs + """ + ccs = CoNLL_API.closest_common_supernode( node_1, node_2) + if ( ccs == None ): + return -1 + return CoNLL_API.get_depth( ccs) + def compound_distance( node_1, node_2): # -> int + """ + sum of sistances from ccs, -1 if no ccs exist + """ + ccs = CoNLL_API.closest_common_supernode( node_1, node_2) + if ( ccs == None ): + return -1 + return CoNLL_API.depth_distance( node_1, ccs) + CoNLL_API.depth_distance( node_2, ccs) + + # TARGET + def are_coreferents( node, candidate): # -> bool + """ + if two nodes are in the same coreference cluster + """ + coref_1 = CoNLL_API.get_misc_by_name( node, "Coref") + drop_coref_1 = CoNLL_API.get_misc_by_name( node, "Drop_coref") + coref_2 = CoNLL_API.get_misc_by_name( candidate, "Coref") + drop_coref_2 = CoNLL_API.get_misc_by_name( candidate, "Drop_coref") + for c in [ coref_1, drop_coref_1 ]: + if ( c != None and c in [ coref_2, drop_coref_2 ] ): + return True + return False + + + + + + + + + + + + + + + diff --git a/udapi/block/demo/Coreference/CoNLL/conll_api.pyc b/udapi/block/demo/Coreference/CoNLL/conll_api.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a1a6219cc97f44dac53d8d58d7a34018ee224376 GIT binary patch literal 13118 zcmd5?TXP&o74F$x*^(^ZuW}q`?AX!zs@NofN|}(vPEsaDF{2pA1~ZJdXQh#MXV%lR zwnW(vRN#rCc!n2vp{N3W0gpWMZ}8bx?@AS1l ze)mC3lG2xixUBSLA+9KIv3Z3u`T?407e6KovZ&>@I)O26 zJ4sy=rca}I*$s>v#aWoPgH|XPl3tkN-Xu0|@-$4{UYfK*V?yofq}A_+aV9TpQ4fma zCdb;1=DAX<3M$153s#+KAR}F=R-EXti9RKb`4Oo3pl#;6=4!XyzS`=?(bd*Z=lk>R z`F4=52YPkBuY+E6rMI4~B(Xi2U+N^S$MZVuCi6FwG;D`y7`H;uP}liZ5_dX2p1F!= zsNKt9=0{K!a7lKQ^UB;ea5v!U3jZF>Ym~fCVm$Ir4i13cF8337rW1C%!FbrG10nmu z!l51TPnGKT5-9KTcxJFCpFz&VksZ!q?f+p8ITOcrFbC>UI}9>29w`)hBrKfR0spk( zl`ybgXlzzY4o>cXdwMV(_R_F39{8s*KF!$jaB2rLApUrIOzKm3QF3s4hun7~(;5%@ z1^48@9pawxh=;`AOCW6gU3JuIO}%i6Q_wZ_9H(dzpzEq#&ttTC4-ZK^XOe)>`=lSb zjL>eRkr%kxO6WdYNjl-i;Ln?z6lzB93~~ZSUr88yK^iQlL2pF@Z`|)Lg{jA&+a#l6 zdl}t2??X%$nlAv|ME9t&g2J)4`^Xd`Bx0Bb?MyZHJ2Os;3>SxhyB8f6T;TY4R{`JW z=q}+y+L5J62MJYMfFq7`#?51g8zG^J-Nar)Krqn~a82USly9&aMt9fb=oYP6P@TwR ze$w`f$Nc=IX4IIi1g039`eqZ7MvJngJ}^)SUUxvOeUd|V>(Tq_MO{6|(!f!(1hA&k zX_YxDgGS1NVfJf#Qd1y4#DO~>V{!6iTHVj6tsKEDp((-I3T_wt3HHm;(=c`!F#2ie z1~Ig`O{|H3ltC&_gHAt$sEk`+TD~~KC@NwKD?08`_TYi3R4o5Zm}Q*lr$NVr_8wl& zX3*qA`f<<=v*UbdSafz|yUYTAT2{7hw!qJAKky-#FAuYfTeFJBO0nl8j13YfBpV+QlC=KAW zxL{c%R|WuojJ5KtDETs%O?=vbs+2qpp}<&*(Ge2?>Tj;PxhL7E>CLd)%hn4IROr9B zo(xO5kgoQ^R+>(A7fm1V)3j*nv3Cx{DD{+iwyb-s{ThF1T@30Y^j8X7IO_ijca%dG z#e~f@yu3uFz+JE|oVJCUfw;V{@)ZkKUytG~V%rPwHWij0;q!QLlsIzDNF2#>f#GfR zZN!kG=RqA7-K~NhbP>LK!+M_n!t|FI+{Tp8F@1;(R+T|}k<5^9RW0eam1L z1EnrHaoBRUGM?0qIAbDd5HE*50lkNg;ptE^A{9>CrXYjz@UEhJJnS=1$=3zh%6*&+ zv%WzRndRPLfG;M%8@xBzTt+jVSscd5oJFD2zRg)5pnG^eFB8T1Cc(^Oa1uY6?@Uju9>DJmy>>j&0hlvtdvhh|Z&)MiCW+1*S*a z<)1GoN(wf^5Hn!GV1&w)F*u7$&5hY~b}$z%7|M!BJ{hK~*h(4YT)6YWxm2vgLz7`7 zF2i+INkZauf^{UU$7|~Ggi7Zm1(Es^I%gMkv20n0_&DXAS9(~skn&KmZRCB(YZCH5 z;5DxCA}kQsq_B~OPotzi($ySyB(NlsaVuz^px2gyoV{FO6qzx_CVAL5K-fIYB7-sp zPiri!A-8#~R61YvR4DO93$|K7Y;4}cHx2_MX<-3O9IlPj`%_goW(7zeJvks#&It<$ z!6?<`OPp9hUaBrApR6|IX2}Ctmc$wui;TKT?~(?LSdry=#r5ZaUfIN*RXR@qWL3cX zHXB0geZuA<8oTPE-}7#vv1LifS*A2fv!jNW3RbwZb#xkL3QF{AU+qw#WdxN6bwc(< zx2a`tldBWC=0OoRfcuqzYYTAJXequ0Yp+~cSV$!oAHwxBULC^qQ}hY0rK*e)R~m>6 zTwwY$bmW*)MRQC!!{QK38DTA^u*%gc@(EkJ#)8bhR*~07IYqJ>#lAuH#V=<0 zOY{}Nw3rwF%iOrFXXl3Mznvb4fyF!Tlo@)Iul2)s*!Ml2;uukumiv7>wK5?63gZvX zjds99M&`Bx0?S8E43mWCs40VQH?WRm{aAK1SVzk#xQ`Q1|LPJts+)LeSvEvqE~w%{ zzHmF}w10Umh;~udcue1Z9idTw3$V{2<)CMY`z%Q{zn+ldTp^^(?v-nK`EA_|P zj#6H~;YGVEMtN+o!Vu%Ru3_=i$gnH0}vY}R+yJ$+Fwlprtri2u` zX4ow*lfZeS)s% zwCMdNh~L8FCB!;v=if&WN~w1aY&p{KhBZ^1&)c{#M$Kd*D!i6B{Q*70IF<2_IRT8` zM!s@`)_#NLF=Zd)RQ6+d)Ok%GpVo0%j0Ml1%DGsxq7<0!ip>8EV#o!~V0(gH67L}W z>QodUeOJOE9i!MEaz8kKY_79slCF_7j8bUCPi)7oeasXN+poBK>(M*vg>|fx>Ul#p zX>l(p?$!P-e-F>`>L&?f<|6*x=YK)gFjkc+*N#%`Rkf0C7hB%tyxk^x_|aj%_bg!S zY^OaLsTzsv6heXlI-=&SB>ywqz%*c93}#WU;#2eexCf`{65)YOV64Mgb3TK=1wMk$bBA-s;xeOcZPeV6w0cH6r z$zSr7t$2iVXyI)*)=fGE_M|o~B44su#!%@vV7X$_n>L!*M;I;AKRH^d4j9;*)#$vV@<%lO;o;SCHF; zL)?+%@I{W#^u1MmZVbEW8+EA?gC z54|%WY_dpAl!bK*->gJB$U^x-N?wA+=nO9F@~!9~ruO3X;fvSB$Bnek$UuiRkDW6= z$2G z2@C|oW18Uc{T}_NcZ3bs!rm!1{M^qw&t{Iz1vY~J6;cvU=%T!9Y_79;ht0cezQyK! zHaFPNls&46Ei`>b>NcCt*+_i)f)w{~J$@hK-Dg7^^&YShugEPS?xL z@DfW2pm~U9SAAD~s_HHKpm1K@<8oh-rwR| literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/CoNLL/conll_coref_adder.py b/udapi/block/demo/Coreference/CoNLL/conll_coref_adder.py new file mode 100644 index 00000000..5fa9adfb --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_coref_adder.py @@ -0,0 +1,94 @@ +# Jan Faryad +# 23. 6. 2017 + +from udapi.core.block import Block +import sys + +class Conll_coref_adder( Block): + def process_document( self, doc): + """ + main method for adding detected coreference information + """ + self.list_of_coreferents = [] + self.iterator = -1 + + # READING INPUT AND BUILDING CLUSTERS + for line in sys.stdin: + #processing input + fields = line[:-1].split( '\t') + pronoun_id = ( int( fields[0]), int( fields[1]) ) + antecedent_id = ( int( fields[2]), int( fields[3]) ) + are_coreferents = self.string_to_bool( fields[4]) + + # creating coreferents and connections between them + if ( are_coreferents ): # if they are coreferents + # obtaining Coreferents from ids - either creating new coreferents or finding some already existing + pronoun = self.get_coreferent( pronoun_id) # these methods could change the list of coreferents + antecedent = self.get_coreferent( antecedent_id) + # connection between Coreferents + pronoun.add_coreferent( antecedent) + antecedent.add_coreferent( pronoun) + + # adding cluster id to all Coreferents in the cluster + cluster_id = 0 + for coref in self.list_of_coreferents: + if ( coref.cluster_id == -1 ): # if the cluster still doesn't have an id + coref.rewrite_cluster_id( cluster_id) # recursion + cluster_id += 1 + + # ADDING CLUSTER IDS TO NODES + actual_coreferent = self.next_coreferent() + for bundle in doc.bundles: + sent_id = int( bundle.bundle_id) + for root in bundle.trees: + for node in root.descendants: + if ( actual_coreferent == None ): # no more coreferents in the document + return + #print( actual_coreferent.id, ( sent_id, node.ord ) ) + if ( actual_coreferent.id == ( sent_id, node.ord ) ): + #print("tuu") + node.misc['Coref'] = actual_coreferent.cluster_id + actual_coreferent = self.next_coreferent() + + + def get_coreferent( self, coreferent_id): # -> Coreferent + """ + returns Coreferent by id - either existing or it newly created + """ + for i in range( len( self.list_of_coreferents)): + if ( coreferent_id < self.list_of_coreferents[i].id ): # new coreferent in the middle + coreferent = Conll_coreferent( coreferent_id) + self.list_of_coreferents = self.list_of_coreferents[:i] + [ coreferent ] + self.list_of_coreferents[i:] + return coreferent + elif ( coreferent_id == self.list_of_coreferents[i].id ): # existing coreferent + return self.list_of_coreferents[i] + coreferent = Conll_coreferent( coreferent_id) # new coreferent at the end + self.list_of_coreferents.append( coreferent) + return coreferent + + def next_coreferent( self): + self.iterator += 1 + if ( len( self.list_of_coreferents) > self.iterator ): + return self.list_of_coreferents[ self.iterator ] + + def string_to_bool( self, string): + if ( string == "True"): + return True + return False + +class Conll_coreferent: + def __init__( self, id): # id ... triplet ( para id, sent id, word id ) + self.id = id + self.coreferents = [] + self.cluster_id = -1 + def add_coreferent( self, coreferent): # void + if ( coreferent not in self.coreferents ): + self.coreferents.append( coreferent) + def rewrite_cluster_id( self, new_cluster_id): # void + """ + recursive method for setting cluster id to all coreferents in the cluster + """ + if ( self.cluster_id != new_cluster_id ): + self.cluster_id = new_cluster_id + for coref in self.coreferents: + coref.rewrite_cluster_id( self.cluster_id) diff --git a/udapi/block/demo/Coreference/CoNLL/conll_evaluator.py b/udapi/block/demo/Coreference/CoNLL/conll_evaluator.py new file mode 100644 index 00000000..c76a9fb4 --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_evaluator.py @@ -0,0 +1,163 @@ +# Jan Faryad +# 4. 5. 2017 +# +# evaluation of automatic recognition of coreference + +from conll_processor import CoNLL_processor +from conll_api import CoNLL_API as api +import sys + +class CoNLL_evaluator: + def __init__( self, gold_input_name, auto_input_name): + self.gold_input = open( gold_input_name, 'r') + self.auto_input = open( auto_input_name, 'r') + def evaluate( self): + """ + main method for evaluation + """ + precision_sum = 0 + recall_sum = 0 + + # lists of Eval_coref_records + gold_coreferents = self.get_corefs( self.gold_input) # what was supposed to be decided + auto_coreferents = self.get_corefs( self.auto_input) # what was decided + + print(len( gold_coreferents), len( auto_coreferents)) + + if ( len( gold_coreferents) == 0 ): + return( 1, 1) + if ( len( auto_coreferents) == 0 ): + return( 0, 0) + + gold_coref_ids = [ coref.coref_id for coref in gold_coreferents ] # ids + auto_coref_ids = [ coref.coref_id for coref in auto_coreferents ] + #union_coref_ids = list( set( gold_coref_ids) | set( auto_coref_ids)) + + # words that that were supposed to be decided and also were. still clusters may differ + common_gold_coreferents = [ coref for coref in gold_coreferents if ( coref.coref_id in auto_coref_ids ) ] + common_auto_coreferents = [ coref for coref in auto_coreferents if ( coref.coref_id in gold_coref_ids ) ] + if ( len( common_gold_coreferents) == len( common_auto_coreferents) ): # should hold + common_corefs_number = len( common_gold_coreferents) + for i in range( common_corefs_number): + gold_coref = common_gold_coreferents[i] # lists have the same ordering, so these two records refer to the same word + auto_coref = common_auto_coreferents[i] + gold_cluster = gold_coref.cluster # cluster assigned to this word in gold and auto data + auto_cluster = auto_coref.cluster + + if (len( gold_cluster.coref_ids) == 1): # drops + continue + + # "-1" in the next: not counting the actual coreferent + gold_size = len( gold_cluster.coref_ids) - 1 # relevant coreferents to this word + auto_size = len( auto_cluster.coref_ids) - 1 # selected coreferents to this word + inter_size = len( set( gold_cluster.coref_ids) & set( auto_cluster.coref_ids)) - 1 + prec = inter_size / float( auto_size) + rec = inter_size / float( gold_size) + precision_sum += prec + recall_sum += rec + #print(prec, rec) + #if ( auto_size != inter_size or gold_size != inter_size): + #print( auto_size, gold_size, inter_size) + #""" + #print( "Selected pronouns:\t\t\t", len( auto_coreferents)) + #print( "Relevant pronouns:\t\t\t", len( gold_coreferents)) + #print( "Selected relevant:\t\t\t", len( common_gold_coreferents)) + #print( "Correctly decided:\t\t\t", true_positives) + #print( "") + print( "Precision: " + str( precision_sum / len( auto_coreferents))) # teraz je vysledok ohrsi kvoli vyskrtnuti koreferentov prodropov + print( "Recall: " + str( recall_sum / len( gold_coreferents))) + #""" + # if an id is missing in one of the id-lists, it will contribute 0 to precision/recall sum, but 1 to the divisor + return ( precision_sum / len( auto_coreferents), recall_sum / len( gold_coreferents) ) + + + def compare_clusters( self, cluster_1, cluster_2): # -> bool + """ + if two given clusters have at least two common word ids + one of the word, which is beaing checked, if its coreference was decided correctly + this word has one cluster in the gold data, other in auto. now we are checking, if the clusters are identical: + is there another common word in both clusters? + """ + common = set( cluster_1.coref_ids) & set( cluster_2.coref_ids) + return ( len( common) > 1 ) + + def get_corefs( self, input_file): # -> list of coreferenting expression (represented by Eval_coref_record object) in the given conll file + clusters = [] # list of Eval_cluster_records + coreferents = [] # list of Eval_coref_records + sent_id = 0 + for line in input_file: + if ( line == '\n' ): # blank line + sent_id += 1 + elif ( line != '\n' and line[0] != '#' ): # not comment line -> record line + fields = line[:-1].split( '\t') + if ( len( fields) == 10 ): + misc = fields[-1] + misc_fields = misc.split( '|') + coref = [ misc_field for misc_field in misc_fields if "Coref" in misc_field ] + if ( len( coref) > 0 ): + cluster_id = int( coref[0].split( '=')[1]) + # there should be at most one such cluster + appropriate_clusters = [ cluster for cluster in clusters if ( cluster.cluster_id == cluster_id ) ] + if ( appropriate_clusters == [] ): # first occurence of this cluster id - create a new instance + cluster = Eval_cluster_record( cluster_id) + clusters.append( cluster) + else: # already existing cluster + cluster = appropriate_clusters[0] # there is at most one element + word_id = int( fields[0]) + coref_id = ( sent_id, word_id ) + cluster.add_coreferent( coref_id) # adding coreferent id to the list of coreferents of the cluster + #if ( api.has_upostag( node, [ "PRON", "DET" ]) # if we are supposed to detect coreference of this cluster + # and api.has_feature( node, "PronType", [ "Prs", "Rel", "Dem" ]) ): + # # !!! PRO DROPS MISSING !!! + coref = Eval_coref_record( coref_id, cluster) + coreferents.append( coref) # output list of all pronouns, for which the coreference was detected + + + """ + for paragraph in api.get_paragraphs( doc): # linear iteration through all nodes in the document + for sentence in api.get_sentences( paragraph): # + for node in api.get_nodes( sentence): # + cluster_id_string = api.get_misc_by_name( node, "Coref") # getting coreference cluster number (string) + if ( cluster_id_string == None ): + cluster_id_string = api.get_misc_by_name( node, "Drop_coref") # !!! DROPS ARE IGNORED FOR NOW, IF THERE IS A NON-DROPPED COREFEREN !! + if ( cluster_id_string != None ): + cluster_id = int( cluster_id_string) + # there should be at most one such cluster + appropriate_clusters = [ cluster for cluster in clusters if ( cluster.cluster_id == cluster_id ) ] + if ( appropriate_clusters == [] ): # first occurence of this cluster id - create a new instance + cluster = Eval_cluster_record( cluster_id) + clusters.append( cluster) + else: # already existing cluster + cluster = appropriate_clusters[0] # there is at most one element + coref_id = api.get_full_id( node) + cluster.add_coreferent( coref_id) # adding coreferent to list of coreferents of the cluster + if ( api.has_upostag( node, [ "PRON", "DET" ]) # if we are supposed to detect coreference of this cluster + and api.has_feature( node, "PronType", [ "Prs", "Rel", "Dem" ]) ): + # !!! PRO DROPS MISSING !!! + coref = Eval_coref_record( coref_id, cluster) + coreferents.append( coref) # output list of all pronouns, for which the coreference was detected + """ + + return coreferents + + def get_coref_record_by_id( self, coreferents, id): + for coref in coreferents: + if ( coref.coref_id == id ): + return coref + +class Eval_cluster_record: + def __init__( self, cluster_id): + self.cluster_id = cluster_id + self.coref_ids = [] + def add_coreferent( self, coref_id): + self.coref_ids.append( coref_id) +class Eval_coref_record: + def __init__( self, coref_id, cluster): + self.coref_id = coref_id + self.cluster = cluster + +if ( len( sys.argv) == 3 ): + e = CoNLL_evaluator(sys.argv[1], sys.argv[2]) + e.evaluate() + + diff --git a/udapi/block/demo/Coreference/CoNLL/conll_main.py b/udapi/block/demo/Coreference/CoNLL/conll_main.py new file mode 100644 index 00000000..06fca057 --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_main.py @@ -0,0 +1,116 @@ +# Jan Faryad +# 21. 6. 2017 +# +# main programm that roofs machine learning of coreference from gold data in CoNLL-U format, runs prediction and evaluation +from udapi.core.block import Block + +from conll_processor import CoNLL_processor +from conll_selector import CoNLL_selector +from conll_api import CoNLL_API as api +from conll_add_coref import CoNLL_add_coreference +from conll_evaluator import CoNLL_evaluator + +from sklearn import svm +from sklearn.neighbors import KNeighborsClassifier +import os + +path = "C:\Komodo\Projekty\\" + +class Conll_main( Block): + def process_document( self, document): + + + + +# for these files is necessary to run previous parts of project (conversion from PDT to plain text, UDPipe for conversion to CoNLLU +# and transfer of coreference information from PDT to CoNLL-U) +# name of the file +file_1 = "cmpr9410_001" # train 1 +file_2 = "lnd94103_052" # train 8 +file_3 = "ln94206_32" # train 5 +file_4 = "cmpr9410_032" # train 2 +file_5 = "ln94204_7" # train 2 +file_6 = "mf930713_046" # train 2 +file_7 = "ln94210_105" # train 2 +file_8 = "ln95048_134" # train 3 +file_9 = "mf920922_131" # train 7 +file_10 = "mf930713_085" # train 1 +file_11 = "mf930713_118" # train 3 +file_12 = "ln95048_117" # train 6 + +list_of_files = [ file_1, file_2, file_3, file_4, file_5, file_6, file_7, file_8, file_9, file_10, file_11, file_12 ] +precision_sum = 0 # observed properties of recognition - will be used for evaluation +recall_sum = 0 # +for file in list_of_files: # cross validation, one file will be considered as testing file, the others as traning files + train = [ f for f in list_of_files if f != file ] + test = file + + feature_vectors = [] + target_values = [] + + for name in train: # building feature vectors from training files + input = open( path + name + ".out.conll", 'r', encoding="utf8") # file with coreference information + proc = CoNLL_processor( input) # processing the document + document = proc.process_document() # + input.close() + + selec = CoNLL_selector( document) # selecting of feature vectors with target values for training + vectors = selec.process_document() # + + for i in vectors: + # vectors have form ( Node - pronoun, Node - candidate for coreference, feature vector, target bool value (are these two nodes coreferents?) ) + feature_vectors.append( i[2]) + target_values.append( i[3]) + + # clf = svm.SVC(gamma=0.001, C=100.) # didn't work... ? + knn = KNeighborsClassifier() # knn works much better + #knn = svm.SVC(gamma=0.001, C=100.) + knn.fit( feature_vectors, target_values) # MACHINE LEARNING + # + input = open( path + test + ".out.conll", 'r', encoding="utf8") # testing file with coreference information + proc = CoNLL_processor( input) # processing document + document = proc.process_document() # + input.close() + + selec = CoNLL_selector( document) # selecting of feature vectors with target values for evaluation + vectors = selec.process_document() # + + feature_vectors = [] # similar as for training files + target_values = [] # + for i in vectors: # + feature_vectors.append( i[2]) # + target_values.append( i[3]) # + + results = list( knn.predict(feature_vectors)) # PREDICTION + print( results.count(True), target_values.count(True)) + coreference_triplets = [] # triplets ( pronound id, candidate id, bool value - are they coreferents? ) + for i in range( len( vectors)): + pronoun_id = api.get_full_id( vectors[i][0]) + referent_id = api.get_full_id( vectors[i][1]) + triplet = ( pronoun_id, referent_id, bool(results[i]) ) + coreference_triplets.append( triplet) + + input = open( path + test + ".outp.conll", 'r', encoding="utf8") # test files WITHOUT coreference information + output = open( path + test + ".test.conll", 'w', encoding="utf8") # adding detected coreference + coref_adder = CoNLL_add_coreference( input, output) # + coref_adder.add_coreference( coreference_triplets) # + input.close() + output.close() + + # EVALUATION - comparing of manually (gold) and automatically marked coreference + gold_input = open( path + test + ".out.conll", 'r', encoding="utf8") # test file with coreference + auto_input = output = open( path + test + ".test.conll", 'r', encoding="utf8") # output of adder - previous step + evaluator = CoNLL_evaluator( gold_input, auto_input) # evaluating + ( precision, recall ) = evaluator.evaluate() # + + precision_sum += precision + recall_sum += recall + print(precision, recall) + print('\n') + + +# average precision and recall +print( "Average precision: ", precision_sum / len( list_of_files)) +print( "Average recall: ", recall_sum / len( list_of_files)) +#print( "Average precision: ", precision_sum ) +#print( "Average recall: ", recall_sum ) diff --git a/udapi/block/demo/Coreference/CoNLL/conll_node.py b/udapi/block/demo/Coreference/CoNLL/conll_node.py new file mode 100644 index 00000000..2ed3eed3 --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_node.py @@ -0,0 +1,130 @@ +# Jan Faryad +# 20. 4. 2017 +# +# node class of processor has it's own file + +class Node: + def __init__( self, sentence, record_line): + self.sentence = sentence + self.process_record_line( record_line) + self.subnodes = [] + self.depth = -1 # remains to be set -1 for auxiliary nodes such as range nodes, which are not included in the tree + self.root_path = [] + def process_record_line( self, record_line): + if ( record_line[-1] == '\n' ): + record_line = record_line[:-1] + fields = record_line.split( '\t') + #if ( len(fields) < 10 ): + # print(record_line) + self.set_id( fields[0]) # each record line should have 10 fields + self.set_form( fields[1]) + self.set_lemma( fields[2]) + self.set_upostag( fields[3]) + self.set_xpostag( fields[4]) + self.set_feats( fields[5]) + self.set_head_number( fields[6]) # only a number, pointer wil be set after processing of all sentence nodes + self.set_deprel( fields[7]) + self.set_deps_numbers( fields[8]) # the same as for head + self.set_misc( fields[9]) + def set_id( self, id_string): + try: + self.id = int( id_string) + self.id_range = ( self.id, self.id) + except: + self.id = -1 + range = id_string.split( '-') + if ( len( range) == 2 ): # range nodes + try: + self.id_range = ( int( range[0]), int( range[1]) ) + except: + self.id_range = ( -1, -1) + def set_form( self, form): + self.form = form + def set_lemma( self, lemma): + self.lemma = lemma + def set_upostag( self, upostag): + self.upostag = upostag + def set_xpostag( self, xpostag): + self.xpostag = xpostag + def set_feats( self, feats): + self.feats = [] # list of features + if ( feats == "_" ): + return + split_feats = feats.split( '|') + for feat in split_feats: + split_feat = feat.split( '=') + name = split_feat[0] + values = split_feat[1].split( ',') # there can be more values for one feature + feature = ( name, values) + self.feats.append( feature) + def set_head_number( self, head): + if ( head == "_"): + self.head_number = -1 # for range nodes + else: + self.head_number = int( head) + if ( self.head_number == 0 ): # root + self.sentence.set_root( self) + def set_head( self): + """ + called after creation of all nodes in a sentence + creates a pointer to head node according to head number and add this node to its head's list of subnodes + """ + self.head = self.sentence.get_node_by_id( self.head_number) # None for root and range nodes + if ( self.head != None): + self.head.add_subnode( self) + def set_deprel( self, deprel): + self.deprel = deprel + def set_deps_numbers( self, deps): + """ + deps ... secondary dependencies + """ + self.deps = [] + if ( deps == "_" ): + return + split_deps = deps.split( '|') + for dep in split_deps: + split_dep = dep.split( ':') # deps have for node_id:dep_name + s_head_number = int( split_dep[0]) # only a number, not an object, for now + s_deprel = split_dep[1] + s_dependency = ( s_head_number, s_deprel) + self.deps.append( s_dependency) + def set_deps( self): + """ + called after creation of all nodes in a sentence + creates pointers to secondary heads in form ( sec_head_pointer, dep_name ) + """ + new_deps = [] + for pair in self.deps: + s_head = self.sentence.get_node_by_id( pair[0]) + s_dependency = ( s_head, pair[1]) + new_deps.append( s_dependency) + self.deps = new_deps + def set_misc( self, misc): + """ + any other information + here will be marked the coreference + """ + self.misc = [] + if ( misc == "_" ): + return + split_misc = misc.split( '|') + for misc in split_misc: + split_misc = misc.split( '=') + name = split_misc[0] + value = split_misc[1] + miscellaneous = ( name, value) + self.misc.append( miscellaneous) + def set_depth_and_path( self, head_depth, root_path): + """ + called after setting of heads and subnodes + sets depths and root paths of nodes recursively + """ + self.depth = head_depth + 1 # increasing the depth + self.root_path = root_path + [ self ] # expanding the path + for subnode in self.subnodes: + subnode.set_depth_and_path( self.depth, self.root_path) # recursion + def add_subnode( self, subnode): # void + """ + called from subnode itself, when setting its head (= this node) + """ + self.subnodes.append( subnode) diff --git a/udapi/block/demo/Coreference/CoNLL/conll_node.pyc b/udapi/block/demo/Coreference/CoNLL/conll_node.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3fd83a98356ccc3b01637a77cb409ec35b16adbc GIT binary patch literal 6579 zcmcgw>yF&E6{hC4tJz)eIxdoI;IwMcV#lbxgEYvG+=Ip~P$U_kG7u*&3_&~M?8w$g zW04bk3vYiU?IQ$8e)K8&HhqmgK>K}%9BG;uMVlZqHo1p~q)492cMjS8=fSWzzW&)% z`Ck`*-$yYopvv&StFl1-MX4{9`s^Os9d&2aL!V_esWRP64Z!#fiuoFqR_b2B4`AxO zj{n9ze5@m!9zV>kzRG$+3{=(^Vn<~IA$C=^BSfgOT_J`l3x(KI*-(gmmF)>}pt5}- zuBhxlh(ncK5#mT?heBLc@tx5THaF!dSvn{mpqSTDJq^@Tr4kTIJpkQNUj`~Tmv$mY zV0Tw}4vwH83w~mf{|moSAEe#o=X7axIo0+W8q2zxYGaaGPpdjhioDcr(CVy&_>ASW zOfT)+hM?-IvdJ>F^AR^FQZ~An#gwkylVk_98KP1_7#yI4!IXkn%T;9h4=^B8n9nh^{;;F!mwh|B3{)wd55&SC z=gUqj_N=FlDSGMwY>2+!GP=STw2YoGc3MVX7`rWFAdIkO>NG~nkD6Gai(ia^>GAD zuhxa7U-+i+Lrk-QMQ)~Ik1=-_^8m8XS+0xBY|{*5O7(zyeF>Ecj$nR=-K)X3|25`F z*^4>;4aCJrS+P5q7oAyZ`nq`hOl%OYezz=D5CpJXKPXTS1iGA|!YLg%0K;h3->8cd z`7SKgnJyP;%(ngPqp#$%ut%)jQD}bp=o?iA>Qk{Oiq%<^r2*Y?76i%}lt7Ij%?8|v zeU;XVu{n#$v!qVTa~;zLEC&?2Y_%tbgfYg}d3i2|C&Ra@MH=7BDCT)oD(D7>!7=I( zf1ktO6BN-PkHsPyq}m&h7Ku?zlM!nHO8SXN$(iYO@V9y@dh!hv!!4`-_XGq8aqf*H zP)1ul!af%K70UNJ0xj4h(#9cvy6r>IP;UL8LwFe7IKXjl5W(g!R$@NJ5YeIO9V}zqzlPAk{Uf4tGg|531%fyKb88O92<1dCGDFoqoJ8gRC4&lfRZkk zy39sAo%7sZfN~*?A<+l1o}cI>uBzN#QMbopQKbA`TrzCQU$8A%;O;$8JxT=p{D6C<#I#kd9L+BD+?OeXQqF;}4c%@*3*#{hmz zFx|n*FEMxn(s{$)KyD6}+!Tbn+6bVtMU9(e1E!q8tS>6ePz)Pxn@H*Llj_I61jo-| zEdsW~_ueMH9|7Tk@AO87xJLPSG@++dPjHg=t$iKgAgY-XZIFkzQP)fvVJgtdH6B}s@5>55JTu=mK}}Q*#Tg@OGx7MOr^Z_`~1`@oN1d z)QsIgg7_6I(JHuoui|Tg0|HU61SzTB$Ak?Gka0K2qXkIjCeBa3E{e3&)oQzs3)irZ z8H#i7{-%2moqJQubnV8y3H(qT5{(y}S3+4J&V3tRe%g&3 zyz;n!!TUk0y#MfL)1^$fU@|NC+Di**?1jds@bebfKDq9sg zNn%P<9^hhT<}tI$n0Od7WXDWFV_tw_Ch+mESur(|pc%hMivAT-IkI+pSfREMzOk~R zv6_fP5Dvnla6jz$e|zChxC{D9xECIV;l%Ba0X;_9(9M>%E4p~wN&j8hHn;I_kjbvn literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/CoNLL/conll_prediction_selector.py b/udapi/block/demo/Coreference/CoNLL/conll_prediction_selector.py new file mode 100644 index 00000000..16050483 --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_prediction_selector.py @@ -0,0 +1,10 @@ +# Jan Faryad +# 4. 7. 2017 +# +# selector for prediction - idetical wit selector + +from udapi.block.demo.Coreference.CoNLL.conll_selector import Conll_selector + +class Conll_prediction_selector( Conll_selector): + def for_training( self): + return False diff --git a/udapi/block/demo/Coreference/CoNLL/conll_processor.py b/udapi/block/demo/Coreference/CoNLL/conll_processor.py new file mode 100644 index 00000000..3ce7d9bb --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_processor.py @@ -0,0 +1,111 @@ +# Jan Faryad +# 20. 4. 2017 +# +# processing a conll-u document for obtaining data for feature vectors easily + +from conll_node import Node + +class CoNLL_processor: + def __init__( self, input): + self.input = input + def process_document( self): + document = Document() + para_id = 0 + actual_sentence = Sentence( 0, None) # so that it's existence needn't be controlled + for line in self.input: + if ( line[0] == '#' ): # comment line beginning with # + fields = line.split( '\t') + if ( len( fields) == 4 and fields[1] == '$' ): # new sentence with paragraph and sentence id + new_para_id = int( fields[2]) + if ( para_id != new_para_id ): # new paragraph + para_id = new_para_id + actual_paragraph = Paragraph( para_id, document) + document.paragraphs.append( actual_paragraph) + actual_sentence.finalize() # things that can be done only after creation of all nodes + sent_id = int( fields[3]) + actual_sentence = Sentence( sent_id, actual_paragraph) + actual_paragraph.add_sentence(actual_sentence) + elif ( line != ' \n' ): # not a blank line -> record line + node = Node( actual_sentence, line) + actual_sentence.add_node( node) + return document +class Document: + """ + root object of the whole processed document, contains paragraphs + """ + def __init__( self): + self.paragraphs = [] + def add_paragraph( self, paragraph): # void + self.paragraphs.append( paragraph) +class Paragraph: + """ + children of document, contain sentences + """ + def __init__( self, number, document): + self.number = number + self.sentences = [] + self.document = document + def add_sentence( self, sentence): # void + self.sentences.append( sentence) +class Sentence: + """ + children of paragraphs, contain nodes + """ + def __init__( self, number, paragraph): + self.number = number + self.nodes = [] + self.paragraph = paragraph + self.root = None + self.depth = 0 + self.nodes_number = 0 + def add_node( self, node): # void + self.nodes.append( node) + def get_node_by_id( self, id): # -> Node + """ + used by getting a head of a node by head id + called from head and deps setting, see node file + """ + if ( id == 0 or id == -1 ): # root and range nodes don't have a head - root has head_id = 0, range nodes -1, + # but there's no node with id = 0 + return None + for node in self.nodes: # it has to be searched, because there could be also range nodes, so index in list != node id + if ( node.id == id ): + return node + for node in self.nodes: # if there isn't an exact node, only a range node + if ( node.id_range[0] <= id and node.id_range[1] >= id ): + return node + def set_root( self, node): # void + """ + called by the root itself, see node file + """ + self.root = node + def finalize( self): # void + """ + things that can be done only after creation of all nodes + + creates pointers to heads (both primary and secondary) of all nodes - up to now there were only head ids + sets node depths and paths recursively from root + sets sentence depth and number of nodes + """ + for node in self.nodes: # heads + node.set_head() + node.set_deps() + if ( self.root != None ): # depths and paths + self.root.set_depth_and_path( 0, []) # root's "head" has depth = 0 and and empty path + + for node in self.nodes: + if ( node.depth > self.depth ): # depth of the sentence = maximum node depth + self.depth = node.depth + if ( node.id > self.nodes_number ): # number of real nodes in the sentence - not range nodes + self.nodes_number = node.id + + + + + + + + + + + diff --git a/udapi/block/demo/Coreference/CoNLL/conll_processor.pyc b/udapi/block/demo/Coreference/CoNLL/conll_processor.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e71716c74ad5d617c158912f8f1548dd09295222 GIT binary patch literal 5540 zcmc&&TXWmS6+YlaBI%oIWipoPwy5K{%)~a6JoKSS(~jkbPAAr6zz0n{lR+V1DS`n3 z3cHM@jNBKeza>AQKddv!bEf^i0}yoOB-7@BhO~>_gWa>|zUQ$0-L*lscl)zg>ZgtO zpV92!&?WfyBomo?^3)SAX-RTLlD2#;@%RDR_Ax|G0hiCr<;`=YqCi|3`4Z4v&R^X zqKO^N?Zf$G@-SZJ>BIP|(Q-5yO``HVN@k;F5-rjPi*q+E@@g_V&WiYpQDWxB=%6Ug z#FQqF4aVSe6c>4xt+{=Oojn{AhH0L92bI8Jz=PhwM zfLva*47V({86IJ+WR7NLdw3s>)vsle6#3>Rj7A8*=`6SJwEd9!WHNcZ3wDoBL<`pr7 z=I|9|E8rozGg;BN4G0ei(?s1Virq5G8bnHVmgYu}o}?yAth<6exp@|@_U&L^?`vp< zUcn*AA!5o-iNJfa&Oy@Z*buIGCizzV)a!d&-VJXDe>c24=&$O0*BdBg7xNq58{Uxg ztJuOYkLD%}RWD&UFOp@3X}|@+ZFFn**U^SzKtQ{s=~)u8<@H+u#UG>T!_SYCHt$0TH7(T z$VO{8K(oI=*CYzHLBk|)&%v^hX{?Qc+cb*i%lWY>)fO7;!7je4=c&mDcQCDB7;H3T zYAm~tLsi&<5ZU)$&5!;U2Y8D-TylUO5!aX0+L$(FN58=7?~wwkPrOSeAN&@;DwK2K zn!JtLI_;VVu5G;&^e~Un^l5DULri}(4fSxL~20io-YNN`yhV*nbe$9~d%z!QyFfGzNg7=Yr zOw7VfHS^JBVdYkreTbXan%tD3b#UtM(JT|Q%7^GjKi8Aq29isj6#Npf%`OKxGEoR(+bCDclF}*P-5&c|3{>pq1WZ*Jx<4`_vGm8 z!)Dogt7Rw|QH*e@C*>2}2~fKNb!*W0^obntAa!p0CCE|pW-7C^NLG%|{S)I{nxFWQ zKQ&RpxF4x`^P57_q}dZkS%zJcvY1!jq8tg2Sy>rt^|@&yTL)es(^BY*!BAeNc5bZ@mfni}`e z-}`}k;lJxe1V9-QAbbhFGxWem&K=}f~UQVP_o ztb@DgUnM6%uX1+# zo5DdX6cjl>j&lFlAUDd5kDnjT{b=G$>BpssTv}+}1Sfgvf}pQ8m~@#zMNpu+H6?Hs z>PXff9v5zkG9sPh#}J=>Wep051haS4DOX7S2mW%weR=VWHdCSmVW-5@4qIJKJQ>=t zl|SkYVHNWta#QP bool + """ + if "candidate" is an appropriate candidate for coreference with "node" + COULD BE CHANGED IN THE FUTURE + """ + if ( node == candidate ): + return False + if ( self.has_upostag( candidate, ["NOUN", "PRON", "VERB"]) ): + return True + return False + def print_feature_vector( self, node, candidate): # void + """ + for now, list of bools, but ints (distances) are also considerable + !!! SHOULD BE CHANGED IN THE FUTURE !!! + """ + feature_vector = [] + node_bundle = self.get_bundle( node) + candidate_bundle = self.get_bundle( candidate) + same_sentence = ( node_bundle == candidate_bundle ) + + # distances + # feature_vector.append( same_sentence) + # if ( same_sentence ): + # feature_vector.append( True) # same paragraph + # feature_vector.append( api.surface_node_distance( node, candidate)) + # else: + # same_paragraph = api.in_same_paragraph( node, candidate) + # feature_vector.append( same_paragraph) + # if ( same_paragraph ): + # feature_vector.append( api.surface_sentence_distance( node, candidate)) + # else: + # feature_vector.append( api.surface_paragraph_distance( node, candidate)) + # feature_vector.append( api.depth_distance( node, candidate)) + # feature_vector.append( api.compound_distance( node, candidate)) + # feature_vector.append( api.ccs_depth( node, candidate)) + + anaphoric_pronoun = node.ord > candidate.ord # the pronoun is after its antecedent - anaphora + feature_vector.append( same_sentence and anaphoric_pronoun) + + # grammar + # ? not only bool for equality, but also categories ? + feature_vector.append( self.has_feature( node, "Case", candidate.feats['Case'].split( ','))) # same case + feature_vector.append( self.has_feature( node, "Gender", candidate.feats['Gender'].split( ','))) # same gender + feature_vector.append( self.has_feature( node, "Number", candidate.feats['Number'].split( ','))) # same number + + # pronoun + feature_vector.append( self.has_feature( node, "PronType", ["Dem"])) # demonstrative + feature_vector.append( self.has_feature( node, "PronType", ["Prs"])) # personal + feature_vector.append( self.has_feature( node, "PronType", ["Rel"])) # relative + feature_vector.append( self.has_feature( node, "Reflex", ["Yes"])) # reflexive + feature_vector.append( self.has_feature( node, "Poss", ["Yes"])) # possessive + + # candidate + # part of speech + feature_vector.append( candidate.upos == "NOUN" ) + feature_vector.append( candidate.upos == "PRON" ) + feature_vector.append( candidate.upos == "VERB" ) + # function in the sentence + feature_vector.append( candidate.udeprel == "nsubj" ) # nominal subject + + # target_value + if ( self.for_training() ): + feature_vector.append( self.are_coreferents( node, candidate)) + + feature_vector.append(node.form) + feature_vector.append(candidate.form) + + feature_vector.append(node_bundle.bundle_id) + feature_vector.append(node.ord) + + feature_vector.append(candidate_bundle.bundle_id) + feature_vector.append(candidate.ord) + + for i in range( len( feature_vector) - 1): + print( feature_vector[i], end='\t') + print( feature_vector[-1]) + + def for_training( self): + return True + + ## ## ## complementary interface + + def has_upostag( self, node, list_of_possible_upostags): # -> bool + """ + controls if the node's upostag is on of the possible ones + """ + return ( node.upos in list_of_possible_upostags ) + + def has_feature( self, node, feature_name, list_of_possible_values): # -> bool + """ + controls if the node has the given feature and if one of it's values is possible + """ + list_of_real_values = node.feats[ feature_name ].split( ',') + return ( len( set( list_of_real_values) & set( list_of_possible_values) ) > 0 ) + def get_bundle( self, node): + n = node + while ( not n.is_root() ): + n = n.parent + return n.bundle + def previous_bundle( self, bundle): + bundle_id = int( bundle.bundle_id) + if ( bundle_id > 1 ): + doc = bundle.document() + return doc.bundles[ bundle_id - 2 ] # bundles are indexed from 1, lists from 0 + def next_bundle( self, bundle): + bundle_id = int( bundle.bundle_id) + doc = bundle.document() + if ( bundle_id < len( doc.bundles) ): + return doc.bundles[ bundle_id ] # bundles are indexed from 1, lists from 0 + def are_coreferents( self, node, candidate): # -> bool + """ + if two nodes are in the same coreference cluster + """ + coref_1 = node.misc['Coref'] + drop_coref_1 = node.misc['Drop_coref'] + coref_2 = candidate.misc['Coref'] + drop_coref_2 = candidate.misc['Drop_coref'] + for c in [ coref_1, drop_coref_1 ]: + if ( c != "" and c in [ coref_2, drop_coref_2 ] ): + return True + return False + diff --git a/udapi/block/demo/Coreference/CoNLL/conll_training_selector.py b/udapi/block/demo/Coreference/CoNLL/conll_training_selector.py new file mode 100644 index 00000000..ebaec38c --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/conll_training_selector.py @@ -0,0 +1,10 @@ +# Jan Faryad +# 4. 7. 2017 +# +# selector for training - idetical wit selector + +from udapi.block.demo.Coreference.CoNLL.conll_selector import Conll_selector + +class Conll_training_selector( Conll_selector): + def for_training( self): + return True diff --git a/udapi/block/demo/Coreference/CoNLL/coref_prediction.py b/udapi/block/demo/Coreference/CoNLL/coref_prediction.py new file mode 100644 index 00000000..5c064e49 --- /dev/null +++ b/udapi/block/demo/Coreference/CoNLL/coref_prediction.py @@ -0,0 +1,6 @@ +# Jan Faryad +# 4. 7. 2017 + +from udapi.core.block import Block + +class Coref_prediction( Block): diff --git a/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_adder.cpython-34.pyc b/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_adder.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f2539ac1a28b1a2ef32e7ee674cf4d5baecef7b3 GIT binary patch literal 868 zcmZ`%O>fgc5S_K1wz!TOE+BD1;(+j>*&~+548PD#_>^#5cU(q-W-hTS{!2|dKJIlxTC7OAN?u`VH48A#k z>p_Bn2N$uQVe)R_6+_E23=}}Z0Q(Y;TCp6v6CWf#fr|r>BfR6lK6qcZjmR3Ua-~(B zDUnL4bVd+pjnD$Lb2M{>uJ@n^5CC7_LC@gT)oZx%=_r^xgwH+7okH)!oYGI=CV(F2 z0bKi_IhD@wjsR{Muq6k4E|(Ly#Da_1oBd=sB=&8Xm7Qso7KOCOclcUkPY~cP;CN&M zqsrV)%EGjw$;GAj}x1-rd5VFdwHEMR`y5;hf5q1rx7|} z_xv$CVG|ay_2d1DOt)PbNllC1B$Jco5e6-)gXA(|7NtR!QT($FugS>aL}q={YE6wc zs0x$Co<6{h4#^Q8gCks;)W45r+)TE9`X6lnNHRlB@GI-IQbO2Jh^moYNpU2^vP;V$ pqsQABJ98ZZH=KS1LT2dyi&zwDI+?}Hz4x`)qqAYs3)hF$@CPt~&GG;M literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_getter.cpython-34.pyc b/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_coreference_getter.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..628e90b494d9aaa05e8937e942ce97acdf7280aa GIT binary patch literal 2476 zcmai0TaVl{6t-T8au-6-Z4fGZI4LqCyw7fRNA>X^RjeP?RRlZgw-t)XqRR znt5t@;2-oa@CW!4yz`J(9;$tT_rAb)oJnT3T@`EW*vH4``uTYN?r-!y%g5jUdXBNb z*jlqO-$mD-VE8g%Ea2>s86R3~OeBj1wjtS!NF1aF3z~-1G$e4e*q+n&A);;;X1nP6 zeGHP(K}a8i7ZZz4k8P3+VKg@)A%^Bn7PKL+Q(U~0WU1??N`_L&#Fy^A%rdEb5>Ac2 z)Ni5d4GeS6=8U<eveohqJ(&M(<9Kvx77#7sGpT>K_dQIZ21NR>ls=`caxm zJv4fr_hT?UE;=p@h%(o0lMlu*D;IS1495o*v(Ldzt%pvwnh5-Z$v$HXM3}RM3H8Ee z5B{W>95QzM$3NHtfwtJZ!H!x?eLx8S-~G#!h9&XqPby@Y^io>><>E z&ewAj2wsXoHi6Po{Eu|=CLIxK@V zZ8q-^ycS(ja0q4HQq2<*hu?S54wU4-_r$VIyeJV9iOdAoh3~~kbEwjZNN1Uj0$KAZ z=>=M32U1*F%a`yEa9&>#Q%_|Ym@ym`V6Kaw4*BnPi0cynXen+npHBEIyKD#1LurF?|gKYqhKvZ}Dy3=Uvlxu@CTG}CkWp+%?|P7Mt~ov2miMvzgY(z z_KSs60JOnpN420zkz+>vnn_gN z6y;2jlf@zYc)`Q7=QI>y%_k^Oqc0scu(*H;l3G3{NIgxE zP=@UBkz*+n`v&g%#Ief|6GgpAgE4qzH5vO6x+W3>fb&;RM=z_(`Up0W+3Ix~-k`yR zWhHSXmTdnJ-MkrnUiyM{-ReMG1?dHW0IDBVFYq2pOb6_K^}f)z4hp@ncwfq(1j|_P z;@k?n+Tmq1Ru-Ggkr(t2qkQ0a{z@5vvZB=P*Ef_j)>;XKP>CCQSY0$;DYulsuIgey zQYeGtrm^PPB=oU$6TLFv!YKplqBz2ZIV%Bld`+bB&NxQFxFg_1qYtb-2@N+T@Ff*kj(eUBtXOf<06Mb(H)~B7X)t4${q+Ga|G?(UsP4_ zOz@;oFQqnFp%S{DRu9QTdW>W)kkt;<032ZVGt>;8Ts(!wg%<#g2fI_KU09LzJ7|1z zT%o%UZx}QI)E=x{r~^{j<^+~#K!46)GlM0T`h3n7bFY1vXQtvsiuGtMO<5?BsTcfJ zp@nIW&?r->rK(Ij?kcXxQ>JYYm!(u<-fKN0^EA4DE0IhMPx7s)@CP-$RD{78bTCF! zC0})U_Q{9;-4sneJ$wrq`vo5_!ZIusea8Oy58=fqDch1mlE$Lw^7fkjLf& z?PWa%{f;~^&##+zfO}aVArgCwmYuz)_j`{|1|Qk!Z$IIzOv}P#6;22@l}1#yzA5vp zYTZm#7FL>i)y^`*g)|AGF;;}-`BVpZplP0>i9z&Al}K)bqa)I}+O999j)sKu{lT3y z(>My&vOk{X@&7D6v%Rdel#y4)nT|#lOEzOB_L@yV+TN94$yl_WDuir3lA~c!T}jQ! zVxir!0hLVSPuMeO$bh-*F2e5~(pM-CTms{a9kZ{4z(RA3&?JZktna`6_6q?0WM&t0 zpJ1-ywdA}Va=tFaHYa(+`DPpE-H9du+e&U#M literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_main.cpython-34.pyc b/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_main.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..aff7befe7555b6245e7157c7e81834ce5f0be4ca GIT binary patch literal 1465 zcmb7EJ#y1P6n?8e%ZfAcBmo2A0x6IV0E9paI#V#i3@Q*pS|u`)*6hkK@z_Fa!DoL32j z(X)ob#BqQ_{lp2wmIf>sU^A(AHheSS{?gPcv{_K2S*IT@Oc-J6QEI`70ZSWdbhF8m zLk;5TrAn zyS^W!ycEHyhj`|eFRH9zGXHaScDB3LxLIECDlU1mkym*gCB;nPF+_RVSYpa6N$m*l zB$CH9zjBO?ofJZGX_3odDn-JTiYTG9Q6(MHdzTrpoTYe?HEt@BS;?!qv8Hi-)L66u zNzD&EL7d5}>8uX7ZlF%MQ{<|SMAq3$UL9(dsc`c;p~B%sKnqQUYuYQ)?D+w56YKtc zAH|0*^GDO;`bbo*5PTq>x6M7cByvEs8jG5% zKw}|-`P1WOxN6V}{1EGEo`T^xTdZ&Hunjg~o;kvq{@2Y7Hh*xzQvYg#F_PGgB5Ga~ zHC_~zBApeq9z@ZnSzNRhxs8Q1%FeV!x*kp&v@HeQJ}hK}vE6pS5bO z@rhG@2ey9!8yR-1TVN&R<0v}}8Pn3Xu?{oBt0_fUPa>xVZ)EUZlHj5A%dPvR;$>BGC-|KhZ|K*=~U4Z}KS~F39jG}I1 z_e%s2G5A~euMO}~G2nD;hPZfW25OH{)P3v(fX@K^e1lxk9KC%LBK$0^TM*e8!>Nyd zON)%Z%4EdDEPW}YO0qPh15j(BSSU|W)N|}g14;l6u=y2A20uOj87dQA08|!iPM|bl zPP2ERvdM6c<~F=$P&rUqFgKxeXvkLgV1^TD&l#*nFvDY>j*Y8-y6&zm5>>ca?1qcA zD)3kj_L_SUycF(XIg=t5Qly0<>tdS=S6?YSEF41OloTq@(nzGCa3_WCrs|`Q`>49#q_7}M5!X(T=OT^9t=dvz z5&O5V1ro91`>RQMJRhCWX+P-?Q}L>a)7-A^e%#3)e7g8A$To)fz`Y<=-cosMFZSX< zZi8s?!-#u%2u=~>F)4es_R2`_gP%XALJV{!9dSeZvekpd4%=Rn$~Rc zmJ;|Da|R#S$?s3GhKG5kk^<|Nt3o20wXO0+Qq*RW7Md+-qjfz>6pw@o5y>DWpvOb$ z;DV&b^al!Si0XoCXa9)CJY6r(h4j1nMVp0NF_uix(6L({ErJ^}Eww%`q!7ME73TLe zP~?M6BzjdrH|LIhE5Q32K#>3%mWE`;PXqxo*S4jq~Pl#Wrb@#KBep0;Cu}!q6!BTKucR62X(Rx98kMq?!STrk= rDAuRBc0#H}sgFsoL@8Eu-X81qCCyC7O#gn)rEWiJcKT8Kp*8#uarTl@ literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_word_correspondence.cpython-34.pyc b/udapi/block/demo/Coreference/OntoNotes/__pycache__/onto_word_correspondence.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e897382537593f5274623bca77e76b73249802a GIT binary patch literal 2284 zcmaJ?&2QX96n|sydOxz+Z1d4}DIabxbWzD3g9<_w4MmkuKq^wGB`}UXZoTo^8;_SJ zk$o!s5Bvp{xK`ZZ@34A7oN|GCFYtTg%{D>>@6MYy@AEg$<2QfyR=a=Aore!E5&c0I z9uxc>40Q$Mvw$cN^n<2P4RXL3^k8KAP%a+>+#L*c6GRd@g5c*E>dap+|yUN9N! z9PiIg^2cdXFUALP>K~2+IZelR(@cgk<8q9-PJ3xC)mUSAO~tlnCso@8x+r(u7E&tC zOU;hx7^m0S|8;fVKKJkiTjSxE-o?-bzm6?DA}WQZ1|6Sp%_sN^+WqE`N|TNcs4!__ zV7*UegNg=COe&jn{Hf*}P~4`{qQas{lggH6EGpYnG^uD&Xi(YV*E)d;4CEGtCOs7- zjy|FNqY=iC_JdU&bto7?8&UhB?D9J=x^!q!_8T8CJ{pM88AV@bhX@;BgB2PsP$VzduH2xYN986RKc`}YicOvJ%s_N3uW&JzKp-6~ zrAsi7YA|d*EVmYb>eb~XsLM-GzbvBcln8d20Q^fX<<`H!zgS?{L2aPLR<#}Q@Eu#qjX# zgJ>fCJW3(*6w-q6)9K91qT~@rhW}J8fu8XPf7<$7_pRGsRibJr`%*dJ&>8x(k6&>jo*cvh8M0RR8V(M zbq*`SHFdmzwcuajU1Vb@m58cl98II#>DLBI`Z|=es`H&M^(|2oZr;^aeK;;);Co;l zDwTtfWeLmN5ChTCqa%9aM#BQ%gJe}~>3L1SN|=y#L7QSz+`w&c6}q=z%fEM_=|cXt z$*T`VAHPjVEYVobeQ^zvzHz$!pSQ?s!S0Qkd?O{^RJv}}b=_$i%wy(zu6s21;#!ln uv7PJ&6TY!75H3W<$CTxYPfJhqR string + """ removing spaces before punctuation """ + if ( len( string) < 2 ): + return string + new_string = "" + char_a = string[0] + for char_b in string[1:]: + if not ( char_a == ' ' and char_b in ".,?!:;'-\"" ): + new_string += char_a + char_a = char_b + new_string += string[-1] + return new_string + + +name = "a2e_0000" +#name = "ann_0001" +#name = "ectb_1003" +#name = "abc_0001" + +input_file_name = "/afs/ms.mff.cuni.cz/u/f/faryadj/udapi-python/demo/" + name + ".onf" +output_file_name = "/afs/ms.mff.cuni.cz/u/f/faryadj/udapi-python/demo/" + name + ".txt" +a = Onto_converter( input_file_name, output_file_name) diff --git a/udapi/block/demo/Coreference/OntoNotes/onto_coreference_adder.py b/udapi/block/demo/Coreference/OntoNotes/onto_coreference_adder.py new file mode 100644 index 00000000..5f7ad629 --- /dev/null +++ b/udapi/block/demo/Coreference/OntoNotes/onto_coreference_adder.py @@ -0,0 +1,18 @@ +# Jan Faryad +# 2. 7. 2017 +# +# adding the coreference information into the CoNLL-U file + +class Onto_coreference_adder: + def __init__( self, list_of_clusters, init_cluster_id): + self.cluster_id = init_cluster_id + + # simlpe adding of the coreference information into the nodes + for cluster in list_of_clusters: + self.cluster_id += 1 + for node in cluster.coreferents: + if ( node != None ): + self.add_coreference( node) + + def add_coreference( self, node): + node.misc["Coref"] = str( self.cluster_id) diff --git a/udapi/block/demo/Coreference/OntoNotes/onto_coreference_getter.py b/udapi/block/demo/Coreference/OntoNotes/onto_coreference_getter.py new file mode 100644 index 00000000..85565e1c --- /dev/null +++ b/udapi/block/demo/Coreference/OntoNotes/onto_coreference_getter.py @@ -0,0 +1,65 @@ +# Jan Faryad +# 3. 7. 2017 +# +# extracting information about coreference from onf file + +class Onto_coreference_getter: + def __init__( self, onto_input): + """ onto input ... onf file """ + self.onto_input = onto_input + + def process_file( self): + """ + main method, calle from outside + reads the "Coreference chains" parts in the onf file, where + the coreference clusters for each section are enumerated + """ + list_of_clusters = [] + + active_chains = False # if we are in the the "Coreference chains" block which comes after each section (text, set of sentences) + active_cluster = False # if we are in one particular cluster + for line in self.onto_input: + if ( "Coreference chains" in line ): # beginning of the enumeration of clusters + active_chains = True + elif ( "Plain sentence" in line ): # new sentence -> end of the enumeration + active_chains = False + elif ( active_chains and "(IDENT)" in line ): # new cluster + active_cluster = True + cluster = Onto_cluster() + list_of_clusters.append( cluster) + elif ( active_chains and line == '\n' ): # end of the cluster + active_cluster = False + + elif ( active_cluster ): # coreferent in the cluster + processed = self.process_coref_line( line) + if ( processed != None ): + ( position_string, expression ) = processed # coreferenting expression (not only head, but the whole "subtree" + # position string: a.b-c, a = sentence number, b/c = first/last word number + coreferent = Onto_coreferent( position_string, expression) + cluster.add_coref( coreferent) + + return list_of_clusters + + def process_coref_line( self, line): # -> ( string, string ) + """ getting of the coreferenting expression and its position """ + line_list = line.split( ' ') + if ( len( line_list) < 17 ): + return None + position = line_list[15] # position string begins at this position and doesn't have spaces + if ( position == "" ): + return None + if ( len( line) < 26 ): + return None + expression = line[26:-1] # expression begins at this position and does have spaces + return ( position, expression ) + +class Onto_coreferent: + def __init__( self, position_string, form): + self.position_string = position_string # string + self.form = form # string, the coreferenting word +class Onto_cluster: + def __init__( self): + self.coreferents = [] # Onto_coreferents, but later (after conversion) Nodes + def add_coref( self, coref): + self.coreferents.append( coref) + diff --git a/udapi/block/demo/Coreference/OntoNotes/onto_main.py b/udapi/block/demo/Coreference/OntoNotes/onto_main.py new file mode 100644 index 00000000..360826f7 --- /dev/null +++ b/udapi/block/demo/Coreference/OntoNotes/onto_main.py @@ -0,0 +1,44 @@ +# Jan Faryad +# 29. 6. 2017 +# +# main class for processing OntoNotes files +# to be repaired: +# path and file name won't be written in the code, will be extracted from document - changes in udapi needed + +from udapi.core.block import Block +from udapi.block.demo.Coreference.OntoNotes.onto_word_correspondence import Onto_word_correspondence +from udapi.block.demo.Coreference.OntoNotes.onto_coreference_getter import Onto_coreference_getter +from udapi.block.demo.Coreference.OntoNotes.onto_word_conversion import Onto_word_conversion +from udapi.block.demo.Coreference.OntoNotes.onto_coreference_adder import Onto_coreference_adder + + +class Onto_main( Block): + def process_document( self, document): + + path = "../demo/" # the actual folder is udapi-python/udapi + + # name of the file + #name = "ectb_1003" # + #name = "ann_0001" # arabic + #name = "a2e_0000" + name = document.filename[:-10] # .in.conllu + init_cluster_id = document.init_cluster_id + + # building a matching between words in OntoNotes and CoNLL-U files + onto_input = open( path+"../demo/" + name + ".onf", 'r') + word_correspondence = Onto_word_correspondence( onto_input, document) + list_of_corresponding_words = word_correspondence.create_correspondence() + onto_input.close() + + # extracting information about coreference from onf file + onto_input = open( path + name + ".onf", 'r') + coreference_getter = Onto_coreference_getter( onto_input) + list_of_clusters = coreference_getter.process_file() + onto_input.close() + + # conversion of the onto IDs to udapi nodes + Onto_word_conversion( list_of_clusters, list_of_corresponding_words) # void, conversion is made internally in the clusters (nodes are put into them) + + # adding the coreference information into the CoNLL-U file + coref_adder = Onto_coreference_adder( list_of_clusters, init_cluster_id) # void, changes are made in the nodes (which are in the clusters) + return coref_adder.cluster_id diff --git a/udapi/block/demo/Coreference/OntoNotes/onto_word_conversion.py b/udapi/block/demo/Coreference/OntoNotes/onto_word_conversion.py new file mode 100644 index 00000000..120552f0 --- /dev/null +++ b/udapi/block/demo/Coreference/OntoNotes/onto_word_conversion.py @@ -0,0 +1,68 @@ +# Jan Faryad +# 2. 7. 2017 +# +# conversion of the onto IDs to udapi nodes + +class Onto_word_conversion: + def __init__( self, list_of_corefs_clusters, list_of_corresponding_words): + """ + list of clusters, cluster have list of coreferents of type Onto_coreferent + correspondence ... pairs ( onto id, node ) + """ + self.list_of_corresponding_words = list_of_corresponding_words + for coref_cluster in list_of_corefs_clusters: + new_coreferents = [] # will be filled with Nodes instead of onto ids + for coreferent in coref_cluster.coreferents: + new_coreferent = self.convert_coref( coreferent) # udapi node + new_coreferents.append( new_coreferent) + coref_cluster.coreferents = new_coreferents + + def convert_coref( self, coreferent): # -> udapi node + try: + sentence_split = coreferent.position_string.split( '.') # a.b-c, a - sentence number, b/c - first/last word number + sent_number = int( sentence_split[0]) + word_split = sentence_split[1].split( '-') + first_word_number = int( word_split[0]) + last_word_number = int( word_split[1]) + except: + return None + + subtree = [] # the whole expression (interval of Nodes) + for pair in self.list_of_corresponding_words: + ( onto_sent_id, onto_word_id ) = pair[0] + if ( onto_sent_id == sent_number and onto_word_id >= first_word_number and onto_word_id <= last_word_number ): + subtree.append( pair[1]) # corresponding conll node + + #subtree_form = "" + #for i in subtree: + # subtree_form += " " + i.form + + # we have to chose the head of the interval - this will be the only corefering word + subtree_head = None + for node in subtree: # finding the head of the interval + head = True + for other_node in subtree: + if ( node.is_descendant_of( other_node) ): # head musn't be descendant of another node from the interval + head = False + break + if ( head ): + subtree_head = node + break + + #print( subtree_form) + #print( subtree_head.form) + #print("") + return subtree_head + + + + + + + + + + + + + diff --git a/udapi/block/demo/Coreference/OntoNotes/onto_word_correspondence.py b/udapi/block/demo/Coreference/OntoNotes/onto_word_correspondence.py new file mode 100644 index 00000000..80a66ab5 --- /dev/null +++ b/udapi/block/demo/Coreference/OntoNotes/onto_word_correspondence.py @@ -0,0 +1,93 @@ +# Jan Faryad +# 29. 6. 2017 +# +# building a matching between words in OntoNotes and CoNLL-U files + +class Onto_word_correspondence: + def __init__( self, onto_input, conll_doc): + """ + onto input ... onf file + conll doc ... Document, see udapi + """ + self.onto_input = onto_input + self.conll_doc = conll_doc + + self.are_leaves = False # we are readig information about individual words called Leaves + # (there are also other blocks of information in the onf file) + + def create_correspondence( self): + """ + main method, called from outside + it creates two lists of words (for conll file and for onf file) and then builds a bijection based on comparing of forms + """ + # creating two lists + conll_words = [] + onto_words = [] + + # conll + for bundle in self.conll_doc.bundles: # iterating through nodes + for root in bundle.trees: + sent_ID = root.sent_id + for node in root.descendants: + word_ID = node.ord + form = node.form + conll_ID = ( sent_ID, word_ID ) + conll_words.append( ( conll_ID, form, node )) # nodes will be elemements of the bijection (not IDs) + # it's simplier as we will add the coreference information to the nodes + + # onf (ontonotes) + sent_ID = -1 # numbering from 0 + for onto_line in self.onto_input: + if ( "Leaves:" in onto_line ): # beginning of the "Leaves" section + self.are_leaves = True + sent_ID += 1 + elif ( self.are_leaves and onto_line == "\n" ): # end of the "Leaves" section + self.are_leaves = False + elif ( self.are_leaves ): # line in the "Leaves" section + split_line = onto_line.split( ' ') + word_ID = None + form = None + try: + word_ID = int( split_line[4]) # id begins in fifth column + was_number = True + except: + pass # word id remains None + form = split_line[-1][:-1] # last field, except newline + if ( len( form) == 0 or form[0] == '*' ): # auxiliary token + form = None + + if ( word_ID != None and form != None ): + onto_ID = ( sent_ID, word_ID ) + onto_words.append( ( onto_ID, form )) + + # building a matching + # we match onto ids with Nodes + list_of_corresponding_words = [] + conll_index = 0 + onto_index = 0 + while ( conll_index < len( conll_words) and onto_index < len( onto_words) ): + conll_word = conll_words[ conll_index ] + onto_word = onto_words[ onto_index ] + if ( conll_word[1] == onto_word[1] ): # comparing forms + list_of_corresponding_words.append( ( onto_word[0], conll_word[2] )) # onto_ID, conll node + else: # if the forms differ we search forward the next form in both lists. + # we take whichever has the same form with one of the actual words + i = 1 + limit = 12 # chosen experimentally + while ( i < limit and conll_index + i < len( conll_words) and onto_index + i < len( onto_words) ): + conll_sec_word = conll_words[ conll_index + i ] + onto_sec_word = onto_words[ onto_index + i ] + if ( conll_word[1] == onto_sec_word[1] ): # we jump over a piece of the onto list + onto_index += i + onto_word = onto_sec_word + break + if ( conll_sec_word[1] == onto_word[1] ): # we jump over a piece of the conll list + conll_index += i + conll_word = conll_sec_word + break + i += 1 + list_of_corresponding_words.append( ( onto_word[0], conll_word[2] )) # onto_ID, conll node + conll_index += 1 + onto_index += 1 + + return list_of_corresponding_words diff --git a/udapi/block/demo/Coreference/Other/__pycache__/auxiliaries.cpython-34.pyc b/udapi/block/demo/Coreference/Other/__pycache__/auxiliaries.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..320177fbefded997cfc772667c2f3f8c351b25ff GIT binary patch literal 1172 zcmZWo&2AG(5U!pXJH$ADWC=v#Fx;3!7-^*y7le=!kRl?lv|bdjgsjO-Pu$74$8@(9 z8zmQ(J*>ow@Je&#l*>LqPWx3SS*+c5cTH7Sb^U(+ySvhJMggLJ^4)eP>wgiELi;!PmL^SKuInmySH+0dW zb8JDU0hwRuJfbc>2mq^(n_d@q-5b^!(2)AfK^L<68Jxlp`w-dmlh&tsC&n_;O^vp3 z7Tf8Obw=sq_(-}lDRt~dGA@;|F0Nz=qQ=U_`6x44?xcw`T`ZUwbv*jN%@aAxt7*Yr z;ccAwm<_%Dz4wihcGJF&IOuSIp${;)>pk5HN+Z;b)vB_?1-Xeh7sC_qm1xf|8`T1bzoIzLSdIj+;)+Q?EGsdJhBiVRJfO=qf7nNiX{ zoy?oHW9b%y3ZBzF5Q^HOEmp*)SQht01m5s0b54gBfZ~rI>^=lXJWPyt`wxsbpxMt} z1|o?53}}1rL(G#u4|vSaU;vKagamt*KR%{I-1U>NcgYbhIhRBDBoT_!w8mykxrWo$;4X=ULEZxY>N~N^4Lst)LVBf66|Dbbgyubh7 z)^?rAv@L5hhO;dgTP7qz(M3-~u?D29 string + """ + returns a substring between the first left limit character and the first right limit character (excluding them) + """ + interstring = "" + is_interstring = False + for char in string: + if ( char == left_limit and not is_interstring ): + is_interstring = True + elif ( char == right_limit and is_interstring ): + return interstring + elif ( is_interstring ): + interstring += char + +def join_with_separator( list, separator): # -> string + string = str( list[0]) + for i in list[1:]: + string += separator + string += str( i) + return string + +def transform_ID( word_ID_string): + try: + word_ID = int( word_ID_string) + lines_to_omit = 0 + except: + split = word_ID_string.split('-') + if ( len( split) > 1 ): + word_ID = int( split[0]) + word_ID_II = int( split[1]) + lines_to_omit = word_ID_II - word_ID + 1 + else: + raise Exception( "Error in CoNLL-U!") + return ( word_ID, lines_to_omit ) \ No newline at end of file diff --git a/udapi/block/demo/Coreference/Other/predictor.py b/udapi/block/demo/Coreference/Other/predictor.py new file mode 100644 index 00000000..3f55c9f8 --- /dev/null +++ b/udapi/block/demo/Coreference/Other/predictor.py @@ -0,0 +1,67 @@ +# Jan Faryad +# 23. 6. 2017 + +from sklearn.neighbors import KNeighborsClassifier +import os +import joblib +import sys + +class Predictor: + def predict( self, model_name): + #( feature_vectors, spam, id_vectors ) = self.read_input() + ( feature_vectors, id_vectors ) = self.read_input() + predictor = joblib.load( model_name) + results = list( predictor.predict( feature_vectors)) + #print( len( [a for a in results if a == True ])) + #self.process_results( id_vectors, spam, results) + self.process_results( id_vectors, results) + + def read_input( self): + feature_vectors = [] + id_vectors = [] + target_vector = [] + for line in sys.stdin: + fields = line.split( '\t') + + feature_vector = [] + for field in fields[:-6]: # features + feature_vector.append( self.string_to_bool( field)) + feature_vectors.append( feature_vector) + + #spam = fields[-6:-4] + + id_vector = [] + for field in fields[-4:]: # ids + id_vector.append( int( field)) + id_vectors.append( id_vector) + + #return ( feature_vectors, spam, id_vectors ) + return ( feature_vectors, id_vectors ) + + def string_to_bool( self, string): + if ( string == "True"): + return True + return False + + #def process_results( self, id_vectors, spam, results): + def process_results( self, id_vectors, results): + if ( len( id_vectors) != len( results) ): + return + for i in range( len( results)): + id_vector = id_vectors[i] + result = results[i] + #pronoun_id = ( id_vector[0], id_vector[1] ) + #antecedent_id = ( id_vector[2], id_vector[3] ) + if ( result ): + for id in id_vector: + print( id, end='\t') + #print( spam, str( result)) + print( str( result)) + +if ( len( sys.argv) == 2 ): + p = Predictor() + p.predict( sys.argv[1]) + + + + diff --git a/udapi/block/demo/Coreference/Other/trainer.py b/udapi/block/demo/Coreference/Other/trainer.py new file mode 100644 index 00000000..6c23c58f --- /dev/null +++ b/udapi/block/demo/Coreference/Other/trainer.py @@ -0,0 +1,41 @@ +# Jan Faryad +# 4. 7. 2017 + +from sklearn.neighbors import KNeighborsClassifier +import os +import joblib +import sys + +class Trainer: + def train( self, model_name): + ( feature_vectors, target_vector ) = self.read_input() + knn = KNeighborsClassifier() + knn.fit( feature_vectors, target_vector ) + joblib.dump(knn, model_name) + #mvv = joblib.load( model_name) + #results = list( knn.predict( feature_vectors)) + #print(len([a for a in range(len(results)) if (results[a] == True and target_vector[a] == True ) ] ) ) + #print( results[:10] == target_vector[:10] ) + + def read_input( self): + feature_vectors = [] + target_vector = [] + for line in sys.stdin: + fields = line.split( '\t') + feature_vector = [] + for field in fields[:-7]: + feature_vector.append( self.string_to_bool( field)) + feature_vectors.append( feature_vector) + target_vector.append( self.string_to_bool( fields[-7])) + return ( feature_vectors, target_vector ) + + def string_to_bool( self, string): + if ( string == "True"): + return True + return False + + +if ( len( sys.argv) == 2 ): + t = Trainer() + t.train( sys.argv[1]) + diff --git a/udapi/block/demo/Coreference/PDT/__pycache__/pdt_add_coreference.cpython-34.pyc b/udapi/block/demo/Coreference/PDT/__pycache__/pdt_add_coreference.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8ec6458d239c6df09eea65abb477befc2ed1434 GIT binary patch literal 2898 zcma)8&u<$=6rTOz*m0b=G$o}{S}j6=Tv7WN4h0n@fGQ-nh>DhoYPH=NH|y^1I5X?i zwVGbajT?UfSN;(GiMev>g)0&#zBglUlgO1=duHFxulMGC-+MEEcQ)If{Q2Ogf3_I= zi=BA_$ahfmEmRzTkL8RN9y|0{;j=@ZdEauM@qqn;&Vao}Tflh8e&{vcU<&K`W_v8N zGJc*_N3j-@L?x9}rc8Q-!p26SQRC9{41;6a>l9;Z@?kx-&cMH)gs zJ@h6&?4#%rs+S&n$yf}*w*o!`D_9$;3!iq(IAGW48%DZ04H`FgeGPW)XScwboeeA9 zAehKtmOoS;wDs1_R-Wl9mLq4LHdmJ4T9g&p3Lk2-p2{-MV=hy(VfPVdB^NWZout(? z$=&2w3G{KZRZn$;ngk4%F-_{Q!gGv+&UBY|UoA0i`t-qX>lK1E#0Lgd@;BOFSzgie95(ke@*{R276+t%k z*}>zComyA`-fO6w{YW^EL-c&dPJwK|#umod!ZvQwD7D9CH|?VC^OcobH2Ag0JOX{) zu6F#0Jv`oH_&+?pjpQFSDuQgWfAq~sA;Q7M_{=>05uew3w0ksQ&OB05S=M3i7eP5Q{u zBZ2|63h}H~GVHZ2@}~J@TJl_I)2NidYqJ!y3bF0DXf~iZ6(vu~N}B*AQk(F(*-2#q zl8FTmCsJosCQH-35O=0+m$OFoLWPXP%$n0^LM3HoLfV{VpR0%(rZZ786LV~4VgKFr&@TMAQz>J)OCFJ zJnO#;zEaoF^)ZU3DJCiF>`JOiWlyG+ zFoCX=B43zxnol(Xg_2uXWIA22OYNffuxkky*AovHIrJpSrx(elKEMpxxu$f;!j5;@ zn}4**eHXZWj#`A9r53H`e29|)iH@8^1hJ<;Fg$GRQ-B_}50sp^{q=mer6xzyMDTau z9AV)-6lW#^AoS;-t}=6lszp8h7CP_z` z&CW~aFY_d&110oCmRv8>MBV2Sx^pBQ+Y#Ni&LxmD!Bs0AeuD_0(D;82y^4`vqiDi_ zg!Dyj#<6~S>T#tGW3e_jrn4;15|s(9hy#lFZ&z5Q*0gTBZG1`TRMUhV|36gIt?2*& literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/PDT/__pycache__/pdt_clusterization.cpython-34.pyc b/udapi/block/demo/Coreference/PDT/__pycache__/pdt_clusterization.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d523fd88614f8bfa0694c15a2258c2cadb5d40de GIT binary patch literal 2352 zcmaJ?-)|d55S}}qf5f>YB`pm}OM87N!WGFOkf?+Z3Q7>Fge;^WMOZ4Qt9RX;Yu~xM zXOdXS3+12Tfp`9vlX&7OFZ=;K@y(p={HW<#yPln!*_oa1ySab-mFCvRKmYVuljv`{ zGAfXFG3^s9-zg&H&~LK7ajC;9msCYm6=Ib`%A8=26y*x|z{ETil)R%P3Jk9u2fDn$xIJ zqTuCOJ?I&ZR;(pylFxF&)8EO|q5tzaF0{aMyFjJ;-cY5%@3Ylc4u^2G@?jCMjXc0u#mHa-{jug#o3wJb{)3E zXkfCBRLO((tl7O@6sEG&QUUf?v+bsBBsEeL@zdgbhESurZdTd z1V2 zyhM!&UOl3=};q^hLQj0#0V7!^I+FP2k%JXf!jYGty~NGrpvEow33R28-C zI28x}pIQ_(o0(jzVs&rINTYFtYBfw%e9P@6L7(k+?vycRlr1ef>wM}B-NsG2m$tU3 z3hz6s*X@Pc<-$ZNwz^sRi#DL?QJkbU%ClJj>*Kk-kA=Kj&bs5fzPs(-#=PUMyEW&Q z<2&y;lkEkZ{r@w&Tyq{=HNL&D_!|f(Ukc>R;_#BQOhVxo{y?rCXy_0V8H9ieEIVKx zp#dGVYLj2*FekkrKT2#cy?k&S+aMko9jnt|Y_<9%FghQb)CNgzgLFK6q0LT^*nWg*85*woBh+~EctM5VX6w8^Fts_VRQ4_eyjUK(1Df|!7rnIX z6$dT1EomY*4@UT7IBsUN23?40*@m1oXYyb{Hdo$`YiV#Qk_O*%78gzXT_KCrmwMhb z(TzWcs}bU`L)(tZyNJ z<-ltbHDko&vnw0v>(XZNMEbLIT5ROaz7e! ksO(&!FE9mt-;s*7kqpBjn?+z1jju|`zZS%}sJB1;4<5`13IG5A literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/PDT/__pycache__/pdt_get_coreference.cpython-34.pyc b/udapi/block/demo/Coreference/PDT/__pycache__/pdt_get_coreference.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b01a012bef6a1802f0c0a917af15f82b8fef590 GIT binary patch literal 6208 zcmaJ_O>-kh8Sarrk|oP)$Bs9<WAyi^MOjU?UO3Z3T-r1FA zv^^u%R_#`**j%`Apo#-jQN@8OpbCBke`2nj_QHV!RqO?x=k1x6>^O|wt^V$}-;d{g zyZ_lyiwttDvb4I;}_8MRlBf^(f5xQJjT3 z&2$tWp~-zGo{k6XFTV;3*OAg+BMTKt0!4=v5(&CM28gmGff!2*NU#(f%HBas#)GV7 z6||+iq=FR{T##~81*7tUE=m~_pTc=AJ7Nf>l0xtoTgp{`-?KPlb9&*Pu;{9)P~ zr@d)!*c zq4W=_11#5-{cm^+=$eeaBi(h5zF#4a z9sFR`7+ayqRYO$K4F)&VZJ0eo)=eztf6MS^q~? zYqEO3E@E9$_hGhmb*HNIro+8j>h>}lN%GxICw_*OU(7cn+Qk7KQhJ)YyT61+G@uSk z{uY$a3VEWFL71jt>iHg}=s`KCC0RJg5*XWf>}L_Q#G@v>;f=y9^@=&(;8rvWfCHWm z2UDF!KMzMIc40pbyg?FYIvJ&2G?YbUg91KM?_QMM^87f#c3SrC+R15_Ois_j7KskL zFb-00E6seJd6OY&4)4j_ZFYIda88t1wQZ&bb?o{&%%(a{g(zz3ws#Li;M6$z;AAig zJyHN%+4i!N3C}+|v4aia@7>^Ta{}zzwlItU`5u?|-oSbUe{aXs<>=f@IP%^NJ13n^ zLe0iL)(5+Rgx(gs$4{?)(!pf2DJKF8!x(*uHbjpS$S}it@lFAW5K|b06mFtB6zjlG zdBP|)yW-dPvK?-=?ak*TaWai9J*DZ-TD!ec+;d!5-W6f?sVB3tl7+|F{;auM4)3hw zEivLK9wuqt+~?`Q)i7T=z!B(1@-2N1Wp6+09?8JphEluaG9_H(FzbOgX0hgJm}PCzp+vV_l+$eF1ZO~gkn?2 z%vq^w#_bw6!JbG=ZD9;)v&%)0oKg2~w`;7VlqBr2d(?&6jpE?-SFXN%ZRh1zzrHiM znqIwXr$2Uf9??(c&LnrzNB_mwsphqGGKw-y$C+1Q5pYG~X_|I7I2}LD@=6q(mBJ<_ z?INXgQL459j?Z2?&)J++L+f*@m}l8dfdXD#@EcqQi{THB9Q9fS;SL0F(5cJ@_B2pf z8om!UMjEy(oGZ=E7@uj2h^%7O9WP4?w1G)O7#N-ajKpqJyYha=(F{F0)k2?(RiUT) zS+t+!!X>o5gOrko%AGxb9tRfe%jy~r&$Ne>zKra+Bko118=pLiC+N^ywLwFzd!A zmqaksQn^AH{Y0$zfkcMVikMuq76Xiseq>n^#RFhA!vY%l92QCjLMSFqID*%Y7a*bt zH0?sdR!s))!-%V+FxCw+wWj^}C@fT0duYLx&j`C9&t< zMA!`L7VVWVnyNc@{dTg^T#OVPfIdS13zXbSr#FjYp{Mit5<_8EVuOnk*#M4&TeGfW zF>1Of95Dhm4UbHlhH=*=0)j$84S8?=N^u)J;Qh-qy)I2aK3>C2)BDoossmmfYa-2$ zt#R>mM{zWR;1=&Q;&H_H(AscekdWHjD*QvogTM2=5|z$)o)5! zov3&sfs9;z(kQt+{mX*d0~aM@;TF0e8{Br z)eUyNh>4GA>W`>|kGS}Lr=h=vU%kuhO=hn%6PTlo=r@?n4Ps6|E$Vkj@@z*i;-74E ziem0}ox`~MxfFxk&u|7j#sV-pHT?<(&aQ}hgrjiG>v`eM%g0K=N)x~j=qvg0mwSnA z(Uf5*2uI+C>1yQV6yU@Ha$pw;q80id8`$J+%G~Gw!9| zX2z}sE{TAtD}O{P-!<{7iFeJX_de$~?6c-RRzEF`ywUFm$)Mjins=TY$gV$d8_Kg? zg$&pN!RB3gqwUHAPM6QJ-G#lof_+_odK`@+Uq@jouI|ufK%}W4qJ2hlxZ=X`tPcjssKn{W0X|7JVu-2d(2I?>;>G+gLU z@tAuMKgL9{pbu8QcW3~`p@XhF#NuK&(4OKkEELf|5c~!XyTTma1D9g_J*#^ZHz;me z9m*QTEvq*vUPtV9wfVgFB7D{hheiHYX_FTDkaxv{-<)nAkNE=PouGF_A<+mr6nr{X zL3Tnk(eJv|W|o>VED}W2DluW2SGWH+RZPpOvoxobnG|`P<|FLHAckjDmT1ncJ%~R@ zH}U%S*C0wvFgC$7NP;BN=TUqVOyg*h?o7_hH$`551czBMJPu+tE`ojDgwiS>ssJYq zCUF_2@zQB`C+Afw#4gh^3^|KoL1G=h+4ePXb}vnbg3T~^myDD}=@%$xKQSgpM7`I0 zbYUSof)sS*(0i+d7Pa}LdpYS^H;*l0CQjP)lH)WO*x6oN&c`@Pb9q%QIaWA%{74R? zEK{*ebTO6y*rc&q_;i~V%T^Kmi@>>d}mCt%mm%x%`AxG(3l}nretGf%&{zvSOJ~Ah|!g99jTBHW+=q*!faJv#|4U&b6 zkc-?N`dj~7FI_~VR1;#Ze0i-N-l$)f`W6+W-blKsu<|CJ>e51GvCeu># zMRQfD+Qi6HTnZBYc*QarGQ(}?+I6DUj$M@bbbP3^M9<;sKxU=PBbgVc@-)pdd8ni* zbh#>o-2umEU;Zf7S-Ch&U*AHRx(&^}p}9*cH&eN7vZ{gejnte$`X*a!viP*mw2!$j z@tE5X)OY~)Y>8XWebEuSqUFrKxz3^$eckV_@dcPiV-)@}QnQUp4 zoC=74g+B>jIqiibNL5YfKe*OK^-$wv{z}98s`VkKK z3r-Ag19E`EfY1PgWD{}|3JXH3l`Y6^C>#i#R<5MC~@RW-i^*vIb9HX{;!G+AK5`FKJGRc=xagnWJ)oOKynCaYI zhJ-5UE)y4zaLBiD;#j9aoeE8A7WRiKw}4q#x!v?1GZhtaRwfih*A$11;|PcR3nz@) zn6Nfrfor^b@Usbr8%wLuW`jaA-WD8S)&pk4l?fXM6uLO%MPd)uJy@U#;9C@3*!0P| za7bfpWpHjY3_xMj0Iu*QLs$=C;ga)aM9MA@v!ILyOzOefg9Qel(-;)SjA7kYvj^)v zSd2OodZGzq^`>qnu%5tTtV_bSR*V^=jVg@tk9!$j~{@f|EQPLfxW3+i<^Ko1sCHsO#wYH^?t z5>oU?^Jb?>&T+S7q^j<1Qn=*c)uKwclsZc|d{xSP+SrokY13y_vMhM18oQ3wd1F)M z!qe}o5e64gR@O@u?*9*R!^1q2Dyq`0ugJH$OA5Z1F?@^@z2vBPGwL?zerO*S(cfftb%2b z25BrVW3~vEEUvS6>q~WBm8}pwBg(eBeDsQu0WvS34swv=vd*45O&1*fOWJ7e&vPao$?Q zLwu9|%B|@E>H0X)9!esxXJ|Pwa7`EK2pvZ_-fJA4B6RCm#0ZzrCG6;h1|Mo}5lmJls=DTEZiaiWP1FA^$znTZ(^hr|=yT zwA6p^PNA=nqdg0WMiowz3mi%tKN7QLTQ+vOfk LQ{(n$z476{e3BrP literal 0 HcmV?d00001 diff --git a/udapi/block/demo/Coreference/PDT/__pycache__/pdt_word_correspondence.cpython-34.pyc b/udapi/block/demo/Coreference/PDT/__pycache__/pdt_word_correspondence.cpython-34.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a431f0141dff24a7318aec4164ef20cc9a4b0d87 GIT binary patch literal 2369 zcmZ`*OK;mo5S}F|>S4-G?dDM+N!j!f2#6&FJtRntBtTpgxwr+~z=)85V91q2nIh%o zs&NGAP`Ky*g!bH9FS+;7U%_inx%AkBPyJ?TyK)*++~II%c4j&A&8+_R+O6o%@1H(y z6a7UCmks_QMzIbO;}(<>jRf@tiP)mPMc>3W#SZ-hp+kq5!fTDTJMLR7p^hk5cBKxI zOiNX0m1Miq#;xvyPrkajej{Rylgk405Tjrsi9Ns}9Ka_$!9H6)@zr zhIc7$!h5T{{N3jF!K+-wL6j>ci*cUCGK*xy-^3R`+36#U;vUFM(2OVmV;Kg1s~NKg z7TL55DH!L3fop<0YfA}O=(y$5IM%@{eD8Ro%Vv~kX&S_NRMy9#3WLX+WxbG@X6BYo$m?#Z%5f6&aPp^f)9Gi8F(15h!?ZolA#{WYBaEE-sD$j*rr*X zW=$Gcv@7V26|{L{J4UvAX5FcVnRbRA;~Wb-+W(Yx_SeiJwg+F!Y;U{cOz*Y)<7*Tq znLm=qZ+y#-!Zek!KT!F|&nLP_VtJx>y1+p6EoWn^vtj^L)?ZArIF&_N(@Ns86w4x# zSsZ4%C|5?4R41l{biOCE(oR8YJW-T3Xz2`cH7eVgJkY@jg34v19K^{FNs;84a^X;M z-c^GMqo~tT42FI?%i%E4d6171UAon7N=N0nE*%z@b>si>rn-a$rORGWJ2m5@->B*f zQm%uFFhI+Tk&>a73#G+KUxTRl41^q4tceTwd7>p;YsI=|;Jj*IvM!3N;<~sjrt9Yc z`@ObL+X@#Zw-$r)=U}+4ShQ!6y1=O2X4C`H4_UDJ{I0<>09&bSFwgqB$fpy%4AncS zQCFaS8>3hSA;%Mra77!5;PHW&esNyd&%)}ot8l!zBbs=>0mJ2jTW}R~d->J0akPs% zsoy!yh&xC0>#APS+!1aoFi)&Slh2;=S$3@UGwG_~pw-vt5QT0|hyPsIMghse(Ni}H z(1(s=N)}ddGI92QF(=bIyW3x-ow$WOE^STSjUG;l`_tM6pA{zT;9vPkd?aohiTg)l zqoj_dZsH>iIm6e?xllF${Fu|QP0q`uTZzJJTJuI(0r!vT!7Wplk)fD32#8^Ij0_Pr|g4DEtv2 z^)VC1i`m8kkjy5z&=pr2x0Qm4C%l$--CH)ZTOFt0HHTo=oO@k9_qq$`UiVwnh3bZr igCtEtmB>PIpwtZ}Z1;T*%f?2v string + if ( not self.actual_coref_record.dropped ): + return "Coref" # coreferent is represented in the surface layer + else: # ( self.actual_coref_record.dropped ): + return "Drop_coref" # coreferent is dropped + + def next_sentence( self): # void + """ + getting the next sentence ID + """ + ( self.para_ID, self.sent_ID ) = self.list_of_sentence_IDs[ self.sentence_index ] + self.sentence_index += 1 + self.word_ID = 0 + + def compare_coref_position( self): # -> bool + """ + controlling if the actual position corresponds to the position of the next word with coreference information + """ + if ( self.actual_coref_record == None ): # the last coreference record was already processed + return False + return ( self.actual_coref_record.para_ID == self.para_ID # returning the bool value + and self.actual_coref_record.sent_ID == self.sent_ID + and self.actual_coref_record.word_ID == self.word_ID + ) diff --git a/udapi/block/demo/Coreference/PDT/pdt_clusterization.py b/udapi/block/demo/Coreference/PDT/pdt_clusterization.py new file mode 100644 index 00000000..b66174d3 --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_clusterization.py @@ -0,0 +1,62 @@ +# Jan Faryad +# 23. 3. 2017 +# +# pdt module to conversion of the coreferennce information from chains to clusters + +class PDT_clusterization: + def __init__( self, list_of_corefs, init_cluster_id): + self.list_of_corefs = list_of_corefs + self.list_of_cluster_tuples = [] + self.cluster_id = init_cluster_id # id of coreference clusters + + def convert_chains_to_clusters( self): + """ + called from outside + """ + for record in self.list_of_corefs: + cluster_ID = self.find_coref_cluster( record.coref_ID) + if ( cluster_ID == None ): + # only for heads of the chains - their referents must be process seperately, as their don't have their own records + cluster_ID = self.new_cluster() + coref_cluster_record = ( + record.coref_ID[0], record.coref_ID[1], record.coref_ID[2], cluster_ID, record.coref_dropped) + # paragraph ID, sentence ID, word ID + self.list_of_cluster_tuples.append( coref_cluster_record) + own_cluster_record = ( + record.own_ID[0], record.own_ID[1], record.own_ID[2], cluster_ID, record.own_dropped)#, record.perspron) + # paragraph ID, sentence ID, word ID + self.list_of_cluster_tuples.append( own_cluster_record) + + self.list_of_cluster_tuples = sorted( self.list_of_cluster_tuples) + + list_of_cluster_records = [] # building object-records from tuples + for tuple in self.list_of_cluster_tuples: + cluster_record = Cluster_record( tuple) + list_of_cluster_records.append( cluster_record) + return list_of_cluster_records + + def find_coref_cluster( self, ids): # -> int (cluster number) + """ + if this cluster was already used, returns its number. otherwise None - then will the caller set up a new cluster + """ + for tuple in self.list_of_cluster_tuples: + if ( ( tuple[0], tuple[1], tuple[2] ) == ids ): + return tuple[3] + return None + + def new_cluster( self): + self.cluster_id += 1 + return self.cluster_id + + def get_cluster_id( self): + return self.cluster_id + +class Cluster_record: + def __init__( self, tuple): + self.para_ID = tuple[0] + self.sent_ID = tuple[1] + self.word_ID = tuple[2] + self.cluster_ID = tuple[3] + self.dropped = tuple[4] + #self.perspron + diff --git a/udapi/block/demo/Coreference/PDT/pdt_conv.py b/udapi/block/demo/Coreference/PDT/pdt_conv.py new file mode 100644 index 00000000..cb6c9f94 --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_conv.py @@ -0,0 +1,61 @@ +import sys +sys.path.insert(0, '/afs/ms/u/f/faryadj/Koreferencia/Other') + +from auxiliaries import get_interstring + +path = "/afs/ms/u/f/faryadj/udapi-python/demo/" + +class PDT_converter: + def __init__( self, input_file_name, output_file_name): + input_file = open( input_file_name, 'r') + output_file = open( output_file_name, 'w') + self.convert_file( input_file, output_file) + input_file.close() + output_file.close() + + def convert_file( self, input_file, output_file): + text = "" + actual_word = "" + new_para = False + new_word = False + for line in input_file: + if ( "" in line ): + new_para = True + elif ( "" in line and new_para ): + output_file.write( '\n\n') + new_para = False + + elif ( "" in line and new_word ): + output_file.write( actual_word) + actual_word = "" + new_word = False + + elif ( "" in line ): + token = get_interstring( line, '>', '<') + " " + actual_word += token + elif ( "" in line ): + value = get_interstring( line, '>', '<') + if ( value == "1" ): + actual_word = actual_word[:-1] + output_file.write( text) + +# name of the file +#name = "cmpr9410_001" # train 1 +#name = "lnd94103_052" # train 8 +#name = "ln94206_32" # train 5 +#name = "cmpr9410_032" # train 2 +#name = "ln94204_7" # train 2 +#name = "mf930713_046" # train 2 +#name = "ln94210_105" # train 2 +#name = "ln95048_134" # train 3 +#name = "mf920922_131" # train 7 +#name = "mf930713_085" # train 1 +#name = "mf930713_118" # train 3 +#name = "ln95048_117" # train 6 +name = "ln94206_62" # train 8 + +input_file_name = path + name + ".w" +output_file_name = path + name + ".txt" +a = PDT_converter( input_file_name, output_file_name) diff --git a/udapi/block/demo/Coreference/PDT/pdt_get_coreference.py b/udapi/block/demo/Coreference/PDT/pdt_get_coreference.py new file mode 100644 index 00000000..5c41cc27 --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_get_coreference.py @@ -0,0 +1,170 @@ +# Jan Faryad +# +# a component for obtaining the information about coreference from pdt files + +from udapi.block.demo.Coreference.Other.auxiliaries import get_interstring +from enum import Enum + +class PDT_get_coreference: + def __init__( self, pdt_t_input): + self.pdt_t_input = pdt_t_input + + self.list_of_corefs = [] # elements will be instances of Coreference_record + self.list_of_paragraphs = [] # elements are ints: list_of_paragraphs[i] indicates the number of sentences in the i-th paragraph + self.list_of_dropped = [] # list of tuples[2] (dropped ID, "parent" ID); "parent" ~ closest non-dropped supernode + + def read_file( self): # -> list (of coreference records) + """ + the main method, called from outside + """ + line = self.pdt_t_input.readline() + while not ( " string + """ + processes a node in the tectogrammatical tree: lets process children recursively + and controls if the node corefers with another node. + stops if the node record ends (start pf a new node, end of children block, end of file) + returns the line, where the cycle stopped, typically the line with ID of a new node + + first line : string - line with the node ID + supernode_ID : list (int[3]) - ID of the parent (or the closest non-dropped predecessor) in case this node is a t-node, dropped pronoun + """ + ( actual_ID, type ) = self.read_infos( first_line) # information about the node, got from the first line + if ( type == Node_type.Sentence ): # a sentence node, not a word node + para_ID = self.get_paragraph_ID( actual_ID) + self.add_sentence( para_ID) # increases number of senteces in the actual paragraph + elif ( type == Node_type.Dropped ): # node of a dropped word + self.add_dropped( actual_ID, supernode_ID) # adding this tuple to the list of dropped nodes + actual_ID = supernode_ID # if the pronoun is dropped, it will be identified by its parent + actual_infos = ( actual_ID, type ) + + line = self.pdt_t_input.readline() + while not ( " tag wouldn't work as there are inner ... blocks + if ( " int + """ + gets the number of the actual paragraph from the id of the actual node + id_string ... of a sentence, e.g. t-lnd94103-052-p1s11 + """ + last = id_string.split( '-')[-1] + id = get_interstring( last, 'p', 's') + return int( id) + + def add_dropped( self, dropped_ID, supernode_ID): # void + """ + adding a pair (id of dropped node, id of its parent) to the list of drooped nodes + """ + self.list_of_dropped += [ ( dropped_ID, supernode_ID ) ] + def get_dropped( self, dropped_ID): # -> string - supernode ID + """ + for the id of a dropped node returns its parent's id + returns None if the dropped word is a direct descendant of the sentence node + """ + for i in self.list_of_dropped: + if ( i[0] == dropped_ID ): + return i[1] + + def add_sentence( self, para_ID): # void + """ + increases the number of sentences in the given paragraph + """ + para_ID -= 1 # paragraphs are indexed from 1, elements of the list from 0 + if ( len( self.list_of_paragraphs) > para_ID ): # increasing number of senteces in the last paragraph + self.list_of_paragraphs[para_ID] += 1 + else: # a new paragraph + for i in range( para_ID - len( self.list_of_paragraphs) ): + self.list_of_paragraphs += [ 0 ] # leaping over empty paragraphs - there are in some texts + self.list_of_paragraphs += [ 1 ] # the actual, new paragraph with its first sentence marked + + def read_infos( self, first_line): # -> (string, Node_type) + """ + obtains information about a node from its first line + return a pair of id string (substring of the first line containing node id) and enum + """ + id_string = get_interstring( first_line, '"', '"') # gots substring between first two quotes + type = self.get_node_type( id_string) # recognizes node type + return ( id_string, type) + + def process_coref( self, first_line, actual_info): # -> Coreference_record + """ + reads coreferent ID and creates a new coreference record + """ + ( actual_ID, actual_type ) = actual_info # id_string and Node_type (word or dropped) + coref_ID = "" + if ( "', '<') + elif ( " + line = self.pdt_t_input.readline() + coref_ID = get_interstring( line, '>', '<') + #elif ( " Node_type (enum) + """ + recognizes if the node is a word node, t-node (dropped) or a sentence node + """ + id = id_string.split( '-')[-1] # eg. t-lnd94103-052-p1s10w5, where t-lnd94103-052 is id of the file in the trebank, + # p1s10w5 is id of the node (1st paragraph, 10th sentence, 5th word) + if ( 'w' in id): # p1s10w5 + return Node_type.Word + elif ( 'a' in id): # p1s10a5 + return Node_type.Dropped + elif ( 's' in id): # p1s10 + return Node_type.Sentence + return Node_type.Other # l28A ... ?! + + def process_children( self, supernode_ID): # void + """ + processes children nodes of some node + supernode id - id of o parent of these children or, in case it's dropped, of the first non-dropped predecessor + """ + line = self.pdt_t_input.readline() + while not ( " + else: + line = pdt_t_input.readline() # there was something between and , typically, there's nothing + +class Node_type(Enum): + Word = 1 + Dropped = 2 + Sentence = 3 + Other = 4 + +class Coreference_record: + """ + element of the list_of_corefs + """ + def __init__( self, own_dropped, own_ID, coref_dropped, coref_ID): + self.own_dropped = own_dropped # bool - if the refering word is dropped + self.coref_dropped = coref_dropped # bool - if the referent is dropped + self.own_ID = own_ID # id string of the refering word + self.coref_ID = coref_ID # id string of the referent diff --git a/udapi/block/demo/Coreference/PDT/pdt_id_conversion.py b/udapi/block/demo/Coreference/PDT/pdt_id_conversion.py new file mode 100644 index 00000000..691c647e --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_id_conversion.py @@ -0,0 +1,48 @@ +# Jan Faryad +# +# conversion od PDT word IDs of coreferents to conll-u word IDs + +class PDT_ID_conversion: + def __init__( self, list_of_corefs_in, list_of_corresponding_IDs): + self.list_of_corefs_in = list_of_corefs_in + self.list_of_corefs_out = [] + self.list_of_corresponding_IDs = list_of_corresponding_IDs + + def convert_IDs( self): # -> list of coreference records + """ + main conversion method, called from outside + """ + for coref_record in self.list_of_corefs_in: + # changing attributes own_ID and coref_ID from strings to triplets + coref_record.own_ID = self.get_corresponding_ID( coref_record.own_ID) + coref_record.coref_ID = self.get_corresponding_ID( coref_record.coref_ID) + + self.insert_coref_record( coref_record) + return self.list_of_corefs_out + + def get_corresponding_ID( self, ID_string): # -> triplet (para ID, sent ID, word ID) + """ + finding conll-u ID corresponding to given PDT ID. + """ + if ( ID_string == None): + return None + for i in self.list_of_corresponding_IDs: + if ( i[0][1:] == ID_string[1:] ): # corresponding IDs begin with w, strings with t + return i[1] + + def insert_coref_record( self, coref_record): + """ + inserting transformord coreference record to the output list. + records were ordered according to the pre-order number in pdt trees, now will be sorted according to the the order in the text + """ + if ( coref_record.own_ID == None or coref_record.coref_ID == None ): + return # coreference includes t-node that hasn't w-node parent (they are represented by sentence ID) + if ( len( self.list_of_corefs_out) == 0 ): # empty list + self.list_of_corefs_out = [ coref_record ] + else: + for i in range( len( self.list_of_corefs_out)): + if ( self.list_of_corefs_out[i].own_ID > coref_record.own_ID): # insert according to the order of words in the text + self.list_of_corefs_out = self.list_of_corefs_out[:i] + [ coref_record ] + self.list_of_corefs_out[i:] + break + else: + self.list_of_corefs_out += [ coref_record ] diff --git a/udapi/block/demo/Coreference/PDT/pdt_main.py b/udapi/block/demo/Coreference/PDT/pdt_main.py new file mode 100644 index 00000000..f3a25378 --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_main.py @@ -0,0 +1,70 @@ +# Jan Faryad +# 19. 6. 2017 + +from udapi.core.block import Block +from udapi.block.demo.Coreference.PDT.pdt_word_correspondence import PDT_word_correspondence +from udapi.block.demo.Coreference.PDT.pdt_get_coreference import PDT_get_coreference +from udapi.block.demo.Coreference.PDT.pdt_id_conversion import PDT_ID_conversion +from udapi.block.demo.Coreference.PDT.pdt_clusterization import PDT_clusterization +from udapi.block.demo.Coreference.PDT.pdt_add_coreference import PDT_add_coreference + + +class Pdt_main( Block): + def process_document( self, document): + + path = "../demo/" # the actual folder is udapi-python/udapi + + # name of the file + #name = "cmpr9410_001" # train 1 + #name = "lnd94103_052" # train 8 + #name = "ln94206_32" # train 5 + #name = "cmpr9410_032" # train 2 + #name = "ln94204_7" # train 2 + #name = "mf930713_046" # train 2 + #name = "ln94210_105" # train 2 + #name = "ln95048_134" # train 3 + #name = "mf920922_131" # train 7 + #name = "mf930713_085" # train 1 + #name = "mf930713_118" # train 3 + #name = "ln95048_117" # train 6 + #name = "ln94206_62" # train 8 + name = document.filename[:-9] # .in.conll + init_cluster_id = document.init_cluster_id + + # building a matching between words in PDT and CoNLL-U files + pdt_w_input = open( path + name + ".w", 'r') # surface (word) layer + word_correspondence = PDT_word_correspondence( pdt_w_input, document) + ( list_of_corresponding_IDs, list_of_sentence_IDs ) = word_correspondence.create_correspondence() + pdt_w_input.close() + + # extracting information about coreference from + pdt_t_input = open( path + name + ".t", 'r') # deep syntactical (tectogrammatical) layer + get_coreference = PDT_get_coreference( pdt_t_input) + list_of_corefs_I = get_coreference.read_file() + pdt_t_input.close() + + # conversion of the PDT IDs to CoNLL-U IDs + id_conversion = PDT_ID_conversion( list_of_corefs_I, list_of_corresponding_IDs) + list_of_corefs_II = id_conversion.convert_IDs() + + # clusterization?? - conversion from chains to clusters + clusterizer = PDT_clusterization( list_of_corefs_II, init_cluster_id) + list_of_corefs_II = clusterizer.convert_chains_to_clusters() + + + # adding the coreference information into the CoNLL-U file + #listing(list_of_corefs_II) + #for i in list_of_corresponding_IDs: + # print(i) + cored_adder = PDT_add_coreference( list_of_corefs_II, list_of_sentence_IDs, document) + cored_adder.process_file() + + #document.store_conllu("modifik.conllu") + return clusterizer.cluster_id + +def listing( list_of_corefs): # void + """ + prints attributes of coreference record in the given list + """ + for i in list_of_corefs: + print( ( i.para_ID, i.sent_ID, i.word_ID, i.cluster_ID, i.dropped) ) diff --git a/udapi/block/demo/Coreference/PDT/pdt_word_correspondence.py b/udapi/block/demo/Coreference/PDT/pdt_word_correspondence.py new file mode 100644 index 00000000..357a091d --- /dev/null +++ b/udapi/block/demo/Coreference/PDT/pdt_word_correspondence.py @@ -0,0 +1,77 @@ +# Jan Faryad +# 19. 6. 2017 + +from udapi.block.demo.Coreference.Other.auxiliaries import get_interstring + +punctuation = ",.?!;'-\"" + +class PDT_word_correspondence: + def __init__( self, pdt_w_input, conll_doc): + self.pdt_w_input = pdt_w_input + self.conll_doc = conll_doc + + self.para_ID = 0 + self.sent_ID = 0 + + self.list_of_corresponding_IDs = [] + self.list_of_sentence_IDs = [] + + def create_correspondence( self): + """ + main method, called from outside + """ + nodes_to_omit = 0 + for bundle in self.conll_doc.bundles: + for root in bundle.trees: + for node in root.descendants: + if ( nodes_to_omit > 0 ): + nodes_to_omit -= 1 + continue + + if ( node.multiword_token != None ): # originally one token, divided by UDPipe into multiple nodes. for the matching we use only + # the first node, the rest must be omitted + nodes_to_omit += len( node.multiword_token.words) - 1 + + word_ID = node.ord + form = node.form + + ( pdt_ID, token ) = self.next_pdt_word() # the next word and its ID in the PDT file + + + nodes_to_omit += self.token_division( token, form) # spaces and punctuation in the PDT word cause its division in CoNLL-U into more words + # for the matching we use only the first node, the rest must be omitted + conll_ID = ( self.para_ID, self.sent_ID, word_ID ) + self.list_of_corresponding_IDs += [ ( pdt_ID, conll_ID ) ] + self.list_of_sentence_IDs += [ ( self.para_ID, self.sent_ID ) ] + self.sent_ID += 1 + return ( self.list_of_corresponding_IDs, self.list_of_sentence_IDs ) + + def token_division( self, token, form): # -> int + """ + space or punctuation in the token - UDpipe divides it into more nodes + """ + if ( token == form ): + return 0 + lines_to_omit = 0 + for char in token: + if ( char == ' '): # space divides the token into two parts + lines_to_omit += 1 + elif ( char in punctuation ): # punctuation into three (the punctuation sign itself forms also a node) + lines_to_omit += 2 + return lines_to_omit + + def next_pdt_word( self): # -> ( pdt_ID (string), pdt token form (string) ) + pdt_line = self.pdt_w_input.readline() + while ( not "" in pdt_line ): + if ( "', '<') + return ( pdt_ID, token ) + elif ( pdt_line == "" ): + return ( "", "" ) + pdt_line = self.pdt_w_input.readline() + return ( "", "" ) From d77edbf3adb24d3019ad169c7ff56b097ebaf14a Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Thu, 6 Jul 2017 19:43:02 +0200 Subject: [PATCH 02/22] small changes in four udapi source files because of passing information about filenames and initial cluster IDs into process_document method --- udapi/core/basereader.py | 15 +++++++-------- udapi/core/block.py | 9 +++++---- udapi/core/document.py | 9 +++++++++ udapi/core/run.py | 13 +++++++++++-- 4 files changed, 32 insertions(+), 14 deletions(-) diff --git a/udapi/core/basereader.py b/udapi/core/basereader.py index 1f732568..dd9f21c3 100644 --- a/udapi/core/basereader.py +++ b/udapi/core/basereader.py @@ -13,9 +13,10 @@ class BaseReader(Block): # pylint: disable=too-many-arguments def __init__(self, files='-', zone='keep', bundles_per_doc=0, encoding='utf-8', - sent_id_filter=None, split_docs=False, ignore_sent_id=False, **kwargs): + sent_id_filter=None, split_docs=False, **kwargs): super().__init__(**kwargs) self.files = Files(filenames=files) + self.filenames = self.files.filenames # !!! ADDED !!! self.zone = zone self.bundles_per_doc = bundles_per_doc self.encoding = encoding @@ -26,7 +27,6 @@ def __init__(self, files='-', zone='keep', bundles_per_doc=0, encoding='utf-8', self.sent_id_filter = re.compile(str(sent_id_filter)) logging.debug('Using sent_id_filter=%s', sent_id_filter) self.split_docs = split_docs - self.ignore_sent_id = ignore_sent_id @staticmethod def is_multizone_reader(): @@ -109,7 +109,7 @@ def process_document(self, document): if filehandle is None: self.finished = True return - + trees_loaded = 0 while True: root = self.filtered_read_tree(document) @@ -122,10 +122,9 @@ def process_document(self, document): add_to_the_last_bundle = 0 trees_loaded += 1 - if self.ignore_sent_id: - root.sent_id = None - if root.sent_id is not None: - parts = root.sent_id.split('/', 1) + tree_id = root.sent_id + if tree_id is not None: + parts = tree_id.split('/', 1) bundle_id = parts[0] if len(parts) == 2: root.zone = parts[1] @@ -146,7 +145,7 @@ def process_document(self, document): len(orig_bundles)) self.finished = False return - + # assign new/next bundle to `bundle` if needed if not bundle or not add_to_the_last_bundle: if self.bundles_per_doc and bundle and self.bundles_per_doc == bundle.number: diff --git a/udapi/core/block.py b/udapi/core/block.py index 453b1d65..99e3e766 100644 --- a/udapi/core/block.py +++ b/udapi/core/block.py @@ -7,6 +7,7 @@ class Block(object): def __init__(self, zones='all'): self.zones = zones + self.filenames = [] # !!! ADDED !!! def process_start(self): """A hook method that is executed before processing UD data""" @@ -26,16 +27,16 @@ def process_tree(self, tree): self.process_node(node) def process_bundle(self, bundle): - """Process a UD bundle""" - for tree in bundle: + """Process a UD bundle""" + for tree in bundle.trees: if self._should_process_tree(tree): self.process_tree(tree) def process_document(self, document): - """Process a UD document""" + """Process a UD document""" for bundle_no, bundle in enumerate(document.bundles, 1): logging.debug('Block %s processing bundle #%d (id=%s)', - self.__class__.__name__, bundle_no, bundle.bundle_id) + self.__class__.__name__, bundle_no, bundle.bundle_id) self.process_bundle(bundle) def before_process_document(self, document): diff --git a/udapi/core/document.py b/udapi/core/document.py index b64ee29c..79f2c58c 100644 --- a/udapi/core/document.py +++ b/udapi/core/document.py @@ -1,3 +1,4 @@ +#-*- coding: utf-8 -*- """Document class is a container for UD trees.""" from udapi.core.bundle import Bundle @@ -13,6 +14,8 @@ def __init__(self): self.bundles = [] self._highest_bundle_id = 0 self.meta = {} + self.filename = None # !!! ADDED !!! + self.init_cluster_id = None # !!! ADDED II !!! def __iter__(self): return iter(self.bundles) @@ -34,3 +37,9 @@ def store_conllu(self, filename): """Store a document into a conllu-formatted file.""" writer = ConlluWriter(files=filename) writer.process_document(self) + + def set_filename( self, filename): # !!! ADDED !!! + self.filename = filename # !!! ADDED !!! + + def set_init_cluster_id( self, init_cluster_id): # !!! ADDED II !!! + self.init_cluster_id = init_cluster_id # !!! ADDED II !!! diff --git a/udapi/core/run.py b/udapi/core/run.py index f42f3f9d..7a16fb88 100644 --- a/udapi/core/run.py +++ b/udapi/core/run.py @@ -130,7 +130,7 @@ def execute(self): # Initialize blocks (process_start). for block in blocks: block.process_start() - + readers = [] for block in blocks: try: @@ -146,13 +146,22 @@ def execute(self): # Apply blocks on the data. finished = False + filenames_iterator = 0 # !!! ADDED !!! + init_cluster_id = -1 # !!! ADDED !!! while not finished: document = Document() logging.info(" ---- ROUND ----") for block in blocks: + if ( filenames_iterator < len( block.filenames) ): # !!! + filename = block.filenames[ filenames_iterator ] # !!! + document.set_filename( filename) # ADDED + document.set_init_cluster_id( init_cluster_id) # !!! + filenames_iterator += 1 # !!! logging.info("Executing block " + block.__class__.__name__) block.before_process_document(document) - block.process_document(document) + result = block.process_document(document) + if ( type( result) == int ): + init_cluster_id = result block.after_process_document(document) finished = True From c46876ddf03ac89d17d710ec5a309572a232dad2 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Thu, 6 Jul 2017 19:47:28 +0200 Subject: [PATCH 03/22] data and shell scripts --- demo/abc_0001.txt | 3 + demo/ann_0001.in.conllu | 524 + demo/ann_0001.onf | 1949 +++ demo/ann_0001.txt | 2 + demo/cmpr9410_027.in.conll | 817 + demo/cmpr9410_027.t | 11964 +++++++++++++ demo/cmpr9410_027.txt | 29 + demo/cmpr9410_027.w | 2478 +++ demo/cnn_0101.onf | 238 + demo/cnn_0101.txt | 1 + demo/coref.sh | 29 + demo/coref_evaluation.sh | 6 + demo/coref_onto.sh | 9 + demo/coref_pdt.sh | 9 + demo/coref_prediction.sh | 8 + demo/coref_training.sh | 6 + demo/model.txt | Bin 0 -> 1191668 bytes demo/onto_test/a2e_0000.in.conllu | 659 + demo/onto_test/a2e_0000.onf | 2370 +++ demo/onto_test/a2e_0000.txt | 2 + demo/onto_train/cctv_0000.in.conllu | 4220 +++++ demo/onto_train/cctv_0000.onf | 16310 +++++++++++++++++ demo/onto_train/cctv_0000.txt | 1 + demo/onto_train/ectb_1003.in.conllu | 5860 +++++++ demo/onto_train/ectb_1003.onf | 21288 +++++++++++++++++++++++ demo/onto_train/ectb_1003.txt | 22 + demo/p2.5_c2e_0001.onf | 1197 ++ demo/p2.5_c2e_0001.txt | 1 + demo/pdt_test/ln94204_7.in.conll | 626 + demo/pdt_test/ln94204_7.out.conllu | 627 + demo/pdt_test/ln94204_7.t | 8585 +++++++++ demo/pdt_test/ln94204_7.txt | 15 + demo/pdt_test/ln94204_7.w | 1692 ++ demo/pdt_train/cmpr9410_001.in.conll | 686 + demo/pdt_train/cmpr9410_001.out.conllu | 765 + demo/pdt_train/cmpr9410_001.t | 10055 +++++++++++ demo/pdt_train/cmpr9410_001.txt | 41 + demo/pdt_train/cmpr9410_001.w | 2097 +++ demo/pdt_train/cmpr9410_032.in.conll | 590 + demo/pdt_train/cmpr9410_032.t | 7734 ++++++++ demo/pdt_train/cmpr9410_032.txt | 23 + demo/pdt_train/cmpr9410_032.w | 1629 ++ demo/pdt_train/ln94206_32.in.conll | 669 + demo/pdt_train/ln94206_32.t | 10254 +++++++++++ demo/pdt_train/ln94206_32.txt | 21 + demo/pdt_train/ln94206_32.w | 2023 +++ demo/pdt_train/ln94206_62.a | 321 + demo/pdt_train/ln94206_62.in.conll | 53 + demo/pdt_train/ln94206_62.m | 382 + demo/pdt_train/ln94206_62.out.conllu | 53 + demo/pdt_train/ln94206_62.t | 640 + demo/pdt_train/ln94206_62.txt | 3 + demo/pdt_train/ln94206_62.w | 153 + demo/pdt_train/ln94210_105.a | 2100 +++ demo/pdt_train/ln94210_105.in.conll | 294 + demo/pdt_train/ln94210_105.m | 2550 +++ demo/pdt_train/ln94210_105.t | 4681 +++++ demo/pdt_train/ln94210_105.txt | 11 + demo/pdt_train/ln94210_105.w | 908 + demo/pdt_train/ln95048_117.t | 12773 ++++++++++++++ demo/pdt_train/ln95048_117.txt | 19 + demo/pdt_train/ln95048_117.w | 2623 +++ demo/pdt_train/ln95048_134.in.conll | 141 + demo/pdt_train/ln95048_134.out.conllu | 158 + demo/pdt_train/ln95048_134.t | 2072 +++ demo/pdt_train/ln95048_134.txt | 3 + demo/pdt_train/ln95048_134.w | 450 + demo/pdt_train/lnd94103_052.in.conll | 276 + demo/pdt_train/lnd94103_052.t | 4120 +++++ demo/pdt_train/lnd94103_052.txt | 1 + demo/pdt_train/lnd94103_052.w | 822 + demo/pdt_train/mf920922_131.in.conll | 198 + demo/pdt_train/mf920922_131.out.conllu | 213 + demo/pdt_train/mf920922_131.t | 3262 ++++ demo/pdt_train/mf920922_131.txt | 7 + demo/pdt_train/mf920922_131.w | 612 + demo/pdt_train/mf930713_046.in.conll | 143 + demo/pdt_train/mf930713_046.t | 1908 ++ demo/pdt_train/mf930713_046.txt | 3 + demo/pdt_train/mf930713_046.w | 375 + demo/pdt_train/mf930713_085.in.conll | 240 + demo/pdt_train/mf930713_085.t | 3684 ++++ demo/pdt_train/mf930713_085.txt | 9 + demo/pdt_train/mf930713_085.w | 733 + demo/pdt_train/mf930713_118.in.conll | 146 + demo/pdt_train/mf930713_118.t | 2164 +++ demo/pdt_train/mf930713_118.txt | 3 + demo/pdt_train/mf930713_118.w | 456 + demo/prepositions-cup.conllu | 1074 ++ demo/prepositions-up.conllu | 1074 ++ demo/python-demo.sh | 2 +- demo/test/all.in.conllu | 626 + demo/test/all.out.conllu | 627 + demo/test/auto_result.conllu | 627 + demo/train/all.out.conllu | 3712 ++++ 95 files changed, 175638 insertions(+), 1 deletion(-) create mode 100644 demo/abc_0001.txt create mode 100644 demo/ann_0001.in.conllu create mode 100644 demo/ann_0001.onf create mode 100644 demo/ann_0001.txt create mode 100644 demo/cmpr9410_027.in.conll create mode 100644 demo/cmpr9410_027.t create mode 100644 demo/cmpr9410_027.txt create mode 100644 demo/cmpr9410_027.w create mode 100644 demo/cnn_0101.onf create mode 100644 demo/cnn_0101.txt create mode 100644 demo/coref.sh create mode 100644 demo/coref_evaluation.sh create mode 100644 demo/coref_onto.sh create mode 100644 demo/coref_pdt.sh create mode 100644 demo/coref_prediction.sh create mode 100644 demo/coref_training.sh create mode 100644 demo/model.txt create mode 100644 demo/onto_test/a2e_0000.in.conllu create mode 100644 demo/onto_test/a2e_0000.onf create mode 100644 demo/onto_test/a2e_0000.txt create mode 100644 demo/onto_train/cctv_0000.in.conllu create mode 100644 demo/onto_train/cctv_0000.onf create mode 100644 demo/onto_train/cctv_0000.txt create mode 100644 demo/onto_train/ectb_1003.in.conllu create mode 100644 demo/onto_train/ectb_1003.onf create mode 100644 demo/onto_train/ectb_1003.txt create mode 100644 demo/p2.5_c2e_0001.onf create mode 100644 demo/p2.5_c2e_0001.txt create mode 100644 demo/pdt_test/ln94204_7.in.conll create mode 100644 demo/pdt_test/ln94204_7.out.conllu create mode 100644 demo/pdt_test/ln94204_7.t create mode 100644 demo/pdt_test/ln94204_7.txt create mode 100644 demo/pdt_test/ln94204_7.w create mode 100644 demo/pdt_train/cmpr9410_001.in.conll create mode 100644 demo/pdt_train/cmpr9410_001.out.conllu create mode 100644 demo/pdt_train/cmpr9410_001.t create mode 100644 demo/pdt_train/cmpr9410_001.txt create mode 100644 demo/pdt_train/cmpr9410_001.w create mode 100644 demo/pdt_train/cmpr9410_032.in.conll create mode 100644 demo/pdt_train/cmpr9410_032.t create mode 100644 demo/pdt_train/cmpr9410_032.txt create mode 100644 demo/pdt_train/cmpr9410_032.w create mode 100644 demo/pdt_train/ln94206_32.in.conll create mode 100644 demo/pdt_train/ln94206_32.t create mode 100644 demo/pdt_train/ln94206_32.txt create mode 100644 demo/pdt_train/ln94206_32.w create mode 100644 demo/pdt_train/ln94206_62.a create mode 100644 demo/pdt_train/ln94206_62.in.conll create mode 100644 demo/pdt_train/ln94206_62.m create mode 100644 demo/pdt_train/ln94206_62.out.conllu create mode 100644 demo/pdt_train/ln94206_62.t create mode 100644 demo/pdt_train/ln94206_62.txt create mode 100644 demo/pdt_train/ln94206_62.w create mode 100644 demo/pdt_train/ln94210_105.a create mode 100644 demo/pdt_train/ln94210_105.in.conll create mode 100644 demo/pdt_train/ln94210_105.m create mode 100644 demo/pdt_train/ln94210_105.t create mode 100644 demo/pdt_train/ln94210_105.txt create mode 100644 demo/pdt_train/ln94210_105.w create mode 100644 demo/pdt_train/ln95048_117.t create mode 100644 demo/pdt_train/ln95048_117.txt create mode 100644 demo/pdt_train/ln95048_117.w create mode 100644 demo/pdt_train/ln95048_134.in.conll create mode 100644 demo/pdt_train/ln95048_134.out.conllu create mode 100644 demo/pdt_train/ln95048_134.t create mode 100644 demo/pdt_train/ln95048_134.txt create mode 100644 demo/pdt_train/ln95048_134.w create mode 100644 demo/pdt_train/lnd94103_052.in.conll create mode 100644 demo/pdt_train/lnd94103_052.t create mode 100644 demo/pdt_train/lnd94103_052.txt create mode 100644 demo/pdt_train/lnd94103_052.w create mode 100644 demo/pdt_train/mf920922_131.in.conll create mode 100644 demo/pdt_train/mf920922_131.out.conllu create mode 100644 demo/pdt_train/mf920922_131.t create mode 100644 demo/pdt_train/mf920922_131.txt create mode 100644 demo/pdt_train/mf920922_131.w create mode 100644 demo/pdt_train/mf930713_046.in.conll create mode 100644 demo/pdt_train/mf930713_046.t create mode 100644 demo/pdt_train/mf930713_046.txt create mode 100644 demo/pdt_train/mf930713_046.w create mode 100644 demo/pdt_train/mf930713_085.in.conll create mode 100644 demo/pdt_train/mf930713_085.t create mode 100644 demo/pdt_train/mf930713_085.txt create mode 100644 demo/pdt_train/mf930713_085.w create mode 100644 demo/pdt_train/mf930713_118.in.conll create mode 100644 demo/pdt_train/mf930713_118.t create mode 100644 demo/pdt_train/mf930713_118.txt create mode 100644 demo/pdt_train/mf930713_118.w create mode 100644 demo/prepositions-cup.conllu create mode 100644 demo/prepositions-up.conllu create mode 100644 demo/test/all.in.conllu create mode 100644 demo/test/all.out.conllu create mode 100644 demo/test/auto_result.conllu create mode 100644 demo/train/all.out.conllu diff --git a/demo/abc_0001.txt b/demo/abc_0001.txt new file mode 100644 index 00000000..8388fab3 --- /dev/null +++ b/demo/abc_0001.txt @@ -0,0 +1,3 @@ + + + Like many Heartland states, Iowa has had trouble keeping young people down on the farm or anywhere within state lines. With population waning, the state is looking beyond its borders for newcomers. As ABC's Jim Sciutto reports, one little town may provide a big lesson. On homecoming night Postville feels like Hometown, USA, but a look around this town of 2,000 shows it's become a miniature Ellis Island. This was an all-white, all-christian community that all the sudden was taken over--not taken over, that's a very bad choice of words, but invaded by, perhaps different groups. It began when a Hasidic Jewish family bought one of the town's two meat-packing plants 13 years ago. First they brought in other Hasidic Jews, then Mexicans, Palestinians, Ukrainians. The plant and another next door changed the face of Postville. I think Postville might be catching up with the rest of America. If you look all over America, if you did a study of any great city, you would see the same thing. The plants helped spur economic development in a town that had long been stagnant. Stores are expanding. New apartments and houses are being built, and there are hundreds of new jobs, making unemployment almost nonexistent. What else would you like? Postville now has 22 different nationalities, but some residents have n't welcomed the newcomers. They have no insurance on their cars. They do n't stop at stop signs. They do not put their children in a cash--they've never heard of a car seat. You know we've been here a long time and I think most people would meet them halfway, but that does n't seem to be what they want. For those who prefer the old Postville, Mayor John Hyman has a simple answer. I just tell them, you've got to change. They're here to stay. They're not gon na leave, and you're going to have to adapt to these people. Iowa's governor is now looking to follow Postville's example, relaxing immigration quotas. It's a goal that seems possible when on homecoming night the starting kicker is 14-year-old Nikita Kargalskiy, who may be 5,000 miles from his hometown in Russia. Jim Sciutto, ABC News, Postville Iowa. \ No newline at end of file diff --git a/demo/ann_0001.in.conllu b/demo/ann_0001.in.conllu new file mode 100644 index 00000000..f7538dea --- /dev/null +++ b/demo/ann_0001.in.conllu @@ -0,0 +1,524 @@ +# newdoc +# newpar +# sent_id = 1 +# text = 650 جندياً أميركياً إلى الفيليبين من اليوم في بعثة تدريبية ل لقضاء على" أبو سياف" بعد ما تضاربت المعلومات الاسبوع الماضي عن عدد الجنود الاميركيين الذين س يشاركون في بعثة تدريبية ل مكافحة الارهاب في الفيليبين, في إطار جهود واشنطن ل مكافحة الارهاب في العالم, أفاد أمس مسؤولون عسكريون في مانيلا ان نحو 650 جندياً اميركياً س ينضمون تباعاً الى قوات فيليبينية ل تعزيز قدرات ها الدفاعية من أجل القضاء على جماعة" أبو سياف" التي تربط ها صلات ب تنظيم" القاعدة" الذي يتزعم ه اسامة بن لادن, م ما س يتيح ل هم الانتقال الى مناطق القتال في جنوب البلاد. و من المقرر ان تبدأ التدريبات هذا الشهر, و قد تستمر حتى نهاية هذه السنة في مدينة زامبوانغا و جزيرة باسيلان المجاورة ل ها حيث تشن القوات الفيليبينية حملة واسعة على جماعة" ابو سياف" التي تحتجز رهائن, بين ها أميركيان منذ حزيران الماضي. و قال وزير الدفاع انجيلو رييس ان نحو ستة مسؤولين اميركيين وصلوا الى البلاد ل لبحث في التدابير اللوجيستية, على ان يلحق ب هم الاخرون تباعاً, بدءا من اليوم. و في الاجمال, س يشارك 500 جندي اميركي في عمليات" دعم و صيانة", بينما س يسمح ل لاخرين, و هم اعضاء في القوات الخاصة, ب مشاركة الجنود الفيليبينيين أحياناً في مطاردة المتطرفين الاسلاميين في جزيرة باسيلان في جنوب البلاد. و اوضح ان الاميركيين" لن يشاركوا في المعارك و لكن هم س يكونون مسلحين و يستطيعون الدفاع عن انفس هم عند ما يتعرضون ل هجوم", مؤكدا في الوقت نفس ه ان ها ليست عملية سرية ل لجيش الاميركي. و س يشارك نحو 1200 جندي فيليبيني في التدريبات التي تمتد بين كانون الثاني و حزيران, و قد تستمر طوال السنة" تبعاً ل تطورات الاوضاع". و يذكر ان جماعة" ابو سياف" تمكنت من النجاة من عملية واسعة نفذ ها الجيش الفيليبيني في الادغال في جنوب البلاد. و صرح الناطق العسكري الجنرال اديلبيرتو ادان ان الجنود الاميركيين حُذروا من المخاطر التي قد يواجهون ها في باسيلان. و قال الناطق ب اسم الرئاسة ريغوبيرتو تيغلاو:" أخذنا في الاعتبار في تحضيرات نا امكان تكبد هم خسائر". على صعيد آخر, تحطمت امس طائرة تدريب عسكرية في منطقة سكنية في مدينة كاباناتوان على مسافة مئة كيلومتر شمال مانيلا, م ما ادى الى مقتل خمسة اشخاص و احتراق اكثر من 20 منزلا. +1 650 650 NUM Q--------- NumForm=Digit 199 nsubj _ SpacesBefore=\s +2 جندياً جُندِيّ NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 1 nmod _ _ +3 أميركياً أَمِيرِكِيّ ADJ A-----MS4I Case=Acc|Definite=Ind|Gender=Masc|Number=Sing 2 amod _ _ +4 إلى إِلَى ADP P--------- AdpType=Prep 5 case _ _ +5 الفيليبين فِيلِيبِين NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 1 nmod _ _ +6 من مِن ADP P--------- AdpType=Prep 7 case _ _ +7 اليوم يَوم NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 1 obl _ _ +8 في فِي ADP P--------- AdpType=Prep 9 case _ _ +9 بعثة بَعثَة NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 1 obl _ _ +10 تدريبية تَدرِيبِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 9 amod _ _ +11 ل لِ ADP P--------- AdpType=Prep 13 case _ _ +12-13 لقضاء _ _ _ _ _ _ _ _ +12 ل لِ ADP P--------- AdpType=Prep 13 case _ _ +13 قضاء قَضَاء NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 9 nmod _ _ +14 على عَلَى ADP P--------- AdpType=Prep 16 case _ SpaceAfter=No +15 " " PUNCT G--------- _ 16 punct _ _ +16 أبو ابو X U--------- _ 13 nmod _ _ +17 سياف سياف X U--------- _ 16 nmod _ SpaceAfter=No +18 " " PUNCT G--------- _ 16 punct _ _ +19 بعد بَعدَ ADP PI------4- AdpType=Prep|Case=Acc 21 mark _ _ +20 ما مَا PRON S--------- _ 21 mark _ _ +21 تضاربت تَضَارَب VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 9 advcl _ _ +22 المعلومات مَعلُومَة NOUN N------P1D Case=Nom|Definite=Def|Number=Plur 21 nsubj _ _ +23 الاسبوع أُسبُوع NOUN N------S4D Case=Acc|Definite=Def|Number=Sing 21 obl _ _ +24 الماضي مَاضِي ADJ A-----MS4D Case=Acc|Definite=Def|Gender=Masc|Number=Sing 23 amod _ _ +25 عن عَن ADP P--------- AdpType=Prep 26 case _ _ +26 عدد عَدَد NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 21 iobj _ _ +27 الجنود جُندِيّ NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 26 nmod _ _ +28 الاميركيين أَمِيرِكِيّ ADJ A-----MP2D Case=Gen|Definite=Def|Gender=Masc|Number=Plur 27 amod _ _ +29 الذين اَلَّذِي PRON SR----MP2- Case=Gen|Gender=Masc|Number=Plur|PronType=Rel 27 cc _ _ +30 س سَ PART F--------- _ 31 aux _ _ +31 يشاركون شَارَك VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 27 acl _ _ +32 في فِي ADP P--------- AdpType=Prep 33 case _ _ +33 بعثة بَعثَة NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 31 obj _ _ +34 تدريبية تَدرِيبِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 33 amod _ _ +35 ل لِ ADP P--------- AdpType=Prep 36 case _ _ +36 مكافحة مُكَافَحَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 33 nmod _ _ +37 الارهاب إِرهَاب NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 36 nmod _ _ +38 في فِي ADP P--------- AdpType=Prep 39 case _ _ +39 الفيليبين فِيلِيبِين NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 36 nmod _ SpaceAfter=No +40 , , PUNCT G--------- _ 39 punct _ _ +41 في فِي ADP P--------- AdpType=Prep 43 case _ _ +42 إطار إِطَار NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 43 cc _ _ +43 جهود جَهد NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 31 obl _ _ +44 واشنطن وَاشِنطُن X X--------- Foreign=Yes 43 nmod _ _ +45 ل لِ ADP P--------- AdpType=Prep 46 case _ _ +46 مكافحة مُكَافَحَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 31 obl _ _ +47 الارهاب إِرهَاب NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 46 nmod _ _ +48 في فِي ADP P--------- AdpType=Prep 49 case _ _ +49 العالم عَالَم NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 46 nmod _ SpaceAfter=No +50 , , PUNCT G--------- _ 49 punct _ _ +51 أفاد أَفَاد VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 21 xcomp _ _ +52 أمس أَمسِ ADV D--------- _ 51 advmod _ _ +53 مسؤولون مَسؤُول NOUN N------P1I Case=Nom|Definite=Ind|Number=Plur 51 nsubj _ _ +54 عسكريون عَسكَرِيّ ADJ A-----MP1I Case=Nom|Definite=Ind|Gender=Masc|Number=Plur 53 amod _ _ +55 في فِي ADP P--------- AdpType=Prep 56 case _ _ +56 مانيلا مَانِيلَا X X--------- Foreign=Yes 53 nmod _ _ +57 ان أَنَّ CCONJ C--------- _ 63 mark _ _ +58 نحو نَحوَ ADP PI------4- AdpType=Prep|Case=Acc 59 case _ _ +59 650 650 NUM Q--------- NumForm=Digit 63 obl _ _ +60 جندياً جُندِيّ NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 59 nmod _ _ +61 اميركياً أَمِيرِكِيّ ADJ A-----MS4I Case=Acc|Definite=Ind|Gender=Masc|Number=Sing 60 amod _ _ +62 س سَ PART F--------- _ 63 aux _ _ +63 ينضمون ينضمون VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 51 ccomp _ _ +64 تباعاً تِبَاع NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 63 obl _ _ +65 الى إِلَى ADP P--------- AdpType=Prep 66 case _ _ +66 قوات قُوَّة NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 63 obj _ _ +67 فيليبينية فِيلِيبِينِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 66 amod _ _ +68 ل لِ ADP P--------- AdpType=Prep 69 case _ _ +69 تعزيز تَعزِيز NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 66 nmod _ _ +70 قدرات قُدرَة NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 69 nmod _ _ +71 ها هُوَ PRON SP---3FS2- Case=Gen|Gender=Fem|Number=Sing|Person=3|PronType=Prs 70 nmod _ _ +72 الدفاعية دِفَاعِيّ ADJ A-----FS2D Case=Gen|Definite=Def|Gender=Fem|Number=Sing 70 amod _ _ +73 من مِن ADP P--------- AdpType=Prep 75 case _ _ +74 أجل أَجل NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 75 cc _ _ +75 القضاء قَضَاء NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 69 nmod _ _ +76 على عَلَى ADP P--------- AdpType=Prep 77 case _ _ +77 جماعة جَمَاعَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 75 nmod _ SpaceAfter=No +78 " " PUNCT G--------- _ 77 punct _ _ +79 أبو ابو X U--------- _ 77 nmod _ _ +80 سياف سياف X U--------- _ 79 nmod _ SpaceAfter=No +81 " " PUNCT G--------- _ 77 punct _ _ +82 التي اَلَّذِي DET SR----FS2- Case=Gen|Gender=Fem|Number=Sing|PronType=Rel 77 cc _ _ +83 تربط رَبَط VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 77 acl _ _ +84 ها هُوَ PRON SP---3FS4- Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 83 obj _ _ +85 صلات صلات NOUN N------P1I Case=Nom|Definite=Ind|Number=Plur 83 nsubj _ _ +86 ب بِ ADP P--------- AdpType=Prep 87 case _ _ +87 تنظيم تَنظِيم NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 85 nmod _ SpaceAfter=No +88 " " PUNCT G--------- _ 89 punct _ _ +89 القاعدة قَاعِدَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 87 nmod _ SpaceAfter=No +90 " " PUNCT G--------- _ 89 punct _ _ +91 الذي اَلَّذِي DET SR----MS2- Case=Gen|Gender=Masc|Number=Sing|PronType=Rel 89 cc _ _ +92 يتزعم تَزَعَّم VERB VIIA-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 89 acl _ _ +93 ه هُوَ PRON SP---3MS4- Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 92 obj _ _ +94 اسامة أسامة X U--------- _ 95 nmod _ _ +95 بن بِن PROPN Z--------- _ 92 nsubj _ _ +96 لادن لادن X U--------- _ 95 nmod _ SpaceAfter=No +97 , , PUNCT G--------- _ 98 punct _ _ +98 م م X Y--------- Abbr=Yes 95 nmod _ _ +99 ما مَا DET S--------- _ 101 cc _ _ +100 س سَ PART F--------- _ 101 aux _ _ +101 يتيح أَتَاح VERB VIIA-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 92 conj _ _ +102 ل لِ ADP P--------- AdpType=Prep 103 case _ _ +103 هم هُوَ PRON SP---3MP2- Case=Gen|Gender=Masc|Number=Plur|Person=3|PronType=Prs 101 obj _ _ +104 الانتقال اِنتِقَال NOUN N------S1D Case=Nom|Definite=Def|Number=Sing 101 nsubj _ _ +105 الى إِلَى ADP P--------- AdpType=Prep 106 case _ _ +106 مناطق مِنطَقَة NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 104 obl _ _ +107 القتال قِتَال NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 106 nmod _ _ +108 في فِي ADP P--------- AdpType=Prep 109 case _ _ +109 جنوب جَنُوب NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 107 obl _ _ +110 البلاد بَلَد NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 109 nmod _ SpaceAfter=No +111 . . PUNCT G--------- _ 1 punct _ _ +112 و وَ CCONJ C--------- _ 1 cc _ _ +113 من مِن ADP P--------- AdpType=Prep 114 case _ _ +114 المقرر مُقَرَّر ADJ A-----MS2D Case=Gen|Definite=Def|Gender=Masc|Number=Sing 1 parataxis _ _ +115 ان أَن CCONJ C--------- _ 116 mark _ _ +116 تبدأ بَدَأ VERB VISA-3FS-- Aspect=Imp|Gender=Fem|Mood=Sub|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 114 csubj _ _ +117 التدريبات تَدرِيب NOUN N------P4D Case=Acc|Definite=Def|Number=Plur 116 obj _ _ +118 هذا هٰذَا PRON SD----MS4- Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 119 det _ _ +119 الشهر شَهر NOUN N------S4D Case=Acc|Definite=Def|Number=Sing 117 nmod _ SpaceAfter=No +120 , , PUNCT G--------- _ 119 punct _ _ +121 و وَ CCONJ C--------- _ 123 cc _ _ +122 قد قَد PART F--------- _ 123 aux _ _ +123 تستمر اِستَمَرّ VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 116 conj _ _ +124 حتى حَتَّى ADP P--------- AdpType=Prep 125 case _ _ +125 نهاية نِهَايَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 123 obl _ _ +126 هذه هٰذَا DET SD----FS2- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 127 det _ _ +127 السنة سَنَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 125 nmod _ _ +128 في فِي ADP P--------- AdpType=Prep 129 case _ _ +129 مدينة مَدِينَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 123 obl _ _ +130 زامبوانغا زَامبُوَانغَا X X--------- Foreign=Yes 129 nmod _ _ +131 و وَ CCONJ C--------- _ 132 cc _ _ +132 جزيرة جَزِيرَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 129 conj _ _ +133 باسيلان باسيلان X X--------- Foreign=Yes 132 nmod _ _ +134 المجاورة مُجَاوِر ADJ A-----FS2D Case=Gen|Definite=Def|Gender=Fem|Number=Sing 132 amod _ _ +135 ل لِ ADP P--------- AdpType=Prep 136 case _ _ +136 ها هُوَ PRON SP---3FS2- Case=Gen|Gender=Fem|Number=Sing|Person=3|PronType=Prs 134 obj _ _ +137 حيث حَيثُ CCONJ C--------- _ 138 mark _ _ +138 تشن شَنّ VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 123 advcl _ _ +139 القوات قُوَّة NOUN N------P1D Case=Nom|Definite=Def|Number=Plur 138 nsubj _ _ +140 الفيليبينية فِيلِيبِينِيّ ADJ A-----FS1D Case=Nom|Definite=Def|Gender=Fem|Number=Sing 139 amod _ _ +141 حملة حَملَة NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 138 obj _ _ +142 واسعة وَاسِع ADJ A-----FS4I Case=Acc|Definite=Ind|Gender=Fem|Number=Sing 141 amod _ _ +143 على عَلَى ADP P--------- AdpType=Prep 144 case _ _ +144 جماعة جَمَاعَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 141 nmod _ SpaceAfter=No +145 " " PUNCT G--------- _ 144 punct _ _ +146 ابو ابو X U--------- _ 144 nmod _ _ +147 سياف سياف X U--------- _ 146 nmod _ SpaceAfter=No +148 " " PUNCT G--------- _ 144 punct _ _ +149 التي اَلَّذِي PRON SR----FS1- Case=Nom|Gender=Fem|Number=Sing|PronType=Rel 141 cc _ _ +150 تحتجز اِحتَجَز VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 141 acl _ _ +151 رهائن رَهِينَة NOUN N------P4I Case=Acc|Definite=Ind|Number=Plur 150 obj _ SpaceAfter=No +152 , , PUNCT G--------- _ 151 punct _ _ +153 بين بَينَ ADP PI------4- AdpType=Prep|Case=Acc 154 case _ _ +154 ها هُوَ PRON SP---3FS2- Case=Gen|Gender=Fem|Number=Sing|Person=3|PronType=Prs 150 iobj _ _ +155 أميركيان اميركيان NOUN N------S1R Case=Nom|Definite=Cons|Number=Sing 150 nsubj _ _ +156 منذ مُنذُ ADP P--------- AdpType=Prep 157 case _ _ +157 حزيران حَزِيرَان NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 155 nmod _ _ +158 الماضي مَاضِي ADJ A-----MS2D Case=Gen|Definite=Def|Gender=Masc|Number=Sing 157 amod _ SpaceAfter=No +159 . . PUNCT G--------- _ 1 punct _ _ +160 و وَ CCONJ C--------- _ 1 cc _ _ +161 قال قَال VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 1 parataxis _ _ +162 وزير وَزِير NOUN N------S1R Case=Nom|Definite=Cons|Number=Sing 161 nsubj _ _ +163 الدفاع دِفَاع NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 162 nmod _ _ +164 انجيلو انجيلو X U--------- _ 162 nmod _ _ +165 رييس رَئِيس NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 161 obj _ _ +166 ان إِنَّ CCONJ C--------- _ 171 mark _ _ +167 نحو نَحوَ ADP PI------4- AdpType=Prep|Case=Acc 168 case _ _ +168 ستة سِتَّة NUM QV----M-2R Case=Gen|Definite=Cons|Gender=Masc|NumForm=Word|NumValue=3 171 nsubj _ _ +169 مسؤولين مَسؤُول NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 168 nmod _ _ +170 اميركيين أَمِيرِكِيّ ADJ A-----MP2I Case=Gen|Definite=Ind|Gender=Masc|Number=Plur 169 amod _ _ +171 وصلوا وَصَل VERB VP-A-3MP-- Aspect=Perf|Gender=Masc|Number=Plur|Person=3|Voice=Act 165 ccomp _ _ +172 الى إِلَى ADP P--------- AdpType=Prep 173 case _ _ +173 البلاد بَلَد NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 171 obl _ _ +174 ل لِ ADP P--------- AdpType=Prep 176 mark _ _ +175-176 لبحث _ _ _ _ _ _ _ _ +175 ل لِ CCONJ C--------- _ 176 mark _ _ +176 بحث بَحث VERB VP-P-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Pass 171 advcl _ _ +177 في فِي ADP P--------- AdpType=Prep 178 case _ _ +178 التدابير تَدبِير NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 176 obj _ _ +179 اللوجيستية لُوجِيستِيَّة ADJ A-----FS2D Case=Gen|Definite=Def|Gender=Fem|Number=Sing 178 amod _ SpaceAfter=No +180 , , PUNCT G--------- _ 179 punct _ _ +181 على عَلَى ADP P--------- AdpType=Prep 183 mark _ _ +182 ان أَن CCONJ C--------- _ 183 mark _ _ +183 يلحق أَلحَق VERB VIIA-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 176 advcl _ _ +184 ب بِ ADP P--------- AdpType=Prep 185 case _ _ +185 هم هُوَ PRON SP---3MP2- Case=Gen|Gender=Masc|Number=Plur|Person=3|PronType=Prs 183 obj _ _ +186 الاخرون آخَر ADJ A-----MP1D Case=Nom|Definite=Def|Gender=Masc|Number=Plur 183 nsubj _ _ +187 تباعاً تِبَاع NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 183 obl _ SpaceAfter=No +188 , , PUNCT G--------- _ 187 punct _ _ +189 بدءا بَدء NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 183 obl _ _ +190 من مِن ADP P--------- AdpType=Prep 191 case _ _ +191 اليوم يَوم NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 189 obl _ SpaceAfter=No +192 . . PUNCT G--------- _ 1 punct _ _ +193 و وَ CCONJ C--------- _ 1 cc _ _ +194 في فِي ADP P--------- AdpType=Prep 195 case _ _ +195-196 الاجمال _ _ _ _ _ _ _ SpaceAfter=No +195 الاجمال الاجمال NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 1 nmod _ _ +196 والجمال والجمال X U--------- _ 195 nmod _ _ +197 , , PUNCT G--------- _ 196 punct _ _ +198 س سَ PART F--------- _ 199 aux _ _ +199 يشارك شَارَك VERB VIIA-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 0 root _ _ +200 500 500 NUM Q--------- NumForm=Digit 199 obj _ _ +201 جندي جُندِيّ NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 200 nmod _ _ +202 اميركي أَمِيرِكِيّ ADJ A-----MS2I Case=Gen|Definite=Ind|Gender=Masc|Number=Sing 201 amod _ _ +203 في فِي ADP P--------- AdpType=Prep 204 case _ _ +204 عمليات عَمَلِيَّة NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 199 obl _ SpaceAfter=No +205 " " PUNCT G--------- _ 204 punct _ _ +206 دعم دَعم NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 199 obj _ _ +207 و وَ CCONJ C--------- _ 208 cc _ _ +208 صيانة صِيَانَة NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 206 conj _ SpaceAfter=No +209 " " PUNCT G--------- _ 206 punct _ SpaceAfter=No +210 , , PUNCT G--------- _ 209 punct _ _ +211 بينما بَينَمَا CCONJ C--------- _ 213 mark _ _ +212 س سَ PART F--------- _ 213 aux _ _ +213 يسمح سَمَح VERB VIIP-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Pass 199 advcl _ _ +214 ل لِ ADP P--------- AdpType=Prep 215 case _ _ +215 لاخرين لاخرين NOUN N------D2I Case=Gen|Definite=Ind|Number=Dual 213 obj _ SpaceAfter=No +216 , , PUNCT G--------- _ 215 punct _ _ +217 و وَ CCONJ C--------- _ 219 cc _ _ +218 هم هُوَ PRON SP---3MP1- Case=Nom|Gender=Masc|Number=Plur|Person=3|PronType=Prs 219 nsubj _ _ +219 اعضاء عُضو NOUN N------P1I Case=Nom|Definite=Ind|Number=Plur 199 conj _ _ +220 في فِي ADP P--------- AdpType=Prep 221 case _ _ +221 القوات قُوَّة NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 219 nmod _ _ +222 الخاصة خَاصّ ADJ A-----FS2D Case=Gen|Definite=Def|Gender=Fem|Number=Sing 221 amod _ SpaceAfter=No +223 , , PUNCT G--------- _ 222 punct _ _ +224 ب بِ ADP P--------- AdpType=Prep 225 case _ _ +225 مشاركة مُشَارَكَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 219 obl _ _ +226 الجنود جُندِيّ NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 225 nmod _ _ +227 الفيليبينيين فِيلِيبِينِيّ ADJ A-----MP2D Case=Gen|Definite=Def|Gender=Masc|Number=Plur 226 amod _ _ +228 أحياناً حِين NOUN N------P4I Case=Acc|Definite=Ind|Number=Plur 225 obj _ _ +229 في فِي ADP P--------- AdpType=Prep 230 case _ _ +230 مطاردة مُطاَرِد NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 228 nmod _ _ +231 المتطرفين مُتَطَرِّف ADJ A-----MP2D Case=Gen|Definite=Def|Gender=Masc|Number=Plur 230 amod _ _ +232 الاسلاميين إِسلَامِيّ ADJ A-----MP2D Case=Gen|Definite=Def|Gender=Masc|Number=Plur 230 amod _ _ +233 في فِي ADP P--------- AdpType=Prep 234 case _ _ +234 جزيرة جَزِيرَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 230 nmod _ _ +235 باسيلان باسيلان X X--------- Foreign=Yes 234 nmod _ _ +236 في فِي ADP P--------- AdpType=Prep 237 case _ _ +237 جنوب جَنُوب NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 234 nmod _ _ +238 البلاد بَلَد NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 237 nmod _ SpaceAfter=No +239 . . PUNCT G--------- _ 199 punct _ _ +240 و وَ CCONJ C--------- _ 199 cc _ _ +241 اوضح أَوضَح VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 199 parataxis _ _ +242 ان أَنَّ CCONJ C--------- _ 246 mark _ _ +243 الاميركيين أَمِيرِكِيّ NOUN N------P4D Case=Acc|Definite=Def|Number=Plur 246 nsubj _ SpaceAfter=No +244 " " PUNCT G--------- _ 246 punct _ _ +245 لن لَن PART F--------- _ 246 advmod _ _ +246 يشاركوا يشاركوا VERB VP-A-3MP-- Aspect=Perf|Gender=Masc|Number=Plur|Person=3|Voice=Act 241 ccomp _ _ +247 في فِي ADP P--------- AdpType=Prep 248 case _ _ +248 المعارك مَعرَكَة NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 246 obl _ _ +249 و وَ CCONJ C--------- _ 253 cc _ _ +250 لكن لٰكِنَّ CCONJ C--------- _ 253 cc _ _ +251 هم هُوَ PRON SP---3MP4- Case=Acc|Gender=Masc|Number=Plur|Person=3|PronType=Prs 253 nsubj _ _ +252 س سَ PART F--------- _ 253 aux _ _ +253 يكونون يكونون VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 246 conj _ _ +254 مسلحين مُسَلَّح X U--------- _ 253 obj _ _ +255 و وَ CCONJ C--------- _ 256 cc _ _ +256 يستطيعون اِستَطَاع VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 253 conj _ _ +257 الدفاع دِفَاع NOUN N------S4D Case=Acc|Definite=Def|Number=Sing 256 obj _ _ +258 عن عَن ADP P--------- AdpType=Prep 259 case _ _ +259 انفس نَفس NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 257 nmod _ _ +260 هم هُوَ PRON SP---3MP2- Case=Gen|Gender=Masc|Number=Plur|Person=3|PronType=Prs 259 nmod _ _ +261 عند عِندَ ADP PI------4- AdpType=Prep|Case=Acc 262 case _ _ +262 ما مَا DET S--------- _ 256 obl _ _ +263 يتعرضون تَعَرَّض VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 262 acl _ _ +264 ل لِ ADP P--------- AdpType=Prep 265 case _ _ +265 هجوم هُجُوم NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 263 obj _ SpaceAfter=No +266 " " PUNCT G--------- _ 265 punct _ SpaceAfter=No +267 , , PUNCT G--------- _ 266 punct _ _ +268 مؤكدا مُؤَكِّد ADJ A-----MS4I Case=Acc|Definite=Ind|Gender=Masc|Number=Sing 241 xcomp _ _ +269 في فِي ADP P--------- AdpType=Prep 270 case _ _ +270 الوقت وَقت NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 268 obl _ _ +271 نفس نَفس NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 270 nmod _ _ +272 ه هُوَ PRON SP---3MS2- Case=Gen|Gender=Masc|Number=Sing|Person=3|PronType=Prs 271 nmod _ _ +273 ان أَنَّ CCONJ C--------- _ 276 mark _ _ +274 ها هُوَ PRON SP---3FS4- Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 276 nsubj _ _ +275 ليست لَيس AUX VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 276 cop _ _ +276 عملية عَمَلِيَّة NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 268 ccomp _ _ +277 سرية سِرِّيّ ADJ A-----FS4I Case=Acc|Definite=Ind|Gender=Fem|Number=Sing 276 amod _ _ +278 ل لِ ADP P--------- AdpType=Prep 280 case _ _ +279-280 لجيش _ _ _ _ _ _ _ _ +279 ل لِ ADP P--------- AdpType=Prep 280 case _ _ +280 جيش جَيش NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 277 obl _ _ +281 الاميركي أَمِيرِكِيّ NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 280 nmod _ SpaceAfter=No +282 . . PUNCT G--------- _ 199 punct _ _ +283 و وَ CCONJ C--------- _ 199 cc _ _ +284 س سَ PART F--------- _ 285 aux _ _ +285 يشارك شَارَك VERB VIIA-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 199 parataxis _ _ +286 نحو نَحوَ ADP PI------4- AdpType=Prep|Case=Acc 287 case _ _ +287 1200 1200 NUM Q--------- NumForm=Digit 285 obj _ _ +288 جندي جُندِيّ NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 287 nmod _ _ +289 فيليبيني فيليبيني ADJ A-----MS2I Case=Gen|Definite=Ind|Gender=Masc|Number=Sing 288 amod _ _ +290 في فِي ADP P--------- AdpType=Prep 291 case _ _ +291 التدريبات تَدرِيب NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 285 obl _ _ +292 التي اَلَّذِي DET SR----FS2- Case=Gen|Gender=Fem|Number=Sing|PronType=Rel 291 cc _ _ +293 تمتد اِمتَدّ VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 291 acl _ _ +294 بين بَينَ ADP PI------4- AdpType=Prep|Case=Acc 295 case _ _ +295 كانون كَانُون NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 293 obl _ _ +296 الثاني ثَانِي ADJ A-----MS2D Case=Gen|Definite=Def|Gender=Masc|Number=Sing 295 amod _ _ +297 و وَ CCONJ C--------- _ 298 cc _ _ +298 حزيران حَزِيرَان NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 295 conj _ SpaceAfter=No +299 , , PUNCT G--------- _ 298 punct _ _ +300 و وَ CCONJ C--------- _ 302 cc _ _ +301 قد قَد PART F--------- _ 302 aux _ _ +302 تستمر اِستَمَرّ VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 285 conj _ _ +303 طوال طِوَالَ ADP PI------4- AdpType=Prep|Case=Acc 304 case _ _ +304 السنة سَنَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 302 obl _ SpaceAfter=No +305 " " PUNCT G--------- _ 306 punct _ _ +306 تبعاً تَبَع NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 302 xcomp _ _ +307 ل لِ ADP P--------- AdpType=Prep 308 case _ _ +308 تطورات تَطَوُّر NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 306 nmod _ _ +309 الاوضاع وَضع NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 308 nmod _ SpaceAfter=No +310 " " PUNCT G--------- _ 306 punct _ SpaceAfter=No +311 . . PUNCT G--------- _ 199 punct _ _ +312 و وَ CCONJ C--------- _ 199 cc _ _ +313 يذكر ذَكَر VERB VIIP-3MS-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Pass 199 parataxis _ _ +314 ان أَنَّ CCONJ C--------- _ 320 mark _ _ +315 جماعة جَمَاعَة NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 320 nsubj _ SpaceAfter=No +316 " " PUNCT G--------- _ 318 punct _ _ +317 ابو ابو X U--------- _ 318 nmod _ _ +318 سياف سياف X U--------- _ 315 nmod _ SpaceAfter=No +319 " " PUNCT G--------- _ 318 punct _ _ +320 تمكنت تَمَكَّن X U--------- _ 313 obj _ _ +321 من مِن ADP P--------- AdpType=Prep 322 case _ _ +322 النجاة النجاة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 320 obj _ _ +323 من مِن ADP P--------- AdpType=Prep 324 case _ _ +324 عملية عَمَلِيَّة NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 322 nmod _ _ +325 واسعة وَاسِع ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 324 amod _ _ +326 نفذ نَفَّذ VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 324 acl _ _ +327 ها هُوَ PRON SP---3FS4- Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 326 obj _ _ +328 الجيش جَيش NOUN N------S1D Case=Nom|Definite=Def|Number=Sing 326 nsubj _ _ +329 الفيليبيني فِيلِيبِينِيّ ADJ A-----MS1D Case=Nom|Definite=Def|Gender=Masc|Number=Sing 328 amod _ _ +330 في فِي ADP P--------- AdpType=Prep 331 case _ _ +331 الادغال الادغال NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 326 obl _ _ +332 في فِي ADP P--------- AdpType=Prep 333 case _ _ +333 جنوب جَنُوب NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 331 nmod _ _ +334 البلاد بَلَد NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 333 nmod _ SpaceAfter=No +335 . . PUNCT G--------- _ 199 punct _ _ +336 و وَ CCONJ C--------- _ 199 cc _ _ +337 صرح صَرَّح VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 199 parataxis _ _ +338 الناطق نَاطِق NOUN N------S1D Case=Nom|Definite=Def|Number=Sing 337 nsubj _ _ +339 العسكري عَسكَرِيّ ADJ A-----MS1D Case=Nom|Definite=Def|Gender=Masc|Number=Sing 338 amod _ _ +340 الجنرال جِنِرَال NOUN N------S1D Case=Nom|Definite=Def|Number=Sing 338 nmod _ _ +341 اديلبيرتو اديلبيرتو X U--------- _ 342 nmod _ _ +342 ادان ادان X U--------- _ 340 nmod _ _ +343 ان أَنَّ CCONJ C--------- _ 346 mark _ _ +344 الجنود جُندِيّ NOUN N------P4R Case=Acc|Definite=Cons|Number=Plur 346 nsubj _ _ +345 الاميركيين أَمِيرِكِيّ NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 344 nmod _ _ +346 حُذروا حَذَّر VERB VP-A-3MP-- Aspect=Perf|Gender=Masc|Number=Plur|Person=3|Voice=Act 337 ccomp _ _ +347 من مِن ADP P--------- AdpType=Prep 348 case _ _ +348 المخاطر مَخَاطِر NOUN N------P2D Case=Gen|Definite=Def|Number=Plur 346 obj _ _ +349 التي اَلَّذِي DET SR----FS2- Case=Gen|Gender=Fem|Number=Sing|PronType=Rel 348 cc _ _ +350 قد قَد PART F--------- _ 351 advmod:emph _ _ +351 يواجهون وَاجَه VERB VIIA-3MP-- Aspect=Imp|Gender=Masc|Mood=Ind|Number=Plur|Person=3|VerbForm=Fin|Voice=Act 348 acl _ _ +352 ها هُوَ PRON SP---3FS4- Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 351 obj _ _ +353 في فِي ADP P--------- AdpType=Prep 354 case _ _ +354 باسيلان باسيلان X X--------- Foreign=Yes 351 advmod _ SpaceAfter=No +355 . . PUNCT G--------- _ 199 punct _ _ +356 و وَ CCONJ C--------- _ 199 cc _ _ +357 قال قَال VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 199 parataxis _ _ +358 الناطق نَاطِق NOUN N------S1D Case=Nom|Definite=Def|Number=Sing 357 nsubj _ _ +359 ب بِ ADP P--------- AdpType=Prep 360 case _ _ +360 اسم اِسم NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 358 nmod _ _ +361 الرئاسة رِئَاسَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 360 nmod _ _ +362 ريغوبيرتو ريغوبيرتو X U--------- _ 363 nmod _ _ +363 تيغلاو تيغلاو X U--------- _ 358 nmod _ SpaceAfter=No +364 : : PUNCT G--------- _ 363 punct _ SpaceAfter=No +365 " " PUNCT G--------- _ 366 punct _ _ +366 أخذنا إِخذن X U--------- _ 357 obj _ _ +367 في فِي ADP P--------- AdpType=Prep 368 case _ _ +368 الاعتبار اِعتِبَار NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 366 obj _ _ +369 في فِي ADP P--------- AdpType=Prep 370 case _ _ +370 تحضيرات تحضيرات NOUN N------P2R Case=Gen|Definite=Cons|Number=Plur 366 obl _ _ +371 نا هُوَ PRON SP---1MP2- Case=Gen|Gender=Masc|Number=Plur|Person=1|PronType=Prs 370 nmod _ _ +372 امكان إِمكَان NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 366 obl _ _ +373 تكبد تَكَبَّد VERB VIIA-3FS-- Aspect=Imp|Gender=Fem|Mood=Ind|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 372 acl _ _ +374 هم هُوَ PRON SP---3MP4- Case=Acc|Gender=Masc|Number=Plur|Person=3|PronType=Prs 373 obj _ _ +375 خسائر خَسَارَة NOUN N------P1R Case=Nom|Definite=Cons|Number=Plur 373 nsubj _ SpaceAfter=No +376 " " PUNCT G--------- _ 379 punct _ SpaceAfter=No +377 . . PUNCT G--------- _ 376 punct _ _ +378 على عَلَى ADP P--------- AdpType=Prep 379 case _ _ +379 صعيد صَعِيد NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 373 obl _ _ +380 آخر آخَر ADJ A-----MS2I Case=Gen|Definite=Ind|Gender=Masc|Number=Sing 379 amod _ SpaceAfter=No +381 , , PUNCT G--------- _ 379 punct _ _ +382 تحطمت تَحَطَّم VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 379 advcl _ _ +383 امس أَمسِ ADV D--------- _ 382 advmod _ _ +384 طائرة طَائِرَة NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 382 obj _ _ +385 تدريب تَدرِيب NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 384 nmod _ _ +386 عسكرية عَسكَرِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 384 amod _ _ +387 في فِي ADP P--------- AdpType=Prep 388 case _ _ +388 منطقة مِنطَقَة NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 382 obl _ _ +389 سكنية سَكَنِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 388 amod _ _ +390 في فِي ADP P--------- AdpType=Prep 391 case _ _ +391 مدينة مَدِينَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 388 nmod _ _ +392 كاباناتوان كاباناتوان X U--------- _ 391 nmod _ _ +393 على عَلَى ADP P--------- AdpType=Prep 394 case _ _ +394 مسافة مَسَافَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 382 obl _ _ +395 مئة مِئَة NUM QC-----S2R Case=Gen|Definite=Cons|Number=Sing|NumForm=Word 394 nummod _ _ +396 كيلومتر كِيلُومِتر X U--------- _ 395 nmod _ _ +397 شمال شَمَال NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 396 nmod _ _ +398 مانيلا مَانِيلَا X X--------- Foreign=Yes 397 nmod _ SpaceAfter=No +399 , , PUNCT G--------- _ 398 punct _ _ +400 م م X Y--------- Abbr=Yes 396 nmod _ _ +401 ما مَا DET S--------- _ 402 cc _ _ +402 ادى أَدَّى VERB VP-A-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Act 382 conj _ _ +403 الى إِلَى ADP P--------- AdpType=Prep 404 case _ _ +404 مقتل مَقتَل NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 402 obj _ _ +405 خمسة خَمسَة NUM QV----M-2R Case=Gen|Definite=Cons|Gender=Masc|NumForm=Word|NumValue=3 404 nummod _ _ +406 اشخاص شَخص NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 405 nmod _ _ +407 و وَ CCONJ C--------- _ 408 cc _ _ +408-409 احتراق _ _ _ _ _ _ _ _ +408 احتراق احتراق NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 404 conj _ _ +409 واحتراق واحتراق NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 408 nmod _ _ +410 اكثر أَكثَر ADJ A-----MS2I Case=Gen|Definite=Ind|Gender=Masc|Number=Sing 409 amod _ _ +411 من مِن ADP P--------- AdpType=Prep 412 case _ _ +412 20 20 NUM Q--------- NumForm=Digit 410 nummod _ _ +413 منزلا مَنزِل NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 412 nmod _ SpaceAfter=No +414 . . PUNCT G--------- _ 199 punct _ _ + +# sent_id = 2 +# text = و لم يتسن على الفور معرفة سبب الحادث, الا ان مسؤولين عسكريين قالوا ان طائرة التدريب الايطالية الصنع من طراز" سياي مارشيتي اس 211" التابعة ل لقوات الجوية كانت في مهمة تدريب روتينية, عند ما تحطمت. و قتل قائد الطائرة و مساعد ه على الفور اضافة الى ثلاثة مدنيين على الارض و جرح عدد آخر. و نقلت اذاعة محلية عن مسؤولين في الشرطة ان 21 منزلا احترقت و ان ثلاثة اخرى لحقت ب ها اضرار.-LRB-و ص ف, رويترز, أب-RRB- +1 و وَ CCONJ C--------- _ 0 root _ _ +2 لم لَم PART F--------- _ 3 advmod _ _ +3 يتسن يتسن VERB VIJA-3MS-- Aspect=Imp|Gender=Masc|Mood=Jus|Number=Sing|Person=3|VerbForm=Fin|Voice=Act 1 parataxis _ _ +4 على عَلَى ADP P--------- AdpType=Prep 5 case _ _ +5 الفور الفور X U--------- _ 3 advmod _ _ +6 معرفة مَعرِفَة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 3 nsubj _ _ +7 سبب سَبَب NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 6 nmod _ _ +8 الحادث حَادِث NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 7 nmod _ SpaceAfter=No +9 , , PUNCT G--------- _ 8 punct _ _ +10 الا إِلَّا PART F--------- _ 11 cc _ _ +11 ان أَنَّ CCONJ C--------- _ 3 conj _ _ +12 مسؤولين مَسؤُول NOUN N------P4I Case=Acc|Definite=Ind|Number=Plur 11 nsubj _ _ +13 عسكريين عَسكَرِيّ ADJ A-----MP4I Case=Acc|Definite=Ind|Gender=Masc|Number=Plur 12 amod _ _ +14 قالوا قَال VERB VP-A-3MP-- Aspect=Perf|Gender=Masc|Number=Plur|Person=3|Voice=Act 12 acl _ _ +15 ان أَنَّ CCONJ C--------- _ 19 mark _ _ +16 طائرة طَائِرَة NOUN N------S4R Case=Acc|Definite=Cons|Number=Sing 19 nsubj:pass _ _ +17 التدريب تَدرِيب NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 16 nmod _ _ +18 الايطالية إِيطَالِيّ ADJ A-----FS2D Case=Gen|Definite=Def|Gender=Fem|Number=Sing 17 amod _ _ +19 الصنع صَنع VERB VP-P-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Pass 14 ccomp _ _ +20 من مِن ADP P--------- AdpType=Prep 21 case _ _ +21 طراز طِرَاز NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 19 obj _ SpaceAfter=No +22 " " PUNCT G--------- _ 23 punct _ _ +23 سياي سياي X U--------- _ 21 nmod _ _ +24 مارشيتي مارشيتي X U--------- _ 23 nmod _ _ +25 اس إِس X U--------- _ 24 nmod _ _ +26 211 211 NUM Q--------- NumForm=Digit 25 nummod _ SpaceAfter=No +27 " " PUNCT G--------- _ 26 punct _ _ +28 التابعة تَابِع ADJ A-----FS1D Case=Nom|Definite=Def|Gender=Fem|Number=Sing 23 amod _ _ +29 ل لِ ADP P--------- AdpType=Prep 31 case _ _ +30-31 لقوات _ _ _ _ _ _ _ _ +30 ل لِ ADP P--------- AdpType=Prep 31 case _ _ +31 قوات قُوَّة NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 28 obj _ _ +32 الجوية جَوِّيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 31 amod _ _ +33 كانت كَان VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 19 xcomp _ _ +34 في فِي ADP P--------- AdpType=Prep 35 case _ _ +35 مهمة مَهَمَّة NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 33 obl _ _ +36 تدريب تَدرِيب NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 35 nmod _ _ +37 روتينية رُوتِينِيّ ADJ A-----FS2I Case=Gen|Definite=Ind|Gender=Fem|Number=Sing 36 amod _ SpaceAfter=No +38 , , PUNCT G--------- _ 37 punct _ _ +39 عند عِندَ ADP PI------4- AdpType=Prep|Case=Acc 40 case _ _ +40 ما مَا DET S--------- _ 33 obl _ _ +41 تحطمت تَحَطَّم VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 40 acl _ SpaceAfter=No +42 . . PUNCT G--------- _ 1 punct _ _ +43 و وَ CCONJ C--------- _ 1 cc _ _ +44 قتل قَتَل VERB VP-P-3MS-- Aspect=Perf|Gender=Masc|Number=Sing|Person=3|Voice=Pass 1 parataxis _ _ +45 قائد قَائِد NOUN N------S1R Case=Nom|Definite=Cons|Number=Sing 44 nsubj _ _ +46 الطائرة طَائِرَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 45 nmod _ _ +47 و وَ CCONJ C--------- _ 48 cc _ _ +48 مساعد مُسَاعِد NOUN N------S1R Case=Nom|Definite=Cons|Number=Sing 45 conj _ _ +49 ه هُوَ PRON SP---3MS2- Case=Gen|Gender=Masc|Number=Sing|Person=3|PronType=Prs 48 nmod _ _ +50 على عَلَى ADP P--------- AdpType=Prep 51 case _ _ +51 الفور الفور X U--------- _ 44 advmod _ _ +52 اضافة إِضَافَة NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 54 cc _ _ +53 الى إِلَى ADP P--------- AdpType=Prep 54 cc _ _ +54 ثلاثة ثَلَاثَة NUM QV----M-2R Case=Gen|Definite=Cons|Gender=Masc|NumForm=Word|NumValue=3 44 obl _ _ +55 مدنيين مَدَنِيّ ADJ A-----MP2I Case=Gen|Definite=Ind|Gender=Masc|Number=Plur 54 amod _ _ +56 على عَلَى ADP P--------- AdpType=Prep 57 case _ _ +57 الارض أَرض NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 54 nmod _ _ +58 و وَ CCONJ C--------- _ 59 cc _ _ +59 جرح جَرَح NOUN N------S2R Case=Gen|Definite=Cons|Number=Sing 57 conj _ _ +60 عدد عَدَد NOUN N------S2I Case=Gen|Definite=Ind|Number=Sing 54 nmod _ _ +61 آخر آخَر ADJ A-----MS2I Case=Gen|Definite=Ind|Gender=Masc|Number=Sing 60 amod _ SpaceAfter=No +62 . . PUNCT G--------- _ 1 punct _ _ +63 و وَ CCONJ C--------- _ 1 cc _ _ +64 نقلت نَقَل VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 1 parataxis _ _ +65 اذاعة إِذَاعَة NOUN N------S1R Case=Nom|Definite=Cons|Number=Sing 64 nsubj _ _ +66 محلية مَحَلِّيّ ADJ A-----FS1I Case=Nom|Definite=Ind|Gender=Fem|Number=Sing 65 amod _ _ +67 عن عَن ADP P--------- AdpType=Prep 68 case _ _ +68 مسؤولين مَسؤُول NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 64 iobj _ _ +69 في فِي ADP P--------- AdpType=Prep 70 case _ _ +70 الشرطة شُرطَة NOUN N------S2D Case=Gen|Definite=Def|Number=Sing 68 nmod _ _ +71 ان أَنَّ CCONJ C--------- _ 74 mark _ _ +72 21 21 NUM Q--------- NumForm=Digit 74 nsubj _ _ +73 منزلا مَنزِل NOUN N------S4I Case=Acc|Definite=Ind|Number=Sing 72 nmod _ _ +74 احترقت أَحترَق VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 64 ccomp _ _ +75 و وَ CCONJ C--------- _ 79 cc _ _ +76 ان أَنَّ CCONJ C--------- _ 79 mark _ _ +77 ثلاثة ثَلَاثَة NUM QV----M-4R Case=Acc|Definite=Cons|Gender=Masc|NumForm=Word|NumValue=3 79 nsubj _ _ +78 اخرى آخَر ADJ A-----FS4I Case=Acc|Definite=Ind|Gender=Fem|Number=Sing 77 amod _ _ +79 لحقت لَحِق VERB VP-A-3FS-- Aspect=Perf|Gender=Fem|Number=Sing|Person=3|Voice=Act 74 conj _ _ +80 ب بِ ADP P--------- AdpType=Prep 81 case _ _ +81 ها هُوَ PRON SP---3FS2- Case=Gen|Gender=Fem|Number=Sing|Person=3|PronType=Prs 79 obj _ _ +82 اضرار ضَرَر NOUN N------P2I Case=Gen|Definite=Ind|Number=Plur 79 obj _ SpaceAfter=No +83 . . PUNCT G--------- _ 1 punct _ SpaceAfter=No +84 - - PUNCT G--------- _ 85 punct _ SpaceAfter=No +85 LRB LRB X U--------- _ 1 dep _ SpaceAfter=No +86 - - PUNCT G--------- _ 85 punct _ SpaceAfter=No +87 و وَ CCONJ C--------- _ 1 cc _ _ +88 ص ص X Y--------- Abbr=Yes 1 parataxis _ _ +89 ف فَ CCONJ C--------- _ 88 appos _ SpaceAfter=No +90 , , PUNCT G--------- _ 89 punct _ _ +91 رويترز رُويتِرز X X--------- Foreign=Yes 89 parataxis _ SpaceAfter=No +92 , , PUNCT G--------- _ 91 punct _ _ +93 أب آب X U--------- _ 91 dep _ SpaceAfter=No +94 - - PUNCT G--------- _ 93 punct _ SpaceAfter=No +95 RRB RRB X U--------- _ 93 conj _ SpaceAfter=No +96 - - PUNCT G--------- _ 95 punct _ SpaceAfter=No + diff --git a/demo/ann_0001.onf b/demo/ann_0001.onf new file mode 100644 index 00000000..7dad9421 --- /dev/null +++ b/demo/ann_0001.onf @@ -0,0 +1,1949 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + 650 جندياً أميركياً إلى الفيليبين من اليوم في بعثة تدريبية ل لقضاء على " أبو سياف " + +Treebanked sentence: +-------------------- + 650 جُنْدِيّاً أَمِيرْكِيّاً إِلَى الفِيلِيبِّين مِن اليَوْمِ فِي بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -القَضاءِ عَلَى " أَبُو + سَيّاف " + +Tree: +----- + (TOP (FRAG (NP (NOUN_NUM 650) + (NP (NOUN+CASE_INDEF_ACC جُنْدِيّاً) + (ADJ+CASE_INDEF_ACC أَمِيرْكِيّاً))) + (PP-DIR (PREP إِلَى) + (NP (DET+NOUN_PROP الفِيلِيبِّين))) + (PP-TMP (PREP مِن) + (NP (DET+NOUN+CASE_DEF_GEN اليَوْمِ))) + (PP (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_GEN بِعْثَةٍ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN تَدْرِيبِيَّةٍ)) + (PP-PRP (PREP لِ-) + (NP (NP (DET+NOUN+CASE_DEF_GEN -القَضاءِ)) + (PP (PREP عَلَى) + (NP (PUNC ") + (NOUN_PROP أَبُو) + (NOUN_PROP سَيّاف) + (PUNC "))))))))) + +Leaves: +------- + 0 650 + ! coref: IDENT 0 0-4 650 جُنْدِيّاً أَمِيرْكِيّاً إِلَى الفِيلِيبِّين + name: CARDINAL 0-0 650 + 1 جُنْدِيّاً + 2 أَمِيرْكِيّاً + name: NORP 2-2 أَمِيرْكِيّاً + 3 إِلَى + 4 الفِيلِيبِّين + coref: IDENT 1 4-4 الفِيلِيبِّين + name: GPE 4-4 الفِيلِيبِّين + 5 مِن + 6 اليَوْمِ + sense: yawom-n.1 + name: DATE 6-6 اليَوْمِ + 7 فِي + 8 بِعْثَةٍ + sense: baEovap-n.1 + coref: IDENT 3 8-16 بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -القَضاءِ عَلَى " أَبُو سَيّاف " + 9 تَدْرِيبِيَّةٍ + 10 لِ- + 11 -القَضاءِ + 12 عَلَى + 13 " + coref: IDENT 5 13-16 " أَبُو سَيّاف " + name: ORG 13-16 " أَبُو سَيّاف " + 14 أَبُو + 15 سَيّاف + 16 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + بعد ما تضاربت المعلومات الاسبوع الماضي عن عدد الجنود الاميركيين الذين س يشاركون في بعثة تدريبية ل مكافحة الارهاب في + الفيليبين, في إطار جهود واشنطن ل مكافحة الارهاب في العالم, أفاد أمس مسؤولون عسكريون في مانيلا ان نحو 650 جندياً اميركياً + س ينضمون تباعاً الى قوات فيليبينية ل تعزيز قدرات ها الدفاعية من أجل القضاء على جماعة " أبو سياف " التي تربط ها صلات ب + تنظيم " القاعدة " الذي يتزعم ه اسامة بن لادن, م ما س يتيح ل هم الانتقال الى مناطق القتال في جنوب البلاد. + +Treebanked sentence: +-------------------- + بَعْدَ- -ما تَضارَبَت المَعْلُوماتُ *ICH*-6 الأُسْبُوعَ الماضِيَ عَن عَدَدِ الجُنُودِ الأَمِيرْكِيِّينَ الَّذِينَ سَ- + -يُشارِكُونَ *T*-1 فِي بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -مُكافَحَةِ الإِرْهابِ فِي الفِيلِيبِّين , فِي إِطارِ جُهُودِ + واشِنْطُن لِ- -مُكافَحَةِ الإِرْهابِ فِي العالَمِ , أَفادَ أَمْسِ مَسْؤُولُونَ عَسْكَرِيُّونَ فِي مانِيلا أَنَّ نَحْوَ + 650 جُنْدِيّاً أَمِيرْكِيّاً سَ- -يَنْضَمُّونَ *T*-3 تِباعاً إِلَى قُوّاتٍ فِلِيبِّينِيَّةٍ لِ- -تَعْزِيزِ قُدْراتِ- -ها + الدِفاعِيَّةِ مِن أَجْلِ القَضاءِ عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي تَرْبِطُ- -ها *T*-5 صِلاتٌ بِ- -تَنْظِيمِ " + القاعِدَةِ " الَّذِي يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن , مِن- -ما سَ- -يُتِيحُ *T*-2 لَ- -هُم ال{ِنْتِقالَ إِلَى + مَناطِقِ القِتالِ فِي جَنُوبِ البِلادِ . + +Tree: +----- + (TOP (S (NP-TMP (NOUN+CASE_DEF_ACC بَعْدَ-) + (SBAR (SUB_CONJ -ما) + (S (VP (PV+PVSUFF_SUBJ:3FS تَضارَبَت) + (NP-SBJ (NP (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_NOM المَعْلُوماتُ)) + (PP (-NONE- *ICH*-6))) + (NP-TMP (DET+NOUN+CASE_DEF_ACC الأُسْبُوعَ) + (DET+ADJ+CASE_DEF_ACC الماضِيَ)) + (PP-6 (PREP عَن) + (NP (NOUN+CASE_DEF_GEN عَدَدِ) + (NP (NP (DET+NOUN+CASE_DEF_GEN الجُنُودِ) + (DET+ADJ+NSUFF_MASC_PL_GEN الأَمِيرْكِيِّينَ)) + (SBAR (WHNP-1 (REL_PRON الَّذِينَ)) + (S (VP (PRT (FUT_PART سَ-)) + (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I -يُشارِكُونَ) + (NP-SBJ (-NONE- *T*-1)) + (PP-CLR (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_GEN بِعْثَةٍ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN + تَدْرِيبِيَّةٍ)) + (PP-PRP (PREP لِ-) + (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN + -مُكافَحَةِ) + (NP (DET+NOUN+CASE_DEF_GEN + الإِرْهابِ)))) + (PP-LOC (PREP فِي) + (NP (DET+NOUN_PROP الفِيلِيبِّين))))) + (PUNC ,) + (PP (PREP فِي) + (NP (NOUN+CASE_DEF_GEN إِطارِ) + (NP (NP (NOUN+CASE_DEF_GEN جُهُودِ) + (NP (NOUN_PROP واشِنْطُن))) + (PP (PREP لِ-) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN + -مُكافَحَةِ) + (NP (DET+NOUN+CASE_DEF_GEN الإِرْهابِ))) + (PP-LOC (PREP فِي) + (NP (DET+NOUN+CASE_DEF_GEN + العالَمِ)))))))))))))))))) + (PUNC ,) + (VP (PV+PVSUFF_SUBJ:3MS أَفادَ) + (NP-TMP (NOUN+CASE_DEF_GEN أَمْسِ)) + (NP-SBJ (NP (NOUN+NSUFF_MASC_PL_NOM مَسْؤُولُونَ) + (ADJ+NSUFF_MASC_PL_NOM عَسْكَرِيُّونَ)) + (PP-LOC (PREP فِي) + (NP (NOUN_PROP مانِيلا)))) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-3 (NOUN+CASE_DEF_ACC نَحْوَ) + (NP (NOUN_NUM 650) + (NP (NOUN+CASE_INDEF_ACC جُنْدِيّاً) + (ADJ+CASE_INDEF_ACC أَمِيرْكِيّاً)))) + (VP (PRT (FUT_PART سَ-)) + (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I -يَنْضَمُّونَ) + (NP-SBJ (-NONE- *T*-3)) + (NP-MNR (NOUN+CASE_INDEF_ACC تِباعاً)) + (PP-CLR (PREP إِلَى) + (NP (NOUN+NSUFF_FEM_PL+CASE_INDEF_GEN قُوّاتٍ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN فِلِيبِّينِيَّةٍ))) + (PP-PRP (PREP لِ-) + (NP (NOUN+CASE_DEF_GEN -تَعْزِيزِ) + (NP (NP (NOUN+NSUFF_FEM_PL+CASE_DEF_GEN قُدْراتِ-) + (NP (POSS_PRON_3FS -ها))) + (ADJP (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_GEN الدِفاعِيَّةِ))))) + (PP-PRP (PREP مِن) + (NP (NOUN+CASE_DEF_GEN أَجْلِ) + (NP (NP (DET+NOUN+CASE_DEF_GEN القَضاءِ)) + (PP (PREP عَلَى) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN جَماعَةِ) + (NP (PUNC ") + (NOUN_PROP أَبُو) + (NOUN_PROP سَيّاف) + (PUNC "))) + (SBAR (WHNP-5 (REL_PRON الَّتِي)) + (S (VP (IV3FS+IV+IVSUFF_MOOD:I تَرْبِطُ-) + (NP-OBJ (NP (IVSUFF_DO:3FS -ها)) + (NP (-NONE- *T*-5))) + (NP-SBJ (NOUN+NSUFF_FEM_PL+CASE_INDEF_NOM صِلاتٌ)) + (PP-CLR (PREP بِ-) + (NP (NP (NOUN+CASE_DEF_GEN -تَنْظِيمِ) + (NP (PUNC ") + + (DET+NOUN_PROP+NSUFF_FEM_SG+CASE_DEF_GEN القاعِدَةِ) + (PUNC "))) + (SBAR (WHNP-4 (REL_PRON الَّذِي)) + (S (VP (IV3MS+IV+IVSUFF_MOOD:I + يَتَزَعَّمُ-) + (NP-OBJ (NP (IVSUFF_DO:3MS -هُ)) + (NP (-NONE- *T*-4))) + (NP-SBJ (NOUN_PROP+NSUFF_FEM_SG + أُسامَة) + (NOUN_PROP بِن) + (NOUN_PROP + لادِن))))))))))))))) + (PUNC ,) + (PP (PREP مِن-) + (SBAR-NOM (WHNP-2 (REL_PRON -ما)) + (S (VP (PRT (FUT_PART سَ-)) + (IV3MS+IV+IVSUFF_MOOD:I -يُتِيحُ) + (NP-SBJ (-NONE- *T*-2)) + (PP (PREP لَ-) + (NP (PRON_3MP -هُم))) + (NP-OBJ (NP (DET+NOUN+CASE_DEF_ACC ال{ِنْتِقالَ)) + (PP-DIR (PREP إِلَى) + (NP (NP (NOUN+CASE_DEF_GEN مَناطِقِ) + (NP (DET+NOUN+CASE_DEF_GEN القِتالِ))) + (PP-LOC (PREP فِي) + (NP (NOUN+CASE_DEF_GEN جَنُوبِ) + (NP (DET+NOUN+CASE_DEF_GEN + البِلادِ))))))))))))))) + (PUNC .))) + +Leaves: +------- + 0 بَعْدَ- + 1 -ما + 2 تَضارَبَت + prop: taDArab.01 + v * -> 2:0, تَضارَبَت + ARG1 * -> 3:2, المَعْلُوماتُ *ICH*-6 + -> 7:1, عَن عَدَدِ الجُنُودِ الأَمِيرْكِيِّينَ الَّذِينَ سَ- -يُشارِكُونَ *T*-1 فِي بِعْثَةٍ + تَدْرِيبِيَّةٍ لِ- -مُكافَحَةِ الإِرْهابِ فِي الفِيلِيبِّين , فِي إِطارِ جُهُودِ + واشِنْطُن لِ- -مُكافَحَةِ الإِرْهابِ فِي العالَمِ + ARGM-TMP * -> 5:1, الأُسْبُوعَ الماضِيَ + 3 المَعْلُوماتُ + 4 *ICH*-6 + 5 الأُسْبُوعَ + name: DATE 5-6 الأُسْبُوعَ الماضِيَ + 6 الماضِيَ + 7 عَن + 8 عَدَدِ + sense: Eadad-n.1 + 9 الجُنُودِ + 10 الأَمِيرْكِيِّينَ + name: NORP 10-10 الأَمِيرْكِيِّينَ + 11 الَّذِينَ + 12 سَ- + 13 -يُشارِكُونَ + prop: $Arak.02 + v * -> 13:0, -يُشارِكُونَ + ARG0 * -> 9:1, الجُنُودِ الأَمِيرْكِيِّينَ + * -> 11:1, الَّذِينَ + * -> 14:0, *T*-1 -> 11:1, الَّذِينَ + ARG1 * -> 15:1, فِي بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -مُكافَحَةِ الإِرْهابِ فِي الفِيلِيبِّين + ARGM-LOC * -> 24:1, فِي إِطارِ جُهُودِ واشِنْطُن لِ- -مُكافَحَةِ الإِرْهابِ فِي العالَمِ + 14 *T*-1 + 15 فِي + 16 بِعْثَةٍ + sense: baEovap-n.1 + ! coref: IDENT 3 16-20 بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -مُكافَحَةِ الإِرْهابِ + 17 تَدْرِيبِيَّةٍ + 18 لِ- + 19 -مُكافَحَةِ + 20 الإِرْهابِ + 21 فِي + 22 الفِيلِيبِّين + coref: IDENT 1 22-22 الفِيلِيبِّين + name: GPE 22-22 الفِيلِيبِّين + 23 , + 24 فِي + 25 إِطارِ + 26 جُهُودِ + 27 واشِنْطُن + name: NORP 27-27 واشِنْطُن + 28 لِ- + 29 -مُكافَحَةِ + 30 الإِرْهابِ + 31 فِي + 32 العالَمِ + 33 , + 34 أَفادَ + prop: OafAd.01 + v * -> 34:0, أَفادَ + ARGM-TMP * -> 35:1, أَمْسِ + ARG0 * -> 36:2, مَسْؤُولُونَ عَسْكَرِيُّونَ فِي مانِيلا + ARG1 * -> 40:1, أَنَّ نَحْوَ 650 جُنْدِيّاً أَمِيرْكِيّاً سَ- -يَنْضَمُّونَ *T*-3 تِباعاً إِلَى + قُوّاتٍ فِلِيبِّينِيَّةٍ لِ- -تَعْزِيزِ قُدْراتِ- -ها الدِفاعِيَّةِ مِن أَجْلِ + القَضاءِ عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي تَرْبِطُ- -ها *T*-5 صِلاتٌ بِ- + -تَنْظِيمِ " القاعِدَةِ " الَّذِي يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن , مِن- -ما + سَ- -يُتِيحُ *T*-2 لَ- -هُم ال{ِنْتِقالَ إِلَى مَناطِقِ القِتالِ فِي جَنُوبِ البِلادِ + 35 أَمْسِ + 36 مَسْؤُولُونَ + coref: IDENT 21 36-39 مَسْؤُولُونَ عَسْكَرِيُّونَ فِي مانِيلا + 37 عَسْكَرِيُّونَ + 38 فِي + 39 مانِيلا + coref: IDENT 22 39-39 مانِيلا + name: GPE 39-39 مانِيلا + 40 أَنَّ + 41 نَحْوَ + coref: IDENT 0 41-44 نَحْوَ 650 جُنْدِيّاً أَمِيرْكِيّاً + 42 650 + 43 جُنْدِيّاً + 44 أَمِيرْكِيّاً + name: NORP 44-44 أَمِيرْكِيّاً + 45 سَ- + 46 -يَنْضَمُّونَ + prop: {inoDam~.01 + v * -> 46:0, -يَنْضَمُّونَ + ARG1 * -> 41:1, نَحْوَ 650 جُنْدِيّاً أَمِيرْكِيّاً + * -> 47:0, *T*-3 -> 41:1, نَحْوَ 650 جُنْدِيّاً أَمِيرْكِيّاً + ARGM-MNR * -> 48:1, تِباعاً + ARG2 * -> 49:1, إِلَى قُوّاتٍ فِلِيبِّينِيَّةٍ + ARGM-PRP * -> 52:1, لِ- -تَعْزِيزِ قُدْراتِ- -ها الدِفاعِيَّةِ + ARGM-PRP * -> 57:1, مِن أَجْلِ القَضاءِ عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي تَرْبِطُ- -ها *T*-5 صِلاتٌ + بِ- -تَنْظِيمِ " القاعِدَةِ " الَّذِي يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن + ARGM-ADV * -> 84:1, مِن- -ما سَ- -يُتِيحُ *T*-2 لَ- -هُم ال{ِنْتِقالَ إِلَى مَناطِقِ القِتالِ فِي جَنُوبِ + البِلادِ + 47 *T*-3 + 48 تِباعاً + 49 إِلَى + 50 قُوّاتٍ + coref: IDENT 25 50-51 قُوّاتٍ فِلِيبِّينِيَّةٍ + 51 فِلِيبِّينِيَّةٍ + name: NORP 51-51 فِلِيبِّينِيَّةٍ + 52 لِ- + 53 -تَعْزِيزِ + 54 قُدْراتِ- + 55 -ها + coref: IDENT 25 55-55 ها + 56 الدِفاعِيَّةِ + 57 مِن + 58 أَجْلِ + 59 القَضاءِ + 60 عَلَى + 61 جَماعَةِ + name: ORG 61-65 جَماعَةِ " أَبُو سَيّاف " + 62 " + ! coref: IDENT 5 62-97 " أَبُو سَيّاف " الَّتِي تَرْبِطُ- -ها *T*-5 صِلاتٌ بِ- -تَنْظِيمِ " + القاعِدَةِ " الَّذِي يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن , مِن- -ما + سَ- -يُتِيحُ *T*-2 لَ- -هُم ال{ِنْتِقالَ إِلَى مَناطِقِ القِتالِ فِي + جَنُوبِ البِلادِ + 63 أَبُو + 64 سَيّاف + 65 " + 66 الَّتِي + 67 تَرْبِطُ- + prop: rabaT-ui.01 + v * -> 67:0, تَرْبِطُ- + ARG1 * -> 68:2, -ها *T*-5 + ARG0 * -> 70:1, صِلاتٌ + ARG2 * -> 71:1, بِ- -تَنْظِيمِ " القاعِدَةِ " الَّذِي يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن + 68 -ها + coref: IDENT 5 68-69 ها *T* + 69 *T*-5 + 70 صِلاتٌ + 71 بِ- + 72 -تَنْظِيمِ + sense: tanoZiym-n.2 + 73 " + coref: IDENT 35 73-75 " القاعِدَةِ " + 74 القاعِدَةِ + name: ORG 74-74 القاعِدَةِ + 75 " + 76 الَّذِي + 77 يَتَزَعَّمُ- + prop: tazaE~am.01 + v * -> 77:0, يَتَزَعَّمُ- + ARG1 * -> 78:2, -هُ *T*-4 + ARG0 * -> 80:1, أُسامَة بِن لادِن + 78 -هُ + coref: IDENT 35 78-79 -هُ *T*-4 + 79 *T*-4 + 80 أُسامَة + name: PERSON 80-82 أُسامَة بِن لادِن + 81 بِن + 82 لادِن + 83 , + 84 مِن- + 85 -ما + 86 سَ- + 87 -يُتِيحُ + prop: OatAH.01 + v * -> 87:0, -يُتِيحُ + ARG0 * -> 85:1, -ما + * -> 88:0, *T*-2 -> 85:1, -ما + ARG2 * -> 89:1, لَ- -هُم + ARG1 * -> 91:2, ال{ِنْتِقالَ إِلَى مَناطِقِ القِتالِ فِي جَنُوبِ البِلادِ + 88 *T*-2 + 89 لَ- + 90 -هُم + coref: IDENT 25 90-90 -هُم + 91 ال{ِنْتِقالَ + 92 إِلَى + 93 مَناطِقِ + 94 القِتالِ + 95 فِي + 96 جَنُوبِ + 97 البِلادِ + coref: IDENT 1 97-97 البِلادِ + 98 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و من المقرر ان تبدأ التدريبات هذا الشهر, و قد تستمر حتى نهاية هذه السنة في مدينة زامبوانغا و جزيرة باسيلان المجاورة ل ها + حيث تشن القوات الفيليبينية حملة واسعة على جماعة " ابو سياف " التي تحتجز رهائن, بين ها أميركيان منذ حزيران الماضي. + +Treebanked sentence: +-------------------- + وَ- -مِن المُقَرَّرِ أَن تَبْدَأَ التَدْرِيباتُ ه`ذا الشَهْرَ , وَ- -قَد تَسْتَمِرُّ * حَتَّى نِهايَةِ ه`ذِهِ السَنَةِ + فِي مَدِينَةِ زامْبُوانْغا وَ- -جَزِيرَةِ باسِيلان المُجاوِرَةِ لَ- -ها حَيْثُ تَشُنُّ القُوّاتُ الفِلِيبِّينِيَّةُ + حَمْلَةً واسِعَةً عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي تَحْتَجِزُ *T*-1 رَهائِنَ , 0 بَيْنَ- -ها *T*-3 أَمِيرْكِيّانِ + مُنْذُ حَزِيرانَ الماضِي *T*-2 . + +Tree: +----- + (TOP (S (CONJ وَ-) + (PP-PRD (PREP -مِن) + (NP (DET+NOUN+CASE_DEF_GEN المُقَرَّرِ))) + (SBAR-SBJ (SUB_CONJ أَن) + (S (S (VP (IV3FS+IV+IVSUFF_MOOD:S تَبْدَأَ) + (NP-SBJ (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_NOM التَدْرِيباتُ)) + (NP-TMP (NP (DEM_PRON_MS ه`ذا)) + (NP (DET+NOUN+CASE_DEF_ACC الشَهْرَ))))) + (PUNC ,) + (CONJ وَ-) + (S (VP (PRT (VERB_PART -قَد)) + (IV3FS+IV+IVSUFF_MOOD:I تَسْتَمِرُّ) + (NP-SBJ (-NONE- *)) + (PP-TMP (PREP حَتَّى) + (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN نِهايَةِ) + (NP (NP (DEM_PRON_F ه`ذِهِ)) + (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN السَنَةِ))))) + (PP-LOC (PREP فِي) + (NP (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN مَدِينَةِ) + (NP (NOUN_PROP زامْبُوانْغا))) + (CONJ وَ-) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN -جَزِيرَةِ) + (NP (NOUN_PROP باسِيلان))) + (ADJP (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_GEN المُجاوِرَةِ) + (PP (PREP لَ-) + (NP (PRON_3FS -ها)))))) + (SBAR (WHADVP-2 (REL_ADV حَيْثُ)) + (S (VP (IV3FS+IV+IVSUFF_MOOD:I تَشُنُّ) + (NP-SBJ (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_NOM القُوّاتُ) + (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_NOM الفِلِيبِّينِيَّةُ)) + (NP-OBJ (NOUN+NSUFF_FEM_SG+CASE_INDEF_ACC حَمْلَةً) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_ACC واسِعَةً)) + (PP (PREP عَلَى) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN جَماعَةِ) + (NP (PUNC ") + (NOUN_PROP أَبُو) + (NOUN_PROP سَيّاف) + (PUNC "))) + (SBAR (WHNP-1 (REL_PRON الَّتِي)) + (S (VP (IV3FS+IV+IVSUFF_MOOD:I تَحْتَجِزُ) + (NP-SBJ (-NONE- *T*-1)) + (NP-OBJ (NP (NOUN+CASE_INDEF_ACC رَهائِنَ)) + (PUNC ,) + (SBAR (WHNP-3 (-NONE- 0)) + (S (NP-PRD (NOUN+CASE_DEF_ACC + بَيْنَ-) + (NP (NP (PRON_3FS + -ها)) + (NP (-NONE- + *T*-3)))) + (NP-SBJ + (NOUN+NSUFF_MASC_DU_NOM أَمِيرْكِيّانِ)) + (PP-TMP (PREP مُنْذُ) + (NP + (NOUN_PROP+CASE_INDEF_GEN حَزِيرانَ) + (DET+ADJ + الماضِي))))))))))) + (ADVP-LOC (-NONE- *T*-2))))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -مِن + 2 المُقَرَّرِ + 3 أَن + 4 تَبْدَأَ + prop: badaO-a.01 + v * -> 4:0, تَبْدَأَ + ARG1 * -> 5:1, التَدْرِيباتُ + ARGM-TMP * -> 6:2, ه`ذا الشَهْرَ + 5 التَدْرِيباتُ + coref: IDENT 45 5-5 التَدْرِيباتُ + 6 ه`ذا + name: DATE 6-7 ه`ذا الشَهْرَ + 7 الشَهْرَ + sense: $ahor-n.2 + 8 , + 9 وَ- + 10 -قَد + 11 تَسْتَمِرُّ + prop: {isotamar~.01 + v * -> 11:0, تَسْتَمِرُّ + ARG1 * -> 5:1, التَدْرِيباتُ + * -> 12:0, * + ARG2 * -> 13:1, حَتَّى نِهايَةِ ه`ذِهِ السَنَةِ + ARGM-LOC * -> 17:1, فِي مَدِينَةِ زامْبُوانْغا وَ- -جَزِيرَةِ باسِيلان المُجاوِرَةِ لَ- -ها حَيْثُ تَشُنُّ + القُوّاتُ الفِلِيبِّينِيَّةُ حَمْلَةً واسِعَةً عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي + تَحْتَجِزُ *T*-1 رَهائِنَ , 0 بَيْنَ- -ها *T*-3 أَمِيرْكِيّانِ مُنْذُ حَزِيرانَ + الماضِي *T*-2 + 12 * + coref: IDENT 45 12-12 * + 13 حَتَّى + 14 نِهايَةِ + sense: nihAyap-n.1 + 15 ه`ذِهِ + name: DATE 15-16 ه`ذِهِ السَنَةِ + 16 السَنَةِ + 17 فِي + 18 مَدِينَةِ + 19 زامْبُوانْغا + coref: IDENT 52 19-19 زامْبُوانْغا + name: GPE 19-19 زامْبُوانْغا + 20 وَ- + 21 -جَزِيرَةِ + name: LOC 21-22 -جَزِيرَةِ باسِيلان + 22 باسِيلان + coref: IDENT 54 22-22 باسِيلان + 23 المُجاوِرَةِ + 24 لَ- + 25 -ها + coref: IDENT 52 25-25 ها + 26 حَيْثُ + 27 تَشُنُّ + prop: $an~-u.01 + v * -> 27:0, تَشُنُّ + ARG0 * -> 28:1, القُوّاتُ الفِلِيبِّينِيَّةُ + ARG1 * -> 30:1, حَمْلَةً واسِعَةً + ARG2 * -> 32:1, عَلَى جَماعَةِ " أَبُو سَيّاف " الَّتِي تَحْتَجِزُ *T*-1 رَهائِنَ , 0 بَيْنَ- -ها + *T*-3 أَمِيرْكِيّانِ مُنْذُ حَزِيرانَ الماضِي + ARGM-LOC * -> 21:2, -جَزِيرَةِ باسِيلان المُجاوِرَةِ لَ- -ها + * -> 26:1, حَيْثُ + * -> 51:0, *T*-2 -> 26:1, حَيْثُ + 28 القُوّاتُ + coref: IDENT 25 28-29 القُوّاتُ الفِلِيبِّينِيَّةُ + name: ORG 28-29 القُوّاتُ الفِلِيبِّينِيَّةُ + 29 الفِلِيبِّينِيَّةُ + 30 حَمْلَةً + 31 واسِعَةً + 32 عَلَى + 33 جَماعَةِ + name: ORG 33-37 جَماعَةِ " أَبُو سَيّاف " + 34 " + coref: IDENT 5 34-37 " أَبُو سَيّاف " + 35 أَبُو + 36 سَيّاف + 37 " + 38 الَّتِي + 39 تَحْتَجِزُ + prop: {iHotajaz.01 + v * -> 39:0, تَحْتَجِزُ + ARG0 * -> 33:1, جَماعَةِ " أَبُو سَيّاف " + * -> 38:1, الَّتِي + * -> 40:0, *T*-1 -> 38:1, الَّتِي + ARG1 * -> 41:2, رَهائِنَ , 0 بَيْنَ- -ها *T*-3 أَمِيرْكِيّانِ مُنْذُ حَزِيرانَ الماضِي + 40 *T*-1 + 41 رَهائِنَ + coref: IDENT 60 41-41 رَهائِنَ + 42 , + 43 0 + 44 بَيْنَ- + 45 -ها + coref: IDENT 60 45-45 ها + 46 *T*-3 + 47 أَمِيرْكِيّانِ + name: NORP 47-47 أَمِيرْكِيّانِ + 48 مُنْذُ + 49 حَزِيرانَ + name: DATE 49-50 حَزِيرانَ الماضِي + 50 الماضِي + 51 *T*-2 + 52 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و قال وزير الدفاع انجيلو رييس ان نحو ستة مسؤولين اميركيين وصلوا الى البلاد ل لبحث في التدابير اللوجيستية, على ان يلحق ب + هم الاخرون تباعاً, بدءا من اليوم. + +Treebanked sentence: +-------------------- + وَ- -قالَ وَزِيرُ الدِفاعِ أَنْجِيلُو رييس أَنَّ نَحْوَ سِتَّةِ مَسْؤُولِينَ أَمِيرْكِيِّينَ وَصَلُوا *T*-1 إِلَى + البِلادِ لِ- -البَحْثِ فِي التَدابِيرِ اللُوجِسْتِيَّةِ , عَلَى أَن يَلْحَقَ بِ- -هِم الآخَرُونَ تِباعاً , بَدْءاً مِن + اليَوْمِ . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PV+PVSUFF_SUBJ:3MS -قالَ) + (NP-SBJ (NP (NOUN+CASE_DEF_NOM وَزِيرُ) + (NP (DET+NOUN+CASE_DEF_GEN الدِفاعِ))) + (NP (NOUN_PROP أَنْجِيلُو) + (NOUN_PROP رييس))) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-1 (NOUN+CASE_DEF_ACC نَحْوَ) + (NP (NOUN_NUM+NSUFF_FEM_SG+CASE_DEF_GEN سِتَّةِ) + (NP (NOUN+NSUFF_MASC_PL_GEN مَسْؤُولِينَ) + (ADJ+NSUFF_MASC_PL_GEN أَمِيرْكِيِّينَ)))) + (VP (PV+PVSUFF_SUBJ:3MP وَصَلُوا) + (NP-SBJ (-NONE- *T*-1)) + (PP-DIR (PREP إِلَى) + (NP (DET+NOUN+CASE_DEF_GEN البِلادِ))) + (PP-PRP (PREP لِ-) + (NP (NP (DET+NOUN+CASE_DEF_GEN -البَحْثِ)) + (PP (PREP فِي) + (NP (DET+NOUN+CASE_DEF_GEN التَدابِيرِ) + (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_GEN اللُوجِسْتِيَّةِ))))) + (PUNC ,) + (PP (PREP عَلَى) + (SBAR (SUB_CONJ أَن) + (S (VP (IV3MS+IV+IVSUFF_MOOD:S يَلْحَقَ) + (PP-CLR (PREP بِ-) + (NP (PRON_3MP -هِم))) + (NP-SBJ (DET+NOUN+NSUFF_MASC_PL_NOM الآخَرُونَ)) + (NP-MNR (NOUN+CASE_INDEF_ACC تِباعاً)) + (PUNC ,) + (NP-TMP (NP (NOUN+CASE_INDEF_ACC بَدْءاً)) + (PP (PREP مِن) + (NP (DET+NOUN+CASE_DEF_GEN اليَوْمِ)))))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -قالَ + prop: qAl-u.01 + v * -> 1:0, -قالَ + ARG0 * -> 2:2, وَزِيرُ الدِفاعِ أَنْجِيلُو رييس + ARG1 * -> 6:1, أَنَّ نَحْوَ سِتَّةِ مَسْؤُولِينَ أَمِيرْكِيِّينَ وَصَلُوا *T*-1 إِلَى البِلادِ لِ- + -البَحْثِ فِي التَدابِيرِ اللُوجِسْتِيَّةِ , عَلَى أَن يَلْحَقَ بِ- -هِم الآخَرُونَ + تِباعاً , بَدْءاً مِن اليَوْمِ + 2 وَزِيرُ + coref: APPOS ATTRIB 66 2-3 وَزِيرُ الدِفاعِ + coref: IDENT 64 2-5 وَزِيرُ الدِفاعِ أَنْجِيلُو رييس + 3 الدِفاعِ + sense: difAE-n.6 + 4 أَنْجِيلُو + coref: APPOS HEAD 66 4-5 أَنْجِيلُو رييس + name: PERSON 4-5 أَنْجِيلُو رييس + 5 رييس + 6 أَنَّ + 7 نَحْوَ + coref: IDENT 67 7-10 نَحْوَ سِتَّةِ مَسْؤُولِينَ أَمِيرْكِيِّينَ + 8 سِتَّةِ + 9 مَسْؤُولِينَ + 10 أَمِيرْكِيِّينَ + name: NORP 10-10 أَمِيرْكِيِّينَ + 11 وَصَلُوا + sense: waSal-i-v.1 + 12 *T*-1 + 13 إِلَى + 14 البِلادِ + coref: IDENT 1 14-14 البِلادِ + 15 لِ- + 16 -البَحْثِ + sense: baHov-n.1 + 17 فِي + 18 التَدابِيرِ + 19 اللُوجِسْتِيَّةِ + 20 , + 21 عَلَى + 22 أَن + 23 يَلْحَقَ + prop: laHiq-a.01 + v * -> 23:0, يَلْحَقَ + ARG1 * -> 24:1, بِ- -هِم + ARG0 * -> 26:1, الآخَرُونَ + ARGM-MNR * -> 27:1, تِباعاً + ARGM-TMP * -> 29:2, بَدْءاً مِن اليَوْمِ + 24 بِ- + 25 -هِم + coref: IDENT 67 25-25 -هِم + 26 الآخَرُونَ + 27 تِباعاً + 28 , + 29 بَدْءاً + 30 مِن + 31 اليَوْمِ + sense: yawom-n.1 + name: DATE 31-31 اليَوْمِ + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و في الاجمال, س يشارك 500 جندي اميركي في عمليات " دعم و صيانة ", بينما س يسمح ل لاخرين, و هم اعضاء في القوات الخاصة, ب + مشاركة الجنود الفيليبينيين أحياناً في مطاردة المتطرفين الاسلاميين في جزيرة باسيلان في جنوب البلاد. + +Treebanked sentence: +-------------------- + وَ- -فِي الإِجْمالِ , سَ- -يُشارِكُ 500 جُنْدِيٍّ أَمِيرْكِيٍّ فِي عَمَلِيّاتِ " دَعْمٍ وَ- -صِيانَةٍ " , بَيْنَما سَ- + -يُسْمَحُ *-1 لِ- -الآخِرِينَ , وَ- -هُم أَعْضاءٌ فِي القُوّاتِ الخاصَّةِ , بِ- -مُشارَكَةِ * الجُنُودِ + الفِلِيبِّينِيِّينَ أَحْياناً فِي مُطارَدَةِ المُتَطَرِّفِينَ الإِسْلامِيِّينَ فِي جَزِيرَةِ باسِيلان فِي جَنُوبِ + البِلادِ . + +Tree: +----- + (TOP (S (CONJ وَ-) + (PP (PREP -فِي) + (NP (DET+NOUN+CASE_DEF_GEN الإِجْمالِ))) + (PUNC ,) + (VP (PRT (FUT_PART سَ-)) + (IV3MS+IV+IVSUFF_MOOD:I -يُشارِكُ) + (NP-SBJ (NOUN_NUM 500) + (NP (NOUN+CASE_INDEF_GEN جُنْدِيٍّ) + (ADJ+CASE_INDEF_GEN أَمِيرْكِيٍّ))) + (PP-CLR (PREP فِي) + (NP (NOUN+NSUFF_FEM_PL+CASE_DEF_GEN عَمَلِيّاتِ) + (NP (PUNC ") + (NOUN+CASE_INDEF_GEN دَعْمٍ) + (CONJ وَ-) + (NOUN+NSUFF_FEM_SG+CASE_INDEF_GEN -صِيانَةٍ) + (PUNC ")))) + (PUNC ,) + (SBAR-TMP (SUB_CONJ بَيْنَما) + (S (VP (PRT (FUT_PART سَ-)) + (IV3MS+IV_PASS+IVSUFF_MOOD:I -يُسْمَحُ) + (NP-SBJ (-NONE- *-1)) + (PP (PREP لِ-) + (NP (DET+ADJ_COMP+NSUFF_MASC_PL_GEN -الآخِرِينَ) + (PUNC ,) + (PRN (CONJ وَ-) + (S (NP-SBJ (PRON_3MP -هُم)) + (NP-PRD (NP (NOUN+CASE_INDEF_NOM أَعْضاءٌ)) + (PP (PREP فِي) + (NP (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_GEN القُوّاتِ) + (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_GEN الخاصَّةِ)))))))) + (PUNC ,) + (PP-CLR (PREP بِ-) + (S-NOM-1 (VP (NOUN.VN+NSUFF_FEM_SG+CASE_DEF_GEN -مُشارَكَةِ) + (NP-SBJ (-NONE- *)) + (NP-OBJ (DET+NOUN+CASE_DEF_GEN الجُنُودِ) + (DET+ADJ+NSUFF_MASC_PL_GEN الفِلِيبِّينِيِّينَ)) + (NP-TMP (NOUN+CASE_INDEF_ACC أَحْياناً)) + (PP-CLR (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN مُطارَدَةِ) + (NP (DET+NOUN+NSUFF_MASC_PL_GEN المُتَطَرِّفِينَ) + (DET+ADJ+NSUFF_MASC_PL_GEN الإِسْلامِيِّينَ))) + (PP-LOC (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN جَزِيرَةِ) + (NP (NOUN_PROP باسِيلان))) + (PP-LOC (PREP فِي) + (NP (NOUN+CASE_DEF_GEN جَنُوبِ) + (NP (DET+NOUN+CASE_DEF_GEN + البِلادِ))))))))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -فِي + 2 الإِجْمالِ + 3 , + 4 سَ- + 5 -يُشارِكُ + prop: $Arak.02 + v * -> 5:0, -يُشارِكُ + ARG0 * -> 6:1, 500 جُنْدِيٍّ أَمِيرْكِيٍّ + ARG1 * -> 9:1, فِي عَمَلِيّاتِ " دَعْمٍ وَ- -صِيانَةٍ " + ARGM-TMP * -> 17:1, بَيْنَما سَ- -يُسْمَحُ *-1 لِ- -الآخِرِينَ , وَ- -هُم أَعْضاءٌ فِي القُوّاتِ الخاصَّةِ + , بِ- -مُشارَكَةِ * الجُنُودِ الفِلِيبِّينِيِّينَ أَحْياناً فِي مُطارَدَةِ + المُتَطَرِّفِينَ الإِسْلامِيِّينَ فِي جَزِيرَةِ باسِيلان فِي جَنُوبِ البِلادِ + 6 500 + name: CARDINAL 6-6 500 + 7 جُنْدِيٍّ + 8 أَمِيرْكِيٍّ + name: NORP 8-8 أَمِيرْكِيٍّ + 9 فِي + 10 عَمَلِيّاتِ + sense: Eamaliy~ap-n.2 + 11 " + 12 دَعْمٍ + 13 وَ- + 14 -صِيانَةٍ + 15 " + 16 , + 17 بَيْنَما + 18 سَ- + 19 -يُسْمَحُ + prop: samaH-a.01 + v * -> 19:0, -يُسْمَحُ + ARG1 * -> 20:0, *-1 -> 32:2, -مُشارَكَةِ * الجُنُودِ الفِلِيبِّينِيِّينَ أَحْياناً فِي مُطارَدَةِ + المُتَطَرِّفِينَ الإِسْلامِيِّينَ فِي جَزِيرَةِ باسِيلان فِي جَنُوبِ + البِلادِ + * -> 32:2, -مُشارَكَةِ * الجُنُودِ الفِلِيبِّينِيِّينَ أَحْياناً فِي مُطارَدَةِ المُتَطَرِّفِينَ + الإِسْلامِيِّينَ فِي جَزِيرَةِ باسِيلان فِي جَنُوبِ البِلادِ + 20 *-1 + coref: IDENT 21 20-20 * + 21 لِ- + 22 -الآخِرِينَ + coref: IDENT 80 22-29 -الآخِرِينَ , وَ- -هُم أَعْضاءٌ فِي القُوّاتِ الخاصَّةِ + 23 , + 24 وَ- + 25 -هُم + coref: IDENT 80 25-25 -هُم + 26 أَعْضاءٌ + sense: EuDow-n.1 + 27 فِي + 28 القُوّاتِ + 29 الخاصَّةِ + 30 , + 31 بِ- + 32 -مُشارَكَةِ + 33 * + 34 الجُنُودِ + 35 الفِلِيبِّينِيِّينَ + name: NORP 35-35 الفِلِيبِّينِيِّينَ + 36 أَحْياناً + 37 فِي + 38 مُطارَدَةِ + 39 المُتَطَرِّفِينَ + 40 الإِسْلامِيِّينَ + name: NORP 40-40 الإِسْلامِيِّينَ + 41 فِي + 42 جَزِيرَةِ + name: LOC 42-43 جَزِيرَةِ باسِيلان + 43 باسِيلان + coref: IDENT 54 43-43 باسِيلان + 44 فِي + 45 جَنُوبِ + 46 البِلادِ + coref: IDENT 1 46-46 البِلادِ + 47 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و اوضح ان الاميركيين " لن يشاركوا في المعارك و لكن هم س يكونون مسلحين و يستطيعون الدفاع عن انفس هم عند ما يتعرضون ل هجوم + ", مؤكدا في الوقت نفس ه ان ها ليست عملية سرية ل لجيش الاميركي. + +Treebanked sentence: +-------------------- + وَ- -أَوْضَحَ * أَنَّ الأَمِيرْكِيِّينَ " لَن يُشارِكُوا *T*-1 فِي المَعارِكِ وَ- -ل`كِنَّ- -هُم سَ- -يَكُونُونَ *-2 + مُسَلَّحِينَ وَ- -يَسْتَطِيعُونَ *-2 الدِفاعَ * عَن أَنْفُسِ- -هِم عِنْدَ- -ما يَتَعَرَّضُونَ * لِ- -هُجُومٍ " , + مُؤَكِّداً *-4 فِي الوَقْتِ نَفْسِ- -هِ أَنَّ- -ها لَيْسَت *T*-3 عَمَلِيَّةً سِرِّيَّةً لِ- -الجَيْشِ الأَمِيرْكِيِّ . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PV+PVSUFF_SUBJ:3MS -أَوْضَحَ) + (NP-SBJ-4 (-NONE- *)) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-1 (DET+NOUN+NSUFF_MASC_PL_ACC الأَمِيرْكِيِّينَ)) + (PUNC ") + (VP (PRT (NEG_PART لَن)) + (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:SJ يُشارِكُوا) + (NP-SBJ (-NONE- *T*-1)) + (PP-CLR (PREP فِي) + (NP (DET+NOUN+CASE_DEF_GEN المَعارِكِ))) + (NAC (CONJ وَ-) + (S-ADV (VP (PSEUDO_VERB -ل`كِنَّ-) + (NP-SBJ-2 (PRON_3MP -هُم)) + (S (S (VP (PRT (FUT_PART سَ-)) + (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I -يَكُونُونَ) + (NP-SBJ (-NONE- *-2)) + (ADJP-PRD (ADJ+NSUFF_MASC_PL_ACC مُسَلَّحِينَ)))) + (CONJ وَ-) + (S (VP (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I -يَسْتَطِيعُونَ) + (NP-SBJ (-NONE- *-2)) + (S-NOM-OBJ (VP (DET+NOUN.VN+CASE_DEF_ACC الدِفاعَ) + (NP-SBJ (-NONE- *)) + (PP-CLR (PREP عَن) + (NP (NOUN+CASE_DEF_GEN أَنْفُسِ-) + (NP (POSS_PRON_3MP -هِم)))))) + (NP-TMP (NOUN+CASE_DEF_ACC عِنْدَ-) + (SBAR (SUB_CONJ -ما) + (S (VP (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I يَتَعَرَّضُونَ) + (NP-SBJ (-NONE- *)) + (PP-CLR (PREP لِ-) + (NP (NOUN+CASE_INDEF_GEN + -هُجُومٍ)))))))))))))) + (PUNC "))) + (PUNC ,) + (S-ADV (VP (ADJ.VN+CASE_INDEF_ACC مُؤَكِّداً) + (NP-SBJ (-NONE- *-4)) + (PP-TMP (PREP فِي) + (NP (NP (DET+NOUN+CASE_DEF_GEN الوَقْتِ)) + (NP (NOUN+CASE_DEF_GEN نَفْسِ-) + (NP (POSS_PRON_3MS -هِ))))) + (SBAR (SUB_CONJ أَنَّ-) + (S (NP-TPC-3 (PRON_3FS -ها)) + (VP (PV+PVSUFF_SUBJ:3FS لَيْسَت) + (NP-SBJ (-NONE- *T*-3)) + (NP-PRD (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_ACC عَمَلِيَّةً) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_ACC سِرِّيَّةً)) + (PP (PREP لِ-) + (NP (DET+NOUN+CASE_DEF_GEN -الجَيْشِ) + (DET+ADJ+CASE_DEF_GEN الأَمِيرْكِيِّ)))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -أَوْضَحَ + prop: OawoDaH.01 + v * -> 1:0, -أَوْضَحَ + ARG0 * -> 2:0, * + ARG1 * -> 3:1, أَنَّ الأَمِيرْكِيِّينَ " لَن يُشارِكُوا *T*-1 فِي المَعارِكِ وَ- -ل`كِنَّ- -هُم سَ- + -يَكُونُونَ *-2 مُسَلَّحِينَ وَ- -يَسْتَطِيعُونَ *-2 الدِفاعَ * عَن أَنْفُسِ- -هِم + عِنْدَ- -ما يَتَعَرَّضُونَ * لِ- -هُجُومٍ " + ARGM-ADV * -> 34:2, مُؤَكِّداً *-4 فِي الوَقْتِ نَفْسِ- -هِ أَنَّ- -ها لَيْسَت *T*-3 عَمَلِيَّةً + سِرِّيَّةً لِ- -الجَيْشِ الأَمِيرْكِيِّ + 2 * + coref: IDENT 64 2-2 * + 3 أَنَّ + 4 الأَمِيرْكِيِّينَ + coref: IDENT 0 4-4 الأَمِيرْكِيِّينَ + name: NORP 4-4 الأَمِيرْكِيِّينَ + 5 " + 6 لَن + 7 يُشارِكُوا + prop: $Arak.02 + v * -> 7:0, يُشارِكُوا + ARG0 * -> 4:1, الأَمِيرْكِيِّينَ + * -> 8:0, *T*-1 -> 4:1, الأَمِيرْكِيِّينَ + * -> 29:0, * + ARG1 * -> 9:1, فِي المَعارِكِ + ARGM-ADV * -> 11:1, وَ- -ل`كِنَّ- -هُم سَ- -يَكُونُونَ *-2 مُسَلَّحِينَ وَ- -يَسْتَطِيعُونَ *-2 الدِفاعَ * + عَن أَنْفُسِ- -هِم عِنْدَ- -ما يَتَعَرَّضُونَ * لِ- -هُجُومٍ + 8 *T*-1 + 9 فِي + 10 المَعارِكِ + 11 وَ- + 12 -ل`كِنَّ- + 13 -هُم + coref: IDENT 0 13-13 -هُم + 14 سَ- + 15 -يَكُونُونَ + prop: kAn-u.01 + v * -> 15:0, -يَكُونُونَ + ARG1 * -> 13:1, -هُم + * -> 14:1, سَ- + * -> 16:0, *-2 -> 13:1, -هُم + ARG2 * -> 17:1, مُسَلَّحِينَ + 16 *-2 + 17 مُسَلَّحِينَ + prop: musal~aH.01 + j * -> 17:0, مُسَلَّحِينَ + ARG1 * -> 13:1, -هُم + * -> 14:1, سَ- + * -> 16:0, *-2 -> 13:1, -هُم + * -> 20:0, *-2 -> 13:1, -هُم + 18 وَ- + 19 -يَسْتَطِيعُونَ + prop: {isotaTAE.01 + v * -> 19:0, -يَسْتَطِيعُونَ + ARG0 * -> 13:1, -هُم + * -> 20:0, *-2 -> 13:1, -هُم + ARG1 * -> 21:2, الدِفاعَ * عَن أَنْفُسِ- -هِم + ARGM-TMP * -> 26:1, عِنْدَ- -ما يَتَعَرَّضُونَ * لِ- -هُجُومٍ + 20 *-2 + coref: IDENT 0 20-20 * + 21 الدِفاعَ + 22 * + 23 عَن + 24 أَنْفُسِ- + sense: nafos-n.3 + 25 -هِم + coref: IDENT 0 25-25 -هِم + 26 عِنْدَ- + 27 -ما + 28 يَتَعَرَّضُونَ + prop: taEar~aD.01 + v * -> 28:0, يَتَعَرَّضُونَ + ARG1 * -> 4:1, الأَمِيرْكِيِّينَ + * -> 29:0, * + ARG2 * -> 30:1, لِ- -هُجُومٍ + 29 * + coref: IDENT 0 29-29 * + 30 لِ- + 31 -هُجُومٍ + 32 " + 33 , + 34 مُؤَكِّداً + prop: muWak~id.01 + j * -> 34:0, مُؤَكِّداً + ARG0 * -> 2:0, * + * -> 35:0, *-4 -> 2:0, * + ARGM-TMP * -> 36:1, فِي الوَقْتِ نَفْسِ- -هِ + ARG2 * -> 40:1, أَنَّ- -ها لَيْسَت *T*-3 عَمَلِيَّةً سِرِّيَّةً لِ- -الجَيْشِ الأَمِيرْكِيِّ + 35 *-4 + coref: IDENT 64 35-35 * + 36 فِي + 37 الوَقْتِ + coref: IDENT ANN20020115.0001.tree.decode-E3 37-37 الوَقْتِ + 38 نَفْسِ- + sense: nafos-n.4 + 39 -هِ + coref: IDENT ANN20020115.0001.tree.decode-E3 39-39 ه + 40 أَنَّ- + 41 -ها + 42 لَيْسَت + * prop: layosa.01 + v * -> 42:0, لَيْسَت + ARG1 * -> 41:1, -ها + * -> 42:1, لَيْسَت *T*-3 عَمَلِيَّةً سِرِّيَّةً لِ- -الجَيْشِ الأَمِيرْكِيِّ + * -> 43:0, *T*-3 -> 41:1, -ها + ARG2 * -> 44:2, عَمَلِيَّةً سِرِّيَّةً لِ- -الجَيْشِ الأَمِيرْكِيِّ + 43 *T*-3 + 44 عَمَلِيَّةً + sense: Eamaliy~ap-n.2 + 45 سِرِّيَّةً + 46 لِ- + 47 -الجَيْشِ + name: ORG 47-48 -الجَيْشِ الأَمِيرْكِيِّ + 48 الأَمِيرْكِيِّ + 49 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و س يشارك نحو 1200 جندي فيليبيني في التدريبات التي تمتد بين كانون الثاني و حزيران, و قد تستمر طوال السنة " تبعاً ل + تطورات الاوضاع ". + +Treebanked sentence: +-------------------- + وَ- -سَ- -يُشارِكُ نَحْوَ 1200 جُنْدِيٍّ فِلِيبِّينِيٍّ فِي التَدْرِيباتِ الَّتِي تَمْتَدُّ *T*-1 بَيْنَ كانُون الثانِي + وَ- -حَزِيرانَ , وَ- -قَد تَسْتَمِرُّ * طِوالَ السَنَةِ " تَبَعاً لِ- -تَطَوُّراتِ الأَوْضاعِ " . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PRT (FUT_PART -سَ-)) + (IV3MS+IV+IVSUFF_MOOD:I -يُشارِكُ) + (NP-SBJ (NOUN+CASE_DEF_ACC نَحْوَ) + (NP (NOUN_NUM 1200) + (NP (NOUN+CASE_INDEF_GEN جُنْدِيٍّ) + (ADJ+CASE_INDEF_GEN فِلِيبِّينِيٍّ)))) + (PP-CLR (PREP فِي) + (NP (NP (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_GEN التَدْرِيباتِ)) + (SBAR (WHNP-1 (REL_PRON الَّتِي)) + (S (S (VP (IV3FS+IV+IVSUFF_MOOD:I تَمْتَدُّ) + (NP-SBJ (-NONE- *T*-1)) + (NP-TMP (NOUN+CASE_DEF_ACC بَيْنَ) + (NP (NP (NOUN_PROP كانُون) + (DET+ADJ_NUM الثانِي)) + (CONJ وَ-) + (NP (NOUN_PROP+CASE_INDEF_GEN -حَزِيرانَ)))))) + (PUNC ,) + (CONJ وَ-) + (S (VP (PRT (VERB_PART -قَد)) + (IV3FS+IV+IVSUFF_MOOD:I تَسْتَمِرُّ) + (NP-SBJ (-NONE- *)) + (NP-TMP (NOUN+CASE_DEF_ACC طِوالَ) + (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN السَنَةِ))) + (NP-MNR (PUNC ") + (NP (NOUN+CASE_INDEF_ACC تَبَعاً)) + (PP (PREP لِ-) + (NP (NOUN+NSUFF_FEM_PL+CASE_DEF_GEN -تَطَوُّراتِ) + (NP (DET+NOUN+CASE_DEF_GEN الأَوْضاعِ)))) + (PUNC "))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -سَ- + 2 -يُشارِكُ + prop: $Arak.02 + v * -> 2:0, -يُشارِكُ + ARG0 * -> 3:1, نَحْوَ 1200 جُنْدِيٍّ فِلِيبِّينِيٍّ + ARG1 * -> 7:1, فِي التَدْرِيباتِ الَّتِي تَمْتَدُّ *T*-1 بَيْنَ كانُون الثانِي وَ- -حَزِيرانَ , وَ- + -قَد تَسْتَمِرُّ * طِوالَ السَنَةِ " تَبَعاً لِ- -تَطَوُّراتِ الأَوْضاعِ " + 3 نَحْوَ + 4 1200 + name: CARDINAL 4-4 1200 + 5 جُنْدِيٍّ + 6 فِلِيبِّينِيٍّ + name: NORP 6-6 فِلِيبِّينِيٍّ + 7 فِي + 8 التَدْرِيباتِ + coref: IDENT 105 8-29 التَدْرِيباتِ الَّتِي تَمْتَدُّ *T*-1 بَيْنَ كانُون الثانِي وَ- -حَزِيرانَ + , وَ- -قَد تَسْتَمِرُّ * طِوالَ السَنَةِ " تَبَعاً لِ- -تَطَوُّراتِ + الأَوْضاعِ " + 9 الَّتِي + 10 تَمْتَدُّ + prop: {imotad~.01 + v * -> 10:0, تَمْتَدُّ + ARG1 * -> 8:1, التَدْرِيباتِ + * -> 9:1, الَّتِي + * -> 11:0, *T*-1 -> 9:1, الَّتِي + ARG2 * -> 12:1, بَيْنَ كانُون الثانِي وَ- -حَزِيرانَ + 11 *T*-1 + 12 بَيْنَ + 13 كانُون + name: DATE 13-14 كانُون الثانِي + 14 الثانِي + 15 وَ- + 16 -حَزِيرانَ + name: DATE 16-16 -حَزِيرانَ + 17 , + 18 وَ- + 19 -قَد + 20 تَسْتَمِرُّ + prop: {isotamar~.01 + v * -> 20:0, تَسْتَمِرُّ + ARG0 * -> 8:1, التَدْرِيباتِ + * -> 9:1, الَّتِي + * -> 21:0, * + ARG1 * -> 21:0, * + ARG2 * -> 22:1, طِوالَ السَنَةِ + ARGM-MNR * -> 24:1, " تَبَعاً لِ- -تَطَوُّراتِ الأَوْضاعِ " + 21 * + coref: IDENT 105 21-21 * + 22 طِوالَ + name: TIME 22-23 طِوالَ السَنَةِ + 23 السَنَةِ + 24 " + 25 تَبَعاً + 26 لِ- + 27 -تَطَوُّراتِ + 28 الأَوْضاعِ + 29 " + 30 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و يذكر ان جماعة " ابو سياف " تمكنت من النجاة من عملية واسعة نفذ ها الجيش الفيليبيني في الادغال في جنوب البلاد. + +Treebanked sentence: +-------------------- + وَ- -يُذْكَرُ أَنَّ جَماعَةَ " أَبُو سَيّاف " تَمَكَّنَت *T*-2 مِن النَجاَةِ مِن عَمَلِيَّةٍ واسِعَةٍ 0 نَفَّذَ- -ها + *T*-3 الجَيْشُ الفِلِيبِّينِيُّ فِي الأَدْغالِ فِي جَنُوبِ البِلادِ *-1 . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (IV3MS+IV_PASS+IVSUFF_MOOD:I -يُذْكَرُ) + (SBAR-SBJ-1 (SUB_CONJ أَنَّ) + (S (NP-TPC-2 (NOUN+NSUFF_FEM_SG+CASE_DEF_ACC جَماعَةَ) + (NP (PUNC ") + (NOUN_PROP أَبُو) + (NOUN_PROP سَيّاف) + (PUNC "))) + (VP (PV+PVSUFF_SUBJ:3FS تَمَكَّنَت) + (NP-SBJ (-NONE- *T*-2)) + (PP-CLR (PREP مِن) + (NP (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN النَجاَةِ)) + (PP (PREP مِن) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_GEN عَمَلِيَّةٍ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN واسِعَةٍ)) + (SBAR (WHNP-3 (-NONE- 0)) + (S (VP (PV+PVSUFF_SUBJ:3MS نَفَّذَ-) + (NP-OBJ (NP (PVSUFF_DO:3FS -ها)) + (NP (-NONE- *T*-3))) + (NP-SBJ (DET+NOUN+CASE_DEF_NOM الجَيْشُ) + (DET+ADJ+CASE_DEF_NOM الفِلِيبِّينِيُّ)) + (PP-LOC (PREP فِي) + (NP (NP (DET+NOUN+CASE_DEF_GEN الأَدْغالِ)) + (PP-LOC (PREP فِي) + (NP (NOUN+CASE_DEF_GEN جَنُوبِ) + (NP (DET+NOUN+CASE_DEF_GEN + البِلادِ)))))))))))))))) + (NP-OBJ (-NONE- *-1))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -يُذْكَرُ + prop: Xakar-u.01 + v * -> 1:0, -يُذْكَرُ + ARG1 * -> 2:1, أَنَّ جَماعَةَ " أَبُو سَيّاف " تَمَكَّنَت *T*-2 مِن النَجاَةِ مِن عَمَلِيَّةٍ + واسِعَةٍ 0 نَفَّذَ- -ها *T*-3 الجَيْشُ الفِلِيبِّينِيُّ فِي الأَدْغالِ فِي جَنُوبِ + البِلادِ + 2 أَنَّ + 3 جَماعَةَ + coref: IDENT 5 3-7 جَماعَةَ " أَبُو سَيّاف " + name: ORG 3-7 جَماعَةَ " أَبُو سَيّاف " + 4 " + 5 أَبُو + 6 سَيّاف + 7 " + 8 تَمَكَّنَت + prop: tamak~an.01 + v * -> 8:0, تَمَكَّنَت + ARG1 * -> 3:1, جَماعَةَ " أَبُو سَيّاف " + * -> 9:0, *T*-2 -> 3:1, جَماعَةَ " أَبُو سَيّاف " + ARG2 * -> 10:1, مِن النَجاَةِ مِن عَمَلِيَّةٍ واسِعَةٍ 0 نَفَّذَ- -ها *T*-3 الجَيْشُ الفِلِيبِّينِيُّ + فِي الأَدْغالِ فِي جَنُوبِ البِلادِ + 9 *T*-2 + 10 مِن + 11 النَجاَةِ + 12 مِن + 13 عَمَلِيَّةٍ + sense: Eamaliy~ap-n.2 + coref: IDENT 117 13-25 عَمَلِيَّةٍ واسِعَةٍ 0 نَفَّذَ- -ها *T*-3 الجَيْشُ الفِلِيبِّينِيُّ فِي + الأَدْغالِ فِي جَنُوبِ البِلادِ + 14 واسِعَةٍ + 15 0 + 16 نَفَّذَ- + prop: naf~aX.01 + v * -> 16:0, نَفَّذَ- + ARG1 * -> 17:2, -ها *T*-3 + ARG0 * -> 19:1, الجَيْشُ الفِلِيبِّينِيُّ + ARGM-LOC * -> 21:1, فِي الأَدْغالِ فِي جَنُوبِ البِلادِ + 17 -ها + coref: IDENT 117 17-18 ها *T* + 18 *T*-3 + 19 الجَيْشُ + name: ORG 19-20 الجَيْشُ الفِلِيبِّينِيُّ + 20 الفِلِيبِّينِيُّ + 21 فِي + 22 الأَدْغالِ + name: LOC 22-22 الأَدْغالِ + 23 فِي + 24 جَنُوبِ + 25 البِلادِ + 26 *-1 + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و صرح الناطق العسكري الجنرال اديلبيرتو ادان ان الجنود الاميركيين حُذروا من المخاطر التي قد يواجهون ها في باسيلان. + +Treebanked sentence: +-------------------- + وَ- -صَرَّحَ الناطِقُ العَسْكَرِيُّ الجِنِرالُ اديلبيرتو ادان أَنَّ الجُنُودَ الأَمِيرْكِيِّينَ حُذِّرُوا *T*-1 *-1 مِن + المَخاطِرِ الَّتِي قَد يُواجِهُونَ- * -ها *T*-2 فِي باسِيلان . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PV+PVSUFF_SUBJ:3MS -صَرَّحَ) + (NP-SBJ (NP (DET+NOUN+CASE_DEF_NOM الناطِقُ) + (DET+ADJ+CASE_DEF_NOM العَسْكَرِيُّ)) + (NP (DET+NOUN+CASE_DEF_NOM الجِنِرالُ) + (NOUN_PROP اديلبيرتو) + (NOUN_PROP ادان))) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-1 (DET+NOUN+CASE_DEF_ACC الجُنُودَ) + (DET+ADJ+NSUFF_MASC_PL_ACC الأَمِيرْكِيِّينَ)) + (VP (PV_PASS+PVSUFF_SUBJ:3MP حُذِّرُوا) + (NP-SBJ (-NONE- *T*-1)) + (NP-OBJ (-NONE- *-1)) + (PP-CLR (PREP مِن) + (NP (NP (DET+NOUN+CASE_DEF_GEN المَخاطِرِ)) + (SBAR (WHNP-2 (REL_PRON الَّتِي)) + (S (VP (PRT (VERB_PART قَد)) + (IV3MP+IV+IVSUFF_SUBJ:MP_MOOD:I يُواجِهُونَ-) + (NP-SBJ (-NONE- *)) + (NP-OBJ (NP (IVSUFF_DO:3FS -ها)) + (NP (-NONE- *T*-2))) + (PP-LOC (PREP فِي) + (NP (NOUN_PROP باسِيلان)))))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -صَرَّحَ + prop: Sar~aH.01 + v * -> 1:0, -صَرَّحَ + ARG0 * -> 2:2, الناطِقُ العَسْكَرِيُّ الجِنِرالُ اديلبيرتو ادان + ARG1 * -> 7:1, أَنَّ الجُنُودَ الأَمِيرْكِيِّينَ حُذِّرُوا *T*-1 *-1 مِن المَخاطِرِ الَّتِي قَد + يُواجِهُونَ- * -ها *T*-2 فِي باسِيلان + 2 الناطِقُ + 3 العَسْكَرِيُّ + 4 الجِنِرالُ + 5 اديلبيرتو + ! name: PERSON 5-6 اديلبيرتو ادان + 6 ادان + 7 أَنَّ + 8 الجُنُودَ + coref: IDENT 0 8-9 الجُنُودَ الأَمِيرْكِيِّينَ + 9 الأَمِيرْكِيِّينَ + name: NORP 9-9 الأَمِيرْكِيِّينَ + 10 حُذِّرُوا + prop: HaX~ar.01 + v * -> 10:0, حُذِّرُوا + ARG1 * -> 8:1, الجُنُودَ الأَمِيرْكِيِّينَ + * -> 11:0, *T*-1 -> 8:1, الجُنُودَ الأَمِيرْكِيِّينَ + ARG2 * -> 13:1, مِن المَخاطِرِ الَّتِي قَد يُواجِهُونَ- * -ها *T*-2 فِي باسِيلان + 11 *T*-1 + 12 *-1 + 13 مِن + 14 المَخاطِرِ + 15 الَّتِي + 16 قَد + 17 يُواجِهُونَ- + sense: wAjah-v.2 + prop: wAjah.01 + v * -> 17:0, يُواجِهُونَ- + ARG0 * -> 8:1, الجُنُودَ الأَمِيرْكِيِّينَ + * -> 18:0, * + ARG1 * -> 19:2, -ها *T*-2 + ARGM-LOC * -> 21:1, فِي باسِيلان + 18 * + coref: IDENT 0 18-18 * + 19 -ها + 20 *T*-2 + 21 فِي + 22 باسِيلان + coref: IDENT 54 22-22 باسِيلان + name: LOC 22-22 باسِيلان + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و قال الناطق ب اسم الرئاسة ريغوبيرتو تيغلاو : " أخذنا في الاعتبار في تحضيرات نا امكان تكبد هم خسائر ". + +Treebanked sentence: +-------------------- + وَ- -قالَ الناطِقُ بِ- -{ِسْمِ الرِئاسَةِ ريغوبيرتو تيغلاو : " أَخَذنا * فِي ال{ِعْتِبارِ فِي تَحْضِيراتِ- -نا إِمْكانَ + تَكَبُّدِ- -هِم خَسائِرَ " . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PV+PVSUFF_SUBJ:3MS -قالَ) + (NP-SBJ (NP (NP (DET+NOUN+CASE_DEF_NOM الناطِقُ)) + (PP (PREP بِ-) + (NP (NOUN+CASE_DEF_GEN -{ِسْمِ) + (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN الرِئاسَةِ))))) + (NP (NOUN_PROP ريغوبيرتو) + (NOUN_PROP تيغلاو))) + (PUNC :) + (S (PUNC ") + (VP (PV+PVSUFF_SUBJ:1P أَخَذنا) + (NP-SBJ (-NONE- *)) + (PP-CLR (PREP فِي) + (NP (DET+NOUN+CASE_DEF_GEN ال{ِعْتِبارِ))) + (PP (PREP فِي) + (NP (NOUN+NSUFF_FEM_PL+CASE_DEF_GEN تَحْضِيراتِ-) + (NP (POSS_PRON_1P -نا)))) + (NP-OBJ (NOUN+CASE_DEF_ACC إِمْكانَ) + (S-NOM (VP (NOUN.VN+CASE_DEF_GEN تَكَبُّدِ-) + (NP-SBJ (POSS_PRON_3MP -هِم)) + (NP-OBJ (NOUN+CASE_INDEF_ACC خَسائِرَ)))))) + (PUNC "))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -قالَ + prop: qAl-u.01 + v * -> 1:0, -قالَ + ARG0 * -> 2:3, الناطِقُ بِ- -{ِسْمِ الرِئاسَةِ ريغوبيرتو تيغلاو + ARG1 * -> 9:1, " أَخَذنا * فِي ال{ِعْتِبارِ فِي تَحْضِيراتِ- -نا إِمْكانَ تَكَبُّدِ- -هِم خَسائِرَ " + 2 الناطِقُ + coref: APPOS ATTRIB 132 2-5 الناطِقُ بِ- -{ِسْمِ الرِئاسَةِ + 3 بِ- + 4 -{ِسْمِ + 5 الرِئاسَةِ + 6 ريغوبيرتو + coref: APPOS HEAD 132 6-7 ريغوبيرتو تيغلاو + name: PERSON 6-7 ريغوبيرتو تيغلاو + 7 تيغلاو + 8 : + 9 " + 10 أَخَذنا + prop: OaxaX-u.16 + v * -> 10:0, أَخَذنا + ARG0 * -> 11:0, * + ARG1 * -> 12:1, فِي ال{ِعْتِبارِ + ARGM-LOC * -> 14:1, فِي تَحْضِيراتِ- -نا + ARG2 * -> 17:1, إِمْكانَ تَكَبُّدِ- -هِم خَسائِرَ + 11 * + 12 فِي + 13 ال{ِعْتِبارِ + 14 فِي + 15 تَحْضِيراتِ- + 16 -نا + 17 إِمْكانَ + 18 تَكَبُّدِ- + 19 -هِم + coref: IDENT 0 19-19 -هِم + 20 خَسائِرَ + 21 " + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + على صعيد آخر, تحطمت امس طائرة تدريب عسكرية في منطقة سكنية في مدينة كاباناتوان على مسافة مئة كيلومتر شمال مانيلا, م ما + ادى الى مقتل خمسة اشخاص و احتراق اكثر من 20 منزلا. + +Treebanked sentence: +-------------------- + عَلَى صَعِيدٍ آخَرَ , تَحَطَّمَت أَمْسِ طائِرَةُ تَدْرِيبٍ عَسْكَرِيَّةٍ فِي مِنْطَقَةٍ سَكَنِيَّةٍ فِي مَدِينَةِ + كاباناتوان عَلَى مَسافَةِ مِئَةِ كِيلُومِترٍ شَمالَ مانِيلا , مِن- -ما أَدَّى *T*-1 إِلَى مَقْتَلِ خَمْسَةِ أَشْخاصٍ وَ- + -{ِحْتِراقِ أَكْثَرَ مِن 20 مَنْزِلاً . + +Tree: +----- + (TOP (S (PP (PREP عَلَى) + (NP (NOUN+CASE_INDEF_GEN صَعِيدٍ) + (ADJ+CASE_INDEF_GEN آخَرَ))) + (PUNC ,) + (VP (PV+PVSUFF_SUBJ:3FS تَحَطَّمَت) + (NP-TMP (NOUN+CASE_DEF_GEN أَمْسِ)) + (NP-SBJ (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_NOM طائِرَةُ) + (NP (NOUN+CASE_INDEF_GEN تَدْرِيبٍ))) + (ADJP (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN عَسْكَرِيَّةٍ))) + (PP-LOC (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_GEN مِنْطَقَةٍ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN سَكَنِيَّةٍ)) + (PP-LOC (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN مَدِينَةِ) + (NP (NOUN_PROP كاباناتوان))) + (PP-LOC (PREP عَلَى) + (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN مَسافَةِ) + (NP (NP (NOUN_NUM+NSUFF_FEM_SG+CASE_DEF_GEN مِئَةِ) + (NP (NOUN+CASE_INDEF_GEN كِيلُومِترٍ))) + (NP-LOC (NOUN+CASE_DEF_ACC شَمالَ) + (NP (NOUN_PROP مانِيلا)))))))))) + (PUNC ,) + (PP (PREP مِن-) + (SBAR-NOM (WHNP-1 (REL_PRON -ما)) + (S (VP (PV+PVSUFF_SUBJ:3MS أَدَّى) + (NP-SBJ (-NONE- *T*-1)) + (PP-CLR (PREP إِلَى) + (NP (NP (NOUN+CASE_DEF_GEN مَقْتَلِ) + (NP (NOUN_NUM+NSUFF_FEM_SG+CASE_DEF_GEN خَمْسَةِ) + (NP (NOUN+CASE_INDEF_GEN أَشْخاصٍ)))) + (CONJ وَ-) + (NP (NOUN+CASE_DEF_GEN -{ِحْتِراقِ) + (NP (NP (NOUN_QUANT+CASE_INDEF_GEN أَكْثَرَ)) + (PP (PREP مِن) + (NP (NOUN_NUM 20) + (NP (NOUN+CASE_INDEF_ACC مَنْزِلاً))))))))))))) + (PUNC .))) + +Leaves: +------- + 0 عَلَى + 1 صَعِيدٍ + 2 آخَرَ + 3 , + 4 تَحَطَّمَت + prop: taHaT~am.01 + v * -> 4:0, تَحَطَّمَت + ARGM-TMP * -> 5:1, أَمْسِ + ARG1 * -> 6:2, طائِرَةُ تَدْرِيبٍ عَسْكَرِيَّةٍ + ARGM-LOC * -> 9:1, فِي مِنْطَقَةٍ سَكَنِيَّةٍ فِي مَدِينَةِ كاباناتوان عَلَى مَسافَةِ مِئَةِ كِيلُومِترٍ + شَمالَ مانِيلا + ARGM-ADV * -> 22:1, مِن- -ما أَدَّى *T*-1 إِلَى مَقْتَلِ خَمْسَةِ أَشْخاصٍ وَ- -{ِحْتِراقِ أَكْثَرَ مِن 20 + مَنْزِلاً + 5 أَمْسِ + 6 طائِرَةُ + coref: IDENT 140 6-8 طائِرَةُ تَدْرِيبٍ عَسْكَرِيَّةٍ + 7 تَدْرِيبٍ + 8 عَسْكَرِيَّةٍ + 9 فِي + 10 مِنْطَقَةٍ + 11 سَكَنِيَّةٍ + 12 فِي + 13 مَدِينَةِ + 14 كاباناتوان + name: GPE 14-14 كاباناتوان + 15 عَلَى + 16 مَسافَةِ + 17 مِئَةِ + name: QUANTITY 17-18 مِئَةِ كِيلُومِترٍ + 18 كِيلُومِترٍ + 19 شَمالَ + 20 مانِيلا + coref: IDENT 22 20-20 مانِيلا + name: GPE 20-20 مانِيلا + 21 , + 22 مِن- + 23 -ما + 24 أَدَّى + sense: Oad~aY-v.1 + prop: Oad~aY.02 + v * -> 24:0, أَدَّى + ARG0 * -> 23:1, -ما + * -> 25:0, *T*-1 -> 23:1, -ما + ARG2 * -> 26:1, إِلَى مَقْتَلِ خَمْسَةِ أَشْخاصٍ وَ- -{ِحْتِراقِ أَكْثَرَ مِن 20 مَنْزِلاً + 25 *T*-1 + 26 إِلَى + 27 مَقْتَلِ + 28 خَمْسَةِ + 29 أَشْخاصٍ + 30 وَ- + 31 -{ِحْتِراقِ + 32 أَكْثَرَ + 33 مِن + 34 20 + name: CARDINAL 34-34 20 + 35 مَنْزِلاً + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و لم يتسن على الفور معرفة سبب الحادث, الا ان مسؤولين عسكريين قالوا ان طائرة التدريب الايطالية الصنع من طراز " سياي + مارشيتي اس 211 " التابعة ل لقوات الجوية كانت في مهمة تدريب روتينية, عند ما تحطمت. + +Treebanked sentence: +-------------------- + وَ- -لَم يَتَسَنَّ عَلَى الفَوْرِ مَعْرِفَةُ سَبَبِ الحادِثِ , إِلّا أَنَّ مَسْؤُولِينَ عَسْكَرِيِّينَ قالُوا *T*-1 + أَنَّ طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " 0 التابِعَةَ *T*-4 لِ- -القُوّاتِ + الجَوِّيَّةِ كانَت *T*-2 فِي مُهِمَّةِ تَدْرِيبٍ رُوتِينِيَّةٍ , عِنْدَ- -ما تَحَطَّمَت * . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PRT (NEG_PART -لَم)) + (IV3MS+IV+IVSUFF_MOOD:J يَتَسَنَّ) + (PP-TMP (PREP عَلَى) + (NP (DET+NOUN+CASE_DEF_GEN الفَوْرِ))) + (NP-SBJ (NOUN+NSUFF_FEM_SG+CASE_DEF_NOM مَعْرِفَةُ) + (NP (NOUN+CASE_DEF_GEN سَبَبِ) + (NP (DET+NOUN+CASE_DEF_GEN الحادِثِ)))) + (PUNC ,) + (PP (PREP إِلّا) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-1 (NOUN+NSUFF_MASC_PL_ACC مَسْؤُولِينَ) + (ADJ+NSUFF_MASC_PL_ACC عَسْكَرِيِّينَ)) + (VP (PV+PVSUFF_SUBJ:3MP قالُوا) + (NP-SBJ (-NONE- *T*-1)) + (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-2 (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_ACC طائِرَةَ) + (NP (DET+NOUN+CASE_DEF_GEN التَدْرِيبِ))) + (ADJP (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_ACC الإِيطالِيَّةَ) + (NP (DET+NOUN+CASE_DEF_GEN الصُنْعِ))) + (PP (PREP مِن) + (NP (NOUN+CASE_DEF_GEN طِرازِ) + (NP (PUNC ") + (NOUN_PROP سياي) + (NOUN_PROP مارشيتي) + (ABBREV إِس) + (NOUN_NUM 211) + (PUNC "))))) + (SBAR (WHNP-4 (-NONE- 0)) + (S (VP (DET+ADJ.VN+NSUFF_FEM_SG+CASE_DEF_ACC التابِعَةَ) + (NP-SBJ (-NONE- *T*-4)) + (PP-CLR (PREP لِ-) + (NP (DET+NOUN+NSUFF_FEM_PL+CASE_DEF_GEN -القُوّاتِ) + (DET+ADJ+NSUFF_FEM_SG+CASE_DEF_GEN + الجَوِّيَّةِ))))))) + (VP (PV+PVSUFF_SUBJ:3FS كانَت) + (NP-SBJ (-NONE- *T*-2)) + (PP-PRD (PREP فِي) + (NP (NP (NOUN+NSUFF_FEM_SG+CASE_DEF_GEN مُهِمَّةِ) + (NP (NOUN+CASE_INDEF_GEN تَدْرِيبٍ))) + (ADJP (ADJ+NSUFF_FEM_SG+CASE_INDEF_GEN رُوتِينِيَّةٍ)))) + (PUNC ,) + (NP-TMP (NOUN+CASE_DEF_ACC عِنْدَ-) + (SBAR (SUB_CONJ -ما) + (S (VP (PV+PVSUFF_SUBJ:3FS تَحَطَّمَت) + (NP-SBJ (-NONE- *)))))))))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -لَم + 2 يَتَسَنَّ + prop: tasan~aY.01 + v * -> 2:0, يَتَسَنَّ + ARGM-TMP * -> 3:1, عَلَى الفَوْرِ + ARG1 * -> 5:1, مَعْرِفَةُ سَبَبِ الحادِثِ + ARGM-ADV * -> 9:1, إِلّا أَنَّ مَسْؤُولِينَ عَسْكَرِيِّينَ قالُوا *T*-1 أَنَّ طائِرَةَ التَدْرِيبِ + الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " 0 التابِعَةَ *T*-4 لِ- + -القُوّاتِ الجَوِّيَّةِ كانَت *T*-2 فِي مُهِمَّةِ تَدْرِيبٍ رُوتِينِيَّةٍ , عِنْدَ- + -ما تَحَطَّمَت * + 3 عَلَى + 4 الفَوْرِ + 5 مَعْرِفَةُ + 6 سَبَبِ + 7 الحادِثِ + 8 , + 9 إِلّا + 10 أَنَّ + 11 مَسْؤُولِينَ + 12 عَسْكَرِيِّينَ + 13 قالُوا + prop: qAl-u.01 + v * -> 13:0, قالُوا + ARG0 * -> 11:1, مَسْؤُولِينَ عَسْكَرِيِّينَ + * -> 14:0, *T*-1 -> 11:1, مَسْؤُولِينَ عَسْكَرِيِّينَ + ARG1 * -> 15:1, أَنَّ طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " + 0 التابِعَةَ *T*-4 لِ- -القُوّاتِ الجَوِّيَّةِ كانَت *T*-2 فِي مُهِمَّةِ تَدْرِيبٍ + رُوتِينِيَّةٍ , عِنْدَ- -ما تَحَطَّمَت * + 14 *T*-1 + 15 أَنَّ + 16 طائِرَةَ + coref: IDENT 140 16-33 طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس + 211 " 0 التابِعَةَ *T*-4 لِ- -القُوّاتِ الجَوِّيَّةِ + 17 التَدْرِيبِ + 18 الإِيطالِيَّةَ + name: NORP 18-18 الإِيطالِيَّةَ + 19 الصُنْعِ + 20 مِن + 21 طِرازِ + 22 " + name: PRODUCT 22-27 " سياي مارشيتي إِس 211 " + 23 سياي + 24 مارشيتي + 25 إِس + 26 211 + 27 " + 28 0 + 29 التابِعَةَ + prop: tAbiE.01 + j * -> 29:0, التابِعَةَ + ARG1 * -> 16:2, طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " + * -> 28:0, 0 + * -> 30:0, *T*-4 -> 28:0, 0 + ARG2 * -> 31:1, لِ- -القُوّاتِ الجَوِّيَّةِ + 30 *T*-4 + 31 لِ- + 32 -القُوّاتِ + 33 الجَوِّيَّةِ + 34 كانَت + * prop: kAn-u.01 + v * -> 34:0, كانَت + ARG1 * -> 16:3, طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " 0 + التابِعَةَ *T*-4 لِ- -القُوّاتِ الجَوِّيَّةِ + * -> 16:2, طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " + * -> 35:0, *T*-2 -> 16:3, طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي + إِس 211 " 0 التابِعَةَ *T*-4 لِ- -القُوّاتِ الجَوِّيَّةِ + ARG2 * -> 36:1, فِي مُهِمَّةِ تَدْرِيبٍ رُوتِينِيَّةٍ + ARGM-TMP * -> 41:1, عِنْدَ- -ما تَحَطَّمَت * + 35 *T*-2 + 36 فِي + 37 مُهِمَّةِ + 38 تَدْرِيبٍ + 39 رُوتِينِيَّةٍ + 40 , + 41 عِنْدَ- + 42 -ما + 43 تَحَطَّمَت + prop: taHaT~am.01 + v * -> 43:0, تَحَطَّمَت + ARG1 * -> 16:2, طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " + * -> 44:0, * + 44 * + coref: IDENT 140 44-44 * + 45 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و قتل قائد الطائرة و مساعد ه على الفور اضافة الى ثلاثة مدنيين على الارض و جرح عدد آخر. + +Treebanked sentence: +-------------------- + وَ- -قُتِلَ قائِدُ الطائِرَةِ وَ- -مُساعِدُ- -هُ *-1 عَلَى الفَوْرِ إِضافَةً إِلَى ثَلاثَةِ مَدَنِيِّينَ عَلَى الأَرْضِ + وَ- -جُرِحَ عَدَدٌ آخَرُ *-3 . + +Tree: +----- + (TOP (S (S (CONJ وَ-) + (VP (PV_PASS+PVSUFF_SUBJ:3MS -قُتِلَ) + (NP-SBJ-1 (NP (NOUN+CASE_DEF_NOM قائِدُ) + (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN الطائِرَةِ))) + (CONJ وَ-) + (NP (NOUN+CASE_DEF_NOM -مُساعِدُ-) + (NP (POSS_PRON_3MS -هُ)))) + (NP-OBJ (-NONE- *-1)) + (PP-TMP (PREP عَلَى) + (NP (DET+NOUN+CASE_DEF_GEN الفَوْرِ))) + (NP-ADV (NP (NOUN+NSUFF_FEM_SG+CASE_INDEF_ACC إِضافَةً)) + (PP (PREP إِلَى) + (NP (NP (NOUN_NUM+NSUFF_FEM_SG+CASE_DEF_GEN ثَلاثَةِ) + (NP (NOUN+NSUFF_MASC_PL_GEN مَدَنِيِّينَ))) + (PP-LOC (PREP عَلَى) + (NP (DET+NOUN+CASE_DEF_GEN الأَرْضِ)))))))) + (CONJ وَ-) + (S (VP (PV_PASS+PVSUFF_SUBJ:3MS -جُرِحَ) + (NP-SBJ-3 (NOUN+CASE_INDEF_NOM عَدَدٌ) + (ADJ+CASE_DEF_NOM آخَرُ)) + (NP-OBJ (-NONE- *-3)))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -قُتِلَ + prop: qatal-u.01 + v * -> 1:0, -قُتِلَ + ARG1 * -> 2:2, قائِدُ الطائِرَةِ وَ- -مُساعِدُ- -هُ + ARGM-TMP * -> 8:1, عَلَى الفَوْرِ + ARGM-ADV * -> 10:2, إِضافَةً إِلَى ثَلاثَةِ مَدَنِيِّينَ عَلَى الأَرْضِ + 2 قائِدُ + coref: IDENT 170 2-3 قائِدُ الطائِرَةِ + 3 الطائِرَةِ + coref: IDENT 140 3-3 الطائِرَةِ + 4 وَ- + 5 -مُساعِدُ- + 6 -هُ + coref: IDENT 170 6-6 ه + 7 *-1 + 8 عَلَى + 9 الفَوْرِ + 10 إِضافَةً + 11 إِلَى + 12 ثَلاثَةِ + 13 مَدَنِيِّينَ + 14 عَلَى + 15 الأَرْضِ + 16 وَ- + 17 -جُرِحَ + prop: jaraH-a.01 + v * -> 17:0, -جُرِحَ + ARG1 * -> 18:1, عَدَدٌ آخَرُ + 18 عَدَدٌ + sense: Eadad-n.1 + 19 آخَرُ + 20 *-3 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + و نقلت اذاعة محلية عن مسؤولين في الشرطة ان 21 منزلا احترقت و ان ثلاثة اخرى لحقت ب ها اضرار. + +Treebanked sentence: +-------------------- + وَ- -نَقَلَت إِذاعَةٌ مَحَلِّيَّةٌ عَن مَسْؤُولِينَ فِي الشُرْطَةِ أَنَّ 21 مَنْزِلاً {ِحْتَرَقَت *T*-1 وَ- -أَنَّ + ثَلاثَةً أُخْرَى لَحِقَت بِ- -ها *T*-2 أَضْرارٌ . + +Tree: +----- + (TOP (S (CONJ وَ-) + (VP (PV+PVSUFF_SUBJ:3FS -نَقَلَت) + (NP-SBJ (NOUN+NSUFF_FEM_SG+CASE_INDEF_NOM إِذاعَةٌ) + (ADJ+NSUFF_FEM_SG+CASE_INDEF_NOM مَحَلِّيَّةٌ)) + (PP (PREP عَن) + (NP (NP (NOUN+NSUFF_MASC_PL_GEN مَسْؤُولِينَ)) + (PP (PREP فِي) + (NP (DET+NOUN+NSUFF_FEM_SG+CASE_DEF_GEN الشُرْطَةِ))))) + (SBAR (SBAR (SUB_CONJ أَنَّ) + (S (NP-TPC-1 (NOUN_NUM 21) + (NP (NOUN+CASE_INDEF_ACC مَنْزِلاً))) + (VP (PV+PVSUFF_SUBJ:3FS {ِحْتَرَقَت) + (NP-SBJ (-NONE- *T*-1))))) + (CONJ وَ-) + (SBAR (SUB_CONJ -أَنَّ) + (S (NP-TPC-2 (NOUN_NUM+NSUFF_FEM_SG+CASE_INDEF_ACC ثَلاثَةً) + (ADJ أُخْرَى)) + (VP (PV+PVSUFF_SUBJ:3FS لَحِقَت) + (PP-CLR (PREP بِ-) + (NP (NP (PRON_3FS -ها)) + (NP (-NONE- *T*-2)))) + (NP-SBJ (NOUN+CASE_INDEF_NOM أَضْرارٌ))))))) + (PUNC .))) + +Leaves: +------- + 0 وَ- + 1 -نَقَلَت + sense: naqal-u-v.1 + prop: naqal-u.01 + v * -> 1:0, -نَقَلَت + ARG0 * -> 2:1, إِذاعَةٌ مَحَلِّيَّةٌ + ARG2 * -> 4:1, عَن مَسْؤُولِينَ فِي الشُرْطَةِ + ARG1 * -> 8:2, أَنَّ 21 مَنْزِلاً {ِحْتَرَقَت *T*-1 وَ- -أَنَّ ثَلاثَةً أُخْرَى لَحِقَت بِ- -ها *T*-2 + أَضْرارٌ + 2 إِذاعَةٌ + 3 مَحَلِّيَّةٌ + 4 عَن + 5 مَسْؤُولِينَ + 6 فِي + 7 الشُرْطَةِ + 8 أَنَّ + 9 21 + name: CARDINAL 9-9 21 + 10 مَنْزِلاً + 11 {ِحْتَرَقَت + prop: {iHotaraq.01 + v * -> 11:0, {ِحْتَرَقَت + ARG1 * -> 9:1, 21 مَنْزِلاً + * -> 12:0, *T*-1 -> 9:1, 21 مَنْزِلاً + 12 *T*-1 + 13 وَ- + 14 -أَنَّ + 15 ثَلاثَةً + coref: IDENT 181 15-16 ثَلاثَةً أُخْرَى + 16 أُخْرَى + 17 لَحِقَت + prop: laHiq-a.01 + v * -> 17:0, لَحِقَت + ARG1 * -> 18:1, بِ- -ها *T*-2 + ARG0 * -> 21:1, أَضْرارٌ + 18 بِ- + 19 -ها + coref: IDENT 181 19-20 ها *T* + 20 *T*-2 + 21 أَضْرارٌ + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + -LRB-و ص ف, رويترز, أب-RRB- + +Treebanked sentence: +-------------------- + -LRB- و ص ف , رُويْتِرز , أب -RRB- + +Tree: +----- + (TOP (NP (PUNC -LRB-) + (NP (ABBREV و) + (ABBREV ص) + (ABBREV ف)) + (PUNC ,) + (NP (NOUN_PROP رُويْتِرز)) + (PUNC ,) + (NP (ABBREV أب)) + (PUNC -RRB-))) + +Leaves: +------- + 0 -LRB- + 1 و + 2 ص + 3 ف + 4 , + 5 رُويْتِرز + name: ORG 5-5 رُويْتِرز + 6 , + 7 أب + 8 -RRB- + + +======================================================================================================================== +Coreference chains for section 0: +--------------------------------- + + Chain 0 (IDENT) + 0.0-4 650 جُنْدِيّاً أَمِيرْكِيّاً إِلَى الفِيلِيبِّين + 1.41-44 نَحْوَ 650 جُنْدِيّاً أَمِيرْكِيّاً + 5.4-4 الأَمِيرْكِيِّينَ + 5.13-13 -هُم + 5.20-20 * + 5.25-25 -هِم + 5.29-29 * + 8.8-9 الجُنُودَ الأَمِيرْكِيِّينَ + 8.18-18 * + 9.19-19 -هِم + + Chain 1 (IDENT) + 0.4-4 الفِيلِيبِّين + 1.22-22 الفِيلِيبِّين + 1.97-97 البِلادِ + 3.14-14 البِلادِ + 4.46-46 البِلادِ + + Chain 3 (IDENT) + 0.8-16 بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -القَضاءِ عَلَى " أَبُو سَيّاف " + 1.16-20 بِعْثَةٍ تَدْرِيبِيَّةٍ لِ- -مُكافَحَةِ الإِرْهابِ + + Chain 5 (IDENT) + 0.13-16 " أَبُو سَيّاف " + 1.68-69 ها *T* + 1.62-97 " أَبُو سَيّاف " الَّتِي تَرْبِطُ- -ها *T*-5 صِلاتٌ بِ- -تَنْظِيمِ " القاعِدَةِ " الَّذِي + يَتَزَعَّمُ- -هُ *T*-4 أُسامَة بِن لادِن , مِن- -ما سَ- -يُتِيحُ *T*-2 لَ- -هُم ال{ِنْتِقالَ + إِلَى مَناطِقِ القِتالِ فِي جَنُوبِ البِلادِ + 2.34-37 " أَبُو سَيّاف " + 7.3-7 جَماعَةَ " أَبُو سَيّاف " + + Chain 21 (IDENT) + 1.36-39 مَسْؤُولُونَ عَسْكَرِيُّونَ فِي مانِيلا + 4.20-20 * + + Chain 22 (IDENT) + 1.39-39 مانِيلا + 10.20-20 مانِيلا + + Chain 25 (IDENT) + 1.50-51 قُوّاتٍ فِلِيبِّينِيَّةٍ + 1.55-55 ها + 1.90-90 -هُم + 2.28-29 القُوّاتُ الفِلِيبِّينِيَّةُ + + Chain 35 (IDENT) + 1.73-75 " القاعِدَةِ " + 1.78-79 -هُ *T*-4 + + Chain 45 (IDENT) + 2.5-5 التَدْرِيباتُ + 2.12-12 * + + Chain 52 (IDENT) + 2.19-19 زامْبُوانْغا + 2.25-25 ها + + Chain 54 (IDENT) + 2.22-22 باسِيلان + 4.43-43 باسِيلان + 8.22-22 باسِيلان + + Chain 60 (IDENT) + 2.41-41 رَهائِنَ + 2.45-45 ها + + Chain 66 (APPOS) + ATTRIB 3.2-3 وَزِيرُ الدِفاعِ + HEAD 3.4-5 أَنْجِيلُو رييس + + Chain 64 (IDENT) + 3.2-5 وَزِيرُ الدِفاعِ أَنْجِيلُو رييس + 5.2-2 * + 5.35-35 * + + Chain 67 (IDENT) + 3.7-10 نَحْوَ سِتَّةِ مَسْؤُولِينَ أَمِيرْكِيِّينَ + 3.25-25 -هِم + + Chain 80 (IDENT) + 4.25-25 -هُم + 4.22-29 -الآخِرِينَ , وَ- -هُم أَعْضاءٌ فِي القُوّاتِ الخاصَّةِ + + Chain ANN20020115.0001.tree.decode-E3 (IDENT) + 5.37-37 الوَقْتِ + 5.39-39 ه + + Chain 105 (IDENT) + 6.21-21 * + 6.8-29 التَدْرِيباتِ الَّتِي تَمْتَدُّ *T*-1 بَيْنَ كانُون الثانِي وَ- -حَزِيرانَ , وَ- -قَد + تَسْتَمِرُّ * طِوالَ السَنَةِ " تَبَعاً لِ- -تَطَوُّراتِ الأَوْضاعِ " + + Chain 117 (IDENT) + 7.17-18 ها *T* + 7.13-25 عَمَلِيَّةٍ واسِعَةٍ 0 نَفَّذَ- -ها *T*-3 الجَيْشُ الفِلِيبِّينِيُّ فِي الأَدْغالِ فِي جَنُوبِ + البِلادِ + + Chain 132 (APPOS) + ATTRIB 9.2-5 الناطِقُ بِ- -{ِسْمِ الرِئاسَةِ + HEAD 9.6-7 ريغوبيرتو تيغلاو + + Chain 140 (IDENT) + 10.6-8 طائِرَةُ تَدْرِيبٍ عَسْكَرِيَّةٍ + 11.16-33 طائِرَةَ التَدْرِيبِ الإِيطالِيَّةَ الصُنْعِ مِن طِرازِ " سياي مارشيتي إِس 211 " 0 التابِعَةَ + *T*-4 لِ- -القُوّاتِ الجَوِّيَّةِ + 11.44-44 * + 12.3-3 الطائِرَةِ + + Chain 170 (IDENT) + 12.2-3 قائِدُ الطائِرَةِ + 12.6-6 ه + + Chain 181 (IDENT) + 13.15-16 ثَلاثَةً أُخْرَى + 13.19-20 ها *T* diff --git a/demo/ann_0001.txt b/demo/ann_0001.txt new file mode 100644 index 00000000..4337e5f2 --- /dev/null +++ b/demo/ann_0001.txt @@ -0,0 +1,2 @@ + 650 جندياً أميركياً إلى الفيليبين من اليوم في بعثة تدريبية ل لقضاء على" أبو سياف" بعد ما تضاربت المعلومات الاسبوع الماضي عن عدد الجنود الاميركيين الذين س يشاركون في بعثة تدريبية ل مكافحة الارهاب في الفيليبين, في إطار جهود واشنطن ل مكافحة الارهاب في العالم, أفاد أمس مسؤولون عسكريون في مانيلا ان نحو 650 جندياً اميركياً س ينضمون تباعاً الى قوات فيليبينية ل تعزيز قدرات ها الدفاعية من أجل القضاء على جماعة" أبو سياف" التي تربط ها صلات ب تنظيم" القاعدة" الذي يتزعم ه اسامة بن لادن, م ما س يتيح ل هم الانتقال الى مناطق القتال في جنوب البلاد. و من المقرر ان تبدأ التدريبات هذا الشهر, و قد تستمر حتى نهاية هذه السنة في مدينة زامبوانغا و جزيرة باسيلان المجاورة ل ها حيث تشن القوات الفيليبينية حملة واسعة على جماعة" ابو سياف" التي تحتجز رهائن, بين ها أميركيان منذ حزيران الماضي. و قال وزير الدفاع انجيلو رييس ان نحو ستة مسؤولين اميركيين وصلوا الى البلاد ل لبحث في التدابير اللوجيستية, على ان يلحق ب هم الاخرون تباعاً, بدءا من اليوم. و في الاجمال, س يشارك 500 جندي اميركي في عمليات" دعم و صيانة", بينما س يسمح ل لاخرين, و هم اعضاء في القوات الخاصة, ب مشاركة الجنود الفيليبينيين أحياناً في مطاردة المتطرفين الاسلاميين في جزيرة باسيلان في جنوب البلاد. و اوضح ان الاميركيين" لن يشاركوا في المعارك و لكن هم س يكونون مسلحين و يستطيعون الدفاع عن انفس هم عند ما يتعرضون ل هجوم", مؤكدا في الوقت نفس ه ان ها ليست عملية سرية ل لجيش الاميركي. و س يشارك نحو 1200 جندي فيليبيني في التدريبات التي تمتد بين كانون الثاني و حزيران, و قد تستمر طوال السنة" تبعاً ل تطورات الاوضاع". و يذكر ان جماعة" ابو سياف" تمكنت من النجاة من عملية واسعة نفذ ها الجيش الفيليبيني في الادغال في جنوب البلاد. و صرح الناطق العسكري الجنرال اديلبيرتو ادان ان الجنود الاميركيين حُذروا من المخاطر التي قد يواجهون ها في باسيلان. و قال الناطق ب اسم الرئاسة ريغوبيرتو تيغلاو:" أخذنا في الاعتبار في تحضيرات نا امكان تكبد هم خسائر". على صعيد آخر, تحطمت امس طائرة تدريب عسكرية في منطقة سكنية في مدينة كاباناتوان على مسافة مئة كيلومتر شمال مانيلا, م ما ادى الى مقتل خمسة اشخاص و احتراق اكثر من 20 منزلا. و لم يتسن على الفور معرفة سبب الحادث, الا ان مسؤولين عسكريين قالوا ان طائرة التدريب الايطالية الصنع من طراز" سياي مارشيتي اس 211" التابعة ل لقوات الجوية كانت في مهمة تدريب روتينية, عند ما تحطمت. و قتل قائد الطائرة و مساعد ه على الفور اضافة الى ثلاثة مدنيين على الارض و جرح عدد آخر. و نقلت اذاعة محلية عن مسؤولين في الشرطة ان 21 منزلا احترقت و ان ثلاثة اخرى لحقت ب ها اضرار.-LRB-و ص ف, رويترز, أب-RRB- + diff --git a/demo/cmpr9410_027.in.conll b/demo/cmpr9410_027.in.conll new file mode 100644 index 00000000..b96611d8 --- /dev/null +++ b/demo/cmpr9410_027.in.conll @@ -0,0 +1,817 @@ +1 Místo místo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +2 i i CONJ J^------------- _ 5 advmod:emph _ _ +3 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 malé malý ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 5 amod _ _ +5 firmy firma NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 1 nmod _ _ + +1 Orientace orientace NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 6 nsubj _ _ +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +3 drobné drobný ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 amod _ _ +4 podnikatele podnikatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 6 expl _ _ +6 vyplácí vyplácet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ + +1 Málokde málokde ADV Db------------- _ 2 advmod _ _ +2 vládne vládnout VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 tak tak ADV Db------------- _ 2 advmod _ _ +4 konkurenční konkurenční ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 5 amod _ _ +5 prostředí prostředí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 2 nsubj _ _ +6 jako jako SCONJ J,------------- _ 9 mark _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 počítačové počítačový ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 branži branže NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 dep _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 4 cc _ _ +2 i i CONJ J^------------- _ 3 advmod:emph _ _ +3 zde zde ADV Db------------- _ 4 advmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 zřejmě zřejmě ADV Dg-------1A---- Degree=Pos|Negative=Pos 4 cc _ _ +7 i i CONJ J^------------- _ 9 advmod:emph _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 budoucnu budoucno NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 10 nmod _ _ +10 bude být VERB VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 4 conj _ _ +11 dostatek dostatek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 10 nsubj _ _ +12 prostoru prostor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ _ +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +14 spoustu spousta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ _ +15 malých malý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 firem firma NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Jenom jenom PART TT------------- _ 6 advmod:emph _ _ +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 7 nmod _ _ +3 každá každý ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 nsubj _ _ +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 nich on PRON P5XP2--3------- Case=Gen|Number=Plur|Person=3|PrepCase=Pre|PronType=Prs 3 nmod _ _ +6 musí muset VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 najít najít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 6 xcomp _ _ +8 svoji svůj DET P8FS4---------- Case=Acc|Gender=Fem|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 9 det _ _ +9 tvář tvář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 7 dobj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 9 punct _ _ +11 svoje svůj DET P8XP4---------- Case=Acc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 12 det _ _ +12 zákazníky zákazník NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Například například ADV Db------------- _ 3 advmod:emph _ _ +2 pražská pražský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +3 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 13 nsubj _ _ +4 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 3 nmod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 6 punct _ _ +6 s společnost NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 3 nmod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ SpaceAfter=No +8 r ručení NOUN NNNS7-----A---8 Abbr=Yes|Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ SpaceAfter=No +10 o omezený ADJ AANS7----1A---8 Abbr=Yes|Case=Ins|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 8 amod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 6 punct _ _ +13 začínala začínat VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 16 case _ _ +15 dvou dva NUM ClXP6---------- Case=Loc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod _ _ +16 lidech člověk NOUN NNMP6-----A---- Animacy=Anim|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 13 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 13 punct _ _ +18 dnes dnes ADV Db------------- _ 19 advmod _ _ +19 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +20 čtyři čtyři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +21 pracovníky pracovník NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 19 dobj _ _ +22 a a CONJ J^------------- _ 13 cc _ _ +23 do do ADP RR--2---------- AdpType=Prep|Case=Gen 24 case _ _ +24 budoucna budoucno NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 25 nmod _ _ +25 nemíní mínit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +26 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 27 det _ _ +27 počet počet NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 29 dobj _ _ +28 příliš příliš ADV Db------------- _ 29 advmod _ _ +29 zvyšovat zvyšovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 25 xcomp _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 13 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +3 potřeby potřeba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +5 spoléhá spoléhat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 spíše spíše ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 5 advmod _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 pomoc pomoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +9 externích externí ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 10 amod _ _ +10 spolupracovníků spolupracovník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 5 punct _ _ + +1 O o ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 tom ten PRON PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 10 dobj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 na na ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 čem co PRON PQ--6---------- Animacy=Inan|Case=Loc|PronType=Int,Rel 6 nmod _ _ +6 založila založit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ _ +7 svoji svůj DET P8FS4---------- Case=Acc|Gender=Fem|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 8 det _ _ +8 strategii strategie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 dobj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 hovořil hovořit VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +11 Profit profit NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 10 nsubj _ _ +12 s s ADP RR--7---------- AdpType=Prep|Case=Ins 15 case _ _ +13 jejím jeho DET PSZS7FS3------- Case=Ins|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 14 det _ _ +14 majitelem majitel NOUN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 15 nmod _ _ +15 Otou Ota PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 10 dobj _ _ +16 Luňákem Luňák PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 15 name _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 10 punct _ _ + +1 Téměř téměř ADV Db------------- _ 3 advmod:emph _ _ +2 od od ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +3 začátku začátek NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +4 existence existence NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +5 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +6 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 cop _ _ +7 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 8 nsubj _ _ +8 zaměření zaměření NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +10 malé malý ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 13 amod _ _ +11 a a CONJ J^------------- _ 10 cc _ _ +12 střední střední ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 10 conj _ _ +13 podnikatele podnikatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 8 punct _ _ + +1 Projevuje projevovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 expl _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 několika několik DET Ca--6---------- Case=Loc|NumType=Card|PronType=Dem,Ind 5 det:nummod _ _ +5 směrech směr NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Pokud pokud SCONJ J,------------- _ 2 mark _ _ +2 jde jít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 advcl _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 počítače počítač NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 2 dobj _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 2 punct _ _ +6 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 7 nsubj _ _ +7 přišel přijít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +9 náš můj DET PSIS4-P1------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 10 det _ _ +10 trh trh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +11 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +12 pécéčky pécéčko_,h_,l NOUN NNNP7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 jaká jaký PRON P4NP1---------- Case=Nom|Gender=Neut|Number=Plur|PronType=Int,Rel 16 nsubj _ _ +15 zde zde ADV Db------------- _ 16 advmod _ _ +16 nebyla být VERB VpQW---XR-NA--- Gender=Fem,Neut|Negative=Neg|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 12 acl _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 7 punct _ _ + +1 Jde jít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +3 tchajwanskou tchajwanský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 značku značka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 1 dobj _ _ +5 MiniSys MiniSys PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 4 nmod _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 15 punct _ _ +7 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 15 nsubj _ _ +8 při při ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +9 dobrých dobrý ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 výkonových výkonový ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +11 parametrech parametr NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 15 nmod _ _ +12 a a CONJ J^------------- _ 11 cc _ _ +13 nízké nízký ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 ceně cena NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 11 conj _ _ +15 zabírá zabírat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 acl _ _ +16 velmi velmi ADV Db------------- _ 17 advmod _ _ +17 malý malý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 18 amod _ _ +18 prostor prostor NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Počítač počítač NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 dobj _ _ +2 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 dokonce dokonce ADV Db------------- _ 5 advmod:emph _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pomocí pomoc NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +6 držáku držák NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +7 upevnit upevnit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 2 csubj _ _ +8 pod pod ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +9 hranu hrana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +10 stolu stůl NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 5 nsubj _ _ +2 už už ADV Db------------- _ 5 advmod _ _ +3 s s ADP RR--7---------- AdpType=Prep|Case=Ins 4 case _ _ +4 počítači počítač NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ _ +5 přišel přijít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 10 advcl _ _ +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 styku styk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 5 punct _ _ +9 ten ten PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 10 nsubj _ _ +10 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +11 obvykle obvykle ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod _ _ +12 zpočátku zpočátku ADV Db------------- _ 10 advmod _ _ +13 k k ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +14 takovému takový DET PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 15 det _ _ +15 zařízení zařízení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 17 nmod _ _ +16 trochu trochu ADV Db------------- _ 17 advmod _ _ +17 nedůvěru nedůvěra NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 10 dobj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ _ + +1 Těm ten PRON PDXP3---------- Case=Dat|Number=Plur|PronType=Dem 13 dobj _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 5 punct _ _ +3 kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 5 nsubj _ _ +4 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 5 nmod _ _ +5 pořizují pořizovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 acl _ _ +6 svůj svůj DET P8IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 8 det _ _ +7 první první ADJ CrIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumType=Ord 8 amod _ _ +8 počítač počítač NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 však však CONJ J^------------- _ 13 cc _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ _ +12 velikost velikost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 13 nsubj _ _ +13 vyhovuje vyhovovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +14 a a CONJ J^------------- _ 13 cc _ _ +15 stává stávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl _ _ +17 důležitým důležitý ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 18 amod _ _ +18 argumentem argument NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ _ +19 při při ADP RR--6---------- AdpType=Prep|Case=Loc 20 case _ _ +20 rozhodování rozhodování NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 18 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 13 punct _ _ + +1 Náročnějším náročný ADJ AAMP3----2A---- Animacy=Anim|Case=Dat|Degree=Cmp|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 zákazníkům zákazník NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 4 dobj _ _ +3 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +4 určeny určit VERB VsTP---XX-AP--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|VerbForm=Part|Voice=Pass 0 root _ _ +5 americké americký ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 počítače počítač NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ _ +7 ALR ALR PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 6 nmod _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 11 case _ _ +9 pětiletou pětiletý ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +10 záruční záruční ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +11 lhůtou lhůta NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 4 punct _ _ +13 kupují kupovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ _ +14 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 13 nmod _ _ +15 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 13 dobj _ _ +16 zejména zejména ADV Db------------- _ 17 advmod:emph _ _ +17 právníci právník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 13 nsubj _ _ +18 a a CONJ J^------------- _ 17 cc _ _ +19 lékaři lékař NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 17 conj _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Počítač počítač NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +2 i i CONJ J^------------- _ 4 advmod:emph _ _ +3 s s ADP RR--7---------- AdpType=Prep|Case=Ins 4 case _ _ +4 účetnictvím účetnictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 1 nmod _ _ + +1 S s ADP RR--7---------- AdpType=Prep|Case=Ins 2 case _ _ +2 prodejem prodej NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 8 dobj _ _ +3 samotných samotný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 amod _ _ +4 počítačů počítač NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +5 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 8 aux _ _ +6 však však CONJ J^------------- _ 8 cc _ _ +7 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 8 nsubj _ _ +8 neobstála obstát VERB VpQW---XR-NA--- Gender=Fem,Neut|Negative=Neg|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +1 Proto proto CONJ J^------------- _ 6 cc _ _ +2 vedle vedle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +3 obvyklého obvyklý ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 5 amod _ _ +4 programového programový ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 5 amod _ _ +5 vybavení vybavení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 6 nmod _ _ +6 nabízí nabízet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 také také ADV Db------------- _ 6 advmod _ _ +8 některé některý DET PZYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Ind 9 det _ _ +9 programy program NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 které který PRON P4IP1---------- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 13 nsubj _ _ +12 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 13 cop _ _ +13 nezbytné zbytný ADJ AAIP1----1N---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 9 acl _ _ +14 či či CONJ J^------------- _ 13 cc _ _ +15 užitečné užitečný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 13 conj _ _ +16 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 17 case _ _ +17 podnikatele podnikatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 13 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 6 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 prvé prvý ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +3 řadě řada NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +5 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 7 nsubj _ _ +6 programovatelný programovatelný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +7 systém systém NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +8 podvojného podvojný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 9 amod _ _ +9 účetnictví účetnictví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +10 Kvestor kvestor NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 7 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 testu test NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +3 Profitu profit NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +4 byl být AUX VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 7 auxpass _ _ +5 před před ADP RR--7---------- AdpType=Prep|Case=Ins 6 case _ _ +6 časem čas NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +7 hodnocen hodnotit VERB VsYS---XX-AP--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 0 root _ _ +8 velmi velmi ADV Db------------- _ 9 advmod _ _ +9 dobře dobře ADV Dg-------1A---- Degree=Pos|Negative=Pos 7 advmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 7 punct _ _ + +1 K k ADP RR--3---------- AdpType=Prep|Case=Dat 3 case _ _ +2 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +3 přednostem přednost NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +4 patří patřit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 schopnost schopnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ _ +6 tisku tisk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +7 výstupních výstupní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 sestav sestava NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 6 nmod _ _ +9 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +10 korektní korektní ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +11 českou český ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 diakritikou diakritika NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +13 a a CONJ J^------------- _ 5 cc _ _ +14 možnost možnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 conj _ _ +15 úprav úprava NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +16 účetního účetní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 17 amod _ _ +17 prostředí prostředí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +18 na na ADP RR--4---------- AdpType=Prep|Case=Acc 19 case _ _ +19 míru míra NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 17 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Účtování účtování NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 3 nsubj _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 auxpass:reflex _ _ +3 provádí provádět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 volbou volba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +6 uživatelském uživatelský ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 menu menu NOUN NNNXX-----A---- Gender=Neut|Negative=Pos 4 nmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 aniž aniž SCONJ J,------------- _ 12 mark _ _ +10 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 12 aux _ _ +11 bylo být VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 12 cop _ _ +12 nutné nutný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 3 advcl _ _ +13 ovládat ovládat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 12 csubj _ _ +14 účetní účetní_,a ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 15 amod _ _ +15 souvztažnosti souvztažnost NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 13 dobj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Navíc navíc ADV Db------------- _ 3 advmod _ _ +2 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 3 nsubj _ _ +3 nabízí nabízet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 uživatelům uživatel NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 3 iobj _ _ +5 tohoto tento DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 6 det _ _ +6 programu program NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +7 školení školení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 3 dobj _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 3 punct _ _ + +1 A a CONJ J^------------- _ 2 cc _ _ +2 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 7 cc _ _ +3 buď buď CONJ J^------------- _ 7 cc _ _ +4 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 7 case _ _ +5 svém svůj DET P8ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 7 det _ _ +6 školicím školicí ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 středisku středisko NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 nebo nebo CONJ J^------------- _ 7 cc _ _ +10 přímo přímo ADV Dg-------1A---- Degree=Pos|Negative=Pos 12 advmod:emph _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 pracovišti pracoviště NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 7 conj _ _ +13 či či CONJ J^------------- _ 12 cc _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +15 bytě byt NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 12 conj _ _ +16 zákazníka zákazník NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 15 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 7 punct _ _ + +1 Zejména zejména ADV Db------------- _ 4 advmod:emph _ _ +2 u u ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +3 začínajících začínající ADJ AGMP2-----A---- Animacy=Anim|Aspect=Imp|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 4 amod _ _ +4 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ _ +5 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 slušný slušný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +7 ohlas ohlas NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ _ +8 kombinace kombinace NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +9 tohoto tento DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 11 det _ _ +10 účetního účetní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +11 programu program NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +12 s s ADP RR--7---------- AdpType=Prep|Case=Ins 13 case _ _ +13 počítačem počítač NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +14 MiniSys MiniSys PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 17 nsubj _ _ +17 přijde přijít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ _ +18 na na ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +19 pouhých pouhý ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 20 amod _ _ +20 25 25 NUM C=------------- NumForm=Digit|NumType=Card 22 nummod:gov _ _ +21 000 000 NUM C=------------- NumForm=Digit|NumType=Card 22 nummod:gov _ _ +22 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 17 advmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Kniha kniha NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +2 jízd jízda NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 1 nmod _ _ + +1 Velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 úspěch úspěch NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ _ +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 poslední poslední ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ _ +6 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +7 také také ADV Db------------- _ 3 advmod _ _ +8 program program NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ _ +9 S S ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|NameType=Pro|Negative=Pos 13 amod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 P P ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|NameType=Pro|Negative=Pos 13 amod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +13 Z Z PROPN NNXXX-----A---8 Abbr=Yes|NameType=Pro|Negative=Pos 8 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Programátor programátor NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Milan Milan PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nsubj _ _ +3 Kuneš Kuneš PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ _ +4 ho on PRON PHZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 5 dobj _ _ +5 vytvořil vytvořit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 původně původně ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 interní interní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 potřebu potřeba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Ota Ota PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 4 nsubj _ _ +2 Luňák Luňák PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ +3 totiž totiž ADV Db------------- _ 4 cc _ _ +4 ztratil ztratit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 knihu kniha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +6 jízd jízda NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ _ +7 a a CONJ J^------------- _ 4 cc _ _ +8 potřeboval potřebovat VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ _ +9 ji on PRON PPFS4--3------- Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 10 dobj _ _ +10 zrekonstruovat zrekonstruovat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Tak tak ADV Db------------- _ 2 advmod _ _ +2 vznikl vzniknout VERB VpYS---XR-AA--1 Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +3 program program NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 6 nsubj _ _ +6 slouží sloužit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 nejen nejen PART TT------------- _ 10 advmod:emph _ _ +8 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +9 průběžné průběžný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 10 amod _ _ +10 vedení vedení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 dobj _ _ +11 předepsané předepsaný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 knihy kniha NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 jízd jízda NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 3 advmod _ _ +3 dokáže dokázat VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 zrekonstruovat zrekonstruovat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 3 xcomp _ _ +5 chybějící chybějící ADJ AGNS4-----A---- Aspect=Imp|Case=Acc|Gender=Neut|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 6 amod _ _ +6 období období NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 dobj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 3 punct _ _ +8 což což PRON PE--1---------- Case=Nom|PronType=Rel 13 nsubj _ _ +9 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 13 cop _ _ +10 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +12 často často ADV Dg-------1A---- Degree=Pos|Negative=Pos 13 advmod _ _ +13 zapotřebí zapotřebí ADV Db------------- _ 3 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 zadání zadání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +3 několika několik DET Ca--2---------- Case=Gen|NumType=Card|PronType=Dem,Ind 5 det:nummod _ _ +4 vstupních vstupní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 údajů údaj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +6 ( ( PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +7 počáteční počáteční ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 amod _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 konečný konečný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ _ +10 stav stav NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 dep _ _ +11 tachometru tachometr NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 10 punct _ _ +13 spotřeba spotřeba NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 10 conj _ _ +14 vozu vůz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +15 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +16 technického technický ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 17 amod _ _ +17 průkazu průkaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 46 punct _ _ +19 kam kam ADV Db------------- _ 46 advmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 22 punct _ _ +21 jak jak ADV Db------------- _ 22 advmod _ _ +22 často často ADV Dg-------1A---- Degree=Pos|Negative=Pos 46 advmod _ _ +23 a a CONJ J^------------- _ 22 cc _ _ +24 za za ADP RR--7---------- AdpType=Prep|Case=Ins 26 case _ _ +25 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 26 det _ _ +26 účelem účel NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 29 nmod _ _ +27 už už ADV Db------------- _ 29 advmod _ _ +28 obvykle obvykle ADV Dg-------1A---- Degree=Pos|Negative=Pos 29 advmod _ _ +29 jezdí jezdit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 22 conj _ SpaceAfter=No +30 , , PUNCT Z:------------- _ 19 punct _ _ +31 období období NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 19 conj _ SpaceAfter=No +32 , , PUNCT Z:------------- _ 19 punct _ _ +33 kdy kdy ADV Db------------- _ 36 advmod _ _ +34 určitě určitě ADV Dg-------1A---- Degree=Pos|Negative=Pos 36 advmod _ _ +35 nikam nikam ADV Db------------- _ 36 advmod _ _ +36 nejel jet VERB VpYS---XR-NA--- Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 19 conj _ SpaceAfter=No +37 , , PUNCT Z:------------- _ 19 punct _ _ +38 dny den NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 19 conj _ SpaceAfter=No +39 , , PUNCT Z:------------- _ 42 punct _ _ +40 kdy kdy ADV Db------------- _ 42 advmod _ _ +41 vůbec vůbec ADV Db------------- _ 42 advmod:emph _ _ +42 nejezdí jezdit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 38 acl _ _ +43 a a CONJ J^------------- _ 42 cc _ _ +44 podobně podobně ADV Dg-------1A---- Degree=Pos|Negative=Pos 42 conj _ SpaceAfter=No +45 ) ) PUNCT Z:------------- _ 19 punct _ _ +46 vytvoří vytvořit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 acl _ _ +47 s s ADP RR--7---------- AdpType=Prep|Case=Ins 48 case _ _ +48 pomocí pomoc NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 46 nmod _ _ +49 teorie teorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 48 nmod _ _ +50 pravděpodobnosti pravděpodobnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 49 nmod _ _ +51 kompletní kompletní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 52 amod _ _ +52 knihu kniha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 46 dobj _ _ +53 jízd jízda NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 52 nmod _ _ +54 se s ADP RV--7---------- AdpType=Voc|Case=Ins 56 case _ _ +55 všemi všechen PRON PLXP7---------- Case=Ins|Number=Plur|PronType=Tot 56 nmod _ _ +56 náležitostmi náležitost NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 52 nmod _ _ +57 včetně včetně ADP RR--2---------- AdpType=Prep|Case=Gen 59 case _ _ +58 vypočtené vypočtený ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 59 amod _ _ +59 náhrady náhrada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 56 nmod _ _ +60 v v ADP RR--6---------- AdpType=Prep|Case=Loc 61 case _ _ +61 korunách koruna NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 59 nmod _ _ +62 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 64 case _ _ +63 každou každý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 64 amod _ _ +64 cestu cesta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 61 nmod _ SpaceAfter=No +65 . . PUNCT Z:------------- _ 10 punct _ _ + +1 Když když SCONJ J,------------- _ 3 mark _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl _ _ +3 ukázalo ukázat VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 17 advcl _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 10 punct _ _ +5 že že SCONJ J,------------- _ 10 mark _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +8 podobný podobný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 program program NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 10 nsubj _ _ +10 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 csubj _ _ +11 a a CONJ J^------------- _ 10 cc _ _ +12 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 10 conj _ _ +13 o o ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +14 něj on PRON P5ZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 15 nmod _ _ +15 zájem zájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 12 nsubj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 3 punct _ _ +17 vytvořil vytvořit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +18 programátor programátor NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 17 nsubj _ _ +19 také také ADV Db------------- _ 17 advmod _ _ +20 verzi verze NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 17 dobj _ _ +21 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +22 neomezený omezený ADJ AAIS4----1N---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Neg|Number=Sing 23 amod _ _ +23 počet počet NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 20 nmod _ _ +24 aut auto NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 23 nmod _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 17 punct _ _ + +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 dalších další ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +3 programů program NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 17 nmod _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který PRON P4IP1---------- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ _ +6 nebývají bývat VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 běžně běžně ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +8 k k ADP RR--3---------- AdpType=Prep|Case=Dat 9 case _ _ +9 dostání dostání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 6 punct _ _ +11 ale ale CONJ J^------------- _ 6 cc _ _ +12 podnikateli podnikatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +13 jsou být AUX VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 auxpass _ _ +14 dost dost ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 žádány žádat VERB VsTP---XX-AP--- Animacy=Inan|Aspect=Imp|Gender=Fem,Masc|Negative=Pos|Number=Plur|VerbForm=Part|Voice=Pass 6 conj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 6 punct _ _ +17 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +18 za za ADP RR--4---------- AdpType=Prep|Case=Acc 19 case _ _ +19 zmínku zmínka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 17 nmod _ _ +20 programy program NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 17 nsubj _ _ +21 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 výuku výuka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 nmod _ _ +23 jazyků jazyk NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 22 nmod _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 20 punct _ _ +25 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 26 case _ _ +26 tvorbu tvorba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 conj _ _ +27 cizojazyčné cizojazyčný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 korespondence korespondence NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 26 nmod _ _ +29 či či CONJ J^------------- _ 26 cc _ _ +30 překlady překlad NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 26 conj _ _ +31 do do ADP RR--2---------- AdpType=Prep|Case=Gen 32 case _ _ +32 češtiny čeština NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 30 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 17 punct _ _ + +1 Arxonu Arxon PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 3 iobj _ _ +2 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 3 dobj _ _ +3 dodává dodávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ _ +5 Softex Softex PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 4 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Její jeho DET PSIS4FS3------- Animacy=Inan|Case=Acc|Gender=Masc|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +2 PC PC ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|NameType=Pro|Negative=Pos 3 amod _ _ +3 Translator Translator PROPN NNIS4-----A---- Animacy=Inan|Case=Acc|Foreign=Foreign|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 7 dobj _ _ +4 hodlá hodlat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 dokonce dokonce ADV Db------------- _ 6 advmod:emph _ _ +6 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 4 nsubj _ _ +7 upravit upravit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 xcomp _ _ +8 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +9 prostředí prostředí NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +10 Windows Windows NOUN NNIPX-----A---- Animacy=Inan|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Doplňková doplňkový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 prodejně prodejna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +3 Arxonu Arxon PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 2 nmod _ _ +4 najdou najít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 zákazníci zákazník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 7 punct _ _ +7 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +8 již již ADV Db------------- _ 9 advmod _ _ +9 stálí stálý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 7 conj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 7 punct _ _ +11 také také ADV Db------------- _ 13 advmod:emph _ _ +12 různé různý ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 příručky příručka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 7 conj _ _ +14 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +15 podnikatele podnikatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 13 nmod _ _ +16 a a CONJ J^------------- _ 15 cc _ _ +17 ekonomy ekonom NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Nejčastěji často ADV Dg-------3A---- Degree=Sup|Negative=Pos 4 advmod _ _ +2 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +3 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 4 nsubj _ _ +4 publikace publikace NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 0 root _ _ +5 pražského pražský ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 6 amod _ _ +6 nakladatelství nakladatelství NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +7 Profess Profess PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 6 nmod _ _ +8 a a CONJ J^------------- _ 6 cc _ _ +9 ostravského ostravský ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 10 amod _ _ +10 Miraga Mirago PROPN NNNS2-----A---- Case=Gen|Gender=Neut|NameType=Com|Negative=Pos|Number=Sing 6 conj _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Dále dále ADV Db------------1 _ 3 advmod _ _ +2 zde zde ADV Db------------- _ 3 advmod _ _ +3 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 četné četný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 formuláře formulář NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ _ +6 nezbytné zbytný ADJ AAIP1----1N---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 5 amod _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 podnikání podnikání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 tiskopisy tiskopis NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 conj _ _ +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 výpočetní výpočetní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 amod _ _ +13 techniku technika NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Ota Ota PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 3 nsubj _ _ +2 Luňák Luňák PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ +3 doporučuje doporučovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ _ +5 zákazníkům zákazník NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 3 dobj _ _ +6 a a CONJ J^------------- _ 3 cc _ _ +7 prodává prodávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 conj _ _ +8 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 7 iobj _ _ +9 také také ADV Db------------- _ 11 advmod:emph _ _ +10 motivační motivační ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 11 amod _ _ +11 kazety kazeta NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 7 dobj _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 15 punct _ _ +13 jejichž jenž DET P1XXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Rel 14 det _ _ +14 poslech poslech NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 15 nsubj _ _ +15 posiluje posilovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 acl _ _ +16 umění umění NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 15 dobj _ _ +17 soustředit soustředit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 acl _ _ +18 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 17 punct _ _ +20 pozitivní pozitivní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 21 amod _ _ +21 myšlení myšlení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 17 dobj _ _ +22 či či CONJ J^------------- _ 17 cc _ _ +23 pocity pocit NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 17 conj _ _ +24 sebedůvěry sebedůvěra NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Nedávno nedávno ADV Db------------- _ 2 advmod _ _ +2 začal začít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +3 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 2 nsubj _ _ +4 nabízet nabízet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 xcomp _ _ +5 služby služba NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +6 grafického grafický ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 studia studio NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Dodává dodávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 návrhy návrh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dobj _ _ +3 a a CONJ J^------------- _ 2 cc _ _ +4 případně případně ADV Dg-------1A---- Degree=Pos|Negative=Pos 2 cc _ _ +5 i i CONJ J^------------- _ 6 advmod:emph _ _ +6 zajistí zajistit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +7 výrobu výroba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 dobj _ _ +8 reklamních reklamní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 9 amod _ _ +9 letáků leták NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 9 punct _ _ +11 ceníků ceník NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 9 punct _ _ +13 tiskopisů tiskopis NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 9 punct _ _ +15 pozvánek pozvánka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 oznámení oznámení NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 9 punct _ _ +19 navštívenek navštívenka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 9 punct _ _ +21 firemních firemní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 cenovek cenovka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 9 punct _ _ +24 samolepek samolepka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Zájem zájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +2 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 školení školení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 nmod _ _ +5 vedl vést VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 firmu firma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +7 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 8 case _ _ +8 zřízení zřízení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ _ +9 malého malý ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 11 amod _ _ +10 školicího školicí ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 11 amod _ _ +11 střediska středisko NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 8 nmod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Nyní nyní ADV Db------------- _ 2 advmod _ _ +2 usiluje usilovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 2 dobj _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 9 punct _ _ +6-7 aby _ _ _ _ _ _ _ _ +6 aby aby SCONJ J,------------- _ 9 mark _ _ +7 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 9 aux _ _ +8 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 9 expl _ _ +9 stala stát VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 4 acl _ _ +10 autorizovaným autorizovaný ADJ AAMS7----1A---- Animacy=Anim|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +11 školitelem školitel NOUN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 9 dobj _ _ +12 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +13 produkty produkt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 11 nmod _ _ +14 Microsoftu Microsoft PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Ota Ota PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 3 nsubj _ _ +2 Luňák Luňák PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ +3 soudí soudit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 a a CONJ J^------------- _ 3 cc _ _ +5 dosavadní dosavadní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 6 amod _ _ +6 zkušenosti zkušenost NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 9 nsubj _ _ +7 mu on PRON PHZS3--3------- Case=Dat|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 9 iobj _ _ +8 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 9 dobj _ _ +9 potvrzují potvrzovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 conj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 23 punct _ _ +11 že že SCONJ J,------------- _ 23 mark _ _ +12 když když SCONJ J,------------- _ 14 mark _ _ +13 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 14 aux _ _ +14 mít mít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 23 advcl _ _ +15 stále stále ADV Db------------- _ 14 advmod _ _ +16 co co PRON PQ--4---------- Animacy=Inan|Case=Acc|PronType=Int,Rel 17 dobj _ _ +17 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 14 xcomp _ _ +18 vyhraněnému vyhraněný ADJ AAIS3----1A---- Animacy=Inan|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 okruhu okruh NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 17 iobj _ _ +20 zákazníků zákazník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ SpaceAfter=No +21 , , PUNCT Z:------------- _ 14 punct _ _ +22 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 23 cop _ _ +23 možné možný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 9 ccomp _ _ +24 na na ADP RR--6---------- AdpType=Prep|Case=Loc 25 case _ _ +25 tom ten PRON PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 26 advmod _ _ +26 založit založit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 csubj _ _ +27 dlouhodobou dlouhodobý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 existenci existence NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ _ +29 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 28 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Jaroslav Jaroslav PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 0 root _ _ +2 Winter Winter PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ + +1 Kontakt kontakt NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +2 : : PUNCT Z:------------- _ 3 punct _ _ +3 Arxon Arxon PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Negative=Pos|Number=Sing 1 appos _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 5 punct _ _ +5 s společnost NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 3 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +7 r ručení NOUN NNNS7-----A---8 Abbr=Yes|Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 7 punct _ SpaceAfter=No +9 o omezený ADJ AANS7----1A---8 Abbr=Yes|Case=Ins|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 12 punct _ _ +12 Slezská slezský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +13 98 98 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 15 punct _ _ +15 130 130 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod _ _ +16 00 00 NUM C=------------- NumForm=Digit|NumType=Card 15 compound _ _ +17 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 3 nmod _ _ +18 3 3 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ _ +20 tel telefon NOUN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|Negative=Pos 3 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 20 punct _ _ +22 a a CONJ J^------------- _ 20 cc _ _ +23 FAX fax NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 20 conj _ SpaceAfter=No +24 : : PUNCT Z:------------- _ 26 punct _ _ +25 ( ( PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +26 02 02 NUM C=------------- NumForm=Digit|NumType=Card 20 nummod _ SpaceAfter=No +27 ) ) PUNCT Z:------------- _ 26 punct _ _ +28 251 251 NUM C=------------- NumForm=Digit|NumType=Card 26 compound _ _ +29 474 474 NUM C=------------- NumForm=Digit|NumType=Card 28 compound _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 1 punct _ _ \ No newline at end of file diff --git a/demo/cmpr9410_027.t b/demo/cmpr9410_027.t new file mode 100644 index 00000000..3cadc3eb --- /dev/null +++ b/demo/cmpr9410_027.t @@ -0,0 +1,11964 @@ + + + + + + + + + + + + Manual annotation + + description + + + + a#a-cmpr9410-027-p1s1 + 0 + + + + a#a-cmpr9410-027-p1s1w1 + + complex + místo + DENOM + enunc + + n.denot + neut + sg + single + + f + 1 + heading + + + + a#a-cmpr9410-027-p1s1w2 + + atom + i + RHEM + f + 2 + + + + a#a-cmpr9410-027-p1s1w5 + + a#a-cmpr9410-027-p1s1w3 + + + complex + firma + BEN + basic + + n.denot + fem + pl + single + + f + 3 + + + + a#a-cmpr9410-027-p1s1w4 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + + + + a#a-cmpr9410-027-p2s1 + 0 + + + drobný podnikatel + lexeme + + t-cmpr9410-027-p2s1w3 + t-cmpr9410-027-p2s1w4 + + + + + + + a#a-cmpr9410-027-p2s1w6 + + a#a-cmpr9410-027-p2s1w5 + + + complex + vyplácet_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + heading + v#v-w8189f1 + + + + a#a-cmpr9410-027-p2s1w1 + + complex + orientace + ACT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-cmpr9410-027-p2s1w4 + + a#a-cmpr9410-027-p2s1w2 + + + complex + podnikatel + PAT + + n.denot + anim + pl + single + + f + 2 + + + + a#a-cmpr9410-027-p2s1w3 + + complex + drobný + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + + + + + a#a-cmpr9410-027-p3s1 + 0 + + + + a#a-cmpr9410-027-p3s1w2 + + complex + vládnout + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + + + t-cmpr9410-027-p3s2w5 + discourse + 0 + 0 + conc + + t-cmpr9410-027-p3s2w1 + + + + v#v-w7641f1 + + + + a#a-cmpr9410-027-p3s1w1 + + complex + kde + LOC + basic + + adv.pron.indef + indef6 + + t + 1 + + + + a#a-cmpr9410-027-p3s1w5 + + complex + prostředí + ACT + + n.denot + neut + sg + single + + f + 3 + + + + a#a-cmpr9410-027-p3s1w4 + + complex + konkurenční + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-cmpr9410-027-p3s1w3 + + complex + tak + MANN + + adv.pron.def + + f + 5 + + + + a#a-cmpr9410-027-p3s1w2 + + a#a-cmpr9410-027-p3s1w6 + + + complex + 1 + vládnout + CPR + basic + + v + decl + sim + proc + it0 + act + asserted + + t + 7 + v#v-w7641f1 + + + + a#a-cmpr9410-027-p3s1w5 + + complex + 1 + prostředí + ACT + + n.denot + neut + sg + single + + t + 6 + + + t-cmpr9410-027-p3s1w5 + SET_SUB + + + + + + a#a-cmpr9410-027-p3s1w9 + + a#a-cmpr9410-027-p3s1w7 + + + complex + branže + LOC + basic + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p3s1w8 + + complex + počítačový + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + + + + + + + a#a-cmpr9410-027-p3s2 + 0 + + + + a#a-cmpr9410-027-p3s2w5 + + coap + a + CONJ + 5 + + + + a#a-cmpr9410-027-p3s2w1 + + atom + přesto + PREC + t + 1 + + + + a#a-cmpr9410-027-p3s2w4 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f2 + + + + a#a-cmpr9410-027-p3s2w2 + + atom + i + RHEM + t + 2 + + + + a#a-cmpr9410-027-p3s2w3 + + complex + tady + LOC + basic + + adv.pron.def + + c + 3 + + + t-cmpr9410-027-p3s1w9 + SPEC + + + + + + + + a#a-cmpr9410-027-p3s2w10 + + complex + být + PRED + enunc + 1 + + v + decl + post + proc + it0 + act + asserted + + f + 8 + + + t-cmpr9410-027-p3s2w4 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p3s2w5 + + + + v#v-w243f2 + + + + a#a-cmpr9410-027-p3s2w7 + + atom + i + RHEM + t + 6 + + + + a#a-cmpr9410-027-p3s2w9 + + a#a-cmpr9410-027-p3s2w8 + + + complex + budoucno + TWHEN + basic + + n.denot + neut + sg + single + + c + 7 + + + + a#a-cmpr9410-027-p3s2w6 + + atom + zřejmě + MOD + f + 9 + + + + + + a#a-cmpr9410-027-p3s2w11 + + complex + dostatek + ACT + + n.denot + inan + sg + single + + f + 10 + + + + a#a-cmpr9410-027-p3s2w12 + + complex + prostor + MAT + + n.denot + inan + sg + single + + f + 11 + + + + a#a-cmpr9410-027-p3s2w14 + + a#a-cmpr9410-027-p3s2w13 + + + complex + spousta + BEN + basic + + n.denot + fem + sg + single + + f + 12 + + + + a#a-cmpr9410-027-p3s2w16 + + complex + firma + MAT + + n.denot + fem + pl + single + + f + 13 + + + t-cmpr9410-027-p1s1w5 + GEN + + + + + + a#a-cmpr9410-027-p3s2w15 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + + + + + + + + + + a#a-cmpr9410-027-p3s3 + 0 + + + + a#a-cmpr9410-027-p3s3w7 + + a#a-cmpr9410-027-p3s3w6 + + + complex + najít + PRED + enunc + + v + deb + sim + cpl + it0 + act + asserted + + f + 5 + + + t-cmpr9410-027-p3s2w5 + discourse + 0 + 0 + restr + + t-cmpr9410-027-p3s3w1 + + + + v#v-w2042f1 + + + + a#a-cmpr9410-027-p3s3w1 + + atom + jenom + ATT + t + 1 + + + + a#a-cmpr9410-027-p3s3w3 + + complex + který + ACT + + n.pron.indef + fem + sg + total2 + 3 + + t + 3 + + + + a#a-cmpr9410-027-p3s3w5 + + a#a-cmpr9410-027-p3s3w4 + + + complex + #PersPron + DIR1 + basic + + n.pron.def.pers + fem + pl + 3 + basic + + t + 2 + + + t-cmpr9410-027-p3s2w16 + GEN + + + + + + + + a#a-cmpr9410-027-p3s3w2 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-cmpr9410-027-p3s3w3 + + + + + a#a-cmpr9410-027-p3s3w10 + + coap + #Comma + CONJ + 8 + + + + a#a-cmpr9410-027-p3s3w9 + + complex + tvář + PAT + 1 + + n.denot + fem + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p3s3w8 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-cmpr9410-027-p3s3w3 + + + + + + + a#a-cmpr9410-027-p3s3w12 + + complex + zákazník + PAT + 1 + + n.denot + anim + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p3s3w11 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 9 + + t-cmpr9410-027-p3s3w3 + + + + + + + + + + + + a#a-cmpr9410-027-p3s4 + 0 + + + Arxon, s. r. o. + object + + t-cmpr9410-027-p3s4w4 + t-cmpr9410-027-p3s4w5 + t-cmpr9410-027-p3s4w6 + t-cmpr9410-027-p3s4w8 + + + + + + + a#a-cmpr9410-027-p3s4w22 + + coap + a + CONJ + 16 + + + t-cmpr9410-027-p3s3w7 + discourse + forward + 0 + exempl + + t-cmpr9410-027-p3s4w1 + + + + + + + a#a-cmpr9410-027-p3s4w1 + + atom + například + RHEM + t + 1 + + + + a#a-cmpr9410-027-p3s4w5 + + coap + #Comma + APPS + 5 + + + t-cmpr9410-027-p3s3w5 + SET_SUB + + + + + + a#a-cmpr9410-027-p3s4w3 + + complex + firma + ACT + 1 + + n.denot + fem + sg + single + + c + 2 + + + + a#a-cmpr9410-027-p3s4w4 + + complex + Arxon + ID + enunc + + n.denot + inan + sg + single + + f + 3 + + + + a#a-cmpr9410-027-p3s4w2 + + complex + pražský + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-cmpr9410-027-p3s4w6 + + complex + společnost + ACT + 1 + + n.denot + fem + nr + single + + c + 6 + + + + a#a-cmpr9410-027-p3s4w8 + + complex + ručení + RSTR + + n.denot + neut + sg + single + + f + 7 + v#v-w5835f1 + + + + a#a-cmpr9410-027-p3s4w10 + + complex + omezený + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + a#a-cmpr9410-027-p3s4w13 + + complex + začínat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 9 + v#v-w8753f3 + + + + a#a-cmpr9410-027-p3s4w16 + + a#a-cmpr9410-027-p3s4w14 + + + complex + člověk + MANN + + n.denot + anim + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p3s4w15 + + complex + dva + RSTR + + adj.quant.def + basic + + f + 11 + + + + + + + + a#a-cmpr9410-027-p3s4w19 + + complex + mít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + v#v-w1855f2 + + + + a#a-cmpr9410-027-p3s4w18 + + complex + dnes + TWHEN + basic + + adv.denot.ngrad.nneg + + c + 12 + + + + a#a-cmpr9410-027-p3s4w21 + + complex + pracovník + PAT + + n.denot + anim + pl + single + + t + 14 + + + + a#a-cmpr9410-027-p3s4w20 + + complex + čtyři + RSTR + + adj.quant.def + basic + + f + 15 + + + + + + + + a#a-cmpr9410-027-p3s4w25 + + complex + mínit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 19 + + + t-cmpr9410-027-p3s4w19 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p3s4w22 + + + + v#v-w1843f1 + + + + a#a-cmpr9410-027-p3s4w24 + + a#a-cmpr9410-027-p3s4w23 + + + complex + budoucno + TWHEN + nr + + n.denot + neut + sg + single + + c + 17 + + + atom + 1 + #Neg + RHEM + f + 18 + + + + a#a-cmpr9410-027-p3s4w29 + + complex + zvyšovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 23 + v#v-w10009f1 + + + + a#a-cmpr9410-027-p3s4w27 + + complex + počet + PAT + + n.denot + inan + sg + single + + t + 21 + + + + a#a-cmpr9410-027-p3s4w26 + + complex + #PersPron + MAT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 20 + + + t-cmpr9410-027-p3s4w21 + SUB_SET + + + + + + + qcomplex + 1 + #Cor + ACT + t + 22 + + t-cmpr9410-027-p3s4w5 + + + + + a#a-cmpr9410-027-p3s4w28 + + complex + příliš + EXT + basic + + adv.denot.ngrad.neg + neg0 + + f + 24 + + + + + + + + + + + a#a-cmpr9410-027-p3s5 + 0 + + + + a#a-cmpr9410-027-p3s5w5 + + a#a-cmpr9410-027-p3s5w4 + + + complex + spoléhat_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-027-p3s4w25 + discourse + 0 + 0 + corr + + t-cmpr9410-027-p3s4a0 + t-cmpr9410-027-p3s5w6 + + + + v#v-w6383f1 + + + + a#a-cmpr9410-027-p3s5w3 + + a#a-cmpr9410-027-p3s5w1 + a#a-cmpr9410-027-p3s5w2 + + + complex + potřeba + COND + + n.denot + fem + sg + single + + c + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-cmpr9410-027-p3s4a1 + SPEC + + + + + + a#a-cmpr9410-027-p3s5w6 + + atom + spíše + RHEM + f + 4 + + + + a#a-cmpr9410-027-p3s5w8 + + a#a-cmpr9410-027-p3s5w7 + + + complex + pomoc + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-cmpr9410-027-p3s5w10 + + complex + spolupracovník + ACT + + n.denot + anim + pl + single + + f + 6 + + + t-cmpr9410-027-p3s4w26 + CONTRAST + + + + + + a#a-cmpr9410-027-p3s5w9 + + complex + externí + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + + + + a#a-cmpr9410-027-p3s6 + 0 + + + + a#a-cmpr9410-027-p3s6w10 + + complex + hovořit + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 6 + v#v-w1111f1 + + + + a#a-cmpr9410-027-p3s6w6 + + a#a-cmpr9410-027-p3s6w1 + a#a-cmpr9410-027-p3s6w2 + + + complex + založit + PAT + + v + decl + ant + cpl + it0 + act + asserted + + c + 3 + v#v-w8927f1 + + + + a#a-cmpr9410-027-p3s6w5 + + a#a-cmpr9410-027-p3s6w4 + + + complex + co + ORIG + + n.pron.indef + neut + sg + inter + 3 + + t + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-cmpr9410-027-p3s5a0 + SPEC + + + + + + a#a-cmpr9410-027-p3s6w8 + + complex + strategie + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-cmpr9410-027-p3s6w7 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-cmpr9410-027-p3s6a0 + + + + + + + + + a#a-cmpr9410-027-p3s6w11 + + complex + Profit + ACT + + n.denot + inan + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p3s6w16 + + a#a-cmpr9410-027-p3s6w12 + + + complex + Luňák + ADDR + 1 + + n.denot + anim + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p3s6w15 + + complex + Ota + RSTR + 1 + + n.denot + anim + sg + single + + f + 9 + + + + a#a-cmpr9410-027-p3s6w14 + + complex + majitel + RSTR + + n.denot + anim + sg + single + + f + 11 + + + + a#a-cmpr9410-027-p3s6w13 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 10 + + + t-cmpr9410-027-p3s6w7 + SPEC + + + + + + + + + + + + + a#a-cmpr9410-027-p4s1 + 0 + + + + a#a-cmpr9410-027-p4s1w6 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w243f1 + + + + a#a-cmpr9410-027-p4s1w3 + + a#a-cmpr9410-027-p4s1w2 + + + complex + začátek + TSIN + + n.denot + inan + sg + single + + t + 1 + + + + a#a-cmpr9410-027-p4s1w4 + + complex + existence + APP + + n.denot + fem + sg + single + + f + 3 + + + + a#a-cmpr9410-027-p4s1w5 + + complex + firma + ACT + + n.denot + fem + sg + single + + t + 2 + + + t-cmpr9410-027-p3s6w13 + SPEC + + + + + + + + a#a-cmpr9410-027-p4s1w1 + + complex + téměř + EXT + basic + + adv.denot.ngrad.nneg + + f + 4 + + + + + + a#a-cmpr9410-027-p4s1w7 + + complex + ten + PAT + + adj.pron.def.demon + + t + 5 + + + t-cmpr9410-027-p3s6w8 + SPEC + + + + + + a#a-cmpr9410-027-p4s1w8 + + complex + zaměření + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 8 + + + t-cmpr9410-027-p2s1w1 + SPEC + + + v#v-w8936f2 + + + qcomplex + 1 + #Gen + ACT + t + 7 + + + + a#a-cmpr9410-027-p4s1w11 + + coap + a + CONJ + 11 + + + t-cmpr9410-027-p2s1w4 + GEN + + + + + + a#a-cmpr9410-027-p4s1w13 + + a#a-cmpr9410-027-p4s1w9 + + + complex + 1 + podnikatel + PAT + 1 + + n.denot + anim + pl + single + + f + 9 + + + + a#a-cmpr9410-027-p4s1w10 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-cmpr9410-027-p4s1w13 + + a#a-cmpr9410-027-p4s1w9 + + + complex + podnikatel + PAT + 1 + + n.denot + anim + pl + single + + t + 12 + + + + a#a-cmpr9410-027-p4s1w12 + + complex + střední + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + + + + + + a#a-cmpr9410-027-p4s2 + 0 + + + + a#a-cmpr9410-027-p4s2w1 + + a#a-cmpr9410-027-p4s2w2 + + + complex + projevovat_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w4395f3 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + neut + sg + 3 + basic + + t + 1 + + + t-cmpr9410-027-p4s1w7 + SPEC + + + + + + a#a-cmpr9410-027-p4s2w5 + + a#a-cmpr9410-027-p4s2w3 + + + complex + směr + MANN + + n.denot + inan + pl + single + + f + 3 + + + + a#a-cmpr9410-027-p4s2w4 + + complex + kolik + RSTR + + adj.quant.indef + indef1 + basic + + f + 4 + + + + + + + + + a#a-cmpr9410-027-p4s3 + 0 + + + + a#a-cmpr9410-027-p4s3w7 + + complex + přijít + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w5158f1 + + + + a#a-cmpr9410-027-p4s3w2 + + a#a-cmpr9410-027-p4s3w1 + + + complex + jít + REG + + v + decl + sim + proc + it0 + act + asserted + + c + 1 + v#v-w1339f1 + + + + a#a-cmpr9410-027-p4s3w4 + + a#a-cmpr9410-027-p4s3w3 + + + complex + počítač + ACT + + n.denot + inan + pl + single + + f + 2 + + + + + + a#a-cmpr9410-027-p4s3w6 + + complex + Arxon + ACT + + n.denot + inan + sg + single + + t + 3 + + + t-cmpr9410-027-p4s1w5 + SPEC + + + + + + a#a-cmpr9410-027-p4s3w10 + + a#a-cmpr9410-027-p4s3w8 + + + complex + trh + DIR3 + basic + + n.denot + inan + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p4s3w9 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 5 + + + t-cmpr9410-027-p3s4w2 + PART_WHOLE + + + exoph + + + + + + a#a-cmpr9410-027-p4s3w12 + + a#a-cmpr9410-027-p4s3w11 + + + complex + pécéčko + ACMP + basic + + n.denot + neut + pl + single + + f + 7 + + + t-cmpr9410-027-p4s3w4 + SET_SUB + + + + + + a#a-cmpr9410-027-p4s3w16 + + complex + být + RSTR + + v + decl + ant + proc + it0 + act + asserted + + f + 11 + v#v-w243f2 + + + + a#a-cmpr9410-027-p4s3w14 + + complex + jaký + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 8 + + t-cmpr9410-027-p4s3w12 + + + + + a#a-cmpr9410-027-p4s3w15 + + complex + tady + LOC + basic + + adv.pron.def + + t + 9 + + + t-cmpr9410-027-p4s3w10 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 10 + + + + + + + + + + + a#a-cmpr9410-027-p4s4 + 0 + + + + a#a-cmpr9410-027-p4s4w1 + + complex + jít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 1 + v#v-w1339f1 + + + + a#a-cmpr9410-027-p4s4w4 + + a#a-cmpr9410-027-p4s4w2 + + + complex + značka + ACT + + n.denot + fem + sg + single + + f + 2 + + + t-cmpr9410-027-p4s3w14 + SPEC + + + + + + a#a-cmpr9410-027-p4s4w5 + + complex + MiniSys + ID + enunc + + n.denot + inan + sg + single + + f + 3 + + + + a#a-cmpr9410-027-p4s4w3 + + complex + tchajwanský + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-cmpr9410-027-p4s4w15 + + complex + zabírat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w8721f2 + + + + a#a-cmpr9410-027-p4s4w12 + + coap + a + CONJ + 8 + + + + a#a-cmpr9410-027-p4s4w11 + + a#a-cmpr9410-027-p4s4w8 + + + complex + parametr + COND + 1 + + n.denot + inan + pl + single + + c + 5 + + + + a#a-cmpr9410-027-p4s4w10 + + complex + výkonový + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-cmpr9410-027-p4s4w9 + + complex + dobrý + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-cmpr9410-027-p4s4w14 + + a#a-cmpr9410-027-p4s4w8 + + + complex + cena + COND + 1 + + n.denot + fem + sg + single + + c + 9 + + + + a#a-cmpr9410-027-p4s4w13 + + complex + nízký + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-cmpr9410-027-p4s4w7 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 11 + + t-cmpr9410-027-p4s4w4 + + + + + a#a-cmpr9410-027-p4s4w18 + + complex + prostor + PAT + + n.denot + inan + sg + single + + f + 13 + + + + a#a-cmpr9410-027-p4s4w17 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-cmpr9410-027-p4s4w16 + + complex + velmi + EXT + basic + + adv.denot.grad.nneg + pos + + f + 15 + + + + + + + + + + + + + + + a#a-cmpr9410-027-p4s5 + 0 + + + + a#a-cmpr9410-027-p4s5w2 + + complex + lze + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-027-p4s4w15 + discourse + 0 + 0 + grad + + t-cmpr9410-027-p4s5w3 + + + + v#v-w1757f1 + + + qcomplex + 1 + #Gen + BEN + nr + t + 2 + + + + a#a-cmpr9410-027-p4s5w3 + + atom + dokonce + RHEM + f + 4 + + + + a#a-cmpr9410-027-p4s5w7 + + complex + upevnit + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 6 + v#v-w7195f1 + + + + a#a-cmpr9410-027-p4s5w1 + + complex + počítač + PAT + + n.denot + inan + sg + single + + t + 1 + + + t-cmpr9410-027-p4s4w7 + GEN + + + + + qcomplex + 1 + #Cor + ACT + t + 5 + + t-cmpr9410-027-p4s5a0 + + + + + a#a-cmpr9410-027-p4s5w6 + + a#a-cmpr9410-027-p4s5w5 + a#a-cmpr9410-027-p4s5w4 + + + complex + držák + MEANS + + n.denot + inan + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p4s5w9 + + a#a-cmpr9410-027-p4s5w8 + + + complex + hrana + DIR3 + below + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p4s5w10 + + complex + stůl + APP + + n.denot + inan + sg + single + + f + 9 + + + + + + + + + + + a#a-cmpr9410-027-p4s6 + 0 + + + + a#a-cmpr9410-027-p4s6w10 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w1855f21 + + + + a#a-cmpr9410-027-p4s6w5 + + a#a-cmpr9410-027-p4s6w9 + + + complex + přijít + ACT + + v + decl + ant + cpl + it0 + act + asserted + + c + 3 + v#v-w5158f9 + + + + a#a-cmpr9410-027-p4s6w1 + + complex + kdo + ACT + + n.pron.indef + anim + sg + inter + 3 + + t + 1 + + + + a#a-cmpr9410-027-p4s6w2 + + complex + + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 2 + + + + a#a-cmpr9410-027-p4s6w7 + + a#a-cmpr9410-027-p4s6w6 + + + complex + styk + CPHR + + n.denot + inan + sg + single + + f + 6 + v#v-w6614f1 + + + + a#a-cmpr9410-027-p4s6w4 + + a#a-cmpr9410-027-p4s6w3 + + + complex + počítač + PAT + + n.denot + inan + pl + single + + t + 4 + + + t-cmpr9410-027-p4s3w4 + GEN + + + + + qcomplex + 1 + #QCor + ACT + t + 5 + + t-cmpr9410-027-p4s6w1 + + + + + + + + + a#a-cmpr9410-027-p4s6w11 + + complex + obvyklý + MANN + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-cmpr9410-027-p4s6w12 + + complex + zpočátku + TWHEN + basic + + adv.denot.grad.neg + pos + neg0 + + f + 9 + + + + a#a-cmpr9410-027-p4s6w17 + + complex + nedůvěra + CPHR + + n.denot + fem + sg + single + + f + 13 + v#v-w2348f1 + + + + a#a-cmpr9410-027-p4s6w15 + + a#a-cmpr9410-027-p4s6w13 + + + complex + zařízení + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 11 + + + t-cmpr9410-027-p4s5w1 + ANAF + + + v#v-w9107f1 + + + + a#a-cmpr9410-027-p4s6w14 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 10 + + + + + qcomplex + 1 + #QCor + ACT + t + 12 + + t-cmpr9410-027-p4s6w5 + + + + + + + a#a-cmpr9410-027-p4s6w16 + + complex + trochu + EXT + basic + + adv.denot.ngrad.nneg + + f + 14 + + + + + + + a#a-cmpr9410-027-p4s7 + 0 + + + + a#a-cmpr9410-027-p4s7w14 + + coap + a + CONJ + 12 + + + t-cmpr9410-027-p4s6w10 + discourse + 0 + 0 + confr + + t-cmpr9410-027-p4s7w10 + + + + + + + a#a-cmpr9410-027-p4s7w10 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-027-p4s7w12 + + complex + velikost + ACT + + n.denot.neg + fem + sg + single + neg0 + + t + 3 + + + t-cmpr9410-027-p4s4w15 + SPEC + + + + + + a#a-cmpr9410-027-p4s7w11 + + complex + #PersPron + APP + + n.pron.def.pers + inan + sg + 3 + basic + + t + 2 + + + t-cmpr9410-027-p4s5w1 + GEN + + + + + + + + a#a-cmpr9410-027-p4s7w13 + + complex + vyhovovat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w7921f1 + + + + a#a-cmpr9410-027-p4s7w1 + + complex + ten + PAT + + n.pron.def.demon + nr + pl + + t + 4 + + + + a#a-cmpr9410-027-p4s7w5 + + complex + pořizovat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w3947f1 + + + + a#a-cmpr9410-027-p4s7w3 + + complex + kdo + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 5 + + t-cmpr9410-027-p4s7w1 + + + + + a#a-cmpr9410-027-p4s7w4 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-cmpr9410-027-p4s7w3 + + + + + a#a-cmpr9410-027-p4s7w8 + + complex + počítač + PAT + + n.denot + inan + sg + single + + t + 9 + + + t-cmpr9410-027-p4s6w4 + SET_SUB + + + + + + a#a-cmpr9410-027-p4s7w6 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 8 + + t-cmpr9410-027-p4s7w3 + + + + + a#a-cmpr9410-027-p4s7w7 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 10 + + + + + + + + + + + + a#a-cmpr9410-027-p4s7w15 + + a#a-cmpr9410-027-p4s7w16 + + + complex + stávat_se + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + + + t-cmpr9410-027-p4s7w13 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p4s7w14 + + + + v#v-w6500f1 + + + + a#a-cmpr9410-027-p4s7w18 + + complex + argument + PAT + + n.denot + inan + sg + single + + f + 14 + + + + a#a-cmpr9410-027-p4s7w17 + + complex + důležitý + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-cmpr9410-027-p4s7w20 + + a#a-cmpr9410-027-p4s7w19 + + + complex + rozhodování + COND + + n.denot.neg + neut + sg + single + neg0 + + f + 18 + v#v-w5637f1 + + + qcomplex + 1 + #Gen + ACT + t + 16 + + + qcomplex + 1 + #Gen + PAT + t + 17 + + + + + + + + + + + + + a#a-cmpr9410-027-p4s8 + 0 + + + + a#a-cmpr9410-027-p4s8w12 + + coap + #Comma + CONJ + 11 + + + + a#a-cmpr9410-027-p4s8w4 + + a#a-cmpr9410-027-p4s8w3 + + + complex + určit + PRED + enunc + 1 + + v + decl + sim + cpl + it0 + res1 + asserted + + f + 4 + v#v-w7255f3 + + + + a#a-cmpr9410-027-p4s8w2 + + complex + zákazník + ADDR + + n.denot + anim + pl + single + + t + 2 + + + + a#a-cmpr9410-027-p4s8w1 + + complex + náročný + RSTR + + adj.denot + comp + neg0 + + c + 1 + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-cmpr9410-027-p4s8w6 + + complex + počítač + PAT + + n.denot + inan + pl + single + + t + 5 + + + t-cmpr9410-027-p4s6w4 + SET_SUB + + + + + + a#a-cmpr9410-027-p4s8w7 + + complex + ALR + ID + enunc + + n.denot + inan + nr + single + + f + 6 + + + + a#a-cmpr9410-027-p4s8w5 + + complex + americký + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-027-p4s8w11 + + a#a-cmpr9410-027-p4s8w8 + + + complex + lhůta + ACMP + basic + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p4s8w10 + + complex + záruční + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-cmpr9410-027-p4s8w9 + + complex + pětiletý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + a#a-cmpr9410-027-p4s8w13 + + complex + kupovat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w1639f1 + + + + a#a-cmpr9410-027-p4s8w15 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 12 + + + t-cmpr9410-027-p4s8w6 + GEN + + + + + + a#a-cmpr9410-027-p4s8w14 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 13 + + t-cmpr9410-027-p4s8w18 + + + + + a#a-cmpr9410-027-p4s8w16 + + atom + zejména + RHEM + f + 15 + + + + a#a-cmpr9410-027-p4s8w18 + + coap + a + CONJ + 17 + + + t-cmpr9410-027-p4s8w2 + SET_SUB + + + + + + a#a-cmpr9410-027-p4s8w17 + + complex + právník + ACT + 1 + + n.denot + anim + pl + single + + f + 16 + + + + a#a-cmpr9410-027-p4s8w19 + + complex + lékař + ACT + 1 + + n.denot + anim + pl + single + + f + 18 + + + + + + + + + + + a#a-cmpr9410-027-p5s1 + 0 + + + + a#a-cmpr9410-027-p5s1w1 + + complex + počítač + DENOM + enunc + + n.denot + inan + sg + single + + f + 1 + heading + + + t-cmpr9410-027-p4s6w4 + SET_SUB + + + + + + a#a-cmpr9410-027-p5s1w2 + + atom + i + RHEM + f + 2 + + + + a#a-cmpr9410-027-p5s1w4 + + a#a-cmpr9410-027-p5s1w3 + + + complex + účetnictví + ACMP + basic + + n.denot + neut + sg + single + + f + 3 + + + + + + + a#a-cmpr9410-027-p6s1 + 0 + + + + a#a-cmpr9410-027-p6s1w8 + + a#a-cmpr9410-027-p6s1w5 + + + complex + obstát + PRED + enunc + + v + decl + nil + cpl + it0 + act + potential + + f + 7 + + + t-cmpr9410-027-p6s2w6 + discourse + 0 + 0 + reason + + t-cmpr9410-027-p6s2w1 + + + + v#v-w2572f1 + + + + a#a-cmpr9410-027-p6s1w6 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-027-p6s1w2 + + a#a-cmpr9410-027-p6s1w1 + + + complex + prodej + REG + + n.denot + inan + sg + single + + c + 2 + + + + a#a-cmpr9410-027-p6s1w4 + + complex + počítač + PAT + + n.denot + inan + pl + single + + f + 3 + + + t-cmpr9410-027-p4s6w4 + GEN + + + + + + a#a-cmpr9410-027-p6s1w3 + + complex + samotný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + + + a#a-cmpr9410-027-p6s1w7 + + complex + firma + ACT + + n.denot + fem + sg + single + + t + 5 + + + t-cmpr9410-027-p4s3w6 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 6 + + + + + + + a#a-cmpr9410-027-p6s2 + 0 + + + + a#a-cmpr9410-027-p6s2w6 + + complex + nabízet + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w1949f1 + + + + a#a-cmpr9410-027-p6s2w1 + + atom + proto + PREC + t + 1 + + + + a#a-cmpr9410-027-p6s2w5 + + a#a-cmpr9410-027-p6s2w2 + + + complex + vybavení + RESTR + + n.denot.neg + neut + sg + single + neg0 + + c + 2 + v#v-w7766f1 + + + + a#a-cmpr9410-027-p6s2w4 + + complex + programový + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-cmpr9410-027-p6s2w3 + + complex + obvyklý + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 5 + + + t-cmpr9410-027-p6s1w7 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 6 + + + + a#a-cmpr9410-027-p6s2w7 + + atom + také + RHEM + f + 8 + + + + a#a-cmpr9410-027-p6s2w9 + + complex + program + PAT + + n.denot + inan + pl + single + + f + 9 + + + + a#a-cmpr9410-027-p6s2w8 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 10 + + + + a#a-cmpr9410-027-p6s2w12 + + complex + být + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w243f1 + + + + a#a-cmpr9410-027-p6s2w11 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 11 + + t-cmpr9410-027-p6s2w9 + + + + + a#a-cmpr9410-027-p6s2w14 + + coap + či + DISJ + 14 + + + + a#a-cmpr9410-027-p6s2w13 + + complex + zbytný + PAT + 1 + + adj.denot + pos + neg1 + + f + 13 + + + + a#a-cmpr9410-027-p6s2w15 + + complex + užitečný + PAT + 1 + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-cmpr9410-027-p6s2w17 + + a#a-cmpr9410-027-p6s2w16 + + + complex + podnikatel + BEN + basic + + n.denot + anim + pl + single + + f + 16 + + + t-cmpr9410-027-p4s1w11 + SUB_SET + + + + + + + + + + + + + + + a#a-cmpr9410-027-p6s3 + 0 + + + + a#a-cmpr9410-027-p6s3w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-cmpr9410-027-p6s3w3 + + a#a-cmpr9410-027-p6s3w1 + + + atom + řada + ATT + t + 1 + + + + a#a-cmpr9410-027-p6s3w2 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 2 + + + + + + a#a-cmpr9410-027-p6s3w5 + + complex + ten + PAT + + adj.pron.def.demon + + t + 3 + + + t-cmpr9410-027-p6s2w11 + SPEC + + + + + + a#a-cmpr9410-027-p6s3w7 + + complex + systém + ACT + + n.denot + inan + sg + single + + f + 5 + + + t-cmpr9410-027-p5s1w4 + SPEC + + + + + + a#a-cmpr9410-027-p6s3w6 + + complex + programovatelný + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-cmpr9410-027-p6s3w10 + + complex + Kvestor + ID + enunc + + n.denot + anim + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p6s3w9 + + complex + účetnictví + APP + + n.denot + neut + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p6s3w8 + + complex + podvojný + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + a#a-cmpr9410-027-p6s4 + 0 + + + + a#a-cmpr9410-027-p6s4w7 + + a#a-cmpr9410-027-p6s4w4 + + + complex + hodnotit + PRED + enunc + + v + decl + ant + proc + it0 + pas + asserted + + f + 6 + v#v-w1081f1 + + + + a#a-cmpr9410-027-p6s4w2 + + a#a-cmpr9410-027-p6s4w1 + + + complex + test + LOC + basic + + n.denot + inan + sg + single + + c + 1 + + + + a#a-cmpr9410-027-p6s4w3 + + complex + Profit + APP + + n.denot + inan + sg + single + + f + 2 + + + t-cmpr9410-027-p3s6w11 + SPEC + + + + + + + + a#a-cmpr9410-027-p6s4w6 + + a#a-cmpr9410-027-p6s4w5 + + + complex + čas + TWHEN + before + + n.denot + inan + sg + single + + t + 3 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 5 + + + t-cmpr9410-027-p6s3w7 + SPEC + + + + + + a#a-cmpr9410-027-p6s4w9 + + complex + dobrý + MANN + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-027-p6s4w8 + + complex + velmi + EXT + basic + + adv.denot.grad.nneg + pos + + f + 8 + + + + + + + + + a#a-cmpr9410-027-p6s5 + 0 + + + + a#a-cmpr9410-027-p6s5w4 + + complex + patřit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w3411f1 + + + + a#a-cmpr9410-027-p6s5w3 + + a#a-cmpr9410-027-p6s5w1 + + + complex + přednost + DIR3 + to + + n.denot + fem + pl + single + + c + 2 + + + + a#a-cmpr9410-027-p6s5w2 + + complex + #PersPron + APP + + n.pron.def.pers + inan + sg + 3 + basic + + t + 1 + + + t-cmpr9410-027-p6s4a0 + SPEC + + + + + + + + a#a-cmpr9410-027-p6s5w13 + + coap + a + CONJ + 11 + + + t-cmpr9410-027-p6s5w3 + SET_SUB + + + + + + a#a-cmpr9410-027-p6s5w5 + + complex + schopnost + ACT + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 4 + + + + a#a-cmpr9410-027-p6s5w6 + + complex + tisk + APP + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-027-p6s5w8 + + complex + sestava + PAT + + n.denot + fem + pl + single + + f + 6 + + + + a#a-cmpr9410-027-p6s5w7 + + complex + výstupní + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-cmpr9410-027-p6s5w12 + + a#a-cmpr9410-027-p6s5w9 + + + complex + diakritika + ACMP + basic + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p6s5w11 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-cmpr9410-027-p6s5w10 + + complex + korektní + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + a#a-cmpr9410-027-p6s5w14 + + complex + možnost + ACT + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 12 + + + + a#a-cmpr9410-027-p6s5w15 + + complex + úprava + PAT + + n.denot + fem + pl + single + + f + 13 + + + + a#a-cmpr9410-027-p6s5w17 + + complex + prostředí + PAT + + n.denot + neut + sg + single + + f + 14 + + + + a#a-cmpr9410-027-p6s5w16 + + complex + účetní + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-cmpr9410-027-p6s5w19 + + a#a-cmpr9410-027-p6s5w18 + + + complex + míra + MANN + + n.denot + fem + sg + single + + f + 16 + + + + + + + + + + + + + a#a-cmpr9410-027-p6s6 + 0 + + + + a#a-cmpr9410-027-p6s6w9 + + coap + aniž + CONJ + 9 + + + + a#a-cmpr9410-027-p6s6w3 + + complex + provádět + PRED + enunc + 1 + + v + decl + sim + proc + it0 + deagent + asserted + + f + 5 + v#v-w4601f2 + + + + a#a-cmpr9410-027-p6s6w1 + + complex + účtování + PAT + + n.denot.neg + neut + sg + single + neg0 + + c + 3 + + + t-cmpr9410-027-p6s5w2 + REST + + + v#v-w7008f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + qcomplex + 1 + #Gen + PAT + t + 2 + + + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-cmpr9410-027-p6s6w4 + + complex + volba + MEANS + + n.denot + fem + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p6s6w7 + + a#a-cmpr9410-027-p6s6w5 + + + complex + menu + LOC + basic + + n.denot + neut + sg + single + + f + 7 + + + t-cmpr9410-027-p6s5w2 + SET_SUB + + + + + + a#a-cmpr9410-027-p6s6w6 + + complex + uživatelský + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + a#a-cmpr9410-027-p6s6w11 + + a#a-cmpr9410-027-p6s6w10 + + + complex + být + PRED + enunc + 1 + + v + decl + nil + proc + it0 + act + potential + + f + 11 + + + t-cmpr9410-027-p6s6w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p6s6w9 + + + + v#v-w243f193_MM + + + atom + 1 + #Neg + RHEM + f + 10 + + + + a#a-cmpr9410-027-p6s6w12 + + complex + nutný + PAT + + adj.denot + pos + neg0 + + f + 13 + + + qcomplex + 1 + #Gen + BEN + nr + t + 12 + + + + + + a#a-cmpr9410-027-p6s6w13 + + complex + ovládat + ACT + + v + decl + nil + proc + it0 + act + nil + + f + 15 + v#v-w3299f2 + + + qcomplex + 1 + #Cor + ACT + t + 14 + + t-cmpr9410-027-p6s6a1 + + + + + a#a-cmpr9410-027-p6s6w15 + + complex + souvztažnost + PAT + + n.denot.neg + fem + pl + single + neg0 + + f + 16 + + + + a#a-cmpr9410-027-p6s6w14 + + complex + účetní + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + a#a-cmpr9410-027-p6s7 + 0 + + + + a#a-cmpr9410-027-p6s7w3 + + complex + nabízet + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-027-p6s6w11 + discourse + 0 + 0 + grad + + t-cmpr9410-027-p6s7w1 + + + + v#v-w1949f1 + + + + a#a-cmpr9410-027-p6s7w1 + + atom + navíc + PREC + t + 1 + + + + a#a-cmpr9410-027-p6s7w2 + + complex + Arxon + ACT + + n.denot + inan + sg + single + + t + 2 + + + t-cmpr9410-027-p6s2a1 + SPEC + + + + + + a#a-cmpr9410-027-p6s7w4 + + complex + uživatel + ADDR + + n.denot + anim + pl + single + + f + 6 + + + + a#a-cmpr9410-027-p6s7w6 + + complex + program + PAT + + n.denot + inan + sg + single + + t + 5 + + + t-cmpr9410-027-p6s5w2 + SPEC + + + + + + a#a-cmpr9410-027-p6s7w5 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 4 + + + + + + + + a#a-cmpr9410-027-p6s7w7 + + complex + školení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w6728f1 + + + qcomplex + 1 + #Gen + ACT + t + 7 + + + qcomplex + 1 + #Gen + PAT + t + 8 + + + + + + + + + a#a-cmpr9410-027-p6s8 + 0 + + + + a#a-cmpr9410-027-p6s7w3 + + complex + 1 + nabízet + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + t + 6 + + + t-cmpr9410-027-p6s7w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p6s8w1 + t-cmpr9410-027-p6s8w2 + + + + v#v-w1949f1 + + + + a#a-cmpr9410-027-p6s8w1 + + atom + a + PREC + t + 1 + + + + a#a-cmpr9410-027-p6s8w2 + + atom + ten + PREC + t + 2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 3 + + + t-cmpr9410-027-p6s7w2 + SPEC + + + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-cmpr9410-027-p6s8w9 + + a#a-cmpr9410-027-p6s8w3 + + + coap + buď_nebo + DISJ + 10 + + + + a#a-cmpr9410-027-p6s8w7 + + a#a-cmpr9410-027-p6s8w4 + + + complex + středisko + LOC + basic + 1 + + n.denot + neut + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p6s8w5 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 7 + + t-cmpr9410-027-p6s8a1 + + + + + a#a-cmpr9410-027-p6s8w6 + + complex + školicí + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-cmpr9410-027-p6s8w10 + + atom + přímo + CM + 11 + + + + a#a-cmpr9410-027-p6s8w13 + + coap + či + DISJ + 1 + 13 + + + + a#a-cmpr9410-027-p6s8w12 + + a#a-cmpr9410-027-p6s8w11 + + + complex + pracoviště + LOC + basic + 1 + + n.denot + neut + sg + single + + f + 12 + + + + a#a-cmpr9410-027-p6s8w15 + + a#a-cmpr9410-027-p6s8w14 + + + complex + byt + LOC + basic + 1 + + n.denot + inan + sg + single + + f + 14 + + + + a#a-cmpr9410-027-p6s8w16 + + complex + zákazník + APP + + n.denot + anim + sg + single + + f + 15 + + + t-cmpr9410-027-p6s7w4 + GEN + + + + + + + + + + + + + + + a#a-cmpr9410-027-p6s9 + 0 + + + + a#a-cmpr9410-027-p6s9w5 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w1855f1 + + + + a#a-cmpr9410-027-p6s9w1 + + atom + zejména + RHEM + t + 1 + + + + a#a-cmpr9410-027-p6s9w4 + + a#a-cmpr9410-027-p6s9w2 + + + complex + podnikatel + REG + + n.denot + anim + pl + single + + c + 2 + + + t-cmpr9410-027-p6s2w17 + SET_SUB + + + + + + a#a-cmpr9410-027-p6s9w3 + + complex + začínající + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + a#a-cmpr9410-027-p6s9w7 + + complex + ohlas + PAT + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-027-p6s9w6 + + complex + slušný + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-cmpr9410-027-p6s9w8 + + complex + kombinace + ACT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-cmpr9410-027-p6s9w11 + + complex + program + PAT + + n.denot + inan + sg + single + + t + 9 + + + t-cmpr9410-027-p6s7w6 + SPEC + + + + + + a#a-cmpr9410-027-p6s9w9 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 7 + + + + a#a-cmpr9410-027-p6s9w10 + + complex + účetní + RSTR + + adj.denot + pos + neg0 + + t + 8 + + + + + + a#a-cmpr9410-027-p6s9w13 + + a#a-cmpr9410-027-p6s9w12 + + + complex + počítač + EFF + + n.denot + inan + sg + single + + f + 11 + + + t-cmpr9410-027-p4s7w11 + GEN + + + + + + a#a-cmpr9410-027-p6s9w14 + + complex + MiniSys + ID + enunc + + n.denot + inan + sg + single + + f + 12 + + + + + + a#a-cmpr9410-027-p6s9w17 + + complex + přijít + RSTR + + v + decl + post + cpl + it0 + act + asserted + + f + 15 + v#v-w5158f4 + + + + a#a-cmpr9410-027-p6s9w16 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 13 + + t-cmpr9410-027-p6s9w8 + + + + qcomplex + 1 + #Gen + ADDR + t + 14 + + + + a#a-cmpr9410-027-p6s9w21 + + a#a-cmpr9410-027-p6s9w18 + + + complex + koruna + PAT + + n.denot + fem + pl + single + + f + 16 + + + + a#a-cmpr9410-027-p6s9w19 + + complex + pouhý + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + a#a-cmpr9410-027-p6s9w20 + + complex + 25000 + RSTR + + adj.quant.def + basic + + f + 18 + + + + + + + + + + + + + a#a-cmpr9410-027-p7s1 + 0 + + + + a#a-cmpr9410-027-p7s1w1 + + complex + kniha + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + heading + + + + a#a-cmpr9410-027-p7s1w2 + + complex + jízda + MAT + + n.denot + fem + pl + single + + f + 2 + + + + + + + a#a-cmpr9410-027-p8s1A + 0 + + + + a#a-cmpr9410-027-p8s1Aw3 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w1855f1 + + + + a#a-cmpr9410-027-p8s1Aw2 + + complex + úspěch + PAT + + n.denot + inan + sg + single + + c + 1 + + + + a#a-cmpr9410-027-p8s1Aw1 + + complex + velký + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + a#a-cmpr9410-027-p8s1Aw6 + + a#a-cmpr9410-027-p8s1Aw4 + + + complex + doba + TWHEN + basic + + n.denot + fem + sg + single + + t + 3 + + + + a#a-cmpr9410-027-p8s1Aw5 + + complex + poslední + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-cmpr9410-027-p8s1Aw8 + + complex + program + ACT + + n.denot + inan + sg + single + + t + 6 + + + t-cmpr9410-027-p6s3w5 + SET_SUB + + + + + + a#a-cmpr9410-027-p8s1Aw7 + + atom + také + RHEM + f + 7 + + + + a#a-cmpr9410-027-p8s1Aw9 + + complex + S + ID + enunc + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-cmpr9410-027-p8s1Aw11 + + complex + P + ID + enunc + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-cmpr9410-027-p8s1Aw13 + + complex + Z + ID + enunc + + n.denot + nr + nr + single + + f + 10 + + + + + + + + + a#a-cmpr9410-027-p8s1B + 0 + + + + a#a-cmpr9410-027-p8s1Bw5 + + complex + vytvořit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 6 + v#v-w8510f1 + + + + a#a-cmpr9410-027-p8s1Bw3 + + complex + Kuneš + ACT + 1 + + n.denot + anim + sg + single + + c + 1 + + + + a#a-cmpr9410-027-p8s1Bw2 + + complex + Milan + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-cmpr9410-027-p8s1Bw1 + + complex + programátor + RSTR + + n.denot + anim + sg + single + + f + 3 + + + + + + a#a-cmpr9410-027-p8s1Bw4 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 4 + + + t-cmpr9410-027-p8s1Aw8 + SPEC + + + + + + a#a-cmpr9410-027-p8s1Bw6 + + complex + původní + TWHEN + basic + + adj.denot + pos + neg0 + + t + 5 + + + + a#a-cmpr9410-027-p8s1Bw9 + + a#a-cmpr9410-027-p8s1Bw7 + + + complex + potřeba + AIM + + n.denot + fem + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p8s1Bw8 + + complex + interní + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + a#a-cmpr9410-027-p8s2 + 0 + + + + a#a-cmpr9410-027-p8s2w7 + + coap + a + CONJ + 7 + + + t-cmpr9410-027-p8s1Bw5 + discourse + 0 + 0 + explicat + + t-cmpr9410-027-p8s2w3 + + + + + + + a#a-cmpr9410-027-p8s2w2 + + complex + Luňák + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-cmpr9410-027-p3s6w16 + SPEC + + + + + + a#a-cmpr9410-027-p8s2w1 + + complex + Ota + RSTR + 1 + + n.denot + anim + sg + single + + t + 1 + + + + + + a#a-cmpr9410-027-p8s2w4 + + complex + ztratit + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w9918f2 + + + + a#a-cmpr9410-027-p8s2w3 + + atom + totiž + PREC + t + 3 + + + + a#a-cmpr9410-027-p8s2w5 + + complex + kniha + PAT + + n.denot + fem + sg + single + + f + 5 + + + t-cmpr9410-027-p7s1w1 + SET_SUB + + + + + + a#a-cmpr9410-027-p8s2w6 + + complex + jízda + MAT + + n.denot + fem + pl + single + + f + 6 + + + t-cmpr9410-027-p7s1w2 + GEN + + + + + + + + + + a#a-cmpr9410-027-p8s2w8 + + complex + potřebovat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 8 + + + t-cmpr9410-027-p8s2w4 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p8s2w7 + + + + v#v-w4096f1 + + + + a#a-cmpr9410-027-p8s2w10 + + complex + zrekonstruovat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 11 + v#v-w9868f1 + + + qcomplex + 1 + #Cor + ACT + t + 9 + + t-cmpr9410-027-p8s2w2 + + + + + a#a-cmpr9410-027-p8s2w9 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 10 + + + t-cmpr9410-027-p8s2w5 + SPEC + + + + + + + + + + + + + a#a-cmpr9410-027-p8s3 + 0 + + + + a#a-cmpr9410-027-p8s3w2 + + complex + vzniknout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w8671f1 + + + + a#a-cmpr9410-027-p8s3w1 + + complex + tak + MANN + + adv.pron.def + + t + 1 + + + + a#a-cmpr9410-027-p8s3w3 + + complex + program + ACT + + n.denot + inan + sg + single + + t + 3 + + + t-cmpr9410-027-p8s1Bw4 + SPEC + + + + + + a#a-cmpr9410-027-p8s3w6 + + complex + sloužit + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w6171f1 + + + + a#a-cmpr9410-027-p8s3w5 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 4 + + t-cmpr9410-027-p8s3w3 + + + + qcomplex + 1 + #Gen + PAT + t + 5 + + + + a#a-cmpr9410-027-p8s3w7 + + atom + nejen + RHEM + f + 7 + + + + a#a-cmpr9410-027-p8s3w10 + + a#a-cmpr9410-027-p8s3w8 + + + complex + vedení + AIM + + n.denot + neut + sg + single + + f + 12 + v#v-w7545f2 + + + + a#a-cmpr9410-027-p8s3w12 + + complex + kniha + PAT + + n.denot + fem + sg + single + + t + 9 + + + t-cmpr9410-027-p7s1w1 + GEN + + + + + + a#a-cmpr9410-027-p8s3w13 + + complex + jízda + MAT + + n.denot + fem + pl + single + + t + 8 + + + t-cmpr9410-027-p8s2w6 + GEN + + + + + + a#a-cmpr9410-027-p8s3w11 + + complex + předepsaný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-cmpr9410-027-p8s3w9 + + complex + průběžný + MANN + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + + + + + + a#a-cmpr9410-027-p8s4 + 0 + + + + a#a-cmpr9410-027-p8s4w7 + + coap + #Comma + CONJ + 8 + + + + a#a-cmpr9410-027-p8s4w3 + + complex + dokázat + PRED + enunc + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 3 + + + t-cmpr9410-027-p8s3w6 + discourse + 0 + 0 + grad + + t-cmpr9410-027-p8s3w7 + t-cmpr9410-027-p8s4w2 + + + + v#v-w586f1 + + + + a#a-cmpr9410-027-p8s4w2 + + a#a-cmpr9410-027-p8s4w1 + + + complex + ten + RESTR + + n.pron.def.demon + neut + sg + + t + 1 + + + t-cmpr9410-027-p8s3w10 + GEN + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 2 + + + t-cmpr9410-027-p8s3w5 + SPEC + + + + + + a#a-cmpr9410-027-p8s4w4 + + complex + zrekonstruovat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 5 + v#v-w9868f1 + + + qcomplex + 1 + #Cor + ACT + t + 4 + + t-cmpr9410-027-p8s4a0 + + + + + a#a-cmpr9410-027-p8s4w6 + + complex + období + PAT + + n.denot + neut + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p8s4w5 + + complex + chybějící + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + + + a#a-cmpr9410-027-p8s4w9 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + + + t-cmpr9410-027-p8s4w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p8s4w8 + + + + v#v-w243f3 + + + + a#a-cmpr9410-027-p8s4w8 + + complex + co + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 9 + + t-cmpr9410-027-p8s4w3 + + + + + a#a-cmpr9410-027-p8s4w11 + + a#a-cmpr9410-027-p8s4w10 + + + complex + praxe + LOC + basic + + n.denot + fem + sg + single + + f + 11 + + + + a#a-cmpr9410-027-p8s4w12 + + complex + často + THO + + adv.denot.grad.neg + pos + neg0 + + f + 12 + + + + a#a-cmpr9410-027-p8s4w13 + + complex + zapotřebí + CPHR + + adv.denot.ngrad.nneg + + f + 13 + v#v-w9055f1 + + + + + + + + + a#a-cmpr9410-027-p8s5 + 0 + + + + a#a-cmpr9410-027-p8s5w46 + + complex + vytvořit + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 42 + v#v-w8510f2 + + + + a#a-cmpr9410-027-p8s5w2 + + a#a-cmpr9410-027-p8s5w1 + + + complex + zadání + TWHEN + after + + n.denot.neg + neut + sg + single + neg0 + + c + 2 + v#v-w8762f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-cmpr9410-027-p8s5w5 + + complex + údaj + PAT + + n.denot + inan + pl + single + + f + 3 + + + + a#a-cmpr9410-027-p8s5w4 + + complex + vstupní + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-cmpr9410-027-p8s5w3 + + complex + kolik + RSTR + + adj.quant.indef + indef1 + basic + + f + 5 + + + + a#a-cmpr9410-027-p8s5w43 + + coap + a + CONJ + 1 + 26 + + + t-cmpr9410-027-p8s5w5 + SPEC + + + + + + a#a-cmpr9410-027-p8s5w12 + + coap + #Comma + CONJ + 1 + 1 + 12 + + + + a#a-cmpr9410-027-p8s5w8 + + coap + a + CONJ + 1 + 1 + 8 + + + + a#a-cmpr9410-027-p8s5w10 + + complex + 1 + stav + PAR + enunc + 1 + 1 + + n.denot + inan + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p8s5w7 + + complex + počáteční + RSTR + 1 + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-cmpr9410-027-p8s5w10 + + complex + stav + PAR + enunc + 1 + 1 + + n.denot + inan + sg + single + + t + 9 + + + + a#a-cmpr9410-027-p8s5w9 + + complex + konečný + RSTR + 1 + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-cmpr9410-027-p8s5w11 + + complex + tachometr + APP + 1 + + n.denot + inan + sg + single + + f + 11 + + + + + + a#a-cmpr9410-027-p8s5w13 + + complex + spotřeba + PAR + enunc + 1 + 1 + + n.denot + fem + sg + single + + f + 13 + + + + a#a-cmpr9410-027-p8s5w14 + + complex + vůz + ACT + 1 + + n.denot + inan + sg + single + + f + 14 + + + t-cmpr9410-027-p8s5w11 + PART_WHOLE + + + + + + a#a-cmpr9410-027-p8s5w17 + + a#a-cmpr9410-027-p8s5w15 + + + complex + průkaz + CRIT + 1 + + n.denot + inan + sg + single + + f + 15 + + + + a#a-cmpr9410-027-p8s5w16 + + complex + technický + RSTR + 1 + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + a#a-cmpr9410-027-p8s5w29 + + complex + jezdit + PAR + enunc + 1 + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 18 + v#v-w1328f1 + + + + a#a-cmpr9410-027-p8s5w27 + + complex + uživatel + ACT + 1 + + n.denot + anim + sg + single + + t + 17 + + + + a#a-cmpr9410-027-p8s5w28 + + complex + obvyklý + MANN + 1 + + adj.denot + pos + neg0 + + f + 19 + + + + a#a-cmpr9410-027-p8s5w23 + + coap + a + CONJ + 1 + 23 + + + + a#a-cmpr9410-027-p8s5w19 + + complex + kde + DIR3 + basic + 1 + 1 + + adv.pron.indef + inter + + f + 20 + + + + a#a-cmpr9410-027-p8s5w22 + + complex + často + THO + 1 + 1 + + adv.denot.grad.neg + pos + neg0 + + f + 21 + + + + a#a-cmpr9410-027-p8s5w21 + + complex + jak + EXT + basic + 1 + + adv.pron.indef + inter + + f + 22 + + + + + + a#a-cmpr9410-027-p8s5w26 + + a#a-cmpr9410-027-p8s5w24 + + + complex + účel + AIM + 1 + 1 + + n.denot + inan + sg + single + + f + 24 + + + + a#a-cmpr9410-027-p8s5w25 + + complex + jaký + RSTR + 1 + + adj.pron.indef + inter + + f + 25 + + + + + + + + + + a#a-cmpr9410-027-p8s5w31 + + complex + období + PAR + enunc + 1 + 1 + + n.denot + neut + sg + single + + f + 27 + + + + a#a-cmpr9410-027-p8s5w36 + + complex + jet + RSTR + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 32 + v#v-w1325f1 + + + + a#a-cmpr9410-027-p8s5w33 + + complex + kdy + TWHEN + basic + 1 + + adv.pron.indef + relat + + t + 28 + + t-cmpr9410-027-p8s5w31 + + + + + a#a-cmpr9410-027-p8s5w35 + + complex + kde + DIR3 + basic + 1 + + adv.pron.indef + negat + + t + 29 + + + complex + 1 + #PersPron + ACT + 1 + + n.pron.def.pers + anim + sg + 3 + basic + + t + 30 + + + t-cmpr9410-027-p8s5w27 + GEN + + + + + atom + 1 + #Neg + RHEM + 1 + f + 31 + + + + a#a-cmpr9410-027-p8s5w34 + + atom + určitě + MOD + 1 + f + 33 + + + + + + + + a#a-cmpr9410-027-p8s5w38 + + complex + den + PAR + enunc + 1 + 1 + + n.denot + inan + pl + single + + f + 34 + + + + a#a-cmpr9410-027-p8s5w42 + + complex + jezdit + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 38 + v#v-w1328f1 + + + + a#a-cmpr9410-027-p8s5w40 + + complex + kdy + TWHEN + basic + 1 + + adv.pron.indef + relat + + t + 35 + + t-cmpr9410-027-p8s5w38 + + + + complex + 1 + #PersPron + ACT + 1 + + n.pron.def.pers + anim + sg + 3 + basic + + t + 36 + + + t-cmpr9410-027-p8s5a5 + GEN + + + + + atom + 1 + #Neg + RHEM + 1 + f + 37 + + + + a#a-cmpr9410-027-p8s5w41 + + complex + vůbec + EXT + basic + 1 + + adv.denot.ngrad.nneg + + f + 39 + + + + + + + + a#a-cmpr9410-027-p8s5w44 + + complex + podobný + PAR + enunc + 1 + 1 + + adj.denot + pos + neg0 + + f + 40 + + + + + + + + + qcomplex + 1 + #Gen + ACT + t + 41 + + + t-cmpr9410-027-p8s4a1 + SPEC + + + + + + a#a-cmpr9410-027-p8s5w49 + + a#a-cmpr9410-027-p8s5w47 + a#a-cmpr9410-027-p8s5w48 + + + complex + teorie + MEANS + + n.denot + fem + sg + single + + f + 43 + + + + a#a-cmpr9410-027-p8s5w50 + + complex + pravděpodobnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 44 + + + + + + a#a-cmpr9410-027-p8s5w52 + + complex + kniha + PAT + + n.denot + fem + sg + single + + t + 46 + + + t-cmpr9410-027-p8s3w12 + GEN + + + + + + a#a-cmpr9410-027-p8s5w53 + + complex + jízda + MAT + + n.denot + fem + pl + single + + t + 45 + + + t-cmpr9410-027-p8s3w13 + GEN + + + + + + a#a-cmpr9410-027-p8s5w51 + + complex + kompletní + RSTR + + adj.denot + pos + neg0 + + f + 47 + + + + a#a-cmpr9410-027-p8s5w56 + + a#a-cmpr9410-027-p8s5w54 + + + complex + náležitost + ACMP + basic + + n.denot.neg + fem + pl + single + neg0 + + f + 48 + + + + a#a-cmpr9410-027-p8s5w55 + + complex + který + RSTR + + adj.pron.indef + total1 + + f + 49 + + + + a#a-cmpr9410-027-p8s5w59 + + a#a-cmpr9410-027-p8s5w57 + + + complex + náhrada + ACMP + incl + + n.denot + fem + sg + single + + f + 50 + + + t-cmpr9410-027-p8s5w56 + SET_SUB + + + + + + a#a-cmpr9410-027-p8s5w58 + + complex + vypočtený + RSTR + + adj.denot + pos + neg0 + + f + 51 + + + + a#a-cmpr9410-027-p8s5w61 + + a#a-cmpr9410-027-p8s5w60 + + + complex + koruna + RSTR + + n.denot + fem + pl + single + + f + 52 + + + + a#a-cmpr9410-027-p8s5w64 + + a#a-cmpr9410-027-p8s5w62 + + + complex + cesta + BEN + basic + + n.denot + fem + sg + single + + f + 53 + + + t-cmpr9410-027-p8s5w53 + GEN + + + + + + a#a-cmpr9410-027-p8s5w63 + + complex + který + RSTR + + adj.pron.indef + total2 + + f + 54 + + + + + + + + + + + + + + + a#a-cmpr9410-027-p8s6 + 0 + + + + a#a-cmpr9410-027-p8s6w17 + + complex + vytvořit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 12 + v#v-w8510f1 + + + + a#a-cmpr9410-027-p8s6w3 + + a#a-cmpr9410-027-p8s6w2 + a#a-cmpr9410-027-p8s6w1 + + + complex + ukázat_se + TWHEN + basic + + v + decl + ant + cpl + it0 + act + asserted + + c + 1 + + + t-cmpr9410-027-p8s6w17 + discourse + 0 + 0 + preced + + a#a-cmpr9410-027-p8s6w1 + + + + v#v-w7094f1 + + + + a#a-cmpr9410-027-p8s6w11 + + coap + a + CONJ + 7 + + + + a#a-cmpr9410-027-p8s6w10 + + a#a-cmpr9410-027-p8s6w5 + + + complex + být + ACT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w243f2 + + + + a#a-cmpr9410-027-p8s6w9 + + complex + program + ACT + + n.denot + inan + sg + single + + t + 2 + + + t-cmpr9410-027-p8s5a8 + ANAF + + + + + + a#a-cmpr9410-027-p8s6w8 + + complex + podobný + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + a#a-cmpr9410-027-p8s6w7 + + a#a-cmpr9410-027-p8s6w6 + + + complex + trh + LOC + basic + + n.denot + inan + sg + single + + t + 4 + + + atom + 1 + #Neg + RHEM + f + 5 + + + + + + a#a-cmpr9410-027-p8s6w12 + + a#a-cmpr9410-027-p8s6w5 + + + complex + být + ACT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + + + t-cmpr9410-027-p8s6w10 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p8s6w11 + + + + v#v-w243f2 + + + + a#a-cmpr9410-027-p8s6w15 + + complex + zájem + ACT + + n.denot + inan + sg + single + + f + 10 + + + + a#a-cmpr9410-027-p8s6w14 + + a#a-cmpr9410-027-p8s6w13 + + + complex + #PersPron + PAT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 9 + + + t-cmpr9410-027-p8s6w9 + GEN + + + + + + + + + + + + + + a#a-cmpr9410-027-p8s6w18 + + complex + programátor + ACT + + n.denot + anim + sg + single + + t + 11 + + + t-cmpr9410-027-p8s1Bw3 + SPEC + + + + + + a#a-cmpr9410-027-p8s6w19 + + atom + také + RHEM + f + 13 + + + + a#a-cmpr9410-027-p8s6w20 + + complex + verze + PAT + + n.denot + fem + sg + single + + f + 14 + + + t-cmpr9410-027-p8s5a8 + REST + + + + + + a#a-cmpr9410-027-p8s6w23 + + a#a-cmpr9410-027-p8s6w21 + + + complex + počet + BEN + basic + + n.denot + inan + sg + single + + f + 15 + + + + a#a-cmpr9410-027-p8s6w24 + + complex + auto + MAT + + n.denot + neut + pl + single + + f + 16 + + + t-cmpr9410-027-p8s5w14 + GEN + + + + + + a#a-cmpr9410-027-p8s6w22 + + complex + omezený + RSTR + + adj.denot + pos + neg1 + + f + 17 + + + + + + + + + + + a#a-cmpr9410-027-p9s1 + 0 + + + + a#a-cmpr9410-027-p9s1w17 + + complex + stát + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + v#v-w6492f4 + + + + a#a-cmpr9410-027-p9s1w3 + + a#a-cmpr9410-027-p9s1w1 + + + complex + program + DIR1 + basic + + n.denot + inan + pl + single + + t + 2 + + + t-cmpr9410-027-p6s3w5 + SET_SUB + + + + + + a#a-cmpr9410-027-p9s1w2 + + complex + další + RSTR + + adj.denot + pos + neg0 + + c + 1 + + + + a#a-cmpr9410-027-p9s1w11 + + coap + ale + ADVS + 8 + + + + a#a-cmpr9410-027-p9s1w6 + + complex + být + RSTR + 1 + + v + decl + sim + proc + it1 + act + asserted + + f + 5 + v#v-w243f2 + + + + a#a-cmpr9410-027-p9s1w5 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 3 + + t-cmpr9410-027-p9s1w3 + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + a#a-cmpr9410-027-p9s1w7 + + complex + běžný + MANN + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-cmpr9410-027-p9s1w9 + + a#a-cmpr9410-027-p9s1w8 + + + complex + dostání + RESL + + n.denot.neg + neut + sg + single + neg0 + + f + 7 + v#v-w731f1 + + + + + + a#a-cmpr9410-027-p9s1w15 + + a#a-cmpr9410-027-p9s1w13 + + + complex + žádat + RSTR + 1 + + v + decl + sim + proc + it0 + pas + asserted + + f + 11 + + + t-cmpr9410-027-p9s1w6 + discourse + 0 + 0 + opp + + t-cmpr9410-027-p9s1w11 + + + + v#v-w10014f1 + + + + a#a-cmpr9410-027-p9s1w12 + + complex + podnikatel + ACT + + n.denot + anim + pl + single + + t + 9 + + + t-cmpr9410-027-p6s2w17 + GEN + + + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 10 + + + t-cmpr9410-027-p9s1w5 + SPEC + + + + + + a#a-cmpr9410-027-p9s1w14 + + complex + dost + EXT + basic + + adv.denot.ngrad.neg + neg0 + + f + 12 + + + + + + + + + + a#a-cmpr9410-027-p9s1w19 + + a#a-cmpr9410-027-p9s1w18 + + + complex + zmínka + PAT + + n.denot + fem + sg + single + + f + 14 + + + + a#a-cmpr9410-027-p9s1w20 + + complex + program + ACT + + n.denot + inan + pl + single + + t + 15 + + + t-cmpr9410-027-p9s1a1 + SET_SUB + + + + + + a#a-cmpr9410-027-p9s1w24 + + coap + #Comma + CONJ + 18 + + + + a#a-cmpr9410-027-p9s1w22 + + a#a-cmpr9410-027-p9s1w21 + + + complex + výuka + BEN + basic + 1 + + n.denot + fem + sg + single + + f + 16 + + + + a#a-cmpr9410-027-p9s1w23 + + complex + jazyk + PAT + + n.denot + inan + pl + single + + f + 17 + + + + + + a#a-cmpr9410-027-p9s1w29 + + coap + či + DISJ + 1 + 22 + + + + a#a-cmpr9410-027-p9s1w26 + + a#a-cmpr9410-027-p9s1w25 + + + complex + tvorba + BEN + basic + 1 + + n.denot + fem + sg + single + + f + 19 + + + + a#a-cmpr9410-027-p9s1w28 + + complex + korespondence + PAT + + n.denot + fem + sg + single + + f + 20 + + + + a#a-cmpr9410-027-p9s1w27 + + complex + cizojazyčný + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + a#a-cmpr9410-027-p9s1w30 + + a#a-cmpr9410-027-p9s1w25 + + + complex + překlad + BEN + basic + 1 + + n.denot + inan + pl + single + + f + 23 + + + + a#a-cmpr9410-027-p9s1w32 + + a#a-cmpr9410-027-p9s1w31 + + + complex + čeština + DIR3 + basic + + n.denot + fem + sg + single + + f + 24 + + + + + + + + + + + + + + + a#a-cmpr9410-027-p9s2 + 0 + + + + a#a-cmpr9410-027-p9s2w3 + + complex + dodávat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w536f3 + + + + a#a-cmpr9410-027-p9s2w1 + + complex + Arxon + ADDR + + n.denot + inan + sg + single + + t + 1 + + + t-cmpr9410-027-p6s8w5 + SPEC + + + + + + a#a-cmpr9410-027-p9s2w2 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 2 + + + t-cmpr9410-027-p9s1w20 + SPEC + + + + + + a#a-cmpr9410-027-p9s2w4 + + complex + firma + ACT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-cmpr9410-027-p9s2w5 + + complex + Softex + ID + enunc + + n.denot + inan + sg + single + + f + 5 + + + + + + + + + a#a-cmpr9410-027-p9s3 + 0 + + + + a#a-cmpr9410-027-p9s3w7 + + a#a-cmpr9410-027-p9s3w4 + + + complex + upravit + PRED + enunc + + v + vol + sim + cpl + it0 + act + asserted + + f + 6 + v#v-w7234f1 + + + + a#a-cmpr9410-027-p9s3w2 + + complex + PC + PAT + + n.denot + inan + sg + single + + c + 2 + + + t-cmpr9410-027-p9s2w2 + SET_SUB + + + + + + a#a-cmpr9410-027-p9s3w1 + + complex + #PersPron + APP + + n.pron.def.pers + fem + sg + 3 + basic + + t + 1 + + + t-cmpr9410-027-p9s2w4 + SPEC + + + + + + a#a-cmpr9410-027-p9s3w3 + + complex + Translator + ID + enunc + + n.denot + inan + sg + single + + f + 3 + + + + + + a#a-cmpr9410-027-p9s3w6 + + complex + Arxon + ACT + + n.denot + inan + sg + single + + t + 4 + + + t-cmpr9410-027-p9s2w1 + SPEC + + + + + + a#a-cmpr9410-027-p9s3w5 + + atom + dokonce + RHEM + f + 5 + + + + a#a-cmpr9410-027-p9s3w9 + + a#a-cmpr9410-027-p9s3w8 + + + complex + prostředí + BEN + basic + + n.denot + neut + sg + single + + f + 7 + + + + a#a-cmpr9410-027-p9s3w10 + + complex + Windows + RSTR + + n.denot + inan + pl + single + + f + 8 + + + + + + + + + a#a-cmpr9410-027-p10s1 + 0 + + + + a#a-cmpr9410-027-p10s1w2 + + complex + nabídka + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + heading + + + + a#a-cmpr9410-027-p10s1w1 + + complex + doplňkový + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + + a#a-cmpr9410-027-p11s1 + 0 + + + + a#a-cmpr9410-027-p11s1w4 + + complex + najít + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 3 + v#v-w2042f1 + + + + a#a-cmpr9410-027-p11s1w2 + + a#a-cmpr9410-027-p11s1w1 + + + complex + prodejna + LOC + basic + + n.denot + fem + sg + single + + c + 2 + + + + a#a-cmpr9410-027-p11s1w3 + + complex + Arxon + APP + + n.denot + inan + sg + single + + t + 1 + + + t-cmpr9410-027-p9s3w6 + SPEC + + + + + + + + a#a-cmpr9410-027-p11s1w5 + + complex + zákazník + ACT + + n.denot + anim + pl + single + + f + 4 + + + t-cmpr9410-027-p6s8w16 + SUB_SET + + + + + qcomplex + 1 + #EmpVerb + PAR + enunc + 1 + t + 5 + + + + a#a-cmpr9410-027-p11s1w7 + + complex + mnohý + ACT + 1 + + n.denot + anim + pl + single + + f + 6 + + + t-cmpr9410-027-p11s1w5 + SET_SUB + + + + + + a#a-cmpr9410-027-p11s1w8 + + complex + již + TWHEN + basic + 1 + + adv.denot.ngrad.nneg + + f + 7 + + + + a#a-cmpr9410-027-p11s1w9 + + complex + stálý + PAT + 1 + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + a#a-cmpr9410-027-p11s1w11 + + atom + také + RHEM + f + 9 + + + + a#a-cmpr9410-027-p11s1w13 + + complex + příručka + PAT + + n.denot + fem + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p11s1w12 + + complex + různý + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-cmpr9410-027-p11s1w16 + + coap + a + CONJ + 13 + + + + a#a-cmpr9410-027-p11s1w15 + + a#a-cmpr9410-027-p11s1w14 + + + complex + podnikatel + BEN + basic + 1 + + n.denot + anim + pl + single + + f + 12 + + + t-cmpr9410-027-p9s1w12 + GEN + + + + + + a#a-cmpr9410-027-p11s1w17 + + a#a-cmpr9410-027-p11s1w14 + + + complex + ekonom + BEN + basic + 1 + + n.denot + anim + pl + single + + f + 14 + + + + + + + + + + + a#a-cmpr9410-027-p11s2 + 0 + + + + a#a-cmpr9410-027-p11s2w2 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w243f1 + + + + a#a-cmpr9410-027-p11s2w1 + + complex + často + THO + + adv.denot.grad.neg + sup + neg0 + + c + 1 + + + + a#a-cmpr9410-027-p11s2w3 + + complex + ten + PAT + + adj.pron.def.demon + + t + 2 + + + t-cmpr9410-027-p11s1w13 + GEN + + + + + + a#a-cmpr9410-027-p11s2w4 + + complex + publikace + ACT + + n.denot + fem + pl + single + + t + 4 + + + + a#a-cmpr9410-027-p11s2w8 + + coap + a + CONJ + 8 + + + + a#a-cmpr9410-027-p11s2w6 + + complex + nakladatelství + APP + 1 + + n.denot + neut + sg + single + + f + 5 + + + + a#a-cmpr9410-027-p11s2w7 + + complex + Profess + ID + enunc + + n.denot + inan + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p11s2w5 + + complex + pražský + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + t-cmpr9410-027-p3s4w2 + SPEC + + + + + + + + a#a-cmpr9410-027-p11s2w10 + + complex + Mirago + APP + 1 + + n.denot + neut + sg + single + + f + 9 + + + + a#a-cmpr9410-027-p11s2w9 + + complex + ostravský + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + + + + a#a-cmpr9410-027-p11s3 + 0 + + + + a#a-cmpr9410-027-p11s3w3 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-027-p11s1w4 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p11s3w1 + + + + v#v-w243f2 + + + + a#a-cmpr9410-027-p11s3w1 + + atom + dále + PREC + t + 1 + + + + a#a-cmpr9410-027-p11s3w2 + + complex + tady + LOC + basic + + adv.pron.def + + t + 2 + + + t-cmpr9410-027-p11s1w2 + SPEC + + + + + + a#a-cmpr9410-027-p11s3w9 + + coap + #Comma + CONJ + 9 + + + + a#a-cmpr9410-027-p11s3w5 + + complex + formulář + ACT + 1 + + n.denot + inan + pl + single + + f + 4 + + + + a#a-cmpr9410-027-p11s3w4 + + complex + četný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-cmpr9410-027-p11s3w6 + + complex + zbytný + RSTR + + adj.denot + pos + neg1 + + f + 6 + + + + a#a-cmpr9410-027-p11s3w8 + + a#a-cmpr9410-027-p11s3w7 + + + complex + podnikání + BEN + basic + + n.denot + neut + sg + single + + f + 8 + + + t-cmpr9410-027-p11s1w15 + REST + + + v#v-w3600f1 + + + qcomplex + 1 + #Gen + ACT + t + 7 + + + + + + + + + + a#a-cmpr9410-027-p11s3w10 + + complex + tiskopis + ACT + 1 + + n.denot + inan + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p11s3w13 + + a#a-cmpr9410-027-p11s3w11 + + + complex + technika + BEN + basic + + n.denot + fem + sg + single + + f + 11 + + + t-cmpr9410-027-p6s1w4 + GEN + + + + + + a#a-cmpr9410-027-p11s3w12 + + complex + výpočetní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + + + a#a-cmpr9410-027-p11s4 + 0 + + + + a#a-cmpr9410-027-p11s4w6 + + coap + a + CONJ + 6 + + + t-cmpr9410-027-p11s3w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p11s4w9 + + + + + + + a#a-cmpr9410-027-p11s4w2 + + complex + Luňák + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-cmpr9410-027-p8s2a0 + SPEC + + + + + + a#a-cmpr9410-027-p11s4w1 + + complex + Ota + RSTR + 1 + + n.denot + anim + sg + single + + t + 1 + + + + + + a#a-cmpr9410-027-p11s4w3 + + complex + doporučovat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w672f1 + + + + a#a-cmpr9410-027-p11s4w5 + + complex + zákazník + ADDR + + n.denot + anim + pl + single + + f + 5 + + + t-cmpr9410-027-p11s1w5 + GEN + + + + + + a#a-cmpr9410-027-p11s4w4 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-cmpr9410-027-p11s4w2 + + + + + + + + + a#a-cmpr9410-027-p11s4w7 + + complex + prodávat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + + + t-cmpr9410-027-p11s4w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p11s4w6 + t-cmpr9410-027-p11s4w9 + + + + v#v-w4316f1 + + + + a#a-cmpr9410-027-p11s4w8 + + complex + #PersPron + ADDR + + n.pron.def.pers + anim + pl + 3 + basic + + t + 7 + + + t-cmpr9410-027-p11s4w5 + SPEC + + + + + + a#a-cmpr9410-027-p11s4w9 + + atom + také + RHEM + f + 8 + + + + + + a#a-cmpr9410-027-p11s4w11 + + complex + kazeta + PAT + + n.denot + fem + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p11s4w10 + + complex + motivační + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-cmpr9410-027-p11s4w15 + + complex + posilovat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w3969f2 + + + + a#a-cmpr9410-027-p11s4w14 + + complex + poslech + ACT + + n.denot + inan + sg + single + + c + 13 + + + + a#a-cmpr9410-027-p11s4w13 + + complex + který + APP + + n.pron.indef + inher + inher + relat + inher + + t + 12 + + t-cmpr9410-027-p11s4w11 + + + + + + + a#a-cmpr9410-027-p11s4w22 + + coap + či + DISJ + 22 + + + + a#a-cmpr9410-027-p11s4w16 + + complex + umění + PAT + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 16 + v#v-w7144f2 + + + qcomplex + 1 + #Gen + ACT + t + 15 + + + + a#a-cmpr9410-027-p11s4w17 + + a#a-cmpr9410-027-p11s4w18 + + + complex + soustředit_se + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 18 + v#v-w6288f1 + + + qcomplex + 1 + #Cor + ACT + t + 17 + + t-cmpr9410-027-p11s4a3 + + + + + + + + + a#a-cmpr9410-027-p11s4w21 + + complex + myšlení + PAT + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 20 + v#v-w1921f1 + + + qcomplex + 1 + #Gen + ACT + t + 19 + + + + a#a-cmpr9410-027-p11s4w20 + + complex + pozitivní + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + a#a-cmpr9410-027-p11s4w23 + + complex + pocit + PAT + 1 + + n.denot + inan + pl + single + + f + 23 + + + + a#a-cmpr9410-027-p11s4w24 + + complex + sebedůvěra + APP + + n.denot + fem + sg + single + + f + 24 + + + + + + + + + + + + + + + a#a-cmpr9410-027-p12s1 + 0 + + + + a#a-cmpr9410-027-p12s1w2 + + complex + začít + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w8756f1 + + + + a#a-cmpr9410-027-p12s1w3 + + complex + Arxon + ACT + + n.denot + inan + sg + single + + t + 1 + + + t-cmpr9410-027-p11s1w3 + SPEC + + + + + + a#a-cmpr9410-027-p12s1w1 + + complex + dávný + TWHEN + basic + + adj.denot + pos + neg1 + + t + 2 + + + + a#a-cmpr9410-027-p12s1w4 + + complex + nabízet + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 6 + v#v-w1949f1 + + + qcomplex + 1 + #Cor + ACT + t + 4 + + t-cmpr9410-027-p12s1w3 + + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-cmpr9410-027-p12s1w5 + + complex + služba + PAT + + n.denot + fem + pl + single + + f + 7 + + + + a#a-cmpr9410-027-p12s1w7 + + complex + studio + APP + + n.denot + neut + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p12s1w6 + + complex + grafický + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + + + a#a-cmpr9410-027-p12s2 + 0 + + + + a#a-cmpr9410-027-p12s2w3 + + coap + a + CONJ + 5 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 1 + + + t-cmpr9410-027-p12s1a0 + SPEC + + + + + + a#a-cmpr9410-027-p12s2w1 + + complex + dodávat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w536f3 + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-cmpr9410-027-p12s2w2 + + complex + návrh + PAT + + n.denot + inan + pl + single + + f + 4 + + + + + + a#a-cmpr9410-027-p12s2w4 + + atom + případně + CM + 6 + + + + a#a-cmpr9410-027-p12s2w5 + + atom + i + CM + 7 + + + + a#a-cmpr9410-027-p12s2w6 + + complex + zajistit + PRED + enunc + 1 + + v + decl + post + cpl + it0 + act + asserted + + t + 8 + + + t-cmpr9410-027-p12s2w1 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p12s2w3 + t-cmpr9410-027-p12s2w4 + t-cmpr9410-027-p12s2w5 + + + + v#v-w8845f4 + + + + a#a-cmpr9410-027-p12s2w7 + + complex + výroba + PAT + + n.denot + fem + sg + single + + f + 9 + + + + a#a-cmpr9410-027-p12s2w23 + + coap + #Comma + CONJ + 15 + + + + a#a-cmpr9410-027-p12s2w9 + + complex + leták + PAT + 1 + + n.denot + inan + pl + single + + f + 10 + + + + a#a-cmpr9410-027-p12s2w8 + + complex + reklamní + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + a#a-cmpr9410-027-p12s2w11 + + complex + ceník + PAT + 1 + + n.denot + inan + pl + single + + f + 12 + + + + a#a-cmpr9410-027-p12s2w13 + + complex + tiskopis + PAT + 1 + + n.denot + inan + pl + single + + f + 13 + + + t-cmpr9410-027-p11s3w10 + SUB_SET + + + + + + a#a-cmpr9410-027-p12s2w15 + + complex + pozvánka + PAT + 1 + + n.denot + fem + pl + single + + f + 14 + + + + a#a-cmpr9410-027-p12s2w17 + + complex + oznámení + PAT + 1 + + n.denot.neg + neut + pl + single + neg0 + + f + 16 + v#v-w3326f1 + + + + a#a-cmpr9410-027-p12s2w19 + + complex + navštívenka + PAT + 1 + + n.denot + fem + pl + single + + f + 17 + + + + a#a-cmpr9410-027-p12s2w22 + + complex + cenovka + PAT + 1 + + n.denot + fem + pl + single + + f + 18 + + + + a#a-cmpr9410-027-p12s2w21 + + complex + firemní + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + a#a-cmpr9410-027-p12s2w24 + + complex + samolepka + PAT + 1 + + n.denot + fem + pl + single + + f + 20 + + + + + + + + + + + + + a#a-cmpr9410-027-p12s3 + 0 + + + + a#a-cmpr9410-027-p12s3w5 + + complex + vést + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 7 + v#v-w7583f1 + + + + a#a-cmpr9410-027-p12s3w1 + + complex + zájem + ACT + + n.denot + inan + sg + single + + c + 1 + + + + a#a-cmpr9410-027-p12s3w2 + + complex + podnikatel + ACT + + n.denot + anim + pl + single + + f + 2 + + + t-cmpr9410-027-p11s1w15 + GEN + + + + + + a#a-cmpr9410-027-p12s3w4 + + a#a-cmpr9410-027-p12s3w3 + + + complex + školení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 5 + v#v-w6728f1 + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + + + + + + a#a-cmpr9410-027-p12s3w6 + + complex + firma + ADDR + + n.denot + fem + sg + single + + t + 6 + + + t-cmpr9410-027-p12s2a0 + SPEC + + + + + + a#a-cmpr9410-027-p12s3w8 + + a#a-cmpr9410-027-p12s3w7 + + + complex + zřízení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w9894f1 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-cmpr9410-027-p12s3w11 + + complex + středisko + PAT + + n.denot + neut + sg + single + + f + 10 + + + t-cmpr9410-027-p6s8w7 + SPEC + + + + + + a#a-cmpr9410-027-p12s3w10 + + complex + školicí + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-cmpr9410-027-p12s3w9 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + a#a-cmpr9410-027-p12s4 + 0 + + + + a#a-cmpr9410-027-p12s4w2 + + complex + usilovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w7284f1 + + + + a#a-cmpr9410-027-p12s4w1 + + complex + teď + TWHEN + basic + + adv.pron.def + + t + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-cmpr9410-027-p12s3w6 + SPEC + + + + + + a#a-cmpr9410-027-p12s4w9 + + a#a-cmpr9410-027-p12s4w3 + a#a-cmpr9410-027-p12s4w4 + a#a-cmpr9410-027-p12s4w8 + a#a-cmpr9410-027-p12s4w6 + + + complex + stát_se + PAT + + v + decl + nil + proc + it0 + act + potential + + f + 5 + v#v-w6496f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 4 + + + t-cmpr9410-027-p12s4a0 + SPEC + + + + + + a#a-cmpr9410-027-p12s4w11 + + complex + školitel + PAT + + n.denot + anim + sg + single + + f + 6 + + + + a#a-cmpr9410-027-p12s4w10 + + complex + autorizovaný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-027-p12s4w13 + + a#a-cmpr9410-027-p12s4w12 + + + complex + produkt + BEN + basic + + n.denot + inan + pl + single + + f + 8 + + + t-cmpr9410-027-p9s3w10 + SUB_SET + + + + + + a#a-cmpr9410-027-p12s4w14 + + complex + Microsoft + APP + + n.denot + inan + sg + single + + f + 9 + + + + + + + + + + + + + a#a-cmpr9410-027-p12s5 + 0 + + + + a#a-cmpr9410-027-p12s5w4 + + coap + a + CONJ + 20 + + + + a#a-cmpr9410-027-p12s5w3 + + complex + soudit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w6270f1 + + + + a#a-cmpr9410-027-p12s5w2 + + complex + Luňák + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-cmpr9410-027-p11s4w4 + SPEC + + + + + + a#a-cmpr9410-027-p12s5w1 + + complex + Ota + RSTR + 1 + + n.denot + anim + sg + single + + t + 1 + + + + + + a#a-cmpr9410-027-p12s5w22 + + a#a-cmpr9410-027-p12s5w11 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w243f193_MM + + + + a#a-cmpr9410-027-p12s5w17 + + a#a-cmpr9410-027-p12s5w14 + a#a-cmpr9410-027-p12s5w13 + a#a-cmpr9410-027-p12s5w12 + + + complex + nabídnout + COND + + v + hrt + post + cpl + it0 + act + asserted + + f + 7 + + + t-cmpr9410-027-p12s5w22 + discourse + 0 + 0 + cond + + a#a-cmpr9410-027-p12s5w12 + + + + v#v-w1940f1 + + + + a#a-cmpr9410-027-p12s5w16 + + complex + co + PAT + + n.pron.indef + neut + sg + inter + 3 + + t + 4 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 5 + + + t-cmpr9410-027-p12s5w7 + SPEC + + + + + + a#a-cmpr9410-027-p12s5w15 + + complex + stálý + THL + + adj.denot + pos + neg0 + + t + 6 + + + + a#a-cmpr9410-027-p12s5w19 + + complex + okruh + ADDR + + n.denot + inan + sg + single + + f + 8 + + + + a#a-cmpr9410-027-p12s5w20 + + complex + zákazník + MAT + + n.denot + anim + pl + single + + f + 9 + + + t-cmpr9410-027-p11s4w8 + SUB_SET + + + + + + a#a-cmpr9410-027-p12s5w18 + + complex + vyhraněný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-cmpr9410-027-p12s5w23 + + complex + možný + PAT + + adj.denot + pos + neg0 + + f + 13 + + + qcomplex + 1 + #Gen + BEN + nr + t + 12 + + + + + + a#a-cmpr9410-027-p12s5w26 + + complex + založit + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 16 + v#v-w8927f1 + + + + a#a-cmpr9410-027-p12s5w25 + + a#a-cmpr9410-027-p12s5w24 + + + complex + ten + ORIG + + n.pron.def.demon + neut + sg + + t + 14 + + + t-cmpr9410-027-p12s5w17 + GEN + + + + + qcomplex + 1 + #Cor + ACT + t + 15 + + t-cmpr9410-027-p12s5a1 + + + + + a#a-cmpr9410-027-p12s5w28 + + complex + existence + PAT + + n.denot + fem + sg + single + + f + 18 + + + + a#a-cmpr9410-027-p12s5w29 + + complex + firma + ACT + + n.denot + fem + sg + single + + t + 17 + + + t-cmpr9410-027-p12s4a1 + SPEC + + + + + + a#a-cmpr9410-027-p12s5w27 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + + + + a#a-cmpr9410-027-p12s5w9 + + complex + potvrzovat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 25 + + + t-cmpr9410-027-p12s5w3 + discourse + 0 + 0 + conj + + t-cmpr9410-027-p12s5w4 + + + + v#v-w4103f1 + + + + a#a-cmpr9410-027-p12s5w6 + + complex + zkušenost + ACT + + n.denot.neg + fem + pl + single + neg0 + + c + 21 + + + + a#a-cmpr9410-027-p12s5w5 + + complex + dosavadní + RSTR + + adj.denot + pos + neg0 + + f + 22 + + + + + + a#a-cmpr9410-027-p12s5w8 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 23 + + + t-cmpr9410-027-p12s5w22 + SPEC + + + + + + a#a-cmpr9410-027-p12s5w7 + + complex + #PersPron + ADDR + + n.pron.def.pers + anim + sg + 3 + basic + + t + 24 + + + t-cmpr9410-027-p12s5w2 + SPEC + + + + + + + + + + + a#a-cmpr9410-027-p13s1 + 0 + + + + a#a-cmpr9410-027-p13s1w2 + + complex + Winter + DENOM + enunc + 1 + + n.denot + anim + sg + single + + f + 1 + + + + a#a-cmpr9410-027-p13s1w1 + + complex + Jaroslav + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + + + + a#a-cmpr9410-027-p14s1 + 0 + + + + a#a-cmpr9410-027-p14s1w2 + + coap + #Colon + APPS + 2 + + + + a#a-cmpr9410-027-p14s1w1 + + complex + kontakt + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 1 + + + + a#a-cmpr9410-027-p14s1w4 + + coap + #Comma + APPS + 1 + 4 + + + t-cmpr9410-027-p12s5w29 + SPEC + + + + + + a#a-cmpr9410-027-p14s1w3 + + complex + Arxon + DENOM + enunc + 1 + + n.denot + inan + sg + single + + t + 3 + + + + a#a-cmpr9410-027-p14s1w5 + + complex + společnost + DENOM + enunc + 1 + + n.denot + fem + nr + single + + f + 5 + + + + a#a-cmpr9410-027-p14s1w7 + + complex + ručení + RSTR + + n.denot + neut + sg + single + + f + 6 + v#v-w5835f1 + + + + a#a-cmpr9410-027-p14s1w9 + + complex + omezený + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + a#a-cmpr9410-027-p14s1w17 + + complex + Praha + RSTR + + n.denot + fem + sg + single + + f + 8 + + + t-cmpr9410-027-p11s2w5 + WHOLE_PART + + + + + + a#a-cmpr9410-027-p14s1w18 + + complex + 3 + RSTR + + adj.quant.def + basic + + f + 9 + + + + a#a-cmpr9410-027-p14s1w15 + + a#a-cmpr9410-027-p14s1w16 + + + complex + 130_00 + RSTR + + adj.quant.def + basic + + f + 10 + + + + a#a-cmpr9410-027-p14s1w12 + + complex + Slezský + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + t-cmpr9410-027-p14s1w17 + WHOLE_PART + + + + + + a#a-cmpr9410-027-p14s1w13 + + complex + 98 + RSTR + + adj.quant.def + basic + + f + 12 + + + + + + + + a#a-cmpr9410-027-p14s1w22 + + coap + a + CONJ + 14 + + + + a#a-cmpr9410-027-p14s1w20 + + complex + telefon + RSTR + 1 + + n.denot + inan + nr + single + + t + 13 + + + + a#a-cmpr9410-027-p14s1w23 + + complex + fax + RSTR + 1 + + n.denot + inan + sg + single + + t + 15 + + + + a#a-cmpr9410-027-p14s1w26 + + a#a-cmpr9410-027-p14s1w28 + + + complex + 02_251474 + RSTR + + n.quant.def + nr + nr + basic + + f + 16 + + + + + + + + + + + diff --git a/demo/cmpr9410_027.txt b/demo/cmpr9410_027.txt new file mode 100644 index 00000000..f08a8379 --- /dev/null +++ b/demo/cmpr9410_027.txt @@ -0,0 +1,29 @@ +Místo i pro malé firmy + +Orientace na drobné podnikatele se vyplácí + +Málokde vládne tak konkurenční prostředí jako v počítačové branži. Přesto i zde je a zřejmě i v budoucnu bude dostatek prostoru pro spoustu malých firem. Jenom si každá z nich musí najít svoji tvář, svoje zákazníky. Například pražská firma Arxon, s.r.o., začínala ve dvou lidech, dnes má čtyři pracovníky a do budoucna nemíní jejich počet příliš zvyšovat. V případě potřeby se spoléhá spíše na pomoc externích spolupracovníků. O tom, na čem založila svoji strategii, hovořil Profit s jejím majitelem Otou Luňákem. + +Téměř od začátku existence firmy je to zaměření na malé a střední podnikatele. Projevuje se v několika směrech. Pokud jde o počítače, Arxon přišel na náš trh s pécéčky, jaká zde nebyla. Jde o tchajwanskou značku MiniSys, která při dobrých výkonových parametrech a nízké ceně zabírá velmi malý prostor. Počítač lze dokonce s pomocí držáku upevnit pod hranu stolu. Kdo už s počítači přišel do styku, ten má obvykle zpočátku k takovému zařízení trochu nedůvěru. Těm, kdo si pořizují svůj první počítač, však jeho velikost vyhovuje a stává se důležitým argumentem při rozhodování. Náročnějším zákazníkům jsou určeny americké počítače ALR s pětiletou záruční lhůtou, kupují si je zejména právníci a lékaři. + +Počítač i s účetnictvím + +S prodejem samotných počítačů by však firma neobstála. Proto vedle obvyklého programového vybavení nabízí také některé programy, které jsou nezbytné či užitečné pro podnikatele. V prvé řadě je to programovatelný systém podvojného účetnictví Kvestor. V testu Profitu byl před časem hodnocen velmi dobře. K jeho přednostem patří schopnost tisku výstupních sestav s korektní českou diakritikou a možnost úprav účetního prostředí na míru. Účtování se provádí volbou v uživatelském menu, aniž by bylo nutné ovládat účetní souvztažnosti. Navíc Arxon nabízí uživatelům tohoto programu školení. A to buď ve svém školicím středisku, nebo přímo na pracovišti či v bytě zákazníka. Zejména u začínajících podnikatelů má slušný ohlas kombinace tohoto účetního programu s počítačem MiniSys, která přijde na pouhých 25 000 korun. + +Kniha jízd + +Velký úspěch má v poslední době také program S.P.Z. Programátor Milan Kuneš ho vytvořil původně pro interní potřebu. Ota Luňák totiž ztratil knihu jízd a potřeboval ji zrekonstruovat. Tak vznikl program, který slouží nejen pro průběžné vedení předepsané knihy jízd. Kromě toho dokáže zrekonstruovat chybějící období, což je v praxi často zapotřebí. Po zadání několika vstupních údajů (počáteční a konečný stav tachometru, spotřeba vozu podle technického průkazu, kam, jak často a za jakým účelem už obvykle jezdí, období, kdy určitě nikam nejel, dny, kdy vůbec nejezdí a podobně) vytvoří s pomocí teorie pravděpodobnosti kompletní knihu jízd se všemi náležitostmi včetně vypočtené náhrady v korunách pro každou cestu. + +Když se ukázalo, že na trhu podobný program není a je o něj zájem, vytvořil programátor také verzi pro neomezený počet aut. + +Z dalších programů, které nebývají běžně k dostání, ale podnikateli jsou dost žádány, stojí za zmínku programy pro výuku jazyků, pro tvorbu cizojazyčné korespondence či překlady do češtiny. Arxonu je dodává firma Softex. Její PC Translator hodlá dokonce Arxon upravit pro prostředí Windows. + +Doplňková nabídka + +V prodejně Arxonu najdou zákazníci, mnozí již stálí, také různé příručky pro podnikatele a ekonomy. Nejčastěji jsou to publikace pražského nakladatelství Profess a ostravského Miraga. Dále zde jsou četné formuláře nezbytné pro podnikání, tiskopisy pro výpočetní techniku. Ota Luňák doporučuje svým zákazníkům a prodává jim také motivační kazety, jejichž poslech posiluje umění soustředit se, pozitivní myšlení či pocity sebedůvěry. + +Nedávno začal Arxon nabízet služby grafického studia. Dodává návrhy a případně i zajistí výrobu reklamních letáků, ceníků, tiskopisů, pozvánek, oznámení, navštívenek, firemních cenovek, samolepek. Zájem podnikatelů o školení vedl firmu ke zřízení malého školicího střediska. Nyní usiluje o to, aby se stala autorizovaným školitelem pro produkty Microsoftu. Ota Luňák soudí a dosavadní zkušenosti mu to potvrzují, že když bude mít stále co nabídnout vyhraněnému okruhu zákazníků, je možné na tom založit dlouhodobou existenci firmy. + +Jaroslav Winter + +Kontakt: Arxon, s.r.o., Slezská 98, 130 00 Praha 3, tel. a FAX: (02) 251 474. \ No newline at end of file diff --git a/demo/cmpr9410_027.w b/demo/cmpr9410_027.w new file mode 100644 index 00000000..3b24f6c6 --- /dev/null +++ b/demo/cmpr9410_027.w @@ -0,0 +1,2478 @@ + + + + + + + csts + + + + +<mod>s +<txtype>inf +<genre>mix +<med>j +<temp>1994 +<authname>y +<opus>cmpr9410 +<id>027 + + + + 1 + + Místo + + + i + + + pro + + + malé + + + firmy + + + + 2 + + Orientace + + + na + + + drobné + + + podnikatele + + + se + + + vyplácí + + + + 3 + + Málokde + + + vládne + + + tak + + + konkurenční + + + prostředí + + + jako + + + v + + + počítačové + + + branži + 1 + + + . + + + Přesto + + + i + + + zde + + + je + + + a + + + zřejmě + + + i + + + v + + + budoucnu + + + bude + + + dostatek + + + prostoru + + + pro + + + spoustu + + + malých + + + firem + 1 + + + . + + + Jenom + + + si + + + každá + + + z + + + nich + + + musí + + + najít + + + svoji + + + tvář + 1 + + + , + + + svoje + + + zákazníky + 1 + + + . + + + Například + + + pražská + + + firma + + + Arxon + 1 + + + , + + + s + 1 + + + . + 1 + + + r + 1 + + + . + 1 + + + o + 1 + + + . + 1 + + + , + + + začínala + + + ve + + + dvou + + + lidech + 1 + + + , + + + dnes + + + + + + čtyři + + + pracovníky + + + a + + + do + + + budoucna + + + nemíní + + + jejich + + + počet + + + příliš + + + zvyšovat + 1 + + + . + + + V + + + případě + + + potřeby + + + se + + + spoléhá + + + spíše + + + na + + + pomoc + + + externích + + + spolupracovníků + 1 + + + . + + + O + + + tom + 1 + + + , + + + na + + + čem + + + založila + + + svoji + + + strategii + 1 + + + , + + + hovořil + + + Profit + + + s + + + jejím + + + majitelem + + + Otou + + + Luňákem + 1 + + + . + + + + 4 + + Téměř + + + od + + + začátku + + + existence + + + firmy + + + je + + + to + + + zaměření + + + na + + + malé + + + a + + + střední + + + podnikatele + 1 + + + . + + + Projevuje + + + se + + + v + + + několika + + + směrech + 1 + + + . + + + Pokud + + + jde + + + o + + + počítače + 1 + + + , + + + Arxon + + + přišel + + + na + + + náš + + + trh + + + s + + + pécéčky + 1 + + + , + + + jaká + + + zde + + + nebyla + 1 + + + . + + + Jde + + + o + + + tchajwanskou + + + značku + + + MiniSys + 1 + + + , + + + která + + + při + + + dobrých + + + výkonových + + + parametrech + + + a + + + nízké + + + ceně + + + zabírá + + + velmi + + + malý + + + prostor + 1 + + + . + + + Počítač + + + lze + + + dokonce + + + s + + + pomocí + + + držáku + + + upevnit + + + pod + + + hranu + + + stolu + 1 + + + . + + + Kdo + + + + + + s + + + počítači + + + přišel + + + do + + + styku + 1 + + + , + + + ten + + + + + + obvykle + + + zpočátku + + + k + + + takovému + + + zařízení + + + trochu + + + nedůvěru + 1 + + + . + + + Těm + 1 + + + , + + + kdo + + + si + + + pořizují + + + svůj + + + první + + + počítač + 1 + + + , + + + však + + + jeho + + + velikost + + + vyhovuje + + + a + + + stává + + + se + + + důležitým + + + argumentem + + + při + + + rozhodování + 1 + + + . + + + Náročnějším + + + zákazníkům + + + jsou + + + určeny + + + americké + + + počítače + + + ALR + + + s + + + pětiletou + + + záruční + + + lhůtou + 1 + + + , + + + kupují + + + si + + + je + + + zejména + + + právníci + + + a + + + lékaři + 1 + + + . + + + + 5 + + Počítač + + + i + + + s + + + účetnictvím + + + + 6 + + S + + + prodejem + + + samotných + + + počítačů + + + by + + + však + + + firma + + + neobstála + 1 + + + . + + + Proto + + + vedle + + + obvyklého + + + programového + + + vybavení + + + nabízí + + + také + + + některé + + + programy + 1 + + + , + + + které + + + jsou + + + nezbytné + + + či + + + užitečné + + + pro + + + podnikatele + 1 + + + . + + + V + + + prvé + + + řadě + + + je + + + to + + + programovatelný + + + systém + + + podvojného + + + účetnictví + + + Kvestor + 1 + + + . + + + V + + + testu + + + Profitu + + + byl + + + před + + + časem + + + hodnocen + + + velmi + + + dobře + 1 + + + . + + + K + + + jeho + + + přednostem + + + patří + + + schopnost + + + tisku + + + výstupních + + + sestav + + + s + + + korektní + + + českou + + + diakritikou + + + a + + + možnost + + + úprav + + + účetního + + + prostředí + + + na + + + míru + 1 + + + . + + + Účtování + + + se + + + provádí + + + volbou + + + v + + + uživatelském + + + menu + 1 + + + , + + + aniž + + + by + + + bylo + + + nutné + + + ovládat + + + účetní + + + souvztažnosti + 1 + + + . + + + Navíc + + + Arxon + + + nabízí + + + uživatelům + + + tohoto + + + programu + + + školení + 1 + + + . + + + A + + + to + + + buď + + + ve + + + svém + + + školicím + + + středisku + 1 + + + , + + + nebo + + + přímo + + + na + + + pracovišti + + + či + + + v + + + bytě + + + zákazníka + 1 + + + . + + + Zejména + + + u + + + začínajících + + + podnikatelů + + + + + + slušný + + + ohlas + + + kombinace + + + tohoto + + + účetního + + + programu + + + s + + + počítačem + + + MiniSys + 1 + + + , + + + která + + + přijde + + + na + + + pouhých + + + 25 000 + + + korun + 1 + + + . + + + + 7 + + Kniha + + + jízd + + + + 8 + + Velký + + + úspěch + + + + + + v + + + poslední + + + době + + + také + + + program + + + S + 1 + + + . + 1 + + + P + 1 + + + . + 1 + + + Z + 1 + + + . + + + Programátor + + + Milan + + + Kuneš + + + ho + + + vytvořil + + + původně + + + pro + + + interní + + + potřebu + 1 + + + . + + + Ota + + + Luňák + + + totiž + + + ztratil + + + knihu + + + jízd + + + a + + + potřeboval + + + ji + + + zrekonstruovat + 1 + + + . + + + Tak + + + vznikl + + + program + 1 + + + , + + + který + + + slouží + + + nejen + + + pro + + + průběžné + + + vedení + + + předepsané + + + knihy + + + jízd + 1 + + + . + + + Kromě + + + toho + + + dokáže + + + zrekonstruovat + + + chybějící + + + období + 1 + + + , + + + což + + + je + + + v + + + praxi + + + často + + + zapotřebí + 1 + + + . + + + Po + + + zadání + + + několika + + + vstupních + + + údajů + + + ( + 1 + + + počáteční + + + a + + + konečný + + + stav + + + tachometru + 1 + + + , + + + spotřeba + + + vozu + + + podle + + + technického + + + průkazu + 1 + + + , + + + kam + 1 + + + , + + + jak + + + často + + + a + + + za + + + jakým + + + účelem + + + + + + obvykle + + + jezdí + 1 + + + , + + + období + 1 + + + , + + + kdy + + + určitě + + + nikam + + + nejel + 1 + + + , + + + dny + 1 + + + , + + + kdy + + + vůbec + + + nejezdí + + + a + + + podobně + 1 + + + ) + + + vytvoří + + + s + + + pomocí + + + teorie + + + pravděpodobnosti + + + kompletní + + + knihu + + + jízd + + + se + + + všemi + + + náležitostmi + + + včetně + + + vypočtené + + + náhrady + + + v + + + korunách + + + pro + + + každou + + + cestu + 1 + + + . + + + + 8 + + Když + + + se + + + ukázalo + 1 + + + , + + + že + + + na + + + trhu + + + podobný + + + program + + + není + + + a + + + je + + + o + + + něj + + + zájem + 1 + + + , + + + vytvořil + + + programátor + + + také + + + verzi + + + pro + + + neomezený + + + počet + + + aut + 1 + + + . + + + + 9 + + Z + + + dalších + + + programů + 1 + + + , + + + které + + + nebývají + + + běžně + + + k + + + dostání + 1 + + + , + + + ale + + + podnikateli + + + jsou + + + dost + + + žádány + 1 + + + , + + + stojí + + + za + + + zmínku + + + programy + + + pro + + + výuku + + + jazyků + 1 + + + , + + + pro + + + tvorbu + + + cizojazyčné + + + korespondence + + + či + + + překlady + + + do + + + češtiny + 1 + + + . + + + Arxonu + + + je + + + dodává + + + firma + + + Softex + 1 + + + . + + + Její + + + PC + + + Translator + + + hodlá + + + dokonce + + + Arxon + + + upravit + + + pro + + + prostředí + + + Windows + 1 + + + . + + + + 10 + + Doplňková + + + nabídka + + + + 11 + + V + + + prodejně + + + Arxonu + + + najdou + + + zákazníci + 1 + + + , + + + mnozí + + + již + + + stálí + 1 + + + , + + + také + + + různé + + + příručky + + + pro + + + podnikatele + + + a + + + ekonomy + 1 + + + . + + + Nejčastěji + + + jsou + + + to + + + publikace + + + pražského + + + nakladatelství + + + Profess + + + a + + + ostravského + + + Miraga + 1 + + + . + + + Dále + + + zde + + + jsou + + + četné + + + formuláře + + + nezbytné + + + pro + + + podnikání + 1 + + + , + + + tiskopisy + + + pro + + + výpočetní + + + techniku + 1 + + + . + + + Ota + + + Luňák + + + doporučuje + + + svým + + + zákazníkům + + + a + + + prodává + + + jim + + + také + + + motivační + + + kazety + 1 + + + , + + + jejichž + + + poslech + + + posiluje + + + umění + + + soustředit + + + se + 1 + + + , + + + pozitivní + + + myšlení + + + či + + + pocity + + + sebedůvěry + 1 + + + . + + + + 12 + + Nedávno + + + začal + + + Arxon + + + nabízet + + + služby + + + grafického + + + studia + 1 + + + . + + + Dodává + + + návrhy + + + a + + + případně + + + i + + + zajistí + + + výrobu + + + reklamních + + + letáků + 1 + + + , + + + ceníků + 1 + + + , + + + tiskopisů + 1 + + + , + + + pozvánek + 1 + + + , + + + oznámení + 1 + + + , + + + navštívenek + 1 + + + , + + + firemních + + + cenovek + 1 + + + , + + + samolepek + 1 + + + . + + + Zájem + + + podnikatelů + + + o + + + školení + + + vedl + + + firmu + + + ke + + + zřízení + + + malého + + + školicího + + + střediska + 1 + + + . + + + Nyní + + + usiluje + + + o + + + to + 1 + + + , + + + aby + + + se + + + stala + + + autorizovaným + + + školitelem + + + pro + + + produkty + + + Microsoftu + 1 + + + . + + + Ota + + + Luňák + + + soudí + + + a + + + dosavadní + + + zkušenosti + + + mu + + + to + + + potvrzují + 1 + + + , + + + že + + + když + + + bude + + + mít + + + stále + + + co + + + nabídnout + + + vyhraněnému + + + okruhu + + + zákazníků + 1 + + + , + + + je + + + možné + + + na + + + tom + + + založit + + + dlouhodobou + + + existenci + + + firmy + 1 + + + . + + + + 13 + + Jaroslav + + + Winter + + + + 14 + + Kontakt + 1 + + + : + + + Arxon + 1 + + + , + + + s + 1 + + + . + 1 + + + r + 1 + + + . + 1 + + + o + 1 + + + . + 1 + + + , + + + Slezská + + + 98 + 1 + + + , + + + 130 + + + 00 + + + Praha + + + 3 + 1 + + + , + + + tel + 1 + + + . + + + a + + + FAX + 1 + + + : + + + ( + 1 + + + 02 + 1 + + + ) + + + 251 474 + 1 + + + . + + + + diff --git a/demo/cnn_0101.onf b/demo/cnn_0101.onf new file mode 100644 index 00000000..43535d23 --- /dev/null +++ b/demo/cnn_0101.onf @@ -0,0 +1,238 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Palestinian President Yasser Arafat is turning to Russia for help in ending the Mideast violence. + +Treebanked sentence: +-------------------- + Palestinian President Yasser Arafat is turning to Russia for help in *PRO*-1 ending the Mideast violence . + +Tree: +----- + (TOP (S (NP-SBJ-1 (NML (JJ Palestinian) + (NNP President)) + (NNP Yasser) + (NNP Arafat)) + (VP (VBZ is) + (VP (VBG turning) + (PP-CLR (IN to) + (NP (NNP Russia))) + (PP-PRP (IN for) + (NP (NP (NN help)) + (PP (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG ending) + (NP (DT the) + (NNP Mideast) + (NN violence))))))))) + (. .))) + +Leaves: +------- + 0 Palestinian + coref: IDENT 0 0-3 Palestinian President Yasser Arafat + name: NORP 0-0 Palestinian + 1 President + 2 Yasser + ! name: PERSON 2-3 Yasser Arafat + 3 Arafat + 4 is + prop: be.03 + v * -> 4:0, is + 5 turning + sense: turn-v.1 + prop: turn.01 + v * -> 5:0, turning + ARG1 * -> 0:2, Palestinian President Yasser Arafat + ARGM-DIR * -> 6:1, to Russia + ARGM-PRP * -> 8:1, for help in *PRO*-1 ending the Mideast violence + 6 to + 7 Russia + coref: IDENT 1 7-7 Russia + name: GPE 7-7 Russia + 8 for + 9 help + sense: help-n.1 + prop: help.01 + n * -> 9:0, help + ARG1 * -> 10:1, in *PRO*-1 ending the Mideast violence + 10 in + 11 *PRO*-1 + 12 ending + sense: end-v.2 + prop: end.01 + v * -> 12:0, ending + ARG0 * -> 11:0, *PRO*-1 -> 0:2, Palestinian President Yasser Arafat + ARG1 * -> 13:1, the Mideast violence + 13 the + 14 Mideast + coref: IDENT CNN20001123.1400.0589.mrg-E1 14-14 Mideast + name: LOC 14-14 Mideast + 15 violence + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Arafat plans to meet with Russian President Vladimir Putin tomorrow in Moscow. + +Treebanked sentence: +-------------------- + Arafat plans *PRO*-1 to meet with Russian President Vladimir Putin tomorrow in Moscow . + +Tree: +----- + (TOP (S (NP-SBJ-1 (NNP Arafat)) + (VP (VBZ plans) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB meet) + (PP-CLR (IN with) + (NP (NML (JJ Russian) + (NNP President)) + (NNP Vladimir) + (NNP Putin))) + (NP-TMP (NN tomorrow)) + (PP-LOC (IN in) + (NP (NNP Moscow))))))) + (. .))) + +Leaves: +------- + 0 Arafat + coref: IDENT 0 0-0 Arafat + name: PERSON 0-0 Arafat + 1 plans + sense: plan-v.1 + prop: plan.01 + v * -> 1:0, plans + ARG0 * -> 0:1, Arafat + ARG1 * -> 2:2, *PRO*-1 to meet with Russian President Vladimir Putin tomorrow in Moscow + 2 *PRO*-1 + 3 to + 4 meet + sense: meet-v.2 + prop: meet.03 + v * -> 4:0, meet + ARG0 * -> 2:0, *PRO*-1 -> 0:1, Arafat + ARG1 * -> 5:1, with Russian President Vladimir Putin + ARGM-TMP * -> 10:1, tomorrow + ARGM-LOC * -> 11:1, in Moscow + 5 with + 6 Russian + name: NORP 6-6 Russian + 7 President + 8 Vladimir + ! name: PERSON 8-9 Vladimir Putin + 9 Putin + 10 tomorrow + name: DATE 10-10 tomorrow + 11 in + 12 Moscow + name: GPE 12-12 Moscow + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Russia is a co-sponsor of the Middle East peace process, but has traditionally played a secondary role to the United + States. + +Treebanked sentence: +-------------------- + Russia is a co-sponsor of the Middle East peace process , but has traditionally played a secondary role to the United + States . + +Tree: +----- + (TOP (S (NP-SBJ (NNP Russia)) + (VP (VP (VBZ is) + (NP-PRD (NP (DT a) + (NN co-sponsor)) + (PP (IN of) + (NP (DT the) + (NML (NNP Middle) + (NNP East)) + (NN peace) + (NN process))))) + (, ,) + (CC but) + (VP (VBZ has) + (ADVP-MNR (RB traditionally)) + (VP (VBN played) + (NP (NP (DT a) + (JJ secondary) + (NN role)) + (PP (IN to) + (NP (DT the) + (NNP United) + (NNP States))))))) + (. .))) + +Leaves: +------- + 0 Russia + coref: IDENT 1 0-0 Russia + name: GPE 0-0 Russia + 1 is + sense: be-v.1 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, Russia + ARG2 * -> 2:2, a co-sponsor of the Middle East peace process + 2 a + 3 co-sponsor + 4 of + 5 the + 6 Middle + coref: IDENT CNN20001123.1400.0589.mrg-E1 6-7 Middle East + name: LOC 6-7 Middle East + 7 East + 8 peace + 9 process + 10 , + 11 but + 12 has + prop: have.01 + v * -> 12:0, has + 13 traditionally + 14 played + sense: play-v.3 + prop: play.02 + v * -> 14:0, played + ARG0 * -> 0:1, Russia + ARGM-MNR * -> 13:1, traditionally + ARG1 * -> 15:2, a secondary role to the United States + 15 a + 16 secondary + name: ORDINAL 16-16 secondary + 17 role + sense: role-n.1 + 18 to + 19 the + name: GPE 19-21 the United States + 20 United + 21 States + 22 . + + +======================================================================================================================== +Coreference chains for section 0: +--------------------------------- + + Chain 0 (IDENT) + 0.0-3 Palestinian President Yasser Arafat + 1.0-0 Arafat + + Chain 1 (IDENT) + 0.7-7 Russia + 2.0-0 Russia + + Chain CNN20001123.1400.0589.mrg-E1 (IDENT) + 0.14-14 Mideast + 2.6-7 Middle East diff --git a/demo/cnn_0101.txt b/demo/cnn_0101.txt new file mode 100644 index 00000000..6acd0fa3 --- /dev/null +++ b/demo/cnn_0101.txt @@ -0,0 +1 @@ + Palestinian President Yasser Arafat is turning to Russia for help in ending the Mideast violence. Arafat plans to meet with Russian President Vladimir Putin tomorrow in Moscow. Russia is a co-sponsor of the Middle East peace process, but has traditionally played a secondary role to the United States. \ No newline at end of file diff --git a/demo/coref.sh b/demo/coref.sh new file mode 100644 index 00000000..3c4b1b61 --- /dev/null +++ b/demo/coref.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +# main file, processing od arguments +if [ "$1" == 'p' ]; then + sh coref_pdt.sh # Pdt + shift +else + if [ "$1" == 'o' ]; then + sh coref_onto.sh # Ontonotes + shift + fi +fi + +if [ "$1" == 't' ]; then + sh coref_training.sh # Training + shift +fi + +if [ "$1" == 'r' ]; then + sh coref_prediction.sh # pRediction (... Resolution) + shift +fi + +if [ "$1" == 'e' ]; then + sh coref_evaluation.sh # Evaluation +fi diff --git a/demo/coref_evaluation.sh b/demo/coref_evaluation.sh new file mode 100644 index 00000000..299d09c6 --- /dev/null +++ b/demo/coref_evaluation.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +python ../udapi/block/demo/Coreference/CoNLL/conll_evaluator.py test/all.out.conllu test/auto_result.conllu # gold vs auto data diff --git a/demo/coref_onto.sh b/demo/coref_onto.sh new file mode 100644 index 00000000..9d96a5ed --- /dev/null +++ b/demo/coref_onto.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +# adding coreference information from onf files to conllu files +udapy read.Conllu files='!onto_train/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > train/all.out.conllu # training files with coreference +cat onto_test/*.in.conllu > test/all.in.conllu # testing files without coreference +udapy read.Conllu files='!onto_test/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) diff --git a/demo/coref_pdt.sh b/demo/coref_pdt.sh new file mode 100644 index 00000000..b32a7280 --- /dev/null +++ b/demo/coref_pdt.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +# adding coreference information from pdt files to conllu files +udapy read.Conllu files='!pdt_train/*.in.conll' demo.Coreference.PDT.Pdt_main write.Conllu > train/all.out.conllu # training files with coreference +cat pdt_test/*.in.conll > test/all.in.conllu # testing files without coreference +udapy read.Conllu files='!pdt_test/*.in.conll' demo.Coreference.PDT.Pdt_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) diff --git a/demo/coref_prediction.sh b/demo/coref_prediction.sh new file mode 100644 index 00000000..22c86390 --- /dev/null +++ b/demo/coref_prediction.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +udapy read.Conllu files='!test/all.in.conllu' demo.Coreference.CoNLL.Conll_prediction_selector | # selection of feature of the predicted file +python3 ../udapi/block/demo/Coreference/Other/predictor.py model.txt | # prediction using a saved model +udapy read.Conllu files='!test/all.in.conllu' demo.Coreference.CoNLL.Conll_coref_adder write.Conllu > test/auto_result.conllu # adding of coref information to the predicted file diff --git a/demo/coref_training.sh b/demo/coref_training.sh new file mode 100644 index 00000000..48a03605 --- /dev/null +++ b/demo/coref_training.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +export PATH=../bin:$PATH +export PYTHONPATH=../:$PYTHONPATH + +udapy read.Conllu files='!train/all.out.conllu' demo.Coreference.CoNLL.Conll_training_selector | python ../udapi/block/demo/Coreference/Other/trainer.py model.txt diff --git a/demo/model.txt b/demo/model.txt new file mode 100644 index 0000000000000000000000000000000000000000..33d09bebd5d23f68735a72b7e21f97c5f45133ed GIT binary patch literal 1191668 zcmeFUThF%Vd7MYdk!;g->t@w-6?a{^3pMW2Z4DGn_CiDjjDF}&0D_Vzld(kUC8ZcH zYM|M0lb_pvkjk=;8ak};%ymD{_i=S+Ba@l)n7QuvAtgKi_gBC3$sc_G{r5ip=$jwC z|Kaa{@a-Rd{K+@J^ZoZe`Q*dzefXXCe*EDNKYII}Z*lnte|~uXB9zw(V&U;FNl|L8~W zzx?WVepY$=XYTEnw_knr!{2%NwRhfn=PUpG~{h2R+^Ut67=)3Rz>9@T7^0!{S{oeP#|HD6g_Xj_C??*3x`(OOz+i%_f zXZi)cGEtu%^z83@_THQNWj?Rp{ic4O`<*xQ3*7%6zM0?oe&zlJK8;@>{pUO7pT;-7 zi8uLst?g~|_|$9n)VuTh7r1|czxW0C&yn>nh+q8wT6wr%ypmITsL7O@yZ!wO+`qv6 z3*5iJXZshp|NH#2{mfoJ>zpO^o=?(_1U&-iEZCN{n-zvq|b?|c*g&YZk) z|L!Nh*3I6(!2Junj$h#Z@1fW6tKOTR_g|p>=c3&|?|=XO{r4|${{r_faQ_1LFL3_? z_b+h&0{1U){{mn9U*P`#*L?B+8Q*{5^L~N*KQGVwE$^lK7iho0{hzn?3*Gno7x?o0 z0{4F(e0ly^Kl3l;-y8Iq+n=SaFZ$p2S^BN7e9QgM=gO~kckW-{&HMsy`ahq3&;HH) z)%Po(_g|p>d(-Zp_rL%C{`(hr9hGy_5SDb+5G2nf7Sg9+`qtEZ{7d>bpKm${{r_faQ_0&`33I(K7G#b zc&~gheu4Wx4_}Obj`v@2{{r_faQ_1LFL3_?_b+h&0{1U){{r_f@WuTF?*D(=7vrDp z{m=1>@z3%8EAC(5{srz|;Qj^fU*P@)K6}5w{l8~@_WqgNUv&Qh_b+h&0-uFnApOq= z=k}k4Z@<6c{sq=wp#A&%=zaZ;n>+gj_~(MUopN)xzkh-I7r1|c`xm%>fiJ@^aR1N6 zFT+3O`)|B|f%_MD6TiTh?Y~dIY=7^Y_;={b^v3<~&zI?+_80$ez5jiF?4NP^{Zjte zYj^w0{tLYBf3Kdk|E!(Q+duEm`rrLo|Gv-LKkxf{?_c2l1@2!U{Q~!Y-=<&Y&hKB~ z{srz|;Qj^fU*IqQ0{8#i{L8<|o!q~`{R`Z`!2Ju{zrg(q+`qu5`3v0t``M@Y>)&su zUtsVb_kV8R%s-9$cYZU! z^Zm-3{RQrSuixzN{b{}Cf6n%w)_2|Se!hQ!``@F__dmb;>+fIS{srz|fM3A>eQpnT z>-`Hn;}>ZEezp5EzTwNbasRGg#((Pf-+cc9*M5O7%YR>_zcc06e$6-6`n-PkoBM_C zm%d29!2R$07wMno{kPn|z|a2z&;HN%v-f`fYrnYe^mjYuzqr5Lr}LMk-#_J_&R5>A z-oL>83*5iJ{R`Z`!2Ju{zrdUO1@8Yn=*|7s_eH8ml^5G9ZdighBef{r!^S6KJo4@_?Z@v2Z z58nUr#~*&@<==kwt3UYgqd)lJAAa%&AHMuMuYTn_-+%9uPu~CJ-Iss&gRlSAKYRJR zfBf>B-}vBHKY07qSHJz+FaO>D5>Mub2PuTi^QDKm3eule(#4L|KR1ndiAwGJO91!{P_>_&5!<+ z`t}b${^Xl~UVZzc_y6#J`}RM1`{lR)3g+*B_|bbG|Iz>c)0f_U`LF-v<-hs8m;d$~ zKl`!%yFY&U@BjSA`rhxn{11QjWBtzWz5I_q`>}ra<$wB1Ki2>J(;w>}{o~(!=hy$A zm*4&Q-|H9tTk!w>FMk$WeFylfYA$(t z-0jIx?kM@HsYjl)?bAEu=%J_mQ~vY%PWtYY`*&G6_wZ|f<=92(q2x(d?%DnJuJ88g zd&te(!&#rrvCpoRds6sxZ~59^Io^Y}a!(4M?kT5-CXRgN%+o`;CtW%B>7l+SZ{FTL z?x^q0w;p$E+x4Bkb3At|_oVQ?ryPzuO1^69o#yGiwA1*tw{m`u9_qXO%F%*CpcUGJRk`g_)X<9x@Xyo;uMy~CktFXi;m#&JjKp{F@LD?4bquX*CwM-%59@18vz zn(is5hc=EoN)J8F=_NhgOZ@3ReA-JnJ!|9BJ>}kCecDU;x@#`&rQCh{)H}_+yZZEw z`-vk*-NT>W&D*nUOxR zsh4u^t(<%KwZC%gT2nve?%Su{Y0j>DcoYszdArj~N*{&8TYbl)jpv?t?x?xsou_`w z)17@34n583C4F=+^?8pwN{*i9^pc+LCH{0DKJBHPp0)Amo^tQ6KJBG^-8Gl?QtrNe z>Ye7^U444T{lt-@?%_}G=IzA+Fv<#t*M`K_w7^fG-tQ<(w#oKa_}fUlzi3J<8EE|;ppR0 z=Xew@Y2s4O4tJD%)zjXa;@5Xp&c6pe)OY)pqX%#0zAF9K#k2dm-Z|a%_pJSuV;`l5 zk~eLXxm>o@6bbix4+8KL%o~4d3*P`qrNx4_TbQG?RtlO z)OY)pa}U4vSB_ol+Fv>EHEBse9F@7gs%xO9KkJ6Ctyv-fwmJG?pj#+kQoeePE8*qg_jvxh@{w}-QuYo0zF>Ku=*T;j=_ zws(AQd+F|-=F?8gPj}6GpF7IEc{tQOc~keAZ+q$9c70!W%z4KiKIPn-x^GY4xqaeN zp8APzdAj=@dwQqpo#s#X;n&@(-03@sZ+W_}-%THNj~w;Ad3vYXc6~qHhxbnN^sMf+ zyLo%}SMQzX*IjdM*LU~r6Yt!9-7#nHU3+-v_HaqfH=lM|-gbR&d+F|-=DlOycf2{g z72XQx+}<1>g-<@^^w7jPZ#;L@{p6jmeK@Q4@Yd9W<8GgFI1~^@vJv<7BuDQA7$x+_9s@}m{ukO=h&pzdFr<(Rs&c5%b zIenBqnsV+*-NRc`pBx@<^&M|@@6@wL505%e{xoMFrH`hZds6rC*3@5f_TceW?n&Xf zuO1GipVZvy;n1|7a`%!aN7G))-AkSvO?%{x^Br$xuW9O$)5oLaXv(>x=8{i&+95~R zJ{(FvY2$pyTho5Z>2pt>9EG>GJG{B(>7nMyt>&6)dwNL|@7&&d z?QS0LUh}C(p0w@yo_5ILQRm5%qwbTV+)?MrlcVmpJl(xxPw!N{(|p^fkHR;fIPz87 zJHD^G=DcGM@7z9dDNp^xlQ;FQz5DHM9`9cBsdt+D9r|dxlUq{{jysxi?oHiqzU`%Z z+x0!|wA?%P?yq-q&7Zzw9^c;ao!+T>r}?z+o;ly`;Zx4Nsr&Zyo!cia<*A?emZ!Vl zv8Q*c-f8}HAAa4v%ALNG_?D;p`rY(V_sCJ-o2PfGZP$19Tkd=F?4st$o4VJ0+e`Ph z>wDU1xp$gB-Ge{fHP22{_nK#KU;9$?blx7$WM3SQFc~6?Va*`N9%F7(oYJX?kT5- zCXRgN%+o`;CtW%B>7l;cuUzUq+V`$K`>5~siAy0dj(s%s$X5>DdbQtrzT5jd@QG_Vca*)PE9X8v)OY)pqX%#0o)kXa$>Ea1C8d|{ z&f%@*?BSi;!=c>m$*rfHd3*2UR}S8K+P})5_V~`V2Zz#6nz)p+!yP40x^mC%pT2v_ z^Sx^i4yB)T<>)L;mOZ}AlJMr)+IeMDYOM1GO__m*Vr+IpZ{L#JE=Z^9&`e;ty%09{+ zkDliAlBPZLk8-J>a=*X&w3qU<3y+#R&D~#pddL05rTo!;+fDb=+~0|32PH>Ob9zZn z_Y$A>$y4t%XD{jLUgFb!%hO)U+g`e-y_Bb&mbblj_kQA2e%faTJ?)?J&w9u2u0Fl* z{>r(BU;B;Yj7A5&*FN=5^R|1smw3N}Z+yC^ zoZY0Ucbcbt@<;d9{>ruQ;%;RhP4_iV9Q$bEoa5cIhilq;?e6`=r+n?3OFq4m^0d?P zb?;Fw^;4d{8y+=xn$xF;l3RUmzV&^_w_V@qp}yOna##7a*S;^^*+UKQ}s^s zr~B}2*LQlS>Ye6K_u<>F@AOX9JI$Z&!?#`E=~>~daOBCioIC2hlqW9nfMu=kDAd4sCZht9#A6Z%-fP-aH&?zUAre9eaAG>Ye7jZ=O3jO1^69ktc2Y z^iDZ?=xKlD*++>^qmd&{r( zThDj<^j(QdIXm1@@}w*0K0Va;wxAs@g@6bbi zZ$9;$pH0Qfe_w5sRHNVf_P=6;LP2ANy^>`13Lr-&hr<&ejr`_Su#HXAdx^nQ= z)K9tlt6%pXHFbPbEmoccy>^7^fafJ^mH%rX}{&`UgA>jcN2FtzuNP6*|Td+ zoO3+=a(^ct9wkRlb9zZn_Y&XsQ|~lS?~p&b z*ZSO1-bEkH>08-Hx#Q8(oLFHkLPxs-|UdriN8=vke_r87VrF`wLTzV(v-d+8=_b8Y8DPOxH8zNej*d#Cx+J^0gI^XxQruX*-XZsom4?^M0h{OLY? z+x4B^sd}gRb-(Sjdwa)yc<1(TXu797^~~GTOA3#|H4lfHZ+W_V$DZD)dZ+o*efYNP zJ3aK#`?Gf1cRczI`zU*>rXG3Hwok8d>3+4JdgMvdcaYP=pX%CQx%B?pUpc=+5B0tI z)N_tUukO0XUQ+Y+^qejuqx4YnRa=j{we7<<&UbpK@AfN~ zdZ&H!&GW7~@}yV!(;n}i_Evu7_zvsUe(I4Y_51epoHtJoUHMavee|^7c<$_@JlZ{gq4a zul-XF-kQFH93GFRoIAR5kMgJQoW93CN>FXjHbR?a>A)&6O3mu zbmboHUwwxjn!ba4bw2Qxre{n zUwd#U?_q@K$s7@Xnj3hpv3%(tUl${nR_npS8=osCVs8Ie4pglc&esp4_@} z^j03u%Fe3vUl-5r`VJgQKk3TRhqrQ13ZL#Nr-vqveC5p3L%An?lzX(FzRUTu-g$I~ zKAOJMcRWhZKIM($jcdsgmU`}R({ryY0{&i-mnFKK%x-P2ym(+)YB`fHwc$kDb3hnjy@?p^!#PP%)i z`Lsihww-oQJLKr;j(hg(k)z~SHSLh2Z66Lb|E%1*_U)Z?_fGR^ha7D??Vfg=H_tn8 zsB=8Ja^~Ih9gm*!^pdu{boU;d6^C6P^jSH3N!vT^o_3wLopkq3^J&L<^SlFxI>)0cmw0m2dynSqp^xs-U)Ar@BS*=v zYT6-3ukO=JJLD+*RZTnO=+%9CX@?wzzp8169DVk__fFq2Z}0u&PkSq$xRm?*p3Qk5 z|Lk|zOUk=V>7R0I&%39+m0vl34}R^h9J|)FzjEHkulwzxK@~f4`G{nZG*! zqWo_B9q3>ESHJbv%CTeK9i3hUm+mQlT|IWK={r(RKi!?L{K|PBzxE&H9_{nJXxd9TJ@irT(LUdSroEKY zLst&oy7pJj`}noLa_m~ye&gDmcg;0V4_*0{JKcpx+dICym+o+=x#sDi=E<$*ns?vc zeeTZf;m~%6v%1&3`>SuezOTFHywkkv9+>pS}?=WaFMy!-a_QSQydq2^nj?%uJdXKkGC&3k|K zZP)j8*PM5ncYpP5*Y|bToOhacfAwwG_t&+1`cC4V+xz>|J>~R$Z=POK`Y2rUaH#o~ zr@MFT>7A-~nm^r#Z@a$JJ5}#ApZ4il;mMP4IrpaPJM5SzN4cZUlP5>rCvWOr^KCEP z+ph2Hjydl%?>^o=a@6-tck}k{;~VFD^X#5#+x7i)AKp97(>v9+>wDUVv%-_( zQF4_0s-_+1_US!16wdx?PA}=R-?_S%dhNU2v!_pvlCSEXJv-zm`Ks>OvqO%OH-$&x z?VYDPTvGS!>5-%4P2o{^d*|s6XN5<(+dEHpIBVitp6=eqC%)zB&Tdlo?CG86S9`pJ zvV*2P-4joa(oYJ9nrnHwd#CxdF!-TJn9^e!lC3>HSLh2>we-} zp6==0#J4=%KkavT-`{6%uHE6At~-fK`{wQGo#yVjZ{K+CN!y-#@MyX}D^KruzxlLt zn)A+S4<2P_Rrl=KAxFuZCcfqAp5B8;;q0BKJKU;iha7#@o_E+seNR5|El>Anzr&v2 zvp46vy?H#Ecy2GuScGf&`e&1a4?yvrI*Sz21j&g4v z4mD5S)V=20Ub?qk-`5>;-f7-_ynE!R@6FS*y4UXJ?cK*W&iCfoJ=M1B`{_Qscbcbn zs%_Wz(|vgFG*2(7`*6n$$`hA( z@}}NxzU`%Z+x0!|wA?$*x4m?4yS}HLmV2l9wCA2V-_bNkdcm;Bmaxzl$Z-SvBEFXisrr(Vj}zPaSnJ1I{)EpL16 z&VJ+Cecgde`s{bo-f5n`x8?UczxWqQzYBD_r<~rYroEJ>{l=$z%0KOQct3sLY0h5K z)4jx}{g$tLi6giAUG9(O?%SWfs^Ja>4M9CeOI;Z{vO=l1NkoI6Snb&f~jn!=;zo#RpS&8MDo zJlb}-!=vP=b36*y6dpD29FLk$9v(I49FLk$9v(I49FLl}H)jv;9FM{^g-6Xh$D`)$ z;jD=xZ#K>^!R8Yd*b44>jl99zNyVo4RjLKjl~N?4j&5g-6Xh$D`((Pd(>& zwC(zydd~5vcan!k%{j-T=9^DF=XiA8g-6|Ujz`TW509F2jz`TW-+15gXxeoSkET00 z97^7_@xJ5Hw(ooDIme^kx$3=V&u+`PTj?i-_dVrs+)?sXTaUZ7?ZY>YJG_;9QuuTy zhf50Als=q2xpn2P_Si?gW506l;n)7kv1?uXE0^}y{>u3s{MuhR@6toLCtbN`_t$sf z(DWVTD+iC#L&;ZNdvIvmzsk`=ufCJ|M-?8^@^3K^g%~OvZ6b?Pj>78nN$2*U5sh@Jc zzxuS7@^#l-+Dp0n_NjN8dw2EEdWRj<@1N%GuRguw{-a##r`+$`r(Vj}{>r6yQr>n` z@7ejY_WbwQzpi(@YtMH)n!9g*^&NUiPv7xQ>aSetr`)^tsdt)t7tan#j-KZ9lAi7* zKJAmI-f7NW($l@fr+xC&JI&d%vV*4knwzu#yuRb_Zr*=4-aY46@9dyyC*9$#@JZoM z@AS~rCvV)Nciyq4UGk*fv8U&}d3tE$eLwA;^1Ro2+^zJJ!l!%6>7j`uUpaV`9!j1x zaVckqJ4(K4>N&@wZT~7q4}I1<-eDj0J$du?YcFxmPxnuGzqk5lzmxV-?(bZ=)LZ+f zoOyeH4}Rs~QFd-`a)r#$t{+tW*$c<1)sTkqzY zKYhnMzP;l+y;Jp0^QZgpZP#~tNfYnf-h1oaT=VNY-f2Da_U_~1lENjWm+mR2hbAuN zr@d32cTamOzjAyBN)IJp^|bf8cy_Jr?|^R{cX%uJr10tP9Nucq9^QHK@YckW!{eL6 zTi0IWeE+PzlfKir{hRuGc$fF^O;36D*51l_mmbPJ>B_lJ5B1%C<>;BWhqJC6J$Nhk zRp~b#4qbV3kM_N1f4YCl`@Q7ZwI-e%9=|F*wDnFoc*v9JW9Um+Ji&e z{>piW9_qXO%DIPM`&T)7DDNgsT*|$(a#wroqu#M!xzt+u@$nyUnMambYEs+g`eRr}?zg^0w7xi8Fon@0Rvb?yp@r_wZ|f<=C~Z{gv}Re(fi2%@fCWSXbVhy?2v8?XCRE zJ^EeiJLd3c`VR7ygSW2z#I1Sa{5|%mcbc!e=8{kEn_oHi@N0kN*tK5mr`~Dq@4=@X z?kJp-RkS9lwiT-+@O@dn>Jl(xxPw!N{)BNc^ zeB1S%UQ_o@ecJbqIp3RiAMYMH>U;C_lF~=vnukNplQ(s*`L>ttZP#~p9?erf?VHD2 z={KckF6D6T4rg`GzVW`>x4p!l_SiY?o$~D+@8MDUNfVcH@2uRTz4e`yOW(8huX6NI ze~10b(KBxkXI(k>@N0kN*tM?xmGeISYX7vi@>e-}D1Tql#HE}a?kM@H?%AgubIqq6 za`#i7xWtpA^ik)@lcVmFqv`J4o<7>{a8~!4r*Dotsrly9PRrY_?`<#Lz0-W!X?ffA zz3rvDcbZ>!%(Y$L-Cw5o#Uue(kSZdUx%w9PgO7 zhqJC6J@fW()|I0NZ{?m8KHXb>wSU@sl&6pS?{aS6c<%JjHHT~3cDbYM*^{GJ@9x>N zk6yjIXU~38^U0@t-GyTZU2{0AchO8kx`&6uCpCw+wtnNevx7&S<56=dH-|^*q0W;} zxp&}D?kG7*p41#3bD|}OW=A7fL?ln&zE_vsPCvWOKJnDYR;kcvD?cq@FO%v}N zZ*BX&(_eGA)Z>meuHDz2#y$HT-m`w%@2v0pyOU3QDfiB^IPci|-Q?Ha%Dt|4*7p;4 zny0^mJneBuALUxV-Pi9(J1J+^+W2%&x%XGU?mfyq+UM_SJL#TscCC$1_mq2o^=v9)mvZkvi}Q}X-%Wn)t=#E5r@M_$_mrpaZF$;DdD~0( zw3qVJ9r(1Da(dRrr+do1zxuS7@^#nTx|g_=pT6TAd+#NmdMQ8MflqrWr)O<^x~JUx z_{OJu%GphtdMRh8-Qk+9JBdrV-%Z?U?p^!O+FtseXMgwlj^D+ne#+^cYT8SA+fTie zvzP8`Zq7cvlQ?**dHcqvyLXyTJI?XmOL^iFPu|qK&9}XDZ@a#yotAsYp1yPY#HBp- z6HngMyY}w4yLr5O&8OaJ?sw>;=}vAYe7(zI*0;w}($T_onXK(|2y4xRj@U;#;2Xe#f5Psd}gR(|!1L_bPY# zPU2gh?(28cN8KYweQ%!LskU9;Pxs-y(>y(^d+l!C-u=~kr}=f)T-){Cefz{aw_kV6 z*?ZR>-nl(oQuEEHotC#<-`ifgd#Cxd)AF|Kd)kAu!jmW8a_*@2Ql7ZPlQ;El^X!=; zPinsTv_noGb)Gyq>OMKj9d({OIqH7P)7?Av^iI_~&9{B}D17sYYx#PIL(}&-hez8T z4o!T^)1BRq(j z?^*jRm-esr*-OfYJG_;9QuuUt4sSJ=JU#CAbw2Q(KBxkXI(jZ=I!CEE9V}5?XMiW*0sNKX@BjnoZrD;?YExq z_Pn3e{OZlE`-yYTKI*&uquitY^?RQEj^D+v?>x$%zO%l^u9bdLc;8#j9d+M+<=n$x z?Vt8e`SttQwbD-tpYAEAhbE4E<>0NS{lurdy+;p)Po5lwxB8Ap;q6az_wguusB?Qb zt2sQn@~0g8=xHC`{p86}`m4H^JUM#0?_TmL=RM!aQQwnyp8Dh{J=D3qIp6U~-A|qz z^bE@I*+&ycp0xG3Thm_3>2pt>9EEQRkHRPKJn`gBy@yBLPq{gJ_wZKt znx_w!JUI%V)ZFSDm);|9eeUSmgG1N8xzta&`^l4|?5*lv^5p2c59eO;DNj4(=-M}z z`YCrmd2*D!q~=x+ho=2C_YU5=?j?>r?szNrr10w<-kSPr&K^A8%Drjok<-UpxnEWG z=;KjxH09irx`#*UHE*u*+^y`aN*_LXauoimdIxX4x=)WidvcU}(#H9YN7=O}Pij7S z=j^4NJ8CX@a+E%r@^m+kx6;3=?9s=gydCv^{xy0_-$k|#&~Uh?oLT=L{7{8jZ1 z9%a}5**SZt-?LBL)jaih7llJlb9$%x=sWb$^nSWu%};y&uGC+-)K9s0@$e`)dYaR- zrX9F+PdPpGS)6z5d9Uf(YaDmf@1}g^=%eo8)BQAOFKOB{zjE&3Tfg1eX_|IY-uBWx z?WMf!q+ZIsw{q^`*Z!ki>ZhFVJJqz8^0eRhXWgH*!{5>N;H+z}aaZrHcly0)FXd^! z@u&C3`#bP!uW?uJt;ct+n)XueT{zTte7c|J>?KWm=2y-=eCns1UeeS%%}@8?pY_hO z_SWxNxo3SBJLu{A^sH$IF5Od3?^M%X%Gq!C#JOkh9(RpMNvcl%TBD!=y9_oY6$)jQ3*Z|^>L=k{=DyTe)CYo5M2@}%aQ zPdhDdyS|_9!F$IZ4o&xzr=EFxdPx)S+}?ZXo^txWH%~9A`*6QTNGF?x^$R$x-)Pp6=eUr+2E}X};~#N8y`K z9Qms49pBeobKbFscW$4!l&5~;$(wrD-u-qrk9V*6)H}`n4t+G;$*rje#~n>M_onVQ z-}chI?fRZ}TJ9Zt_t(3*=1<=-k8khzPVZE`(|p@^AKtk=9NO-1R`;5x4`=0`6yEoi zr@MFXiBEazo$_gi9BsRB=*pY3XD?~uQ_fDi!=Z^!dFyevwmo=r_HaoPpK^BE9S%)= z%3F`S_3B>go#yR(*h|{_-09;{a+JJj;#1CEyThT0PdUA$sh4u^Jj$hh%Kg55>ZN?` z!?A;sqo+B&q>t{UetOS&>ZjcO)u+9br(Jl|+-dGUo*k4NJgV;H)9+4v`@K@{ zG;i;udwK`H-Qk+9JBcGl(|hUutekgG_voE!ddE8}=N^9TH}2}a_4v+J(_YHgU2|=( z-Pvngx~H67^jVyD?0K*0+G`wl)bFNz<>;gC;nV#zXD?~mGrw}~;ak7m*=d?~Qr`B` zJ?*8u?WA7Hy|;4i;n)77Tp7Bm-5qn_;oLF09?oj6 z`O`l9>)K@>ZSVL_4{i6vxo1xgZTG~vXHO4p_r$qpPw!N{(|p@^AKtk=9NO-1R`;5B z-`;)h&h6pQc89aN*F1f5votC#<-`ifgd#Cxd)AF|Kd)rHQ?=+uw$myfb zlW#e9)cYwMo*Z?b9OaHWPo5lgpS-Di&9}XDZ@a#y z9ddZodGamij(R`kiAy|rQ|~t4_R_uW`kr=L?w#h_9{0A>?(Cdu+x5NeC*HZeciY`O z-o57Oood_l{d6DRJN8#O?=+v@A-8&uyK{RuwB6yX?lteeJ$;mW^Khtn@}}-J-}chI z?fUMWba$S-bM~F%(Z=~s59MxccX)Gn6b^NcPkP#ew|bvDdGl~6yw!Jmc;|R4ycLez zKIL#$cq^Q9dvkac-ku!gZuQ+h@o-J)!zJ%L@#N^*gR`=;Dt-9mohP0grH4AVheNre zE%!Zna+G~E<=n02@o3|H$Ge|AIZFSkdIxV^_fwCY9lVwMRb`Jp9wkRp&ONDnc&q!| z$*+2PD0@xeQTXJ^QTSEeOP(BE_u<@2o*bpWs(Z*gGaraa&z|X;nBu(hqwA}pLn>Y^x={x zN8zukckn2?_T)*;C-0oSH8+<$Im$ap&8;2|P5UW#FL`n_?Kw}pbG+4i&C`cVo*ac= z)xG4Mv!8PAsJZ0HQTk2cQTXJ^QTV3tD17oMZ$0kTw3l-ClW%?QsCQCs&fYz|)xA^C z9z8rtj;^`6m7L1_vY!L=E<$*nx_wkk|#CS zym!p|jyKmlJ=8q8)m-!LufFa2zV4dyPV?^DyU*RZJsjHZa8~!4ci-N9?#}Ju&~}Hj zy4Sq>t8cr$ue;{F)4co1x1DxRyDe|KzMt;Fd&eFQZFe}Ud(FGQ`nK!)x@*om_VCW_ z&H3KE`}m~ZgL7^VhqgPM)xGB3x2KPCZypXcPu|qM=G$Jnw_V@UPRqU1eA`R+w(EP^ zAy2$>d-`a*!&%*Hp1wKqq~@DXJ1t*#Pr1hX&UdDqdsFxA-CytKnm>KVJifi-JH1o& zPV=Yx@NL(3dZ+50=G(se@Xqbw&~}Hjy4O5?bL2_QH_wha=e{@ZK0c}U;GEmTq3sT5 zb+38%SKoGhXE){Ct>&9|-=03oy?Hp)Jb6?1ns0mQ-gbRYJ1zH4^KCEP+ph0vr{&&h zzU`%Z+x6W$zBlha-aT?O-N{k-Ro$~^ha4qO+Bo0w*0fI!k4MR^+)?iMq>X#@&byE9 zwEmlZ=kz_k-^xx>_;gP>Jv4FTD+iC#L&;Y??XCRE`8(;MzBiwG^qmd&}4U%JCk&m3vb7bWb@wG;t|kdvIvlBVRdqlpac+bmiQqhx(qp`R3U% zN1pU5f7;{y*7Mz-9qY=uhrilSJ?D6ocayH1`}9!X?XPn5Q19BW96fj|_oVRY-tw#c z*7MyyeOKaA&JK5!Jn720PY?AydGpP)V~#xORsOWc`=`BAetm~sEB&PK=}vAAkHRIr z%F#p9KKaVQqx4Ynq$}q>J=FK+*B%^tb+`4oqtALL?WH`udzC-!@qX)Zx6)4vpYG1h z+ndKHZp{un~_>`v}JPL=VoI7d`kHRHQT*^;(;McvCW7nGcDR+PMX)on%H}y{Q^iJA= zZ}-N%slLA>y_<6SXyQ^%4^3Rk>78oYOZn+OeA-JnJ!|9JoxQ}RoF1CEl+!~W<<>s$ zHBEadfA-$hchYyHy_BEsz^{8N$F4Q?Q||ui(_YHgU2|>E_vFdZN8fQDpZ3@LDF<&& z-;r|n@$e`)nsV-F;!;izOEsehV#*Z$di z-p8kR(%n4XN+0Epx3;_a^HlOy~Gv|Br?&IAfM}2ReUQ+kroZG{p z>7Me`GjC7tRK3%D+IP>K@6Efv`nKykyUy{}#&bvM-+24J$)zf&h7pE>7H`>zBf-VDSZ^Kc{tR3%hTOE_ViBGJI$Z&!?#`E>7A-~nos-m ztnlQ?x14*^^&NK1lcU^G=gE_!?vpolulcr@?rqoib;q1{ns*=X9y#iJ^YpClwYzzH z_wkMMy?J&|we9+Tx)1N2=INbk+x6Z1zT>U#*~2@>KYC{eO?xd*cXpGe9yvv6ZXefY+4 zhqrQ13ZL%I&D)#DuN*u|4<%pqw72q)a*y`Y-|t=fwYPHYqp3%pxRldFSME{%^quuR zcCGZ2!lyeq9O@jO)IB)ocr z{0@HYuUy()`zyyg*0sNK-p8-~m17sBhmxv?LB*s@36La;8zaby7n7)_1=1? z-`n=u-R~v8?yTJDJL@i-)$eh4j`!UjuIbuq+|_&Q`THB6?kV>^zVYdva&}L3-CMcz ze(I;(JCAZ}pLZLd?kQ&%eUwZ6l(%=U_Sjvuy~9r9uHIYE?>9c(*BlPzeQUa>+7Mem3vY!_3jez9-c9edJl(x-@7}5Ro_*SLPLCWVU)8xTNOo-Q$k>-hAtEw?4Y-zW4Fw>{pJSd3!kP%B9|;eeWi} zzO!X8bDsRVOCKI3U$ynPTiZT-DSW!OeC?ld=IzsWt=yyi&-y!j zADaH&l(!ytYuY1+$Diuee(Q0!w(o;)9C!2faMqP`55M+T&b#zb?nzhfS^f1rIBWWj zl+#al=chdV*7Mz-9qY=`gST=|3ZL#Nr-vqveC6O#dMJ6)m7@=D<(?Ei-BV5vO&s~k znWu+xPr7pS;jP@0!l%1)^Y-TPjq@FkUfrRGvWJpe+Z{e}Yo0jvt>&AjZ;sq*4v((9 zx#YczPs$E=ytUoU7nfohbBJdt;gNU9?IRG z9Bp^FrfsL)y`T7$({FdUrfsL)+dlWU)9&n8-Lp4upLlXBeR90D-OVR|x|4WvEANuy zt?j<@ZKvJ+PV#N1-MtHsaP?c2Asp z_VmzpPn>)9^w4%U2ao!Wx0?4IZ?1WIsCn|F@F<);Ioj@UC_L&MZ#D0`ed1G2|MY&! zUwx}_s%Cm!}e#+@tSKgexckL6O za`#ui?ltb}z4iQeG(O!^?tOgY(>>+vp6a@{a_RllPq}v<<<>s$Ha^``&Mx{Wm-;Dh z?_TY(yJ~xfoyJ|gx1Qf`e7dhW9LoFFbWgea_NkZhwGY>J(mmzuo@&}ldD?G$x~Dw7 z)AF>J^0t@mX)oocJMd{Q<@8Q9?WMf!r`~Da-bwfLj`@{y51;xerRiTDNnnNPxq9kcgRyO<*mnk)%FfMk8+Rp*Y8O0q?}!A={wJNjsz`s|~LBS+z_>F(T~ z9p}lDTiHRmGJAC5EQFtqNYvLZw-M8mEQl9SSn@>CB zXxnM`v_p=zopw(<tem~1?VWT_dnr#lXS95wv+dJu=_EMg9$kEha^Rz>bu6v0~JLG8U zJBLTP+owEni6=)>|7uPTefB%-CH1>-tt zZP)j8$DDVXcOUN_IqG}!^sMf+yLo%}@s0Dnd3H~=?fQPY5AU7k>78oZ_5E}o-aF0H zOX@zHb9*?n-Qle6HBa9hc~bMur=6C!UEk9loE4rt`Id7>y_fRDC7!&gcbji}>E3pI zPdhF5PV;Rq-P^A3X{Y7hX+G__XU_NL-9Po-PyLlU?LWHf_tIX<-Cup$OZmEMF72h< zeLOr$j;5SDnz)qHLlc*BdZ(K9QhvG*-}ZdBXQ%1fYaDmf@1}g^-c;Y;lYIJ~l%MXv zuX`)Ut~K>jp8D`;;+*4CkNc|YPUEmP^d0(E_EGM5 zYrDfYuHDxixTNWwl&77Rr@fT7y>w4|DNj2sPkSkEd+DC`QhvGvzwWIZyVlfCx%;b6 zd#8DO@7a6lz0c}9>ATY3L7sXkr)O<^yR)})@Yd8%x%;b6dnsRc&85ARyTAIhm-2Pj zT-r;y`>RiTDfjN9+}iiM$)~-Pr=6Cky_C1TbWeLJXXnv7J67-7!;_=rNgJ2$QqwFPZT)LB^X`j4t=}wNamvrUar-%C9{Mv&&@@~?Vdscsa56+stBjxnd-T5g`|FpOA zE5~=B^icAoE9X8v)OY)pOTD$fa=Zg?<(?Ei-BV5vO&s~knWu+xPr7pS;jP@0!l!%7 z*Z#`+J$k6`_A5uvygi(CXybivJ?>WT*uy(d9^RUGa(F!IJbCBztt&?l-pV~Ge7ZY_x0OI=`E}mU0_oVRYP7aq8E-AfqCpU*j;gX(m@Yb|X4v$X?mo)Xr>EV;YB~3kYdibXB z*0t9--(S}|-nI94*uy(d9^RUGa(H}FI26vF+`4k~%-h2yHE&Ok+{%4b`mc*;cYOyA zrJr===)+sNCxuVmubmi#7Te&BNPj~0=R&)07&h6on znzyItym@-)$~TTXyH@T=;nUqYyw#jNymP$oc(ifct?sA0x#rW(n!~kse5ZG+-f8}H zAHMDSPA@4u3fFw%$X8w8Vb45yQ}>!@&)jLA`lmbasCS#EXLYaL&D*=bdhgh?`o8X(^G@^h&567|(!K5ao_1R9o#xwKy0=~5(@x91(|p@Y_qOZ%x?|2e&AY$)w(I-4YtB2(yTAIj z>-)NE&O6Q1H%Fe-eDi6i9;$a)jfPu@7U9Kj!$=T6h3L=(w!Vl z`{XMJZ$0g=yg7S+NAhbA4o!RHiA%YAjf1zQo^w3v9s8>sJ=DAQE0=nwee?Ey2fuRg zXzOve(oYJX?#|8Io5!DW=Izv;(nHrCT_q@K$s7@TWOF)P4Jv zOT9+P<(?Ei-BV5vO&s~k!K3t0@}w*0K0VZT`;|+*wZC$2>K%U%9`$$FuUzV_ z{gwNozr)|R{vL@-x%V4q9=|I4XzQ(Th}?VdRI?CGKH zo;dgH>7A-~?7i3S=JD<|pL(ac-=UATJDk@;<+`L>ttZP#~pQqJ9KzIpdo-*$apcg=aHdHUwalbUZn?U1{l^28;cys3AaZ+q$9 zc70DfE%#3IZ7<#1uJ385<=$z&?WKF$^*!yh+&j&;y>xH8zNej*d#Cxfm+o!X_q5Y; z?=;VzIr60Dn@>9}Z@a#?y>$0Z^J$0N{gfvz@#Iat+x+Ps{OPWFc2Mr9^W@1<_sN^O z*L>Sc_qOZ1cYMdAjrSezJ|2Zjnz)p+!yP40nz)p+)9!F+;!{rVRMXzGa=s_+aYt7U z-kSQ)%6TvCaYqxEa(ZauQce$jlw13}*R<{VZqGhBN{*(SJGyf4*3?hA`>RiTDfjN9 z+}iiM$)~-Pd*@MZ?fc#2(_YHkPU@xHd*n?XMjBR{H3AH*e1lIofjWXzFpd z!e3SP=;N*2SEUc1JUI&AH1W>y*0c|I^-gcyfkW3mob`0ay!Y^pd-VQgeTTmr<#)7l zZ%S|F;L+COzVhbm*-P4Z?kGF<)9^ibdNXydq}?vbP1 zt-dGUa_%Va;8ExHi6ghJ{lu}i-pw`7K5D+@>FynSdZ+50=G#7f6ux;l)O^d+-8=U5 zPSrcjpYFrAUEk@Qs&|?{-G^_xzSBEZ?=+wG-81KV^X{*{?fSm%n)6Qc?%TW1-MKv+ z+U{^x_w3=F<59Sz=9>4;%C8*zr~KOUE;gwV^8l?z0-W#r;oxn4~Lp> zdAfVYp5Cc?r}@);__pgiy;Jp0^QZgpZP#~tr|O;N)4qG=d~e?U)wf;W*IjeoY2JN% z_qjW_heO*P&gz~$ymLGXm$Y%G_r#}s{jRm&xT|;f?EQB`yTe)Cvv0ibtAF-8?4f*zJ$cfV zH)p@@w;p#i?WX*+cgpkb+Ji&sue$c&(6+yF-l2#3ZohJ=xAs@=O~2#sviJAkR}LPf zhmt24D7{tJ9vs^CSI#^1P~YuW zF7;0P=Ix*L4m)k%+$m4LDZAFSmpJx(Cr5oxKJhJ2_w)|Ad-iZ>yTe)Cvxg@~$yaqR zd2+PvH;#ML&&xY}=j;A^cqb|Er#ty62XAFBDSW!OeC@9s@4;KSCxuV7m@4t~{Kz?Q^G>JUI%FlCRo&+^uaNe&yh;Yrk>ay^rVK)V#g>+)>|~Z$0kTM|V^I z+3&FD_sCJ-n_qiy=(Bg(V;?1NdX+!z@f~Xq4yB*;Dn}1Z`{apBxqFR+x1RP+dEQ%l za47wzjZgQK`@O`aeC?aFU-#*q@~1uaQTj<&?$Q4J&d>jX>+i90tixNmCxuVenz)p+!yP4G^|be<`1PHY^Y1|q_1%8u=)qgLuS)-Q z@$9~?cTRWxJ!`*lzT;89i*K6xDQC}ja;rH!y7K1mX@|QN9_4ONo^<8S*?Yg;;mtKq z4>iB$?%A`GwDIYl@~iLA^R7LdwQ;ZOo_0@j|2_D$)9$TDA6mBbj@9#73d-CqtyVvgK@$T8fq3xbH_w4Ce&Dq0~qt5Y7-A}wZ`_v;(yz}PSL(Q+b zd-m)kZG5_?-0!R$J@fW(XuHE%-Lr4J@5y`DKJ~~OpYADV*Lup+Z@qSB$LgMa-Z{ul+~4NBewl zQufirk*^%Q^=iNMe7E;^*qgUEkAF7jUG`D#NmuUC{^>jL*7P0Z@c32fp{=)a?7&;O zCxuV90yZ@!YM6Cx^$QDfhi`@Yd7bo8s4ZRxbVBYk%c< z2j0qkRr;@sXZLlzbGqyAS^K9Pyp{Kp!uy_bIPNIbw2Q zxrbl-E61*N?XR5o@oRtO*tM?xm17^?$~`H3y0`plKlM)Y^nKn*KILhb+&%K9^w5=W zT)IE&owVcJp6?<@$x(8Y9CdD=xRkH`mHVu`lfE~7pYzsFynFVkM}Ae?JM1QoyVbls z{Ao@v>FHkL(>{6Xk)!ZeHSL_{e&2n2c<1(TsPE0YXP&zi4o&xzr=EE{Jn9^et{gl{ z4|R@58|OPc)OY*DwcK~_+BcrNl^rV_IUXfP$(zEX@b)P;XHO6H-9B+G_uaepjpyFf zyY}?SQSzj4sJWJ>d)i5S%hTQOG@o|J(YDj>X@?v=-Eq&JJ#v)%s-~UOocB+A=9}l8 zr0&C!qvT29tnlP`lpH0$s%eKDP5bRm&s_8Fo$~JEt!>wL`p)g)P~V$hdvNHw3y-#* z@AS}iPn>)9^iI_~_TF3X=9*vM@lNZRw|Czj9_8LV9BRJh>3(&Gy`9Dr)PDq-Oby(zk2U9zwVlAyS}?`pLpl?>y9~l@7lvVw}(q=zWKD% z^0w=H+e>%vH1D0nlcVn0CypFVy>vHk@18w8IZD2&d-m**qvWf)ck0tS-Z7W%j?!B-^_=6;w!d=Tp@;fzzjCQ}+Ba|itasQ+`_Azw{iIhpdT81wUpaW|+Fv>E z?2-0jIx?pE$7_tnFp^sVg(NKyt?dqP4v)g2&XZ5McNzze!drc}PduCz-Z|cPycK>``tZr8 zoL=1JRI71?kGJp<=jzo$&;h>lbTyS9Gdo1?q2dKXV-Uf)c53_r#`vW{p86} z?<5b8!X;0R!Y6HfMx^vv&`V!Z)9|l(T1rPYTa{^>8Ttripisx2AnK-^o$mn|IHiJ~>LBbmiQqhx*?9 z+Ji&euJ5hK-Rhm>>2bFwN4cZqtFApbwC%4PJMdQSP3ghelcU^G@>N@pyLH`%qmNGt zhbE3ZaVdANaq!mEJI%d|PdnVL@Tl+hE0=m}f8}@w-pYMd`mc*;_jSEx8C_tXyW)xGl9-nV@9$*uL>sU+?kM?HUwi))e|_i5`Ts!=_1*r;(Sx^gzbgH|;@SPHcV2h>J=gw~ zV;`l5k}qAn?|5|Wb2o1fhjK^BuX^plp=rsQEsp%k!CSBWE9ZUuwSVQ;8l)3dUJ z*4?>%_2E9fuO9o>>b>UPwSV0!e(hGTa`t?;hePXLIX(1S?$`a=`&GVvcfCUoy>jr@ z)n9k^;81e(HK%7~2d(=xH)sF)&b4o@e7$deai88-ufC&tuetZ_Ki#Vy`@Y*3M~=E@ z4~N#ha(d{uT=gsG-O}p4=H7ST9=`Irzw)(1Ze9EE#l7b2S=mABe$5y6t9NS0@7rH{ zi{p-7-znaG{Nn3gIlHCRd(CTq<@Jtx#gU`#;p_fs{%Mczx$0lP!#?Wodd=y(XJ6cF zUc2m|#gU`%)^&$3jvR%zaz}l~*PR@Nx2`*Uan8#-XV+TXx4HZFddalSn7oBMUn9_sh(i(5JO()G@|d-tE>zkR3r{ypWZPmWgqn%53FdfkI_ z&%U^oulujxsrS}9b!YFYwL^}sy~Wktx&3L7Tk1nq6x2~PKduRFDAxGEFy4MalT06em({pYQhps!E)xG82zxuW7`*qix zckJPv+ZR`P^@}H8>fPnnUftKO@3pgX?<~Le>b`b;ubq{9XZhNrXN4y(zjE%V_bM;0 zc=Dy*U7kI2Xy}GYm z-)m>(-m!Q8dN;TH>pSN0>mA?ey{dPXU;FOEJGX~J*B#F4-tzR}Q0L{zm%i?rf896l zJv?gO{#)+bzQ3pZ^&R@=?O!?g(%S!)zwQ=Sxxeemxre{@KjrA5yj%JyM-Q!i@+(*T zw|#c4-nBPh{ut<_iK)Q@7lvHT|M9J*FN{x-j%;{e24YgzjExGw}&fTeBCSe zJ6Fy<{A=I5eeD(pUwZAqp|w}}YwyYzcg>5d-$A~5zT2}?y7;m zL&>kYdcNEL>K%62N6AaC+_(MLcg)+@_c(v;UHRh3(d+jVzxvl6JBzP-@A~x~yH~CE-M@0~;jjH~x$0NW_gUf5x?gj1S6}bbUw1gP_}830l)jZa${la@ z-G1@hSMSQPgVIAQ=Z+TV-2Sz{_;s)M>7iE+-n#nhe%-5`%Drn}z1Q5kcy>^7v~up~ zm4mll`&Z8U`07_que5rvdF_*byLathx$AeWy}GksT0Qd8+9RijN1c~K%J{=jF}YUwg$lXCL+5{>r(B|FmB{a`g2b_f{X?O0N{Y?v>L+izB~s=INo_ zORt>!^ibdJuN*yiEB8|Px;r;-ZytZ;iof=+9Pe0P`=9c!J-)Mg&haSy(&8#-hdWAM zdgXrIe|`6r=Xbw1wa}WR8|CGP>uAIN09?HG+%Kf@u?~y=(u<{nPL8 zT~>cbd3vw+)qCChE8gFUM|szteCccN$`|L{p6{)kd+BTM%D-~v?d$uUzxJ+tag~4i zUA5;NU+VXlXJ>KTul$u`*Lv+=Iq&1I{a4PsJ?}4l?OpleD))E(n)5#X|K8z0@uvUx zf4lv^_&-^1?f?2Odc|``;q1wmzV@zsah3Z!|B7SR>i3tYZ;rgw{POH9j{B9ra_m~K z{VT^lyp{V>dc|=^;q1wmzV@#Cm8kJfjPUpaW|wg1YQxA%9Hf9+lQ zEBEbp{ZsGooqo^W9Cwua(#3N}*|R5K`r5nluN=H}eZTMYotMAzSMIOh@ps@+-e0~r z@~d9oVb47IQuplXJGU>c^6D2)zSO(RvuBRH)V#fWb+4Sh@5|FGbsx^TJsi63a8~!0 zr*DqD)co@7m~-y?^7K*jfZ9~UAZgoJ$kR| zo#kKm;n%M3^j_6F%fIf!uU+5iy{dPXf8B>)yS~%2!dcb=T~E1rC*cb8|+ z9C@kvY2BvXI-4{%X|Oo*RJn>wfpHi{vPiv@4mhJ+@0IQq3aH3b#Hn1uYT?Ne%&?a9ea4^ z<;l@&zc_NM_qjW_heOvL&g$Os?%UHxxi1fgnqPU{y<<=BRlT#k_s#o`H-|@yb8enH z>N_4Su5$Ml_sZ8^K#1l-OAzW z?i_Dr2jy;0j{0s7hjPEFd*#W|*M0ZOlcU#n;M^-uj?!NWkHVKHN8y(i?;LMk``qc_ zQRjFod@20(4v*5aCoeT$-Z^`fb4SgUCr9a{mDk-o-b(*dWsg1{B}XggUg{nmb?=&+ zD^HI4z2)62PmZqLb@vV)rEgDOYQDU4_EydvtsZwPd?`HltA|7BFNH_p%afzFRSwy;nJ0 z-JRpD?0l;1(Z{3Y=ruQ2o*dT?xmk{^w8QTzjE*>J(T>a*B%_Y_KT~WJ?pZ%=gPhI*tL4c9^Sb<9Ln9E z+vz~k z>pLo6J?_@pBZtSo>ZkqH<8EEw2Y= zcWSqGKF#T&^{#XC+?Tp%PoEqmzp8uo?2x16S9Q;xo!8tw_w5(Y{Z-dH>=nlyg+ra= zQ8<+RQ>~p(^I!K~f7hq)*E{T?aQ4pY4rhf&x!YG>96Sn#I>)1MDEU%&6yE;ZoIUiq zXP(|t_w4Dv=I*&~Z@xUa^}0vT{POhBD{rp)z;e|?2)77S9Q;xo!8tw_w5(Y-Rhm?>BFJqS9Q;x z9p}r_D|H{vxjkH|d3$=V`KLYJLD~6KYv(oReR`;KJPL=BU)4Q(cF0lktGZ{;4mnD` z6dr}QcV2h6tJcnI&U>#tc$6K~`K$Mi``nkhXHVbx^7KmGhjVTZXN5z#+kcwVEB*C5 z?4i7C@4W7CrS93&BS*=X!lUr^&g%|`np@sI^V~~|UwPgC>38Zo$kF;P^2L37|DW;> zzZ2!Vuj-yXJLD*N=_?0st$lKMd?{RM^~mYruSyTS_Ta8PIFx?rmHSoy^*wmBzJvVA z!COD=zxJ;DmGkewf7-wH;85Nzy>jl;Lwzs*DSz!%GtG=w=aHi?%`LDyOn+^eBGU!w>OW!a>ZZ!SB`g3dMNo-uRS<)?O(at z`LuuS!J+jX+)Lr>P7YTJx0F7dJ-PMD(fgEt?S10N}El-cT zJ-PMD(Yx|+R(7sR|F3vWCeRwPPQuw-8P7f`P{K}c9hjK6dmix9}-{t&Q z@6--C>i6vz_wAkczTH{c74RkJfjPUpaW|r~TL7mA`WS9r#cC*B%_oyQNpoeR`s~p#R`d47FU~#u>T$QyFNLqWbMyA*@mH?+ zYyZme4oVLtzv{IIhpzoAS395fuRS=lzJvVA!CSBWE62WhdpPTrtKPSL@7lAE`fh*a zs(0;w%F#pp9rjm_o_TvX>y@kCwSVQleW&^>=lf9e_E(M`yp?+?eBH_6O5v8$hqEWQ zUO9T7@~^#b-=kmp>G!brY5&@TLwUFK%F&0naxaCiyK{J}IeU2L%hN-z{Nn0erQdSj_UpTx|LUDjcigl8)%SYW{y*iN`Yz}8>-!f^-`w)_Q1j$gbIY&3 z@A$RrJ3Z8Q`&aH${@SbWqkmQJEWdW?qwveaq2|e#y0`pwZ|(T*-MUv!-}mL|z3O$> z+^^sHcAxL@jy)W@?r>K3mUrLYeeTZf;n2EQUcKTgXUA%OdHSDnul?f5m#**heeKoV zJImLO^R=_?-m`a~yK{RuwC^`7TX*yJ?q9ukmjA0=zk7YhoOhOY-`;)h&h6pQb%(RMx4ipTzjl4U z?wa$CJ-qYs#+Vy?y7Vq5NyX$Tq@80s&BQIUMzSqvmy<<<`d3kd5+Aog$s_R|vn6JCJFweOxe-4BNuI}V$?UOIg z_vP7LT073!shm5yxNqF@aW+4KEN-LrRp-QgGK`||9Tx(`?R^?v32&hqRo^$xsq zJPKEO<>;HYhgTuwS^C<$@>j0D@7lj||I|D6J(c^ru3Yu5{VVs^ z@Ay0LR)2>*ymLHvtMB+y`s)sd!rPNu7gu+3)Vs^OSDqYw-8El3o_1>RtQA z)twym?(**8m%i?rXWuz~-Qm#U$(OQIO8>9!*Ij?d^4DE+-hI8B$9uOtIZD6um4mm| zzH@rc@!U({O6k?zIlR@}^7M=2ZY`c19)DGO=(Pv8dfct_m(qLXu03|m+ry#UQSz%^ zdvNI5zjC#6?O(Zn*E@V4THjIm>T$Q$9yvVzRX^>o9(U{dKKR9PH*XJTy>jm1ul*~> zE=mt2zv}97x2}Eo#c_wXaxaCiyK{J}IeU2LSAXqaIo^f0axaCid*$@d;woP~?$+8P zhsR%)9=dv0&O7u_-^-h~zxIkFzwVlU?YWOf*+ZS7l-tH*bIK6-WNM3y-pM z)z{uD&v#Uhyp(<^y}DOU4=s-T%9*E!axcAd?$bkkx4&}q%-h3RuN*z|_Hfq4`Hr`G z*B;(Ep1aj|d@22PheP4*$*qg4J2~pz<=rb!j=t`iuN`vKJ^RJgogDS9{o?9Qj(T@_ z_wY+!cg?f!9KY^xXz}Dr*(s&}SNH3#zhn99t~u|%-p%8^Tb>-HU;4_yTWg;j9={ac zx_Z9TcaG<7V&@y1oy7aoo+@!&$GKd-!Yr%CU>mL&>kYdfcsRAAWJ% z;jP?D;p^@k-fGSs-ucyE`&W*4;jP?D;p<*GJ+!#WSC6~3_Q>J!SEYxp-j(wXJ=FK| z=IyV&;>fSN=3jg6<5Bid=lD|himUw7{_1hJ)_0J@|FJ=_sa7f)gv#ZUrMj; zmD59uBfoOy>7m?9ublhzP~YvZ96j^)aMmkF&%8aHb#cDqQTFVe*WFzCYyO}5PJMrU z?=^=jt#_T%C%4w!xjj4ND7m%n&h6PDN6D>qcW%$lH8+PxuY2a{q3gal_wB0>hZg7D zJa=^67gv4fcq{uTcRWgtl3UjuzPM{{4v${nF;5Tm9gh}QxqFK zo;&*5gTLzQJKlA_?&j?2Ik$(i7I)3f*{}DCf6c#rr`}t;*E{>Dd#}EB$kA_iYv(oR zJLsX#@hBWh{;Af^YtH-hQ0I6Q4ka&zL(Q$c?$;f-+95~buj-yXJFmHW?%OY(dntP; zoW1k9!&%``?)J{>4tLesAxB^L+_Pto93{W1d-m+S=I*&~zj*Fe?<`Lr4kf>;d-m)& zU!Gp6`*6GRO1=~xg|~NJcR1AC^6r`EURwOh>;6x_Q{O?3)_0LF?%VtSly~@@ zDBpcm_w3mrN6AYUS9fx>_Q@AlcXE`y(#6%C9IgGz-Lt1hj*^!yjyvj|%FW@6UwPfx zMHlz&op-F>wO_pN_-}VspLeY8;Zb-zN?y7+-|^PkcTVp$uikYB&O3N3{8j10+dHp2 z9J;u=lcVfi^|kjczxv$K>+gWO_TW(ZrC09T{(t&Ad>>lBxAN+dm)0IRJ^ZVF+OHmY z>H0o;i>v#!f93vN@9=$SeMjZhbB;%AkNlN`x3X6XU-!!Cp~aD3Ie6=}f8}cb+P`w& zzEgeYc)rWZy%fIgmD59uBfoO+C_R*XsrlvEGe=(fDgWBz{ny@=zjAzs_0xX!$V>gc zJw4~k(?hTPE5|$_LJxXSrm+)?t{rZ0A*LUcl z?%A8GI~=+=?$&Gn%CQfRlB49M#Z}G@ca;39)gv!m`}7v)J3Z9*^5*T`vZ~51EUf*LMrC)mGzU|jLmHWM4bKb{a-+@P8 zdsqI-`8(*L+)KaZzU|j{k+YAIm%ei5?Z18J+y3kKn79A-d+2-D9?p8@s`qW*yY}p( zzT00p_wb+guRS=FcT2zJzU}+F*h9J7lUuJ`^{)LZ=Xdb0{ZIMV-aqwy>z(@U%GpCd z<>;a8m0mge@K)}n@O5_%Z#8ER?|gZB=#^g_cXqAZOX2HYIX$#E@=rN>D0`*fa^Lp( zuG%3-;jijmd2)2^FYenr?_YP|O4%!==Q}z2dN+?>dvGW`N`6)M?Aakl$xE*seRwPP zQuw-8P7f`v^6I_j-mktnym@;#>!%z&)Vub@RetT8!(VsJzxLe6TiLamvxj$X4~KHM zC$|>o9FMYNPj0<(?%_Y}ub%Jryl=g7)w}ku9PgO7hqGR}>RtO+&hOx_{VP|y*Z!5` z9qYA!<-Cu-_OBefC_R+?s@EPIy7sSJ?R?t5_TbR^4)QBk{I!4Oc*lC}Upe;St=voD z>%Q{W{-^wFkMDl%z4F(0ylc;n^~%wMw{kCquY2Y6(BjCi96U-7B`>{l?$bkkx4&}L zyY{c#|JHZ>`|bU^@r(1_zIKYc^7PSb4-Q>@IP2>9PM;hlFEzKkcg*{aH@7^!QupDU z+ZRWERqxufIIZ7XOUVi1=QSVn?T=C>6ebjk*a@75m*WEkz^h%3&ZtuOi zlUwPNmtQ$|ls(jWd2-Z!@}=(CyT9({@$M~8uhe}w=k{>uy2DxBTb{l-@>285*Urk< zuJ5%6XN4y(zjE%V_bM;0c=Dy*U4HG=eeL>QJ1h6j@@uc|YuESMS-E$XuRZt7`M$jS zSHE_BXV*F2x_Is=eSB$g&h5Ro?&k6CEl=-N*RJpESI*sPetGxp>7(42heOS;yzbty zr)OQ9@5_7t>esIC*IjeoS>FAtU%S3vcg=ZcdH1h=?fQP*HRm0Bc<1(TrRMG3yWY($ ze|^V0t7qQc{j2xR@@v<9c<1(TsPE+~XJ_f^`_5kF+^y#A;ho#Vp>-!m;Zf)IaOk)9 zU+wri?62>dvC@TfU^bH3ZdmljWsx?lOXoOkWLZ@>7uSMGiMl{aV49=h&uC_L&M zztny6b+7!|zjD`i*t_!P?Aa@Q<=I)ib!P{KN1fxBy1#htt5^5RYxk9B$NKHg>R;cx z?tIH#`+WD6H)qcty6$jR_v{z%`_=#7JJs@;|blu^s?%6Nicl+9_+&N_cMp%6bI#pb963r4Z{=PJ|5tZ*|EYJ@d-WaUC_76(&cV2t!qx7%(+Pm^s&fiH7^?mv3k)!O`lUs|c zoIZDyy!6U_+yAHD;X6Nl@2`98qkM1am2;mS>bw1wa}R&*UpaQI*ZwPK-rnDVzjE-_ zYyVS@9_sh)i>v(FH;2FOnt$!Nk1u5(Esp$K?$`a=tDN6~UO9N{r~TL7mA`WJJFfjJ z=Xdbe{+07CJ(PRtmHW2;pZbo!%l=ot+q?Gl4!L=IbKFtxSAFfh@_fg&2Zz!xy>jl; zLw&cua_-?j?Yp;pz2_br>U;UhYlj?NeK_mt`A(l4B`-C%ym!p|jyJbFJ+%1Bt9Q-W zMd_i=?TcGEchtM~i!*P(`rNIx16OzF_Vm%~-Q4o*qvpw%y0`r69{lUBd3I3lsPpnG z=Z>{5W59iz-4qbORt9#4SH%DG-e);Q;xwY%N`}XiC z_vMQtw|bAeb9*>+-Qle6E${x-uU+4-yXL&Jy!%(bc74C@n)A-`?qB`d_5HeQ&O6J~ zH|N~<<=w}ZdJoRIJsi63a8~!0cmL|wuJ7zt&fRK$dH3zQJ1h6j@@uc|*WD}k?K|}S9y!V#bzYtvb)S5x zd&{rAy02Z|Ylpme=l1kb-fFA#m2*eEYri=2_N&j`>YehHv*-J3e(e`m@0rJ=*B%^Nedq9~@5|Fe zul$v(U2>E?)OmSw)P3@$?%BJ)?&k6CEl;o1eK_a#aOk?jS>0QnzB%$z^UK%H%Ga*% zwFhT~CojKp?x^=FFRpm?kIhHX>rc&y|?b>@$M~8?^V~X@9bC3-D-Y$_wDJU+?R(#&9A)f-m#}= zU7YXBd;jX!uJ6}fbKY6r{i|QQzF&9Ed1ra|uYT?Ne%&?a9ea4^_Hd=<&D+D3zVht+RnNQj zyub9?gF}C{TRZ>vPW@;8-}(Rj-~QkKpSu3_|BZdLzJvVA!K3t0^3p3u-@HBC(rXV6 z{dD)+zTf?Hj~?n>`zuG!yggj$m4~y|Zsqjr?)=JMIq&1I{VT^VN)IJ3y>jl;Lw&cu za@D)`uiRh1-%-boOhOYAMYMH>ihEatnRJ5d3*Qq zi}QVXc3*Yv`u@5P@15o8z3STa{dFJSJIm9vy0`A;?cKk6?<~J|>7($=!=dIs&FPi? zyWe^JF7x&M=E`6DuN=I!zN2#bb$5Q{ublVsul*|zXXV|c^opx{<+VdzJ#uvM+)KSv z9Ql>Ma_m}P`{tMDJ#*wsUwc>n%GLK>`>&jN`}!W|ue~dO<@`PPYrnY4*++lPv1|RG z^3Jcn^L5X>z5lP}Uwc>n%6;LVp{VVt1%m4bs@}<=yFI~I7v*Wz{ zmA`WT)H{3+%DeXDOJ93ezBuQ2l<&1CU;5g+@>j0D@7lj|-@ZfN@0BOFvU64Xzvf?e z{rU!Hx`+^=$Wf4%2j_EGNWYfjI~4qEqL<-dBz-(&y!&TF52 z^tErkJo~7**W7*k*S+Gsi-$+a(bt@wl^wM1*W4VQeUu!1&FNX$LF<0a7x!21@Gko( zIr^H@L+M+&qulXm<=m}{uY2X*$1nc%UOYL<`)K9d(JKdUz4pK5s$Y41Cp=o*H8*$l z^}hSxa@Bv$`L0iUtIr*MeW!T#N~`yp*FO2Dd+yn@zx3KGj@;^ZxnFa0_}W?b)uWFt zzV4ORE4~P104`(%J|1D47yUWu<&68WrEr0E=9pA6J=Ip(@{ObFT zzwVl&e^vMGz4PhaJ^SlBuRZhje)sCVW6zFrd$>~b_U^5_dAxhe(|gsm>-*X--nqSZ z*WEncz2)h>>e}_4{mQvp%`fl%)vsOOue;{Fvpjus?dao#oeF-Pf+~wX<^X zEWh^Ze%-xt-@ZfN?~$Y2QRn5!QTNH0y0`q=tNYsZy>`fpcWzG~U3WOEd&|=|_nKFK z?Qk#k?((&>^0n*x+N-;F?CCkTH|P8E^ilKVOWj+3?bUtl`d&LL_s;U(yYlAPac*B6 zx%IVg-roE8;;wmd?4!kzqwvb~W>$<}i=iJ_X?kIQk znqN6~t*?Fa%k!SOU*+Dl_d9imyK3z?Uw*ykKKyG=uXOFzz4j`v9dfk#&Wrz5?)U81 zJ9YQY^0h;bdZ%)8_~OY?_)oQV$k9*t>D3N73XfLK-C8_3>R$Qcf0fs}at1oSLylJen%53F zdfkI_&)!_!;Y!`Jr{{cmdgzrmSABBywfD;NPU+gKd+k+TJLG8fox`Kt?LW=wm9BTz z-MfFy`#t;he%-yZeC?2xUzquyKIJ$w4(DEU?0D^HHD{l$HI=lySYR-bpQ?%BhWqvWNF^Br%kedqM9Ib8L) zTZ>-l2#3Zhz&f_if+1_Uxm+ z+keW@L%nNXT;=q+qvWMm&V72Q@AjW^^ic2G7w5dZbMND?96U-7CBN#m2ZyfxE5{DJ zm3t|C-7BYu7Ds;N%+o`;mtHyg@K)}n@O5_%Z#8ER@4P&`wRm!P{8j0pt9Rwtfwyum zg|EAFc&j;kc<1HK+h2Q&^R9jM$<5oFTBbw1wa}WP% zzk1H`DDRdQS2;V}QSz%^dvNI5zjEH8hx%^+DMt_WZh7bpnkQfC-tw<|@UOe(*;(q|@@uc|Yu9&nD(7xBzr6cbzjl4U?wa$? z^7PG-mzrO`cF5hYytv}YmwI>kwO9AG>wE32+&jy!y}GYm-)m>(-dTR_)qU;ye%&$W zo#oxX`nBu(b=RDCmUsW^*RJp0tvfmDp8ewLPL6tadH3w;lcVINi~IKOch?>~oR#}k z=`S7*UA*tt9vtc&`zuG!ygi)t%2n^$zjA&D|7ri)gF|_@^vbzU5A}WdYYz_n^)7qt zqvWNy<=BC@axaCi zd*$@d;>fR@d3q@K(kn+F-paiczV6Q9t>*0EotKBV7Ecb3zbZX+^{yN{@K)}n@O5_% zZ#8ER?;Kxu=gYtD!CSBI(0k>tJ?~bJywp3(*Urjccg?ST?(QvLz1Q6D&`0ZDdG*ZO z)3Ywl_vO8R_1E23Zt=eRd)M7O-o54Nz3STaz4jO9`||b9%Ga*%wYNCmm#=qLzIJ`T z?zy+Tcg_1=-o52(hur-%-roOhO|Z;rgw z{PML!?tbOP6;Hm@yUVY=y02Z|YiH%&S$^%+eeL>QJ1h6j@@uc|YuESdjydlv@BY=V zUEi;}=Df4K`&YkqeZTIS^Um`0&5@UyU%qx$zIJ_Idv*8D^0h2pWPuX^plp=j&7t=voD>+T%hYR(@1HK&KVZ-3>g_if+1 zcy_JaOX2J89Nucq9^U!#^w2B6IPUCPxtGG%-8sC~oISkr^6=K;$>H%!;jP!+;(Y(> zcf61Hci3M!dhk~6rSNrkZr3;QI^Y#6&d&So~i?4g- z>z(RV?mct%@UJ;N)cx|#tG{yYrLXUJr}}W*QF8P(r&s#ASA6Z0SMN1vuk_o!YyZme zomU>t$_~mMkG|&gN^8&jw_Nor_xo4B_SW6+6kqwZf92|(%CEauuHLDf-MYW#?3KRm z6<_=0)qBm^d)0c!JKu8EuiWq3SFiGG-(2}$zf*g!`TE}1z2fT~^6FJi5502m*41D4 z>t5|t?p^!pz2@G64e5Tb>;_l>Dmh*|S5Al3&$5dv;!PdZ_#M=GGk^g-4y^Q8<(wt(?2H z_}6^xuD!ai-Rs@^_TI5KZx8=%?!LX>sXLst_?54_-@&_QZ?5ieR(O=Vz4N-mmAYq7 zj~pfcRBPuo=Y4vpb36)%l3&$5dv;!PdZn*>#k0>Hb&f~jQ1YelD7?M%y2F*aXHV}n zr&oI2E6%%cD0h43b%(RUqulMC*B#CZk8-znUUxVvJj&hPdEL#~yJv46kD9mtl&hWE ztGsrcmv{c{JKy%#_tbs8>z=*)b%#UYtiI#X;<+!S4`=^r?w)t;7wRo$ya+Dmc zoV&I7*PLB?sB=6DhmwD)wd34=y=UH@{%h`@`}T|H{;Hq8;~w71_mJaJa+JK(-16+e zq2#4-R(NteN{*6$s&GmzrCi9XOP{)ZFsyz@g;UZ}05Y4mn!9?{G`2 z_nOx`wNpI#wRh#%wO;#Ij(zj?a7(NAn){u<>R;b6SH8Z}{I}e-&%5UBUpe^F+W(e+ z-SvCd{+07S{@TBCwfowy9rDuaJ6Dc(%-h42zVhr`dsmKK>$QL7ypO;3uN=G9YyZl5 zAOC5;dapU(f&NvWeYD=;zVzC^a`oP|f8}_`ygl5~*WQ)Ca(th8d$^^m$KASieW&ld z{FT3Q|6AYj@3*ht?R@pPTfMV9{l#&=@{99*dEU3W$DJG{N6At0tF9h*>)MB3obU8d z-|eql^}g+|UG`D)_Qh3BpF2ukdga`whx%^+DMt_WZh7#Z}+eLE64Yv^icBBD@WhFJ)HH*(Sx^g zzbbw6ulcX~yo-9*{>oMF+P`xDu6KC%+wWwjlzp@~@+$|A(nHCw`r3Qt`HpK34y9ju z<>{e|_x-i^%Jbf9@5(Q3-T6MW_?53a`)KjpQFC~-xRtNF z_kYdT9`B-X=xhFIuijw~HHSxw`!=tA=bye)J@!#J^fjkf`t4rz{a$gexp(bf_lox} z9v&q}Uvqk;-|khP_qe0v=xa{zRqGvg*8R%WPUY;DR_`@m`>%V&*E=h(y~_W3uimZP z-&5SD`KLX9*Ybb;4*RIT=QVf#>gyf%zvZf5x!kwf4#3@mHmXUVCuY9vn))^iz%=TKnWz4j!e4k}rMb*?aAow`UjSj*?&X+Ji&a z{+06%J=FK*Uwf}S@2{Tk_Uu@%T=l-~d$;`SJD>8`-j(z3p@;fz|0zcg^{)M=96i*# z_E)ZY*ZwO9Z}oTB!#iJ|9=dqnSC6~ZJNEF-?Tf42ef;9Nqu1Um2aoa|N?!WP!CPye z93Ed9i@l9 z=JZOx-K&1R=lt5ga^A;RzjAt|)vMe)SI#~B>aV+Zihs@7wX%cO{hFJ@vyYOauQ@#{ zJ80dnd2#Hc#a(lA_W!BxeEOaL)bH{4;p_eD9d2p8Q@Quxti@e(bN0OVZSFq4_Sb#& z=%er`Ia)b)baC8Kdg!lm_Dbs=_;rUvi?5s>`Yl)e%6ZockJkN~o4fkg_t~u;chnpn zEv|C+7Wc}tSL!`H>fXw^qx8#@qwt@qckrlpD>rBF9^SfozT2}$jz`JS%DI=ihqqRr z93F4=9dC8d9^N_Lcf1vTDLr$}@mBX&-|?=!d3$*0SO01M zwRh#OoPQrZ)OY(USG{Zh%K07qwf`wc59Qs`;wtyfm8175|Jr+fkA0MW>6N1oZ{=PJ zU-y+?`=4_3&`-bT+y1BTy2p2*zT00pdhk~6rSNsHoE};n`IUo5>7nGMSI&KUsPD_a z_Fj43f9+lQPdR!h-&tB* zU%7wRJG^`S&MU_*N)IJ3{gk7J);{@_GfxlYUV7!+r-%A(|H{Ezy=xEe{OYg$#c?m? zd${9K=jEMW`^8;z-bG(~@Sm#RW#={jw8uLrJ4@kFczfq{hqJ_hmxa}bGH`n+}=C(=I!BMbNAf0Up)6x_E0!`=XHm(7Qgbk*FHQ7XYYL7;g`Pd z6wf={QRjFR4kcd-kHXtKuREL-9_4QDyzX$N?%C5LN6D}1o;^FSIla=?z2e!g`^xLi zE(&M$9gi08J07hbIUGukl7FhTLylhe;Zb__pXT&X@7kNIJDe3BYhD2N#Kjy5}AD*4;cF zrH_)MKu>4q2yO}&z>D}lpL*` zyR~@d_G`zyJ^k0*J@@Sw&wZ(P?dg-F+)?t< zEB9^x^&NO?eMjZ=>rM`bl9ygN_vxX&+h4irUHez=-}MgfUcd9ov5V3}$xA=w=%KYw ze&x*5L%Ek;Irr(IzT3ZY@K*2I!#ltFYyVS@9=g7(xXQhE<>-CNzxH0=V;`kodgbWD zTe+9Q*L~&J{*|luUi+^+?_PUXj$M=L9uB?oi}Rg*)OY(USG{Y0adjt0{T=p;`}WRzpYG5@*}JNH<;l^t zUtHzhyKaYDP$Gh-W?xpZ`cMfkgXAkeZJiN7da(Mhwc+bi9ubjT`_HgLB7w4WmJ+$sC=U&P_3WrB4zuw`{+N+$Nb@A)Y-j##5R=;xh zufFywU%SW zS6zGS&U;1i+WV zntRQwzjnBndUyHSS^3)aeeKoVJImM3%Ga*%Yp?F!v3GCX&Ewr${@Q~>Ki#E&)%A|= zwYxaqm#=qLzIJ_Idv*7Yy?g6!9`D}r)gv!myS~@X%DuDv+N=B8^}Tjh?w#e=UftKO z@7Eo3-m!ihEaPxeeNhb_T*^YE3e)w&yJNHD;zoAy6#tg?W}vf zs~oM>*CkF_T00tp7U4#>vz~g`5t?6blu^s?%6NicRV{*-|?mN z>rM`bI>(p3_Fj3v>ppjKtM7O#J?G`&Q8;^Yblu@lc+@$*^tJcO`(5|BlUseqTj@Es zH@E!iuRHtb;<*>k-3pJ^-MM}B&6QvMb+29L*PX?EdaqvP{(k%FRqj3>9wkR#b9%4( zKkc3RUVeAoE2n2&eBCSezJ2vxbMIb#z2kmym0$aC-dUcW)jjT&b1$vlYyP?q|Lr^O z+yCkvcF_On@A&)e*YB)*?G(Rq?&#WI+^_q!_pAJ`e-Hah>-W%GcXP$R=ImP8LF<0a z&Dp=cbM2ceU+F(6YJU0JS^3)aeeKoVJImM3%Ga*%wYNCmm#=qLzIJ_Idv*8D^0h-*ZPyLXnaot3X$-`8HsT0J=KXyx3Oy1)F|tNYsZy>?da9eek$cXP|X zzGEK0-tnE@t9oa7?_c>V$A0n7;Zfh0r-v3_dG*Lq_sN&KxBS|x``Y!rc2@44zT;6i zlzb^X3U6O|aquV{>KuPzaO5a?DV!Ca9FLNtN&@w-|nyeU%$gX`m66@uXMe`oql<8 z6donN>gsW~UiabX<5A~$6t1+m%Gu$Ll3(?;_fPTHcdnfOAM{Y)?XMg?cq{j-(*G-- z-M@P0b=Ti>?O!?eQF&p95YUs_z{ z>~KfPORwCo`>*f5@_g^L2Zz!xy>j&7t=voD>%Q{We(~gJz3cn(-ZAex-rVx^Q1j$g zbIZT>;s0uvef0WHan9Mbnp^(bUpu~Ecg@**cX|47sB=7e#n)$ z?x!5@UHiq8Fa1w>$KSzsf16kTx=$aip6|txU)8(IUw6%|UEkfmdhghK=Xy7{{OddB z@#`Jm>Ak9Vmal#H%=vB)Upe=s?%UIMZeLvG)h~YKb@w~=^j_6F%fIf!Uw1#{Uf(Hx z<#oS)H+|GSa@6AmXO_5F1p-aE_Fv%0tL=I!0TdhaZM-8Hv%eRto!c<1)l9dq{H zwTE|Z4_9h_`Py0e+Vy?y)!jSG*UrkCKh@eHM?c-CS3Be={HIzw&h7o4@5|FS zw{qXzw_m*Pc$7WVIUa>W$x9bk_h03F*I(^<*WT~f9j??pdwS$3`KMYt&h6_xI26v_ zdEMbk-Lt3X{MWwTx#oNidhNlX?vtb3QRjFR4kbsOzxvu)Irmb32b^^vF^2 ztGZ{;4mnC*3TK5U$D_Z>|7wq2>-z4xd&k~Adw6n`ywu$C?3i1*@9x_#e%;x#(kq3( z-r=p)ube)2dvbK$uN*tpYyVTu@8Q`iy>h?mzrF{L)^}9CdfctGM-GoiEBAeI=J89} zwO)IR^Zl>i@jl+)VSnZ5!CSeP!q?q7yw#jNyz}Mhp;vx!zO#?|zWlWZhkm-d`rOgK zdWYTXJMif0aktVhg|9m~9O@ij>Rxfq>7l;cUpe>ipY~VJcYEHq7PoTlsCVr@<>;Z_ zwSVQ{t=_eVcU~UeT0A*Cz7(#sdgS!*OU>I?|H{!fZx3g^a_-?@`=9c!z1Qz!AEjSf zob&R|U*9R-`SqP|dw=~7`>4Oy{*{BbdeT$Q$9yvU|)EpkI9{H7nN9m#DOU>I? z|H{$-lz;7A-}A0LJJu`b9{$t*>T$R7ZYg}-E2oDRN4~gquO0X7>7nah-0Jy`N7=Rd zzWnO@j$gaJ(?i$2IQQ)7l@{;Z-h1nA9`D}r)gv!myS~@X%DuCE?YU>p_vPKc`nBtO z?Jmyu#lirmb$k*dspttdyn3$dT069efYKOJH1!+&hoGO@N3t1davr8 zfPnpGe=%(e)-xVr;j=>Pma1zj&etxmnTQv zUwPfVV^8l@y|et0RS{i|QQzF&9EdB+~!d3kd5+AogW>V59c?cvaMhqJo3y!-a_ zQSQsbq2^a!ckkHKdsXi&?|t*!o!b{zx%+sudd|&rx58QB$nhvSO1=~xg|~OU?(ir) z>Ku=nTee$`*U!yd|a*gLN~T&a8Z^vF^2PqlVl^Y#APTX**1tiI#X;<=Yr zkK8@y%e!yyK6mH#a8@{!yZxs*z0$vW$Gi4?4>?M{6dr}QcV2h6QuplXk)!0La8`J7 zJW7s|U)4Q(c3yM$+_zu6?|76w)Hxo7L&?#~xm$~W&DZYQtNYr$-q}apD-Vyt**mX0 z+*NDmHDB+oy>+jB_w4DBqvWMV7IF!5;4mG#(x_bv-{L1UjZmE0r z^j>p%sQdQj>JE3++Ih|Wp8NLj8LN{+6)?yJuo^^QFp>N_5Vv--aL z>idpgyS~#y*S$FR?A@z79BR%U4)xt0&T7sczVc7+-m_=-RlT$P+IJt`xjh`Z?r>K3 zmZxuyywv>iwX^c;?&7#xd7r%e%DFGSzQc}ra+EvjygWJTKKWAjmajec%=x~&`*`=r zQQw!R_o{2x_qAWVb9?WuyLr5O%U6%QbnW`i&dPmXo?X;D`BL|mUwd_5yS~@X%DuDv z>mK~;u6cHry0<)gSMJJtkKU_#XZhEC__gahy;t?l^4I;fv+nC1_u-w}!=ZJryn5#C z>6OBxaLdD?=2u>K@7U9ORqrhSx(~m0eW!=6dvWgB(|c9#*n98OyL>`bz544r=6?N-_ju2_Jsi63a8~!0cmL|wuJ6}fbKbFscV3+-Qle6E$_ZPeU$t1aH#o}*WEkz^j_6F%h$ep=6qk?{i|QQzOUWlo!fhN z-Oc0OTfTbarEAys+F7}G?CCo%PmW&u#gSiiz3UzGbvL(s?Koe4z2kfBEzbAl|K0D@ z`{e8UeWzDiymNc+t-E==d&^gkymamQ&W>}ub@AL$`uNh~oZEYE-Oc0OTb|ylu3g{R zubjKp{POPG(?_{44~LpxdELEZPtUqI-&Nl@BY<$XZgR{^}E-1%z0;d_wC*1?%W;@U3WOEd&|3j^=sGn>#jNP*uy(7 zPmW&u#gSXR&)vB_9J=msR`-^7-=03oeR(+4{L1U@9eaAO>Ye3l-#v4_FYo@3Ty}Rz_@$M~OJ@V4E>wE32+&lL4otGy^ul?f4ue#p#j`_NqTfTOjFTdXLz4jL8 z`||(pcj|re_5HrndsXi&U;FNv^L=^uuim@#$Wij8@F=`}<;B4-tv)$=-6{T8`Sm-@ z@jhC2=jGQ<-Mt5Ag(JtKuQ|QawO9ArtGsr|(du9G+95};d&SibIa>W|UOVKd_g3z^ zJ$ugW;ZW`z%rLXZhM8N7v4}*A6-Qy5pWb zd*mqjr&>GY=-P)v&HpO*uKjwa?%r9xcF57Sv+lLye0ko1L!IN%D`(z4-|^@xPp@?C z)!ln=RycAz`kK=#U3+z}y~=Bc9IgH}uN`u9?ZKhuf0cXJe!a8q-YdU$>Rx-5*A6*a zedq8fcl*kVGhf`Va^5Rl@6^5aDz6=KwEEY)cF57|UU9WUj=uKIduMs~@$QkMzAsO& z)O|ST_HgLB!&%*1p1wKqQuE8#4mo|)d3kcw{gv0-M{*^>-%-roOhOY|LWJS?|-%X`cCoA?fw0AubjT`%hM~R zkHRevhnin`-MwQ^?^V6C{Odma+V!1YY4OhOy;t|j>HEGsJ*#``Zr+-Qle6 zE$_ZPeU$t1aH#o}*WEkz^j_6F%fIf!uU+5il@{;Z-h1nA9`D}r)gv!myS~@X%DuCE z?a{Nslb2sPchq~87gs#_QtvLm_UgWNeXpIBduREzSNFB+yLZ+dzBqCe-s-zO{58LF z>{?g9?(Fz(U)*b6yX>IFk)!Y^xs|&WuJXFW`)*&{YhJtTpv94+@K)|9_vOu*=WaE( zJbgHn{8OzRa`e-EdbLB2!lQqc*Dmj(#r-PhoznGA-D{8BJ$rNO4sUhO9-bT}Ut0XH za=-6gdw6n`{8OzRa&+yRTb?~Ql>Aez9ddN-n_HeeIF$UV?%A_Lj*^#}Tb>;_l>Aez z9dh)#U;MA~^&RV-y4P;;zsl=f^7T&L>7(YBch5X`tGVUr!=dC$i~m*r?fdl|YuESM zAxGVN^|eEezV4c@9dgvYS6@5i=ykXFU*+pN);o3g?&9iBj(Ydi*N*e$dDq-)UVV1Z z;(nF$4(eTdb9INa7XPc<@7b?+>h7K8Ylj?t-Eq&JJ#v(MY4N|x{l0hY;mJ{Q)VVzz zT6c03{;KZTvqO%OFD?F>7w323Q114>&aZp*9rV$~)tww=@2c+EvqO%OU)4Q(cF0k3 z>$<}iM~=c<*B!n%aunXW?(oHtqwv;shcAvCh5uA*haCNMpI+^dqwt?Lc8W7!+^=%pD_!r@z4j`v9dgwD%FW@6Cr9B+;jHlF zc=R==SGxA7l=VhrLq23rCKUf2y@Zj()mNuXe~$_)oQV$k9*t>D3N73je9r4mtYi zKE2u@N8vx!+95|j-KSSOTJb+7k|UwPf@ zoyu$HHTS;z_VDB=`KMYtuQ~72L!IMMIFx)TJPL2`yzX!)oYi+cT0HksdcLo`?%u%{ zzw&iwf9cw(``Y!rcF0lp$``-#y89hCwCV&RbnSA7N1fwQIF$UV?%A_Lj*>5hN8#-&H)l@|_1(U> zmHX~pd-Hg-c64@6)^&$3jvR$Y$xGo-I6QjI;Ywfkif5mDX>sJ}Yu|kBkfZM5 z*L`vHQTR`_cF56B_vzIRIST)&)($!P={~*MAxGgq)!HFPKi#KSJLD+*r&>GY=%@Si zYKI(!|5R&-9Q|~kUhO!yr+?MzJHL8!e8;bH_Da_~b+5h3Ylj@I{xz>1=T~oz@Ay^D zUg>(L?zLBW?U19@zvi_=j$ZeQs~vK*`q#X6$kFRwakWE^R{xsU4mrB^;863w%DroU zeaD==ckPQON8Nk%wL^}+?wYS1a@0M1-CuL|Q1|WOO0T>*d-i{w|9X$_wDJzh-Tu?O zdhDZc=xa`|^mVWJ+F$u~Z*kmFzx$f6{-=BH*{^rGuilko2c?Hr&K)g|+)5ASjz?ef zZ+olHeQA9+y>*8}i+|18D}CK7e(hJUa_?O^_wd*Lm1Eah{mR|9uik6!T|7G|Ia>Ma zogI`uT6x`H`Pw13UiXW8&HX-}9h4k>&FP`^t=v)Wc&qRBi|4+2SB@Q&9{QToD}CK7 z{&gR|_9~}mU3}du_x{z_Ugg(abG28w`}Wm)&Aof|^^W_+k)!V6U+=H{dS~s?w^r{p z_wLpI|K%P2AN6~=TZ^y!wa*Uv+JEJL^^V`Y`g-5}E9V~m+Fu-ZlzsFyr&s#ASA6ZS zeC^e}a=*8@Z|}VK?au07-+@EDYyZj>@7(X$o5wG$9rw)HFP{7A!J&&^cXpOucg)%I z&TCH3T04uo_Skvluf5v+RnB){oByz4!mIca~9Km+Q91!Y&lV?!W}4 z6u~ZR#lj#^|1yA{Rm?nVW>LF~rv?pCbx!E1h*W8C9@p8x-4ueHZMpRP0KJ?DIW z?~A(j+QV~Bq_dsu9__kcy5l+5+O74~b4EL!bDj0FyYEFh+sW?HuKU?ebZ;r&zehUS z*F9p^%kHJS*-mzk-f=(M$?nmf_gs6=b!pynu1j~bUg?fp9=abk_H~bhhhv^~CHR<-F%wy;}NCrfc_= z&vyN;Uc@NxzH8sh?w*(SUZ$g-{D|4E-=m$(_nk~DP4*Gi}KOF{HRy!Yp<3q{Z6xcSzmY2f8NMf&hNE4+R1#~o&J95 zJ?r_7bkwW$wI`}C%6CTh$oGD!j`kuy+RgIOJ@WmXmdg2#YkxP=rM)btyXfylerZm9 z(RY$xhPzVDUhyeD1SZ#Eb8BVXTF z%V;n1wV&OiocCO-Cua93=RMcziP=5MMZH>I`=a+cnT~ccKilaaeb-Sg@}qu~m!HvhU3)*fdtTamnT~q3zQ3cs7~SPNqn>iQ zi;=H;M(<}j+l%hmuHU1b%=aDF-Y>m-F4MK|cwRbt$M5RZ(swfL`=0l^wC6JIJm-b6@(Qa*DJ5JxpwD(JO?XKrr>YYY+{e9obwD(JO>29MreMf0O%FECA z-|~)shrYX6KkAq6t1m`9zehRwrS#oQm+pEl+x5HmOSSK~_MOtZ=Q3UUj_0Mbcl@qi zEqy1`(Z2UQ=Xcl2N51YEz3*Cm_gzQ1$dCF_KJ%lyzvEiHTKZ0=Yxk8e-EA~i`%aY4 z{ODf#-Rg_plP~%`)9TeS+x2_xzVg14Y4x1m%kG|c?fp{iJDD!s^<1{=ckjE7^6tAX z-SM1j-*v6L`>vIX==n@XJDH#D`aRo=?!J@hXeaZtUB5?r$~l#nAL-23UG%-kk8)97 zen#KTwDvqFKceR|9qq_hUvxjx@0If zk9_r<%8Sw6eb-UnbCHhvk)Q2Ey;}c2^^Sk1YkgPbNB7!%v?JeHx*z2tzw{mTowfba zymER^T8w<%#nPPe&a9u^OZTFk$oE~>QLonbU1{xz^2Ny4T`bKh?=0PNnM z5u;wMpY1og7xna>?oQoB-KCv=cb(;R&w8af?TG4$wZ3{z?TFF6)Q@u77o(i}(%y5e zoEY6BUp+C)=`N}#*81v2tlf+9zOS4!$~EhI-?hHOeb>$AqJHH2`=vVCi~ML;dC_yV zzV}OY^p5wVT;w;~&vv7Gt?%C{tsPOmSnI17v34)YYd^ayCwg95RL<#l*QNQE?)jdy z=-(A-BKI&V1d)(!O${`lXC|?n{f=zH(xe z_q%KLB42kg%DFEss^2VqPg<*LR5CcOB*Ai|UE;Mfase-6-$Aw3zMsJ?gnHE&7gY<(yGYzVgyyt*@Tweb-S=ekpxdS}fgBF6y~2Evg^U zbFS5M-*uFeFRCZX7u}Z@l@sNQ@*{dK)7nu^bYEI5%|&_nqVGk1l#BB6Gx~0(v%Tn^ z?fO01$$a0*bha1Wvt7SOJDKl0na=j2d$#NMXeaZ1C)2fi%Gd6CUOO4Rmuc;JPJTqs zXIeX+bKmcoR$uhI{EXhqbha1Wvt7SOJDKl0nXcVazINC1+R5m>Olz++SDN=d^=j!m znXcVeKHK%XdbRYOOxNx!pY8fxy;}NCrfc_=&vyN;o>Muea`Gdc`MQg~7x_^x%FEB_ zyP4LW=j2E9e5Ruv`Ra@AM_Rt+XU z-_zZF*UE{}J@TWT=UuDk%yNFuwC|VdY}fA-Yq!yN{Cj*S)82ROecj!6t(=(Mm2-M8 z)7~%D*{Zr|6A7~S1> z9rcydU6e1@`szij-HYuax;|LJ%9d!z61T%@CZy7v9jUC;ghcl!vor!(dd;izo ziGFVV9wMqIDkmK=%0<5Kl;+g)ylds0S+3c;-fMOz>rd=={C(GYU#z`H`N-EhPS3km z-hJ1~iM97AANhL6ndPH<ErF_FdQB%kIj1F4O9X zo|m7|d#=5o-8~=aY$v<>uJWSpuH{E8&3n#u>ArfR_vDLy&va=|IkBa8wWobie#Fw8 z`pP?XkEncfk9_sSC?~%(=Xv!+-6NLf)K}iAdqm}r83D`nJkUs}xeOLM-Xp6GYirMakA z+xNWdmU>4!(Z2iAqWTdV&8a6w`|`7#-=&?}i>SQcGhcVn`bvhc`uQ8psV7GJ@=J43zO-MO(>tPiqWp-ZIrWuy z>K;+~=pOm%iBV2|Y0mTNiMnU>yle04F8V#wSxqr2}*XZh$J`Py}s<~^6`(sz6(>nSg0dB010Kho|;{mjqqweQsKXt}cEWQ=wqKiiA$(O%?dJ5ew4 zeXlgzUN&lmoe(ekJ#vLX;1HF zdEGtlS~*d7QGO}2p6<@ledW}bcIxi*oNMJvedW{><(IOy*V1|4lNPg|qcrC`>WO}L zU7Ax*d8h8BRDWXSwL7uisonMODeaf$qWwnu+KZ@NXOwqeJ^8NXi@J;QOPTd_cV_#_ zXF1)Kcj_Kd`RMMx@=ni1T0Pxe%NKPQ<(D$+>F&(-mCtg1S5Nf2>(ZQho_DRBvoxok z=Upr3EX{dOy0l-K)2_3$Uz&^dOZ%lce@D8}e%AB5YrP-Q^QGEzrTbCNeeH{Wcin8R z*?#HwwDddvu5{@;&E{+0DSc17PW2-y@Au5tUG%=|(wz6C8|~NjYV)Pvr(LJ|5tWbb zk*}T@<>Z&Y@^t)^2oSw_H`pP+VcPb}8)5?jSm+$mk zrnA1^rL$eXt0!jnD3|s8E-h-;>Gw=~zf@)Z=XZ&w@$G=10-K-z=OZU|mqn_WRocvPyZl+6jJ(unJ-TS55cU=2U>D_agu6@Vz z(%CzHSFe`7lj&&Rd!F;VYvm(f_l(|mt-kxNqg>=i{V1RL(cRy1tzIpCC)2h2%9rjo znyY;$%4dFbFa2)yMeoTM{hn#{YMJf&y>?%D-^sLkPVZ%R&%5@1srH>rm+pEl+x5Hm zT}OHMU6<~7&b9BlR^ENr%0={irlXzA&vyNu?L~Lr$#k@n`Pr`Dqdn!E%FB;*=Ibu{ zUgSr)C@(*w?`B$io|7NZ^O=rz<@_$~^xaIWuUw?%i^@lga`Hv*%NPCbI?L&v(RW>|@4j@i_eOX0 zu2XxZRA2d8t)A0&TKeATp1#ZJd#;stKhmCe9rfHV?I|bvj_cB#ddfR>�bquH}om zi}FjE^>lZZ?klIhbVTLEC?`M4MZWj4obt}v-o(ml*XiHuT6y;)t-LeJ%U51Hqw>zI z=Xdqpk92KbJ6X@~uC?Q=%_;BnUDwLHpK0~PEU$Z``9^!C?`mIEuau=d<-}~iH0L|& ziGFuonu~h1eb2jYsdu!K?R%~^uYN}DI!k+5F1qWz=q|rBr@XVYUz*dt=Upr3EX}Fs zdDqH0OLOWe@68|~Njn$1Uj`OcR9xqV-HV!fl?|LyPS=MYPOo@Vp4@6^7h zeNp|0Q7-beqq`_SVrj0W`?c@Z=Jma$J>^98BbMgWSKg_6MCGG<=GXS4eB}H4p3AiQ z%8BwLdM?wx6XhdceZR{WOYfe`wDv{M%g^Y&OlN!1J=^trw3GS1lj&?Px@Wt7FWvE+ z?_}Ehr8?X7d+Dy{d?(Z1FV&^Ho-5r~&ik&L&DHj!y!?#*{h7}8qI z?z@h1kstM=y!?#5o9S#Xx@Wt7_Z`1WJH3}_^-FWL`E1wk+86!qx-_Sr@=o0&Dj(h5 zSKjG4*UGzJs!RK&x#-=}ezUn|`_cEiKe67?uG8Olt-SlCy3u}Zui1Rmci(mNdnnC$ zUp>+9u1j;?lP>L-=CmuSC(4glnp0nSr|uDzkM5DLo*3oim*zaLo~V09&%5@%?xNo_ zo%M8gX1jh@-+kB0iGFt-qrQXp_wC}#OsD8vobLxrFzWmah^3KwJY0mehOZ&~{n(ga*Gfu2`wCilC z?}>KwUUZNA+FrBysPDe(mim6}XkU~cu{76gKYJ&;>-{JvUsT?i-Ib4W@ zv%dFT>pLPpyL&Ivr8`kB+I2tb%NI*~o|DdYqPzN~jCR~F)t=LLOl-fU-_c&g?B~hu z+Eq@JFSeBLd%o-1^O2Tc%Iux!Ub?Sbv?E_sK4O-O?v48DiTWBdrsfcQoi;g zX75DzXfN`k9r+L13t{Zc>LkuPR@%88zD zDc^Tpm%igU*S_mI%F7qMSF58P`C{#^=c66@qW5Zbv?E_E-Bn&x&voQSInPJAmh$yp z#O$5y9__lH?L_xzM|n{>*UkFc6Pw*rzm)#2dh$j2jWXJiFP82rFRJG{^0S=o&S+1* zsGhXb@6w|3uH}o3-o58q`w>0wT0Qq&DnbZuC3U)1K(QwA1r`cdfjryKDIo zYxCNv?PdAs9{IK3p&e)Gj(Wozk58o_DRB({rwy&1ZeTOZ#`YR!+?B$~nE~ zI?MY#(!T4urFy>WI(kQbY2I_LwI^nGYeDjB46K`-IWug zeB@_6-JRMKb$2aa%2>;2N6=Un@q-(4#&W_RU8nI=j>SuT5 z#3Sx@&;X76aHG#BNY?Q7TRyRNgm?zO$zyxys0_Kxq>=GCw5mF7L?TJMY5T{%&C z(S2#B=lx!)OLwB2`_j(rdz6oIewTJeefi2uJEOaN(R-Qpp0udGv?xDfl#?&2FYVMl zqk2(J_lQwXzIxJPa-#YXOLN{=PxQO%(wz6CYx_~&eQBrOji|ie z-ItE&eb?%_pK0~PEbsTMr@Pa4Tr2N>rqvTm^R+qci?#jIy!OScr@QA}D<|qM$}eTs z)7@FRubleQ5tS38oct&k`QFQN$~$X&EuGh1ME_pb>bW0j<(*MpzVgx;m3L-6zpL+l zq-*oq$$EZwtsQ4+PCezFx<^z#x<|fxVw7{g(R`yly`S}U7u73eX-_#Z+b_-ej(Vcs zU6d7z7Der8wpY{Ci+P_0O%4NRpqV^(|=De?-=y%tpIrWrx>K;+~M(^H>_A)=Z z`@VE(-gD9swJ$0sEk?fX5u;wMAMMMp-HY)ZGS57;kd@=HM7qgu1qIzOW`Hk+WC)R$CdScWsy(=e1d$qpyBG&Fj z`D{PxMZWKq=Da6e+Aqy%*BSLA-}|nkUajxDuAAM9`g%uqQNGxyU)qaurSGdRMm@hP zC)VDT7fW}P6HEK0xoB6u=zH>=SuVQEcly4xa?;Lb@7im2M}1Md&X&GMdy((oBkg(D zwK?U*Xis-B%0<3<&f2{CSueY5$LT%SS>Er`&F*An!j0QvHAJ9sORipIfzU#VnFUtF_>!=s`>Nk6D=^gDw%)VE>DCfTG+P?A`C-yth zzP>BEN4|Q_EFaw?zjj~wXfN{Bt7Wto`PqKdtM#*YqI>j?=d)Z(-?KgcKIy0z`RX~9 z7o&Tr@3~T4`+l^m9no{OzV}_%?nQaul~!JqFV_0%MQn7>d#?Sx=pOl{edV+x$`>PF zcQMQ9E~+QCl;7x{dSdPOs3%7K(z|kEv{&nEFJkRpl+X5~UgY~;Y0i7nrTx;JcAZf_ z^1bgm>ec$%&3e&YeKE?(7nK*~i}Eu@`OJ^*{$7^zyR_4HGp)XIk(MtiA2G_w7rifE z^n0egSF59a-|?K^Gwpq8@5vXVyL?gkh*_@Ld+EFWPNqwDJ*VA_-gB+K`_j5+R6e5m z(LM8P`=xo$xz4^z_pGP8Q~ij_M|b(kMN}@LdeL2el#6`z#Ab8N_Vpc3-*xSI>C#-3 zFYVXnly~YoA}Sxapeb>r~jo!WI zTKi(@y)>s?XKg>qN4~!&?RjZ2%jxd)e(hcPW_Pmwf7?5y-=m!9Kc{QuB1ZYh*G{u{ z?PQ!-@A$53|E}!rd1>#tR!+?BQOX05FT49*q_dsuu3gV%T0PP8@|~W`bk_HKr2n_S(adE zT$k?F_Og8GyPk7h`c7@m^RAoy4(*BBb1h%Y?#hYEi|$Kj^nRAty|x$S<%`-EBfs>n zoTxp~eQBrX{T^xWxi0NRIr+ZpS~;iZTsND~`hJ)8?{KZ0nBAkC_gt$dW_RVB-gE7F zY0tSB`q|xc z%8P!Nc6#3LrMh;fHm~m}?Rn0%@A=)e@?v)PobsaIrJbJlyXz<)`RZqP<-{l-`B_i* zQfBXHr!*Jko9%1Y>ASA8yzbts)!GrgFTa+xJGFUzPi?O>?>X0cU(D{FQ(pADwA1r` zm(Ft8J==-;?z`5m7~SQI%8Ty1RxYCFGp!xZ$&cuH*Xp_NS~+KwEA^wC-l@Gu`N-Eh z&f2{CSueUrezaSg*G@*?b?yD^UYc*|9qozw4%hOXr8)0OXZ`5jQog>!8SQ({b=HgS zE#>?7NJsm+N6dQJy>vI*$?nlR?q@sMJ=*i0Ywx)(&3n#u>2B65-BGS~Pd#V0lihtU z(%DXSk9OV9cCx$gMLOHb?xnlgPImuKy%T*`-P(LntDLBj5L>YxAYOMt8L@W;@wkI~lW` z?4IrGp6xVx_nvFLFGhFyqVl5qu9b`E`AloabMhm4-nDw}yH?H_mD)dW%ttEY$v-%@3^1sWcO&#d#=6bx-{=O*QL8zuXIPb+CBB0 z*-m!%y+~&}**)5IKikRfz8C3iC%c#KW;@yaKlM)ZU6JqK*=(+~uXk(nrM+l3^0n*C z^4Yy~ucdbMUbGka>N#uk>Sw*|uAPk8PImYGC?ENyea}TYdnda`yY6Q@**)6xo@?*9 zF3o$+b?I)_E8S79c27NL>5k`IYq!={PmKDyJ3a5(^RBaebdP-Bm#)p1_8Q&QzL@P~ zckN`%cCvf6uY0yrdsp76_e!b0@{yJ=DjzY+`CZx>?MJ@)x=UwNKBD@5moNHVI=h$V zd`H@;y@<+3_sCaIjB@Um=9P2$UZ&NLa=JUCynN-QOR1h%+EXs-xi2lMA2G_gA8GfS zeW$h`<>hDJr@K@Ah{{KI_dW00^U|d`PL)nk*^)yMfnj+b1mJkeYZBR?=9^qC#oN@H0OQwM8CT(&3R9{w%=&J zwpaRn+I6ZQQTgZ|`Ra*LPJV4pd8hUwDj(f5zqDVP(|gK0b&sfgbdP-X#3&c}QO|v8 zG1`+~np0j>Pm~|A(VTi>wC}#>U3*@-G}mmt_MOuAeAl&hoTWMMNjKUr?I|bf-H4?* z@2e;J-F23W?(#+7&9wJit1n-aA2G{CcllzpANk&Mt)6^Qe#9sz-|0KLyYD*7MR)n4 z@4C)%(OtgiyOH+1YwzhU`aRQ8&wXjJ(cRKs={vqx+EY&S9oJDV^3~T}lpit5MZWKp z<{Is3U-TWdwRFGs-O_xNb3fAVPpqH&fBQT7erNRilCQjU zDb*9RUTH4cDeaf${-@rFz9;gV{Vw&jFUl`vX-_#Z+mCXQuRYyG`4LNVE#0quw>Gcu zje71&i|R)#&8e@vQ}>9K;+~=pOm%iBV2|X-;`jJyCu}&u3bDo|7N3(R^)B z@7MN9^QAd`hqKXs)RQ04-*>H^`m- zF4MK|cwRbt$M5RZ(swdlyRUq<>v#2>$~l#jAL-23J!AHc-?bO{x;s6eY44Zn+Fj54 zJGzUyXIeSY^YX>$?!IgF#poXSQP1h_%)ZeVva^}F^X zUw5bHGwprX>WjK(S~=14nIGMK$F+LSEa&%3`+lj;cKu$u>p9=awD(JOw(IxOUC;SW zrnA1^rF~bv7~SQI%18X4%9XyO@2t%?+Kb+iFKS+4gR!_|C$~nE~ z+Vj$$bFEy&(tK%7?|9y|auKt9bdP+!liiieSi6(ubr(d~}a|?MHX_Yqj=8@5|5VJ=am+bFQPF{L*}F&hxJIe#F|m zc4~WBUU#wd9nY(m(R;4FpWUOp_gqIk_g(u=rnA1^BVGHB?|9$u(w=jzoEY6BKkC)y zqaFDXvv<@h%|-cU``Q(?C%P}~^t|6)NBPKCKf1S+pS`1dDWmU-`dL1@N50<4?#em6 z=Q_*#U0OS$d@=G%@5+hV6Wy0~dfxBSS+3c;-Vvj{$j^GE_bBJ@y7r##5j`L2Mt$`} zeMh7l_0zCuV)+oLSHBS>Nx{zLRP7M9<52dM?x6FV)$u-?bb0x;s6e zY44Zn+Fj54JGzUyXIeSY^YX>$?!IgF#poXSQP1h_%)ZeVva^}F^XUw5bHGwprX>WjK(S~=14nIGMK$F+LSEa&%3`+lj;cKu$u>p9=awD(JO zw(IxOUC;SWrnA28+7abPEX{deJ<;!(F6}8Nw$yI4^S||-=({7|fBw>(_oPevr8(bK zPt-kPX|ARFweL2YkNWPro>)Kk#C}KLJ+a@>zNmL2mgdw~-l=;;<)eG#t0zV|`K39} zt0(H7(etjoue<2?OlLjao!PG6)py^ua-!c|N4dyXUw2V{DWhJkAH5gtWckuwY0lqM zPxQO%(wutAJ9RIm`V%X!-HG*1?XG`MX+O*P-L>8ovwM{Dp0uc**r?xVPw$G+PIixa zwZ7h|W$imrK6|&cSDK67i~5mYyQ6%x7y0VdvUIOB7rkHFk8ec$b>$-L?%167(i&3uB_nfr$MfqZ_uU;)%`kiL?qQ3uJQ7-b;_q%K5#OPk@ zYp<3q^^SH#|BhN;{ivtA=($XL&-1!FJ?FaFy!yVIY4t?U%XfM%(^=o|(%G)x)f2OO zl=Gfz^~CHR<+7gNU2E6rxlCt$ze{JkepgS-?orNruGNbe<=uDfd)eLd(%#FodQR_U zch9@_eyR4IOqcF@u5`E2oZc(#M|t@f|6AVi@6dNQ>qq_4ef7nt=l3Wlzm&e4>C#=# zWxIa&eyR2y*S=GF_gtoH-|@V3_Kx4xtEKN`I@YS4-c?bnU+KrMr#hYTt?SnIGLtzgvCLd-6rUXIi~lX1ji`-B;dsGOeD| zd)eLduDxHXeJ9hUyPnH-{qB9&QQm#mr8}N;?Ypj(ci**g5j~&jXeaZtUB730(cO14 z9qnX(w(Iw3PdTUZ@*|!3x{JOS`B5&)%g^Y$nbw}?Wl72TE6Ig`J(Qk z`;nF}dO!1{yYIMGua>@(>1t#GRu%zhqN8i?)ZHNo-*0L_0QnWQ~s-mz$I8;5-tswg+1U(aAmk2Tpw--H-+24 z{%` zhu`DAa6fneJP;lX4~2)p!{IP^EIb~b2v3G%c=tZ^4e%y-3%nM-4?lvRzz^YUlmGks zpL)`N*>~Q5dHgj0@`NeS|Dx3i@I-hrJO!Qx&wyvbbKtpfJARJ-aC^7|91MrRo#4)J zSGYUe1MUfj!oA^saDR9(JOUmGkA}yd?taD!pUK4xEJ}=`STr)e+E1go(<21=fU&gh43PHF}xIB4zGY$!fW7l z@OpRyyb<0EZ-KYMk?>A<7rYyef}>%3e$F{y2e=em7IuRx!d2knupRuC-S6P{@CW!K z{2BfRe}@y`-|!#Uiv3C8q;M)YHJk=c2WNmY!dYQkI34?Q!@1zJa0WOdoC&spv%=a7(xq>xHwz_E(!a?0dOGP9_|1K!yVxexC`7J z?g96NL*XUxa(ETI0p187g^$6<;S+ES91F+6r{FX2Q}{Xj0)7R*hTp><;H3O{w1;!S zdEmToJ~%&I04@XwUvF2_6FVK2BY zJel0-@C+=_mS{kIF$Q7@IZJdJRIJ}@8d0cZ^L`=zvbuo5&jJSf|HP& z2F?iEz`5aka2|R?;I8mc_z3^Jd=gH^_e=}hz<2om8Q8rW9>jfb?gyg}frrAw;W6Zn zK)(!MgX7^acr?6=_qIUak3I%HGe6G`?4O8#5?maAS$IBvZ}e>JEsWj@ZVmY#|66T` z-T>~#y9dAn;X&|VxDok#;QjCc_%M6~J_;X$kHc~BdH4d{7(T|Ig4jNix8=;P>*L9YX!g7?AY;U2C39r%WS z9{mh|gTKQG@DKPG{0C0TPHQ+7oCZz{XM%0umT)V$4cr#?hXddsxC7h~4uQMC-Qkb$ zDZX=V^gOTwTpTU|mxRl}j<7TA3cJDO;R>)P>;+eXtH4#^>hNj4?=?6cz5(BYZ^QTC z`|uO^Df|Nd!2Y~&DBKh74flon!NcJ&coaMu9t)3y$HNohN$_NN3Op5_22Y2>;RtvZ zJQtn^FN7Dti{Yj4a(D&25?%wZhoj-W@P7CJd<;Gg$HAxIv+zy$7W@Q$3O|Qm!mr@h z@LTvjybj*QpWof^9(WGC5MBqbhd098;RWzFc7K7t!wK*Y_!s;e{sSlBe{VM#oE%O8 zTf?c~)NndDJ)8l~1ZReA;4E-f*cQ$Y7lF&b&Ts{|7F-YZg#+L~I2djXf8n2-C-BdA z{^P6FZ2WU_H2<8PoBKR)KDaPk6u!vbOK@cdUqRo)-V)^RM|VQ6Nq#x>BKqexx&!(F zdaL69#QskB6VSiGKjB|+R{r{E3ulLOz&YXCe9t;?LHyq64(RpKOQDy68{l_GuLvLF zJ2&ONIoy={7H~_rKR@Tz=tIy)!(-qQ{C?JeYr(bQ(y$BMneUh#E`vWOdUx0de+9T1 z+=F`$bT_yX9LjxF^j_#~(5u0{@duy>!hP{Op;w24;C|efMEB$G+okYN;`eeYJPi(q z=fjKOb?|n02fP#B3p=yl4Q|J~E1pKCY#<>4UqRzj}^cf@~y-d_A%53u(X z{-5Ml$G?&99zy;+exO~^Pte;5eG&IH>CZ%eZS*VTF2lbLUQKU*-k%GuM{gYOtdG8x z-gM-qz+VNvMt)9m8{?11-vqrW>;Xr>v*2`aBs)FPlcQ%u&kUbte_np?ucM!XZ^9e+ zc{`9>9KOYUYxZ76cjEpix+{8LexFCc(d_o(ekA_7=)2f`iJb$u-$L(uexK9x^BsYH znS5XRt>G%{PDlO^^251b0B_*FGWj{C`Zu^MdKb6{+zajl_k;Vx1K>gM5O_E|0)7R* zh2Oy+;4ko3_$Qo{@0%P>0jGph!)f4ja0WOtYzy1L+2HK3J=_a^2tR-)@I5EP;qXj& zHarKO3onEh!HeM~@KSg+yarwiuZK6no8ay64!9%Vxhvcq?g2-VI}p7uJQuWU?H{sjxUAP3jWngExJnR8ige$>S;p%WrxcSuo{(bux z`(xoV@I|;CxmDrE^gn{1z)#_4@N@Vb`~m(1e})s_AMj837yJjd;{8eBZJ4C+r1RhO5B#a09q8+zf6CkLItBh4}MX1YQpphd06($S;k)58V-c zKe{XWLG&N+RoIhzEBG4zqwsaO4)@-0J-9jC0&WGjg#+OBa4L8ryYIj~@u!7P;(q{V z!v7H627MO%2>*Qa$LLSsr*Iv9-@V~z{0-3?!OPj%1pOSj1@W(fTX5eJZUwi7m(g2< ze-COExFTE_-bnr?cniE0j)Zr?yWwbfFT5W<2p@tE!$;tw@GM)0aPG&z;qWYY2z(DNN^fzv1Y8m>1($})z>csJTox_|JHsxpE9?$?zz(n#9Kd%? zg5D238G3R!1w4cMROk`tY0&-9XTx*gx$t~=0lW}i1TTh{z{}v(@KCrTJOU1bN5Z4v z(eMNKA^ZgH4!?${!SCRY@K^XdoB;oTf5N}uKkz)b8o!@)U~jk{+yM50o56u_d$;7)L7xC`7B?gsaOhrq+(5pWnh5*`JQfyctN;930h>^S~=(NFyMnlrhtfWH&D zulesczrmi|cjw*7)Izk%!WJwKv6qe*T-$oA7(w8NC~v6MrA{LGVa; zD8J`l`SaNqeFp!0d7Phb4*mf#IeT-Vk0O6OT#)-B+!upe^4>za!+!Wnk=p@17%ok2 zN`Bty;WGFg;mr7R!TI0&gVlqb@L%M+&g1vrf$!qn>NEa2UlM;QcoTn}EsI_b z&dW|0^s0Q{HRQYDZ_8gV$X1uqTLq&Z_l42@(QBcvWp6|Dk-T#hoR;t2g5O(rexNDw zkKp%kB0P{I~dho(}KCe-C{S`P=xOhuC=pK7fA&xyR8* zqK|@4lYfc*5$wNA{xke9;Ah-FqxT*D&+uFPKhZy;FQoS~dRG3vewBBQ$A2IF2KpBM zJU_=D%%9)c-23Ct!2Y`E+v)9q9!35j^e*h&NA7j*$8*1m-_QJf=VbhKvKabm?(5P2 zj`wfH??!HE{yJG6{R#P1(VwDMM|UB=sNRE{bMFU7@y?Rm*Pyp1TpGVO`X2J@qYq%` zK)4nDws3nmocnQbFaBKn!a4bUZH-=yclz@Cy_%nIE&Q$cJ?+QeZwJ74_})M09gKej z90u&*RE{J!LVNB;rmC-)D!6@R{yz{%kt z`aQ_s#yh*izi>-?F{uOXG^1Hwt;QoB~C~_;X zzc7F9i}D@Ip%+8%M{iO5$>}YHzc#s*@dxp9^};`xTo3x|;?J+&2l->+ws1pwZ?bz9 z-@Q6J?dXrh|BT-H?0<=#iJyNC@_pFjFY8v{lDnAu_vjzs2JAgZ;V1l`;Y0Y_vil4E z>F^A8e?!lT9>TvEu`4_f9twYjzro+(U+`}@3I7*qrh?PK>EQ+Bu14R+UpKeIJK!id zJO3Ai=74j;x!?k@BRm`qgGa)n;2H2tcosYlUJ9>*SHo-J4e&;IE4&Tf0Y}2S;N5T( z91VYgzrx4)z1#=S;`eYaJb~ZeiSQ(NDjW{afM>&V;W@l>Df&WqIlK~H3$KGW^Zu>y z2K-y#t?)K@JG=wl1@DIU!u#O^@FDmxd<;GgpMYcGlkh2c9^ZF9yZ~MZFNT-F8|mEy zhwyvf3GM=Sg?qp~;a+fWxDVV99sm!72f>5kA@ERm1RMsBfhWR~;i>R6cse{2o((UD zm+e>Fb+{&68$JP_hcCcapU*(Z^jDBKJ7A-^(w5DdGKF$98{2b5n_x+jt9($5I z3w<~Do8S-d9(XUjf_z*4d2==Te(p!`-UH}A;DhjJ?kB)g;A!w5a+9DZhY#VmMo$SJ z#(xw}i$4>b6}E?ulN$ra!YAR}P`8QvYs z{weq)@$ZBu@y;diQg|7>3SI|qfVaZi;O+1(I0_En-3QPQ!iV6)@KHFB{225g^bT-G zco*Nl3wjSY6n;nld$y7xxi1I1!VlSfj_-U8 zehhn&TN$nnw_^7j`hC$`!@=-#?wit^1rFgpE4mZEuU+w%NB4jWky{?F0oR0|^3E3Y zU*`MA!8YW^qc=pqj^2dcw(xEILFi54!t{E=o$z;ty4tu~A;r`?gfLp>hxUUXZ zf$P8x;U;hkxHa4s9t;nGhr=V`aqtv)Iy?)W2QPs4!Uy0J@M-uQd>M|1YrqZQQE)4G z0z3)!g{Q)G;TiBuxDh-Do(ucI0q`Pt3A_`If}`Pn@IH7Td;}f@$HJ%J`tTXp2fhGb zgonb{;AZe-_!j&H{tADCzrzXePxv?d2e#tB_e=&Shf~1Ta4I-8oEA<8r-w7bnPD3^ z3!D}H%=;hkpI_hcpL1vPpI?Ld>w66M-TBYmb>Z1L96W{lsodXXXE^>p_@|Kn5j`9Co$=3r z{pnwcz6Rby{(kr{yovkGa18$0yz>nDMff`0jdzwH_Za=_&}@Na@Ab8p4o zY3Mt-k3i3Y{un(ef4zKyo(}y5`bYL=!k-z=0^9MOkMLdZqUYj14_pDx%Y8n$8vZtX z*YCXdC)|?zGvpuRoq_n#ZB zhJQDD4fM_IJd1xR-@ht*ui&qSevRIp^xozE9$bgq2Ji;<9wa{x{YTKZa92G99{vhgjd09;XUv^_$Yh~J`SIN zPr+y5^YBIZ5_}mx4L^p1;0|yI+y(9i_ke%H-{E4g16%?w4VQr(VJFxX_JAwHRpFL! zTlgUy2tR{g!f)Ys@O$_Z{2BfVKZi@gx!~?_MR+T`6OM*^!M)-A@L~7}+z0Lp_k;Vx zF>oAQ2`&X!fzQE3;977U*at2OUxnl0>+l1(75oU!4nKjP!hUc7`~ofrzk=Vu&TwHk z82$i%gge6J;ZAS`I060vUx2On`}-gCB;pH0o5L;Omas3} z7H$Xo!R_H7xC0yvcZ5UWPOv+i0}h4l;Ntvwwnxtn+rmBI_T=V9&y8LHy*c^-co=*Q zc85p6H{cTVk3?SwN5W&^-Eb6Kk=_RIMEnQgLvT~>JEKp7+re$P_eYO~d%|bnxo|h~ zQ@~B}Z-aNh3*j)hCfpU?1+Rw7!ui=<9v+83DY`#=5`PW24E~gGDE``TUHqNlz4(3M z;`m3QA4NX`_k#Ptec^s^e|P{q5FP{%hKImI;o2Nqa1D*xX zf#<;s;DzuqcsaZRUJb8@H^7_V&G2@32fP#B1xLZr@E&+Cybs_xs#GfCtb!gnWPU+rf{?{la|>{`<+A@Hg(a^S$fhuMd0k@8>Sb-n!`Z;QDX| z{`R_s~BYzb(BH z=;z6ugIp7!B;Cg=O6fGhGn>%gh#^+X@f-qiTmtzPBNcjG&##d`5BA4@koPCy=X#y{m*~^^&h6M8K<`Dq zXC(K-;NIkZ<@eZ`{rA|Ngzp-M{+8UP?5@qvJqX>8-|rpltO94D_bfY8@jbiIZ;ft8 zZgY0NCqD(>F*UhI`TpH`_Zxoxnc$)99tMZOnfUkR+roL^yl_4^KU|LQ`G9x3qF3U+ zGJ17*0{{DhUHIqsJ^J${|1kPkzUMgj8$ahVeE)L%yr*#go%^Zi)8QF#4}M=ez(wdU z3K!w~hV$3s`SdP;@8f>}+w#BvxPtpta53%jor8IAUh?z7llXnz%ihiOZ-KYME6MN1 z@9j4H{n3|mf1917@sEcK^F2Gm2g#ic&mwm;|MT7k{2qSdugkOWzaW1L`OU~(#QkFU z2S3*}=)cf^viBG4$lfFDJwSd6eqU3<^T_Sad%yAXPk=-5&m#9a`$xlh*!`Wq56+{_y@x7+*jj%jlP55(|(Z8X>~pKDS78ldVj$K$xp_AuH3-ir#I8P1s=xx z(~!Fze=2sb;P*Zgf37pb+u6GVw!xnTj>4Z$|GYqtJ^bg~`t@w^t=%2%V0RBLDF8(aMI|uzK`RDSdy!R^qynB`J z-kIIs`2EiTN6{b3{WJamdvhPhP6u}X;GH}9>){^Q8eXp7Ge7T4`0ubYFa8twTk!s( z_z&`XJcjqaf(ydm;q&B1pkF|*%kOs){F&k1yt5(qN%;A`wWU;vons}1=yQ~`$g!T$sNn?g6i{o ze3t%ma0`CE)97zZ?iv2PR_DG8`M>zROoqOY{GR-E_&UGuZSlY2ub&;!SMpu6^ViGl z`u*Tv2XE!~a4Nf}!Q1c`pg#itF!twU?;`w*;U(}=con=BUI%yM_i!tEB;1bwydMb1 z@Ewct-eP>u-~7BYpu6(t_%Z$q{9f2~?BCCOJMr^A&v$ALhM{ zx%Z-fI^VSn-#Hxp34i^s!tQMJm*UUkKz3J@=I3b7{%ibs9m1c(Xm)1c-8Ill!4dQq zXLl2RPe1b=laYIx_iktBO1|qj-fctfaDFdav-3LNGXbtbz9T>P{_O6@dk^vFu^!)Z z9Ne0Bw}Ho!Ka=|k{PnaU-|+?h1N?k%;Sc1!)9DX~i}CY(PVOvze}B{e2Y$`_zmnSm zUO@gA?oW|_8m>TY8@_WlzGGYbyZL?f=l%eCYJN|bvELehBYw|A$amr0+1Y!JTsQm| z&{wl_8+tPII{bY(lHdPJ?9WO69CGK<>%;wh{#@_i&-E|*{rK)_`MqvJza#Hl%Xgl{ z@Bc6Kj{JRa9ly8bc;|cc*8IH3v3r>Q9O<8q-;wXROF8b>qZelPV*F0z--O5N=O({A z`ESYJ!Jprx{B`yVKi^Qk?_9p?RCe~pKa!vC0(PI^_jfVBuRYoMgWuyq^iSoxTCuwz zxijcJ&7aFReCL+r_TYXa_f7cz#prK}9?Z}23b_yPFXTI};y#w%vi$RQQoe6~e10vh zHr3BV?``gV`2Sd9E&e}BI2As`|6utS@3-Rr!NS&XHFDkP_kb(HmEme|UAQS6$W9wL z51bdy4;O$7!iC_%a1ppDTnu)Ai^C=0l5i>55iScm!!EEZ><*WQE5Nnj+Hf7%8?Fb} zha12R;YM&{xGC%dH-nqQE#Q`LE7%uq4Yz><;4*M990YfSL*UM^ExZg~4zGk)!)xL7 z@CJAzyb0b6Z-KYL+uB)k*e1xLZr@E-Ukd<(t}--jQ;}8Tp0F2O39brvg?qxGaBp}BJQN-UkAo+}Q{buaG+0E-+({C zp8WH-7hD1VK7Q}R`EwtK?#+DzxG@|6KO^@8{25MwZQ#Y^uY}jbTjA{FI>F9x1mAN$ z{D*uSzJE5jD140E{q&!N55Yg+!|)M!3A>M>uSGwBej46}KN8*pAA--2dlo(qUxF{g z3;E8A;4Ao(^K(oCXM*Fow?mIXw@1$nKgaKg?h41^kAkD&<$QNp;U;iX*avO~ zH-}rozHn=}4cr!P2m8VPZ~)vM4u(6zec*oZXm|`f4xRu{{D1771)x+_*M`AH36-$H z#KsOR#sC8o#a2{6ukBTAvAeswySqC+ySrQLZvV6Qe%>?ZEbiva%)NI|{>z8=nf0!< z-nI8WbLUR*0bCXKV4uU;_XqG4@*fd@3_pRN!YSaPT(2*PN5OC4x9~eSHT(ho2=B+| zXX4-Bbg(C!kabT4Cx#v1%+z%vo{e~N;;wKm^bg@sI2HM6;Iwc$I6YjN`ek50xEx#o z4uC7dRp1(MO}G{u1h;3-j&Lyg&cy2y?@7ED+z5RWxF7na#0L`}0*9dYfrHT3hU>!h z;l^+X+zdX%_1l7Y7 z;+Ki9BOXHi4a7IXgW+NDE&ASp3-cGdy-WN)+!nv>;EtTj(fI65d<;AR?gyuVXX7_5 z@$~R4d}kz{3C;{pB0mT5oN!)v6TX+gTj6c+c6bN86y62zg(ouSeB!_1sp##P*B*`! zCxR2hNni(f8vT99{vhgjd6B;C1kNcmuo<-UM%kx4>KB z?eGqGH@pYl3-5;yz(?St@GP;g9fncp&FH zA?yGrh23EfI2D{4P78a&UT{V@E1V6^0e@%y-*8d%CE${9DYy*m2bYB_!2WP$xC&eq zt_IhDYr?hQAh)?&>E_gS*2i^xCfDgil;Un-d_&9t5J_(Ui6I0Nhnd%>CDEU-761I`KOhV#IA;e2obxFB2z zc7T8KyzNDP{w;!jKHn!7z)Rpm{Cqo{Ab|z+z--Gw^zW?>)KS5uBcp>;J z`Xbza7l$*FUyisVbpwc3hwWL%VB((C%?A%9zZCnqle$Upe~5TZ^8X|5K>j7-x8N}9 zJ|J!&{*-up=6wm*U>#?YKMQsz{~&XwBEEtAT=;fFKbE?a$#>#9PY;ix{%Ck7ee=TE zsXLMUedzn^oY4EDAIY3AxE~+J{626(>O0eaIQkLrDfB7f)36)tME@kr`ILA9=HG|U z`s6o&JCWan_(<->UKasn*N=Mdokx2^cU!R z5$;d_KGYviU03vj(LcxMP~y3X4<|kXZVV46zdkYF2;&0)1aA)TIK)eg_uJBj%Ncz5!D5${FZp6|2q;7Ig+;Y8>k z6CaN6qpbTk_%?hK?h1E|jQ?N6lfb1}=Un6`MLz%@2+w9+e-K|v-#qA- z5zo%LFDIU!_#XQDP=6))ImpidPeGrP_-f)_#52MT@S6|6nb7Bkw~(KQcp7{bqW&i0 zg^6dOZdUjUT!j2k{GR20H9P&&Qr8<_%S>Zo&ay*=lPe!a})Q0^TGMyqHt+gg3H4dV1GCOt^`+sTfoU+CpbBr z0!|6L!ya%dI4ztG&H#JDUT{V@6Py{&24{yqa1KAhU*PZX57>_S_HcYS0h|y{3@3pd z;2^j*Tn7$@>%#Tn25=*|G28@h3WvbW;O1~vI2;ax4RC9?4crcH4|jnh;I42txCh)5 z?gK}{ec}G_0C*5Q6dneTf=9z+;c@T;cp^Lro(xZcr^7Sg`S3z`IlLa;49|h{znMP5jcwa3y2qk7sDmt)$ls_J$*M2-w1z3{}bMdeh0h<-UlCm55i;U zdziR4{F29;xro0e-irF!;il+w5_cUCBy2Xf}qHY=V{m_>s z{*`!F>YjtU!4;`{k$89bDqIM@4&Q)h;5!)ZjlLm%`w;I7_k)YU#o>YQVE8Ejrm0KMGDm-}L0CC0>bqPvWJC|AD8YUqs&^ z;!B8^C%%mMWa2A`uY{+dUqgH`{;$Cg;c?X6MBSn2XA(b1d>iqu#CH+FHT((w41a;Y!r$QU@DKPG{2R7o zJ?-ImZ~{0HoET05JHScdWUw>r3a5tC!s+1*uqT`e&I;#(^TGMy0_4z5-u`&%npvy!7{h&!fK&Uw|LMm*B$GFAn>{CE!wU1=t@BfGfh4;3{x+xCUGk zt_9bI>%ev4R<-6=i^317e;e+AJ{|lHeHY>-;jVBuxI6rl`XAxU=p*6Ya9_AT zJOCaD4~2)p!{HI|NO%-H8Xg0Wg(tuh;mPn6cq%*{o&nEE_e^T1a8jzqPz2cXg{vQbi9B1G4Gcyhdw2b$6a9$ z9;c@zev0~@^nXgc8FSWQ&WzMwMcwDT&%PdWE}?HG{AZ(&m#2SO@2%I7nL9S;>1f+zcqE+z!Lhh`1Ygz zK+a(W^8Mi<=vz^L1o4q@0PEff|6|ZkLEi;^3f4D}dCS1{(C>qd)Nh5)iqt(ser?uu zHtX34{VuNSsr0RqJIeYmmBc8 z8GQ=s59HhyVPDsv-%b5*tn&lr{z3c%@d5N7fW9*RZ?cY4s2h*`8PxAX-OS9}migDB z|H9+t_~iGcZ)fTrC%%mOhuP;o%C;owb9LJn{ssBXhPJT)1mx2#bw<>dwBYp%v$NKiC|4RH` zqyGu&&S3p7QhzOVTf=9lyPW;(g8m79f|wmdpq&F^ex3Y?xucT>b}PRG3tIH?!r1QB3_pI zOPT)(emhZj1@n60e-iwS@56J+k7UkK_#K3PH-7&x?_2u5M1PsS1IWLx^P=ugd@f?{ zJFN3&^na+^gSq>{#i^T=y0zgJ%v+rK_rp!d-_D$K@Y$2~yhFY}`o#G3W!*2r=h63^ zK76kJ5PlECN8qFIari%Ry3p5+{v~>axG$UneG=+Az)9g`uoLVIr+`z!uCP1o0jGx3 z!Rg_Qa3(kloE7$lv%@*zTyS342QCP=hdaO>;ZAU8xCZ^jZ@3S<1KtVm zf_KAv;QjC+_%M77J`SINbHJzIGw?b1JbVGZ2w#FP!&l&I@OAhGd=tI}--YkN58+4f zJNOf9&;4dRI1!u}c7&6|r|BC8U*P^ZoVWpgjs6|{1^xm5g#W-7;al)M_&)59@5=B% zcn~}U9tIDGN5RwK8SrX&4ZIHC0B?l1z`<}`xFOsKZU(<$y)$uM3%~{8qHrl#g3H1c z;F@q9xH%jScZ55^UEywUHh3!QdV+QBhrT8HujntqSK;6AHTWjnY=-c-^A7P-@M-t~ zTo(W3;l6M`xB~o``p@C2=&Qja;p%V{{0e>pzlBG`W8tsxH~2gJ1O5sBf`7w*;PLQ8 zcoIAX_Jf@{*G{ktoDyyicYvF7jyn_Y0r!Ucz%}rnmG~0kIf&;0^FLcn7=--UI&!pM-C~58+4fTlgcKnEPc%I60gG-cH@2@KSgmd;mTO zAAyg-$Khr0F!&Ta5S{|BfuF%I;Fs`g_zk=kUI!;+-KP;xLfipP25%zYnYar)0R0l! z6@5zB4R(i9!KvYNaC$fc>;-3pv%%hQ4mc;A2ljyrzy;w#a1po|>uvH6p+5{iM*jkS3BQI4*!D3;QJZz?9{(YJb?Tl^f%By zh0BreOMY#58v1I)8xVg^d>ru*;;o2hCSHelV>k=?JDkf7a7Q=-?g96N2f@SPk??4E zEIa|82v341!&Bgy@GN*PJP%#~FNBxCOW~F9DtI-#2HpYhg7?7t;6w0X_y~LyJ_(63-Cqw3Vap53EzTm!w2EaJ;UpaQN-WCU*VtdFW8Ry3E^b0Gn@hTf-}Lz;2f|I zoDVJt=Y+2_Zz;HmIq_!+zxehp89-@_l_1MoNa2iyuC4F87zz(Zhr);B)9 z1WpV)z)Rs{^mQSg98L|Vh10?5;p6o6BpymUBk{$=$G}<9XM?lDEy!OE=SH6g&I^wx z|1#VaE<}D&xEuQ7#C_qCup{gTmw_d?99#kRhbzLB;L30yTotYc2f?-BI&fXM9$X)8 z1UH47!7boWI1FwH8{oEZd$(BFP5cZz2>oDq2t1Vh+3xo)0^b z|CIP})x#s<67XpF9rec&F964bJCQ#Qz64JpKM~v*o(_MYZhztd@DucNiN7R1pZF)@ z3yFKft>6gwJG>lT2Cs(K!n@$z@E-Ued$KjLk8TcH00lo-dg0H~W;G6Jm z_zrv@egHp&pTf`J=kN>o75o~01HXemz#rky@E7hO@v~;e2p@xDZ?zE&>;Yi@^oqgFN59l;^{fa8Ad; zX?cD;De7-7V(qJ??v6B^gl`6mGEuy@4$=bUy}MM z*-s<+ci|)S_oHqu`hH^W^5{39pGx1%^sP+(e)12%YspUqSEFtL;-#s38a@lp#s6pK zzmEO}JemH9@LLo8WB3VN3pP@}HTB=3Z$o@F^QNV46Y@jg_2d_W?KsD+IoW{Q>&6 zN8cTN73yE%9N(dCQ|cPwyVOkpAEj<_)-eFTC&({}zBF70_Jbw3EL;vQ4_AQw;Q+WI zTnVlWSAhfJs&F;9I$Q&;3D<&y;M#B zRp3Cl8vd)pHQ<`?bNb(6U4zg+Lw^VTUHAa|c@S>EzkjeHyp_J&;CB4Ej_u(Na3kvP z;vDaW_rQDM#?);B7v$ehSO_i*7lDhy#o*$wFI)l+;2%UdkoBxYyfRz`4uq@1t@-y8 zwt?Hi?cnzCHP-(+d;_kA&z_v~UT|-?4;%?sr~XsUb4B8}xgOiH{wug1>vK*!u#QjY zJBNSYqd)z(qhCqi8tDD`_b=8W9t6MO-}$(Zc^AQp;VAN-^Y2M~!N03<2KU3W;W_YJ zIEuP=m^&3dQ^V=t^l%2)g@2!8aySJX#r!YfR6MSIMf?rlcXu)W9(XUDlt0h(Ep^|) zhd8H);oa0<$#v?%x~5^?yX@yZI0?QFa$aAso{p@$6YLD{$NypKJJA0W>p7R}ISq5a zNB^AoY2xmz=PK6SgZOIJeHFY0UJI{-1L*6?daq^fT|DmH1Mh`zvfj7g+wdLuE_@H( zN8kOhKkK`WIoHDzImgSnUta;Qgjd0<;WhADcpbbRe#QBI4Znfk!tdaoJYMVt_lEnx zpV-IG@E7Cn$=tKx-JHv`T-TAzotXQ>$@JYv{oBM-bB+(O zjy3r{UW-46w-NWVZKzuleOuz&`MI|tb$imkH++lx$Gh-7I0N6$UGbY5P6PL$ed(@V2Qa0az1CW?{ndK@ILMz2T?Z{>z*6V3;VzY;UUxy;#@!BelZGu3BQH|S^uhV zHMlxl1I~~C6#P3qe{nrlXU-hd_2isB#s4#S1p7Z4&Pd&xobQR~?-LJYAII>xzXI_F zdK|;|Y5Jal&%zhr%kUN0nLqE@1x^mT!nN7YI&e*{*IIB8987*)xE}froWqWAXSf0R zy;y%o=Iz1#WOwvE;GS?V@_%yPbK>_L`*|L&!8%?fehIFLegg5UuoLrV;yNtN`lctI zg8b*4b2sAeh!5s^T!i0O=tmL1!*!g8`%N!=*JC{!vcLJrpT+%t0pf4)I~)BRxD)IA zojJe2Kj2^RZ#W*W6UK)Vz>V>_3*XaN&*|_CcqY7?x_jV#@B#QBd>C%Z_wPSkw|2y{ za(|wQb?nD}pC$hsT%PAa{W$kqSjV!&D~QzfhXde>a3%OWz9sq^+5a-ce{x>4u)bTF zcPjiEeR=9fvhM!G1K^5qCAbRQSJxT8nc06k_&4WtC+BxBT$=u^c-(mt{Vg~f|6bS} za85WEoEy#q*I?e7un+p{tm_RpKl%c2LAVfnoB6k}umACV`6PS_-b(%r>bK*Z=S1(v zb$AVZfAnuT?`ODfzmoqA_GTTk!@XJeT6}-K&G+B^%srOABjI_hZ!OMYUVI*+em>&m zIRAg>TOa@S^c^pqeN0LHJNT?jybSrBnEMU;Yb3sneSg9C{pGW8#Mi*<;GsM} z*_!WbF7P7G6Z(#qdDx zXNTbP2G{LPxD$0BGWT8dozWlV{(2?zu7KC$yEf-@6Y-Jc592x=iQf^d?{?~b#CIs` z8V;|5`%!m2-?ulwgP8XNkM|Ga(~rKceE*%nHqe z_tB4Ie;*OAiSPCJ+yKAgacwv1KjwTtVSP7J*PnB`iMSo-G%5Fw@rh?=pYPH?FW<*q zsQVE8BRCAd3Fv=`bu^$~4M%Yf>$Bgh;d|`wL(csJcqIEh3U*Z_Pof ztb1v=3|tm22XEs0<`#G>ydB;F?}RJR*N*oW+r#nT1aLw)5uA#3O%11oFY>r_4EKX$ z;c@VII3eGcN5OaLzm=cY(-F_c^Py3k$3|So_lZB@I(@};`w0Cz_yhbAehe?>e)J%H z6S0m@$bSm^aXz=PuFudvhaa)dQJm+;#7EHC&*Igq*|xZm&0 z>!9~IpIbQ3PdWe3;ZFE`K|C?*p9Fr1z6t){5Z}i6kDz~3@+IQ$S=W-p7jgX;;k*}x z)3ClP__?+O`jW6W`<;~Q(*btk{k+bw3!EHI0lUI(a5nbU8_o{rfOEpR;M{N?I4|r2 zCu2PwwJvxo*I{e+u?^f7-bQ{dUZ>0r=YjLWK5#M4VR6_OE(tsH_vt#mtn|Id{vRN|hy0wxFEi(U^qZNpIQ!m&eO=3XAExdV z`YuI36n%NF<8bteS=Y6kd&5L?9?)1C*|_W+4ILUL9X$TJ3oY2V+`x7N+aK1r{Gi4a z<`_8s;P(48_FsLD!5y|9w#SfNMr^+Gh{gefCw9T`9fmconB3fD$acdw-?DL~hPg&G zt~|1Fl{p$#Z0Iy_l0zE@HmsD~nEcSjRU77N=sR%gLmO9X7?3FK4sBe0*MTz*Y(H@F z5shnX(J=XH|Fl1(am|J)8@e`hYv|t4n>VS{V2WRh|vA|TdzIjviVBVwGP$K{{8VQ?{MCH>H73Wrt+J;GRb5e51Owe z-LC(_yEj^9uZ!kO*RMBD)h~bP+K2M5{JH1F(;YTnN%~IQF_qW)rQ7|>U-f!JNAU~a zjXZGh#=T3@bq>nUw9H?-Za+ou^nBju4z2u;8$5RFyKD9?Nw?>B?=l^q-mp*a^!%RU z0Ym+oFJ0%T{9?a7`^Jv%&zhd^?L4q4AFgljl5~6i%1gh92MqOVebRLul%MXtP0yNn zVDFN2{Y65`PqoCv51c$l?~-&~C*?I?`d++%QvQ#<`p+`K482Rzbsd#op-Y!VI&aat zBwhap3FUSE((UzMVTp6Ddv3zsCDs3~8*s`sjv4jGzP(D)bw5y9!-&HXtd z9;lUn^W2U4?|Vnjl5~6jS@pNa*SY_Vp6UHZFT~Uz?w`F%(se&lzO?Sp{;SN}E4_cc z#RIAGn|;;w>CQ9vEJ?TbKkZNY^E^$D5iSO4Q z)ib?+-^3Fq<+VTQx}PgAf9aR=#6@{sU+MZjP+r$Zx}K;gzrwpu{-*H^rR#%s<#m0e>-$)FU4QAD^8`ux?^isl^VFyJEJ?TD z|5~5wN9qRL_}O)zns}kkCFyz`P}xHdG)y?Ge~VRxR$DgVY5gEqPMj_xJt_VMG9 zYu>zdx#zp5j~_dm$B*#%-mN5Ek0bJ5>B_l|>pNAC^zmhT^Yitg-{q^8ax~7l6{mkR9{H5!0SpGU6=}VaBAG&`? zw~ybt{?ZpQkKbWVw~}-{j%&WwCtV-B+Pri<&MU9;mp-?7{MY$O*UtgB9+(uTe^OZC@+8M)A0gSdG$-TKYw~mu=}oG_vxDc{OMtS{%C*F z^>ax6x_;927Y!<}^OdfjQ_3IGv-=&#t}|u&{IH|>`4#GVl%(tDnEK@}ePZ+aN9QYD zKj+l1^-CYm{QUcN&RJGHVw!Fx>H0aSem#Cj*FT`3{D$Yu)$Ym-yO*Tv=cMv_e3q`i z_*{8iU+MZes=V%>()AZTD6jL8uAj5Y?=}7PYka?8xAgh5{=y^W1ACOD>*uiYTAy_N z1u8Z#T|cL7Ub;TWRsOx7w_9Y{DZ7`X>*u)gfj!cn@A^NkDX;4<-TwSnzv`FK4MXXA z9-y>+esGr(Id&{bx6dEK^Rq7L^M}RF^M^-o=+yJ&VVz3S^*loMYj5<%66>$pA$@*v ztLax>x_$l;p5Jy!pMNZ5o_{DWUC%=_U;CGSgXs^ie>#_>+vhLZzw|!l`O7TN?KJ&# zGfh^KuIDkDfBBE6owfUi-}RGzwdt3?bo=~A=PP|q^ZX|~zwKO-uIE9Tuk)3DnduL8 z9ZS;f^C!)hKC5~Dr1O`q=TVyf`5(K@_;Sxq>GP`#O~3XpUC*=BKk--BZP{htcIoTK zUgr5%`2L=#Bwf$L)UWkRKgaaH_WqUM%y(s{l5{;!Q@_qvy8b|~@_pYLdeeRDOj44r z=W)shPLe*qJKa40)Af;VpZ|saj_LEi?&kGxczmCrBwfz~HDBi|{Y2B>?w|9{cGt`j`lU~5o__|P2};uS zJXHQ#zx2aRzaAf?+vl%WuDbqbd)+!&`uuf5^ZZr!FX?(7Yv)Tp$n<~l>kC)xH`h=7 zq}%7euW$G6Q@j1zE`9#n&OHAO?{9P}N!RmW&3|V3dCz&__>Lv%`KCQ|VfsV9V@bN6N2^b-52WvDo_}9>(M_E`9yD=Dx}ImNU)M+a&!+#fb=TS8 z&j-gVN!Rmm_3QdeA7P%qYkku7Jl*z7*B=m8Uh9*t=kdyGzI6QoG39mtmagad%Bx?x z{(yk;x_;92IzV~#OW)eOeo()3y-rZS9>1l3V*0gy>3SWZ{)Kn^>!h6zpR^=>n0fu7 z^OvsI8S2;lSNi*=UymQs^*TiTx<1l}@BxqVdVH6z*D1>D{G`8S`t|cex?abqU;C4; zKNzmO9$%!}*FW07^jFR6C*`H+wLf84zO)Ag0E z*Kz8Xzw`m-^`Guv()Bt|{W@Ri`itR}*ZoJjUI!{Kf9d*%MU>a`59xZHsJy=arR)EA zr~LiNpDcNFrH&=(dL5~}?tjvkG@qa7e5LDkruwyh>G})lmDl-7*XvN_b$z5SYTp0V z_pfxlPF262-$>U#u%o=Lk956`RbK0tuD=LD`OPkvVXo(wn6xC_zW&wvrRy(PP`~oh z^*UJjPfl9o_W8G)EPZ`E4}b7n`M{1P>3W^4ysnS*D@?zxuXMeRR=@TyeRe*ew|VJ$ zovpkc-=tq``a@mEl61WeSHG^0^qI~3?>ax}_Vv5&U((Mr{qmQt*YTRK?+@wv3j~zc zeChV}zkYtHULWt9m(lwBDcb3M0GpS-2}a8InW;m!V^1HyBz>gGA9u;3FI@B4geB=` zo4j71N!R-b^4IfM>2H|+@c#RRCFy$qLH(L9eHs$V>-nE_y$_+h{H3pF`t|%xK(qA_H97j9pdjCWH;rjg0PkJ}rzfe9r{*US>UGIY^uh)mt z2bq3df9ZOkME(2sU9Qhtk57<(zH@@>3Sc=3SbW{o(#KVM+RvreEuquJ?J=|MZgk zZF%nbKlhV9DevDXuluKTy$__kzCWa|Wcqdgm#+7T)UWkPKg{&&`byXPNb1-9OZuax zU*{uT?=z`i`;)FeFs!`JU%K9hQeO98>C5x}lk(yH{qaiD_5PLe@|S*~>DT(C>wPTs z>-?oZVEV)P{n}5u-v3g+&R=>v-oLVW>3Sbbd0k)W%b0%cU%K8WQ@@^{OV|GaTzRce zy52`qUe{Op-DbY7k957yrhYyCN&mz2>-$r>-iK3vcz*j^Kk0pW|4sR@{s~Ib_5NKx z-!6UsZV%J1^Odgm@zk&VNx#kX>;5HO@BgV^kFU~yHvKw(>3Sc~_Df%w_y3gFeCc|h zP)h~bPH<*5X|47&SjOy2X>ED|EF#o-N()B*1`ZZsAAKt%A z^Zxy>Kl@47`;^M-`Hl4LO~0;>biI$MetrK)zuNR`|I+n7r~2hDeU$0f`lRc9Q1$Ej zNS~AUKb6;f>3W}3`SASr?|#x7On>nIwx4vpkE(uMKk1h>+25`tUGKlDUq3&j>;LGX zyv|3u-iK9Qk8jdv<^5OXwSVb)pH}&>zjh_*Lrp*VcGC4euKM-(ApOEfzjVF-tA0Iy zmahM!oAO$}biEI3^U{0q{;l%zm#+7Tl@IT){N7Kx{tp$(|F+t&g%8@XeM!3BM^;|f zU-~&_zRpj&-e*?7^3vZj{aU|ty$`K^-G8J{%lpU5>;5BM?^7$U^-JHt^y_@2>wRqX z>+xUu>83yIZ-SC^z0a+FU0><1ntnaMkgoT^)vvtt?!5o4y!@r>eRAcsf9dO(eyv}+ z-bYuz{H32{`jwZi_u192`O;sA^h?+K@aos~l|DItuwQx2m#+8emDl5k^fe;=()B*R z`n7)P$C`efpLD&?uYUdflK!;m*ZQREa{${feKOv^S6=&#l>HC`bTAy@%&Z7SC{^MW$r0XvlR6hLqu<=XM^*N04di<6ChncVI zCtaV@s9*llm*Ddk<#qp%uFr97UizMvJCU>;5nO_DH{UeGa64-M^&&Z2EQn z()Br!`jwZy2!H-gc|ATz*XKye>-CrP5vE`F59#`xN&R~Klzx-x*Y%UG&!N;Wf9d)^ z{3);fN!RC8%Ion#`uu$Uq`ds4>vJsS)h~TV)356*U7vHQUwP@*n*Q+q-yi*?>vJ&m zYk$)95A7Am^KLx<1EKUeCXz4>$d~e@NHoeCpTvOTXCk z>+wgrJ_l64_9y)V)35bQ*XM-l=l+-e`O=yA^QX$|{YmNi98r0lpY$Q7U-PBwb4K-R z{nGUpkSZV6H$h3dK8I9Z{?gwv^W`sHpHtd?>C^G~rSiJ}O4sL@%FAE+hNfRXpQP(^ zPW9{hOFzT(>wKl_b5Ql``$PJxreEhLU7wSxU-PB+m^O4Mulu)jeU57L(g&OV@aIqd z>?d8Hv#Ou_Upwh1n||$2x;}@^_fJrg{(|Y(`AOI3wCdOXrB5+ke*apZbbXGie%(K$ zuW9vLe`b^n+Cw3)BRXX*Od>yxg}nboiFAL;rF-jvt%ldjL9mDm2HKOUJcU7u5{U+a@T@eKLvuldsT zIkx(>f9V5Ezs^^>KIc|{m^ML4dioDramUd6f710ixcaqz=?|Ity8lVn=j7^FUix@^ z{;j;$CtaVT+r0E;O~04C^4gzteGad@)+ha5GhgQ?U7ypdU-uvB z`iE4M*L>;v9AA0eKcp|k2l&eCe5LF2f917){}&IeHL`J#`-=zqHcUQnyyPzd7})8s z#4t zfAdneUAOA4TfNRpbHwUa*;d`!C(w3XsypF&omai)RJZ%KYI_20*U6s9zawtDF8_|} zFs`qnUiY(cZO*^#eo?RUZS8%JEBk2ebCQ3(&P#Jd&2QuXj}xfZb+7lF)}AMS@&CuY z<-fPfw(C>fHLKToX^vRkD%+}C>jdg`J=*5fb_I2AVr?#MUG+MFw(C^gN!RPVG)Js% zm2K5+C-Cn&fqLDK>ow=!b-Mq()wErwf9EwDSFTIF_R%({w)=70xz%=V)pphEoU2_| zwe|Jdhn-{NYS%rk*VpTODxFhl-MD^T>b1Xmo%gspr?vMbf3fI(QE6R~Pg}n21pdn> zP_OTUwmG%kOX_`YtvyfvqE5xe(rcys#9Dod`s8m})c0S@Yk&W>b=&o}?ZckPnB#h# zm*$9LUR7ImTswh!UH5v=Y3+IPw;b2*AOF?;=(_w@*I(~-*Xz96=G1m&$JV*E*4)NTg{=hrr`=@V$X-c6s&*jDRxUE1cie&+zuxCouk-r1&1vp>D($bduHM%@HqWlt#<9LO{l9$z^}5cQBevG5#r$J>t?OuM zzt}p))j6%bFZqkH^KGs!f3e7~(mLy-KGEiFTxp%{i^VPN7n{?jx1B(1oIu3_+ zo%}7U^(m^i{)&tGs?E#SvdBmEMRos{ ze7)8?w&v7pZcAU!dae84Hm6?esr7o*Ykl>e)7tY|+h5nS-g8=ep8Q4aGsa5mV*T~f z|10Y(I*)N>AKK@*vY&eGV{FZ7t+}n`tNWLzIimEIru@a0_LrahMd>X~`CI;5=4f5b zT~AB-G%8hUr@Gy@RoCmfw9TpQzNT{%YjY{?YHfe5plD7}UOq)^ zDW6*BwDkOz_KWRnY|Uw{xz<;)7(0h*^_KRF%^z3iwD!K_FUHQdxw`zt=K96@3Q zuT{7Hifi@zxA)a+e`9M-z2^SguXAjD^*WzQ=Tur3+fQrj^;%zSPE4vdh)=ESbRn01|-IOgiwv+@^fcN%l2{6$sU zSbD9LpIEC;QJ?%Ri~9a+dF`*Y*BzS^(`#K%OZ&yv5t|d!V?ITCOZyegYw7%def>q} zQLp{kIW{g@=eVA)*LjRM|N4H~_EFsxtk-#Ij#%9)|9#bCYae54Zga0d zz1CgtIjucU{+7+X9+mcMZl(4AU+c#8b86}RwX|RCepjzKvH5NK*gb)IUH@@)PQCUO zyO-GcHjed4ueM%&)v|3)wI>$p+s>`++}sI_t@}Z1&224Tdv6(6=d|{|TH9aOX>8AF z>G?6gn67iEmM!fUn?JVZwANhft5}SkL$!KK`^DzB&551NnDue>+**5I@)yT^%C%?Z z-`dm)TYFBu{IwskwdS_Azt&x^Ihxnn)P5{mdTwj`YrXZJqq(icadkhfbzb%Mwb#eS zEwvu&tGK27|DBn^X*XOjzH(`{W*+)_UOwmI6DShT)s^YRs| z?XR?6{$f#|t+R2gztXx`|NnP=Tsc4OqlnGD-bMb(YmSYj7g2pN7WG$}kNHcNkK!0r z7h|kXdaSQnU4E9;`V`e$f5k<8)#l}EX?<+o#TBiLnxna5t?Rda*3ZVazS7wG*tk-kYU}DfNAqH=cKx`j~F(iemYQMfJ7jTiajjvU6;#y5_RAeC@h4Cq`ReYh0_p z?JJsJZN2qVztwH5I??7^Dwe-x%-_~2j@3(7ohUshIPjQT@i&1^CymZyYsJa-{7t2eJ)x~u6S*pHPT0a}t>TCO~uVP!*+*rPr z&GohY)?cyeY%IN6%Ez)=pQ3u}uh{lUkI~lKxYE8@opkvs7Gt{dma4Cn*3ZT=X!9)<%U^6MU+W`(QF+Cp^jaw& zQ9d@7UMuA%%E!jiYo+|eT78Q8V~sQy@9y6R$7on@utglI?YF)*w*HD$XQ{lU>ZIFPx~1wYZJpvu>r^jR+oyWa(%* zS}8xVR-d9i`HMyMwdUn7#(b2IG1ezN)+b$cqSbAzI!o1A+B(IyPOkklkLnaxO7&T)U%KL2DW4+7{M8rBOIMwx%`3K4pVe)wIx&{F zdbP3qMcW_KZCxx@e~hudT6H_8R-d9i%_*vDZhmad(Oj{)`%u62v$5)$%hvL>>#Fx0 z&5O~lui7}~E8Y4@7i~TktKKqJFTJ_->X%=PsuN>%(p6`ve2lGKZ|7>B)orXg(dLWd zO8ZnN7Wvkimw$}bx6-=i_O;X;yAB&`j&vJKw^W^I^ES41Hn#PORVPZ1(bn0x(!N+- zb9K8O8#mWq{jKFI|8bq;+WBceVx`xwwd*Tghpnr2UAF(<7HdD2Expdx_SbqfM{#Sh z-g8=eUTgce)^!+LzB;c;sdd_V>6W&x(pWyKR~)12DrJ#REHAy#Pi>WXOV6<5k4f8}F-MS1n9 zE=JXfs*ASKAUtKQPq*;w^fx3TJCwDmStpVe(#X`Ss;Txox-E~d-hQuVdc z`o&`TE3ddxs;`JKKlR1((p49u>O|Eku9WJF(fX)Px{akD5v` zme$ASZEWjpZ0i-PPO)fp#bT^Zx@D|SdbPCvisfTt=`q@R#WBWwtge2m+gNp$mDUyY z$;Z|yR$i1Iqv~R;v@cdCUH*zIrTWC8zF1vMZ?2zwEsK1Ww|%iVRxiDX)>rk_>guzM z`KZq3ZLGRVY5S{u5#?*CKC9bUbuq^3 zrK?YIjH0*(O%@_44 zZz&(ED~{!*i>i+?Rwuny+IjMc>B?8jn4k0_ziR7jy<)Lwp7OR{v1P12rmJ817*!{# z&c@PfrToNNeTw?zFWP$PqVhJbRIj#AzLiq`qV2P~jct7_R-b6=tZrjlAB)u|#_F1@ z%U_K7DIa63PrB`sZfWamZ0l`YX}ztpv3x7lZJlEIR7>?&O8Ki^aivsW5#^^k#g$Th zMU9$XGqVl5j zBC6gp)>mnr?YDi3ZC!I?`C3|Eo42v8x3R5PtU4P@ua@$$Eb>u(QJwOtw^UxVc^j)P zMq97g)=Q63^)?^VV|BJZ7E8CZzBX39)orZ07;U}cqI%_v>TR9sMddAR-p00GvFa?9 zx2&|Ts82q&PO9ejD4qYGe6{>W{_JE!7uetX{h9 zi|Mw`#_AJozNKRMi`F-$+qzh+e#=;WbM;E+*g6}>)?w=uS6grU6pQjxTtr(Ri=|su z>aV_7z49?u+gEM9=2qKRZGCg+*#1~-b*)o+jJD3kMSZs3#_G4aja4TqZ>fBYs#o5| z(naNCRGp>jrQ2A#rRqeRx3R6Wv8`8JX`Sk8<=C2|xniyBw|&;n#u2Ml{#f4n*f`eLTzzcMDVkrDxBIWQ-u71- z7tJZk$L82R8^`*Zt7}dX>pe&7sdldViYQ;zDXx_2E28{VS7~hP)E}ejMb#-TqUvKT z>aR2(^Or6k#WAWb##oSI)$s5-@!Qhk=Oe$~bDFKpdZn@Y zi&&{&QC)0KQD3!rJEzwEqQ2(NDe_mo(mA%y#`23%^|5?Q>2{8d?VO^#tyf%YpZY7M zouk;YQomT8{FGNLN^dT$pN*UAuYT)mW7Rd6t>tUi)ix)bfIXL@Sm##6BA=psk-zft zv9WYZTcMUdR(wkeae)(A{Z)xjnZ0i-bJf&R-I_`HddXb>ZIFPx~P1NsuN>%F}>10)rs=6v2@F7 z>ng1uTXXE(Sgd`BmDZ_VjP*%ZT@j1wm5;GffAz=em5;I7zG~|=x7xmWk`>SG_2`h^<{;G(VQFc3twR zwomnhMo{k6_Y=TurJ-?7dA+Iq|9HL&Nv4y*mseqg)szoENq zyWQ~3ciy4T4#T(Js$q*AciyGXu&s9)F=YGUBX-_;=q{7)Fnsqlw%BIU#&wDc`|mn* zyRC-}-+YG^lJ?Da7&?5?#=(a)t~;o4y%kHGR>MSd9?-b{$i@xkXz0+;w_);u?GI_( zuwlxEt_|H9x;OMVeAg{>tiE!ik&PRtl>^%!+PF!RwTCrsy2XgbAzKWdV)&L@4j(#V z>)nR4`XP;*4el^p>uTJ5@MJsgI%20?N9;0W!C^xhw>V<(L_@aRdc=_R8;AON!$vj^ zck^a$n0&R3dkyS#XycYYQ6XlUrLh&>4)jId>v%ZNaqc=EO`U3AHv~>w}==4#Y6Wv^BEcb+Bznt(TU0Zp)t4V%k=4hxFmCOaB^&~3_2Hr>e zNrLiPoIx(m1?dXHoNSv{a3>pJg7Pl>n$=d8S#=l{(oPEhxy6Mbl;u~D$!K$-%yos| zt|Sw9KUWisRpXURkZ}ve=`xa5t&Ll1(?r*h4h^+b=7La`S*Y{zqB5d)D+l2Mc`ql1 z9$AMnzIue)IcvYWbWLGvIfEv8G{>d10(Zl%pouMbw_1AqD18xGTUd1y0h`NZ{N@rR zh;G%%GJQZDZ$LU z=}VwXsZ3QqlM6zvFAc@{o}jTYH_F}28Tg>WGS@lUfux2_TW5zdD_rF?a0cGhGuU~r zbegYlktquWh+%U{iLdhu4MAA5yX{>=#(gDDzoSCN8TemGwYSa&zR54g8@QA!^F8iM z8YtsuBwu`H^d6OA;O3=nnZUOzlMC`g{er_z!(ze~D3U?G$FDGdN!)tJk+MBWb<88_q5?AH-IW_JjeUEVO19 zn(VE-(0rgp`SH0j4x|aU+)=44dlqaYx17vTrK|Q@c4+p>h1Zffh;l&E}83b zTS~iqvWYb~^Rm0UosOy`6MD-%ZUL!*_x2U#FCpoylV532?g@!>q23~txtrx%$?a^A z%ZwpNJ<4;OZ}`Q8BnZ}l~eH{lIo-c4{nAY@2U(nN$79siz>4R;-+}lz+B+#l`m&}%ji8`Nvfdl zbIVPQ%X84!j3zkxU+VJ9Z^|H4QkDeCikd33Zb_`dF<6gbIXQzG0(TkxLj4BZ!ju2` zr6gaqHlI`AWUbkkW`fWfEL?vRJ>Dz%lFrHX?G+@Z+23|?qvIhR#T{`THm4y1x zkXu{Pa&jxk&hd@GHn~~OxU&j#G_5>BJ-$r`5`uD%*ULRV9jx5V@~z}{Hppkv%5a0E zvkpBuf9D&1`CIy;N}oytmnGmn5frzWBoR(MA2@?Fqnr3B3{-o?m_J z>IjL9LAl2nS7hxx`HSb5cXx9mdmnV5B`@>#d6@SkoZcK%m_FIdgiwun|R0gAOL7673 zxgRvulUZo)9+IqV^yQ4cHq(=J)7>&>#NuR>tXYflH`7xJv%}X=l(9DVgKQ>ikaWwy z-OQ9Fw|yqR$xuutwDJ`nxw$oG++5_=h-D^7luRZQNOiTzf9|)-`pDl(W8dU06Fm*Q z5XznCR-?9TnG@5VF$AtEbsIzArnou5*4@(YoI!RuV{kJ)vhwC3;ASkyEvGqd>9+iS z+*G&4^tZ7tpS4Sr52V5%X6?o{;nu|3D5JQU%V~0GSc@OPm#_?q!vezmR2sd<-!C(H zD$E zE65)RJpozk_RFunl|Xe(W?3!@rRw8t~d?SEx4jI@cYU3nEhl8a&GaU>=q{ZO5LO_nIG9{TA-bV75J}yGrp4zxMDf` zBthm3w9}@_f^{yFEaLa{Z(ZspH4fhS@FKSaJiTPE|gj-Ey z+;+-kNuRILmvTn8Y{soM^E(aP3Nk^iEEAN=%9BG|Ig`Z6ulzzY*10)j2r4pgOY`&G z0RHoyPIrQW%>BTrKI0KCYFQ~~a%EXJmq@L%fp;z&xFsZMEie1ynEg71dlL=V1Kk($X|LrudJ8&udx{CtWt&W-u!r(B{uOjN^MkW6X3)N6& z`iyQ@5Xi>)`J?f@d}-p!g`s>^t?1=QpmX)<3WKD!>{d~a?+7F43_F~eP zPIek}ms6)NOoAX$rbuN;95VEm4T4SDUoP{z^rkq6o)9oD9;EBZ_~%woUMMrdY5Tr# z)9Fc7CU8lwI@1s&q3`#ZaI2j0Rh49dX)yOq8fyYSEfl92=kJ#3hb!j;w=(xT1b!V_ zt<$raGzcw}sWB9Xj`AEIr(c{yIbbWnARjbgpjD;i$&JwDZuq^GQ!Zv$w#A^lV(a=;##`+UW1h)cz8z~?dQC1E@xp$XA zuy79Lve5%ga5bSrLmippO?<$dkO>{-vSgAgVxjrKf2XFIe2?!6Gi2bc)4-W3aJT%g z@|-ca`7T*E5%~2wJLl%UhMVOe?Fn=wZE~PS6`AjYdwZ1eI=X-({HlAOBi_*1KSmwNg zmutWPCF72JTHY;pyxG7FOZU@s4|cB7*M^o5_^pLZQ(H_k?$OW(;Y&71 zJVO~rRPJ$2eyE$GAh{W$awaI~xT(=I1UWbLcr$`A^aPuth34ku0v(P<LmZatXrlhk;|D};1=hH^EJS0<;&XK?fFvd+6@tu++0V1RY%Mv-;PufQ+Buftq=mgyH1mgyV4Y~mzL z(22DN~k6nVxds^du4P z1FXgeIsyWfh2nBgSOo^ycrEmKh1uyG-yLdwY1z%MChc)EGeMF}7ZWU*;Y_N{0ZiZazUkKNmKgU z_xJ@NIY;HoD+nrWKCPN2GHy%Zcg6~@Y^FRXQL{a{AnW07k7k`)0YNBBXNDVYgv&eX zH@BQ`^2=qz7m@nW%6z4(_T_0`awEM>hRRfCbG|UY9JvLHtTh>|LM8-RH&>M(pVTzb zlP$}xz~5JOhxL8jVG|SY>x?u%Pa@`aHu@KJefPRLo)LsKwt zL6e6VoTGERvF{8e-i@B@P-m|)f71p|l!e=ayPY!#fphVd$=7g0ZW#CwgW%^!)7Qk6 zD~}E3!7tdLxRPvHurIG9QkKY>j0yazQsXex&v28pMbi^^)AoEruBrZFC9q5L1b;gZZx+h*2Yf5O6#&5w`5l4ml@eY?m+B*WKi?DvF+fS3DP5T8MiVj zoK6rjd>eSxeR0bTnZh8{l?{ArYT$f)fKS;vpGo@5J<0OQL2^42WR~NcvzZX6VDyYv zT$5X2vW{>F1YS}FX%C+dtM=CUwPhEY&*ayZF$i<<(sDGpqP6*6zhJk*%o*fXkPDig z6IPWPxZ#-~3AG$QECgQ54$bc;nW~j#=&Z7t{Mxda%nDq8)-6-!{6fwz71^hT~HbBO5(U+Mku7(>RVny|)0269Wv-PJ;-D6=_b!o;LY z2EMe(K-Q^QlRfmi@$Q#*ayPTOPi8ZrfF1>ENf;yyW$ksjh@r`iGj7hpC)13JLXp3b z=?SGx8Dug^IyppNB=6Aif5o;7f&<5{8@i*nsO;hGKg5qkwyHIvI==}d?o-fJImVc#N&JcuR!3oH9^!!dgkc+{oT!Gwy~v(ovNy=)FW?}4#29Kxf!gnBk8!14q9!> zV*rg@teKW)4oOqf366m#`+5azeFMH;kDJyr&X)u;=-jmTaUKshVq8jB&~31m`>$Zk z(Xo;sj9%xI+^FEgx7#MWn&PHeBN;-AM*N4HIO1#W7wb94Go+zQJ@hkPG&`I*hnE}8 z0CR}>F>E)~v!&cqP{-XrX+_Wv<>RWBL33i>8Wb8V&F+|kB0oIjkvA79K)eA&-TBV| z1MF6RmgkS$_3o+zuKv+rR9EL1paB!w<0*h)0cp?oq>VW3Ho5YOTfJfJ0Y0*n`T&ko zl~FWLFE)09=2A9<87)oIm}b!Q@4ec&9S<9tx`Clt0XKNPsvSo(&3U(8o5nyn=A3jG zak*`SIrQ8$zMbDXi#F!eQ3%m!mAk69d3+OsL)PfPnPPl9Q`3Ns;P4Q3S7(Acrw_R` zqGB{A#0lV|aMu)V+S;YXE5Wd*j59=C1JzUln1dqP>}+dOF0|FzV6HuHr&wd)>Z}CI zZPE~fQS=ydmNhs{UHh!HH`sGz%`wa10nVHjc<_l}6D6#_mhRwGA3jGG;C9O@gJzAy z!=SSq+d5sq(o8pUubR=p(HvHn+i2pZ!mM=;cuw4%*65H?5XDXB(|I>A2Lye13aqz} zIem0cNRti?cE@EDL$i4V<{vi~T5>vYh%9dZh&HULgPCge0^kFs{B#k${E4P0S|QM_ zLGNL(Xg%i_w`EN*t@{c%Jqf;oYK~30JWBj|GmxQ_*fIuMT55671p!X@{3n2mYJ>N+ z|9hP5gV_GXTrA=*i{<~i&%d}3q^a5S9t2Q!o!OWdZ2wXrFlomv%TZWmcWm&c2@O*` zN|SyC%iveQj9zSL7@`I{!RS1fdoh3lYupUpI|?#1rKb&^ycGre5%>@L2pN`E7q^qO zhyG{)erskn{E@T6t~;){BjF{^Fm}gGS ziSsZRajNr9bH{^Ttwl>)Z1`q{ONW1OXY$aj&H|?2+};zM<)Dj}(K58&`$o@~)hkH4 z;v4|=)SS-8oJm_>@YK{f*%)nr)p-Twd^BZoKs63nw5rdJuZl%$bO(8wJvGz%g$BB4 zCM?Yb;A%_bIDE|&N-^34RJGk8XdsJNHVqTtM7IS}$s45O7NZuDrpJgwQFDO+{90}T z@0}7td(p&_?|0h8dhau>SLYQ}BSX2=0IM?qzmaq0rEdUrAne{iG@NFdmupS+_#;o8 zkJ|#7!!~ZW&RKk02Zw0`J(v91As4poSrvxW}vr2S$I`B>pcfJuMGf!Ce(4EjQ2 z`P|MPx|aLto0A@y;7PsC1ySM$o%IJxrrMB@X0A0ZxhUkCoKHt{J#2wkmm*q+L!ca? zJb+tQOa7Bql|zfQXrYrZHKB>HItRdG#km8_pB-y1*30c*fa@iC(@TPN2T1wY=Su=# zGhWxBGRsr!nP6N9_4+39EEYkW2~^@NdLb!mj64C(W|P!3`dvGewA(RI49BT{cYJK? zf7!{VpVrKZDPM-Fm2|J!p0vWb(O1pC+=qE({x7VbLEqipS6H3*>mAk=mm-yz!5DRZ z0eJI_rw*s%63gkS_UMF>cU!|tzP!2-r#sYy_HOV;XKjj!*}ZfEI5c1;{A&stt(CLE z>_|l#sHF2iy`%5WqP+qnqMJPzP>s(y2NG!p!N-y9SK7>mO=xZZ{|HvTL2^YXYRcC7gRA`M(1M}2TRW!21RG=!Kn37oq7LOOrZyg9@4zo8&kI1fDqJ{CGP*(ncIa>ug^DB4xQRwBn4^)}WG= zKoEl!lU+r}7179L_1Pg&?f3h$U(qrkLs{t=gCOdlwG^Zu0TXc~6=TkOXIk@X%rsw! zU%E(<^VFo(IrohOTt_>-14Zl9L-X3ne;}8&9UR9Chry+W^)1eA)478Gs|=U=?KuO) z0nE?YAKua10@|QQ|TEKft`Icv6}KHLd>9Utmvu8A@Wi zZ0o**a{u#NaDvug-tFF)!yTO$$Q&1cnIJ&`#b1t5_C2k2u6Gr67+NEq*C4{OA}hz6=7Y7N{PZgIS(3S zMbg6>7Er=r0l_M%+PxHp2BhvEP^S1{2ankqfJTdU0L050I(+ov6O>b$ois*Ui#BO= zLblcHoE08(>{fP%&eL4GHMh>RK5J8AI<3zgRLlz~F6gu4eU!`{SuU{LqKT-Z$C?Hu z(OdL2^cBo2T5gDqIe8}IsHJsSVY8DJY?ExqAeJU@mV+wRCH2zS@}FxsDv!Kvt*tKL zTyH7nro|N)gRTS%T=$X2aR@@=zR1TP=A9R^gO1L_(Q0LU2Q<)- zX@D?Z?_3oKbZS!+Abxa+V?f&l#I{p9a$!+@o8|&AN*pKz{?KF&-u!$Ru=67gd3saW z5vX#>_A#`W__F|&f2RVmFIgL4Tv0t8 zDmK_|@@x?Y;ITBg4An-blphI1y9_-B-!z$H17-UJRblb7Q)50mYdNLfw2S7`x+*IA zX$D_y0MuaI*pdS5O?R9_29X0O2;h)xDzh66nvS!8>$d**8rxdly$|P7Yqt}$=cKI> zx`DF-^RPIj7ftp-D_4aBVCXa>NacWkqv5DL^0u|&UcmL616x0|!Lcu~Dqi8@MwuT; zpwV;fEawr++U$rhEvB5Op*zkY%hAO0Jy6Kb+yuoHLSWLar=@h zfn|PCVndy8af)mXPlo1K2Zj1oeHo-IhB>c6Wnc}#-^)oeheqRR&c}3vlA*XuZt=$;= z*;Gmx;}rb?sF0JE0blC)c{GTCek3A{*)2Xaa6dH7>%+tPEj4BjP1AU|&VlhsV0Br5 zj1MY4UVxgM__OBSjUD{g$uT(I^R1dac2tk1N|n+i0AdocOnuTjG&#(UX_C=IHfI05=Df2DhQUfZ?uOdHu=OJd*cN`S_ z%Ts9lKPc+BkC(X30Tys+bilq_uQ`b$ZZs4cl;=4uU?UC1)4!pg|C5E7=w@_JL+#Mm z4~^^z5~^zDl@3wBQ?sm3g0Dl5HQYRu18l(BW1n7bXqMD@--6!eWaiY^6R&*-bGc+I z*3ia|3GJgA!TVKBYmPm)qP3;Z3dsQlDq+*MP4FK)ke zaPKr`p4SA3eda{NB_>dK`ayBie9T#z1-60bQ@=Y^(n$AC(3QYIK1of&A(y#O7qGB%?D9h^+ICZ>V8G0?c}W^1SRn$bvl3{Fr4 znAY!|HFN?@hIKuh`LE^3lg6S07^XKx{eZVQ{`1#`Y=ga=44iXW3!q=0OGg@a^b!%= zqme;Xs;oHfv1DC$&K!8e$9CtHy=XN-G?Y4sX7d|3?O5|2fRV{KYErqQ`f{5cY{^s% zYv8fn0b>Dgs?^;f>C?>#mPVjD_?ZT04jac!TnZTVbU<`^=A4~1bj~?bn|6x(2F&)5wrB!d2>U(6ZBBl;O+{KBaS*s5E{sjI2UVa zZmH?1iM(DV!%)wWTQTeb0grZ*!H;of0!_*sOzfcpbg>Sci+3L;*nzuK1JqGvf}Yn4 z**YUMC^Q-zhTxg==!~H;&=_xQx04$B>2~R4?~KNK($;eMnu=2_uSl>od#EFtJ>yJ+ zU){z&B^hov11&YPJv750-)V(fu3R-n+;y~Z3!^qV``*T!T(5=0peixIacI6|Gc7^v zDxbJj!s!Nt(BjTcRYqq3G`fSsD-aEYt;q@!&Y`i6XKIGjwI6LAAxupUX5@%RT;@ej93Qz19jYVa+=J<~9sUGBh^>EoB;ad}xM2zSEsV z4x*h)VqV5pYIlZP&79dLSgGR)AN}M#4ZdVEEk4StRCDNbEAC6Sk$~GZ%?I7_H$Vpv z`s?`j8b`1bLJu!ZV3gI#Y;_VOC>Cv|k;KN)%MHG$oH%p2 z-C48+Xd?1<`(~h#VDK{%cvD(c?{scJ?WCq%J)psppJNajIwFX;Y408B)SntuEx9Q&KCa<0|?as3CJsC!l3_%J_8j?`#p! z-T+wh5M^r8q2>yz2*sG=5oo-1py5A>(;C%}8y%R zSz{rUdcXn(vCJE#5p*z~9qfAA3(N$|?H#N*i*{Q(X=eftU9rR)aq2iVz5a8#eQz>| z*{eZYgE2K(VGWnf$aXHXT6G0;&IDgNoq%3#P;-v~j;FIgQsc|mnsgwn-{BU3dReay zs1aN{(C{Cz$d^X-r7RQY;PBrG7 z3BGhX0ZrPV?u6Gu7o8mN0ZLyY{xASea8cze0IB|wfi**T?@&SWo@33Yo2{$yoRbb) zBS9`f1Cju&HRM5qd-cOQATo9sA~vyhCuP7H2cGyLjm-em-F#@4!3NB2w@2sA4fRgY zLs_#M+B}XpAZAWz06lGV|q?1PC) zaIEN+q5%hJiip$=Z5`X_X7J@(2VK^10H9SpPsa?tP<`oCh|%$XDK2j5RIB(?lZ(-W zesU(QGrQ+h8qwTdK-MJizbN6Jcd4$OzuZRZr@`6hnQe7OHaIjFfj&TOrMp5$E1K5m zG*SZZvD~npUlu&)P*2DpTZ6G^0>ye}^F9eeYlC6161)eMd*tVhbWY#^y#nSR5E}Ts z0?*f>GP`an(_`(6kuSz%Xx4HF6+&FZuRZSWX#*gQhCnl|s?6r~@->UcCU zpl`q}&YTnSr}d0eT^adl*I5HWKW#bYthF~-bI!NmK$*P%-g<;)b{wz>@W`(YY z(Gr>(D7vG{aD!pftkVqZ3`S7WZG?5E!3>IexReJ-#3u=dcHH7WH43Uu$D*X?9P0~h z1vOZ-n2w=4+nlp6QJp;Ps@DL^Z5yoR{wo-BcofEy-w6__#8<%#4AF#MfORh-X(~q% zYtrCZ|L8{3K|wY3h?<7`AOK|s1yqM>1F}$PgV0zT07ud6yyn~u9-3wF4&ZO|Wl*)f z+z&&Ub-2YqD~~yELsx=-41BFK=xYL)pS3FwfJ-`d|7_JH{_#ZtBBeU8+!eXlS$`oW zSF|Hs9h7O1K7b1+8%wO_VT$|*kl2N3VB6}TdG;|>nNN!I;9G%)W*I0$49*2M&Z1pFr_y40u29|gNE0><3N%YO>OAA?d@i?{#RIkT-5TTjdf zk58UMF1>d^lfV_#T{~j3s~5K3)>N5cNCF5AW-g-UUseQgOlMe=dOGwd8kjPCXxzd} zDi)5xv8KhL$)`1zYmVG5*2fKb=Foo(YSLcrhoO%Z+CbOypW<+xb351N#trNC&I*4d zz_O(DHOru&EAbA2tDfGt-uinB$*zF@ITaV5bI8ntL*oX}Y|kTs-ZLogivF024}gxt zdUnzbZEEH|-UD<=hV|6I`wV>r^7$NEm8{J%^$_XHP_@p`7$7Km-C5wrpnuaGa0Y!% zu-%wXpwk>IpRfUGPkY&J7lA0cL0eyESeDOlt7OU?rH@_P-dJQ=U6$LC!&)pNtjL8GZ$D zXoDZYx8>r+Eg6CXaB^V1_;f`bRd5OX=%u16HVCg-RS+33ehJ-j$L%)Y*K{;RCs;I9 z$b_AGSK29x^y2oQ{T=kH+gb7dAg#83TvdHNo~IX|p9$WUE4N>6^em?YzYWc|gg7T% zoj6q`OveW7<7fcP8lDSK9*ro7*PP*|GC672n>YrAP)ZrSk>CMH^{^Rq(&$hH{-B`~ z$`9J=9KpLLlWqMa=(3(b+ujTwK@qlT0#!gMWo={*fjTq754N3;35J&=keggZ5CJ=+ES+r{Cqm1q~uuHS#qxOkI2NYw*qd+~|4ZIsI z%&WoCJZZmJGun0N|CNq+pLa065=OXP2zS2T8+X2TUiK09$Dy2?uWO9r%@2%y^wS+2 zSj0nsu#0M|v$&z@ZI_ZUN1Baczz;jhdNkcxGyw_}=aqJt7lTs4Lp}%ilo0SX4aff{ zKv(A#e2=;+10?iS^g3^;`L|>8*hjj4jt-8OwacQ}*P-fHOLA}k^4ozw7$lXN^yZTm z@ux-|Yn+VQKj$ctxyq=Rh@k9v-aw>>HZ)9hI?G_u1~_v*t>=Y2;*6`pm@)JntbN{T z6^@~tjG#*Ow#GsG{>}>Gt~nu7e>z|)wFz^DLqpTF8SAD|949z{YG^r8i|M#JXo%!F zLs9f07vLQG(7FxSLFl^%UkdQcXI~|Up!G-pV^)mPwAVxN#=x=~9kYQo`3gFnl z9Wul#7K&0#4Jz!YtsAs(b?no2?G=O1PMO6T?*^2n16g-4zQLh=S{LgWZ0pte5v-wa zni|M_OylWzq39PW1K=0}Ne>H2t+F}oGiex*TU)m#);4bI7X#Aphy}e5c(-OgDIc2S zM)x=CciJ!3ocXu)gQmQ?EVj<3C(c6yXxfkaP(TfDeGgsBy*ZzOYXK=G1%v zVw!%@9CMg*`f|e`h<@BYIAy+1x#$D5+JD7o1g|QFiC%2KE#j;EtMfMX#-M zS_T4m)~`WMYZ-vsg-CVl$j!bBc$nt!IsPaP(}9}CZ9I=>bv|jdII?rIvkV5{#Yfcu1`Tw=)6wff1vm#sbOJ~l{)B`U~NJwS`rY*}xuLfuB=RR}c za_4~Y?sj*c23!io*KF+IPvl5n-A)2J4$Yf^zh4S5W6rTAE_^RwRsQar6gd~oLR)L& zIj8?{wc+QS;eDSiLw^NlQzh-E&;S z7~ZZhp(k!Nd9wqZi##0zo!Go~ESv@)+kiTp`Fld2Ki2*>DFJ_KN(iNYW(ReZakzsj zm%e)aGc`D~L-7J%G_i^ZIOi9)ZSA4X+zI6IgWG$y)xq9yd(J_a9{K>k8H|h?Q3X%Y zZJ&|sbnno7Wohdj#87nZn`H~>?$+2cJqf!qI?<|hakKyEl$ne2Kj6!z{EN%db7*-T zgK8YG+^T#!p{15i-j$2TbyYJ#3?vu{s-PddwWx7->R=8|pEPWsAGGTufu01aELsF$ z;luX;KGy5maX}r?R)SZ+`-ov8%K)A{@hw2y*&3-?^fku@V&NGYzY&&MRk@oS%5DpY zng*u{kVlx(dQ_VQJ#qvqLNffvAiX;QHXNGK;XJw(?EyR)cKY;Czy?SN@JU03G#vy; zONXF1!(ah!scD!%x-^jRqu1;#+5*y;+nu4cnOql59XGa0t}4(n*nmnHfYsSzVUKSHt)az8y%NAaKRI27o&<0k*^+=IJmBV(6Rgex z9xu)8K>mZIv?9z6=aqr)N5AjY5xI7MqTa?rY?-MdqVcH;y)RT&{z!i!K9 zKGEUN3_3LtXdZpq4Sqivbb=DZ2udJ6_0rdw3g3Qo2e<*HhgJ;&n=aaqz&V`hSl0pv zWKM>iP6apsNnzwicTQ0)TZcH?tzn?iG1&$gAr@($Zes;7-mC|WtQWV3!Er180w-H{ zkPTyKjVf~Uk#j0|H;trp*ch7QR-LU`1`}i&6eG^R1j9|a>WKq(?Op>k@nNS4paSU0 zlVH=>JT#w7s+WH1J*b8#~s-Y($P%X z(!2m>M6azCLnA11N6ZF8L)OeZ+^)2&lcC4pvvZB3Va%w06?*84+aH=~fG?4bcHS3u;&L`MtGUb$&6JsXZ416Ylu4s5$J$ zd>a7$ppg%W)Kin02mDAw9(mc~BygNh>jc#Z(qhAV%Vn-k0Ox6Bk$GDh$vOTHBs<_W48e+?CC6kn5{{NWR`IvVH)gBM+bv7+=l_|Vu~^0c{9WS*fR6Yo_#~$sDxma>URrtpoy} z2LDErY<5$^zkrupG~P>9RAlN+TdDt=6C019ZyTW4pw1Z@5lfyx1G(%thfFI3rmyU- zp!%uXR+R=g6ayq5ha1bE9Wn)MzC}`5qT0hZCwFQy)_7Q2fDs!9@Y;{uN6CI zd?qNFGdv6cf6!!3#=N-wNW)GXio;IeIDgEEhO~XXH*40GX8uuBmfVerfsl+%L-SN_ zp)+a3l%xYYT`p-}x=Q@44tgN_^8wJVUuj4l)?&9tR2rJe7t3qt0_K1S#tVD-(10LlZ1!oFCq9jGZhagV@qC=zm z(3}qSZ=FS3z)NOW-pdWe4mw6WvXQjf6L>9Y1gednwg#MFb~bHy+KpFu8OoBaITKU4 zB1ay8n%we|)DxnCybZ|o1nGxn(jYqi3wWAcCe7JIn3{D}2&CEjE;w$+nQagKw2m8u z6ytAp0n|D1qqArfLpkIEtm!h;>-5y%5$j(&+wGU3;A9HNz774+`aShFD3q~i`~vXJ z;~)I+K_Juy+TmD7L)rvif`;}nXK5CAtf2YS?@pC&sX^)$4j}iZwV}?^oN;keV9j?9 zYW(kw<`~G0090mGrzzm!Yq281@!)##yxK z_GPFw@=t0ET+3~P&_sF5_9gX8Hje$=^pY*9kzoCat)MHx0*ki5g{J?x@*IYNLKg%& z`*qOI=&;GMY5ZgPpg}R*egZJD8@%i6@jxi3wt!mQ$^RuF`AxG7{vGgNE+Q%v5_}H* zH*tPi`;mIZVI-ycmTl1jY6;yXm#N2>Z{dG(IZWd9=|(rG+7EHI=FN?Rd|e#Kjn8;Y z;xAtwENcRkBWEbE(>WR_e(01iZVqNI1-e?Rb%w^E$oM&$1%8SH(lB@cjm&t?;lw@X zHO|9r&M607ArGUot#`H=XLY9Am!a0^zLFXPt8(IOgV017K{t&a+UV7dlQbM+e6$e` zne#`SsaXaSv5)6PG31`S6KMHmI68_V~g5aefRmfHeHAoI7OE5SSH@lQ8kG+lQ}?byH^W1^$M zDL>WvbffjRzXZ@!-A$L@#qd z90~r-|I#jl9{~~~8^`0>Kg;01$5|KRO}($L>f7xg%($KZS&-#;2bgm1z$bOyfwM7T z45V2d-+|rM#Sf72&!Gn|>r<}D1o;}>nbs>#z*txYdxf&WkKBAaH|sg4*p%^Q4Q=4V z4xVEU(CUyac{Eg9fvmF+tv%#J!vdQ8HhgP#xfrHsnTjtJ0vwz%$j6$}|G} z?W|D%qUFuP;HVwL4BZ;JG}Bfe8dxVmNeFGE76Fdn9q_AWrJn9s^5O1<E`Y?)7C_E7gCfdn&k>5-H-lGeSo~seO8_D3 zb-)jecmk+{%j~fr8d~`|Woe9CqC}38WxFG&mDf zN6ieK9iBrI@dp|VKjyg7Lm$?FzgXXBvc3+j7C*Ko$4PLm?}tInBFOm@AR$E35ZvOB zgsCy7Bj=!`w&4OpgQE;I)PPRuETBwP${esh0SQ$;o&R%pfH9hb13t{=$4KB#SnMni z;fp47mgW=uNUI@d&QASj(96*Lxv+J!W-W7M5DlWNzc*s1gM`PeDO6u6p7{}vUR1b) za(zU@A*Xt$%wswR-Tcs8I-dsl`fD(n^-B)V13Xq3of1hyoegweVDDp%h6#Mppp^tA zA^Z#~gLBuvYi7{QDK{DF#j|QI&(w2h)lasEY#MCM>Bzpe#39QDkVb&**yocItziHt zVUT+>3(KUlG#S9+>d@}0`9{NJCx`)Nqu7r+bQ~NSfN{7REEQ z7QQRY)ciKo3v(ajq&15C#2jS}4bcfY3<*_ay|g@1Mg<);OU15shZ6ZwPlg_7AsA@xX$O+Bt=qPP)tYayA)MLFnusfY`J57VM82H79F999hQJeqUcH)>p z-O!X|cI-*}<(6rmooS$aiI$*VSg|l6v{Xid-!#(z=NQ0SAbHb4rqx-S3ix^N45P_T zId9HApr|jP(u|Jd=EaV*(_pR*>NJ>c+xpV6c3#N7oz`H)q^*Q=PMt@b?WUlV7U`3A zhSUi^q>!jW{-Pj8&(#9yvm|~{9x)@L3r4l*s zB=de6d7iOmhO_QYhVd=1+@kTWgSHH!QQt#fgRVIX)EMBI z`s`DUJyfA=Fo9F6vw^HvM+AR!Oi*VsOdFsor?UXUAz_{ZL}vvkhFh~EqQOH$PrBLi zkX`kqktne!sP{yJ)p-HffhnV5tPhY?!Io1eAjW9co%;ij07iFkIRusvjmuq=IqwGS{7A!2JqO!)xZDAB`ZG0Y`+9HItYwa@*Y!?-_Dh1$ zWLJn((gm#S4h{|Q@5lhwa?_fpPDT%FlzPxG5Vc!l4rWG!_pv@5nRc8f4dxjdH&?&>zs#; zM`&Dz;{9g=Pl$$+0md9xxo&KIgBX(|XC44U_v-i)VD8^F#ngvG{jl7v?+L^$Dz&k@ zYO1K!LB=+Edj0_WYg{xdr5S($;Q7(X(A5c1MMhWt7`zXiofUNLlTGC+jfSS<@Jvt- zya&yd&KVlkyCi6y)+gHoTxo++9|N3E2i~CLQNQZo*uaMu4a}gW0b~S12cUSYnCTzIEsnP0_S;yP@46 zG#2*ILaKsOAAtJRrvWMe?pp(l56V7XKv+_L1pUe2vE1L9_c(ua_U(ANiY{3_zifK3 zE;cljU#;0)``~X+RXitHv<*U&#PgV59R)}dznezYp@ddtScq0_U;~{e=>7+ds(!?# z3bEdEs1My{c|kG_s!p*T0-ixl6YB=L79-A=%|}pYvm35NzkI%dm3r{$u187NavMma zpwId59$VxG)>Wu0qDn#-qCl*agTM= zVEv@A(h{^&8FQ+}PWM0)sHi!DH9#~dWjP!GNt1y=Dt!B4+8>%dbjHa51oULJH`ocx zz)L@^oy)DE`wnEl6)4qkK3$}5yP?76V?hdLB1?;O{)RG z8oCUex8po%?pxk8nsLOQb2edM&{SG9fy7A*3e#uMxm@+hei{J3YF@5t89_d+XX<^U zh{z9T_Hu=m!3sJ$5`zsv8)0v<)Ir@GQa0$OdTvsoNBi=C2S%NrJ{<$AWi9T}fOgYV zts1K%P;B%JbiRNlldzSas!+M(3>Y;y+c>6dUIE8M+cR~bn=CH|D5#8suyPG+#i~PiKK;-~s)jM)YY==NGpMFgp|6 zI!+?mS}vQ!4ev>F-&>72dmrD@^o~0~W_-{jJK>aKD0 zC$O+>i>;qbQiqOlB7mQ(_0msDLlat4argwNb!UN8sqw#d(}HI=PkkkLv+mTC*W=jO zi8WO7%hRE;Uu`Q7Eqqev-)LnyaVRIHlwipRglN=7A>9~sEe53)ZP@TA>7m7ml@X`( zw>cag4ZzN}G!A8ntWC~bzp{e!=V9aBjf`N+DZUJo8sLxeLL*1$eui#Cc)9@6b;B=m^EmuxpVp=`l=|b z-Z0?Ulz!=md*&PsPTEuhPByT6D9=go4?tg{yiS6wz$pP))in0T&_!F|J!ok1dfn%r z-GMG?ThB{O=dsVP_eMDa0aiE@e}B5SpE(`Db@f zgUU}oC#FW=nGO#4xb`b3cl^!agFyx|nVmY5Ru3KmwgxWjFh<-Qstq_yH1IH0^KqPj zq0j;?ZW4m&I$Hy%LrocnR`0U{+38R}z)A4z95-~@8g3p+8yhIWaYL^+9hxPz>06xF zIpzGK8Q$nvOY`{STWiZeX>S*zRD0+$@KD}oR`Bw1J(i~yf*%H#IV6K_RclnEIcIVXiuDo6AW#kVG^dH^)TgZjR9P!9g+@O#p_K?f zpKd6A=}7l!P1&cLDj6!0hI&Z0aVu~q&^Yw`X&OqZZv!FI>a`NQXyn}*Km(j|q9F9P@E`RY#VDG%O+&r@F-?8f zlJWFd0rbZm;n3I<35{XR4BcV#3_L^Iz;k45Flkk4H;6=}`~uWY9NN7bgjOQ_yjZ_? zq*I@PoDG$WoBT6WB+)!RtGN}pvuPZ9{xt2UIK^HG%0^z#p<@NL#+)1}9-D%g9@G6p z06z}nBLJQ-o*kDsBz=-5fXGE0F9s%vR?njIk@}aR(`{Q{I(Ah@=GJ&pYY=$Q7-;Tr z&MVt?!ybo7kV*sXX;`36{yC@eSfE{1?GXj}=`sop&?1A60es)1X&n^O_}e%JF^bn^ z&UXzjx70S!=@almn|5wT(Z+J&(853o1X#~L0>h03&_Qm1bPaI$r{EtL(7Xd9sN-mA zgVhO8&Pw-TAoX!0=g@Gy)Nr#ygYifZ;4BGaQQ+2~`C;7^b_(H#MSESqADX`nX#FEi ukwor&l;F>xoC8r`$iCj{_u7LdS!?k3cW4tRm3q*hIjt$m|Np=KzyA$=>}!qy literal 0 HcmV?d00001 diff --git a/demo/onto_test/a2e_0000.in.conllu b/demo/onto_test/a2e_0000.in.conllu new file mode 100644 index 00000000..3645e2db --- /dev/null +++ b/demo/onto_test/a2e_0000.in.conllu @@ -0,0 +1,659 @@ +# newdoc +# newpar +# sent_id = 1 +# text = Celebration Shooting Turns Wedding Into a Funeral in Southern Gaza Strip Asad +1 Celebration celebration PROPN NNP Number=Sing 3 compound _ SpacesBefore=\s +2 Shooting shoot PROPN NNP Number=Sing 1 flat _ _ +3 Turns Turns PROPN NNPS Number=Plur 0 root _ _ +4 Wedding wedding VERB VBG VerbForm=Ger 3 acl _ _ +5 Into into ADP IN _ 7 case _ _ +6 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 Funeral funeral PROPN NNP Number=Sing 4 obl _ _ +8 in in ADP IN _ 11 case _ _ +9 Southern southern PROPN NNP Number=Sing 11 compound _ _ +10 Gaza Gaza PROPN NNP Number=Sing 11 compound _ _ +11 Strip Strip PROPN NNP Number=Sing 4 obl _ _ +12 Asad Asad PROPN NNP Number=Sing 11 flat _ _ + +# sent_id = 2 +# text = 1/20/2007 Gaza-UPI +1 1/20/2007 1/20/2007 NUM CD NumType=Card 4 nummod _ _ +2 Gaza Gaza PROPN NNP Number=Sing 4 compound _ SpaceAfter=No +3 - - PUNCT HYPH _ 4 punct _ SpaceAfter=No +4 UPI UPI PROPN NNP Number=Sing 0 root _ _ + +# sent_id = 3 +# text = The cheers and hails of happiness at a wedding in Khan Younes in the southern Gaza Strip turned into screams and moans of pain after one of the celebrators lost control of his weapon, from which a number of bullets were released that killed the groom's brother and hit three other relatives of his, turning the wedding into a funeral in moments. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 cheers cheer NOUN NNS Number=Plur 18 nsubj _ _ +3 and and CCONJ CC _ 4 cc _ _ +4 hails hail NOUN NNS Number=Plur 2 conj _ _ +5 of of ADP IN _ 6 case _ _ +6 happiness happiness NOUN NN Number=Sing 2 nmod _ _ +7 at at ADP IN _ 9 case _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 wedding wedding NOUN NN Number=Sing 2 nmod _ _ +10 in in ADP IN _ 12 case _ _ +11 Khan Khan PROPN NNP Number=Sing 12 compound _ _ +12 Younes Younes PROPN NNPS Number=Plur 9 nmod _ _ +13 in in ADP IN _ 17 case _ _ +14 the the DET DT Definite=Def|PronType=Art 17 det _ _ +15 southern southern ADJ JJ Degree=Pos 17 amod _ _ +16 Gaza Gaza PROPN NNP Number=Sing 17 compound _ _ +17 Strip Strip PROPN NNP Number=Sing 2 nmod _ _ +18 turned turn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +19 into into ADP IN _ 20 case _ _ +20 screams scream NOUN NNS Number=Plur 18 obl _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 moans moan NOUN NNS Number=Plur 20 conj _ _ +23 of of ADP IN _ 24 case _ _ +24 pain pain NOUN NN Number=Sing 20 nmod _ _ +25 after after ADP IN _ 26 case _ _ +26 one one NUM CD NumType=Card 18 obl _ _ +27 of of ADP IN _ 29 case _ _ +28 the the DET DT Definite=Def|PronType=Art 29 det _ _ +29 celebrators celebrator NOUN NNS Number=Plur 26 nmod _ _ +30 lost lose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 18 conj _ _ +31 control control NOUN NN Number=Sing 30 obj _ _ +32 of of ADP IN _ 34 case _ _ +33 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 weapon weapon NOUN NN Number=Sing 31 nmod _ SpaceAfter=No +35 , , PUNCT , _ 30 punct _ _ +36 from from ADP IN _ 37 case _ _ +37 which which PRON WDT PronType=Rel 43 obl _ _ +38 a a DET DT Definite=Ind|PronType=Art 39 det _ _ +39 number number NOUN NN Number=Sing 43 nsubj:pass _ _ +40 of of ADP IN _ 41 case _ _ +41 bullets bullet NOUN NNS Number=Plur 39 nmod _ _ +42 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 43 aux:pass _ _ +43 released release VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 30 acl:relcl _ _ +44 that that SCONJ IN _ 45 mark _ _ +45 killed kill VERB VBN Tense=Past|VerbForm=Part 43 advcl _ _ +46 the the DET DT Definite=Def|PronType=Art 47 det _ _ +47 groom groom NOUN NN Number=Sing 49 nmod:poss _ SpaceAfter=No +48 's 's PART POS _ 47 case _ _ +49 brother brother NOUN NN Number=Sing 45 obj _ _ +50 and and CCONJ CC _ 51 cc _ _ +51 hit hit VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 45 conj _ _ +52 three three NUM CD NumType=Card 54 nummod _ _ +53 other other ADJ JJ Degree=Pos 54 amod _ _ +54 relatives relative NOUN NNS Number=Plur 51 obj _ _ +55 of of ADP IN _ 56 case _ _ +56 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 54 nmod _ SpaceAfter=No +57 , , PUNCT , _ 56 punct _ _ +58 turning turn VERB VBG VerbForm=Ger 56 advcl _ _ +59 the the DET DT Definite=Def|PronType=Art 60 det _ _ +60 wedding wedding NOUN NN Number=Sing 58 obj _ _ +61 into into ADP IN _ 63 case _ _ +62 a a DET DT Definite=Ind|PronType=Art 63 det _ _ +63 funeral funeral NOUN NN Number=Sing 58 obl _ _ +64 in in ADP IN _ 65 case _ _ +65 moments moment NOUN NNS Number=Plur 63 nmod _ SpaceAfter=No +66 . . PUNCT . _ 18 punct _ _ + +# sent_id = 4 +# text = A medical source at Nasser Hospital in Khan Younes told United Press International that Palestinian citizen Kamal Mohamed Al Bashiti-LRB-33 years old-RRB-died shortly after he was hit by a gunshot in the chest from an accidental shooting at his brother's wedding in Khan Younes. +1 A a DET DT Definite=Ind|PronType=Art 3 det _ _ +2 medical medical ADJ JJ Degree=Pos 3 amod _ _ +3 source source NOUN NN Number=Sing 10 nsubj _ _ +4 at at ADP IN _ 6 case _ _ +5 Nasser Nasser PROPN NNP Number=Sing 6 compound _ _ +6 Hospital Hospital PROPN NNP Number=Sing 3 nmod _ _ +7 in in ADP IN _ 8 case _ _ +8 Khan Khan PROPN NNP Number=Sing 3 nmod _ _ +9 Younes Younes PROPN NNP Number=Sing 8 flat _ _ +10 told tell VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +11 United United PROPN NNP Number=Sing 12 compound _ _ +12 Press Press PROPN NNP Number=Sing 13 compound _ _ +13 International International PROPN NNP Number=Sing 16 case _ _ +14 that that DET DT Number=Sing|PronType=Dem 16 det _ _ +15 Palestinian palestinian ADJ JJ Degree=Pos 16 amod _ _ +16 citizen citizen NOUN NN Number=Sing 24 compound _ _ +17 Kamal Kamal PROPN NNP Number=Sing 24 compound _ _ +18 Mohamed Mohamed PROPN NNP Number=Sing 20 compound _ _ +19 Al Al PROPN NNP Number=Sing 20 compound _ _ +20 Bashiti Bashiti PROPN NNP Number=Sing 17 flat _ SpaceAfter=No +21 -LRB -LRB PROPN NNP Number=Sing 24 compound _ SpaceAfter=No +22 - - SYM SYM _ 24 case _ SpaceAfter=No +23 33 33 NUM CD NumType=Card 24 nummod _ _ +24 years year NOUN NNS Number=Plur 10 obj _ _ +25 old old ADJ JJ Degree=Pos 27 amod _ SpaceAfter=No +26 - - PUNCT , _ 27 punct _ SpaceAfter=No +27 RRB Rrb PROPN NNP Number=Sing 28 nsubj _ SpaceAfter=No +28 -died -dy VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 24 acl:relcl _ _ +29 shortly shortly ADV RB _ 28 advmod _ _ +30 after after SCONJ IN _ 33 mark _ _ +31 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 33 nsubj:pass _ _ +32 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 33 aux:pass _ _ +33 hit hit VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 28 advcl _ _ +34 by by ADP IN _ 36 case _ _ +35 a a DET DT Definite=Ind|PronType=Art 36 det _ _ +36 gunshot gunshot NOUN NN Number=Sing 39 obl _ _ +37 in in ADP IN _ 39 case _ _ +38 the the DET DT Definite=Def|PronType=Art 39 det _ _ +39 chest chest NOUN NN Number=Sing 33 obl _ _ +40 from from ADP IN _ 43 case _ _ +41 an a DET DT Definite=Ind|PronType=Art 43 det _ _ +42 accidental accidental ADJ JJ Degree=Pos 43 amod _ _ +43 shooting shooting NOUN NN Number=Sing 33 obl _ _ +44 at at ADP IN _ 48 case _ _ +45 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 46 nmod:poss _ _ +46 brother brother NOUN NN Number=Sing 48 nmod:poss _ SpaceAfter=No +47 's 's PART POS _ 46 case _ _ +48 wedding wedding NOUN NN Number=Sing 28 obl _ _ +49 in in ADP IN _ 50 case _ _ +50 Khan Khan PROPN NNP Number=Sing 48 nmod _ _ +51 Younes Younes PROPN NNP Number=Sing 50 flat _ SpaceAfter=No +52 . . PUNCT . _ 10 punct _ _ + +# sent_id = 5 +# text = Three other relatives of his were also injured in the accident, including two children. +1 Three three NUM CD NumType=Card 3 nummod _ _ +2 other other ADJ JJ Degree=Pos 3 amod _ _ +3 relatives relative NOUN NNS Number=Plur 8 nsubj:pass _ _ +4 of of ADP IN _ 5 case _ _ +5 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 3 nmod _ _ +6 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 8 aux:pass _ _ +7 also also ADV RB _ 8 advmod _ _ +8 injured injure VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +9 in in ADP IN _ 11 case _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 accident accident NOUN NN Number=Sing 8 obl _ SpaceAfter=No +12 , , PUNCT , _ 8 punct _ _ +13 including include VERB VBG VerbForm=Ger 15 case _ _ +14 two two NUM CD NumType=Card 15 nummod _ _ +15 children child NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +16 . . PUNCT . _ 8 punct _ _ + +# sent_id = 6 +# text = Gaza Strip residents are suffering from the problem of aggravation from the weapons mess and security chaos resulting from the intense spread of weapons in the hands of security agency individuals and members of factions and families. +1 Gaza Gaza PROPN NNP Number=Sing 2 compound _ _ +2 Strip Strip PROPN NNP Number=Sing 3 compound _ _ +3 residents resident NOUN NNS Number=Plur 5 nsubj _ _ +4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 aux _ _ +5 suffering suffer VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +6 from from ADP IN _ 8 case _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 problem problem NOUN NN Number=Sing 5 obl _ _ +9 of of ADP IN _ 10 case _ _ +10 aggravation aggravation NOUN NN Number=Sing 8 nmod _ _ +11 from from ADP IN _ 17 case _ _ +12 the the DET DT Definite=Def|PronType=Art 17 det _ _ +13 weapons weapon NOUN NNS Number=Plur 17 compound _ _ +14 mess mess NOUN NN Number=Sing 17 compound _ _ +15 and and CCONJ CC _ 16 cc _ _ +16 security security NOUN NN Number=Sing 14 conj _ _ +17 chaos chaos NOUN NN Number=Sing 10 nmod _ _ +18 resulting result VERB VBG VerbForm=Ger 10 acl _ _ +19 from from ADP IN _ 22 case _ _ +20 the the DET DT Definite=Def|PronType=Art 22 det _ _ +21 intense intense ADJ JJ Degree=Pos 22 amod _ _ +22 spread spread NOUN NN Number=Sing 18 obl _ _ +23 of of ADP IN _ 24 case _ _ +24 weapons weapon NOUN NNS Number=Plur 22 nmod _ _ +25 in in ADP IN _ 27 case _ _ +26 the the DET DT Definite=Def|PronType=Art 27 det _ _ +27 hands hand NOUN NNS Number=Plur 5 obl _ _ +28 of of ADP IN _ 31 case _ _ +29 security security NOUN NN Number=Sing 30 compound _ _ +30 agency agency NOUN NN Number=Sing 31 compound _ _ +31 individuals individual NOUN NNS Number=Plur 27 nmod _ _ +32 and and CCONJ CC _ 33 cc _ _ +33 members member NOUN NNS Number=Plur 31 conj _ _ +34 of of ADP IN _ 35 case _ _ +35 factions faction NOUN NNS Number=Plur 33 nmod _ _ +36 and and CCONJ CC _ 37 cc _ _ +37 families family NOUN NNS Number=Plur 35 conj _ SpaceAfter=No +38 . . PUNCT . _ 5 punct _ _ + +# sent_id = 7 +# text = This is a common practice that claimed the lives of about 350 people last year, according to Palestinian human rights sources. +1 This this PRON DT Number=Sing|PronType=Dem 5 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 cop _ _ +3 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +4 common common ADJ JJ Degree=Pos 5 amod _ _ +5 practice practice NOUN NN Number=Sing 0 root _ _ +6 that that PRON WDT PronType=Rel 7 nsubj _ _ +7 claimed claim VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 acl:relcl _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 lives life NOUN NNS Number=Plur 7 obj _ _ +10 of of ADP IN _ 13 case _ _ +11 about about ADP IN _ 13 case _ _ +12 350 350 NUM CD NumType=Card 13 nummod _ _ +13 people people NOUN NNS Number=Plur 9 nmod _ _ +14 last last ADJ JJ Degree=Pos 15 amod _ _ +15 year year NOUN NN Number=Sing 7 obl:tmod _ SpaceAfter=No +16 , , PUNCT , _ 7 punct _ _ +17 according accord VERB VBG VerbForm=Ger 22 case _ _ +18 to to ADP IN _ 22 case _ _ +19 Palestinian palestinian ADJ JJ Degree=Pos 22 amod _ _ +20 human human ADJ JJ Degree=Pos 22 amod _ _ +21 rights rights NOUN NNS Number=Plur 22 compound _ _ +22 sources source NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +23 . . PUNCT . _ 5 punct _ _ + +# sent_id = 8 +# text = Mohamed Al Bashiti, 18-LRB-years old-RRB-, a relative of the victim, mentioned that while the young men were performing dances and popular dabke dances +1 Mohamed Mohamed PROPN NNP Number=Sing 9 compound _ _ +2 Al Al PROPN NNP Number=Sing 1 flat _ _ +3 Bashiti Bashiti PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +4 , , PUNCT , _ 1 punct _ _ +5 18 18 NUM CD NumType=Card 9 nummod _ SpaceAfter=No +6 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +7 LRB Lrb NOUN NN Number=Sing 9 compound _ SpaceAfter=No +8 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +9 years year NOUN NNS Number=Plur 21 appos _ _ +10 old old ADJ JJ Degree=Pos 12 amod _ SpaceAfter=No +11 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +12 RRB Rrb NOUN NN Number=Sing 9 appos _ SpaceAfter=No +13 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +14 , , PUNCT , _ 9 punct _ _ +15 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +16 relative relative NOUN NN Number=Sing 9 appos _ _ +17 of of ADP IN _ 19 case _ _ +18 the the DET DT Definite=Def|PronType=Art 19 det _ _ +19 victim victim NOUN NN Number=Sing 16 nmod _ SpaceAfter=No +20 , , PUNCT , _ 21 punct _ _ +21 mentioned mention VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +22 that that SCONJ IN _ 28 mark _ _ +23 while while SCONJ IN _ 28 mark _ _ +24 the the DET DT Definite=Def|PronType=Art 26 det _ _ +25 young young ADJ JJ Degree=Pos 26 amod _ _ +26 men man NOUN NNS Number=Plur 28 nsubj _ _ +27 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 28 aux _ _ +28 performing perform VERB VBG Tense=Pres|VerbForm=Part 21 advcl _ _ +29 dances dance NOUN NNS Number=Plur 28 obj _ _ +30 and and CCONJ CC _ 33 cc _ _ +31 popular popular ADJ JJ Degree=Pos 33 amod _ _ +32 dabke dabke NOUN NN Number=Sing 33 compound _ _ +33 dances dance NOUN NNS Number=Plur 29 conj _ _ + +# sent_id = 9 +# text = Thursday evening, and while they were in a state of intense rejoicing for the wedding of our relative, Majed Al Bashiti, one of the armed men lost control of his weapon, which he was trying to use to fire to celebrate and greet the groom. +1 Thursday Thursday PROPN NNP Number=Sing 2 compound _ _ +2 evening evening NOUN NN Number=Sing 30 obl:tmod _ SpaceAfter=No +3 , , PUNCT , _ 10 punct _ _ +4 and and CCONJ CC _ 10 cc _ _ +5 while while SCONJ IN _ 10 mark _ _ +6 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 10 nsubj _ _ +7 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 10 cop _ _ +8 in in ADP IN _ 10 case _ _ +9 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 state state NOUN NN Number=Sing 2 conj _ _ +11 of of ADP IN _ 13 case _ _ +12 intense intense ADJ JJ Degree=Pos 13 amod _ _ +13 rejoicing rejoicing NOUN NN Number=Sing 10 nmod _ _ +14 for for ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 wedding wedding NOUN NN Number=Sing 10 nmod _ _ +17 of of ADP IN _ 19 case _ _ +18 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 19 nmod:poss _ _ +19 relative relative NOUN NN Number=Sing 16 nmod _ SpaceAfter=No +20 , , PUNCT , _ 19 punct _ _ +21 Majed Maj PROPN NNP Number=Sing 23 compound _ _ +22 Al Al PROPN NNP Number=Sing 23 compound _ _ +23 Bashiti Bashiti PROPN NNP Number=Sing 19 appos _ SpaceAfter=No +24 , , PUNCT , _ 30 punct _ _ +25 one one NUM CD NumType=Card 30 nsubj _ _ +26 of of ADP IN _ 29 case _ _ +27 the the DET DT Definite=Def|PronType=Art 29 det _ _ +28 armed armed ADJ JJ Degree=Pos 29 amod _ _ +29 men man NOUN NNS Number=Plur 25 nmod _ _ +30 lost lose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +31 control control NOUN NN Number=Sing 30 obj _ _ +32 of of ADP IN _ 34 case _ _ +33 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 weapon weapon NOUN NN Number=Sing 31 nmod _ SpaceAfter=No +35 , , PUNCT , _ 30 punct _ _ +36 which which PRON WDT PronType=Rel 39 obj _ _ +37 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 39 nsubj _ _ +38 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 39 aux _ _ +39 trying try VERB VBG Tense=Pres|VerbForm=Part 30 acl:relcl _ _ +40 to to PART TO _ 41 mark _ _ +41 use use VERB VB VerbForm=Inf 39 xcomp _ _ +42 to to ADP IN _ 43 case _ _ +43 fire fire NOUN NN Number=Sing 41 obl _ _ +44 to to PART TO _ 45 mark _ _ +45 celebrate celebrate VERB VB VerbForm=Inf 41 advcl _ _ +46 and and CCONJ CC _ 47 cc _ _ +47 greet greet VERB VB VerbForm=Inf 45 conj _ _ +48 the the DET DT Definite=Def|PronType=Art 49 det _ _ +49 groom groom NOUN NN Number=Sing 47 obj _ SpaceAfter=No +50 . . PUNCT . _ 30 punct _ _ + +# sent_id = 10 +# text = The bullets went astray and hit a number of participants amid a state of panic and terror. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 bullets bullet NOUN NNS Number=Plur 3 nsubj _ _ +3 went go VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 astray astray ADV RB _ 3 advmod _ _ +5 and and CCONJ CC _ 6 cc _ _ +6 hit hit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 conj _ _ +7 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +8 number number NOUN NN Number=Sing 6 obj _ _ +9 of of ADP IN _ 10 case _ _ +10 participants participant NOUN NNS Number=Plur 8 nmod _ _ +11 amid amid ADP IN _ 13 case _ _ +12 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +13 state state NOUN NN Number=Sing 6 obl _ _ +14 of of ADP IN _ 15 case _ _ +15 panic panic NOUN NN Number=Sing 13 nmod _ _ +16 and and CCONJ CC _ 17 cc _ _ +17 terror terror NOUN NN Number=Sing 15 conj _ SpaceAfter=No +18 . . PUNCT . _ 3 punct _ _ + +# sent_id = 11 +# text = In moments, the wedding cheers turned into screams and the hitting of cheeks. +1 In in ADP IN _ 2 case _ _ +2 moments moments NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +3 , , PUNCT , _ 7 punct _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 wedding wedding NOUN NN Number=Sing 6 compound _ _ +6 cheers cheer NOUN NNS Number=Plur 7 nsubj _ _ +7 turned turn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +8 into into ADP IN _ 9 case _ _ +9 screams scream NOUN NNS Number=Plur 7 obl _ _ +10 and and CCONJ CC _ 12 cc _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 hitting hitting NOUN NN Number=Sing 9 conj _ _ +13 of of ADP IN _ 14 case _ _ +14 cheeks cheek NOUN NNS Number=Plur 12 nmod _ SpaceAfter=No +15 . . PUNCT . _ 7 punct _ _ + +# sent_id = 12 +# text = The participants of the party moved to Nasser Hospital, which lay hundreds of meters away from the site of the wedding. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 participants participant NOUN NNS Number=Plur 6 nsubj _ _ +3 of of ADP IN _ 5 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 party party NOUN NN Number=Sing 2 nmod _ _ +6 moved move VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +7 to to ADP IN _ 9 case _ _ +8 Nasser Nasser PROPN NNP Number=Sing 9 compound _ _ +9 Hospital Hospital PROPN NNP Number=Sing 6 obl _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 which which PRON WDT PronType=Rel 12 nsubj _ _ +12 lay lay VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 acl:relcl _ _ +13 hundreds hundred NOUN NNS Number=Plur 12 obj _ _ +14 of of ADP IN _ 15 case _ _ +15 meters meter NOUN NNS Number=Plur 13 nmod _ _ +16 away away ADV RB _ 12 advmod _ _ +17 from from ADP IN _ 19 case _ _ +18 the the DET DT Definite=Def|PronType=Art 19 det _ _ +19 site site NOUN NN Number=Sing 12 obl _ _ +20 of of ADP IN _ 22 case _ _ +21 the the DET DT Definite=Def|PronType=Art 22 det _ _ +22 wedding wedding NOUN NN Number=Sing 19 nmod _ SpaceAfter=No +23 . . PUNCT . _ 6 punct _ _ + +# sent_id = 13 +# text = The tragic news came after a little while: the death of the groom's brother, who works in one of the security agencies. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 tragic tragic ADJ JJ Degree=Pos 3 amod _ _ +3 news news NOUN NN Number=Sing 4 nsubj _ _ +4 came come VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +5 after after ADP IN _ 8 case _ _ +6 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 little little ADJ JJ Degree=Pos 8 amod _ _ +8 while while NOUN NN Number=Sing 4 obl _ SpaceAfter=No +9 : : PUNCT : _ 4 punct _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 death death NOUN NN Number=Sing 4 appos _ _ +12 of of ADP IN _ 16 case _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 groom groom NOUN NN Number=Sing 16 nmod:poss _ SpaceAfter=No +15 's 's PART POS _ 14 case _ _ +16 brother brother NOUN NN Number=Sing 11 nmod _ SpaceAfter=No +17 , , PUNCT , _ 4 punct _ _ +18 who who PRON WP PronType=Rel 19 nsubj _ _ +19 works work VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 acl:relcl _ _ +20 in in ADP IN _ 21 case _ _ +21 one one NUM CD NumType=Card 19 obl _ _ +22 of of ADP IN _ 25 case _ _ +23 the the DET DT Definite=Def|PronType=Art 25 det _ _ +24 security security NOUN NN Number=Sing 25 compound _ _ +25 agencies agency NOUN NNS Number=Plur 21 nmod _ SpaceAfter=No +26 . . PUNCT . _ 4 punct _ _ + +# sent_id = 14 +# text = An elderly man said," I asked them not to shoot and asked them for God's sake not to do it, but they persisted in it, until what happened happened. +1 An a DET DT Definite=Ind|PronType=Art 3 det _ _ +2 elderly elderly ADJ JJ Degree=Pos 3 amod _ _ +3 man man NOUN NN Number=Sing 4 nsubj _ _ +4 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ SpaceAfter=No +5 , , PUNCT , _ 8 punct _ SpaceAfter=No +6 " " PUNCT `` _ 8 punct _ _ +7 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 8 nsubj _ _ +8 asked ask VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 ccomp _ _ +9 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 8 obj _ _ +10 not not ADV RB _ 12 advmod _ _ +11 to to PART TO _ 12 mark _ _ +12 shoot shoot VERB VB VerbForm=Inf 8 xcomp _ _ +13 and and CCONJ CC _ 14 cc _ _ +14 asked ask VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 12 conj _ _ +15 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 14 obj _ _ +16 for for ADP IN _ 19 case _ _ +17 God God PROPN NNP Number=Sing 19 nmod:poss _ SpaceAfter=No +18 's 's PART POS _ 17 case _ _ +19 sake sake NOUN NN Number=Sing 14 obl _ _ +20 not not ADV RB _ 22 advmod _ _ +21 to to PART TO _ 22 mark _ _ +22 do do VERB VB VerbForm=Inf 19 acl _ _ +23 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 22 obj _ SpaceAfter=No +24 , , PUNCT , _ 27 punct _ _ +25 but but CCONJ CC _ 27 cc _ _ +26 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 27 nsubj _ _ +27 persisted persist VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 conj _ _ +28 in in ADP IN _ 29 case _ _ +29 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 27 obl _ SpaceAfter=No +30 , , PUNCT , _ 27 punct _ _ +31 until until SCONJ IN _ 33 mark _ _ +32 what what PRON WP PronType=Int 33 nsubj _ _ +33 happened happen VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 27 advcl _ _ +34 happened happen VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 33 ccomp _ SpaceAfter=No +35 . . PUNCT . _ 4 punct _ _ + +# sent_id = 15 +# text = A number of women suffered cases of fainting and shock after the tragic accident." +1 A a DET DT Definite=Ind|PronType=Art 2 det _ _ +2 number number NOUN NN Number=Sing 0 root _ _ +3 of of ADP IN _ 6 case _ _ +4 women woman NOUN NNS Number=Plur 6 compound _ _ +5 suffered suffer VERB VBN Tense=Past|VerbForm=Part 6 amod _ _ +6 cases cas NOUN NNS Number=Plur 2 nmod _ _ +7 of of ADP IN _ 8 case _ _ +8 fainting fainting NOUN NN Number=Sing 6 nmod _ _ +9 and and CCONJ CC _ 10 cc _ _ +10 shock shock NOUN NN Number=Sing 8 conj _ _ +11 after after ADP IN _ 14 case _ _ +12 the the DET DT Definite=Def|PronType=Art 14 det _ _ +13 tragic tragic ADJ JJ Degree=Pos 14 amod _ _ +14 accident accident NOUN NN Number=Sing 2 nmod _ SpaceAfter=No +15 . . PUNCT . _ 2 punct _ SpaceAfter=No +16 " " PUNCT '' _ 2 punct _ _ + +# sent_id = 16 +# text = Some Palestinians are used to shooting in the air during their celebrations, especially weddings, as an expression of their happiness, in spite of the repeated warnings the Ministry of Interior has launched to chase those who take part in this practice. +1 Some some DET DT _ 2 det _ _ +2 Palestinians Palestinians PROPN NNPS Number=Plur 4 nsubj:pass _ _ +3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux:pass _ _ +4 used use VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +5 to to SCONJ IN _ 6 mark _ _ +6 shooting shoot VERB VBG VerbForm=Ger 4 advcl _ _ +7 in in ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 air air NOUN NN Number=Sing 6 obl _ _ +10 during during ADP IN _ 12 case _ _ +11 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ _ +12 celebrations celebration NOUN NNS Number=Plur 6 obl _ SpaceAfter=No +13 , , PUNCT , _ 4 punct _ _ +14 especially especially ADV RB _ 15 advmod _ _ +15 weddings wedding NOUN NNS Number=Plur 4 appos _ SpaceAfter=No +16 , , PUNCT , _ 4 punct _ _ +17 as as ADP IN _ 19 case _ _ +18 an a DET DT Definite=Ind|PronType=Art 19 det _ _ +19 expression expression NOUN NN Number=Sing 4 obl _ _ +20 of of ADP IN _ 22 case _ _ +21 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 22 nmod:poss _ _ +22 happiness happiness NOUN NN Number=Sing 19 nmod _ SpaceAfter=No +23 , , PUNCT , _ 4 punct _ _ +24 in in ADP IN _ 25 case _ _ +25 spite spite NOUN NN Number=Sing 4 obl _ _ +26 of of ADP IN _ 29 case _ _ +27 the the DET DT Definite=Def|PronType=Art 29 det _ _ +28 repeated repeat VERB VBN Tense=Past|VerbForm=Part 29 amod _ _ +29 warnings warning NOUN NNS Number=Plur 25 nmod _ _ +30 the the DET DT Definite=Def|PronType=Art 31 det _ _ +31 Ministry Ministry PROPN NNP Number=Sing 35 nsubj _ _ +32 of of ADP IN _ 33 case _ _ +33 Interior Interior PROPN NNP Number=Sing 31 nmod _ _ +34 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 35 aux _ _ +35 launched launch VERB VBN Tense=Past|VerbForm=Part 29 acl:relcl _ _ +36 to to PART TO _ 37 mark _ _ +37 chase chase VERB VB VerbForm=Inf 35 xcomp _ _ +38 those those PRON DT Number=Plur|PronType=Dem 37 obj _ _ +39 who who PRON WP PronType=Rel 40 nsubj _ _ +40 take take VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 38 acl:relcl _ _ +41 part part NOUN NN Number=Sing 40 obj _ _ +42 in in ADP IN _ 44 case _ _ +43 this this DET DT Number=Sing|PronType=Dem 44 det _ _ +44 practice practice NOUN NN Number=Sing 40 obl _ SpaceAfter=No +45 . . PUNCT . _ 4 punct _ _ + +# sent_id = 17 +# text = But the warnings were limited to announcements after each incident, without translating into actual procedure in reality. +1 But but CCONJ CC _ 5 cc _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 warnings warning NOUN NNS Number=Plur 5 nsubj:pass _ _ +4 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 aux:pass _ _ +5 limited limit VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 to to ADP IN _ 7 case _ _ +7 announcements announcement NOUN NNS Number=Plur 5 obl _ _ +8 after after ADP IN _ 10 case _ _ +9 each each DET DT _ 10 det _ _ +10 incident incident NOUN NN Number=Sing 5 obl _ SpaceAfter=No +11 , , PUNCT , _ 5 punct _ _ +12 without without SCONJ IN _ 13 mark _ _ +13 translating translat VERB VBG VerbForm=Ger 5 advcl _ _ +14 into into ADP IN _ 16 case _ _ +15 actual actual ADJ JJ Degree=Pos 16 amod _ _ +16 procedure procedure NOUN NN Number=Sing 18 obl _ _ +17 in in ADP IN _ 18 case _ _ +18 reality reality NOUN NN Number=Sing 13 obl _ SpaceAfter=No +19 . . PUNCT . _ 5 punct _ _ + +# sent_id = 18 +# text = A researcher at the Palestinian Center for Human Rights, Yasser Abd Al Ghafoor, said this is not the first time victims have fallen in similar incidents, noting that the rights organizations observed several incidents in which victims fell and injuries occurred during wedding and celebration gunfire, one of the common misuses of weapons in the Gaza Strip. +1 A a DET DT Definite=Ind|PronType=Art 2 det _ _ +2 researcher researcher NOUN NN Number=Sing 16 nsubj _ _ +3 at at ADP IN _ 6 case _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 Palestinian Palestinian ADJ JJ Degree=Pos 6 amod _ _ +6 Center Center PROPN NNP Number=Sing 2 nmod _ _ +7 for for ADP IN _ 9 case _ _ +8 Human human ADJ JJ Degree=Pos 9 amod _ _ +9 Rights Rights NOUN NNS Number=Plur 2 nmod _ SpaceAfter=No +10 , , PUNCT , _ 2 punct _ _ +11 Yasser Yasser PROPN NNP Number=Sing 13 compound _ _ +12 Abd Abd PROPN NNP Number=Sing 11 flat _ _ +13 Al Al PROPN NNP Number=Sing 2 appos _ _ +14 Ghafoor Ghafoor PROPN NNP Number=Sing 13 flat _ SpaceAfter=No +15 , , PUNCT , _ 16 punct _ _ +16 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +17 this this PRON DT Number=Sing|PronType=Dem 22 nsubj _ _ +18 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 cop _ _ +19 not not PART RB _ 22 advmod _ _ +20 the the DET DT Definite=Def|PronType=Art 22 det _ _ +21 first first ADJ JJ Degree=Pos|NumType=Ord 22 amod _ _ +22 time time NOUN NN Number=Sing 16 ccomp _ _ +23 victims victim NOUN NNS Number=Plur 25 nsubj _ _ +24 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 25 aux _ _ +25 fallen fall VERB VBN Tense=Past|VerbForm=Part 22 acl:relcl _ _ +26 in in ADP IN _ 28 case _ _ +27 similar similar ADJ JJ Degree=Pos 28 amod _ _ +28 incidents incident NOUN NNS Number=Plur 25 obl _ SpaceAfter=No +29 , , PUNCT , _ 22 punct _ _ +30 noting note VERB VBG VerbForm=Ger 22 advcl _ _ +31 that that SCONJ IN _ 35 mark _ _ +32 the the DET DT Definite=Def|PronType=Art 34 det _ _ +33 rights rights NOUN NNS Number=Plur 34 compound _ _ +34 organizations organization NOUN NNS Number=Plur 35 nsubj _ _ +35 observed observe VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 30 ccomp _ _ +36 several several ADJ JJ Degree=Pos 37 amod _ _ +37 incidents incidents NOUN NNS Number=Plur 35 obj _ _ +38 in in ADP IN _ 39 case _ _ +39 which which PRON WDT PronType=Rel 44 obl _ _ +40 victims victim ADJ JJ Degree=Pos 41 amod _ _ +41 fell fell NOUN NN Number=Sing 44 nsubj _ _ +42 and and CCONJ CC _ 43 cc _ _ +43 injuries injury NOUN NNS Number=Plur 41 conj _ _ +44 occurred occur VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 37 acl:relcl _ _ +45 during during ADP IN _ 46 case _ _ +46 wedding wedding NOUN NN Number=Sing 44 obl _ _ +47 and and CCONJ CC _ 48 cc _ _ +48 celebration celebration NOUN NN Number=Sing 46 conj _ _ +49 gunfire gunfire NOUN NN Number=Sing 46 conj _ SpaceAfter=No +50 , , PUNCT , _ 49 punct _ _ +51 one one NUM CD NumType=Card 49 appos _ _ +52 of of ADP IN _ 55 case _ _ +53 the the DET DT Definite=Def|PronType=Art 55 det _ _ +54 common common ADJ JJ Degree=Pos 55 amod _ _ +55 misuses misuse NOUN NNS Number=Plur 51 nmod _ _ +56 of of ADP IN _ 57 case _ _ +57 weapons weapon NOUN NNS Number=Plur 55 nmod _ _ +58 in in ADP IN _ 61 case _ _ +59 the the DET DT Definite=Def|PronType=Art 61 det _ _ +60 Gaza Gaza PROPN NNP Number=Sing 61 compound _ _ +61 Strip Strip PROPN NNP Number=Sing 57 nmod _ SpaceAfter=No +62 . . PUNCT . _ 16 punct _ _ + +# sent_id = 19 +# text = The city of Khan Younes had witnessed on the third of last July a similar incident, when the girl, Amani Al Raqab, died by a bullet that hit her by mistake from a revolver her brother was shooting off on his wedding day. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 city city NOUN NN Number=Sing 7 nsubj _ _ +3 of of ADP IN _ 4 case _ _ +4 Khan Khan PROPN NNP Number=Sing 2 nmod _ _ +5 Younes Younes PROPN NNP Number=Sing 4 flat _ _ +6 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 7 aux _ _ +7 witnessed witness VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 on on ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 third third NOUN NN Number=Sing 7 obl _ _ +11 of of ADP IN _ 13 case _ _ +12 last last ADJ JJ Degree=Pos 13 amod _ _ +13 July July PROPN NNP Number=Sing 10 nmod _ _ +14 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +15 similar similar ADJ JJ Degree=Pos 16 amod _ _ +16 incident incident NOUN NN Number=Sing 7 obj _ SpaceAfter=No +17 , , PUNCT , _ 7 punct _ _ +18 when when ADV WRB PronType=Int 26 mark _ _ +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 girl girl NOUN NN Number=Sing 26 nsubj _ SpaceAfter=No +21 , , PUNCT , _ 20 punct _ _ +22 Amani Amani PROPN NNP Number=Sing 20 flat _ _ +23 Al Al PROPN NNP Number=Sing 20 appos _ _ +24 Raqab Raqab PROPN NNP Number=Sing 23 flat _ SpaceAfter=No +25 , , PUNCT , _ 20 punct _ _ +26 died die VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 7 advcl _ _ +27 by by ADP IN _ 29 case _ _ +28 a a DET DT Definite=Ind|PronType=Art 29 det _ _ +29 bullet bullet NOUN NN Number=Sing 26 obl _ _ +30 that that PRON WDT PronType=Rel 31 nsubj _ _ +31 hit hit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 29 acl:relcl _ _ +32 her she PRON PRP$ Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs 31 obj _ _ +33 by by ADP IN _ 34 case _ _ +34 mistake mistake NOUN NN Number=Sing 31 obl _ _ +35 from from ADP IN _ 37 case _ _ +36 a a DET DT Definite=Ind|PronType=Art 37 det _ _ +37 revolver revolver NOUN NN Number=Sing 31 obl _ _ +38 her she PRON PRP$ Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs 39 nmod:poss _ _ +39 brother brother NOUN NN Number=Sing 41 nsubj _ _ +40 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 41 aux _ _ +41 shooting shoot VERB VBG Tense=Pres|VerbForm=Part 37 acl:relcl _ _ +42 off off ADP RP _ 41 compound:prt _ _ +43 on on ADP IN _ 46 case _ _ +44 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 46 nmod:poss _ _ +45 wedding wedding NOUN NN Number=Sing 46 compound _ _ +46 day day NOUN NN Number=Sing 41 obl _ SpaceAfter=No +47 . . PUNCT . _ 7 punct _ SpaceAfter=No + diff --git a/demo/onto_test/a2e_0000.onf b/demo/onto_test/a2e_0000.onf new file mode 100644 index 00000000..09f534b0 --- /dev/null +++ b/demo/onto_test/a2e_0000.onf @@ -0,0 +1,2370 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Celebration Shooting Turns Wedding Into a Funeral in Southern Gaza Strip + +Treebanked sentence: +-------------------- + Celebration Shooting Turns Wedding Into a Funeral in Southern Gaza Strip + +Tree: +----- + (TOP (S-HLN (NP-SBJ (NN Celebration) + (NN Shooting)) + (VP (VBZ Turns) + (NP (NN Wedding)) + (PP-CLR (IN Into) + (NP (DT a) + (NN Funeral)) + (PP-LOC (IN in) + (NP (JJ Southern) + (NNP Gaza) + (NNP Strip))))))) + +Leaves: +------- + 0 Celebration + 1 Shooting + 2 Turns + sense: turn-v.2 + prop: turn.02 + v * -> 2:0, Turns + ARG0 * -> 0:1, Celebration Shooting + ARG1 * -> 3:1, Wedding + ARG2 * -> 4:1, Into a Funeral in Southern Gaza Strip + 3 Wedding + coref: IDENT 1__2 3-3 Wedding + 4 Into + 5 a + 6 Funeral + 7 in + 8 Southern + coref: IDENT 1__4 8-10 Southern Gaza Strip + 9 Gaza + ! name: GPE 9-10 Gaza Strip + 10 Strip + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Asad + +Treebanked sentence: +-------------------- + Asad + +Tree: +----- + (TOP (FRAG (NP (NNP Asad)))) + +Leaves: +------- + 0 Asad + name: PERSON 0-0 Asad + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + 1/20/2007 + +Treebanked sentence: +-------------------- + 1/20/2007 + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1300.0 + stop time: 1400.0 + +Tree: +----- + (TOP (FRAG (NP (NN 1/20/2007)))) + +Leaves: +------- + 0 1/20/2007 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Gaza-UPI + +Treebanked sentence: +-------------------- + Gaza - UPI + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1400.0 + stop time: 1450.0 + +Tree: +----- + (TOP (FRAG (NP (NNP Gaza)) + (: -) + (NP (NNP UPI)))) + +Leaves: +------- + 0 Gaza + coref: IDENT 1__7 0-0 Gaza + name: GPE 0-0 Gaza + 1 - + 2 UPI + coref: IDENT 1__8 2-2 UPI + name: ORG 2-2 UPI + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The cheers and hails of happiness at a wedding in Khan Younes in the southern Gaza Strip turned into screams and moans + of pain after one of the celebrators lost control of his weapon, from which a number of bullets were released that + killed the groom's brother and hit three other relatives of his, turning the wedding into a funeral in moments. + +Treebanked sentence: +-------------------- + The cheers and hails of happiness at a wedding in Khan Younes in the southern Gaza Strip turned into screams and moans + of pain after one of the celebrators lost control of his weapon , from which a number of bullets *ICH*-2 were released + *-4 *T*-1 that *T*-3 killed the groom 's brother and hit three other relatives of his , turning the wedding into a + funeral in moments . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1450.0 + stop time: 1500.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NNS cheers) + (CC and) + (NNS hails)) + (PP (IN of) + (NP (NN happiness))) + (PP-LOC (IN at) + (NP (NP (DT a) + (NN wedding)) + (PP-LOC (IN in) + (NP (NP (NNP Khan) + (NNS Younes)) + (PP-LOC (IN in) + (NP (DT the) + (JJ southern) + (NNP Gaza) + (NNP Strip)))))))) + (VP (VBD turned) + (PP-CLR (IN into) + (NP (NP (NNS screams) + (CC and) + (NNS moans)) + (PP (IN of) + (NP (NN pain))))) + (SBAR-TMP (IN after) + (S (NP-SBJ (NP (CD one)) + (PP (IN of) + (NP (DT the) + (NNS celebrators)))) + (VP (VBD lost) + (NP (NP (NN control)) + (PP (IN of) + (NP (NP (PRP$ his) + (NN weapon)) + (, ,) + (SBAR (WHPP-1 (IN from) + (WHNP (WDT which))) + (S (NP-SBJ-4 (NP (NP (DT a) + (NN number)) + (PP (IN of) + (NP (NNS bullets)))) + (SBAR (-NONE- *ICH*-2))) + (VP (VBD were) + (VP (VBN released) + (NP (-NONE- *-4)) + (PP-CLR (-NONE- *T*-1)) + (SBAR-2 (WHNP-3 (WDT that)) + (S (NP-SBJ (-NONE- *T*-3)) + (VP (VP (VBD killed) + (NP (NP (DT the) + (NN groom) + (POS 's)) + (NN brother))) + (CC and) + (VP (VBD hit) + (NP (NP (CD three) + (JJ other) + (NNS relatives)) + (PP (IN of) + (NP (PRP$ his))))) + (, ,) + (S-ADV (VP (VBG turning) + (NP (DT the) + (NN wedding)) + (PP-CLR (IN into) + (NP (DT a) + (NN funeral))) + (PP-TMP (IN in) + (NP (NNS + moments))))))))))))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 cheers + 2 and + 3 hails + 4 of + 5 happiness + 6 at + 7 a + 8 wedding + sense: wedding-n.1 + 9 in + 10 Khan + coref: IDENT 1__12 10-16 Khan Younes in the southern Gaza Strip + name: GPE 10-11 Khan Younes + 11 Younes + 12 in + 13 the + coref: IDENT 1__4 13-16 the southern Gaza Strip + 14 southern + 15 Gaza + ! name: GPE 15-16 Gaza Strip + 16 Strip + 17 turned + sense: turn-v.2 + prop: turn.02 + v * -> 17:0, turned + ARG1 * -> 0:2, The cheers and hails of happiness at a wedding in Khan Younes in the southern Gaza + Strip + ARG2 * -> 18:1, into screams and moans of pain + ARGM-TMP * -> 24:1, after one of the celebrators lost control of his weapon , from which a number of + bullets *ICH*-2 were released *-4 *T*-1 that *T*-3 killed the groom 's brother and hit + three other relatives of his , turning the wedding into a funeral in moments + -> 46:2, that *T*-3 killed the groom 's brother and hit three other relatives of his , turning + the wedding into a funeral in moments + * -> 41:0, *ICH*-2 -> 46:2, that *T*-3 killed the groom 's brother and hit three other relatives + of his , turning the wedding into a funeral in moments + 18 into + 19 screams + 20 and + 21 moans + 22 of + 23 pain + 24 after + 25 one + coref: IDENT 1__16 25-28 one of the celebrators + name: CARDINAL 25-25 one + 26 of + 27 the + 28 celebrators + 29 lost + sense: lose-v.4 + prop: lose.02 + v * -> 29:0, lost + ARG0 * -> 25:2, one of the celebrators + ARG1 * -> 30:2, control of his weapon , from which a number of bullets *ICH*-2 were released *-4 *T*-1 + that *T*-3 killed the groom 's brother and hit three other relatives of his , turning + the wedding into a funeral in moments + -> 46:2, that *T*-3 killed the groom 's brother and hit three other relatives of his , turning + the wedding into a funeral in moments + * -> 41:0, *ICH*-2 -> 46:2, that *T*-3 killed the groom 's brother and hit three other relatives + of his , turning the wedding into a funeral in moments + 30 control + 31 of + 32 his + coref: IDENT 1__16 32-32 his + coref: IDENT 1__19 32-68 his weapon , from which a number of bullets *ICH*-2 were released *-4 + *T*-1 that *T*-3 killed the groom 's brother and hit three other relatives + of his , turning the wedding into a funeral in moments + 33 weapon + 34 , + 35 from + 36 which + 37 a + 38 number + 39 of + 40 bullets + 41 *ICH*-2 + 42 were + 43 released + prop: release.01 + v * -> 43:0, released + ARG1 * -> 37:3, a number of bullets *ICH*-2 + -> 46:2, that *T*-3 killed the groom 's brother and hit three other relatives of his , turning + the wedding into a funeral in moments + * -> 44:0, *-4 -> 37:3, a number of bullets *ICH*-2 + ARG2 * -> 45:0, *T*-1 -> 35:1, from which + LINK-SLC * -> 32:1, his weapon + * -> 45:0, *T*-1 -> 35:1, from which + 44 *-4 + 45 *T*-1 + 46 that + 47 *T*-3 + 48 killed + sense: kill-v.1 + prop: kill.01 + v * -> 48:0, killed + ARG0 * -> 47:0, *T*-3 -> 46:1, that + ARG1 * -> 49:2, the groom 's brother + ARGM-ADV * -> 61:2, turning the wedding into a funeral in moments + LINK-SLC * -> 37:2, a number of bullets + * -> 47:0, *T*-3 -> 46:1, that + 49 the + coref: IDENT 1__22 49-52 the groom 's brother + coref: IDENT 1__23 49-51 the groom 's + 50 groom + 51 's + 52 brother + 53 and + 54 hit + sense: hit-v.1 + prop: hit.01 + v * -> 54:0, hit + ARG2 * -> 47:0, *T*-3 -> 46:1, that + ARG1 * -> 55:2, three other relatives of his + ARGM-ADV * -> 61:2, turning the wedding into a funeral in moments + LINK-SLC * -> 37:2, a number of bullets + * -> 47:0, *T*-3 -> 46:1, that + 55 three + name: CARDINAL 55-55 three + 56 other + 57 relatives + 58 of + 59 his + coref: IDENT 1__23 59-59 his + 60 , + 61 turning + sense: turn-v.2 + prop: turn.02 + v * -> 61:0, turning + ARG1 * -> 62:1, the wedding + ARG2 * -> 64:1, into a funeral + ARGM-TMP * -> 67:1, in moments + 62 the + coref: IDENT 1__2 62-63 the wedding + 63 wedding + sense: wedding-n.1 + 64 into + 65 a + 66 funeral + 67 in + 68 moments + 69 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A medical source at Nasser Hospital in Khan Younes told United Press International that Palestinian citizen Kamal + Mohamed Al Bashiti-LRB-33 years old-RRB-died shortly after he was hit by a gunshot in the chest from an accidental + shooting at his brother's wedding in Khan Younes. + +Treebanked sentence: +-------------------- + A medical source at Nasser Hospital in Khan Younes told United Press International that Palestinian citizen Kamal + Mohamed Al Bashiti -LRB- 33 years old -RRB- died shortly after he was hit *-1 by a gunshot in the chest from an + accidental shooting at his brother 's wedding in Khan Younes . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1500.0 + stop time: 1550.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT A) + (NN medical) + (NN source)) + (PP-LOC (IN at) + (NP (NP (NNP Nasser) + (NNP Hospital)) + (PP-LOC (IN in) + (NP (NNP Khan) + (NNPS Younes)))))) + (VP (VBD told) + (NP (NNP United) + (NNP Press) + (NNP International)) + (SBAR (IN that) + (S (NP-SBJ (NP (NML (JJ Palestinian) + (NN citizen)) + (NNP Kamal) + (NNP Mohamed) + (NNP Al) + (NNP Bashiti)) + (ADJP (-LRB- -LRB-) + (NML (CD 33) + (NNS years)) + (JJ old) + (-RRB- -RRB-))) + (VP (VBD died) + (SBAR-TMP (ADVP (RB shortly)) + (IN after) + (S (NP-SBJ-1 (PRP he)) + (VP (VBD was) + (VP (VBN hit) + (NP (-NONE- *-1)) + (PP (IN by) + (NP-LGS (DT a) + (NN gunshot))) + (PP-LOC (IN in) + (NP (DT the) + (NN chest))) + (PP-MNR (IN from) + (NP (NP (DT an) + (JJ accidental) + (NN shooting)) + (PP-LOC (IN at) + (NP (NP (NP (PRP$ his) + (NN brother) + (POS 's)) + (NN wedding)) + (PP-LOC (IN in) + (NP (NNP Khan) + (NNPS Younes))))))))))))))) + (. .))) + +Leaves: +------- + 0 A + 1 medical + 2 source + 3 at + 4 Nasser + coref: IDENT 1__32 4-8 Nasser Hospital in Khan Younes + name: FAC 4-5 Nasser Hospital + 5 Hospital + 6 in + 7 Khan + coref: IDENT 1__12 7-8 Khan Younes + name: GPE 7-8 Khan Younes + 8 Younes + 9 told + sense: tell-v.1 + prop: tell.01 + v * -> 9:0, told + ARG0 * -> 0:2, A medical source at Nasser Hospital in Khan Younes + ARG2 * -> 10:1, United Press International + ARG1 * -> 13:1, that Palestinian citizen Kamal Mohamed Al Bashiti -LRB- 33 years old -RRB- died + shortly after he was hit *-1 by a gunshot in the chest from an accidental shooting at + his brother 's wedding in Khan Younes + 10 United + coref: IDENT 1__8 10-12 United Press International + name: ORG 10-12 United Press International + 11 Press + 12 International + 13 that + 14 Palestinian + coref: IDENT 1__22 14-24 Palestinian citizen Kamal Mohamed Al Bashiti -LRB- 33 years old -RRB- + name: NORP 14-14 Palestinian + 15 citizen + 16 Kamal + ! name: PERSON 16-19 Kamal Mohamed Al Bashiti + 17 Mohamed + 18 Al + 19 Bashiti + 20 -LRB- + name: DATE 20-24 -LRB- 33 years old -RRB- + 21 33 + 22 years + 23 old + 24 -RRB- + 25 died + sense: die-v.1 + prop: die.01 + v * -> 25:0, died + ARG1 * -> 14:3, Palestinian citizen Kamal Mohamed Al Bashiti -LRB- 33 years old -RRB- + ARGM-TMP * -> 26:2, shortly after he was hit *-1 by a gunshot in the chest from an accidental shooting at + his brother 's wedding in Khan Younes + 26 shortly + 27 after + 28 he + coref: IDENT 1__22 28-28 he + 29 was + 30 hit + sense: hit-v.1 + prop: hit.01 + v * -> 30:0, hit + ARG1 * -> 31:0, *-1 -> 28:1, he + ARG2 * -> 32:1, by a gunshot + ARGM-LOC * -> 35:1, in the chest + ARGM-CAU * -> 38:1, from an accidental shooting at his brother 's wedding in Khan Younes + 31 *-1 + 32 by + 33 a + 34 gunshot + 35 in + 36 the + 37 chest + 38 from + 39 an + coref: IDENT 1__39 39-49 an accidental shooting at his brother 's wedding in Khan Younes + 40 accidental + 41 shooting + 42 at + 43 his + coref: IDENT 1__2 43-49 his brother 's wedding in Khan Younes + coref: IDENT 1__22 43-43 his + coref: IDENT 1__23 43-45 his brother 's + 44 brother + 45 's + 46 wedding + sense: wedding-n.1 + 47 in + 48 Khan + coref: IDENT 1__12 48-49 Khan Younes + name: GPE 48-49 Khan Younes + 49 Younes + 50 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Three other relatives of his were also injured in the accident, including two children. + +Treebanked sentence: +-------------------- + Three other relatives of his *ICH*-2 were also injured *-1 in the accident , including two children . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1550.0 + stop time: 1600.0 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (CD Three) + (JJ other) + (NNS relatives)) + (PP (IN of) + (NP (PRP$ his))) + (PP (-NONE- *ICH*-2))) + (VP (VBD were) + (ADVP (RB also)) + (VP (VBN injured) + (NP (-NONE- *-1)) + (PP-LOC (IN in) + (NP (DT the) + (NN accident))) + (, ,) + (PP-2 (VBG including) + (NP (CD two) + (NNS children))))) + (. .))) + +Leaves: +------- + 0 Three + name: CARDINAL 0-0 Three + 1 other + 2 relatives + 3 of + 4 his + coref: IDENT 1__23 4-4 his + 5 *ICH*-2 + 6 were + 7 also + 8 injured + prop: injure.01 + v * -> 8:0, injured + ARGM-ADV * -> 7:1, also + ARG1 * -> 0:2, Three other relatives of his *ICH*-2 + -> 14:1, including two children + * -> 9:0, *-1 -> 0:2, Three other relatives of his *ICH*-2 + ARG0 * -> 10:1, in the accident + 9 *-1 + 10 in + 11 the + coref: IDENT 1__39 11-12 the accident + 12 accident + 13 , + 14 including + 15 two + name: CARDINAL 15-15 two + 16 children + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Gaza Strip residents are suffering from the problem of aggravation from the weapons mess and security chaos resulting + from the intense spread of weapons in the hands of security agency individuals and members of factions and families. + +Treebanked sentence: +-------------------- + Gaza Strip residents are suffering from the problem of aggravation from the weapons mess and security chaos resulting + from the intense spread of weapons in the hands of security agency individuals and members of factions and families . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1600.0 + stop time: 1650.0 + +Tree: +----- + (TOP (S (NP-SBJ (NML (NNP Gaza) + (NNP Strip)) + (NNS residents)) + (VP (VBP are) + (VP (VBG suffering) + (PP-CLR (IN from) + (NP (NP (DT the) + (NN problem)) + (PP (IN of) + (NP (NP (NP (NN aggravation)) + (PP (IN from) + (NP (DT the) + (NNS weapons) + (NN mess)))) + (CC and) + (NP (NP (NN security) + (NN chaos)) + (VP (VBG resulting) + (PP-CLR (IN from) + (NP (NP (DT the) + (JJ intense) + (NN spread)) + (PP (IN of) + (NP (NNS weapons))) + (PP-LOC (IN in) + (NP (NP (DT the) + (NNS hands)) + (PP (IN of) + (NP (NP (NML (NN security) + (NN agency)) + (NNS individuals)) + (CC and) + (NP (NP (NNS members)) + (PP (IN of) + (NP (NNS factions) + (CC and) + (NNS families)))))))))))))))))) + (. .))) + +Leaves: +------- + 0 Gaza + coref: IDENT 1__7 0-1 Gaza Strip + name: GPE 0-1 Gaza Strip + 1 Strip + 2 residents + 3 are + 4 suffering + sense: suffer-v.1 + prop: suffer.01 + v * -> 4:0, suffering + ARG0 * -> 0:2, Gaza Strip residents + ARG1 * -> 5:1, from the problem of aggravation from the weapons mess and security chaos resulting + from the intense spread of weapons in the hands of security agency individuals and + members of factions and families + 5 from + 6 the + 7 problem + 8 of + 9 aggravation + 10 from + 11 the + 12 weapons + 13 mess + sense: mess-n.1 + 14 and + 15 security + 16 chaos + 17 resulting + prop: result.01 + v * -> 17:0, resulting + ARG2 * -> 15:1, security chaos + ARG1 * -> 18:1, from the intense spread of weapons in the hands of security agency individuals and + members of factions and families + 18 from + 19 the + 20 intense + 21 spread + 22 of + 23 weapons + 24 in + 25 the + 26 hands + 27 of + 28 security + 29 agency + 30 individuals + 31 and + 32 members + 33 of + 34 factions + 35 and + 36 families + 37 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This is a common practice that claimed the lives of about 350 people last year, according to Palestinian human rights + sources. + +Treebanked sentence: +-------------------- + This is a common practice that *T*-1 claimed the lives of about 350 people last year , according to Palestinian human + rights sources . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1650.0 + stop time: 1700.0 + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (JJ common) + (NN practice)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD claimed) + (NP (NP (DT the) + (NNS lives)) + (PP (IN of) + (NP (QP (RB about) + (CD 350)) + (NNS people)))) + (NP-TMP (JJ last) + (NN year)) + (, ,) + (PP (VBG according) + (PP (IN to) + (NP (JJ Palestinian) + (NML (JJ human) + (NNS rights)) + (NNS sources))))))))) + (. .))) + +Leaves: +------- + 0 This + 1 is + sense: be-v.1 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, This + ARG2 * -> 2:2, a common practice that *T*-1 claimed the lives of about 350 people last year , + according to Palestinian human rights sources + 2 a + 3 common + 4 practice + 5 that + 6 *T*-1 + 7 claimed + sense: claim-v.4 + prop: claim.02 + v * -> 7:0, claimed + ARG0 * -> 6:0, *T*-1 -> 5:1, that + ARG1 * -> 8:2, the lives of about 350 people + ARGM-TMP * -> 14:1, last year + ARGM-ADV * -> 17:1, according to Palestinian human rights sources + LINK-SLC * -> 2:1, a common practice + * -> 6:0, *T*-1 -> 5:1, that + 8 the + 9 lives + 10 of + 11 about + 12 350 + name: CARDINAL 12-12 350 + 13 people + 14 last + 15 year + 16 , + 17 according + 18 to + 19 Palestinian + name: NORP 19-19 Palestinian + 20 human + 21 rights + 22 sources + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Mohamed Al Bashiti, 18-LRB-years old-RRB-, a relative of the victim, mentioned that while the young men were performing + dances and popular dabke dances Thursday evening, and while they were in a state of intense rejoicing for the wedding of + our relative, Majed Al Bashiti, one of the armed men lost control of his weapon, which he was trying to use to fire to + celebrate and greet the groom. + +Treebanked sentence: +-------------------- + Mohamed Al Bashiti , 18 -LRB- years old -RRB- , a relative of the victim , mentioned that while the young men were + performing dances and popular dabke dances Thursday evening , and while they were in a state of intense rejoicing for + the wedding of our relative , Majed Al Bashiti , one of the armed men lost control of his weapon , which he was trying + *PRO*-1 to use *T*-2 *PRO*-3 to fire *PRO*-4 to celebrate and greet the groom . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1700.0 + stop time: 1800.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NP (NNP Mohamed) + (NNP Al) + (NNP Bashiti)) + (, ,) + (ADJP (NML (CD 18) + (-LRB- -LRB-) + (NNS years)) + (JJ old) + (-RRB- -RRB-))) + (, ,) + (NP (NP (DT a) + (NN relative)) + (PP (IN of) + (NP (DT the) + (NN victim))))) + (, ,) + (VP (VBD mentioned) + (SBAR (IN that) + (S (SBAR-TMP (SBAR (IN while) + (S (NP-SBJ (DT the) + (JJ young) + (NNS men)) + (VP (VBD were) + (VP (VBG performing) + (NP (NP (NNS dances)) + (CC and) + (NP (JJ popular) + (NN dabke) + (NNS dances))) + (NP-TMP (NNP Thursday) + (NN evening)))))) + (, ,) + (CC and) + (SBAR-TMP (IN while) + (S (NP-SBJ (PRP they)) + (VP (VBD were) + (PP-PRD (IN in) + (NP (NP (DT a) + (NN state)) + (PP (IN of) + (NP (NP (JJ intense) + (NN rejoicing)) + (PP (IN for) + (NP (NP (DT the) + (NN wedding)) + (PP (IN of) + (NP (PRP$ our) + (NN relative))))))))))))) + (, ,) + (NP-SBJ (NP (NNP Majed) + (NNP Al) + (NNP Bashiti)) + (, ,) + (NP (NP (CD one)) + (PP (IN of) + (NP (DT the) + (JJ armed) + (NNS men))))) + (VP (VBD lost) + (NP (NP (NN control)) + (PP (IN of) + (NP (NP (PRP$ his) + (NN weapon)) + (, ,) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ-1 (PRP he)) + (VP (VBD was) + (VP (VBG trying) + (S (NP-SBJ-3 (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB use) + (NP (-NONE- *T*-2)) + (S-CLR (NP-SBJ-4 (-NONE- *PRO*-3)) + (VP (TO to) + (VP (VB fire) + (S-PRP (NP-SBJ (-NONE- *PRO*-4)) + (VP (TO to) + (VP (VB celebrate) + (CC and) + (VB greet) + (NP (DT the) + (NN + groom)))))))))))))))))))))) + (. .))) + +Leaves: +------- + 0 Mohamed + coref: APPOS HEAD 1__69 0-8 Mohamed Al Bashiti , 18 -LRB- years old -RRB- + name: PERSON 0-2 Mohamed Al Bashiti + 1 Al + 2 Bashiti + 3 , + 4 18 + name: DATE 4-8 18 -LRB- years old -RRB + 5 -LRB- + 6 years + 7 old + 8 -RRB- + 9 , + 10 a + coref: APPOS ATTRIB 1__69 10-14 a relative of the victim + 11 relative + 12 of + 13 the + coref: IDENT 1__22 13-14 the victim + 14 victim + 15 , + 16 mentioned + prop: mention.01 + v * -> 16:0, mentioned + ARG0 * -> 0:3, Mohamed Al Bashiti , 18 -LRB- years old -RRB- , a relative of the victim + ARG1 * -> 17:1, that while the young men were performing dances and popular dabke dances Thursday + evening , and while they were in a state of intense rejoicing for the wedding of our + relative , Majed Al Bashiti , one of the armed men lost control of his weapon , which + he was trying *PRO*-1 to use *T*-2 *PRO*-3 to fire *PRO*-4 to celebrate and greet the + groom + 17 that + 18 while + 19 the + coref: IDENT 1__72 19-21 the young men + 20 young + 21 men + 22 were + 23 performing + sense: perform-v.2 + prop: perform.01 + v * -> 23:0, performing + ARG0 * -> 19:1, the young men + ARG1 * -> 24:2, dances and popular dabke dances + ARGM-TMP * -> 29:1, Thursday evening + 24 dances + 25 and + 26 popular + 27 dabke + 28 dances + 29 Thursday + name: DATE 29-29 Thursday + 30 evening + 31 , + 32 and + 33 while + 34 they + coref: IDENT 1__72 34-34 they + 35 were + sense: be-v.1 + prop: be.01 + v * -> 35:0, were + ARG1 * -> 34:1, they + ARG2 * -> 36:1, in a state of intense rejoicing for the wedding of our relative + 36 in + 37 a + 38 state + 39 of + 40 intense + 41 rejoicing + 42 for + 43 the + ! coref: IDENT 1__2 43-51 the wedding of our relative , Majed Al Bashiti + 44 wedding + sense: wedding-n.1 + 45 of + 46 our + coref: APPOS ATTRIB 1__83 46-47 our relative + ! coref: IDENT 1__23 46-51 our relative , Majed Al Bashiti + 47 relative + 48 , + 49 Majed + coref: APPOS HEAD 1__83 49-51 Majed Al Bashiti + name: PERSON 49-51 Majed Al Bashiti + 50 Al + 51 Bashiti + 52 , + 53 one + coref: IDENT 1__16 53-57 one of the armed men + name: CARDINAL 53-53 one + 54 of + 55 the + 56 armed + 57 men + 58 lost + sense: lose-v.4 + prop: lose.02 + v * -> 58:0, lost + ARGM-TMP * -> 18:2, while the young men were performing dances and popular dabke dances Thursday evening , + and while they were in a state of intense rejoicing for the wedding of our relative + ARG0 * -> 49:2, Majed Al Bashiti , one of the armed men + ARG1 * -> 59:2, control of his weapon , which he was trying *PRO*-1 to use *T*-2 *PRO*-3 to fire + *PRO*-4 to celebrate and greet the groom + 59 control + 60 of + 61 his + coref: IDENT 1__16 61-61 his + coref: IDENT 1__19 61-81 his weapon , which he was trying *PRO*-1 to use *T*-2 *PRO*-3 to fire + *PRO*-4 to celebrate and greet the groom + 62 weapon + 63 , + 64 which + 65 he + coref: IDENT 1__16 65-65 he + 66 was + 67 trying + sense: try-v.1 + prop: try.01 + v * -> 67:0, trying + ARG0 * -> 65:1, he + ARG1 * -> 68:2, *PRO*-1 to use *T*-2 *PRO*-3 to fire *PRO*-4 to celebrate and greet the groom + 68 *PRO*-1 + 69 to + 70 use + sense: use-v.1 + prop: use.01 + v * -> 70:0, use + ARG0 * -> 68:0, *PRO*-1 -> 65:1, he + ARG1 * -> 71:0, *T*-2 -> 64:1, which + ARG2 * -> 72:2, *PRO*-3 to fire *PRO*-4 to celebrate and greet the groom + LINK-SLC * -> 61:1, his weapon + * -> 71:0, *T*-2 -> 64:1, which + 71 *T*-2 + 72 *PRO*-3 + 73 to + 74 fire + sense: fire-v.1 + prop: fire.01 + v * -> 74:0, fire + ARG0 * -> 72:0, *PRO*-3 -> 68:0, *PRO*-1 -> 65:1, he + ARGM-PRP * -> 75:2, *PRO*-4 to celebrate and greet the groom + 75 *PRO*-4 + 76 to + 77 celebrate + sense: celebrate-v.1 + prop: celebrate.01 + v * -> 77:0, celebrate + ARG0 * -> 75:0, *PRO*-4 -> 72:0, *PRO*-3 -> 68:0, *PRO*-1 -> 65:1, he + ARG1 * -> 80:1, the groom + 78 and + 79 greet + sense: greet-v.1 + prop: greet.01 + v * -> 79:0, greet + ARG0 * -> 75:0, *PRO*-4 -> 72:0, *PRO*-3 -> 68:0, *PRO*-1 -> 65:1, he + ARG1 * -> 80:1, the groom + 80 the + coref: IDENT 1__23 80-81 the groom + 81 groom + 82 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The bullets went astray and hit a number of participants amid a state of panic and terror. + +Treebanked sentence: +-------------------- + The bullets went astray and hit a number of participants amid a state of panic and terror . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1700.0 + stop time: 1800.0 + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NNS bullets)) + (VP (VP (VBD went) + (ADVP-DIR (RB astray))) + (CC and) + (VP (VBD hit) + (NP (NP (DT a) + (NN number)) + (PP (IN of) + (NP (NNS participants)))) + (PP-LOC (IN amid) + (NP (NP (DT a) + (NN state)) + (PP (IN of) + (NP (NN panic) + (CC and) + (NN terror))))))) + (. .))) + +Leaves: +------- + 0 The + 1 bullets + 2 went + sense: go-v.1 + prop: go.01 + v * -> 2:0, went + ARG1 * -> 0:1, The bullets + ARGM-DIR * -> 3:1, astray + 3 astray + 4 and + 5 hit + sense: hit-v.1 + prop: hit.01 + v * -> 5:0, hit + ARG2 * -> 0:1, The bullets + ARG1 * -> 6:2, a number of participants + ARGM-LOC * -> 10:1, amid a state of panic and terror + 6 a + 7 number + 8 of + 9 participants + 10 amid + 11 a + 12 state + 13 of + 14 panic + 15 and + 16 terror + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In moments, the wedding cheers turned into screams and the hitting of cheeks. + +Treebanked sentence: +-------------------- + In moments , the wedding cheers turned into screams and the hitting of cheeks . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1800.0 + stop time: 1900.0 + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (NNS moments))) + (, ,) + (NP-SBJ (DT the) + (NN wedding) + (NNS cheers)) + (VP (VBD turned) + (PP-CLR (IN into) + (NP (NP (NNS screams)) + (CC and) + (NP (NP (DT the) + (NN hitting)) + (PP (IN of) + (NP (NNS cheeks))))))) + (. .))) + +Leaves: +------- + 0 In + 1 moments + 2 , + 3 the + 4 wedding + sense: wedding-n.1 + 5 cheers + 6 turned + sense: turn-v.2 + prop: turn.02 + v * -> 6:0, turned + ARGM-TMP * -> 0:1, In moments + ARG1 * -> 3:1, the wedding cheers + ARG2 * -> 7:1, into screams and the hitting of cheeks + 7 into + 8 screams + 9 and + 10 the + 11 hitting + 12 of + 13 cheeks + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The participants of the party moved to Nasser Hospital, which lay hundreds of meters away from the site of the wedding. + +Treebanked sentence: +-------------------- + The participants of the party moved to Nasser Hospital , which *T*-1 lay hundreds of meters away from the site of the + wedding . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1800.0 + stop time: 1900.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NNS participants)) + (PP (IN of) + (NP (DT the) + (NN party)))) + (VP (VBD moved) + (PP-DIR (IN to) + (NP (NP (NNP Nasser) + (NNP Hospital)) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD lay) + (ADVP-LOC (QP (NP (NNS hundreds)) + (PP (IN of) + (NP (NNS meters)))) + (RB away) + (PP (IN from) + (NP (NP (DT the) + (NN site)) + (PP (IN of) + (NP (DT the) + (NN wedding)))))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 participants + 2 of + 3 the + 4 party + 5 moved + sense: move-v.1 + prop: move.01 + v * -> 5:0, moved + ARG0 * -> 0:2, The participants of the party + ARG2 * -> 6:1, to Nasser Hospital , which *T*-1 lay hundreds of meters away from the site of the + wedding + 6 to + 7 Nasser + coref: IDENT 1__32 7-22 Nasser Hospital , which *T*-1 lay hundreds of meters away from the site of + the wedding + name: FAC 7-8 Nasser Hospital + 8 Hospital + 9 , + 10 which + 11 *T*-1 + 12 lay + sense: lie-v.1 + prop: lie.01 + v * -> 12:0, lay + ARG1 * -> 11:0, *T*-1 -> 10:1, which + ARG2 * -> 13:3, hundreds of meters away from the site of the wedding + LINK-SLC * -> 7:1, Nasser Hospital + * -> 11:0, *T*-1 -> 10:1, which + 13 hundreds + name: QUANTITY 13-15 hundreds of meters + 14 of + 15 meters + 16 away + 17 from + 18 the + 19 site + 20 of + 21 the + coref: IDENT 1__2 21-22 the wedding + 22 wedding + sense: wedding-n.1 + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The tragic news came after a little while : the death of the groom's brother, who works in one of the security agencies. + +Treebanked sentence: +-------------------- + The tragic news *ICH*-1 came after a little while : the death of the groom 's brother , who *T*-2 works in one of the + security agencies . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1800.0 + stop time: 1900.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (JJ tragic) + (NN news)) + (NP (-NONE- *ICH*-1))) + (VP (VBD came) + (PP-TMP (IN after) + (NP (DT a) + (JJ little) + (NN while))) + (: :) + (NP-1 (NP (DT the) + (NN death)) + (PP (IN of) + (NP (NP (NP (DT the) + (NN groom) + (POS 's)) + (NN brother)) + (, ,) + (SBAR (WHNP-2 (WP who)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VBZ works) + (PP-LOC (IN in) + (NP (NP (CD one)) + (PP (IN of) + (NP (DT the) + (NN security) + (NNS agencies)))))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 tragic + 2 news + 3 *ICH*-1 + 4 came + sense: come-v.2 + prop: come.01 + v * -> 4:0, came + ARG1 * -> 0:2, The tragic news *ICH*-1 + -> 10:2, the death of the groom 's brother , who *T*-2 works in one of the security agencies + ARGM-TMP * -> 5:1, after a little while + 5 after + 6 a + 7 little + 8 while + 9 : + 10 the + 11 death + 12 of + 13 the + coref: IDENT 1__22 13-26 the groom 's brother , who *T*-2 works in one of the security agencies + coref: IDENT 1__23 13-15 the groom 's + 14 groom + 15 's + 16 brother + 17 , + 18 who + 19 *T*-2 + 20 works + sense: work-v.1 + prop: work.01 + v * -> 20:0, works + ARG0 * -> 19:0, *T*-2 -> 18:1, who + ARG2 * -> 21:1, in one of the security agencies + LINK-SLC * -> 13:2, the groom 's brother + * -> 19:0, *T*-2 -> 18:1, who + 21 in + 22 one + name: CARDINAL 22-22 one + 23 of + 24 the + 25 security + 26 agencies + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + An elderly man said, " I asked them not to shoot and asked them for God's sake not to do it, but they persisted in it, + until what happened happened. + +Treebanked sentence: +-------------------- + An elderly man said , " I asked them *PRO*-1 not to shoot and asked them *PRO*-2 for God 's sake not to do it , but they + persisted in it , until what *T*-3 happened happened . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1900.0 + stop time: 2000.0 + +Tree: +----- + (TOP (S (NP-SBJ (DT An) + (JJ elderly) + (NN man)) + (VP (VBD said) + (, ,) + (S (S (`` ") + (NP-SBJ (PRP I)) + (VP (VP (VBD asked) + (NP-1 (PRP them)) + (S (NP-SBJ (-NONE- *PRO*-1)) + (RB not) + (VP (TO to) + (VP (VB shoot))))) + (CC and) + (VP (VBD asked) + (NP-2 (PRP them)) + (S (NP-SBJ (-NONE- *PRO*-2)) + (PP-PRP (IN for) + (NP (NP (NNP God) + (POS 's)) + (NN sake))) + (RB not) + (VP (TO to) + (VP (VB do) + (NP (PRP it)))))))) + (, ,) + (CC but) + (S (NP-SBJ (PRP they)) + (VP (VBD persisted) + (PP-CLR (IN in) + (NP (PRP it))) + (, ,) + (SBAR-TMP (IN until) + (S (SBAR-NOM (WHNP-3 (WP what)) + (S (NP-SBJ (-NONE- *T*-3)) + (VP (VBD happened)))) + (VP (VBD happened)))))))) + (. .))) + +Leaves: +------- + 0 An + coref: IDENT 2__1 0-2 An elderly man + 1 elderly + 2 man + 3 said + sense: say-v.1 + prop: say.01 + v * -> 3:0, said + ARG0 * -> 0:1, An elderly man + ARG1 * -> 5:2, " I asked them *PRO*-1 not to shoot and asked them *PRO*-2 for God 's sake not to do + it , but they persisted in it , until what *T*-3 happened happened + 4 , + 5 " + 6 I + coref: IDENT 2__1 6-6 I + 7 asked + sense: ask-v.2 + prop: ask.02 + v * -> 7:0, asked + ARG0 * -> 6:1, I + ARG2 * -> 8:1, them + ARG1 * -> 9:2, *PRO*-1 not to shoot + 8 them + coref: IDENT 2__3 8-8 them + 9 *PRO*-1 + 10 not + 11 to + 12 shoot + sense: shoot-v.1 + prop: shoot.02 + v * -> 12:0, shoot + ARG0 * -> 9:0, *PRO*-1 -> 8:1, them + ARGM-NEG * -> 10:0, not + coref: IDENT 2__7 12-12 shoot + 13 and + 14 asked + sense: ask-v.2 + prop: ask.02 + v * -> 14:0, asked + ARG0 * -> 6:1, I + ARG2 * -> 15:1, them + ARG1 * -> 16:2, *PRO*-2 for God 's sake not to do it + 15 them + coref: IDENT 2__3 15-15 them + 16 *PRO*-2 + 17 for + 18 God + 19 's + 20 sake + 21 not + 22 to + 23 do + sense: do-v.1 + 24 it + coref: IDENT 2__7 24-24 it + 25 , + 26 but + 27 they + coref: IDENT 2__3 27-27 they + 28 persisted + sense: persist-v.2 + prop: persist.01 + v * -> 28:0, persisted + ARG0 * -> 27:1, they + ARG1 * -> 29:1, in it + ARGM-TMP * -> 32:1, until what *T*-3 happened happened + 29 in + 30 it + coref: IDENT 2__7 30-30 it + 31 , + 32 until + 33 what + 34 *T*-3 + 35 happened + prop: happen.01 + v * -> 35:0, happened + ARG1 * -> 34:0, *T*-3 -> 33:1, what + 36 happened + sense: happen-v.1 + prop: happen.01 + v * -> 36:0, happened + ARG1 * -> 33:2, what *T*-3 happened + 37 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A number of women suffered cases of fainting and shock after the tragic accident. " + +Treebanked sentence: +-------------------- + A number of women suffered cases of fainting and shock after the tragic accident . " + +Speaker information: +-------------------- + name: _أسعد_ + start time: 1900.0 + stop time: 2000.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT A) + (NN number)) + (PP (IN of) + (NP (NNS women)))) + (VP (VBD suffered) + (NP (NP (NNS cases)) + (PP (IN of) + (NP (NN fainting) + (CC and) + (NN shock)))) + (PP-TMP (IN after) + (NP (DT the) + (JJ tragic) + (NN accident)))) + (. .) + ('' "))) + +Leaves: +------- + 0 A + 1 number + 2 of + 3 women + 4 suffered + sense: suffer-v.1 + prop: suffer.01 + v * -> 4:0, suffered + ARG0 * -> 0:2, A number of women + ARG1 * -> 5:2, cases of fainting and shock + ARGM-TMP * -> 10:1, after the tragic accident + 5 cases + 6 of + 7 fainting + 8 and + 9 shock + 10 after + 11 the + 12 tragic + 13 accident + 14 . + 15 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Some Palestinians are used to shooting in the air during their celebrations, especially weddings, as an expression of + their happiness, in spite of the repeated warnings the Ministry of Interior has launched to chase those who take part in + this practice. + +Treebanked sentence: +-------------------- + Some Palestinians are used to *PRO*-1 shooting in the air during their celebrations , especially weddings , as an + expression of their happiness , in spite of the repeated warnings 0 the Ministry of Interior has launched *T*-2 *PRO* to + chase those who *T*-3 take part in this practice . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 2000.0 + stop time: 2100.0 + +Tree: +----- + (TOP (S (NP-SBJ-1 (DT Some) + (NNPS Palestinians)) + (VP (VBP are) + (ADJP-PRD (JJ used) + (PP (IN to) + (S-NOM (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG shooting) + (PP-DIR (IN in) + (NP (DT the) + (NN air))) + (PP-TMP (IN during) + (NP (NP (PRP$ their) + (NNS celebrations)) + (, ,) + (NP (ADVP (RB especially)) + (NNS weddings)))) + (, ,) + (PP-PRP (IN as) + (NP (NP (DT an) + (NN expression)) + (PP (IN of) + (NP (PRP$ their) + (NN happiness))))) + (, ,) + (PP (IN in) + (NP (NP (NN spite)) + (PP (IN of) + (NP (NP (DT the) + (VBN repeated) + (NNS warnings)) + (SBAR (WHNP-2 (-NONE- 0)) + (S (NP-SBJ (NP (DT the) + (NNP Ministry)) + (PP (IN of) + (NP (NNP Interior)))) + (VP (VBZ has) + (VP (VBN launched) + (NP (-NONE- *T*-2)) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB chase) + (NP (NP (DT those)) + (SBAR (WHNP-3 (WP who)) + (S (NP-SBJ (-NONE- + *T*-3)) + (VP (VBP take) + (NP (NN part)) + (PP-CLR (IN in) + (NP (DT + this) + (NN + practice))))))))))))))))))))))) + (. .))) + +Leaves: +------- + 0 Some + coref: IDENT 2__15 0-1 Some Palestinians + 1 Palestinians + name: NORP 1-1 Palestinians + 2 are + sense: be-v.1 + prop: be.01 + v * -> 2:0, are + ARG1 * -> 0:1, Some Palestinians + ARG2 * -> 3:1, used to *PRO*-1 shooting in the air during their celebrations , especially weddings , + as an expression of their happiness , in spite of the repeated warnings 0 the Ministry + of Interior has launched *T*-2 *PRO* to chase those who *T*-3 take part in this + practice + 3 used + 4 to + 5 *PRO*-1 + 6 shooting + sense: shoot-v.1 + prop: shoot.01 + v * -> 6:0, shooting + ARG0 * -> 5:0, *PRO*-1 -> 0:1, Some Palestinians + ARGM-DIR * -> 7:1, in the air + ARGM-TMP * -> 10:1, during their celebrations , especially weddings + ARGM-PRD * -> 17:1, as an expression of their happiness + ARGM-ADV * -> 24:1, in spite of the repeated warnings 0 the Ministry of Interior has launched *T*-2 *PRO* + to chase those who *T*-3 take part in this practice + coref: IDENT 2__28 6-6 shooting + 7 in + 8 the + 9 air + 10 during + 11 their + coref: IDENT 2__15 11-11 their + 12 celebrations + 13 , + 14 especially + 15 weddings + 16 , + 17 as + 18 an + 19 expression + sense: expression-n.1 + 20 of + 21 their + coref: IDENT 2__15 21-21 their + 22 happiness + 23 , + 24 in + 25 spite + 26 of + 27 the + coref: IDENT 2__23 27-48 the repeated warnings 0 the Ministry of Interior has launched *T*-2 *PRO* + to chase those who *T*-3 take part in this practice + 28 repeated + prop: repeat.01 + v * -> 28:0, repeated + ARG1 * -> 29:0, warnings + 29 warnings + 30 0 + 31 the + name: ORG 31-34 the Ministry of Interior + 32 Ministry + 33 of + 34 Interior + 35 has + 36 launched + sense: launch-v.2 + prop: launch.01 + v * -> 36:0, launched + ARG0 * -> 31:2, the Ministry of Interior + ARG1 * -> 37:0, *T*-2 -> 30:0, 0 + ARGM-PRP * -> 38:2, *PRO* to chase those who *T*-3 take part in this practice + LINK-SLC * -> 27:1, the repeated warnings + * -> 37:0, *T*-2 -> 30:0, 0 + 37 *T*-2 + 38 *PRO* + 39 to + 40 chase + sense: chase-v.1 + prop: chase.01 + v * -> 40:0, chase + ARG0 * -> 38:0, *PRO* + ARG1 * -> 41:2, those who *T*-3 take part in this practice + 41 those + 42 who + 43 *T*-3 + 44 take + 45 part + 46 in + 47 this + coref: IDENT 2__28 47-48 this practice + 48 practice + 49 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But the warnings were limited to announcements after each incident, without translating into actual procedure in + reality. + +Treebanked sentence: +-------------------- + But the warnings were limited *-1 to announcements after each incident , without *PRO* translating into actual procedure + in reality . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 2000.0 + stop time: 2100.0 + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ-1 (DT the) + (NNS warnings)) + (VP (VBD were) + (VP (VBN limited) + (NP (-NONE- *-1)) + (PP-CLR (IN to) + (NP (NP (NNS announcements)) + (PP-TMP (IN after) + (NP (DT each) + (NN incident))))) + (, ,) + (PP (IN without) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG translating) + (PP-CLR (IN into) + (NP (NP (JJ actual) + (NN procedure)) + (PP (IN in) + (NP (NN reality)))))))))) + (. .))) + +Leaves: +------- + 0 But + 1 the + coref: IDENT 2__23 1-2 the warnings + 2 warnings + 3 were + 4 limited + prop: limit.01 + v * -> 4:0, limited + ARGM-DIS * -> 0:0, But + ARG1 * -> 5:0, *-1 -> 1:1, the warnings + ARG2 * -> 6:1, to announcements after each incident + ARGM-MNR * -> 12:1, without *PRO* translating into actual procedure in reality + 5 *-1 + 6 to + 7 announcements + 8 after + 9 each + 10 incident + 11 , + 12 without + 13 *PRO* + 14 translating + sense: translate-v.3 + prop: translate.01 + v * -> 14:0, translating + ARG0 * -> 13:0, *PRO* + ARG2 * -> 15:1, into actual procedure in reality + 15 into + 16 actual + 17 procedure + 18 in + 19 reality + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A researcher at the Palestinian Center for Human Rights, Yasser Abd Al Ghafoor, said this is not the first time victims + have fallen in similar incidents, noting that the rights organizations observed several incidents in which victims fell + and injuries occurred during wedding and celebration gunfire, one of the common misuses of weapons in the Gaza Strip. + +Treebanked sentence: +-------------------- + A researcher at the Palestinian Center for Human Rights , Yasser Abd Al Ghafoor , said this is not the first time 0 + victims have fallen in similar incidents *T*-1 , *PRO*-2 noting that the rights organizations observed several incidents + in which victims fell and injuries occurred during wedding and celebration gunfire , one of the common misuses of + weapons in the Gaza Strip *T*-3 . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 2100.0 + stop time: 2200.0 + +Tree: +----- + (TOP (S (NP-SBJ-2 (NP (NP (DT A) + (NN researcher)) + (PP-LOC (IN at) + (NP (NP (DT the) + (NNP Palestinian) + (NNP Center)) + (PP (IN for) + (NP (NNP Human) + (NNPS Rights)))))) + (, ,) + (NP (NNP Yasser) + (NNP Abd) + (NNP Al) + (NNP Ghafoor))) + (, ,) + (VP (VBD said) + (S (NP-SBJ (DT this)) + (VP (VBZ is) + (RB not) + (NP-PRD (NP (DT the) + (JJ first) + (NN time)) + (SBAR (WHADVP-1 (-NONE- 0)) + (S (NP-SBJ (NNS victims)) + (VP (VBP have) + (VP (VBN fallen) + (PP-LOC (IN in) + (NP (JJ similar) + (NNS incidents))) + (ADVP-TMP (-NONE- *T*-1))))))))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-2)) + (VP (VBG noting) + (SBAR (IN that) + (S (NP-SBJ (DT the) + (NNS rights) + (NNS organizations)) + (VP (VBD observed) + (NP (NP (JJ several) + (NNS incidents)) + (SBAR (WHPP-3 (IN in) + (WHNP (WDT which))) + (S (S (NP-SBJ (NNS victims)) + (VP (VBD fell))) + (CC and) + (S (NP-SBJ (NNS injuries)) + (VP (VBD occurred))) + (PP-TMP (IN during) + (NP (NP (NML (NN wedding) + (CC and) + (NN celebration)) + (NN gunfire)) + (, ,) + (NP (NP (CD one)) + (PP (IN of) + (NP (NP (DT the) + (JJ common) + (NNS misuses)) + (PP (IN of) + (NP (NNS weapons))) + (PP-LOC (IN in) + (NP (DT the) + (NNP Gaza) + (NNP Strip)))))))) + (PP-LOC (-NONE- *T*-3))))))))))) + (. .))) + +Leaves: +------- + 0 A + coref: APPOS ATTRIB 2__37 0-8 A researcher at the Palestinian Center for Human Rights + 1 researcher + 2 at + 3 the + name: ORG 3-8 the Palestinian Center for Human Rights + 4 Palestinian + 5 Center + 6 for + 7 Human + 8 Rights + 9 , + 10 Yasser + coref: APPOS HEAD 2__37 10-13 Yasser Abd Al Ghafoor + name: PERSON 10-13 Yasser Abd Al Ghafoor + 11 Abd + 12 Al + 13 Ghafoor + 14 , + 15 said + sense: say-v.1 + prop: say.01 + v * -> 15:0, said + ARG0 * -> 0:3, A researcher at the Palestinian Center for Human Rights , Yasser Abd Al Ghafoor + ARG1 * -> 16:2, this is not the first time 0 victims have fallen in similar incidents *T*-1 + ARGM-ADV * -> 31:2, *PRO*-2 noting that the rights organizations observed several incidents in which + victims fell and injuries occurred during wedding and celebration gunfire , one of the + common misuses of weapons in the Gaza Strip *T*-3 + 16 this + 17 is + sense: be-v.1 + prop: be.01 + v * -> 17:0, is + ARG1 * -> 16:1, this + ARGM-NEG * -> 18:0, not + ARG2 * -> 19:2, the first time 0 victims have fallen in similar incidents *T*-1 + 18 not + 19 the + 20 first + 21 time + 22 0 + 23 victims + 24 have + 25 fallen + sense: fall-v.3 + prop: fall.01 + v * -> 25:0, fallen + ARG1 * -> 23:1, victims + ARGM-LOC * -> 26:1, in similar incidents + ARGM-TMP * -> 22:0, 0 + LINK-SLC * -> 19:1, the first time + * -> 22:0, 0 + 26 in + 27 similar + 28 incidents + 29 *T*-1 + 30 , + 31 *PRO*-2 + 32 noting + sense: note-v.1 + prop: note.01 + v * -> 32:0, noting + ARG0 * -> 31:0, *PRO*-2 -> 0:3, A researcher at the Palestinian Center for Human Rights , Yasser Abd + Al Ghafoor + ARG1 * -> 33:1, that the rights organizations observed several incidents in which victims fell and + injuries occurred during wedding and celebration gunfire , one of the common misuses + of weapons in the Gaza Strip *T*-3 + 33 that + 34 the + 35 rights + 36 organizations + 37 observed + sense: observe-v.1 + prop: observe.01 + v * -> 37:0, observed + ARG0 * -> 34:1, the rights organizations + ARG1 * -> 38:2, several incidents in which victims fell and injuries occurred during wedding and + celebration gunfire , one of the common misuses of weapons in the Gaza Strip *T*-3 + 38 several + 39 incidents + 40 in + 41 which + 42 victims + 43 fell + sense: fall-v.3 + prop: fall.01 + v * -> 43:0, fell + ARG1 * -> 42:1, victims + ARGM-TMP * -> 47:1, during wedding and celebration gunfire , one of the common misuses of weapons in the + Gaza Strip + ARGM-LOC * -> 64:0, *T*-3 -> 40:1, in which + LINK-SLC * -> 38:1, several incidents + * -> 64:0, *T*-3 -> 40:1, in which + 44 and + 45 injuries + 46 occurred + sense: occur-v.1 + prop: occur.01 + v * -> 46:0, occurred + ARG1 * -> 45:1, injuries + 47 during + 48 wedding + sense: wedding-n.1 + 49 and + 50 celebration + sense: celebration-n.1 + 51 gunfire + 52 , + 53 one + name: CARDINAL 53-53 one + 54 of + 55 the + 56 common + 57 misuses + 58 of + 59 weapons + 60 in + 61 the + name: GPE 61-63 the Gaza Strip + 62 Gaza + 63 Strip + 64 *T*-3 + 65 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The city of Khan Younes had witnessed on the third of last July a similar incident, when the girl, Amani Al Raqab, died + by a bullet that hit her by mistake from a revolver her brother was shooting off on his wedding day. + +Treebanked sentence: +-------------------- + The city of Khan Younes had witnessed on the third of last July a similar incident , when the girl , Amani Al Raqab , + died by a bullet that *T*-1 hit her by mistake from a revolver 0 her brother was shooting *T*-2 off on his wedding day + *T*-3 . + +Speaker information: +-------------------- + name: _أسعد_ + start time: 2200.0 + stop time: 2300.0 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN city)) + (PP (IN of) + (NP (NNP Khan) + (NNPS Younes)))) + (VP (VBD had) + (VP (VBN witnessed) + (PP-TMP (IN on) + (NP (NP (DT the) + (JJ third)) + (PP (IN of) + (NP (JJ last) + (NNP July))))) + (NP (DT a) + (JJ similar) + (NN incident)) + (, ,) + (SBAR-TMP (WHADVP-3 (WRB when)) + (S (NP-SBJ (NP (DT the) + (NN girl)) + (, ,) + (NP (NNP Amani) + (NNP Al) + (NNP Raqab))) + (, ,) + (VP (VBD died) + (PP-MNR (IN by) + (NP (NP (DT a) + (NN bullet)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD hit) + (NP (PRP her)) + (PP-MNR (IN by) + (NP (NN mistake)))))) + (PP (IN from) + (NP (NP (DT a) + (NN revolver)) + (SBAR (WHNP-2 (-NONE- 0)) + (S (NP-SBJ (PRP$ her) + (NN brother)) + (VP (VBD was) + (VP (VBG shooting) + (NP (-NONE- *T*-2)) + (PRT (RP off)) + (PP-TMP (IN on) + (NP (PRP$ his) + (NN wedding) + (NN day))))))))))) + (ADVP-TMP (-NONE- *T*-3))))))) + (. .))) + +Leaves: +------- + 0 The + 1 city + 2 of + 3 Khan + name: GPE 3-4 Khan Younes + 4 Younes + 5 had + 6 witnessed + sense: witness-v.1 + prop: witness.01 + v * -> 6:0, witnessed + ARG0 * -> 0:2, The city of Khan Younes + ARGM-TMP * -> 7:1, on the third of last July + ARG1 * -> 13:1, a similar incident + ARGM-TMP * -> 17:2, when the girl , Amani Al Raqab , died by a bullet that *T*-1 hit her by mistake from a + revolver 0 her brother was shooting *T*-2 off on his wedding day *T*-3 + 7 on + 8 the + name: DATE 8-12 the third of last July + 9 third + 10 of + 11 last + 12 July + 13 a + 14 similar + 15 incident + 16 , + 17 when + 18 the + coref: IDENT 2__60 18-23 the girl , Amani Al Raqab + coref: APPOS ATTRIB 2__61 18-19 the girl + 19 girl + 20 , + 21 Amani + coref: APPOS HEAD 2__61 21-23 Amani Al Raqab + name: PERSON 21-23 Amani Al Raqab + 22 Al + 23 Raqab + 24 , + 25 died + sense: die-v.1 + prop: die.01 + v * -> 25:0, died + ARG1 * -> 18:2, the girl , Amani Al Raqab + ARGM-MNR * -> 26:1, by a bullet that *T*-1 hit her by mistake from a revolver 0 her brother was shooting + *T*-2 off on his wedding day + ARGM-TMP * -> 49:0, *T*-3 -> 17:1, when + 26 by + 27 a + 28 bullet + 29 that + 30 *T*-1 + 31 hit + sense: hit-v.1 + prop: hit.01 + v * -> 31:0, hit + ARG2 * -> 30:0, *T*-1 -> 29:1, that + ARG1 * -> 32:1, her + ARGM-MNR * -> 33:1, by mistake + LINK-SLC * -> 27:1, a bullet + * -> 30:0, *T*-1 -> 29:1, that + 32 her + coref: IDENT 2__60 32-32 her + 33 by + 34 mistake + 35 from + 36 a + 37 revolver + 38 0 + 39 her + coref: IDENT 2__60 39-39 her + coref: IDENT 2__67 39-40 her brother + 40 brother + 41 was + 42 shooting + sense: shoot-v.1 + prop: shoot.04 + v * -> 42:0, shooting + -> 44:1, off + ARG0 * -> 39:1, her brother + ARG1 * -> 43:0, *T*-2 -> 38:0, 0 + ARGM-TMP * -> 45:1, on his wedding day + LINK-SLC * -> 36:1, a revolver + * -> 43:0, *T*-2 -> 38:0, 0 + 43 *T*-2 + 44 off + 45 on + 46 his + coref: IDENT 2__67 46-46 his + 47 wedding + sense: wedding-n.1 + 48 day + 49 *T*-3 + 50 . + + +======================================================================================================================== +Coreference chains for section 0: +--------------------------------- + + Chain 1__2 (IDENT) + 0.3-3 Wedding + 4.62-63 the wedding + 5.43-49 his brother 's wedding in Khan Younes + 9.43-51 the wedding of our relative , Majed Al Bashiti + 12.21-22 the wedding + + Chain 1__4 (IDENT) + 0.8-10 Southern Gaza Strip + 4.13-16 the southern Gaza Strip + + Chain 1__7 (IDENT) + 3.0-0 Gaza + 7.0-1 Gaza Strip + + Chain 1__8 (IDENT) + 3.2-2 UPI + 5.10-12 United Press International + + Chain 1__12 (IDENT) + 4.10-16 Khan Younes in the southern Gaza Strip + 5.7-8 Khan Younes + 5.48-49 Khan Younes + + Chain 1__16 (IDENT) + 4.25-28 one of the celebrators + 4.32-32 his + 9.53-57 one of the armed men + 9.61-61 his + 9.65-65 he + + Chain 1__19 (IDENT) + 4.32-68 his weapon , from which a number of bullets *ICH*-2 were released *-4 *T*-1 that *T*-3 killed + the groom 's brother and hit three other relatives of his , turning the wedding into a funeral + in moments + 9.61-81 his weapon , which he was trying *PRO*-1 to use *T*-2 *PRO*-3 to fire *PRO*-4 to celebrate and + greet the groom + + Chain 1__22 (IDENT) + 4.49-52 the groom 's brother + 5.14-24 Palestinian citizen Kamal Mohamed Al Bashiti -LRB- 33 years old -RRB- + 5.28-28 he + 5.43-43 his + 9.13-14 the victim + 13.13-26 the groom 's brother , who *T*-2 works in one of the security agencies + + Chain 1__23 (IDENT) + 4.49-51 the groom 's + 4.59-59 his + 5.43-45 his brother 's + 6.4-4 his + 9.46-51 our relative , Majed Al Bashiti + 9.80-81 the groom + 13.13-15 the groom 's + + Chain 1__32 (IDENT) + 5.4-8 Nasser Hospital in Khan Younes + 12.7-22 Nasser Hospital , which *T*-1 lay hundreds of meters away from the site of the wedding + + Chain 1__39 (IDENT) + 5.39-49 an accidental shooting at his brother 's wedding in Khan Younes + 6.11-12 the accident + + Chain 1__69 (APPOS) + HEAD 9.0-8 Mohamed Al Bashiti , 18 -LRB- years old -RRB- + ATTRIB 9.10-14 a relative of the victim + + Chain 1__72 (IDENT) + 9.19-21 the young men + 9.34-34 they + + Chain 1__83 (APPOS) + ATTRIB 9.46-47 our relative + HEAD 9.49-51 Majed Al Bashiti + + Chain 2__1 (IDENT) + 14.0-2 An elderly man + 14.6-6 I + + Chain 2__3 (IDENT) + 14.8-8 them + 14.15-15 them + 14.27-27 they + + Chain 2__7 (IDENT) + 14.12-12 shoot + 14.24-24 it + 14.30-30 it + + Chain 2__15 (IDENT) + 16.0-1 Some Palestinians + 16.11-11 their + 16.21-21 their + + Chain 2__28 (IDENT) + 16.6-6 shooting + 16.47-48 this practice + + Chain 2__23 (IDENT) + 16.27-48 the repeated warnings 0 the Ministry of Interior has launched *T*-2 *PRO* to chase those who + *T*-3 take part in this practice + 17.1-2 the warnings + + Chain 2__37 (APPOS) + ATTRIB 18.0-8 A researcher at the Palestinian Center for Human Rights + HEAD 18.10-13 Yasser Abd Al Ghafoor + + Chain 2__60 (IDENT) + 19.18-23 the girl , Amani Al Raqab + 19.32-32 her + 19.39-39 her + + Chain 2__61 (APPOS) + ATTRIB 19.18-19 the girl + HEAD 19.21-23 Amani Al Raqab + + Chain 2__67 (IDENT) + 19.39-40 her brother + 19.46-46 his diff --git a/demo/onto_test/a2e_0000.txt b/demo/onto_test/a2e_0000.txt new file mode 100644 index 00000000..a39b84a9 --- /dev/null +++ b/demo/onto_test/a2e_0000.txt @@ -0,0 +1,2 @@ + Celebration Shooting Turns Wedding Into a Funeral in Southern Gaza Strip Asad 1/20/2007 Gaza-UPI The cheers and hails of happiness at a wedding in Khan Younes in the southern Gaza Strip turned into screams and moans of pain after one of the celebrators lost control of his weapon, from which a number of bullets were released that killed the groom's brother and hit three other relatives of his, turning the wedding into a funeral in moments. A medical source at Nasser Hospital in Khan Younes told United Press International that Palestinian citizen Kamal Mohamed Al Bashiti-LRB-33 years old-RRB-died shortly after he was hit by a gunshot in the chest from an accidental shooting at his brother's wedding in Khan Younes. Three other relatives of his were also injured in the accident, including two children. Gaza Strip residents are suffering from the problem of aggravation from the weapons mess and security chaos resulting from the intense spread of weapons in the hands of security agency individuals and members of factions and families. This is a common practice that claimed the lives of about 350 people last year, according to Palestinian human rights sources. Mohamed Al Bashiti, 18-LRB-years old-RRB-, a relative of the victim, mentioned that while the young men were performing dances and popular dabke dances Thursday evening, and while they were in a state of intense rejoicing for the wedding of our relative, Majed Al Bashiti, one of the armed men lost control of his weapon, which he was trying to use to fire to celebrate and greet the groom. The bullets went astray and hit a number of participants amid a state of panic and terror. In moments, the wedding cheers turned into screams and the hitting of cheeks. The participants of the party moved to Nasser Hospital, which lay hundreds of meters away from the site of the wedding. The tragic news came after a little while: the death of the groom's brother, who works in one of the security agencies. An elderly man said," I asked them not to shoot and asked them for God's sake not to do it, but they persisted in it, until what happened happened. A number of women suffered cases of fainting and shock after the tragic accident." Some Palestinians are used to shooting in the air during their celebrations, especially weddings, as an expression of their happiness, in spite of the repeated warnings the Ministry of Interior has launched to chase those who take part in this practice. But the warnings were limited to announcements after each incident, without translating into actual procedure in reality. A researcher at the Palestinian Center for Human Rights, Yasser Abd Al Ghafoor, said this is not the first time victims have fallen in similar incidents, noting that the rights organizations observed several incidents in which victims fell and injuries occurred during wedding and celebration gunfire, one of the common misuses of weapons in the Gaza Strip. The city of Khan Younes had witnessed on the third of last July a similar incident, when the girl, Amani Al Raqab, died by a bullet that hit her by mistake from a revolver her brother was shooting off on his wedding day. + diff --git a/demo/onto_train/cctv_0000.in.conllu b/demo/onto_train/cctv_0000.in.conllu new file mode 100644 index 00000000..69e4c0cf --- /dev/null +++ b/demo/onto_train/cctv_0000.in.conllu @@ -0,0 +1,4220 @@ +# newdoc +# newpar +# sent_id = 1 +# text = In the summer of 2005, a picture that people have long been looking forward to started emerging with frequency in various major +1 In in ADP IN _ 3 case _ SpacesBefore=\s +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 summer summer NOUN NN Number=Sing 8 obl _ _ +4 of of ADP IN _ 5 case _ _ +5 2005 2005 NUM CD NumType=Card 3 nmod _ SpaceAfter=No +6 , , PUNCT , _ 8 punct _ _ +7 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +8 picture picture NOUN NN Number=Sing 0 root _ _ +9 that that SCONJ IN _ 14 mark _ _ +10 people people NOUN NNS Number=Plur 14 nsubj _ _ +11 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 aux _ _ +12 long long ADV RB Degree=Pos 14 advmod _ _ +13 been be AUX VBN Tense=Past|VerbForm=Part 14 aux _ _ +14 looking look VERB VBG VerbForm=Ger 8 acl _ _ +15 forward forward ADV RB _ 14 advmod _ _ +16 to to PART TO _ 17 mark _ _ +17 started start VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 14 advcl _ _ +18 emerging emerge VERB VBG VerbForm=Ger 17 xcomp _ _ +19 with with ADP IN _ 20 case _ _ +20 frequency frequency NOUN NN Number=Sing 18 obl _ _ +21 in in ADP IN _ 23 case _ _ +22 various various ADJ JJ Degree=Pos 23 amod _ _ +23 major major ADJ JJ Degree=Pos 20 nmod _ _ + +# sent_id = 2 +# text = Hong Kong media. +1 Hong Hong PROPN NNP Number=Sing 2 compound _ _ +2 Kong Kong PROPN NNP Number=Sing 3 compound _ _ +3 media media NOUN NN Number=Sing 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 3 +# text = With their unique charm, these well-known cartoon images once again caused Hong Kong to be a focus of worldwide attention. +1 With with ADP IN _ 4 case _ _ +2 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +3 unique unique ADJ JJ Degree=Pos 4 amod _ _ +4 charm charm NOUN NN Number=Sing 14 obl _ SpaceAfter=No +5 , , PUNCT , _ 14 punct _ _ +6 these these DET DT Number=Plur|PronType=Dem 11 det _ _ +7 well well ADV RB Degree=Pos 9 advmod _ SpaceAfter=No +8 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +9 known know VERB VBN Tense=Past|VerbForm=Part 11 amod _ _ +10 cartoon cartoon NOUN NN Number=Sing 11 compound _ _ +11 images image NOUN NNS Number=Plur 14 nsubj _ _ +12 once once ADV RB NumType=Mult 14 advmod _ _ +13 again again ADV RB _ 14 advmod _ _ +14 caused cause VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +15 Hong Hong PROPN NNP Number=Sing 14 obj _ _ +16 Kong Kong PROPN NNP Number=Sing 15 flat _ _ +17 to to PART TO _ 20 mark _ _ +18 be be AUX VB VerbForm=Inf 20 cop _ _ +19 a a DET DT Definite=Ind|PronType=Art 20 det _ _ +20 focus focus NOUN NN Number=Sing 14 xcomp _ _ +21 of of ADP IN _ 23 case _ _ +22 worldwide worldwide ADJ JJ Degree=Pos 23 amod _ _ +23 attention attention NOUN NN Number=Sing 20 nmod _ SpaceAfter=No +24 . . PUNCT . _ 14 punct _ _ + +# sent_id = 4 +# text = The world's fifth Disney park will soon open to the public here. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 world world NOUN NN Number=Sing 6 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 fifth fifth ADJ JJ Degree=Pos|NumType=Ord 6 amod _ _ +5 Disney Disney PROPN NNP Number=Sing 6 compound _ _ +6 park park PROPN NNP Number=Sing 9 nsubj _ _ +7 will will AUX MD VerbForm=Fin 9 aux _ _ +8 soon soon ADV RB Degree=Pos 9 advmod _ _ +9 open open ADJ JJ Degree=Pos 0 root _ _ +10 to to ADP IN _ 12 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 public public NOUN NN Number=Sing 9 obl _ _ +13 here here ADV RB PronType=Dem 9 advmod _ SpaceAfter=No +14 . . PUNCT . _ 9 punct _ _ + +# sent_id = 5 +# text = The most important thing about Disney is that it is a global brand. +1 The the DET DT Definite=Def|PronType=Art 4 det _ _ +2 most most ADV RBS _ 3 advmod _ _ +3 important important ADJ JJ Degree=Pos 4 amod _ _ +4 thing thing NOUN NN Number=Sing 7 nsubj _ _ +5 about about ADP IN _ 6 case _ _ +6 Disney Disney PROPN NNP Number=Sing 4 nmod _ _ +7 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +8 that that SCONJ IN _ 13 mark _ _ +9 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 13 nsubj _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 cop _ _ +11 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +12 global global ADJ JJ Degree=Pos 13 amod _ _ +13 brand brand NOUN NN Number=Sing 7 ccomp _ SpaceAfter=No +14 . . PUNCT . _ 7 punct _ _ + +# sent_id = 6 +# text = Well, for several years, although it was still under construction and, er, not yet open, it can be said that many people have viewed Hong Kong with new respect. +1 Well well INTJ UH _ 12 discourse _ SpaceAfter=No +2 , , PUNCT , _ 12 punct _ _ +3 for for ADP IN _ 5 case _ _ +4 several several ADJ JJ Degree=Pos 5 amod _ _ +5 years year NOUN NNS Number=Plur 12 obl _ SpaceAfter=No +6 , , PUNCT , _ 12 punct _ _ +7 although although SCONJ IN _ 12 mark _ _ +8 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 12 nsubj _ _ +9 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 12 cop _ _ +10 still still ADV RB _ 12 advmod _ _ +11 under under ADP IN _ 12 case _ _ +12 construction construction NOUN NN Number=Sing 0 root _ _ +13 and and CCONJ CC _ 15 cc _ SpaceAfter=No +14 , , PUNCT , _ 15 punct _ _ +15 er er PROPN NNP Number=Sing 12 conj _ SpaceAfter=No +16 , , PUNCT , _ 12 punct _ _ +17 not not PART RB _ 19 advmod _ _ +18 yet yet ADV RB _ 19 advmod _ _ +19 open open ADJ JJ Degree=Pos 12 conj _ SpaceAfter=No +20 , , PUNCT , _ 12 punct _ _ +21 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 24 nsubj:pass _ _ +22 can can AUX MD VerbForm=Fin 24 aux _ _ +23 be be AUX VB VerbForm=Inf 24 aux:pass _ _ +24 said say VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 12 parataxis _ _ +25 that that SCONJ IN _ 29 mark _ _ +26 many many ADJ JJ Degree=Pos 27 amod _ _ +27 people people NOUN NNS Number=Plur 29 nsubj _ _ +28 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 29 aux _ _ +29 viewed view VERB VBN Tense=Past|VerbForm=Part 24 ccomp _ _ +30 Hong Hong PROPN NNP Number=Sing 29 obj _ _ +31 Kong Kong PROPN NNP Number=Sing 30 flat _ _ +32 with with ADP IN _ 34 case _ _ +33 new new ADJ JJ Degree=Pos 34 amod _ _ +34 respect respect NOUN NN Number=Sing 29 obl _ SpaceAfter=No +35 . . PUNCT . _ 12 punct _ _ + +# sent_id = 7 +# text = Then welcome to the official writing ceremony of Hong Kong Disneyland. +1 Then then ADV RB PronType=Dem 2 advmod _ _ +2 welcome welcome ADJ JJ Degree=Pos 0 root _ _ +3 to to ADP IN _ 7 case _ _ +4 the the DET DT Definite=Def|PronType=Art 7 det _ _ +5 official official ADJ JJ Degree=Pos 7 amod _ _ +6 writing write NOUN NN Number=Sing 7 compound _ _ +7 ceremony ceremony NOUN NN Number=Sing 2 obl _ _ +8 of of ADP IN _ 10 case _ _ +9 Hong Hong PROPN NNP Number=Sing 10 compound _ _ +10 Kong Kong PROPN NNP Number=Sing 7 nmod _ _ +11 Disneyland Disneyland PROPN NNP Number=Sing 10 flat _ SpaceAfter=No +12 . . PUNCT . _ 2 punct _ _ + +# sent_id = 8 +# text = The construction of Hong Kong Disneyland began two years ago, in 2003. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 construction construction NOUN NN Number=Sing 6 compound _ _ +3 of of ADP IN _ 4 case _ _ +4 Hong Hong PROPN NNP Number=Sing 2 nmod _ _ +5 Kong Kong PROPN NNP Number=Sing 4 flat _ _ +6 Disneyland Disneyland PROPN NNP Number=Sing 7 nsubj _ _ +7 began begin VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +8 two two NUM CD NumType=Card 9 nummod _ _ +9 years year NOUN NNS Number=Plur 10 obl:npmod _ _ +10 ago ago ADV RB _ 7 advmod _ SpaceAfter=No +11 , , PUNCT , _ 7 punct _ _ +12 in in ADP IN _ 13 case _ _ +13 2003 2003 NUM CD NumType=Card 7 obl _ SpaceAfter=No +14 . . PUNCT . _ 7 punct _ _ + +# sent_id = 9 +# text = In January of that year, the Hong Kong government turned over to Disney Corporation 200 hectares of land at the foot of Lantau Island that was obtained following the largest land reclamation project in recent years. +1 In in ADP IN _ 2 case _ _ +2 January January PROPN NNP Number=Sing 11 obl _ _ +3 of of ADP IN _ 5 case _ _ +4 that that DET DT Number=Sing|PronType=Dem 5 det _ _ +5 year year NOUN NN Number=Sing 2 nmod _ SpaceAfter=No +6 , , PUNCT , _ 11 punct _ _ +7 the the DET DT Definite=Def|PronType=Art 10 det _ _ +8 Hong Hong PROPN NNP Number=Sing 9 compound _ _ +9 Kong Kong PROPN NNP Number=Sing 10 compound _ _ +10 government government NOUN NN Number=Sing 11 nsubj _ _ +11 turned turn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +12 over over ADP RP _ 15 case _ _ +13 to to ADP IN _ 15 case _ _ +14 Disney Disney PROPN NNP Number=Sing 15 compound _ _ +15 Corporation Corporation PROPN NNP Number=Sing 11 obl _ _ +16 200 200 NUM CD NumType=Card 15 nummod _ _ +17 hectares hectare NOUN NNS Number=Plur 11 obj _ _ +18 of of ADP IN _ 19 case _ _ +19 land land NOUN NN Number=Sing 17 nmod _ _ +20 at at ADP IN _ 22 case _ _ +21 the the DET DT Definite=Def|PronType=Art 22 det _ _ +22 foot foot NOUN NN Number=Sing 11 obl _ _ +23 of of ADP IN _ 25 case _ _ +24 Lantau Lantau PROPN NNP Number=Sing 25 compound _ _ +25 Island Island PROPN NNP Number=Sing 22 nmod _ _ +26 that that PRON WDT PronType=Rel 28 nsubj:pass _ _ +27 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 28 aux:pass _ _ +28 obtained obtain VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 22 acl:relcl _ _ +29 following follow VERB VBG VerbForm=Ger 34 case _ _ +30 the the DET DT Definite=Def|PronType=Art 34 det _ _ +31 largest largest ADJ JJS Degree=Sup 33 amod _ _ +32 land land NOUN NN Number=Sing 33 compound _ _ +33 reclamation reclamation NOUN NN Number=Sing 34 compound _ _ +34 project project NOUN NN Number=Sing 28 obl _ _ +35 in in ADP IN _ 37 case _ _ +36 recent recent ADJ JJ Degree=Pos 37 amod _ _ +37 years year NOUN NNS Number=Plur 28 obl _ SpaceAfter=No +38 . . PUNCT . _ 11 punct _ _ + +# sent_id = 10 +# text = One. +1 One one NUM CD NumType=Card 0 root _ SpaceAfter=No +2 . . PUNCT . _ 1 punct _ _ + +# sent_id = 11 +# text = Since then, this area has become a prohibited zone in Hong Kong. +1 Since since ADP IN _ 2 case _ _ +2 then then ADV RB PronType=Dem 7 obl _ SpaceAfter=No +3 , , PUNCT , _ 7 punct _ _ +4 this this DET DT Number=Sing|PronType=Dem 5 det _ _ +5 area area NOUN NN Number=Sing 7 nsubj _ _ +6 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +9 prohibited prohibit VERB VBN Tense=Past|VerbForm=Part 10 amod _ _ +10 zone zone NOUN NN Number=Sing 7 obj _ _ +11 in in ADP IN _ 13 case _ _ +12 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +13 Kong Kong PROPN NNP Number=Sing 10 nmod _ SpaceAfter=No +14 . . PUNCT . _ 7 punct _ _ + +# sent_id = 12 +# text = As its neighbor on Lantau Island, Hong Kong International Airport had to change its flight routes to make this area a no-fly zone. +1 As as ADP IN _ 3 case _ _ +2 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +3 neighbor neighbor NOUN NN Number=Sing 12 obl _ _ +4 on on ADP IN _ 6 case _ _ +5 Lantau Lantau PROPN NNP Number=Sing 6 compound _ _ +6 Island Island PROPN NNP Number=Sing 3 nmod _ SpaceAfter=No +7 , , PUNCT , _ 12 punct _ _ +8 Hong Hong PROPN NNP Number=Sing 11 compound _ _ +9 Kong Kong PROPN NNP Number=Sing 11 compound _ _ +10 International International PROPN NNP Number=Sing 11 compound _ _ +11 Airport airport PROPN NNP Number=Sing 12 nsubj _ _ +12 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +13 to to PART TO _ 14 mark _ _ +14 change change VERB VB VerbForm=Inf 12 xcomp _ _ +15 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 17 nmod:poss _ _ +16 flight flight NOUN NN Number=Sing 17 compound _ _ +17 routes route NOUN NNS Number=Plur 14 obj _ _ +18 to to PART TO _ 19 mark _ _ +19 make make VERB VB VerbForm=Inf 14 advcl _ _ +20 this this DET DT Number=Sing|PronType=Dem 21 det _ _ +21 area area NOUN NN Number=Sing 19 obj _ _ +22 a a DET DT Definite=Ind|PronType=Art 26 det _ _ +23 no no DET DT _ 25 advmod _ SpaceAfter=No +24 - - PUNCT HYPH _ 25 punct _ SpaceAfter=No +25 fly fly VERB VB VerbForm=Inf 26 amod _ _ +26 zone zone NOUN NN Number=Sing 19 xcomp _ SpaceAfter=No +27 . . PUNCT . _ 12 punct _ _ + +# sent_id = 13 +# text = Mickey Mouse's new home, settling on Chinese land for the first time, has captured worldwide attention. +1 Mickey Mickey PROPN NNP Number=Sing 2 compound _ _ +2 Mouse mouse PROPN NNP Number=Sing 5 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 new new ADJ JJ Degree=Pos 5 amod _ _ +5 home home NOUN NN Number=Sing 17 nsubj _ SpaceAfter=No +6 , , PUNCT , _ 5 punct _ _ +7 settling settle VERB VBG VerbForm=Ger 5 acl _ _ +8 on on ADP IN _ 10 case _ _ +9 Chinese chinese ADJ JJ Degree=Pos 10 amod _ _ +10 land land NOUN NN Number=Sing 7 obl _ _ +11 for for ADP IN _ 14 case _ _ +12 the the DET DT Definite=Def|PronType=Art 14 det _ _ +13 first first ADJ JJ Degree=Pos|NumType=Ord 14 amod _ _ +14 time time NOUN NN Number=Sing 7 obl _ SpaceAfter=No +15 , , PUNCT , _ 17 punct _ _ +16 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 aux _ _ +17 captured capture VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +18 worldwide worldwide ADJ JJ Degree=Pos 19 amod _ _ +19 attention attention NOUN NN Number=Sing 17 obj _ SpaceAfter=No +20 . . PUNCT . _ 17 punct _ _ + +# sent_id = 14 +# text = There's only one month left before the opening of Hong Kong Disneyland on September 12. +1 There there PRON EX _ 2 expl _ SpaceAfter=No +2 's be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 only only ADV RB _ 5 advmod _ _ +4 one one NUM CD NumType=Card 5 nummod _ _ +5 month month NOUN NN Number=Sing 2 nsubj _ _ +6 left leave VERB VBN Tense=Past|VerbForm=Part 5 acl _ _ +7 before before ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 opening opening NOUN NN Number=Sing 6 obl _ _ +10 of of ADP IN _ 13 case _ _ +11 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +12 Kong Kong PROPN NNP Number=Sing 13 compound _ _ +13 Disneyland Disneyland PROPN NNP Number=Sing 9 nmod _ _ +14 on on ADP IN _ 15 case _ _ +15 September September PROPN NNP Number=Sing 6 obl _ _ +16 12 12 NUM CD NumType=Card 15 nummod _ SpaceAfter=No +17 . . PUNCT . _ 2 punct _ _ + +# sent_id = 15 +# text = The subway to Disney has already been constructed. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 subway subway NOUN NN Number=Sing 8 nsubj:pass _ _ +3 to to ADP IN _ 4 case _ _ +4 Disney Disney PROPN NNP Number=Sing 2 nmod _ _ +5 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux _ _ +6 already already ADV RB _ 8 advmod _ _ +7 been be AUX VBN Tense=Past|VerbForm=Part 8 aux:pass _ _ +8 constructed construct VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +9 . . PUNCT . _ 8 punct _ _ + +# sent_id = 16 +# text = At subway stations, passengers will frequently press the station for Disney on ticket machines, trying to purchase tickets to enjoy the park when it first opens. +1 At at ADP IN _ 3 case _ _ +2 subway subway NOUN NN Number=Sing 3 compound _ _ +3 stations station NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +4 , , PUNCT , _ 8 punct _ _ +5 passengers passenger NOUN NNS Number=Plur 8 nsubj _ _ +6 will will AUX MD VerbForm=Fin 8 aux _ _ +7 frequently frequently ADV RB _ 8 advmod _ _ +8 press press VERB VB VerbForm=Inf 0 root _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 station station NOUN NN Number=Sing 8 obj _ _ +11 for for ADP IN _ 12 case _ _ +12 Disney Disney PROPN NNP Number=Sing 10 nmod _ _ +13 on on ADP IN _ 15 case _ _ +14 ticket ticket NOUN NN Number=Sing 15 compound _ _ +15 machines machine NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +16 , , PUNCT , _ 8 punct _ _ +17 trying try VERB VBG VerbForm=Ger 8 advcl _ _ +18 to to PART TO _ 19 mark _ _ +19 purchase purchase VERB VB VerbForm=Inf 17 xcomp _ _ +20 tickets ticket NOUN NNS Number=Plur 19 obj _ _ +21 to to PART TO _ 22 mark _ _ +22 enjoy enjoy VERB VB VerbForm=Inf 19 xcomp _ _ +23 the the DET DT Definite=Def|PronType=Art 24 det _ _ +24 park park NOUN NN Number=Sing 22 obj _ _ +25 when when ADV WRB PronType=Int 28 mark _ _ +26 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 28 nsubj _ _ +27 first first ADV RB _ 28 advmod _ _ +28 opens open VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 advcl _ SpaceAfter=No +29 . . PUNCT . _ 8 punct _ _ + +# sent_id = 17 +# text = Meanwhile, the Disney subway station is scheduled to open on the same day as the park. +1 Meanwhile meanwhile ADV RB _ 8 advmod _ SpaceAfter=No +2 , , PUNCT , _ 8 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 6 det _ _ +4 Disney Disney PROPN NNP Number=Sing 6 compound _ _ +5 subway subway NOUN NN Number=Sing 6 compound _ _ +6 station station NOUN NN Number=Sing 8 nsubj:pass _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux:pass _ _ +8 scheduled schedule VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +9 to to PART TO _ 10 mark _ _ +10 open open VERB VB VerbForm=Inf 8 xcomp _ _ +11 on on ADP IN _ 14 case _ _ +12 the the DET DT Definite=Def|PronType=Art 14 det _ _ +13 same same ADJ JJ Degree=Pos 14 amod _ _ +14 day day NOUN NN Number=Sing 10 obl _ _ +15 as as ADP IN _ 17 case _ _ +16 the the DET DT Definite=Def|PronType=Art 17 det _ _ +17 park park NOUN NN Number=Sing 10 obl _ SpaceAfter=No +18 . . PUNCT . _ 8 punct _ _ + +# sent_id = 18 +# text = For two years, Disney has constantly maintained its mystery. +1 For for ADP IN _ 3 case _ _ +2 two two NUM CD NumType=Card 3 nummod _ _ +3 years year NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +4 , , PUNCT , _ 8 punct _ _ +5 Disney Disney PROPN NNP Number=Sing 8 nsubj _ _ +6 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux _ _ +7 constantly constantly ADV RB _ 8 advmod _ _ +8 maintained maintain VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +9 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 10 nmod:poss _ _ +10 mystery mystery NOUN NN Number=Sing 8 obj _ SpaceAfter=No +11 . . PUNCT . _ 8 punct _ _ + +# sent_id = 19 +# text = No media have been allowed to enter for photos. +1 No no DET DT _ 2 det _ _ +2 media media NOUN NN Number=Sing 5 nsubj:pass _ _ +3 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 aux _ _ +4 been be AUX VBN Tense=Past|VerbForm=Part 5 aux:pass _ _ +5 allowed allow VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 to to PART TO _ 7 mark _ _ +7 enter enter VERB VB VerbForm=Inf 5 xcomp _ _ +8 for for ADP IN _ 9 case _ _ +9 photos photo NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +10 . . PUNCT . _ 5 punct _ _ + +# sent_id = 20 +# text = We took a taxi along the path of the highway that heads toward Disney, trying to experience this mysterious park from close by. +1 We we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 2 nsubj _ _ +2 took take VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ +4 taxi taxi NOUN NN Number=Sing 2 obj _ _ +5 along along ADP IN _ 7 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 path path NOUN NN Number=Sing 4 nmod _ _ +8 of of ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 highway highway NOUN NN Number=Sing 7 nmod _ _ +11 that that SCONJ IN _ 16 mark _ _ +12 heads head NOUN NNS Number=Plur 16 nsubj _ _ +13 toward toward ADP IN _ 14 case _ _ +14 Disney Disney PROPN NNP Number=Sing 12 nmod _ SpaceAfter=No +15 , , PUNCT , _ 12 punct _ _ +16 trying try VERB VBG VerbForm=Ger 2 acl _ _ +17 to to PART TO _ 18 mark _ _ +18 experience experience VERB VB VerbForm=Inf 16 xcomp _ _ +19 this this DET DT Number=Sing|PronType=Dem 21 det _ _ +20 mysterious mysterious ADJ JJ Degree=Pos 21 amod _ _ +21 park park NOUN NN Number=Sing 18 obj _ _ +22 from from ADP IN _ 23 case _ _ +23 close close NOUN NN Number=Sing 18 obl _ _ +24 by by ADP IN _ 2 obl _ SpaceAfter=No +25 . . PUNCT . _ 2 punct _ _ + +# sent_id = 21 +# text = However, before any of the Disney symbols were in sight, the car was stopped by a security guard at the intersection of the road towards Disney. +1 However however ADV RB _ 16 advmod _ SpaceAfter=No +2 , , PUNCT , _ 16 punct _ _ +3 before before ADP IN _ 11 mark _ _ +4 any any DET DT _ 11 nsubj _ _ +5 of of ADP IN _ 8 case _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 Disney Disney PROPN NNP Number=Sing 8 compound _ _ +8 symbols symbols NOUN NNS Number=Plur 4 nmod _ _ +9 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 cop _ _ +10 in in ADP IN _ 11 case _ _ +11 sight sight NOUN NN Number=Sing 16 advcl _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 car car NOUN NN Number=Sing 16 nsubj:pass _ _ +15 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 16 aux:pass _ _ +16 stopped stop VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +17 by by ADP IN _ 20 case _ _ +18 a a DET DT Definite=Ind|PronType=Art 20 det _ _ +19 security security NOUN NN Number=Sing 20 compound _ _ +20 guard guard NOUN NN Number=Sing 16 obl _ _ +21 at at ADP IN _ 23 case _ _ +22 the the DET DT Definite=Def|PronType=Art 23 det _ _ +23 intersection intersection NOUN NN Number=Sing 16 obl _ _ +24 of of ADP IN _ 26 case _ _ +25 the the DET DT Definite=Def|PronType=Art 26 det _ _ +26 road road NOUN NN Number=Sing 23 nmod _ _ +27 towards towards ADP IN _ 28 case _ _ +28 Disney Disney PROPN NNP Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT . _ 16 punct _ _ + +# sent_id = 22 +# text = On our way back, the taxi driver gave us an explanation after understanding our intentions. +1 On on ADP IN _ 3 case _ _ +2 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +3 way way NOUN NN Number=Sing 9 obl _ _ +4 back back ADV RB _ 3 advmod _ SpaceAfter=No +5 , , PUNCT , _ 9 punct _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 taxi taxi NOUN NN Number=Sing 8 compound _ _ +8 driver driver NOUN NN Number=Sing 9 nsubj _ _ +9 gave give VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +10 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 9 iobj _ _ +11 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +12 explanation explanation NOUN NN Number=Sing 9 obj _ _ +13 after after SCONJ IN _ 14 mark _ _ +14 understanding understand VERB VBG VerbForm=Ger 9 advcl _ _ +15 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 16 nmod:poss _ _ +16 intentions intention NOUN NNS Number=Plur 14 obj _ SpaceAfter=No +17 . . PUNCT . _ 9 punct _ _ + +# sent_id = 23 +# text = Er, according to what the security guard said, for the time before everything is officially, opened,, no cars can enter unless they have special permission. +1 Er er INTJ UH _ 25 discourse _ SpaceAfter=No +2 , , PUNCT , _ 1 punct _ _ +3 according accord VERB VBG VerbForm=Ger 20 conj _ _ +4 to to SCONJ IN _ 9 mark _ _ +5 what what PRON WP PronType=Int 9 obj _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 security security NOUN NN Number=Sing 8 compound _ _ +8 guard guard NOUN NN Number=Sing 9 nsubj _ _ +9 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 19 advcl _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 for for ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 time time NOUN NN Number=Sing 9 obl _ _ +14 before before SCONJ IN _ 17 mark _ _ +15 everything everything PRON NN Number=Sing 17 nsubj _ _ +16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 cop _ _ +17 officially officially ADV RB _ 9 advcl _ SpaceAfter=No +18 , , PUNCT , _ 19 punct _ _ +19 opened open VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 conj _ SpaceAfter=No +20 , , PUNCT , _ 25 punct _ SpaceAfter=No +21 , , PUNCT , _ 25 punct _ _ +22 no no DET DT _ 23 det _ _ +23 cars car NOUN NNS Number=Plur 25 nsubj _ _ +24 can can AUX MD VerbForm=Fin 25 aux _ _ +25 enter enter VERB VB VerbForm=Inf 0 root _ _ +26 unless unless SCONJ IN _ 28 mark _ _ +27 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 28 nsubj _ _ +28 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 25 advcl _ _ +29 special special ADJ JJ Degree=Pos 30 amod _ _ +30 permission permission NOUN NN Number=Sing 28 obj _ SpaceAfter=No +31 . . PUNCT . _ 25 punct _ _ + +# sent_id = 24 +# text = No one can enter otherwise. +1 No no DET DT _ 2 det _ _ +2 one one NOUN NN Number=Sing 4 nsubj _ _ +3 can can AUX MD VerbForm=Fin 4 aux _ _ +4 enter enter VERB VB VerbForm=Inf 0 root _ _ +5 otherwise otherwise ADV RB _ 4 advmod _ SpaceAfter=No +6 . . PUNCT . _ 4 punct _ _ + +# sent_id = 25 +# text = Video recording is especially forbidden. +1 Video video NOUN NN Number=Sing 2 compound _ _ +2 recording recording NOUN NN Number=Sing 5 nsubj _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 cop _ _ +4 especially especially ADV RB _ 5 advmod _ _ +5 forbidden forbidden ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +6 . . PUNCT . _ 5 punct _ _ + +# sent_id = 26 +# text = Ah, everything is top secret. +1 Ah ah INTJ UH _ 6 discourse _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 everything everything PRON NN Number=Sing 6 nsubj _ _ +4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +5 top top ADJ JJ Degree=Pos 6 amod _ _ +6 secret secret NOUN NN Number=Sing 0 root _ SpaceAfter=No +7 . . PUNCT . _ 6 punct _ _ + +# sent_id = 27 +# text = If pictures are taken without permission, %pw that is to say, it will at all times be pursued by legal action, a big hassle. +1 If if SCONJ IN _ 4 mark _ _ +2 pictures picture NOUN NNS Number=Plur 4 nsubj:pass _ _ +3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux:pass _ _ +4 taken take VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 8 advcl _ _ +5 without without ADP IN _ 6 case _ _ +6 permission permission NOUN NN Number=Sing 4 obl _ SpaceAfter=No +7 , , PUNCT , _ 8 punct _ _ +8 %pw %pw VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +9 that that PRON DT Number=Sing|PronType=Dem 10 nsubj _ _ +10 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 parataxis _ _ +11 to to PART TO _ 12 mark _ _ +12 say say VERB VB VerbForm=Inf 10 ccomp _ SpaceAfter=No +13 , , PUNCT , _ 8 punct _ _ +14 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 nsubj _ _ +15 will will AUX MD VerbForm=Fin 16 aux _ _ +16 at at VERB VB VerbForm=Inf 8 parataxis _ _ +17 all all DET DT _ 18 det _ _ +18 times time NOUN NNS Number=Plur 20 nsubj:pass _ _ +19 be be AUX VB VerbForm=Inf 20 aux:pass _ _ +20 pursued pursue VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 24 acl:relcl _ _ +21 by by ADP IN _ 23 case _ _ +22 legal legal ADJ JJ Degree=Pos 23 amod _ _ +23 action action NOUN NN Number=Sing 20 obl _ SpaceAfter=No +24 , , PUNCT , _ 16 punct _ _ +25 a a DET DT Definite=Ind|PronType=Art 27 det _ _ +26 big big ADJ JJ Degree=Pos 27 amod _ _ +27 hassle hassle NOUN NN Number=Sing 16 obj _ SpaceAfter=No +28 . . PUNCT . _ 8 punct _ _ + +# sent_id = 28 +# text = Although Disney Corporation chose Hong Kong as the venue for the Chinese Disney park, what they are actually most excited about is the mainland China tourist market. +1 Although although SCONJ IN _ 4 mark _ _ +2 Disney Disney PROPN NNP Number=Sing 3 compound _ _ +3 Corporation Corporation PROPN NNP Number=Sing 4 nsubj _ _ +4 chose choose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 21 advcl _ _ +5 Hong Hong PROPN NNP Number=Sing 4 obj _ _ +6 Kong Kong PROPN NNP Number=Sing 5 flat _ _ +7 as as ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 venue venue NOUN NN Number=Sing 4 obl _ _ +10 for for ADP IN _ 14 case _ _ +11 the the DET DT Definite=Def|PronType=Art 14 det _ _ +12 Chinese chinese PROPN NNPS Number=Plur 14 compound _ _ +13 Disney Disney PROPN NNP Number=Sing 14 compound _ _ +14 park park PROPN NNP Number=Sing 4 obl _ SpaceAfter=No +15 , , PUNCT , _ 21 punct _ _ +16 what what PRON WP PronType=Int 21 obj _ _ +17 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 21 nsubj _ _ +18 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 21 cop _ _ +19 actually actually ADV RB _ 21 advmod _ _ +20 most most ADV RBS _ 21 advmod _ _ +21 excited excited ADJ JJ Degree=Pos 0 root _ _ +22 about about ADV RB _ 28 advmod _ _ +23 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 cop _ _ +24 the the DET DT Definite=Def|PronType=Art 28 det _ _ +25 mainland mainland PROPN NNP Number=Sing 28 compound _ _ +26 China China PROPN NNP Number=Sing 28 compound _ _ +27 tourist tourist NOUN NN Number=Sing 28 compound _ _ +28 market market NOUN NN Number=Sing 21 obl _ SpaceAfter=No +29 . . PUNCT . _ 21 punct _ _ + +# sent_id = 29 +# text = Since the implementation of the Individual Visit Scheme between Hong Kong and the mainland, more and more mainland tourists are coming to visit Hong Kong. +1 Since since SCONJ IN _ 22 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 implementation implementation NOUN NN Number=Sing 22 nsubj _ _ +4 of of ADP IN _ 8 case _ _ +5 the the DET DT Definite=Def|PronType=Art 8 det _ _ +6 Individual individual PROPN NNP Number=Sing 7 compound _ _ +7 Visit visit PROPN NNP Number=Sing 8 compound _ _ +8 Scheme scheme PROPN NNP Number=Sing 3 nmod _ _ +9 between between ADP IN _ 10 case _ _ +10 Hong Hong PROPN NNP Number=Sing 3 nmod _ _ +11 Kong Kong PROPN NNP Number=Sing 10 flat _ _ +12 and and CCONJ CC _ 14 cc _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 mainland mainland NOUN NN Number=Sing 10 conj _ SpaceAfter=No +15 , , PUNCT , _ 16 punct _ _ +16 more more ADV RBR _ 10 conj _ _ +17 and and CCONJ CC _ 20 cc _ _ +18 more more ADV RBR _ 19 advmod _ _ +19 mainland mainland ADJ JJ Degree=Pos 20 amod _ _ +20 tourists tourist NOUN NNS Number=Plur 10 conj _ _ +21 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 22 aux _ _ +22 coming come VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +23 to to PART TO _ 24 mark _ _ +24 visit visit VERB VB VerbForm=Inf 22 xcomp _ _ +25 Hong Hong PROPN NNP Number=Sing 24 obj _ _ +26 Kong Kong PROPN NNP Number=Sing 25 flat _ SpaceAfter=No +27 . . PUNCT . _ 22 punct _ _ + +# sent_id = 30 +# text = From the beginning up till now, more than seven million individual tourists, have come to Hong Kong. +1 From from ADP IN _ 8 case _ _ +2 the the DET DT Definite=Def|PronType=Art 8 det _ _ +3 beginning begin VERB VBG VerbForm=Ger 8 advcl _ _ +4 up up ADP RP _ 3 compound:prt _ _ +5 till till ADV RB _ 6 advmod _ _ +6 now now ADV RB _ 3 advmod _ SpaceAfter=No +7 , , PUNCT , _ 8 punct _ _ +8 more more ADJ JJR Degree=Cmp 16 obl _ _ +9 than than ADP IN _ 13 case _ _ +10 seven seven NUM CD NumType=Card 11 compound _ _ +11 million million NUM CD NumType=Card 13 nummod _ _ +12 individual individual ADJ JJ Degree=Pos 13 amod _ _ +13 tourists tourist NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 16 aux _ _ +16 come come VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +17 to to ADP IN _ 18 case _ _ +18 Hong Hong PROPN NNP Number=Sing 16 obl _ _ +19 Kong Kong PROPN NNP Number=Sing 18 flat _ SpaceAfter=No +20 . . PUNCT . _ 16 punct _ _ + +# sent_id = 31 +# text = Well, we now, er, believe more will be coming. +1 Well well INTJ UH _ 8 discourse _ SpaceAfter=No +2 , , PUNCT , _ 8 punct _ _ +3 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 8 nsubj _ _ +4 now now ADV RB _ 8 advmod _ SpaceAfter=No +5 , , PUNCT , _ 8 punct _ _ +6 er er PROPN NNP Number=Sing 8 nsubj _ SpaceAfter=No +7 , , PUNCT , _ 8 punct _ _ +8 believe believe VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +9 more more ADJ JJR Degree=Cmp 12 advmod _ _ +10 will will AUX MD VerbForm=Fin 12 aux _ _ +11 be be AUX VB VerbForm=Inf 12 aux _ _ +12 coming come VERB VBG Tense=Pres|VerbForm=Part 8 ccomp _ SpaceAfter=No +13 . . PUNCT . _ 8 punct _ _ + +# sent_id = 32 +# text = At this point, it has been about two years. +1 At at ADP IN _ 3 case _ _ +2 this this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 point point NOUN NN Number=Sing 10 obl _ SpaceAfter=No +4 , , PUNCT , _ 10 punct _ _ +5 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 10 nsubj _ _ +6 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 aux _ _ +7 been be AUX VBN Tense=Past|VerbForm=Part 10 cop _ _ +8 about about ADP IN _ 10 case _ _ +9 two two NUM CD NumType=Card 10 nummod _ _ +10 years year NOUN NNS Number=Plur 0 root _ SpaceAfter=No +11 . . PUNCT . _ 10 punct _ _ + +# sent_id = 33 +# text = Also, the current number of 34 cities will be increased. +1 Also also ADV RB _ 11 advmod _ SpaceAfter=No +2 , , PUNCT , _ 11 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 current current ADJ JJ Degree=Pos 5 amod _ _ +5 number number NOUN NN Number=Sing 11 nsubj:pass _ _ +6 of of ADP IN _ 8 case _ _ +7 34 34 NUM CD NumType=Card 8 nummod _ _ +8 cities city NOUN NNS Number=Plur 5 nmod _ _ +9 will will AUX MD VerbForm=Fin 11 aux _ _ +10 be be AUX VB VerbForm=Inf 11 aux:pass _ _ +11 increased increase VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +12 . . PUNCT . _ 11 punct _ _ + +# sent_id = 34 +# text = Hong Kong was developed from a fishing harbor one hundred years ago to become today's international metropolis. +1 Hong Hong PROPN NNP Number=Sing 4 nsubj:pass _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 4 aux:pass _ _ +4 developed develop VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +5 from from ADP IN _ 7 case _ _ +6 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 fishing fishing NOUN NN Number=Sing 12 obl _ _ +8 harbor harbor ADP IN _ 12 case _ _ +9 one one NUM CD NumType=Card 11 nummod _ _ +10 hundred hundred NUM CD NumType=Card 11 nummod _ _ +11 years year NOUN NNS Number=Plur 12 obl:npmod _ _ +12 ago ago ADV RB _ 4 advmod _ _ +13 to to PART TO _ 14 mark _ _ +14 become become VERB VB VerbForm=Inf 4 advcl _ _ +15 today today NOUN NN Number=Sing 18 nmod:poss _ SpaceAfter=No +16 's 's PART POS _ 15 case _ _ +17 international international ADJ JJ Degree=Pos 18 amod _ _ +18 metropolis metropolis NOUN NNS Number=Plur 14 obj _ SpaceAfter=No +19 . . PUNCT . _ 4 punct _ _ + +# sent_id = 35 +# text = Here, eastern and western cultures have gathered, and the new and the old coexist. +1 Here here ADV RB PronType=Dem 3 advmod _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 eastern eastern ADJ JJ Degree=Pos 6 amod _ _ +4 and and CCONJ CC _ 5 cc _ _ +5 western western ADJ JJ Degree=Pos 3 conj _ _ +6 cultures culture NOUN NNS Number=Plur 8 nsubj _ _ +7 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 aux _ _ +8 gathered gather VERB VBN Tense=Past|VerbForm=Part 0 root _ SpaceAfter=No +9 , , PUNCT , _ 12 punct _ _ +10 and and CCONJ CC _ 12 cc _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 new new ADJ JJ Degree=Pos 8 conj _ _ +13 and and CCONJ CC _ 16 cc _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 old old ADJ JJ Degree=Pos 16 amod _ _ +16 coexist coexist NOUN NN Number=Sing 12 conj _ SpaceAfter=No +17 . . PUNCT . _ 8 punct _ _ + +# sent_id = 36 +# text = When in Hong Kong, you can wander among skyscrapers, heartily enjoy shopping sprees in well-known stores and malls for goods from various countries, and taste delicious snacks from all over the world at tea shops or at street stands in Mong Kok. +1 When when ADV WRB PronType=Int 8 mark _ _ +2 in in ADP IN _ 3 case _ _ +3 Hong Hong PROPN NNP Number=Sing 1 obl _ _ +4 Kong Kong PROPN NNP Number=Sing 3 flat _ SpaceAfter=No +5 , , PUNCT , _ 8 punct _ _ +6 you you PRON PRP Case=Nom|Person=2|PronType=Prs 8 nsubj _ _ +7 can can AUX MD VerbForm=Fin 8 aux _ _ +8 wander wander VERB VB VerbForm=Inf 13 advcl _ _ +9 among among ADP IN _ 10 case _ _ +10 skyscrapers skyscraper NOUN NNS Number=Plur 8 obl _ SpaceAfter=No +11 , , PUNCT , _ 13 punct _ _ +12 heartily heartily ADV RB _ 13 advmod _ _ +13 enjoy enjoy VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +14 shopping shopping NOUN NN Number=Sing 15 compound _ _ +15 sprees spree NOUN NNS Number=Plur 13 obj _ _ +16 in in ADP IN _ 20 case _ _ +17 well well ADV RB Degree=Pos 19 advmod _ SpaceAfter=No +18 - - PUNCT HYPH _ 19 punct _ SpaceAfter=No +19 known know VERB VBN Tense=Past|VerbForm=Part 20 amod _ _ +20 stores store NOUN NNS Number=Plur 13 obl _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 malls mall NOUN NNS Number=Plur 20 conj _ _ +23 for for ADP IN _ 24 case _ _ +24 goods goods NOUN NNS Number=Plur 20 nmod _ _ +25 from from ADP IN _ 27 case _ _ +26 various various ADJ JJ Degree=Pos 27 amod _ _ +27 countries country NOUN NNS Number=Plur 24 nmod _ SpaceAfter=No +28 , , PUNCT , _ 30 punct _ _ +29 and and CCONJ CC _ 30 cc _ _ +30 taste taste VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 44 conj _ _ +31 delicious delicious ADJ JJ Degree=Pos 32 amod _ _ +32 snacks snack NOUN NNS Number=Plur 30 obj _ _ +33 from from ADP IN _ 34 case _ _ +34 all all ADV RB _ 37 obl _ _ +35 over over ADP IN _ 37 case _ _ +36 the the DET DT Definite=Def|PronType=Art 37 det _ _ +37 world world NOUN NN Number=Sing 30 obl _ _ +38 at at ADP IN _ 40 case _ _ +39 tea tea NOUN NN Number=Sing 40 compound _ _ +40 shops shop NOUN NNS Number=Plur 30 nmod _ _ +41 or or CCONJ CC _ 43 cc _ _ +42 at at ADP IN _ 43 case _ _ +43 street street NOUN NN Number=Sing 40 conj _ _ +44 stands stand VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 conj _ _ +45 in in ADP IN _ 47 case _ _ +46 Mong Mong PROPN NNP Number=Sing 47 compound _ _ +47 Kok Kok PROPN NNP Number=Sing 44 obl _ SpaceAfter=No +48 . . PUNCT . _ 13 punct _ _ + +# sent_id = 37 +# text = You can go to burn incense and make a vow at the Repulse Bay, where all deities gather. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 go go VERB VB VerbForm=Inf 0 root _ _ +4 to to PART TO _ 5 mark _ _ +5 burn burn VERB VB VerbForm=Inf 3 xcomp _ _ +6 incense incense NOUN NN Number=Sing 5 obj _ _ +7 and and CCONJ CC _ 8 cc _ _ +8 make make VERB VB VerbForm=Inf 3 conj _ _ +9 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 vow vow NOUN NN Number=Sing 8 obj _ _ +11 at at ADP IN _ 14 case _ _ +12 the the DET DT Definite=Def|PronType=Art 14 det _ _ +13 Repulse Repulse PROPN NNP Number=Sing 14 compound _ _ +14 Bay Bay PROPN NNP Number=Sing 8 obl _ SpaceAfter=No +15 , , PUNCT , _ 14 punct _ _ +16 where where ADV WRB PronType=Rel 19 advmod _ _ +17 all all DET DT _ 18 det _ _ +18 deities deity NOUN NNS Number=Plur 19 nsubj _ _ +19 gather gather VERB VB VerbForm=Inf 14 acl:relcl _ SpaceAfter=No +20 . . PUNCT . _ 3 punct _ _ + +# sent_id = 38 +# text = You can enjoy the most charming sun-filled sandy beaches in Hong Kong. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 enjoy enjoy VERB VB VerbForm=Inf 0 root _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 most most ADJ JJS Degree=Sup 6 amod _ _ +6 charming charming NOUN NN Number=Sing 3 obj _ _ +7 sun- sun- PUNCT , _ 10 punct _ SpaceAfter=No +8 filled fill VERB VBN Tense=Past|VerbForm=Part 10 amod _ _ +9 sandy sandy ADJ JJ Degree=Pos 10 amod _ _ +10 beaches beach NOUN NNS Number=Plur 6 appos _ _ +11 in in ADP IN _ 13 case _ _ +12 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +13 Kong Kong PROPN NNP Number=Sing 10 nmod _ SpaceAfter=No +14 . . PUNCT . _ 3 punct _ _ + +# sent_id = 39 +# text = You can ascend Victoria Peak to get a panoramic view of Victoria Harbor's beautiful scenery. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 ascend ascend VERB VB VerbForm=Inf 0 root _ _ +4 Victoria Victoria PROPN NNP Number=Sing 3 obj _ _ +5 Peak peak PROPN NNP Number=Sing 4 flat _ _ +6 to to PART TO _ 7 mark _ _ +7 get get VERB VB VerbForm=Inf 3 advcl _ _ +8 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +9 panoramic panoramic ADJ JJ Degree=Pos 10 amod _ _ +10 view view NOUN NN Number=Sing 7 obj _ _ +11 of of ADP IN _ 16 case _ _ +12 Victoria Victoria PROPN NNP Number=Sing 13 compound _ _ +13 Harbor Harbor PROPN NNP Number=Sing 16 nmod:poss _ SpaceAfter=No +14 's 's PART POS _ 13 case _ _ +15 beautiful beautiful ADJ JJ Degree=Pos 16 amod _ _ +16 scenery scenery NOUN NN Number=Sing 10 nmod _ SpaceAfter=No +17 . . PUNCT . _ 3 punct _ _ + +# sent_id = 40 +# text = Or hop onto a trolley with over a century of history, and feel the city's blend of the old and the modern in slow motion. +1 Or or CCONJ CC _ 2 cc _ _ +2 hop hop VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +3 onto onto ADP IN _ 5 case _ _ +4 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +5 trolley trolley NOUN NN Number=Sing 2 obl _ _ +6 with with ADP IN _ 9 case _ _ +7 over over ADP IN _ 9 case _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 century century NOUN NN Number=Sing 5 nmod _ _ +10 of of ADP IN _ 11 case _ _ +11 history history NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +12 , , PUNCT , _ 14 punct _ _ +13 and and CCONJ CC _ 14 cc _ _ +14 feel feel VERB VB Mood=Imp|VerbForm=Fin 2 conj _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 city city NOUN NN Number=Sing 18 nmod:poss _ SpaceAfter=No +17 's 's PART POS _ 16 case _ _ +18 blend blend NOUN NN Number=Sing 14 obj _ _ +19 of of ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 old old ADJ JJ Degree=Pos 18 nmod _ _ +22 and and CCONJ CC _ 24 cc _ _ +23 the the DET DT Definite=Def|PronType=Art 24 det _ _ +24 modern modern ADJ JJ Degree=Pos 21 conj _ _ +25 in in ADP IN _ 27 case _ _ +26 slow slow ADJ JJ Degree=Pos 27 amod _ _ +27 motion motion NOUN NN Number=Sing 24 obl _ SpaceAfter=No +28 . . PUNCT . _ 2 punct _ _ + +# sent_id = 41 +# text = After dark, cruise Victoria Harbor at night to enjoy the enchanting evening view. +1 After after ADP IN _ 2 case _ _ +2 dark dark ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +3 , , PUNCT , _ 6 punct _ _ +4 cruise cruise NOUN NN Number=Sing 5 compound _ _ +5 Victoria Victoria PROPN NNP Number=Sing 6 compound _ _ +6 Harbor Harbor PROPN NNP Number=Sing 2 obl _ _ +7 at at ADP IN _ 8 case _ _ +8 night night NOUN NN Number=Sing 2 obl _ _ +9 to to PART TO _ 10 mark _ _ +10 enjoy enjoy VERB VB VerbForm=Inf 2 advcl _ _ +11 the the DET DT Definite=Def|PronType=Art 14 det _ _ +12 enchanting enchant VERB VBG VerbForm=Ger 14 amod _ _ +13 evening evening NOUN NN Number=Sing 14 compound _ _ +14 view view NOUN NN Number=Sing 10 obj _ SpaceAfter=No +15 . . PUNCT . _ 2 punct _ _ + +# sent_id = 42 +# text = Every corner of Hong Kong is filled with fun. +1 Every every DET DT _ 2 det _ _ +2 corner corner NOUN NN Number=Sing 7 nsubj:pass _ _ +3 of of ADP IN _ 4 case _ _ +4 Hong Hong PROPN NNP Number=Sing 2 nmod _ _ +5 Kong Kong PROPN NNP Number=Sing 4 flat _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux:pass _ _ +7 filled fill VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +8 with with ADP IN _ 9 case _ _ +9 fun fun NOUN NN Number=Sing 7 obl _ SpaceAfter=No +10 . . PUNCT . _ 7 punct _ _ + +# sent_id = 43 +# text = Meanwhile, as various new items are constantly being added, what other kinds of pleasant surprises will the Hong Kong tourism industry bring us? +1 Meanwhile meanwhile ADV RB _ 10 advmod _ SpaceAfter=No +2 , , PUNCT , _ 10 punct _ _ +3 as as ADP IN _ 6 case _ _ +4 various various ADJ JJ Degree=Pos 6 amod _ _ +5 new new ADJ JJ Degree=Pos 6 amod _ _ +6 items item NOUN NNS Number=Plur 10 nsubj:pass _ _ +7 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 10 aux _ _ +8 constantly constantly ADV RB _ 10 advmod _ _ +9 being be AUX VBG VerbForm=Ger 10 aux:pass _ _ +10 added add VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +11 , , PUNCT , _ 10 punct _ _ +12 what what PRON WP PronType=Int 24 obj _ _ +13 other other ADJ JJ Degree=Pos 14 amod _ _ +14 kinds kind NOUN NNS Number=Plur 12 nsubj _ _ +15 of of ADP IN _ 17 case _ _ +16 pleasant pleasant ADJ JJ Degree=Pos 17 amod _ _ +17 surprises surprise NOUN NNS Number=Plur 14 nmod _ _ +18 will will AUX MD VerbForm=Fin 24 aux _ _ +19 the the DET DT Definite=Def|PronType=Art 23 det _ _ +20 Hong Hong PROPN NNP Number=Sing 21 compound _ _ +21 Kong Kong PROPN NNP Number=Sing 22 compound _ _ +22 tourism tourism NOUN NN Number=Sing 23 compound _ _ +23 industry industry NOUN NN Number=Sing 24 nsubj _ _ +24 bring bring VERB VB VerbForm=Inf 10 ccomp _ _ +25 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 24 obj _ SpaceAfter=No +26 ? ? PUNCT . _ 10 punct _ _ + +# sent_id = 44 +# text = Over the past 28 years, the Ocean Park has basically been a must-see destination for tourists coming to Hong Kong. +1 Over over ADP IN _ 5 case _ _ +2 the the DET DT Definite=Def|PronType=Art 5 det _ _ +3 past past ADJ JJ Degree=Pos 5 amod _ _ +4 28 28 NUM CD NumType=Card 5 nummod _ _ +5 years year NOUN NNS Number=Plur 17 obl _ SpaceAfter=No +6 , , PUNCT , _ 17 punct _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 Ocean Ocean PROPN NNP Number=Sing 9 compound _ _ +9 Park Park PROPN NNP Number=Sing 17 nsubj _ _ +10 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 aux _ _ +11 basically basically ADV RB _ 17 advmod _ _ +12 been be AUX VBN Tense=Past|VerbForm=Part 17 cop _ _ +13 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +14 must must AUX MD VerbForm=Fin 16 aux _ SpaceAfter=No +15 - - PUNCT HYPH _ 16 punct _ SpaceAfter=No +16 see see VERB VB VerbForm=Inf 17 amod _ _ +17 destination destination NOUN NN Number=Sing 0 root _ _ +18 for for ADP IN _ 19 case _ _ +19 tourists tourist NOUN NNS Number=Plur 17 nmod _ _ +20 coming come VERB VBG VerbForm=Ger 19 acl _ _ +21 to to ADP IN _ 23 case _ _ +22 Hong Hong PROPN NNP Number=Sing 23 compound _ _ +23 Kong Kong PROPN NNP Number=Sing 20 obl _ SpaceAfter=No +24 . . PUNCT . _ 17 punct _ _ + +# sent_id = 45 +# text = Watch spectacular performances by dolphins and sea lions at the Ocean Theater, and experience passionate screaming and accelerating heart-beat adventures on amusement rides. +1 Watch watch VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +2 spectacular spectacular ADJ JJ Degree=Pos 3 amod _ _ +3 performances performance NOUN NNS Number=Plur 1 obj _ _ +4 by by ADP IN _ 5 case _ _ +5 dolphins dolphin NOUN NNS Number=Plur 1 obl _ _ +6 and and CCONJ CC _ 8 cc _ _ +7 sea sea NOUN NN Number=Sing 8 compound _ _ +8 lions lion NOUN NNS Number=Plur 5 conj _ _ +9 at at ADP IN _ 12 case _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 Ocean Ocean PROPN NNP Number=Sing 12 compound _ _ +12 Theater theater PROPN NNP Number=Sing 1 obl _ SpaceAfter=No +13 , , PUNCT , _ 16 punct _ _ +14 and and CCONJ CC _ 16 cc _ _ +15 experience experience NOUN NN Number=Sing 16 compound _ _ +16 passionate passionate NOUN NN Number=Sing 1 conj _ _ +17 screaming screame VERB VBG VerbForm=Ger 16 acl _ _ +18 and and CCONJ CC _ 19 cc _ _ +19 accelerating accelerate VERB VBG VerbForm=Ger 17 conj _ _ +20 heart heart NOUN NN Number=Sing 22 compound _ SpaceAfter=No +21 - - PUNCT HYPH _ 22 punct _ SpaceAfter=No +22 beat beat NOUN NN Number=Sing 23 compound _ _ +23 adventures adventure NOUN NNS Number=Plur 19 obj _ _ +24 on on ADP IN _ 26 case _ _ +25 amusement amusement NOUN NN Number=Sing 26 compound _ _ +26 rides ride NOUN NNS Number=Plur 23 nmod _ SpaceAfter=No +27 . . PUNCT . _ 1 punct _ _ + +# sent_id = 46 +# text = Or ride the giant Ferris wheel to get a bird's eye view from high above of the magnificent panorama of Hong Kong Island and the South China Sea. +1 Or or CCONJ CC _ 2 cc _ _ +2 ride ride VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +3 the the DET DT Definite=Def|PronType=Art 6 det _ _ +4 giant giant ADJ JJ Degree=Pos 6 amod _ _ +5 Ferris Ferris PROPN NNP Number=Sing 6 compound _ _ +6 wheel wheel NOUN NN Number=Sing 2 obj _ _ +7 to to PART TO _ 8 mark _ _ +8 get get VERB VB VerbForm=Inf 2 advcl _ _ +9 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 bird bird NOUN NN Number=Sing 13 nmod:poss _ SpaceAfter=No +11 's 's PART POS _ 10 case _ _ +12 eye eye NOUN NN Number=Sing 13 compound _ _ +13 view view NOUN NN Number=Sing 8 obj _ _ +14 from from ADP IN _ 15 case _ _ +15 high high ADJ JJ Degree=Pos 13 nmod _ _ +16 above above ADP IN _ 20 case _ _ +17 of of ADP IN _ 20 case _ _ +18 the the DET DT Definite=Def|PronType=Art 20 det _ _ +19 magnificent magnificent ADJ JJ Degree=Pos 20 amod _ _ +20 panorama panorama NOUN NN Number=Sing 15 obl _ _ +21 of of ADP IN _ 24 case _ _ +22 Hong Hong PROPN NNP Number=Sing 24 compound _ _ +23 Kong Kong PROPN NNP Number=Sing 24 compound _ _ +24 Island island PROPN NNP Number=Sing 20 nmod _ _ +25 and and CCONJ CC _ 29 cc _ _ +26 the the DET DT Definite=Def|PronType=Art 29 det _ _ +27 South South PROPN NNP Number=Sing 29 compound _ _ +28 China China PROPN NNP Number=Sing 29 compound _ _ +29 Sea Sea PROPN NNP Number=Sing 15 conj _ SpaceAfter=No +30 . . PUNCT . _ 2 punct _ _ + +# sent_id = 47 +# text = These items, which were the pride of the Ocean Park, have made this place the most popular tourist attraction in Hong Kong for some time. +1 These these DET DT Number=Plur|PronType=Dem 2 det _ _ +2 items item NOUN NNS Number=Plur 14 nsubj _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 which which PRON WDT PronType=Rel 7 nsubj _ _ +5 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 7 cop _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 pride pride NOUN NN Number=Sing 2 acl:relcl _ _ +8 of of ADP IN _ 11 case _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 Ocean Ocean PROPN NNP Number=Sing 11 compound _ _ +11 Park Park PROPN NNP Number=Sing 7 nmod _ SpaceAfter=No +12 , , PUNCT , _ 14 punct _ _ +13 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 aux _ _ +14 made make VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +15 this this DET DT Number=Sing|PronType=Dem 16 det _ _ +16 place place NOUN NN Number=Sing 14 obj _ _ +17 the the DET DT Definite=Def|PronType=Art 21 det _ _ +18 most most ADV RBS _ 19 advmod _ _ +19 popular popular ADJ JJ Degree=Pos 21 amod _ _ +20 tourist tourist NOUN NN Number=Sing 21 compound _ _ +21 attraction attraction NOUN NN Number=Sing 14 xcomp _ _ +22 in in ADP IN _ 24 case _ _ +23 Hong Hong PROPN NNP Number=Sing 24 compound _ _ +24 Kong Kong PROPN NNP Number=Sing 21 nmod _ _ +25 for for ADP IN _ 27 case _ _ +26 some some DET DT _ 27 det _ _ +27 time time NOUN NN Number=Sing 14 obl _ SpaceAfter=No +28 . . PUNCT . _ 14 punct _ _ + +# sent_id = 48 +# text = However, since Disney entered Hong Kong, the Ocean Park, sharing the same city as Disney, has felt the pressure of competition. +1 However however ADV RB _ 11 advmod _ SpaceAfter=No +2 , , PUNCT , _ 11 punct _ _ +3 since since SCONJ IN _ 5 mark _ _ +4 Disney Disney PROPN NNP Number=Sing 5 nsubj _ _ +5 entered enter VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 advcl _ _ +6 Hong Hong PROPN NNP Number=Sing 5 obj _ _ +7 Kong Kong PROPN NNP Number=Sing 6 flat _ SpaceAfter=No +8 , , PUNCT , _ 11 punct _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 Ocean Ocean PROPN NNP Number=Sing 11 compound _ _ +11 Park park PROPN NNP Number=Sing 21 nsubj _ SpaceAfter=No +12 , , PUNCT , _ 11 punct _ _ +13 sharing share VERB VBG VerbForm=Ger 11 acl _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 same same ADJ JJ Degree=Pos 16 amod _ _ +16 city city NOUN NN Number=Sing 13 obj _ _ +17 as as ADP IN _ 18 case _ _ +18 Disney Disney PROPN NNP Number=Sing 13 obl _ SpaceAfter=No +19 , , PUNCT , _ 21 punct _ _ +20 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 21 aux _ _ +21 felt feel VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +22 the the DET DT Definite=Def|PronType=Art 23 det _ _ +23 pressure pressure NOUN NN Number=Sing 21 obj _ _ +24 of of ADP IN _ 25 case _ _ +25 competition competition NOUN NN Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT . _ 21 punct _ _ + +# sent_id = 49 +# text = To improve the park's brand, they are planning to invest 5.5 billion in a renovation project starting in 2006. +1 To to PART TO _ 2 mark _ _ +2 improve improve VERB VB VerbForm=Inf 10 advcl _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 park park NOUN NN Number=Sing 6 nmod:poss _ SpaceAfter=No +5 's 's PART POS _ 4 case _ _ +6 brand brand NOUN NN Number=Sing 2 obj _ SpaceAfter=No +7 , , PUNCT , _ 10 punct _ _ +8 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 10 nsubj _ _ +9 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 10 aux _ _ +10 planning plan VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +11 to to PART TO _ 12 mark _ _ +12 invest invest VERB VB VerbForm=Inf 10 xcomp _ _ +13 5.5 5.5 NUM CD NumType=Card 14 nummod _ _ +14 billion billion NUM CD NumType=Card 12 obj _ _ +15 in in ADP IN _ 18 case _ _ +16 a a DET DT Definite=Ind|PronType=Art 18 det _ _ +17 renovation renovation NOUN NN Number=Sing 18 compound _ _ +18 project project NOUN NN Number=Sing 12 obl _ _ +19 starting start VERB VBG VerbForm=Ger 12 advcl _ _ +20 in in ADP IN _ 21 case _ _ +21 2006 2006 NUM CD NumType=Card 19 obl _ SpaceAfter=No +22 . . PUNCT . _ 10 punct _ _ + +# sent_id = 50 +# text = It seems that for the future, we have a scheme, a major renovation plan. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 expl _ _ +2 seems seem VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 that that SCONJ IN _ 9 mark _ _ +4 for for ADP IN _ 6 case _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 future future NOUN NN Number=Sing 9 obl _ SpaceAfter=No +7 , , PUNCT , _ 9 punct _ _ +8 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 9 nsubj _ _ +9 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 ccomp _ _ +10 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +11 scheme scheme NOUN NN Number=Sing 9 obj _ SpaceAfter=No +12 , , PUNCT , _ 11 punct _ _ +13 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +14 major major ADJ JJ Degree=Pos 16 amod _ _ +15 renovation renovation NOUN NN Number=Sing 16 compound _ _ +16 plan plan NOUN NN Number=Sing 11 appos _ SpaceAfter=No +17 . . PUNCT . _ 2 punct _ _ + +# sent_id = 51 +# text = That is, the entire park will be divided into seven sections for renovation. +1 That that PRON DT Number=Sing|PronType=Dem 9 nsubj:pass _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux:pass _ SpaceAfter=No +3 , , PUNCT , _ 9 punct _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 entire entire ADJ JJ Degree=Pos 6 amod _ _ +6 park park NOUN NN Number=Sing 9 nsubj:pass _ _ +7 will will AUX MD VerbForm=Fin 9 aux _ _ +8 be be AUX VB VerbForm=Inf 9 aux:pass _ _ +9 divided divide VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +10 into into ADP IN _ 12 case _ _ +11 seven seven NUM CD NumType=Card 12 nummod _ _ +12 sections section NOUN NNS Number=Plur 9 obl _ _ +13 for for ADP IN _ 14 case _ _ +14 renovation renovation NOUN NN Number=Sing 12 nmod _ SpaceAfter=No +15 . . PUNCT . _ 9 punct _ _ + +# sent_id = 52 +# text = Ah, additional, newer, ah, attractions will be available for tourists. +1 Ah ah INTJ UH _ 12 discourse _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 additional additional ADJ JJ Degree=Pos 1 conj _ SpaceAfter=No +4 , , PUNCT , _ 5 punct _ _ +5 newer newer ADJ JJR Degree=Cmp 1 conj _ SpaceAfter=No +6 , , PUNCT , _ 12 punct _ _ +7 ah ah INTJ UH _ 12 discourse _ SpaceAfter=No +8 , , PUNCT , _ 12 punct _ _ +9 attractions attraction NOUN NNS Number=Plur 12 nsubj _ _ +10 will will AUX MD VerbForm=Fin 12 aux _ _ +11 be be AUX VB VerbForm=Inf 12 cop _ _ +12 available available ADJ JJ Degree=Pos 0 root _ _ +13 for for ADP IN _ 14 case _ _ +14 tourists tourist NOUN NNS Number=Plur 12 obl _ SpaceAfter=No +15 . . PUNCT . _ 12 punct _ _ + +# sent_id = 53 +# text = It seems that those attractions like the North Pole and the Marine Life Center will also be renovated after several years. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 seems seem VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 that that SCONJ IN _ 18 mark _ _ +4 those those DET DT Number=Plur|PronType=Dem 5 det _ _ +5 attractions attraction NOUN NNS Number=Plur 18 nsubj:pass _ _ +6 like like ADP IN _ 9 case _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 North North PROPN NNP Number=Sing 9 compound _ _ +9 Pole Pole PROPN NNP Number=Sing 5 nmod _ _ +10 and and CCONJ CC _ 14 cc _ _ +11 the the DET DT Definite=Def|PronType=Art 14 det _ _ +12 Marine Marine PROPN NNP Number=Sing 14 compound _ _ +13 Life life PROPN NNP Number=Sing 14 compound _ _ +14 Center Center PROPN NNP Number=Sing 5 conj _ _ +15 will will AUX MD VerbForm=Fin 18 aux _ _ +16 also also ADV RB _ 18 advmod _ _ +17 be be AUX VB VerbForm=Inf 18 aux:pass _ _ +18 renovated renovate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 2 ccomp _ _ +19 after after ADP IN _ 21 case _ _ +20 several several ADJ JJ Degree=Pos 21 amod _ _ +21 years year NOUN NNS Number=Plur 18 obl _ SpaceAfter=No +22 . . PUNCT . _ 2 punct _ _ + +# sent_id = 54 +# text = Are they going to be different from what they are now? +1 Are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _ +2 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +3 going go VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +4 to to PART TO _ 6 mark _ _ +5 be be AUX VB VerbForm=Inf 6 cop _ _ +6 different different ADJ JJ Degree=Pos 3 xcomp _ _ +7 from from SCONJ IN _ 8 case _ _ +8 what what PRON WP PronType=Int 6 obl _ _ +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ _ +10 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 cop _ _ +11 now now ADV RB _ 8 acl:relcl _ SpaceAfter=No +12 ? ? PUNCT . _ 3 punct _ _ + +# sent_id = 55 +# text = They will be, in ten years. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 7 nsubj _ _ +2 will will AUX MD VerbForm=Fin 7 aux _ _ +3 be be AUX VB VerbForm=Inf 7 cop _ SpaceAfter=No +4 , , PUNCT , _ 7 punct _ _ +5 in in ADP IN _ 7 case _ _ +6 ten ten NUM CD NumType=Card 7 nummod _ _ +7 years year NOUN NNS Number=Plur 0 root _ SpaceAfter=No +8 . . PUNCT . _ 7 punct _ _ + +# sent_id = 56 +# text = Ah, there will be more animals, and more animal species, different from what there is now. +1 Ah ah INTJ UH _ 5 discourse _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 there there PRON EX _ 5 expl _ _ +4 will will AUX MD VerbForm=Fin 5 aux _ _ +5 be be VERB VB VerbForm=Inf 0 root _ _ +6 more more ADJ JJR Degree=Cmp 7 amod _ _ +7 animals animal NOUN NNS Number=Plur 5 nsubj _ SpaceAfter=No +8 , , PUNCT , _ 12 punct _ _ +9 and and CCONJ CC _ 12 cc _ _ +10 more more ADJ JJR Degree=Cmp 12 amod _ _ +11 animal animal NOUN NN Number=Sing 12 compound _ _ +12 species species NOUN NNS Number=Plur 7 conj _ SpaceAfter=No +13 , , PUNCT , _ 7 punct _ _ +14 different different ADJ JJ Degree=Pos 7 amod _ _ +15 from from SCONJ IN _ 16 case _ _ +16 what what PRON WP PronType=Int 14 obl _ _ +17 there there PRON EX _ 18 expl _ _ +18 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 acl:relcl _ _ +19 now now ADV RB _ 18 advmod _ SpaceAfter=No +20 . . PUNCT . _ 5 punct _ _ + +# sent_id = 57 +# text = It looks like we will also bring in whales. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 looks look VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 like like SCONJ IN _ 7 mark _ _ +4 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 7 nsubj _ _ +5 will will AUX MD VerbForm=Fin 7 aux _ _ +6 also also ADV RB _ 7 advmod _ _ +7 bring bring VERB VB VerbForm=Inf 2 advcl _ _ +8 in in ADP IN _ 9 case _ _ +9 whales whale NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +10 . . PUNCT . _ 2 punct _ _ + +# sent_id = 58 +# text = Er, we will implement this plan as soon as it is approved by the government. +1 Er er INTJ UH _ 5 discourse _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 5 nsubj _ _ +4 will will AUX MD VerbForm=Fin 5 aux _ _ +5 implement implement VERB VB VerbForm=Inf 0 root _ _ +6 this this DET DT Number=Sing|PronType=Dem 7 det _ _ +7 plan plan NOUN NN Number=Sing 5 obj _ _ +8 as as ADV RB _ 9 advmod _ _ +9 soon soon ADV RB Degree=Pos 5 advmod _ _ +10 as as SCONJ IN _ 13 mark _ _ +11 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 13 nsubj:pass _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 aux:pass _ _ +13 approved approve VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 5 advcl _ _ +14 by by ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 government government NOUN NN Number=Sing 13 obl _ SpaceAfter=No +17 . . PUNCT . _ 5 punct _ _ + +# sent_id = 59 +# text = Groundbreaking is expected to start next year. +1 Groundbreaking Groundbreaking PROPN NNP Number=Sing 3 nsubj:pass _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux:pass _ _ +3 expected expect VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +4 to to PART TO _ 5 mark _ _ +5 start start VERB VB VerbForm=Inf 3 xcomp _ _ +6 next next ADJ JJ Degree=Pos 7 amod _ _ +7 year year NOUN NN Number=Sing 5 obl:tmod _ SpaceAfter=No +8 . . PUNCT . _ 3 punct _ _ + +# sent_id = 60 +# text = Yes. +1 Yes yes INTJ UH _ 0 root _ SpaceAfter=No +2 . . PUNCT . _ 1 punct _ _ + +# sent_id = 61 +# text = The area of Hong Kong is only one thousand-plus square kilometers. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 area area NOUN NN Number=Sing 8 nsubj _ _ +3 of of ADP IN _ 5 case _ _ +4 Hong Hong PROPN NNP Number=Sing 5 compound _ _ +5 Kong Kong PROPN NNP Number=Sing 2 nmod _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +7 only only ADV RB _ 8 advmod _ _ +8 one one NUM CD NumType=Card 0 root _ _ +9 thousand thousand NUM CD NumType=Card 13 compound _ SpaceAfter=No +10 - - PUNCT , _ 9 punct _ SpaceAfter=No +11 plus plus CCONJ CC _ 12 cc _ _ +12 square square ADJ JJ Degree=Pos 9 conj _ _ +13 kilometers kilometer NOUN NNS Number=Plur 8 parataxis _ SpaceAfter=No +14 . . PUNCT . _ 8 punct _ _ + +# sent_id = 62 +# text = The population is dense. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 population population NOUN NN Number=Sing 4 nsubj _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +4 dense dense ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +5 . . PUNCT . _ 4 punct _ _ + +# sent_id = 63 +# text = Natural resources are relatively scarce. +1 Natural natural ADJ JJ Degree=Pos 2 amod _ _ +2 resources resource NOUN NNS Number=Plur 5 nsubj _ _ +3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 cop _ _ +4 relatively relatively ADV RB _ 5 advmod _ _ +5 scarce scarce NOUN NN Number=Sing 0 root _ SpaceAfter=No +6 . . PUNCT . _ 5 punct _ _ + +# sent_id = 64 +# text = However, the clever Hong Kong people will utilize all resources they have created for developing the Hong Kong tourism industry. +1 However however ADV RB _ 9 advmod _ SpaceAfter=No +2 , , PUNCT , _ 9 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 7 det _ _ +4 clever clever NOUN NN Number=Sing 6 compound _ _ +5 Hong Hong PROPN NNP Number=Sing 6 compound _ _ +6 Kong Kong PROPN NNP Number=Sing 7 compound _ _ +7 people people NOUN NNS Number=Plur 9 nsubj _ _ +8 will will AUX MD VerbForm=Fin 9 aux _ _ +9 utilize utilize VERB VB VerbForm=Inf 0 root _ _ +10 all all DET DT _ 11 det _ _ +11 resources resource NOUN NNS Number=Plur 9 obj _ _ +12 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 14 nsubj _ _ +13 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 aux _ _ +14 created create VERB VBN Tense=Past|VerbForm=Part 11 acl:relcl _ _ +15 for for SCONJ IN _ 16 mark _ _ +16 developing develop VERB VBG VerbForm=Ger 14 advcl _ _ +17 the the DET DT Definite=Def|PronType=Art 21 det _ _ +18 Hong Hong PROPN NNP Number=Sing 19 compound _ _ +19 Kong Kong PROPN NNP Number=Sing 21 compound _ _ +20 tourism tourism NOUN NN Number=Sing 21 compound _ _ +21 industry industry NOUN NN Number=Sing 16 obj _ SpaceAfter=No +22 . . PUNCT . _ 9 punct _ _ + +# sent_id = 65 +# text = Among these is the Avenue of Stars. +1 Among among ADP IN _ 2 case _ _ +2 these these PRON DT Number=Plur|PronType=Dem 5 obl _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 cop _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 Avenue Avenue PROPN NNP Number=Sing 0 root _ _ +6 of of ADP IN _ 7 case _ _ +7 Stars Stars PROPN NNPS Number=Plur 5 nmod _ SpaceAfter=No +8 . . PUNCT . _ 5 punct _ _ + +# sent_id = 66 +# text = Entering Hollywood of the East, here, you can come up close with the stars in your mind. +1 Entering enter VERB VBG VerbForm=Ger 11 advcl _ _ +2 Hollywood Hollywood NOUN NN Number=Sing 1 obj _ _ +3 of of ADP IN _ 5 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 East East PROPN NNP Number=Sing 2 nmod _ SpaceAfter=No +6 , , PUNCT , _ 2 punct _ _ +7 here here ADV RB PronType=Dem 1 advmod _ SpaceAfter=No +8 , , PUNCT , _ 1 punct _ _ +9 you you PRON PRP Case=Nom|Person=2|PronType=Prs 11 nsubj _ _ +10 can can AUX MD VerbForm=Fin 11 aux _ _ +11 come come VERB VB VerbForm=Inf 0 root _ _ +12 up up ADV RB _ 13 advmod _ _ +13 close close ADV RB Degree=Pos 11 advmod _ _ +14 with with ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 stars star NOUN NNS Number=Plur 11 obl _ _ +17 in in ADP IN _ 19 case _ _ +18 your you PRON PRP$ Person=2|Poss=Yes|PronType=Prs 19 nmod:poss _ _ +19 mind mind NOUN NN Number=Sing 11 obl _ SpaceAfter=No +20 . . PUNCT . _ 11 punct _ _ + +# sent_id = 67 +# text = He is my. +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 cop _ _ +3 my my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 68 +# text = She is my Goddess, ah. +1 She she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +3 my my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +4 Goddess Goddess NOUN NN Number=Sing 0 root _ SpaceAfter=No +5 , , PUNCT , _ 4 punct _ _ +6 ah ah INTJ UH _ 4 discourse _ SpaceAfter=No +7 . . PUNCT . _ 4 punct _ _ + +# sent_id = 69 +# text = Please stay with us on New World Travel. +1 Please please INTJ UH _ 2 discourse _ _ +2 stay stay VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +3 with with ADP IN _ 4 case _ _ +4 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 2 obl _ _ +5 on on ADP IN _ 8 case _ _ +6 New New PROPN NNP Number=Sing 7 compound _ _ +7 World World PROPN NNP Number=Sing 8 compound _ _ +8 Travel travel PROPN NNP Number=Sing 2 obl _ SpaceAfter=No +9 . . PUNCT . _ 2 punct _ _ + +# sent_id = 70 +# text = Hong Kong has always worn the crown of Hollywood of the East. +1 Hong Hong PROPN NNP Number=Sing 5 nsubj _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _ +4 always always ADV RB _ 5 advmod _ _ +5 worn wear VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 crown crown NOUN NN Number=Sing 5 obj _ _ +8 of of ADP IN _ 9 case _ _ +9 Hollywood Hollywood PROPN NNP Number=Sing 7 nmod _ _ +10 of of ADP IN _ 12 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 East East PROPN NNP Number=Sing 9 nmod _ SpaceAfter=No +13 . . PUNCT . _ 5 punct _ _ + +# sent_id = 71 +# text = Over the past 100 years of film history, Hong Kong cinema has nurtured many internationally renowned directors, actors, and screenwriters. +1 Over over ADP IN _ 5 case _ _ +2 the the DET DT Definite=Def|PronType=Art 5 det _ _ +3 past past ADJ JJ Degree=Pos 5 amod _ _ +4 100 100 NUM CD NumType=Card 5 nummod _ _ +5 years year NOUN NNS Number=Plur 14 obl _ _ +6 of of ADP IN _ 8 case _ _ +7 film film NOUN NN Number=Sing 8 compound _ _ +8 history history NOUN NN Number=Sing 5 nmod _ SpaceAfter=No +9 , , PUNCT , _ 14 punct _ _ +10 Hong Hong PROPN NNP Number=Sing 14 nsubj _ _ +11 Kong Kong PROPN NNP Number=Sing 12 compound _ _ +12 cinema cinema PROPN NNP Number=Sing 10 flat _ _ +13 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 aux _ _ +14 nurtured nurture VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +15 many many ADJ JJ Degree=Pos 18 amod _ _ +16 internationally internationally ADV RB _ 17 advmod _ _ +17 renowned renowne ADJ JJ Degree=Pos 18 amod _ _ +18 directors director NOUN NNS Number=Plur 14 obj _ SpaceAfter=No +19 , , PUNCT , _ 20 punct _ _ +20 actors actor NOUN NNS Number=Plur 18 conj _ SpaceAfter=No +21 , , PUNCT , _ 23 punct _ _ +22 and and CCONJ CC _ 23 cc _ _ +23 screenwriters screenwriter NOUN NNS Number=Plur 18 conj _ SpaceAfter=No +24 . . PUNCT . _ 14 punct _ _ + +# sent_id = 72 +# text = They have shortened the distance between Hong Kong and the world. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +2 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 shortened shortene VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 distance distance NOUN NN Number=Sing 3 obj _ _ +6 between between ADP IN _ 8 case _ _ +7 Hong Hong PROPN NNP Number=Sing 8 compound _ _ +8 Kong Kong PROPN NNP Number=Sing 5 nmod _ _ +9 and and CCONJ CC _ 11 cc _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 world world NOUN NN Number=Sing 8 conj _ SpaceAfter=No +12 . . PUNCT . _ 3 punct _ _ + +# sent_id = 73 +# text = Hong Kong movies have even become a window for the world to see Hong Kong, which have made the image of metropolitan Hong Kong more prominent internationally. +1 Hong Hong PROPN NNP Number=Sing 2 compound _ _ +2 Kong Kong PROPN NNP Number=Sing 3 compound _ _ +3 movies movie NOUN NNS Number=Plur 6 nsubj _ _ +4 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 even even ADV RB _ 6 advmod _ _ +6 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +7 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +8 window window NOUN NN Number=Sing 6 obj _ _ +9 for for ADP IN _ 11 case _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 world world NOUN NN Number=Sing 8 nmod _ _ +12 to to PART TO _ 13 mark _ _ +13 see see VERB VB VerbForm=Inf 8 acl _ _ +14 Hong Hong PROPN NNP Number=Sing 13 obj _ _ +15 Kong Kong PROPN NNP Number=Sing 14 flat _ SpaceAfter=No +16 , , PUNCT , _ 14 punct _ _ +17 which which PRON WDT PronType=Rel 19 nsubj _ _ +18 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 aux _ _ +19 made make VERB VBN Tense=Past|VerbForm=Part 14 acl:relcl _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 image image NOUN NN Number=Sing 19 obj _ _ +22 of of ADP IN _ 23 case _ _ +23 metropolitan metropolitan PROPN NNP Number=Sing 21 nmod _ _ +24 Hong Hong PROPN NNP Number=Sing 23 flat _ _ +25 Kong Kong PROPN NNP Number=Sing 23 flat _ _ +26 more more ADV RBR _ 27 advmod _ _ +27 prominent prominent ADJ JJ Degree=Pos 19 xcomp _ _ +28 internationally internationally ADV RB _ 27 advmod _ SpaceAfter=No +29 . . PUNCT . _ 6 punct _ _ + +# sent_id = 74 +# text = For this reason, in 2004, on the Waterfront Promenade originally constructed for viewing only the scenery of Hong Kong Island and Victoria Harbor, the Hong Kong Tourism Board also constructed the Avenue of Stars, memorializing Hong Kong's 100-year film history. +1 For for ADP IN _ 3 case _ _ +2 this this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 reason reason NOUN NN Number=Sing 13 obl _ SpaceAfter=No +4 , , PUNCT , _ 13 punct _ _ +5 in in ADP IN _ 6 case _ _ +6 2004 2004 NUM CD NumType=Card 13 obl _ SpaceAfter=No +7 , , PUNCT , _ 13 punct _ _ +8 on on ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 Waterfront waterfront PROPN NNP Number=Sing 13 obl _ _ +11 Promenade Promenade PROPN NNP Number=Sing 10 flat _ _ +12 originally originally ADV RB _ 13 advmod _ _ +13 constructed construct VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +14 for for SCONJ IN _ 15 mark _ _ +15 viewing view VERB VBG VerbForm=Ger 13 advcl _ _ +16 only only ADV RB _ 18 advmod _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 scenery scenery NOUN NN Number=Sing 15 obj _ _ +19 of of ADP IN _ 22 case _ _ +20 Hong Hong PROPN NNP Number=Sing 22 compound _ _ +21 Kong Kong PROPN NNP Number=Sing 22 compound _ _ +22 Island island PROPN NNP Number=Sing 18 nmod _ _ +23 and and CCONJ CC _ 24 cc _ _ +24 Victoria Victoria PROPN NNP Number=Sing 22 conj _ _ +25 Harbor Harbor PROPN NNP Number=Sing 24 flat _ SpaceAfter=No +26 , , PUNCT , _ 13 punct _ _ +27 the the DET DT Definite=Def|PronType=Art 31 det _ _ +28 Hong Hong PROPN NNP Number=Sing 30 compound _ _ +29 Kong Kong PROPN NNP Number=Sing 30 compound _ _ +30 Tourism tourism PROPN NNP Number=Sing 31 compound _ _ +31 Board Board PROPN NNP Number=Sing 13 appos _ _ +32 also also ADV RB _ 33 advmod _ _ +33 constructed constructe VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 parataxis _ _ +34 the the DET DT Definite=Def|PronType=Art 35 det _ _ +35 Avenue Avenue PROPN NNP Number=Sing 33 obj _ _ +36 of of ADP IN _ 37 case _ _ +37 Stars Stars PROPN NNPS Number=Plur 35 nmod _ SpaceAfter=No +38 , , PUNCT , _ 33 punct _ _ +39 memorializing memoriali VERB VBG VerbForm=Ger 33 advcl _ _ +40 Hong Hong PROPN NNP Number=Sing 47 nmod:poss _ _ +41 Kong Kong PROPN NNP Number=Sing 40 flat _ SpaceAfter=No +42 's 's PART POS _ 40 case _ _ +43 100 100 NUM CD NumType=Card 45 nummod _ SpaceAfter=No +44 - - PUNCT HYPH _ 45 punct _ SpaceAfter=No +45 year year NOUN NN Number=Sing 47 compound _ _ +46 film film NOUN NN Number=Sing 47 compound _ _ +47 history history NOUN NN Number=Sing 39 obj _ SpaceAfter=No +48 . . PUNCT . _ 13 punct _ _ + +# sent_id = 75 +# text = Here, tourists can learn about Hong Kong's film history, and can come up close with the stars in their mind. +1 Here here ADV RB PronType=Dem 5 advmod _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 tourists tourist NOUN NNS Number=Plur 5 nsubj _ _ +4 can can AUX MD VerbForm=Fin 5 aux _ _ +5 learn learn VERB VB VerbForm=Inf 0 root _ _ +6 about about ADP IN _ 11 case _ _ +7 Hong Hong PROPN NNP Number=Sing 11 nmod:poss _ _ +8 Kong Kong PROPN NNP Number=Sing 7 flat _ SpaceAfter=No +9 's 's PART POS _ 7 case _ _ +10 film film NOUN NN Number=Sing 11 compound _ _ +11 history history NOUN NN Number=Sing 5 obl _ SpaceAfter=No +12 , , PUNCT , _ 15 punct _ _ +13 and and CCONJ CC _ 15 cc _ _ +14 can can AUX MD VerbForm=Fin 15 aux _ _ +15 come come VERB VB VerbForm=Inf 5 conj _ _ +16 up up ADV RB _ 17 advmod _ _ +17 close close ADV RB Degree=Pos 15 advmod _ _ +18 with with ADP IN _ 20 case _ _ +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 stars star NOUN NNS Number=Plur 15 obl _ _ +21 in in ADP IN _ 23 case _ _ +22 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 23 nmod:poss _ _ +23 mind mind NOUN NN Number=Sing 20 nmod _ SpaceAfter=No +24 . . PUNCT . _ 5 punct _ _ + +# sent_id = 76 +# text = Hong Kong is a busy metropolis. +1 Hong Hong PROPN NNP Number=Sing 6 nsubj _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +5 busy busy ADJ JJ Degree=Pos 6 amod _ _ +6 metropolis metropolis NOUN NNS Number=Plur 0 root _ SpaceAfter=No +7 . . PUNCT . _ 6 punct _ _ + +# sent_id = 77 +# text = Even at dusk, the city's pulse never stops beating. +1 Even even ADV RB _ 3 advmod _ _ +2 at at ADP IN _ 3 case _ _ +3 dusk dusk NOUN NN Number=Sing 10 obl _ SpaceAfter=No +4 , , PUNCT , _ 10 punct _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 city city NOUN NN Number=Sing 8 nmod:poss _ SpaceAfter=No +7 's 's PART POS _ 6 case _ _ +8 pulse pulse NOUN NN Number=Sing 10 nsubj _ _ +9 never never ADV RB _ 10 advmod _ _ +10 stops stop VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +11 beating beat NOUN NN Number=Sing 10 obj _ SpaceAfter=No +12 . . PUNCT . _ 10 punct _ _ + +# sent_id = 78 +# text = Across from the Avenue of Stars, a special performance is staged every weekend. +1 Across across ADP IN _ 4 case _ _ +2 from from ADP IN _ 4 case _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 Avenue Avenue PROPN NNP Number=Sing 12 obl _ _ +5 of of ADP IN _ 6 case _ _ +6 Stars Stars PROPN NNPS Number=Plur 4 nmod _ SpaceAfter=No +7 , , PUNCT , _ 12 punct _ _ +8 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +9 special special ADJ JJ Degree=Pos 10 amod _ _ +10 performance performance NOUN NN Number=Sing 12 nsubj:pass _ _ +11 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 aux:pass _ _ +12 staged stage VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +13 every every DET DT _ 14 det _ _ +14 weekend weekend NOUN NN Number=Sing 12 obl:tmod _ SpaceAfter=No +15 . . PUNCT . _ 12 punct _ _ + +# sent_id = 79 +# text = %pw As our Victoria Harbor is %pw very famous, and, er, our nightscape is already very beautiful, by what means could we enhance the dynamic beauty of our nightscape? +1 %pw %pw ADV RB _ 8 advmod _ _ +2 As as SCONJ IN _ 8 mark _ _ +3 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 5 nmod:poss _ _ +4 Victoria Victoria PROPN NNP Number=Sing 5 compound _ _ +5 Harbor Harbor PROPN NNP Number=Sing 8 nsubj _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +7 % % SYM NN Number=Sing 8 compound _ SpaceAfter=No +8 pw pw NOUN NN Number=Sing 21 obl _ _ +9 very very ADV RB _ 10 advmod _ _ +10 famous famous ADJ JJ Degree=Pos 8 conj _ SpaceAfter=No +11 , , PUNCT , _ 14 punct _ _ +12 and and CCONJ CC _ 14 cc _ SpaceAfter=No +13 , , PUNCT , _ 14 punct _ _ +14 er er PROPN NNP Number=Sing 8 conj _ SpaceAfter=No +15 , , PUNCT , _ 21 punct _ _ +16 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 17 nmod:poss _ _ +17 nightscape nightscape NOUN NN Number=Sing 21 nsubj _ _ +18 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 21 cop _ _ +19 already already ADV RB _ 21 advmod _ _ +20 very very ADV RB _ 21 advmod _ _ +21 beautiful beautiful ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +22 , , PUNCT , _ 21 punct _ _ +23 by by SCONJ IN _ 25 mark _ _ +24 what what PRON WP PronType=Int 25 nsubj _ _ +25 means mean VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 21 advcl _ _ +26 could could AUX MD VerbForm=Fin 28 aux _ _ +27 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 28 nsubj _ _ +28 enhance enhance VERB VB VerbForm=Inf 25 ccomp _ _ +29 the the DET DT Definite=Def|PronType=Art 31 det _ _ +30 dynamic dynamic ADJ JJ Degree=Pos 31 amod _ _ +31 beauty beauty NOUN NN Number=Sing 28 obj _ _ +32 of of ADP IN _ 34 case _ _ +33 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 nightscape nightscape NOUN NN Number=Sing 31 nmod _ SpaceAfter=No +35 ? ? PUNCT . _ 21 punct _ _ + +# sent_id = 80 +# text = So, one idea was to transform Victoria Harbor into a performance stage. +1 So so ADV RB _ 5 advmod _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 one one NUM CD NumType=Card 4 nummod _ _ +4 idea idea NOUN NN Number=Sing 5 nsubj _ _ +5 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ +6 to to PART TO _ 7 mark _ _ +7 transform transform VERB VB VerbForm=Inf 5 xcomp _ _ +8 Victoria Victoria PROPN NNP Number=Sing 7 obj _ _ +9 Harbor Harbor PROPN NNP Number=Sing 8 flat _ _ +10 into into ADP IN _ 13 case _ _ +11 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +12 performance performance NOUN NN Number=Sing 13 compound _ _ +13 stage stage NOUN NN Number=Sing 7 obl _ SpaceAfter=No +14 . . PUNCT . _ 5 punct _ _ + +# sent_id = 81 +# text = Er, each key building is like a performer. +1 Er er INTJ UH _ 9 discourse _ SpaceAfter=No +2 , , PUNCT , _ 9 punct _ _ +3 each each DET DT _ 5 det _ _ +4 key key ADJ JJ Degree=Pos 5 amod _ _ +5 building building NOUN NN Number=Sing 9 nsubj _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ _ +7 like like ADP IN _ 9 case _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 performer performer NOUN NN Number=Sing 0 root _ SpaceAfter=No +10 . . PUNCT . _ 9 punct _ _ + +# sent_id = 82 +# text = It is based on this that music and lights are arranged to reflect each other and perform a unique, er, and fascinating multi-media world-class light show. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 nsubj:pass _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux:pass _ _ +3 based base VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +4 on on ADP IN _ 7 case _ _ +5 this this DET DT Number=Sing|PronType=Dem 7 det _ _ +6 that that DET DT Number=Sing|PronType=Dem 7 det _ _ +7 music music NOUN NN Number=Sing 3 obl _ _ +8 and and CCONJ CC _ 9 cc _ _ +9 lights light NOUN NNS Number=Plur 7 conj _ _ +10 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 aux:pass _ _ +11 arranged arrange VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 3 conj _ _ +12 to to PART TO _ 13 mark _ _ +13 reflect reflect VERB VB VerbForm=Inf 11 xcomp _ _ +14 each each DET DT _ 15 det _ _ +15 other other ADJ JJ Degree=Pos 13 obj _ _ +16 and and CCONJ CC _ 17 cc _ _ +17 perform perform VERB VB VerbForm=Inf 3 conj _ _ +18 a a DET DT Definite=Ind|PronType=Art 30 det _ _ +19 unique unique ADJ JJ Degree=Pos 30 amod _ SpaceAfter=No +20 , , PUNCT , _ 21 punct _ _ +21 er er PROPN NNP Number=Sing 30 conj _ SpaceAfter=No +22 , , PUNCT , _ 30 punct _ _ +23 and and CCONJ CC _ 30 cc _ _ +24 fascinating fascinating ADJ JJ Degree=Pos 30 amod _ _ +25 multi-media multi-media ADJ JJ Degree=Pos 30 amod _ _ +26 world world NOUN NN Number=Sing 28 compound _ SpaceAfter=No +27 - - PUNCT HYPH _ 28 punct _ SpaceAfter=No +28 class class NOUN NN Number=Sing 29 compound _ _ +29 light light NOUN NN Number=Sing 30 compound _ _ +30 show show NOUN NN Number=Sing 17 obj _ SpaceAfter=No +31 . . PUNCT . _ 3 punct _ _ + +# sent_id = 83 +# text = Let me now introduce to you all the well-known skyscrapers participating in this large-scale light and music show. +1 Let let VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +2 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 1 obj _ _ +3 now now ADV RB _ 4 advmod _ _ +4 introduce introduce VERB VB Mood=Imp|VerbForm=Fin 1 xcomp _ _ +5 to to ADP IN _ 6 case _ _ +6 you you PRON PRP Case=Acc|Person=2|PronType=Prs 4 obl _ _ +7 all all DET PDT _ 12 det:predet _ _ +8 the the DET DT Definite=Def|PronType=Art 12 det _ _ +9 well well ADV RB Degree=Pos 11 advmod _ SpaceAfter=No +10 - - PUNCT HYPH _ 11 punct _ SpaceAfter=No +11 known know VERB VBN Tense=Past|VerbForm=Part 12 amod _ _ +12 skyscrapers skyscraper NOUN NNS Number=Plur 4 obj _ _ +13 participating participating VERB VBG VerbForm=Ger 12 acl _ _ +14 in in ADP IN _ 19 case _ _ +15 this this DET DT Number=Sing|PronType=Dem 19 det _ _ +16 large large ADJ JJ Degree=Pos 18 amod _ SpaceAfter=No +17 - - PUNCT HYPH _ 18 punct _ SpaceAfter=No +18 scale scale NOUN NN Number=Sing 19 compound _ _ +19 light light NOUN NN Number=Sing 13 obl _ _ +20 and and CCONJ CC _ 22 cc _ _ +21 music music NOUN NN Number=Sing 22 compound _ _ +22 show show NOUN NN Number=Sing 19 conj _ SpaceAfter=No +23 . . PUNCT . _ 1 punct _ _ + +# sent_id = 84 +# text = The PLA Hong Kong Garrison Plaza, Bank of China Tower, at 8:00 every Saturday night, HSBC Main Building. +1 The the DET DT Definite=Def|PronType=Art 6 det _ _ +2 PLA PLA PROPN NNP Number=Sing 6 compound _ _ +3 Hong Hong PROPN NNP Number=Sing 4 compound _ _ +4 Kong Kong PROPN NNP Number=Sing 5 flat _ _ +5 Garrison garrison PROPN NNP Number=Sing 6 compound _ _ +6 Plaza Plaza PROPN NNP Number=Sing 7 flat _ SpaceAfter=No +7 , , PUNCT , _ 8 punct _ _ +8 Bank Bank PROPN NNP Number=Sing 0 root _ _ +9 of of ADP IN _ 11 case _ _ +10 China China PROPN NNP Number=Sing 11 compound _ _ +11 Tower Tower PROPN NNP Number=Sing 8 nmod _ SpaceAfter=No +12 , , PUNCT , _ 8 punct _ _ +13 at at ADP IN _ 14 case _ _ +14 8:00 8:00 NUM CD NumType=Card 8 nmod _ _ +15 every every DET DT _ 17 det _ _ +16 Saturday Saturday PROPN NNP Number=Sing 17 compound _ _ +17 night night NOUN NN Number=Sing 8 nmod:tmod _ SpaceAfter=No +18 , , PUNCT , _ 21 punct _ _ +19 HSBC HSBC PROPN NNP Number=Sing 21 compound _ _ +20 Main main PROPN NNP Number=Sing 21 compound _ _ +21 Building Building PROPN NNP Number=Sing 8 parataxis _ SpaceAfter=No +22 . . PUNCT . _ 8 punct _ _ + +# sent_id = 85 +# text = Their performances will be on schedule. +1 Their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 performances performance NOUN NNS Number=Plur 6 nsubj _ _ +3 will will AUX MD VerbForm=Fin 6 aux _ _ +4 be be AUX VB VerbForm=Inf 6 cop _ _ +5 on on ADP IN _ 6 case _ _ +6 schedule schedule NOUN NN Number=Sing 0 root _ SpaceAfter=No +7 . . PUNCT . _ 6 punct _ _ + +# sent_id = 86 +# text = Center of the East Central. +1 Center Center PROPN NNP Number=Sing 0 root _ _ +2 of of ADP IN _ 5 case _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 East East PROPN NNP Number=Sing 5 compound _ _ +5 Central Central PROPN NNP Number=Sing 1 nmod _ SpaceAfter=No +6 . . PUNCT . _ 1 punct _ _ + +# sent_id = 87 +# text = Ten landmark buildings located on Hong Kong Island reveal themselves one by one, participating in the show in full splendor, presenting a world-class light extravaganza to a musical rhythm. +1 Ten ten NUM CD NumType=Card 3 nummod _ _ +2 landmark landmark NOUN NN Number=Sing 3 compound _ _ +3 buildings building NOUN NNS Number=Plur 9 nsubj _ _ +4 located locate VERB VBN Tense=Past|VerbForm=Part 3 acl _ _ +5 on on ADP IN _ 8 case _ _ +6 Hong Hong PROPN NNP Number=Sing 8 compound _ _ +7 Kong Kong PROPN NNP Number=Sing 8 compound _ _ +8 Island island PROPN NNP Number=Sing 4 obl _ _ +9 reveal reveal VERB VB VerbForm=Inf 0 root _ _ +10 themselves themselves PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 9 obj _ _ +11 one one NUM CD NumType=Card 10 nummod _ _ +12 by by ADP IN _ 13 case _ _ +13 one one NUM CD NumType=Card 9 obl _ SpaceAfter=No +14 , , PUNCT , _ 9 punct _ _ +15 participating participate VERB VBG VerbForm=Ger 9 advcl _ _ +16 in in ADP IN _ 18 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 show show NOUN NN Number=Sing 15 obl _ _ +19 in in ADP IN _ 21 case _ _ +20 full full ADJ JJ Degree=Pos 21 amod _ _ +21 splendor splendor NOUN NN Number=Sing 15 obl _ SpaceAfter=No +22 , , PUNCT , _ 9 punct _ _ +23 presenting present VERB VBG VerbForm=Ger 9 advcl _ _ +24 a a DET DT Definite=Ind|PronType=Art 29 det _ _ +25 world world NOUN NN Number=Sing 27 compound _ SpaceAfter=No +26 - - PUNCT HYPH _ 27 punct _ SpaceAfter=No +27 class class NOUN NN Number=Sing 28 compound _ _ +28 light light NOUN NN Number=Sing 29 compound _ _ +29 extravaganza extravaganza NOUN NN Number=Sing 23 obj _ _ +30 to to ADP IN _ 33 case _ _ +31 a a DET DT Definite=Ind|PronType=Art 33 det _ _ +32 musical musical ADJ JJ Degree=Pos 33 amod _ _ +33 rhythm rhythm NOUN NN Number=Sing 23 obl _ SpaceAfter=No +34 . . PUNCT . _ 9 punct _ _ + +# sent_id = 88 +# text = Whenever there is a major event or holiday, fireworks are also added to the light show. +1 Whenever whenever ADV WRB PronType=Int 3 advmod _ _ +2 there there PRON EX _ 3 expl _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 advcl _ _ +4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +5 major major ADJ JJ Degree=Pos 6 amod _ _ +6 event event NOUN NN Number=Sing 3 nsubj _ _ +7 or or CCONJ CC _ 8 cc _ _ +8 holiday holiday NOUN NN Number=Sing 6 conj _ SpaceAfter=No +9 , , PUNCT , _ 13 punct _ _ +10 fireworks firework NOUN NNS Number=Plur 13 nsubj:pass _ _ +11 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 13 aux:pass _ _ +12 also also ADV RB _ 13 advmod _ _ +13 added add VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +14 to to ADP IN _ 17 case _ _ +15 the the DET DT Definite=Def|PronType=Art 17 det _ _ +16 light light NOUN NN Number=Sing 17 compound _ _ +17 show show NOUN NN Number=Sing 13 obl _ SpaceAfter=No +18 . . PUNCT . _ 13 punct _ _ + +# sent_id = 89 +# text = Some, er, cities have consulted with us. +1 Some some DET DT _ 7 nsubj _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 er er INTJ UH _ 7 discourse _ SpaceAfter=No +4 , , PUNCT , _ 7 punct _ _ +5 cities city NOUN NNS Number=Plur 7 nsubj _ _ +6 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 consulted consult VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 with with ADP IN _ 9 case _ _ +9 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 7 obl _ SpaceAfter=No +10 . . PUNCT . _ 7 punct _ _ + +# sent_id = 90 +# text = Uh-huh. +1 Uh uh INTJ UH _ 0 root _ SpaceAfter=No +2 - - PUNCT , _ 1 punct _ SpaceAfter=No +3 huh huh INTJ UH _ 1 discourse _ SpaceAfter=No +4 . . PUNCT . _ 1 punct _ _ + +# sent_id = 91 +# text = Their area of surprise was that those private, er, buildings, that is, the business community, ah, is willing to invest in our overall project. +1 Their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 area area NOUN NN Number=Sing 5 nsubj _ _ +3 of of ADP IN _ 4 case _ _ +4 surprise surprise NOUN NN Number=Sing 2 nmod _ _ +5 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ +6 that that SCONJ IN _ 12 mark _ _ +7 those those DET DT Number=Plur|PronType=Dem 8 det _ _ +8 private private ADJ JJ Degree=Pos 12 amod _ SpaceAfter=No +9 , , PUNCT , _ 12 punct _ _ +10 er er INTJ UH _ 12 discourse _ SpaceAfter=No +11 , , PUNCT , _ 12 punct _ _ +12 buildings building NOUN NNS Number=Plur 5 ccomp _ SpaceAfter=No +13 , , PUNCT , _ 15 punct _ _ +14 that that PRON DT Number=Sing|PronType=Dem 15 nsubj _ _ +15 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 parataxis _ SpaceAfter=No +16 , , PUNCT , _ 19 punct _ _ +17 the the DET DT Definite=Def|PronType=Art 19 det _ _ +18 business business NOUN NN Number=Sing 19 compound _ _ +19 community community NOUN NN Number=Sing 24 nsubj _ SpaceAfter=No +20 , , PUNCT , _ 24 punct _ _ +21 ah ah INTJ UH _ 24 discourse _ SpaceAfter=No +22 , , PUNCT , _ 24 punct _ _ +23 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 24 cop _ _ +24 willing willing ADJ JJ Degree=Pos 15 ccomp _ _ +25 to to PART TO _ 26 mark _ _ +26 invest invest VERB VB VerbForm=Inf 24 xcomp _ _ +27 in in ADP IN _ 30 case _ _ +28 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 30 nmod:poss _ _ +29 overall overall ADJ JJ Degree=Pos 30 amod _ _ +30 project project NOUN NN Number=Sing 26 obl _ SpaceAfter=No +31 . . PUNCT . _ 5 punct _ _ + +# sent_id = 92 +# text = Yes. +1 Yes yes INTJ UH _ 0 root _ SpaceAfter=No +2 . . PUNCT . _ 1 punct _ _ + +# sent_id = 93 +# text = The answer is that this is a reward to the entire society, not an individual building's reward. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 answer answer NOUN NN Number=Sing 3 nsubj _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 that that SCONJ IN _ 8 mark _ _ +5 this this PRON DT Number=Sing|PronType=Dem 8 nsubj _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +7 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +8 reward reward NOUN NN Number=Sing 3 ccomp _ _ +9 to to ADP IN _ 12 case _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 entire entire ADJ JJ Degree=Pos 12 amod _ _ +12 society society NOUN NN Number=Sing 8 nmod _ SpaceAfter=No +13 , , PUNCT , _ 17 punct _ _ +14 not not CCONJ CC _ 17 cc _ _ +15 an a DET DT Definite=Ind|PronType=Art 17 det _ _ +16 individual individual ADJ JJ Degree=Pos 17 amod _ _ +17 building building NOUN NN Number=Sing 3 conj _ SpaceAfter=No +18 's 's PART POS _ 19 mark _ _ +19 reward reward VERB VB VerbForm=Inf 17 acl _ SpaceAfter=No +20 . . PUNCT . _ 3 punct _ _ + +# sent_id = 94 +# text = Er, of course, after SARS, we felt that all of Hong Kong hopes to be involved, so that the Hong Kong tourism industry will recover, rebound together with other sectors. +1 Er er INTJ UH _ 10 discourse _ SpaceAfter=No +2 , , PUNCT , _ 10 punct _ _ +3 of of ADV RB _ 10 advmod _ _ +4 course course ADV RB _ 3 fixed _ SpaceAfter=No +5 , , PUNCT , _ 10 punct _ _ +6 after after ADP IN _ 7 case _ _ +7 SARS SARS PROPN NNP Number=Sing 10 obl _ SpaceAfter=No +8 , , PUNCT , _ 10 punct _ _ +9 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 10 nsubj _ _ +10 felt feel VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +11 that that SCONJ IN _ 16 mark _ _ +12 all all DET DT _ 15 det _ _ +13 of of ADP IN _ 14 case _ _ +14 Hong Hong PROPN NNP Number=Sing 12 nmod _ _ +15 Kong Kong PROPN NNP Number=Sing 16 nsubj _ _ +16 hopes hope VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 ccomp _ _ +17 to to PART TO _ 19 mark _ _ +18 be be AUX VB VerbForm=Inf 19 cop _ _ +19 involved involved ADJ JJ Degree=Pos 16 xcomp _ SpaceAfter=No +20 , , PUNCT , _ 10 punct _ _ +21 so so SCONJ IN _ 29 mark _ _ +22 that that SCONJ IN _ 21 fixed _ _ +23 the the DET DT Definite=Def|PronType=Art 27 det _ _ +24 Hong Hong PROPN NNP Number=Sing 25 compound _ _ +25 Kong Kong PROPN NNP Number=Sing 26 compound _ _ +26 tourism tourism NOUN NN Number=Sing 27 compound _ _ +27 industry industry NOUN NN Number=Sing 29 nsubj _ _ +28 will will AUX MD VerbForm=Fin 29 aux _ _ +29 recover recover VERB VB VerbForm=Inf 10 advcl _ SpaceAfter=No +30 , , PUNCT , _ 10 punct _ _ +31 rebound rebound ADV RB _ 32 advmod _ _ +32 together together ADV RB _ 10 advmod _ _ +33 with with ADP IN _ 35 case _ _ +34 other other ADJ JJ Degree=Pos 35 amod _ _ +35 sectors sector NOUN NNS Number=Plur 10 obl _ SpaceAfter=No +36 . . PUNCT . _ 10 punct _ _ + +# sent_id = 95 +# text = Hong Kong Wetland Park, which is currently under construction, is also one of the designated new projects of the Hong Kong SAR government for advancing the Hong Kong tourism industry. +1 Hong Hong PROPN NNP Number=Sing 3 compound _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 Wetland Wetland PROPN NNP Number=Sing 4 flat _ _ +4 Park Park PROPN NNP Number=Sing 14 nsubj _ SpaceAfter=No +5 , , PUNCT , _ 4 punct _ _ +6 which which PRON WDT PronType=Rel 10 nsubj _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _ +8 currently currently ADV RB _ 10 advmod _ _ +9 under under ADP IN _ 10 case _ _ +10 construction construction NOUN NN Number=Sing 4 acl:relcl _ SpaceAfter=No +11 , , PUNCT , _ 14 punct _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +13 also also ADV RB _ 14 advmod _ _ +14 one one NUM CD NumType=Card 0 root _ _ +15 of of ADP IN _ 19 case _ _ +16 the the DET DT Definite=Def|PronType=Art 19 det _ _ +17 designated designate VERB VBN Tense=Past|VerbForm=Part 19 amod _ _ +18 new new ADJ JJ Degree=Pos 19 amod _ _ +19 projects project NOUN NNS Number=Plur 14 nmod _ _ +20 of of ADP IN _ 25 case _ _ +21 the the DET DT Definite=Def|PronType=Art 25 det _ _ +22 Hong Hong PROPN NNP Number=Sing 24 compound _ _ +23 Kong Kong PROPN NNP Number=Sing 24 compound _ _ +24 SAR Sar PROPN NNP Number=Sing 25 flat _ _ +25 government government NOUN NN Number=Sing 19 nmod _ _ +26 for for SCONJ IN _ 27 mark _ _ +27 advancing advance VERB VBG VerbForm=Ger 19 acl _ _ +28 the the DET DT Definite=Def|PronType=Art 32 det _ _ +29 Hong Hong PROPN NNP Number=Sing 30 compound _ _ +30 Kong Kong PROPN NNP Number=Sing 32 compound _ _ +31 tourism tourism NOUN NN Number=Sing 32 compound _ _ +32 industry industry NOUN NN Number=Sing 27 obj _ SpaceAfter=No +33 . . PUNCT . _ 14 punct _ _ + +# sent_id = 96 +# text = This is a park intimately connected with nature, being built by the Hong Kong government for its people who live in a city of reinforced concrete. +1 This this PRON DT Number=Sing|PronType=Dem 4 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ +4 park park NOUN NN Number=Sing 0 root _ _ +5 intimately intimately ADV RB _ 6 advmod _ _ +6 connected connect VERB VBN Tense=Past|VerbForm=Part 4 acl _ _ +7 with with ADP IN _ 8 case _ _ +8 nature nature NOUN NN Number=Sing 6 obl _ SpaceAfter=No +9 , , PUNCT , _ 4 punct _ _ +10 being be AUX VBG VerbForm=Ger 11 aux:pass _ _ +11 built build VERB VBN Tense=Past|VerbForm=Part 4 acl _ _ +12 by by ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 Hong Hong PROPN NNP Number=Sing 15 compound _ _ +15 Kong Kong PROPN NNP Number=Sing 11 obl _ _ +16 government government NOUN NN Number=Sing 15 flat _ _ +17 for for ADP IN _ 19 case _ _ +18 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 19 nmod:poss _ _ +19 people people NOUN NNS Number=Plur 11 obl _ _ +20 who who PRON WP PronType=Rel 21 nsubj _ _ +21 live live VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 acl:relcl _ _ +22 in in ADP IN _ 24 case _ _ +23 a a DET DT Definite=Ind|PronType=Art 24 det _ _ +24 city city NOUN NN Number=Sing 21 obl _ _ +25 of of ADP IN _ 27 case _ _ +26 reinforced reinforce VERB VBN Tense=Past|VerbForm=Part 27 amod _ _ +27 concrete concrete NOUN NN Number=Sing 24 nmod _ SpaceAfter=No +28 . . PUNCT . _ 4 punct _ _ + +# sent_id = 97 +# text = Hong Kong Wetland Park covers an area of 61 hectares, including a 10,000 square meter visitor's center and a 60 hectare outdoor wildlife habitat. +1 Hong Hong PROPN NNP Number=Sing 4 compound _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 Wetland Wetland PROPN NNP Number=Sing 1 flat _ _ +4 Park Park PROPN NNP Number=Sing 5 flat _ _ +5 covers cover VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +6 an a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 area area NOUN NN Number=Sing 5 obj _ _ +8 of of ADP IN _ 10 case _ _ +9 61 61 NUM CD NumType=Card 10 nummod _ _ +10 hectares hectare NOUN NNS Number=Plur 7 nmod _ SpaceAfter=No +11 , , PUNCT , _ 10 punct _ _ +12 including include VERB VBG VerbForm=Ger 19 case _ _ +13 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +14 10,000 10,000 NUM CD NumType=Card 15 nummod _ _ +15 square square NOUN NN Number=Sing 16 compound _ _ +16 meter meter NOUN NN Number=Sing 17 compound _ _ +17 visitor visitor NOUN NN Number=Sing 19 nmod:poss _ SpaceAfter=No +18 's 's PART POS _ 17 case _ _ +19 center center NOUN NN Number=Sing 10 nmod _ _ +20 and and CCONJ CC _ 26 cc _ _ +21 a a DET DT Definite=Ind|PronType=Art 26 det _ _ +22 60 60 NUM CD NumType=Card 23 nummod _ _ +23 hectare hectare NOUN NN Number=Sing 26 compound _ _ +24 outdoor outdoor ADJ JJ Degree=Pos 26 amod _ _ +25 wildlife wildlife NOUN NN Number=Sing 26 compound _ _ +26 habitat habitat NOUN NN Number=Sing 19 conj _ SpaceAfter=No +27 . . PUNCT . _ 5 punct _ _ + +# sent_id = 98 +# text = In the indoor exhibition hall, tourists can learn about types of wetlands in various parts of the world, and to gain knowledge about wetlands. +1 In in ADP IN _ 5 case _ _ +2 the the DET DT Definite=Def|PronType=Art 5 det _ _ +3 indoor indoor ADJ JJ Degree=Pos 5 amod _ _ +4 exhibition exhibition NOUN NN Number=Sing 5 compound _ _ +5 hall hall NOUN NN Number=Sing 9 obl _ SpaceAfter=No +6 , , PUNCT , _ 9 punct _ _ +7 tourists tourist NOUN NNS Number=Plur 9 nsubj _ _ +8 can can AUX MD VerbForm=Fin 9 aux _ _ +9 learn learn VERB VB VerbForm=Inf 0 root _ _ +10 about about ADP IN _ 11 case _ _ +11 types type NOUN NNS Number=Plur 9 obl _ _ +12 of of ADP IN _ 13 case _ _ +13 wetlands wetland NOUN NNS Number=Plur 11 nmod _ _ +14 in in ADP IN _ 16 case _ _ +15 various various ADJ JJ Degree=Pos 16 amod _ _ +16 parts part NOUN NNS Number=Plur 13 nmod _ _ +17 of of ADP IN _ 19 case _ _ +18 the the DET DT Definite=Def|PronType=Art 19 det _ _ +19 world world NOUN NN Number=Sing 16 nmod _ SpaceAfter=No +20 , , PUNCT , _ 23 punct _ _ +21 and and CCONJ CC _ 23 cc _ _ +22 to to PART TO _ 23 mark _ _ +23 gain gain VERB VB VerbForm=Inf 9 conj _ _ +24 knowledge knowledge NOUN NN Number=Sing 23 obj _ _ +25 about about ADP IN _ 26 case _ _ +26 wetlands wetland NOUN NNS Number=Plur 24 nmod _ SpaceAfter=No +27 . . PUNCT . _ 9 punct _ _ + +# sent_id = 99 +# text = Outdoors, they can also personally experience wetland ecology., er, from the highest point we can see two different ecological environments. +1 Outdoors outdoors ADV RB _ 9 advmod _ SpaceAfter=No +2 , , PUNCT , _ 9 punct _ _ +3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 9 nsubj _ _ +4 can can AUX MD VerbForm=Fin 9 aux _ _ +5 also also ADV RB _ 9 advmod _ _ +6 personally personally ADV RB _ 9 advmod _ _ +7 experience experience NOUN NN Number=Sing 9 compound _ _ +8 wetland wetland NUM CD NumType=Card 9 nummod _ _ +9 ecology. ecology. NOUN NN Number=Sing 0 root _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 er er INTJ UH _ 9 discourse _ SpaceAfter=No +12 , , PUNCT , _ 9 punct _ _ +13 from from ADP IN _ 16 case _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 highest highest ADJ JJS Degree=Sup 16 amod _ _ +16 point point NOUN NN Number=Sing 19 obl _ _ +17 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 19 nsubj _ _ +18 can can AUX MD VerbForm=Fin 19 aux _ _ +19 see see VERB VB VerbForm=Inf 9 parataxis _ _ +20 two two NUM CD NumType=Card 23 nummod _ _ +21 different different ADJ JJ Degree=Pos 23 amod _ _ +22 ecological ecological ADJ JJ Degree=Pos 23 amod _ _ +23 environments environment NOUN NNS Number=Plur 19 obj _ SpaceAfter=No +24 . . PUNCT . _ 9 punct _ _ + +# sent_id = 100 +# text = Ha, on that side are many tall buildings, that is, towns with lots of people living there, but behind me is our Wetland Park. +1 Ha ha INTJ UH _ 9 discourse _ SpaceAfter=No +2 , , PUNCT , _ 9 punct _ _ +3 on on ADP IN _ 5 case _ _ +4 that that DET DT Number=Sing|PronType=Dem 5 det _ _ +5 side side NOUN NN Number=Sing 9 nsubj _ _ +6 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 cop _ _ +7 many many ADJ JJ Degree=Pos 9 amod _ _ +8 tall tall ADJ JJ Degree=Pos 9 amod _ _ +9 buildings building NOUN NNS Number=Plur 14 nsubj _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 that that PRON DT Number=Sing|PronType=Dem 12 nsubj _ _ +12 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 parataxis _ SpaceAfter=No +13 , , PUNCT , _ 12 punct _ _ +14 towns town VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +15 with with ADP IN _ 16 case _ _ +16 lots lot NOUN NNS Number=Plur 14 obl _ _ +17 of of ADP IN _ 18 case _ _ +18 people people NOUN NNS Number=Plur 16 nmod _ _ +19 living live VERB VBG VerbForm=Ger 18 acl _ _ +20 there there ADV RB PronType=Dem 19 advmod _ SpaceAfter=No +21 , , PUNCT , _ 28 punct _ _ +22 but but CCONJ CC _ 28 cc _ _ +23 behind behind ADP IN _ 24 case _ _ +24 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 28 obl _ _ +25 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 28 cop _ _ +26 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 28 nmod:poss _ _ +27 Wetland Wetland PROPN NNP Number=Sing 28 compound _ _ +28 Park park PROPN NNP Number=Sing 14 conj _ SpaceAfter=No +29 . . PUNCT . _ 14 punct _ _ + +# sent_id = 101 +# text = Ha, entirely different. +1 Ha ha INTJ UH _ 4 discourse _ SpaceAfter=No +2 , , PUNCT , _ 4 punct _ _ +3 entirely entirely ADV RB _ 4 advmod _ _ +4 different different ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +5 . . PUNCT . _ 4 punct _ _ + +# sent_id = 102 +# text = Quite primitive, er, a fresh water swamp, er, the Wetland Park Exploration Center. +1 Quite quite ADV RB _ 2 advmod _ _ +2 primitive primitive ADJ JJ Degree=Pos 4 amod _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 er er PROPN NNP Number=Sing 0 root _ SpaceAfter=No +5 , , PUNCT , _ 9 punct _ _ +6 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +7 fresh fresh ADJ JJ Degree=Pos 9 amod _ _ +8 water water NOUN NN Number=Sing 9 compound _ _ +9 swamp swamp NOUN NN Number=Sing 4 conj _ SpaceAfter=No +10 , , PUNCT , _ 11 punct _ _ +11 er er PROPN NNP Number=Sing 4 conj _ SpaceAfter=No +12 , , PUNCT , _ 17 punct _ _ +13 the the DET DT Definite=Def|PronType=Art 17 det _ _ +14 Wetland Wetland PROPN NNP Number=Sing 17 compound _ _ +15 Park Park PROPN NNP Number=Sing 17 compound _ _ +16 Exploration Exploration PROPN NNP Number=Sing 17 compound _ _ +17 Center Center PROPN NNP Number=Sing 4 conj _ SpaceAfter=No +18 . . PUNCT . _ 4 punct _ _ + +# sent_id = 103 +# text = Lastly, farthest away you can see Putian of Shenzhen. +1 Lastly Lastly ADV RB _ 7 advmod _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 farthest farthest ADJ JJS Degree=Sup 7 advmod _ _ +4 away away ADV RB _ 7 advmod _ _ +5 you you PRON PRP Case=Nom|Person=2|PronType=Prs 7 nsubj _ _ +6 can can AUX MD VerbForm=Fin 7 aux _ _ +7 see see VERB VB VerbForm=Inf 0 root _ _ +8 Putian Putian PROPN NNP Number=Sing 7 obj _ _ +9 of of ADP IN _ 10 case _ _ +10 Shenzhen Shenzhen PROPN NNP Number=Sing 8 nmod _ SpaceAfter=No +11 . . PUNCT . _ 7 punct _ _ + +# sent_id = 104 +# text = Then,, on the bridge is Hong Kong and outside is Shenzhen. +1 Then then ADV RB PronType=Dem 8 advmod _ SpaceAfter=No +2 , , PUNCT , _ 8 punct _ SpaceAfter=No +3 , , PUNCT , _ 8 punct _ _ +4 on on ADP IN _ 6 case _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 bridge bridge NOUN NN Number=Sing 8 obl _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +8 Hong Hong PROPN NNP Number=Sing 13 nsubj _ _ +9 Kong Kong PROPN NNP Number=Sing 8 flat _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 outside outside ADV RB _ 8 conj _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 cop _ _ +13 Shenzhen Shenzhen PROPN NNP Number=Sing 0 root _ SpaceAfter=No +14 . . PUNCT . _ 13 punct _ _ + +# sent_id = 105 +# text = You can come into intimate contact with nature in the outdoor wetland environment. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 come come VERB VB VerbForm=Inf 0 root _ _ +4 into into ADP IN _ 6 case _ _ +5 intimate intimate ADJ JJ Degree=Pos 6 amod _ _ +6 contact contact NOUN NN Number=Sing 3 obl _ _ +7 with with ADP IN _ 8 case _ _ +8 nature nature NOUN NN Number=Sing 6 nmod _ _ +9 in in ADP IN _ 13 case _ _ +10 the the DET DT Definite=Def|PronType=Art 13 det _ _ +11 outdoor outdoor ADJ JJ Degree=Pos 13 amod _ _ +12 wetland wetland NOUN NN Number=Sing 13 compound _ _ +13 environment environment NOUN NN Number=Sing 8 nmod _ SpaceAfter=No +14 . . PUNCT . _ 3 punct _ _ + +# sent_id = 106 +# text = Children can get to know different animals and plants, and even some crops that are rarely seen in our daily life. +1 Children child NOUN NNS Number=Plur 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 get get VERB VB VerbForm=Inf 0 root _ _ +4 to to PART TO _ 5 mark _ _ +5 know know VERB VB VerbForm=Inf 3 xcomp _ _ +6 different different ADJ JJ Degree=Pos 7 amod _ _ +7 animals animal NOUN NNS Number=Plur 5 obj _ _ +8 and and CCONJ CC _ 9 cc _ _ +9 plants plant NOUN NNS Number=Plur 7 conj _ SpaceAfter=No +10 , , PUNCT , _ 14 punct _ _ +11 and and CCONJ CC _ 14 cc _ _ +12 even even ADV RB _ 14 advmod _ _ +13 some some DET DT _ 14 det _ _ +14 crops crop NOUN NNS Number=Plur 3 conj _ _ +15 that that PRON WDT PronType=Rel 18 nsubj:pass _ _ +16 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 aux:pass _ _ +17 rarely rarely ADV RB _ 18 advmod _ _ +18 seen see VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 14 acl:relcl _ _ +19 in in ADP IN _ 22 case _ _ +20 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 22 nmod:poss _ _ +21 daily daily ADJ JJ Degree=Pos 22 amod _ _ +22 life life NOUN NN Number=Sing 18 obl _ SpaceAfter=No +23 . . PUNCT . _ 3 punct _ _ + +# sent_id = 107 +# text = Over here are paddy fields, which is rather unique. +1 Over over ADP IN _ 2 case _ _ +2 here here ADV RB PronType=Dem 5 obl _ _ +3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 cop _ _ +4 paddy paddy ADJ JJ Degree=Pos 5 amod _ _ +5 fields field NOUN NNS Number=Plur 0 root _ SpaceAfter=No +6 , , PUNCT , _ 5 punct _ _ +7 which which PRON WDT PronType=Rel 10 nsubj _ _ +8 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _ +9 rather rather ADV RB _ 10 advmod _ _ +10 unique unique ADJ JJ Degree=Pos 5 acl:relcl _ SpaceAfter=No +11 . . PUNCT . _ 5 punct _ _ + +# sent_id = 108 +# text = Ha, there are aquatic plants inside. +1 Ha ha INTJ UH _ 4 discourse _ SpaceAfter=No +2 , , PUNCT , _ 4 punct _ _ +3 there there PRON EX _ 4 expl _ _ +4 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +5 aquatic aquatic ADJ JJ Degree=Pos 6 amod _ _ +6 plants plant NOUN NNS Number=Plur 4 nsubj _ _ +7 inside inside ADV RB _ 4 advmod _ SpaceAfter=No +8 . . PUNCT . _ 4 punct _ _ + +# sent_id = 109 +# text = Ah, the most special is rice, because %pw many Hong Kong children nowadays have never seen what rice looks like. +1 Ah ah INTJ UH _ 7 discourse _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 most most ADV RBS _ 5 advmod _ _ +5 special special ADJ JJ Degree=Pos 7 nsubj _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 cop _ _ +7 rice rice NOUN NN Number=Sing 0 root _ SpaceAfter=No +8 , , PUNCT , _ 7 punct _ _ +9 because because SCONJ IN _ 18 mark _ _ +10 %pw %pw ADV RB _ 11 advmod _ _ +11 many many ADJ JJ Degree=Pos 14 amod _ _ +12 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +13 Kong Kong PROPN NNP Number=Sing 14 compound _ _ +14 children child NOUN NNS Number=Plur 18 nsubj _ _ +15 nowadays nowadays ADV RB _ 14 advmod _ _ +16 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 aux _ _ +17 never never ADV RB _ 18 advmod _ _ +18 seen see VERB VBN Tense=Past|VerbForm=Part 7 advcl _ _ +19 what what PRON WP PronType=Int 21 obj _ _ +20 rice rice NOUN NN Number=Sing 21 nsubj _ _ +21 looks look VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 18 ccomp _ _ +22 like like INTJ UH _ 21 discourse _ SpaceAfter=No +23 . . PUNCT . _ 7 punct _ _ + +# sent_id = 110 +# text = Look over there. +1 Look look VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +2 over over ADP IN _ 3 case _ _ +3 there there ADV RB PronType=Dem 1 obl _ SpaceAfter=No +4 . . PUNCT . _ 1 punct _ _ + +# sent_id = 111 +# text = They are going to be ripe soon. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +2 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 going go VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +4 to to PART TO _ 6 mark _ _ +5 be be AUX VB VerbForm=Inf 6 aux _ _ +6 ripe ripe VERB VB VerbForm=Inf 3 xcomp _ _ +7 soon soon ADV RB Degree=Pos 6 advmod _ SpaceAfter=No +8 . . PUNCT . _ 3 punct _ _ + +# sent_id = 112 +# text = The long one over there. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 long long ADJ JJ Degree=Pos 3 amod _ _ +3 one one NOUN NN Number=Sing 6 nsubj _ _ +4 over over ADP IN _ 5 case _ _ +5 there there ADV RB PronType=Dem 3 nmod _ SpaceAfter=No +6 . . PUNCT . _ 0 root _ _ + +# sent_id = 113 +# text = Oh. +1 Oh oh INTJ UH _ 0 root _ SpaceAfter=No +2 . . PUNCT . _ 1 punct _ _ + +# sent_id = 114 +# text = Yes., with ears, ah. +1 Yes. Yes. PROPN NNP Number=Sing 0 root _ SpaceAfter=No +2 , , PUNCT , _ 1 punct _ _ +3 with with ADP IN _ 4 case _ _ +4 ears ears NOUN NNS Number=Plur 1 nmod _ SpaceAfter=No +5 , , PUNCT , _ 1 punct _ _ +6 ah ah INTJ UH _ 1 discourse _ SpaceAfter=No +7 . . PUNCT . _ 1 punct _ _ + +# sent_id = 115 +# text = Where? +1 Where where ADV WRB PronType=Int 0 root _ SpaceAfter=No +2 ? ? PUNCT . _ 1 punct _ _ + +# sent_id = 116 +# text = Ah, here. +1 Ah ah INTJ UH _ 3 discourse _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 here here ADV RB PronType=Dem 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 117 +# text = Perhaps there will be an introduction so that children will know the names of the crops when they see them., let them get some understanding. +1 Perhaps perhaps ADV RB _ 4 advmod _ _ +2 there there PRON EX _ 4 expl _ _ +3 will will AUX MD VerbForm=Fin 4 aux _ _ +4 be be VERB VB VerbForm=Inf 0 root _ _ +5 an a DET DT Definite=Ind|PronType=Art 6 det _ _ +6 introduction introduction NOUN NN Number=Sing 4 nsubj _ _ +7 so so SCONJ IN _ 11 mark _ _ +8 that that SCONJ IN _ 7 fixed _ _ +9 children child NOUN NNS Number=Plur 11 nsubj _ _ +10 will will AUX MD VerbForm=Fin 11 aux _ _ +11 know know VERB VB VerbForm=Inf 4 advcl _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 names name NOUN NNS Number=Plur 11 obj _ _ +14 of of ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 crops crop NOUN NNS Number=Plur 13 nmod _ _ +17 when when ADV WRB PronType=Int 19 mark _ _ +18 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 19 nsubj _ _ +19 see see VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 advcl _ _ +20 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 19 obj _ SpaceAfter=No +21 . . PUNCT . _ 4 punct _ SpaceAfter=No +22 , , PUNCT , _ 23 punct _ _ +23 let let VERB VB Mood=Imp|VerbForm=Fin 4 parataxis _ _ +24 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 23 obj _ _ +25 get get VERB VB VerbForm=Inf 23 xcomp _ _ +26 some some DET DT _ 27 det _ _ +27 understanding understanding NOUN NN Number=Sing 25 obj _ SpaceAfter=No +28 . . PUNCT . _ 4 punct _ _ + +# sent_id = 118 +# text = Mai Po Marshes adjacent to Wetland Park is a major wildlife habitat within Asia. +1 Mai Mai PROPN NNP Number=Sing 3 compound _ _ +2 Po po PROPN NNP Number=Sing 1 flat _ _ +3 Marshes Marshes PROPN NNPS Number=Plur 4 flat _ _ +4 adjacent adjacent ADJ JJ Degree=Pos 12 amod _ _ +5 to to ADP IN _ 7 case _ _ +6 Wetland Wetland PROPN NNP Number=Sing 7 compound _ _ +7 Park Park PROPN NNP Number=Sing 4 obl _ _ +8 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 cop _ _ +9 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +10 major major ADJ JJ Degree=Pos 12 amod _ _ +11 wildlife wildlife NOUN NN Number=Sing 12 compound _ _ +12 habitat habitat NOUN NN Number=Sing 0 root _ _ +13 within within ADP IN _ 14 case _ _ +14 Asia Asia PROPN NNP Number=Sing 12 nmod _ SpaceAfter=No +15 . . PUNCT . _ 12 punct _ _ + +# sent_id = 119 +# text = Each year, over 50,000 migratory birds fly over Hong Kong's skyscrapers and choose to roost for winter here. +1 Each each DET DT _ 2 det _ _ +2 year year NOUN NN Number=Sing 8 obl:tmod _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 over over ADP IN _ 7 case _ _ +5 50,000 50,000 NUM CD NumType=Card 7 nummod _ _ +6 migratory migratory ADJ JJ Degree=Pos 7 amod _ _ +7 birds bird NOUN NNS Number=Plur 2 nmod _ _ +8 fly fly VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +9 over over ADP IN _ 13 case _ _ +10 Hong Hong PROPN NNP Number=Sing 11 compound _ _ +11 Kong Kong PROPN NNP Number=Sing 13 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 skyscrapers skyscraper NOUN NNS Number=Plur 8 obl _ _ +14 and and CCONJ CC _ 15 cc _ _ +15 choose choose VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 conj _ _ +16 to to PART TO _ 17 mark _ _ +17 roost roost VERB VB VerbForm=Inf 15 xcomp _ _ +18 for for ADP IN _ 19 case _ _ +19 winter winter NOUN NN Number=Sing 17 obl _ _ +20 here here ADV RB PronType=Dem 17 advmod _ SpaceAfter=No +21 . . PUNCT . _ 8 punct _ _ + +# sent_id = 120 +# text = As a result, three different types of aviaries were built in Hong Kong Wetland Park. +1 As as ADP IN _ 3 case _ _ +2 a a DET DT Definite=Ind|PronType=Art 3 det _ _ +3 result result NOUN NN Number=Sing 11 obl _ SpaceAfter=No +4 , , PUNCT , _ 11 punct _ _ +5 three three NUM CD NumType=Card 7 nummod _ _ +6 different different ADJ JJ Degree=Pos 7 amod _ _ +7 types type NOUN NNS Number=Plur 11 nsubj:pass _ _ +8 of of ADP IN _ 9 case _ _ +9 aviaries aviary NOUN NNS Number=Plur 7 nmod _ _ +10 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 aux:pass _ _ +11 built build VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +12 in in ADP IN _ 16 case _ _ +13 Hong Hong PROPN NNP Number=Sing 16 compound _ _ +14 Kong Kong PROPN NNP Number=Sing 16 compound _ _ +15 Wetland Wetland PROPN NNP Number=Sing 16 compound _ _ +16 Park park PROPN NNP Number=Sing 11 obl _ SpaceAfter=No +17 . . PUNCT . _ 11 punct _ _ + +# sent_id = 121 +# text = These have become the best spots to observe birds. +1 These these PRON DT Number=Plur|PronType=Dem 3 nsubj _ _ +2 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 best best ADJ JJS Degree=Sup 6 amod _ _ +6 spots spot NOUN NNS Number=Plur 3 obj _ _ +7 to to PART TO _ 8 mark _ _ +8 observe observe VERB VB VerbForm=Inf 6 acl _ _ +9 birds bird NOUN NNS Number=Plur 8 obj _ SpaceAfter=No +10 . . PUNCT . _ 3 punct _ _ + +# sent_id = 122 +# text = Among common birds, a rather special one is the black-faced spoonbill. +1 Among among ADP IN _ 3 case _ _ +2 common common ADJ JJ Degree=Pos 3 amod _ _ +3 birds bird NOUN NNS Number=Plur 14 obl _ SpaceAfter=No +4 , , PUNCT , _ 14 punct _ _ +5 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +6 rather rather ADV RB _ 7 advmod _ _ +7 special special ADJ JJ Degree=Pos 8 amod _ _ +8 one one NUM CD NumType=Card 14 nsubj _ _ +9 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +10 the the DET DT Definite=Def|PronType=Art 14 det _ _ +11 black black ADJ JJ Degree=Pos 13 amod _ SpaceAfter=No +12 - - PUNCT HYPH _ 13 punct _ SpaceAfter=No +13 faced faced ADJ JJ Degree=Pos 14 amod _ _ +14 spoonbill spoonbill NOUN NN Number=Sing 0 root _ SpaceAfter=No +15 . . PUNCT . _ 14 punct _ _ + +# sent_id = 123 +# text = It is an endangered bird species throughout the world. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +3 an a DET DT Definite=Ind|PronType=Art 6 det _ _ +4 endangered endangered ADJ JJ Degree=Pos 6 amod _ _ +5 bird bird NOUN NN Number=Sing 6 compound _ _ +6 species species NOUN NNS Number=Plur 0 root _ _ +7 throughout throughout ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 world world NOUN NN Number=Sing 6 nmod _ SpaceAfter=No +10 . . PUNCT . _ 6 punct _ _ + +# sent_id = 124 +# text = Uh-huh. +1 Uh uh INTJ UH _ 0 root _ SpaceAfter=No +2 - - PUNCT , _ 1 punct _ SpaceAfter=No +3 huh huh INTJ UH _ 1 discourse _ SpaceAfter=No +4 . . PUNCT . _ 1 punct _ _ + +# sent_id = 125 +# text = Ah, there are only about 1,500 in the world. +1 Ah ah INTJ UH _ 4 discourse _ SpaceAfter=No +2 , , PUNCT , _ 4 punct _ _ +3 there there PRON EX _ 4 expl _ _ +4 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +5 only only ADV RB _ 4 advmod _ _ +6 about about ADP IN _ 7 case _ _ +7 1,500 1,500 NUM CD NumType=Card 4 obl _ _ +8 in in ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 world world NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +11 . . PUNCT . _ 4 punct _ _ + +# sent_id = 126 +# text = Wow. +1 Wow wow INTJ UH _ 0 root _ SpaceAfter=No +2 . . PUNCT . _ 1 punct _ _ + +# sent_id = 127 +# text = Um, however, each year, about two to three hundred of them come to Hong Kong to spend the winter. +1 Um Um INTJ UH _ 6 discourse _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 however however ADV RB _ 6 advmod _ SpaceAfter=No +4 , , PUNCT , _ 6 punct _ _ +5 each each DET DT _ 6 det _ _ +6 year year NOUN NN Number=Sing 15 obl:tmod _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 about about ADP IN _ 9 case _ _ +9 two two NUM CD NumType=Card 6 nmod _ _ +10 to to ADP IN _ 12 case _ _ +11 three three NUM CD NumType=Card 12 compound _ _ +12 hundred hundred NUM CD NumType=Card 9 nmod _ _ +13 of of ADP IN _ 14 case _ _ +14 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 12 nmod _ _ +15 come come VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +16 to to ADP IN _ 17 case _ _ +17 Hong Hong PROPN NNP Number=Sing 15 obl _ _ +18 Kong Kong PROPN NNP Number=Sing 17 flat _ _ +19 to to PART TO _ 20 mark _ _ +20 spend spend VERB VB VerbForm=Inf 15 advcl _ _ +21 the the DET DT Definite=Def|PronType=Art 22 det _ _ +22 winter winter NOUN NN Number=Sing 20 obj _ SpaceAfter=No +23 . . PUNCT . _ 15 punct _ _ + +# sent_id = 128 +# text = Some of them, er, have stayed in Hong Kong Wetland Park. +1 Some some DET DT _ 8 nsubj _ _ +2 of of ADP IN _ 3 case _ _ +3 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 1 nmod _ SpaceAfter=No +4 , , PUNCT , _ 5 punct _ _ +5 er er PROPN NNP Number=Sing 1 appos _ SpaceAfter=No +6 , , PUNCT , _ 8 punct _ _ +7 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 aux _ _ +8 stayed stay VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +9 in in ADP IN _ 13 case _ _ +10 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +11 Kong Kong PROPN NNP Number=Sing 13 compound _ _ +12 Wetland Wetland PROPN NNP Number=Sing 13 compound _ _ +13 Park park PROPN NNP Number=Sing 8 obl _ SpaceAfter=No +14 . . PUNCT . _ 8 punct _ _ + +# sent_id = 129 +# text = Uh-huh. +1 Uh uh INTJ UH _ 0 root _ SpaceAfter=No +2 - - PUNCT , _ 1 punct _ SpaceAfter=No +3 huh huh INTJ UH _ 1 discourse _ SpaceAfter=No +4 . . PUNCT . _ 1 punct _ _ + +# sent_id = 130 +# text = So, our park's logo is unique, featuring this black-faced spoonbill, which hopefully can draw people's attention. +1 So so ADV RB _ 8 advmod _ SpaceAfter=No +2 , , PUNCT , _ 8 punct _ _ +3 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +4 park park NOUN NN Number=Sing 6 nmod:poss _ SpaceAfter=No +5 's 's PART POS _ 4 case _ _ +6 logo logo NOUN NN Number=Sing 8 nsubj _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +8 unique unique ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +9 , , PUNCT , _ 10 punct _ _ +10 featuring feature VERB VBG VerbForm=Ger 15 amod _ _ +11 this this PRON DT Number=Sing|PronType=Dem 10 obj _ _ +12 black black ADJ JJ Degree=Pos 14 amod _ SpaceAfter=No +13 - - PUNCT HYPH _ 14 punct _ SpaceAfter=No +14 faced faced ADJ JJ Degree=Pos 15 amod _ _ +15 spoonbill spoonbill NOUN NN Number=Sing 8 nsubj _ SpaceAfter=No +16 , , PUNCT , _ 15 punct _ _ +17 which which PRON WDT PronType=Rel 20 nsubj _ _ +18 hopefully hopefully ADV RB _ 20 advmod _ _ +19 can can AUX MD VerbForm=Fin 20 aux _ _ +20 draw draw VERB VB VerbForm=Inf 15 acl:relcl _ _ +21 people people NOUN NNS Number=Plur 23 nmod:poss _ SpaceAfter=No +22 's 's PART POS _ 21 case _ _ +23 attention attention NOUN NN Number=Sing 20 obj _ SpaceAfter=No +24 . . PUNCT . _ 8 punct _ _ + +# sent_id = 131 +# text = Uh-huh. +1 Uh uh INTJ UH _ 0 root _ SpaceAfter=No +2 - - PUNCT , _ 1 punct _ SpaceAfter=No +3 huh huh INTJ UH _ 1 discourse _ SpaceAfter=No +4 . . PUNCT . _ 1 punct _ _ + +# sent_id = 132 +# text = Wetland Park workers are now in the middle of intensive work. +1 Wetland Wetland PROPN NNP Number=Sing 3 compound _ _ +2 Park Park PROPN NNP Number=Sing 3 compound _ _ +3 workers worker NOUN NNS Number=Plur 8 nsubj _ _ +4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 cop _ _ +5 now now ADV RB _ 8 advmod _ _ +6 in in ADP IN _ 8 case _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 middle middle NOUN NN Number=Sing 0 root _ _ +9 of of ADP IN _ 11 case _ _ +10 intensive intensive ADJ JJ Degree=Pos 11 amod _ _ +11 work work NOUN NN Number=Sing 8 nmod _ SpaceAfter=No +12 . . PUNCT . _ 8 punct _ _ + +# sent_id = 133 +# text = They will complete the park's entire construction by the beginning of 2006, to be able to participate in the 2006 Discover Hong Kong Year campaign. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +2 will will AUX MD VerbForm=Fin 3 aux _ _ +3 complete complete VERB VB VerbForm=Inf 0 root _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 park park NOUN NN Number=Sing 8 nmod:poss _ SpaceAfter=No +6 's 's PART POS _ 5 case _ _ +7 entire entire ADJ JJ Degree=Pos 8 amod _ _ +8 construction construction NOUN NN Number=Sing 3 obj _ _ +9 by by ADP IN _ 11 case _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 beginning beginning NOUN NN Number=Sing 3 obl _ _ +12 of of ADP IN _ 13 case _ _ +13 2006 2006 NUM CD NumType=Card 11 nmod _ SpaceAfter=No +14 , , PUNCT , _ 3 punct _ _ +15 to to PART TO _ 17 mark _ _ +16 be be AUX VB VerbForm=Inf 17 cop _ _ +17 able able ADJ JJ Degree=Pos 3 advcl _ _ +18 to to PART TO _ 19 mark _ _ +19 participate participate VERB VB VerbForm=Inf 17 xcomp _ _ +20 in in ADP IN _ 27 case _ _ +21 the the DET DT Definite=Def|PronType=Art 27 det _ _ +22 2006 2006 NUM CD NumType=Card 23 nummod _ _ +23 Discover discover PROPN NNP Number=Sing 26 compound _ _ +24 Hong Hong PROPN NNP Number=Sing 26 compound _ _ +25 Kong Kong PROPN NNP Number=Sing 26 compound _ _ +26 Year year PROPN NNP Number=Sing 27 compound _ _ +27 campaign campaign NOUN NN Number=Sing 19 obl _ SpaceAfter=No +28 . . PUNCT . _ 3 punct _ _ + +# sent_id = 134 +# text = Ah, we have established the year 2006 as Discover Hong Kong Year. +1 Ah ah INTJ UH _ 5 discourse _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 5 nsubj _ _ +4 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 aux _ _ +5 established establish VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 year year NOUN NN Number=Sing 5 obl:tmod _ _ +8 2006 2006 NUM CD NumType=Card 7 nummod _ _ +9 as as ADP IN _ 13 case _ _ +10 Discover discover PROPN NNP Number=Sing 13 compound _ _ +11 Hong Hong PROPN NNP Number=Sing 13 compound _ _ +12 Kong Kong PROPN NNP Number=Sing 13 compound _ _ +13 Year year PROPN NNP Number=Sing 5 obl _ SpaceAfter=No +14 . . PUNCT . _ 5 punct _ _ + +# sent_id = 135 +# text = Why is that? +1 Why why ADV WRB PronType=Int 0 root _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 cop _ _ +3 that that PRON DT Number=Sing|PronType=Dem 1 nsubj _ SpaceAfter=No +4 ? ? PUNCT . _ 1 punct _ _ + +# sent_id = 136 +# text = Because, as everyone knows, our Disneyland will open in September of this year. +1 Because because SCONJ IN _ 10 mark _ SpaceAfter=No +2 , , PUNCT , _ 10 punct _ _ +3 as as SCONJ IN _ 5 mark _ _ +4 everyone everyone PRON NN Number=Sing 5 nsubj _ _ +5 knows know VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 advcl _ SpaceAfter=No +6 , , PUNCT , _ 10 punct _ _ +7 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 8 nmod:poss _ _ +8 Disneyland Disneyland PROPN NNP Number=Sing 10 nsubj _ _ +9 will will AUX MD VerbForm=Fin 10 aux _ _ +10 open open VERB VB VerbForm=Inf 0 root _ _ +11 in in ADP IN _ 12 case _ _ +12 September September PROPN NNP Number=Sing 10 obl _ _ +13 of of ADP IN _ 15 case _ _ +14 this this DET DT Number=Sing|PronType=Dem 15 det _ _ +15 year year NOUN NN Number=Sing 10 obl _ SpaceAfter=No +16 . . PUNCT . _ 10 punct _ _ + +# sent_id = 137 +# text = In addition, we will have Ngong Ping 360, that is, the cable car, er, to the Giant Buddha. +1 In in ADP IN _ 2 case _ _ +2 addition addition NOUN NN Number=Sing 6 obl _ SpaceAfter=No +3 , , PUNCT , _ 6 punct _ _ +4 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 6 nsubj _ _ +5 will will AUX MD VerbForm=Fin 6 aux _ _ +6 have have VERB VB VerbForm=Inf 0 root _ _ +7 Ngong Ngong PROPN NNP Number=Sing 8 compound _ _ +8 Ping Ping PROPN NNP Number=Sing 6 obj _ _ +9 360 360 NUM CD NumType=Card 8 nummod _ SpaceAfter=No +10 , , PUNCT , _ 16 punct _ _ +11 that that PRON DT Number=Sing|PronType=Dem 16 nsubj _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ SpaceAfter=No +13 , , PUNCT , _ 16 punct _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 cable cable ADJ JJ Degree=Pos 16 amod _ _ +16 car car NOUN NN Number=Sing 6 appos _ SpaceAfter=No +17 , , PUNCT , _ 16 punct _ _ +18 er er PROPN NNP Number=Sing 16 appos _ SpaceAfter=No +19 , , PUNCT , _ 16 punct _ _ +20 to to ADP IN _ 23 case _ _ +21 the the DET DT Definite=Def|PronType=Art 23 det _ _ +22 Giant giant PROPN NNP Number=Sing 23 compound _ _ +23 Buddha Buddha PROPN NNP Number=Sing 16 nmod _ SpaceAfter=No +24 . . PUNCT . _ 6 punct _ _ + +# sent_id = 138 +# text = They add to what we already have, like the Avenue of Stars, which is also very famous. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 2 nsubj _ _ +2 add add VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +3 to to SCONJ IN _ 4 case _ _ +4 what what PRON WP PronType=Int 2 obj _ _ +5 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 7 nsubj _ _ +6 already already ADV RB _ 7 advmod _ _ +7 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 acl:relcl _ SpaceAfter=No +8 , , PUNCT , _ 2 punct _ _ +9 like like ADP IN _ 11 case _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 Avenue Avenue PROPN NNP Number=Sing 2 obl _ _ +12 of of ADP IN _ 13 case _ _ +13 Stars Stars PROPN NNPS Number=Plur 11 nmod _ SpaceAfter=No +14 , , PUNCT , _ 2 punct _ _ +15 which which PRON WDT PronType=Rel 19 nsubj _ _ +16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _ +17 also also ADV RB _ 19 advmod _ _ +18 very very ADV RB _ 19 advmod _ _ +19 famous famous ADJ JJ Degree=Pos 2 acl:relcl _ SpaceAfter=No +20 . . PUNCT . _ 2 punct _ _ + +# sent_id = 139 +# text = Moreover, er, we are including our software. +1 Moreover moreover ADV RB _ 7 advmod _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 er er PROPN NNP Number=Sing 7 obl:tmod _ SpaceAfter=No +4 , , PUNCT , _ 7 punct _ _ +5 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 7 nsubj _ _ +6 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 including include VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +8 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 9 nmod:poss _ _ +9 software software NOUN NN Number=Sing 7 obj _ SpaceAfter=No +10 . . PUNCT . _ 7 punct _ _ + +# sent_id = 140 +# text = Hong Kong's software is very well known. +1 Hong Hong PROPN NNP Number=Sing 4 nmod:poss _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +3 's 's PART POS _ 1 case _ _ +4 software software NOUN NN Number=Sing 8 nsubj:pass _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux:pass _ _ +6 very very ADV RB _ 8 advmod _ _ +7 well well ADV RB Degree=Pos 8 advmod _ _ +8 known know VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +9 . . PUNCT . _ 8 punct _ _ + +# sent_id = 141 +# text = Like what's used in our Symphony of Lights. +1 Like like INTJ UH _ 4 discourse _ _ +2 what what PRON WP PronType=Int 4 nsubj:pass _ SpaceAfter=No +3 's be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux:pass _ _ +4 used use VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +5 in in ADP IN _ 7 case _ _ +6 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 7 nmod:poss _ _ +7 Symphony Symphony NOUN NN Number=Sing 4 obl _ _ +8 of of ADP IN _ 9 case _ _ +9 Lights Lights NOUN NNS Number=Plur 7 nmod _ SpaceAfter=No +10 . . PUNCT . _ 4 punct _ _ + +# sent_id = 142 +# text = We hope to use, er, a variety of hardware and software to package this entire 2006 Discover +1 We we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 2 nsubj _ _ +2 hope hope VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +3 to to PART TO _ 4 mark _ _ +4 use use VERB VB VerbForm=Inf 2 xcomp _ SpaceAfter=No +5 , , PUNCT , _ 6 punct _ _ +6 er er PROPN NNP Number=Sing 4 obj _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 variety variety NOUN NN Number=Sing 4 obj _ _ +10 of of ADP IN _ 11 case _ _ +11 hardware hardware NOUN NN Number=Sing 9 nmod _ _ +12 and and CCONJ CC _ 13 cc _ _ +13 software software NOUN NN Number=Sing 11 conj _ _ +14 to to PART TO _ 15 mark _ _ +15 package package VERB VB VerbForm=Inf 4 advcl _ _ +16 this this DET DT Number=Sing|PronType=Dem 19 det _ _ +17 entire entire ADJ JJ Degree=Pos 19 amod _ _ +18 2006 2006 NUM CD NumType=Card 19 nummod _ _ +19 Discover discover NOUN NN Number=Sing 15 obj _ _ + +# sent_id = 143 +# text = Hong Kong Year. +1 Hong Hong PROPN NNP Number=Sing 3 compound _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 Year Year PROPN NNP Number=Sing 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 144 +# text = Without planning it in advance, they chose to settle here. +1 Without without SCONJ IN _ 2 mark _ _ +2 planning plan VERB VBG VerbForm=Ger 8 advcl _ _ +3 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 obj _ _ +4 in in ADP IN _ 5 case _ _ +5 advance advance NOUN NN Number=Sing 2 obl _ SpaceAfter=No +6 , , PUNCT , _ 8 punct _ _ +7 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 8 nsubj _ _ +8 chose choose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +9 to to PART TO _ 10 mark _ _ +10 settle settle VERB VB VerbForm=Inf 8 xcomp _ _ +11 here here ADV RB PronType=Dem 10 advmod _ SpaceAfter=No +12 . . PUNCT . _ 8 punct _ _ + +# sent_id = 145 +# text = A dream that has been anticipated for more than twenty years will soon come true here. +1 A a DET DT Definite=Ind|PronType=Art 2 det _ _ +2 dream dream NOUN NN Number=Sing 14 nsubj _ _ +3 that that PRON WDT PronType=Rel 6 nsubj:pass _ _ +4 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 been be AUX VBN Tense=Past|VerbForm=Part 6 aux:pass _ _ +6 anticipated anticipate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 2 acl:relcl _ _ +7 for for ADP IN _ 11 case _ _ +8 more more ADJ JJR Degree=Cmp 10 advmod _ _ +9 than than ADP IN _ 8 fixed _ _ +10 twenty twenty NUM CD NumType=Card 11 nummod _ _ +11 years year NOUN NNS Number=Plur 6 obl _ _ +12 will will AUX MD VerbForm=Fin 14 aux _ _ +13 soon soon ADV RB Degree=Pos 14 advmod _ _ +14 come come VERB VB VerbForm=Inf 0 root _ _ +15 true true ADJ JJ Degree=Pos 14 xcomp _ _ +16 here here ADV RB PronType=Dem 15 advmod _ SpaceAfter=No +17 . . PUNCT . _ 14 punct _ _ + +# sent_id = 146 +# text = Because your line connects us with two-- In recent years, Hong Kong's tourist attractions have gradually moved from Hong Kong Island to Kowloon and the New Territory. +1 Because because SCONJ IN _ 4 mark _ _ +2 your you PRON PRP$ Person=2|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +3 line line NOUN NN Number=Sing 4 nsubj _ _ +4 connects connect VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 20 advcl _ _ +5 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 4 obj _ _ +6 with with ADP IN _ 7 case _ _ +7 two two NUM CD NumType=Card 4 obl _ SpaceAfter=No +8 -- -- PUNCT : _ 4 punct _ _ +9 In in ADP IN _ 11 case _ _ +10 recent recent ADJ JJ Degree=Pos 11 amod _ _ +11 years year NOUN NNS Number=Plur 4 obl _ SpaceAfter=No +12 , , PUNCT , _ 20 punct _ _ +13 Hong Hong PROPN NNP Number=Sing 17 nmod:poss _ _ +14 Kong Kong PROPN NNP Number=Sing 13 flat _ SpaceAfter=No +15 's 's PART POS _ 13 case _ _ +16 tourist tourist NOUN NN Number=Sing 17 compound _ _ +17 attractions attraction NOUN NNS Number=Plur 20 nsubj _ _ +18 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 20 aux _ _ +19 gradually gradually ADV RB _ 20 advmod _ _ +20 moved move VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +21 from from ADP IN _ 24 case _ _ +22 Hong Hong PROPN NNP Number=Sing 24 compound _ _ +23 Kong Kong PROPN NNP Number=Sing 24 compound _ _ +24 Island Island PROPN NNP Number=Sing 20 obl _ _ +25 to to ADP IN _ 26 case _ _ +26 Kowloon Kowloon PROPN NNP Number=Sing 20 obl _ _ +27 and and CCONJ CC _ 30 cc _ _ +28 the the DET DT Definite=Def|PronType=Art 30 det _ _ +29 New New PROPN NNP Number=Sing 30 compound _ _ +30 Territory territory PROPN NNP Number=Sing 26 conj _ SpaceAfter=No +31 . . PUNCT . _ 20 punct _ _ + +# sent_id = 147 +# text = Two out of the four new attractions participating in the 2006 Discover +1 Two two NUM CD NumType=Card 0 root _ _ +2 out out ADP IN _ 7 case _ _ +3 of of ADP IN _ 7 case _ _ +4 the the DET DT Definite=Def|PronType=Art 7 det _ _ +5 four four NUM CD NumType=Card 7 nummod _ _ +6 new new ADJ JJ Degree=Pos 7 amod _ _ +7 attractions attraction NOUN NNS Number=Plur 1 nmod _ _ +8 participating participate VERB VBG VerbForm=Ger 1 acl _ _ +9 in in ADP IN _ 12 case _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 2006 2006 NUM CD NumType=Card 12 nummod _ _ +12 Discover discover NOUN NN Number=Sing 8 obl _ _ + +# sent_id = 148 +# text = Hong Kong +1 Hong Hong PROPN NNP Number=Sing 0 root _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ + +# sent_id = 149 +# text = Year are located on Lantau Island of the New Territory. +1 Year year NOUN NN Number=Sing 3 nsubj:pass _ _ +2 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux:pass _ _ +3 located locate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +4 on on ADP IN _ 6 case _ _ +5 Lantau Lantau PROPN NNP Number=Sing 6 compound _ _ +6 Island Island PROPN NNP Number=Sing 3 obl _ _ +7 of of ADP IN _ 10 case _ _ +8 the the DET DT Definite=Def|PronType=Art 10 det _ _ +9 New New PROPN NNP Number=Sing 10 compound _ _ +10 Territory territory PROPN NNP Number=Sing 6 nmod _ SpaceAfter=No +11 . . PUNCT . _ 3 punct _ _ + +# sent_id = 150 +# text = For this reason, Lantau Island has become a new Hong Kong tourism popular spot. +1 For for ADP IN _ 3 case _ _ +2 this this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 reason reason NOUN NN Number=Sing 8 obl _ SpaceAfter=No +4 , , PUNCT , _ 8 punct _ _ +5 Lantau Lantau PROPN NNP Number=Sing 6 compound _ _ +6 Island island PROPN NNP Number=Sing 8 nsubj _ _ +7 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux _ _ +8 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +9 a a DET DT Definite=Ind|PronType=Art 15 det _ _ +10 new new ADJ JJ Degree=Pos 15 amod _ _ +11 Hong Hong PROPN NNP Number=Sing 12 compound _ _ +12 Kong Kong PROPN NNP Number=Sing 13 compound _ _ +13 tourism tourism NOUN NN Number=Sing 15 compound _ _ +14 popular popular ADJ JJ Degree=Pos 15 amod _ _ +15 spot spot NOUN NN Number=Sing 8 xcomp _ SpaceAfter=No +16 . . PUNCT . _ 8 punct _ _ + +# sent_id = 151 +# text = The earliest to settle here was this world's largest outdoor seated bronze Buddha. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 earliest earliest ADJ JJS Degree=Sup 14 nsubj _ _ +3 to to PART TO _ 4 mark _ _ +4 settle settle VERB VB VerbForm=Inf 2 acl _ _ +5 here here ADV RB PronType=Dem 4 advmod _ _ +6 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 14 cop _ _ +7 this this DET DT Number=Sing|PronType=Dem 8 det _ _ +8 world world NOUN NN Number=Sing 14 nmod:poss _ SpaceAfter=No +9 's 's PART POS _ 8 case _ _ +10 largest largest ADJ JJS Degree=Sup 14 amod _ _ +11 outdoor outdoor ADJ JJ Degree=Pos 14 amod _ _ +12 seated seat VERB VBN Tense=Past|VerbForm=Part 14 amod _ _ +13 bronze bronze NOUN NN Number=Sing 14 compound _ _ +14 Buddha Buddha PROPN NNP Number=Sing 0 root _ SpaceAfter=No +15 . . PUNCT . _ 14 punct _ _ + +# sent_id = 152 +# text = In Chinese Buddhism, there are five directions-east, west, south, north, and center-and five Buddhas. +1 In in ADP IN _ 3 case _ _ +2 Chinese chinese ADJ JJ Degree=Pos 3 amod _ _ +3 Buddhism Buddhism PROPN NNP Number=Sing 6 obl _ SpaceAfter=No +4 , , PUNCT , _ 6 punct _ _ +5 there there PRON EX _ 6 expl _ _ +6 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +7 five five NUM CD NumType=Card 8 nummod _ _ +8 directions direction NOUN NNS Number=Plur 13 obl:npmod _ SpaceAfter=No +9 -east -east ADV RB _ 13 advmod _ SpaceAfter=No +10 , , PUNCT , _ 13 punct _ _ +11 west west ADV RB _ 13 advmod _ SpaceAfter=No +12 , , PUNCT , _ 13 punct _ _ +13 south south ADV RB _ 6 advmod _ SpaceAfter=No +14 , , PUNCT , _ 15 punct _ _ +15 north north ADV RB _ 13 conj _ SpaceAfter=No +16 , , PUNCT , _ 18 punct _ _ +17 and and CCONJ CC _ 18 cc _ _ +18 center center NOUN NN Number=Sing 13 conj _ SpaceAfter=No +19 - - PUNCT HYPH _ 13 punct _ SpaceAfter=No +20 and and CCONJ CC _ 22 cc _ _ +21 five five NUM CD NumType=Card 22 nummod _ _ +22 Buddhas Buddhas NOUN NNS Number=Plur 6 conj _ SpaceAfter=No +23 . . PUNCT . _ 6 punct _ _ + +# sent_id = 153 +# text = Therefore, Hong Kong's Tian Tan Giant Buddha at the most southern tip of China, together with Lingshan Giant Buddha in the east, Leshan Giant Buddha in the west, Yungang Giant Buddha in the north, and Longmen Giant Buddha in the Central Plains, exist as the representative Buddhas for each of the five directions of China. +1 Therefore therefore ADV RB _ 9 advmod _ SpaceAfter=No +2 , , PUNCT , _ 9 punct _ _ +3 Hong Hong PROPN NNP Number=Sing 8 nmod:poss _ _ +4 Kong Kong PROPN NNP Number=Sing 3 flat _ SpaceAfter=No +5 's 's PART POS _ 3 case _ _ +6 Tian Tian PROPN NNP Number=Sing 8 compound _ _ +7 Tan Tan PROPN NNP Number=Sing 8 compound _ _ +8 Giant giant PROPN NNP Number=Sing 9 flat _ _ +9 Buddha Buddha PROPN NNP Number=Sing 50 nsubj _ _ +10 at at ADP IN _ 14 case _ _ +11 the the DET DT Definite=Def|PronType=Art 14 det _ _ +12 most most ADV RBS _ 13 advmod _ _ +13 southern southern ADJ JJ Degree=Pos 14 amod _ _ +14 tip tip NOUN NN Number=Sing 9 nmod _ _ +15 of of ADP IN _ 16 case _ _ +16 China China PROPN NNP Number=Sing 14 nmod _ SpaceAfter=No +17 , , PUNCT , _ 9 punct _ _ +18 together together ADV RB _ 9 advmod _ _ +19 with with ADP IN _ 22 case _ _ +20 Lingshan Lingshan PROPN NNP Number=Sing 22 compound _ _ +21 Giant giant PROPN NNP Number=Sing 22 compound _ _ +22 Buddha Buddha PROPN NNP Number=Sing 18 obl _ _ +23 in in ADP IN _ 25 case _ _ +24 the the DET DT Definite=Def|PronType=Art 25 det _ _ +25 east east NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +26 , , PUNCT , _ 9 punct _ _ +27 Leshan Leshan PROPN NNP Number=Sing 28 compound _ _ +28 Giant giant PROPN NNP Number=Sing 29 flat _ _ +29 Buddha Buddha PROPN NNP Number=Sing 9 appos _ _ +30 in in ADP IN _ 32 case _ _ +31 the the DET DT Definite=Def|PronType=Art 32 det _ _ +32 west west NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +33 , , PUNCT , _ 9 punct _ _ +34 Yungang Yungang PROPN NNP Number=Sing 35 compound _ _ +35 Giant giant PROPN NNP Number=Sing 36 flat _ _ +36 Buddha Buddha PROPN NNP Number=Sing 9 appos _ _ +37 in in ADP IN _ 39 case _ _ +38 the the DET DT Definite=Def|PronType=Art 39 det _ _ +39 north north NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +40 , , PUNCT , _ 44 punct _ _ +41 and and CCONJ CC _ 44 cc _ _ +42 Longmen Longmen PROPN NNP Number=Sing 43 compound _ _ +43 Giant giant PROPN NNP Number=Sing 44 compound _ _ +44 Buddha Buddha PROPN NNP Number=Sing 9 conj _ _ +45 in in ADP IN _ 48 case _ _ +46 the the DET DT Definite=Def|PronType=Art 48 det _ _ +47 Central Central PROPN NNP Number=Sing 48 compound _ _ +48 Plains Plains PROPN NNPS Number=Plur 44 nmod _ SpaceAfter=No +49 , , PUNCT , _ 50 punct _ _ +50 exist exist VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +51 as as ADP IN _ 54 case _ _ +52 the the DET DT Definite=Def|PronType=Art 54 det _ _ +53 representative representative ADJ JJ Degree=Pos 54 amod _ _ +54 Buddhas Buddhas NOUN NNS Number=Plur 50 obl _ _ +55 for for ADP IN _ 56 case _ _ +56 each each DET DT _ 54 nmod _ _ +57 of of ADP IN _ 60 case _ _ +58 the the DET DT Definite=Def|PronType=Art 60 det _ _ +59 five five NUM CD NumType=Card 60 nummod _ _ +60 directions direction NOUN NNS Number=Plur 56 nmod _ _ +61 of of ADP IN _ 62 case _ _ +62 China China PROPN NNP Number=Sing 60 nmod _ SpaceAfter=No +63 . . PUNCT . _ 50 punct _ _ + +# sent_id = 154 +# text = As a result, this place has become holy land in the hearts of male and female devotees. +1 As as ADP IN _ 3 case _ _ +2 a a DET DT Definite=Ind|PronType=Art 3 det _ _ +3 result result NOUN NN Number=Sing 8 obl _ SpaceAfter=No +4 , , PUNCT , _ 8 punct _ _ +5 this this DET DT Number=Sing|PronType=Dem 6 det _ _ +6 place place NOUN NN Number=Sing 8 nsubj _ _ +7 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux _ _ +8 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +9 holy holy ADJ JJ Degree=Pos 10 amod _ _ +10 land land NOUN NN Number=Sing 8 obj _ _ +11 in in ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 hearts heart NOUN NNS Number=Plur 10 nmod _ _ +14 of of ADP IN _ 15 case _ _ +15 male male NOUN NN Number=Sing 13 nmod _ _ +16 and and CCONJ CC _ 18 cc _ _ +17 female female ADJ JJ Degree=Pos 18 amod _ _ +18 devotees devotee NOUN NNS Number=Plur 15 conj _ SpaceAfter=No +19 . . PUNCT . _ 8 punct _ _ + +# sent_id = 155 +# text = However, to common tourists, more of what this place brings them is wonder and awe. +1 However however ADV RB _ 7 advmod _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 to to ADP IN _ 5 case _ _ +4 common common ADJ JJ Degree=Pos 5 amod _ _ +5 tourists tourist NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +6 , , PUNCT , _ 7 punct _ _ +7 more more ADJ JJR Degree=Cmp 0 root _ _ +8 of of SCONJ IN _ 9 case _ _ +9 what what PRON WP PronType=Int 7 obl _ _ +10 this this DET DT Number=Sing|PronType=Dem 11 det _ _ +11 place place NOUN NN Number=Sing 12 nsubj _ _ +12 brings bring VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 acl:relcl _ _ +13 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 15 nsubj _ _ +14 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 15 cop _ _ +15 wonder wonder ADJ JJR Degree=Cmp 12 ccomp _ _ +16 and and CCONJ CC _ 17 cc _ _ +17 awe awe PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 15 conj _ SpaceAfter=No +18 . . PUNCT . _ 7 punct _ _ + +# sent_id = 156 +# text = Since this giant bronze Buddha settled on Lantau Island, the world renowned Hong Kong International Airport at Chek Lap Kok and Disneyland have also been constructed here in succession. +1 Since since SCONJ IN _ 6 mark _ _ +2 this this DET DT Number=Sing|PronType=Dem 4 det _ _ +3 giant giant ADJ JJ Degree=Pos 4 amod _ _ +4 bronze bronze NOUN NN Number=Sing 5 compound _ _ +5 Buddha Buddha PROPN NNP Number=Sing 6 nsubj _ _ +6 settled settle VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 advcl _ _ +7 on on ADP IN _ 9 case _ _ +8 Lantau Lantau PROPN NNP Number=Sing 9 compound _ _ +9 Island Island PROPN NNP Number=Sing 6 obl _ SpaceAfter=No +10 , , PUNCT , _ 13 punct _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 world world NOUN NN Number=Sing 13 nsubj _ _ +13 renowned renowne VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +14 Hong Hong PROPN NNP Number=Sing 16 compound _ _ +15 Kong Kong PROPN NNP Number=Sing 16 compound _ _ +16 International International PROPN NNP Number=Sing 17 flat _ _ +17 Airport airport PROPN NNP Number=Sing 21 compound _ _ +18 at at ADP IN _ 20 case _ _ +19 Chek Chek PROPN NNP Number=Sing 20 compound _ _ +20 Lap lap PROPN NNP Number=Sing 21 compound _ _ +21 Kok Kok PROPN NNP Number=Sing 13 flat _ _ +22 and and CCONJ CC _ 23 cc _ _ +23 Disneyland Disneyland PROPN NNP Number=Sing 13 conj _ _ +24 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 27 aux _ _ +25 also also ADV RB _ 27 advmod _ _ +26 been be AUX VBN Tense=Past|VerbForm=Part 27 aux:pass _ _ +27 constructed constructe VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 13 conj _ _ +28 here here ADV RB PronType=Dem 27 advmod _ _ +29 in in ADP IN _ 30 case _ _ +30 succession succession NOUN NN Number=Sing 27 obl _ SpaceAfter=No +31 . . PUNCT . _ 13 punct _ _ + +# sent_id = 157 +# text = The important status of Lantau Island is increasingly apparent. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 important important ADJ JJ Degree=Pos 3 amod _ _ +3 status status NOUN NN Number=Sing 9 nsubj _ _ +4 of of ADP IN _ 6 case _ _ +5 Lantau Lantau PROPN NNP Number=Sing 6 compound _ _ +6 Island island PROPN NNP Number=Sing 3 nmod _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ _ +8 increasingly increasingly ADV RB _ 9 advmod _ _ +9 apparent apparent ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +10 . . PUNCT . _ 9 punct _ _ + +# sent_id = 158 +# text = No, it was totally inaccessible in the past. +1 No no INTJ UH _ 6 discourse _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ +5 totally totally ADV RB _ 6 advmod _ _ +6 inaccessible inaccessible ADJ JJ Degree=Pos 0 root _ _ +7 in in ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 past past NOUN NN Number=Sing 6 obl _ SpaceAfter=No +10 . . PUNCT . _ 6 punct _ _ + +# sent_id = 159 +# text = In the near future, construction will also begin on a cross-sea bridge connecting Hong Kong, Zhuhai, and Macao. +1 In in ADP IN _ 4 case _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 near near ADJ JJ Degree=Pos 4 amod _ _ +4 future future NOUN NN Number=Sing 9 obl _ SpaceAfter=No +5 , , PUNCT , _ 9 punct _ _ +6 construction construction NOUN NN Number=Sing 9 nsubj _ _ +7 will will AUX MD VerbForm=Fin 9 aux _ _ +8 also also ADV RB _ 9 advmod _ _ +9 begin begin VERB VB VerbForm=Inf 0 root _ _ +10 on on ADP IN _ 15 case _ _ +11 a a DET DT Definite=Ind|PronType=Art 15 det _ _ +12 cross cross NOUN NN Number=Sing 14 compound _ SpaceAfter=No +13 - - PUNCT HYPH _ 14 punct _ SpaceAfter=No +14 sea sea NOUN NN Number=Sing 15 compound _ _ +15 bridge bridge NOUN NN Number=Sing 9 obl _ _ +16 connecting connect VERB VBG VerbForm=Ger 15 acl _ _ +17 Hong Hong PROPN NNP Number=Sing 16 obj _ _ +18 Kong Kong PROPN NNP Number=Sing 17 flat _ SpaceAfter=No +19 , , PUNCT , _ 20 punct _ _ +20 Zhuhai Zhuhai PROPN NNP Number=Sing 17 conj _ SpaceAfter=No +21 , , PUNCT , _ 23 punct _ _ +22 and and CCONJ CC _ 23 cc _ _ +23 Macao Macao PROPN NNP Number=Sing 17 conj _ SpaceAfter=No +24 . . PUNCT . _ 9 punct _ _ + +# sent_id = 160 +# text = In 1992-- Could n't go in summer-- So, after their return, Macao, and Hong Kong, the two special administrative regions, are basically still using ships and helicopters to stay connected. +1 In in ADP IN _ 2 case _ _ +2 1992 1992 NUM CD NumType=Card 6 obl _ SpaceAfter=No +3 -- -- PUNCT , _ 6 punct _ _ +4 Could could AUX MD VerbForm=Fin 6 aux _ _ +5 n't not PART RB _ 6 advmod _ _ +6 go go VERB VB VerbForm=Inf 0 root _ _ +7 in in ADP IN _ 8 case _ _ +8 summer summer NOUN NN Number=Sing 6 obl _ SpaceAfter=No +9 -- -- PUNCT , _ 6 punct _ _ +10 So so ADV RB _ 6 advmod _ SpaceAfter=No +11 , , PUNCT , _ 6 punct _ _ +12 after after ADP IN _ 14 case _ _ +13 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 14 nmod:poss _ _ +14 return return NOUN NN Number=Sing 6 obl _ SpaceAfter=No +15 , , PUNCT , _ 16 punct _ _ +16 Macao Macao PROPN NNP Number=Sing 14 conj _ SpaceAfter=No +17 , , PUNCT , _ 19 punct _ _ +18 and and CCONJ CC _ 19 cc _ _ +19 Hong Hong PROPN NNP Number=Sing 14 conj _ _ +20 Kong Kong PROPN NNP Number=Sing 19 flat _ SpaceAfter=No +21 , , PUNCT , _ 6 punct _ _ +22 the the DET DT Definite=Def|PronType=Art 26 det _ _ +23 two two NUM CD NumType=Card 26 nummod _ _ +24 special special ADJ JJ Degree=Pos 26 amod _ _ +25 administrative administrative ADJ JJ Degree=Pos 26 amod _ _ +26 regions region NOUN NNS Number=Plur 6 obj _ SpaceAfter=No +27 , , PUNCT , _ 6 punct _ _ +28 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 31 aux _ _ +29 basically basically ADV RB _ 31 advmod _ _ +30 still still ADV RB _ 31 advmod _ _ +31 using use VERB VBG VerbForm=Ger 6 advcl _ _ +32 ships ship NOUN NNS Number=Plur 31 obj _ _ +33 and and CCONJ CC _ 34 cc _ _ +34 helicopters helicopter NOUN NNS Number=Plur 32 conj _ _ +35 to to PART TO _ 36 mark _ _ +36 stay stay VERB VB VerbForm=Inf 31 xcomp _ _ +37 connected connect VERB VBN Tense=Past|VerbForm=Part 36 xcomp _ SpaceAfter=No +38 . . PUNCT . _ 6 punct _ _ + +# sent_id = 161 +# text = It's extremely troublesome to get there via land. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ SpaceAfter=No +2 's be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +3 extremely extremely ADV RB _ 4 advmod _ _ +4 troublesome troublesome ADJ JJ Degree=Pos 0 root _ _ +5 to to PART TO _ 6 mark _ _ +6 get get VERB VB VerbForm=Inf 4 csubj _ _ +7 there there ADV RB PronType=Dem 6 advmod _ _ +8 via via ADP IN _ 9 case _ _ +9 land land NOUN NN Number=Sing 6 obl _ SpaceAfter=No +10 . . PUNCT . _ 4 punct _ _ + +# sent_id = 162 +# text = One has to go up to Shenzhen, Dongguan, then go through Panyu, keep going up, to Zhongshan, and certainly go to Zhuhai, then pass through Zhuhai to get to Macao. +1 One one PRON PRP _ 2 nsubj _ _ +2 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 to to PART TO _ 4 mark _ _ +4 go go VERB VB VerbForm=Inf 2 xcomp _ _ +5 up up ADP IN _ 4 compound:prt _ _ +6 to to ADP IN _ 7 case _ _ +7 Shenzhen Shenzhen PROPN NNP Number=Sing 4 obl _ SpaceAfter=No +8 , , PUNCT , _ 9 punct _ _ +9 Dongguan Dongguan PROPN NNP Number=Sing 7 conj _ SpaceAfter=No +10 , , PUNCT , _ 2 punct _ _ +11 then then ADV RB PronType=Dem 12 advmod _ _ +12 go go VERB VB VerbForm=Inf 2 conj _ _ +13 through through ADP IN _ 14 case _ _ +14 Panyu Panyu PROPN NNP Number=Sing 12 obl _ SpaceAfter=No +15 , , PUNCT , _ 16 punct _ _ +16 keep keep VERB VB VerbForm=Inf 2 conj _ _ +17 going go VERB VBG VerbForm=Ger 16 xcomp _ _ +18 up up ADV RB _ 17 advmod _ SpaceAfter=No +19 , , PUNCT , _ 2 punct _ _ +20 to to ADP IN _ 21 case _ _ +21 Zhongshan Zhongshan PROPN NNP Number=Sing 2 obl _ SpaceAfter=No +22 , , PUNCT , _ 25 punct _ _ +23 and and CCONJ CC _ 25 cc _ _ +24 certainly certainly ADV RB _ 25 advmod _ _ +25 go go VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 conj _ _ +26 to to ADP IN _ 27 case _ _ +27 Zhuhai Zhuhai PROPN NNP Number=Sing 25 obl _ SpaceAfter=No +28 , , PUNCT , _ 2 punct _ _ +29 then then ADV RB PronType=Dem 30 advmod _ _ +30 pass pass VERB VB VerbForm=Inf 2 parataxis _ _ +31 through through ADP IN _ 32 case _ _ +32 Zhuhai Zhuhai PROPN NNP Number=Sing 30 obl _ _ +33 to to PART TO _ 34 mark _ _ +34 get get VERB VB VerbForm=Inf 30 advcl _ _ +35 to to ADP IN _ 36 case _ _ +36 Macao Macao PROPN NNP Number=Sing 34 obl _ SpaceAfter=No +37 . . PUNCT . _ 2 punct _ _ + +# sent_id = 163 +# text = For a Hong Kong person choosing to go there via land, it's extremely inconvenient. +1 For for ADP IN _ 5 case _ _ +2 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +3 Hong Hong PROPN NNP Number=Sing 4 compound _ _ +4 Kong Kong PROPN NNP Number=Sing 5 compound _ _ +5 person person NOUN NN Number=Sing 16 obl _ _ +6 choosing choose VERB VBG VerbForm=Ger 5 acl _ _ +7 to to PART TO _ 8 mark _ _ +8 go go VERB VB VerbForm=Inf 6 xcomp _ _ +9 there there ADV RB PronType=Dem 8 advmod _ _ +10 via via ADP IN _ 11 case _ _ +11 land land NOUN NN Number=Sing 8 obl _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 nsubj _ SpaceAfter=No +14 's be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ _ +15 extremely extremely ADV RB _ 16 advmod _ _ +16 inconvenient inconvenient ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +17 . . PUNCT . _ 16 punct _ _ + +# sent_id = 164 +# text = A full twenty years ago, Hopewell Holdings Group Chairman Wu Ying-sheung, a well-known construction tycoon, boldly made a cross-sea bridge proposal. +1 A a DET DT Definite=Ind|PronType=Art 4 det _ _ +2 full full ADJ JJ Degree=Pos 4 amod _ _ +3 twenty twenty NUM CD NumType=Card 4 nummod _ _ +4 years year NOUN NNS Number=Plur 5 obl:npmod _ _ +5 ago ago ADV RB _ 14 advmod _ SpaceAfter=No +6 , , PUNCT , _ 14 punct _ _ +7 Hopewell Hopewell PROPN NNP Number=Sing 9 compound _ _ +8 Holdings Holdings PROPN NNP Number=Sing 9 compound _ _ +9 Group Group PROPN NNP Number=Sing 10 flat _ _ +10 Chairman Chairman PROPN NNP Number=Sing 14 compound _ _ +11 Wu Wu PROPN NNP Number=Sing 10 flat _ _ +12 Ying Y PROPN NNP Number=Sing 14 compound _ SpaceAfter=No +13 - - PUNCT , _ 14 punct _ SpaceAfter=No +14 sheung sheing NOUN NN Number=Sing 24 nsubj _ SpaceAfter=No +15 , , PUNCT , _ 14 punct _ _ +16 a a DET DT Definite=Ind|PronType=Art 21 det _ _ +17 well well ADV RB Degree=Pos 19 advmod _ SpaceAfter=No +18 - - PUNCT HYPH _ 19 punct _ SpaceAfter=No +19 known know VERB VBN Tense=Past|VerbForm=Part 21 amod _ _ +20 construction construction NOUN NN Number=Sing 21 compound _ _ +21 tycoon tycoon NOUN NN Number=Sing 14 appos _ SpaceAfter=No +22 , , PUNCT , _ 21 punct _ _ +23 boldly boldly ADV RB _ 24 advmod _ _ +24 made make VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +25 a a DET DT Definite=Ind|PronType=Art 30 det _ _ +26 cross cross NOUN NN Number=Sing 28 compound _ SpaceAfter=No +27 - - PUNCT HYPH _ 28 punct _ SpaceAfter=No +28 sea sea NOUN NN Number=Sing 30 compound _ _ +29 bridge bridge NOUN NN Number=Sing 30 compound _ _ +30 proposal proposal NOUN NN Number=Sing 24 obj _ SpaceAfter=No +31 . . PUNCT . _ 24 punct _ _ + +# sent_id = 165 +# text = With this bridge, the distance would be very small, only a little over one kilometer. +1 With with ADP IN _ 3 case _ _ +2 this this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 bridge bridge NOUN NN Number=Sing 10 obl _ SpaceAfter=No +4 , , PUNCT , _ 10 punct _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 distance distance NOUN NN Number=Sing 10 nsubj _ _ +7 would would AUX MD VerbForm=Fin 10 aux _ _ +8 be be AUX VB VerbForm=Inf 10 cop _ _ +9 very very ADV RB _ 10 advmod _ _ +10 small small ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +11 , , PUNCT , _ 10 punct _ _ +12 only only ADV RB _ 17 advmod _ _ +13 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +14 little little ADJ JJ Degree=Pos 17 amod _ _ +15 over over X AFX _ 16 advmod _ _ +16 one one NUM CD NumType=Card 17 nummod _ _ +17 kilometer kilometer NOUN NN Number=Sing 10 parataxis _ SpaceAfter=No +18 . . PUNCT . _ 10 punct _ _ + +# sent_id = 166 +# text = However, due to various reasons, bridge construction was put off. +1 However however ADV RB _ 11 advmod _ SpaceAfter=No +2 , , PUNCT , _ 11 punct _ _ +3 due due ADP IN _ 6 case _ _ +4 to to ADP IN _ 3 fixed _ _ +5 various various ADJ JJ Degree=Pos 6 amod _ _ +6 reasons reason NOUN NNS Number=Plur 11 obl _ SpaceAfter=No +7 , , PUNCT , _ 11 punct _ _ +8 bridge bridge NOUN NN Number=Sing 9 compound _ _ +9 construction construction NOUN NN Number=Sing 11 nsubj:pass _ _ +10 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 11 aux:pass _ _ +11 put put VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +12 off off ADP RP _ 11 compound:prt _ SpaceAfter=No +13 . . PUNCT . _ 11 punct _ _ + +# sent_id = 167 +# text = This is what we have seen since 1999. +1 This this PRON DT Number=Sing|PronType=Dem 2 nsubj _ _ +2 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 what what PRON WP PronType=Int 6 obj _ _ +4 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 6 nsubj _ _ +5 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 aux _ _ +6 seen see VERB VBN Tense=Past|VerbForm=Part 2 ccomp _ _ +7 since since ADP IN _ 8 case _ _ +8 1999 1999 NUM CD NumType=Card 6 obl _ SpaceAfter=No +9 . . PUNCT . _ 2 punct _ _ + +# sent_id = 168 +# text = Anticipated for 20 years, today this dream is finally coming true. +1 Anticipated anticipate VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +2 for for ADP IN _ 4 case _ _ +3 20 20 NUM CD NumType=Card 4 nummod _ _ +4 years year NOUN NNS Number=Plur 1 obl _ SpaceAfter=No +5 , , PUNCT , _ 1 punct _ _ +6 today today NOUN NN Number=Sing 1 obl:tmod _ _ +7 this this DET DT Number=Sing|PronType=Dem 8 det _ _ +8 dream dream NOUN NN Number=Sing 11 nsubj _ _ +9 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 aux _ _ +10 finally finally ADV RB _ 11 advmod _ _ +11 coming come VERB VBG Tense=Pres|VerbForm=Part 1 ccomp _ _ +12 true true ADJ JJ Degree=Pos 11 xcomp _ SpaceAfter=No +13 . . PUNCT . _ 1 punct _ _ + +# sent_id = 169 +# text = Well, originally the construction of the new-- With this new Hong Kong-Zhuhai-Macao bridge that basically leads to all three places, Hong Kong, Macao, and Zhuhai, basically, at the start of the bridge, you can get on the separate road to the place you want to go. +1 Well well INTJ UH _ 5 discourse _ SpaceAfter=No +2 , , PUNCT , _ 5 punct _ _ +3 originally originally ADV RB _ 5 advmod _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 construction construction NOUN NN Number=Sing 0 root _ _ +6 of of ADP IN _ 8 case _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 new new ADJ JJ Degree=Pos 5 nmod _ SpaceAfter=No +9 -- -- PUNCT , _ 5 punct _ _ +10 With with ADP IN _ 19 case _ _ +11 this this DET DT Number=Sing|PronType=Dem 19 det _ _ +12 new new ADJ JJ Degree=Pos 19 amod _ _ +13 Hong Hong PROPN NNP Number=Sing 18 compound _ _ +14 Kong Kong PROPN NNP Number=Sing 18 compound _ SpaceAfter=No +15 - - PUNCT HYPH _ 18 punct _ SpaceAfter=No +16 Zhuhai Zhuhai PROPN NNP Number=Sing 18 compound _ SpaceAfter=No +17 - - PUNCT HYPH _ 18 punct _ SpaceAfter=No +18 Macao Macao PROPN NNP Number=Sing 19 compound _ _ +19 bridge bridge NOUN NN Number=Sing 5 nmod _ _ +20 that that PRON WDT PronType=Rel 22 nsubj _ _ +21 basically basically ADV RB _ 22 advmod _ _ +22 leads lead VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 acl:relcl _ _ +23 to to ADP IN _ 26 case _ _ +24 all all DET DT _ 26 det _ _ +25 three three NUM CD NumType=Card 26 nummod _ _ +26 places place NOUN NNS Number=Plur 22 obl _ SpaceAfter=No +27 , , PUNCT , _ 28 punct _ _ +28 Hong Hong PROPN NNP Number=Sing 26 conj _ _ +29 Kong Kong PROPN NNP Number=Sing 28 flat _ SpaceAfter=No +30 , , PUNCT , _ 31 punct _ _ +31 Macao Macao PROPN NNP Number=Sing 26 conj _ SpaceAfter=No +32 , , PUNCT , _ 34 punct _ _ +33 and and CCONJ CC _ 34 cc _ _ +34 Zhuhai Zhuhai PROPN NNP Number=Sing 5 conj _ SpaceAfter=No +35 , , PUNCT , _ 5 punct _ _ +36 basically basically ADV RB _ 5 advmod _ SpaceAfter=No +37 , , PUNCT , _ 5 punct _ _ +38 at at ADP IN _ 40 case _ _ +39 the the DET DT Definite=Def|PronType=Art 40 det _ _ +40 start start NOUN NN Number=Sing 5 nmod _ _ +41 of of ADP IN _ 43 case _ _ +42 the the DET DT Definite=Def|PronType=Art 43 det _ _ +43 bridge bridge NOUN NN Number=Sing 40 nmod _ SpaceAfter=No +44 , , PUNCT , _ 5 punct _ _ +45 you you PRON PRP Case=Nom|Person=2|PronType=Prs 47 nsubj _ _ +46 can can AUX MD VerbForm=Fin 47 aux _ _ +47 get get VERB VB VerbForm=Inf 5 parataxis _ _ +48 on on ADP IN _ 51 case _ _ +49 the the DET DT Definite=Def|PronType=Art 51 det _ _ +50 separate separate ADJ JJ Degree=Pos 51 amod _ _ +51 road road NOUN NN Number=Sing 47 obl _ _ +52 to to ADP IN _ 54 case _ _ +53 the the DET DT Definite=Def|PronType=Art 54 det _ _ +54 place place NOUN NN Number=Sing 47 obl _ _ +55 you you PRON PRP Case=Nom|Person=2|PronType=Prs 56 nsubj _ _ +56 want want VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 54 acl:relcl _ _ +57 to to PART TO _ 58 mark _ _ +58 go go VERB VB VerbForm=Inf 56 xcomp _ SpaceAfter=No +59 . . PUNCT . _ 5 punct _ _ + +# sent_id = 170 +# text = Macao is this way, and Zhuhai is this way. +1 Macao Macao PROPN NNP Number=Sing 4 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +3 this this DET DT Number=Sing|PronType=Dem 4 det _ _ +4 way way NOUN NN Number=Sing 0 root _ SpaceAfter=No +5 , , PUNCT , _ 10 punct _ _ +6 and and CCONJ CC _ 10 cc _ _ +7 Zhuhai Zhuhai PROPN NNP Number=Sing 10 nsubj _ _ +8 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _ +9 this this DET DT Number=Sing|PronType=Dem 10 det _ _ +10 way way NOUN NN Number=Sing 4 conj _ SpaceAfter=No +11 . . PUNCT . _ 4 punct _ _ + +# sent_id = 171 +# text = From the perspective of either Hong Kong, Macao, or Zhuhai, our concept is a tourism zone. +1 From from ADP IN _ 3 case _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 perspective perspective NOUN NN Number=Sing 19 obl _ _ +4 of of ADP IN _ 6 case _ _ +5 either either CCONJ CC _ 6 cc:preconj _ _ +6 Hong Hong PROPN NNP Number=Sing 3 nmod _ _ +7 Kong Kong PROPN NNP Number=Sing 6 flat _ SpaceAfter=No +8 , , PUNCT , _ 9 punct _ _ +9 Macao Macao PROPN NNP Number=Sing 6 conj _ SpaceAfter=No +10 , , PUNCT , _ 12 punct _ _ +11 or or CCONJ CC _ 12 cc _ _ +12 Zhuhai Zhuhai PROPN NNP Number=Sing 6 conj _ SpaceAfter=No +13 , , PUNCT , _ 19 punct _ _ +14 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 15 nmod:poss _ _ +15 concept concept NOUN NN Number=Sing 19 nsubj _ _ +16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _ +17 a a DET DT Definite=Ind|PronType=Art 19 det _ _ +18 tourism tourism NOUN NN Number=Sing 19 compound _ _ +19 zone zone NOUN NN Number=Sing 0 root _ SpaceAfter=No +20 . . PUNCT . _ 19 punct _ _ + +# sent_id = 172 +# text = Er, %pw Zhuhai for sightseeing tours, Macao for entertainment, and we have Disneyland and, other attractions in Hong Kong. +1 Er er INTJ UH _ 3 discourse _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 %pw %pw VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +4 Zhuhai Zhuhai PROPN NNP Number=Sing 3 obj _ _ +5 for for SCONJ IN _ 6 mark _ _ +6 sightseeing sightseeing VERB VBG VerbForm=Ger 3 advcl _ _ +7 tours tour NOUN NNS Number=Plur 6 obj _ SpaceAfter=No +8 , , PUNCT , _ 9 punct _ _ +9 Macao Macao PROPN NNP Number=Sing 7 conj _ _ +10 for for ADP IN _ 11 case _ _ +11 entertainment entertainment NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +12 , , PUNCT , _ 15 punct _ _ +13 and and CCONJ CC _ 15 cc _ _ +14 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 15 nsubj _ _ +15 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 conj _ _ +16 Disneyland Disneyland PROPN NNP Number=Sing 15 obj _ _ +17 and and CCONJ CC _ 20 cc _ SpaceAfter=No +18 , , PUNCT , _ 20 punct _ _ +19 other other ADJ JJ Degree=Pos 20 amod _ _ +20 attractions attraction NOUN NNS Number=Plur 16 conj _ _ +21 in in ADP IN _ 23 case _ _ +22 Hong Hong PROPN NNP Number=Sing 23 compound _ _ +23 Kong Kong PROPN NNP Number=Sing 20 nmod _ SpaceAfter=No +24 . . PUNCT . _ 3 punct _ _ + +# sent_id = 173 +# text = Each place has different attractions of its own. +1 Each each DET DT _ 2 det _ _ +2 place place NOUN NN Number=Sing 3 nsubj _ _ +3 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 different different ADJ JJ Degree=Pos 5 amod _ _ +5 attractions attraction NOUN NNS Number=Plur 3 obj _ _ +6 of of ADP IN _ 8 case _ _ +7 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 8 nmod:poss _ _ +8 own own ADJ JJ Degree=Pos 5 nmod _ SpaceAfter=No +9 . . PUNCT . _ 3 punct _ _ + +# sent_id = 174 +# text = So, with this bridge, when some old friends, friends from mainland China or from foreign countries come to our place, it seems they can basically enjoy a complete tour with great convenience in several days, before, ha, going home. +1 So so ADV RB _ 26 advmod _ SpaceAfter=No +2 , , PUNCT , _ 26 punct _ _ +3 with with ADP IN _ 5 case _ _ +4 this this DET DT Number=Sing|PronType=Dem 5 det _ _ +5 bridge bridge NOUN NN Number=Sing 26 obl _ SpaceAfter=No +6 , , PUNCT , _ 5 punct _ _ +7 when when ADV WRB PronType=Int 20 mark _ _ +8 some some DET DT _ 10 det _ _ +9 old old ADJ JJ Degree=Pos 10 amod _ _ +10 friends friend NOUN NNS Number=Plur 20 nsubj _ SpaceAfter=No +11 , , PUNCT , _ 12 punct _ _ +12 friends friend NOUN NNS Number=Plur 10 conj _ _ +13 from from ADP IN _ 15 case _ _ +14 mainland mainland PROPN NNP Number=Sing 15 compound _ _ +15 China China PROPN NNP Number=Sing 10 nmod _ _ +16 or or CCONJ CC _ 19 cc _ _ +17 from from ADP IN _ 19 case _ _ +18 foreign foreign ADJ JJ Degree=Pos 19 amod _ _ +19 countries country NOUN NNS Number=Plur 10 conj _ _ +20 come come VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 26 advcl _ _ +21 to to ADP IN _ 23 case _ _ +22 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 23 nmod:poss _ _ +23 place place NOUN NN Number=Sing 20 obl _ SpaceAfter=No +24 , , PUNCT , _ 26 punct _ _ +25 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 26 nsubj _ _ +26 seems seem VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +27 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 30 nsubj _ _ +28 can can AUX MD VerbForm=Fin 30 aux _ _ +29 basically basically ADV RB _ 30 advmod _ _ +30 enjoy enjoy VERB VB VerbForm=Inf 26 ccomp _ _ +31 a a DET DT Definite=Ind|PronType=Art 33 det _ _ +32 complete complete ADJ JJ Degree=Pos 33 amod _ _ +33 tour tour NOUN NN Number=Sing 30 obj _ _ +34 with with ADP IN _ 36 case _ _ +35 great great ADJ JJ Degree=Pos 36 amod _ _ +36 convenience convenience NOUN NN Number=Sing 33 nmod _ _ +37 in in ADP IN _ 39 case _ _ +38 several several ADJ JJ Degree=Pos 39 amod _ _ +39 days day NOUN NNS Number=Plur 30 obl _ SpaceAfter=No +40 , , PUNCT , _ 30 punct _ _ +41 before before ADV RB _ 30 advmod _ SpaceAfter=No +42 , , PUNCT , _ 30 punct _ _ +43 ha ha INTJ UH _ 30 discourse _ SpaceAfter=No +44 , , PUNCT , _ 30 punct _ _ +45 going go VERB VBG VerbForm=Ger 30 advcl _ _ +46 home home ADV RB _ 45 advmod _ SpaceAfter=No +47 . . PUNCT . _ 26 punct _ _ + +# sent_id = 175 +# text = Once the Zhuhai-Hong Kong-Macao bridge is built, it will no longer be a dream of tourists to enjoy gourmet food in Macao before having fun at Disneyland just an hour later. +1 Once once SCONJ IN _ 11 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 9 det _ _ +3 Zhuhai Zhuhai PROPN NNP Number=Sing 5 compound _ SpaceAfter=No +4 - - PUNCT HYPH _ 5 punct _ SpaceAfter=No +5 Hong Hong PROPN NNP Number=Sing 8 compound _ _ +6 Kong Kong PROPN NNP Number=Sing 5 flat _ SpaceAfter=No +7 - - PUNCT HYPH _ 8 punct _ SpaceAfter=No +8 Macao Macao PROPN NNP Number=Sing 9 compound _ _ +9 bridge bridge NOUN NN Number=Sing 11 nsubj:pass _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 aux:pass _ _ +11 built build VERB VBN Tense=Past|VerbForm=Part 19 advcl _ SpaceAfter=No +12 , , PUNCT , _ 19 punct _ _ +13 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 19 nsubj _ _ +14 will will AUX MD VerbForm=Fin 19 aux _ _ +15 no no ADV RB _ 16 advmod _ _ +16 longer longer ADV RBR Degree=Cmp 19 advmod _ _ +17 be be AUX VB VerbForm=Inf 19 cop _ _ +18 a a DET DT Definite=Ind|PronType=Art 19 det _ _ +19 dream dream NOUN NN Number=Sing 0 root _ _ +20 of of ADP IN _ 21 case _ _ +21 tourists tourist NOUN NNS Number=Plur 19 nmod _ _ +22 to to PART TO _ 23 mark _ _ +23 enjoy enjoy VERB VB VerbForm=Inf 19 acl _ _ +24 gourmet gourmet ADJ JJ Degree=Pos 25 amod _ _ +25 food food NOUN NN Number=Sing 23 obj _ _ +26 in in ADP IN _ 27 case _ _ +27 Macao Macao PROPN NNP Number=Sing 23 obl _ _ +28 before before SCONJ IN _ 29 mark _ _ +29 having have VERB VBG VerbForm=Ger 35 advcl _ _ +30 fun fun NOUN NN Number=Sing 29 obj _ _ +31 at at ADP IN _ 32 case _ _ +32 Disneyland Disneyland PROPN NNP Number=Sing 29 obl _ _ +33 just just ADV RB _ 35 advmod _ _ +34 an a DET DT Definite=Ind|PronType=Art 35 det _ _ +35 hour hour NOUN NN Number=Sing 23 obl _ _ +36 later later ADV RB _ 35 advmod _ SpaceAfter=No +37 . . PUNCT . _ 19 punct _ _ + +# sent_id = 176 +# text = Promotion of Hong Kong Disneyland has long since begun. +1 Promotion promotion NOUN NN Number=Sing 7 nsubj _ _ +2 of of ADP IN _ 3 case _ _ +3 Hong Hong PROPN NNP Number=Sing 1 nmod _ _ +4 Kong Kong PROPN NNP Number=Sing 5 compound _ _ +5 Disneyland Disneyland PROPN NNP Number=Sing 3 flat _ _ +6 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 long long ADJ JJ Degree=Pos 0 root _ _ +8 since since SCONJ IN _ 9 mark _ _ +9 begun begin VERB VBN Tense=Past|VerbForm=Part 7 advcl _ SpaceAfter=No +10 . . PUNCT . _ 7 punct _ _ + +# sent_id = 177 +# text = However, even though it has entered the last countdown period before its final opening, this wonderland is still unwilling to take off its mysterious veil. +1 However however ADV RB _ 21 advmod _ SpaceAfter=No +2 , , PUNCT , _ 21 punct _ _ +3 even even ADV RB _ 7 advmod _ _ +4 though though SCONJ IN _ 7 mark _ _ +5 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 7 nsubj _ _ +6 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 entered enter VERB VBN Tense=Past|VerbForm=Part 21 advcl _ _ +8 the the DET DT Definite=Def|PronType=Art 11 det _ _ +9 last last ADJ JJ Degree=Pos 11 amod _ _ +10 countdown countdown NOUN NN Number=Sing 11 compound _ _ +11 period period NOUN NN Number=Sing 7 obj _ _ +12 before before ADP IN _ 15 case _ _ +13 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 15 nmod:poss _ _ +14 final final ADJ JJ Degree=Pos 15 amod _ _ +15 opening opening NOUN NN Number=Sing 7 obl _ SpaceAfter=No +16 , , PUNCT , _ 21 punct _ _ +17 this this DET DT Number=Sing|PronType=Dem 18 det _ _ +18 wonderland wonderland NOUN NN Number=Sing 21 nsubj _ _ +19 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 21 cop _ _ +20 still still ADV RB _ 21 advmod _ _ +21 unwilling unwill ADJ JJ Degree=Pos 0 root _ _ +22 to to PART TO _ 23 mark _ _ +23 take take VERB VB VerbForm=Inf 21 advcl _ _ +24 off off ADP RP _ 23 compound:prt _ _ +25 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 27 nmod:poss _ _ +26 mysterious mysterious ADJ JJ Degree=Pos 27 amod _ _ +27 veil veil NOUN NN Number=Sing 23 obj _ SpaceAfter=No +28 . . PUNCT . _ 21 punct _ _ + +# sent_id = 178 +# text = Ah, currently it has been decided that Disney will open on September 12. +1 Ah ah INTJ UH _ 7 discourse _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 currently currently ADV RB _ 7 advmod _ _ +4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 7 nsubj:pass _ _ +5 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +6 been be AUX VBN Tense=Past|VerbForm=Part 7 aux:pass _ _ +7 decided decide VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +8 that that SCONJ IN _ 11 mark _ _ +9 Disney Disney PROPN NNP Number=Sing 11 nsubj _ _ +10 will will AUX MD VerbForm=Fin 11 aux _ _ +11 open open VERB VB VerbForm=Inf 7 ccomp _ _ +12 on on ADP IN _ 13 case _ _ +13 September September PROPN NNP Number=Sing 11 obl _ _ +14 12 12 NUM CD NumType=Card 13 nummod _ SpaceAfter=No +15 . . PUNCT . _ 7 punct _ _ + +# sent_id = 179 +# text = There's also what we call soft opening. +1 There there PRON EX _ 2 expl _ SpaceAfter=No +2 's be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 also also ADV RB _ 2 advmod _ _ +4 what what PRON WP PronType=Int 6 obj _ _ +5 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 6 nsubj _ _ +6 call call VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 parataxis _ _ +7 soft soft ADJ JJ Degree=Pos 8 amod _ _ +8 opening opening NOUN NN Number=Sing 6 obj _ SpaceAfter=No +9 . . PUNCT . _ 2 punct _ _ + +# sent_id = 180 +# text = Ah, they are now rehearsing. +1 Ah ah INTJ UH _ 6 discourse _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 6 nsubj _ _ +4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 now now ADV RB _ 6 advmod _ _ +6 rehearsing rehearse VERB VBG Tense=Pres|VerbForm=Part 0 root _ SpaceAfter=No +7 . . PUNCT . _ 6 punct _ _ + +# sent_id = 181 +# text = Ah,, ah, some groups, they are rehearsing their service, well, hoping that they will become used to the service, be familiar with it, when our tourists come in September. +1 Ah ah INTJ UH _ 11 discourse _ SpaceAfter=No +2 , , PUNCT , _ 11 punct _ SpaceAfter=No +3 , , PUNCT , _ 11 punct _ _ +4 ah ah INTJ UH _ 11 discourse _ SpaceAfter=No +5 , , PUNCT , _ 11 punct _ _ +6 some some DET DT _ 7 det _ _ +7 groups group NOUN NNS Number=Plur 11 nsubj _ SpaceAfter=No +8 , , PUNCT , _ 11 punct _ _ +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ _ +10 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 aux _ _ +11 rehearsing rehearse VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +12 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 13 nmod:poss _ _ +13 service service NOUN NN Number=Sing 11 obj _ SpaceAfter=No +14 , , PUNCT , _ 11 punct _ _ +15 well well INTJ UH _ 11 discourse _ SpaceAfter=No +16 , , PUNCT , _ 11 punct _ _ +17 hoping hope VERB VBG VerbForm=Ger 11 advcl _ _ +18 that that SCONJ IN _ 21 mark _ _ +19 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 21 nsubj _ _ +20 will will AUX MD VerbForm=Fin 21 aux _ _ +21 become become VERB VB VerbForm=Inf 17 ccomp _ _ +22 used use ADJ JJ Degree=Pos 21 xcomp _ _ +23 to to ADP IN _ 25 case _ _ +24 the the DET DT Definite=Def|PronType=Art 25 det _ _ +25 service service NOUN NN Number=Sing 22 obl _ SpaceAfter=No +26 , , PUNCT , _ 11 punct _ _ +27 be be AUX VB Mood=Imp|VerbForm=Fin 28 cop _ _ +28 familiar familiar ADJ JJ Degree=Pos 11 parataxis _ _ +29 with with ADP IN _ 30 case _ _ +30 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 28 obl _ SpaceAfter=No +31 , , PUNCT , _ 11 punct _ _ +32 when when ADV WRB PronType=Int 35 mark _ _ +33 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 tourists tourist NOUN NNS Number=Plur 35 nsubj _ _ +35 come come VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 advcl _ _ +36 in in ADP IN _ 37 case _ _ +37 September September PROPN NNP Number=Sing 35 obl _ SpaceAfter=No +38 . . PUNCT . _ 11 punct _ _ + +# sent_id = 182 +# text = Well, I am very confident, that when our tourists come to Disneyland, they will certainly return home very satisfied. +1 Well well INTJ UH _ 6 discourse _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 6 nsubj _ _ +4 am be AUX VBP Mood=Ind|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin 6 cop _ _ +5 very very ADV RB _ 6 advmod _ _ +6 confident confident ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 that that SCONJ IN _ 19 mark _ _ +9 when when ADV WRB PronType=Int 12 mark _ _ +10 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 11 nmod:poss _ _ +11 tourists tourist NOUN NNS Number=Plur 12 nsubj _ _ +12 come come VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 advcl _ _ +13 to to ADP IN _ 14 case _ _ +14 Disneyland Disneyland PROPN NNP Number=Sing 12 obl _ SpaceAfter=No +15 , , PUNCT , _ 19 punct _ _ +16 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 19 nsubj _ _ +17 will will AUX MD VerbForm=Fin 19 aux _ _ +18 certainly certainly ADV RB _ 19 advmod _ _ +19 return return VERB VB VerbForm=Inf 6 ccomp _ _ +20 home home ADV RB _ 19 advmod _ _ +21 very very ADV RB _ 22 advmod _ _ +22 satisfied satisfied ADJ JJ Degree=Pos 19 xcomp _ SpaceAfter=No +23 . . PUNCT . _ 6 punct _ _ + +# sent_id = 183 +# text = The Wonder +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 Wonder wonder NOUN NN Number=Sing 0 root _ _ + +# sent_id = 184 +# text = Tour will start from Hong Kong. +1 Tour Tou PRON PRP$ Person=2|Poss=Yes|PronType=Prs 3 nsubj _ _ +2 will will AUX MD VerbForm=Fin 3 aux _ _ +3 start start VERB VB VerbForm=Inf 0 root _ _ +4 from from ADP IN _ 6 case _ _ +5 Hong Hong PROPN NNP Number=Sing 6 compound _ _ +6 Kong Kong PROPN NNP Number=Sing 3 obl _ SpaceAfter=No +7 . . PUNCT . _ 3 punct _ _ + +# sent_id = 185 +# text = This dynamic metropolis never ceases its movement. +1 This this DET DT Number=Sing|PronType=Dem 2 det _ _ +2 dynamic dynamic NOUN NN Number=Sing 3 nsubj _ _ +3 metropolis metropolis VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 never never ADV RB _ 5 advmod _ _ +5 ceases cease VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 advcl _ _ +6 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 7 nmod:poss _ _ +7 movement movement NOUN NN Number=Sing 5 obj _ SpaceAfter=No +8 . . PUNCT . _ 3 punct _ _ + +# sent_id = 186 +# text = It continues to explore; it continues to open new worlds. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 continues continue VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 to to PART TO _ 4 mark _ _ +4 explore explore VERB VB VerbForm=Inf 2 xcomp _ SpaceAfter=No +5 ; ; PUNCT , _ 2 punct _ _ +6 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 7 nsubj _ _ +7 continues continue VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 parataxis _ _ +8 to to PART TO _ 9 mark _ _ +9 open open VERB VB VerbForm=Inf 7 xcomp _ _ +10 new new ADJ JJ Degree=Pos 11 amod _ _ +11 worlds world NOUN NNS Number=Plur 9 obj _ SpaceAfter=No +12 . . PUNCT . _ 2 punct _ _ + +# sent_id = 187 +# text = Each day, there is always something new for people to experience and to love about this city. +1 Each each DET DT _ 2 det _ _ +2 day day NOUN NN Number=Sing 5 obl:tmod _ SpaceAfter=No +3 , , PUNCT , _ 5 punct _ _ +4 there there PRON EX _ 5 expl _ _ +5 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +6 always always ADV RB _ 5 advmod _ _ +7 something something PRON NN Number=Sing 5 nsubj _ _ +8 new new ADJ JJ Degree=Pos 7 amod _ _ +9 for for SCONJ IN _ 12 mark _ _ +10 people people NOUN NNS Number=Plur 12 nsubj _ _ +11 to to PART TO _ 12 mark _ _ +12 experience experience VERB VB VerbForm=Inf 7 acl _ _ +13 and and CCONJ CC _ 15 cc _ _ +14 to to PART TO _ 15 mark _ _ +15 love love VERB VB VerbForm=Inf 12 conj _ _ +16 about about ADP IN _ 18 case _ _ +17 this this DET DT Number=Sing|PronType=Dem 18 det _ _ +18 city city NOUN NN Number=Sing 15 obl _ SpaceAfter=No +19 . . PUNCT . _ 5 punct _ _ + +# sent_id = 188 +# text = Hong Kong is a world famous shopping paradise. +1 Hong Hong PROPN NNP Number=Sing 8 nsubj _ _ +2 Kong Kong PROPN NNP Number=Sing 1 flat _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +4 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +5 world world NOUN NN Number=Sing 8 obl:npmod _ _ +6 famous famous ADJ JJ Degree=Pos 8 amod _ _ +7 shopping shopping NOUN NN Number=Sing 8 compound _ _ +8 paradise paradise NOUN NN Number=Sing 0 root _ SpaceAfter=No +9 . . PUNCT . _ 8 punct _ _ + +# sent_id = 189 +# text = What determined the position of Hong Kong as a shopping paradise? +1 What what PRON WP PronType=Int 2 nsubj _ _ +2 determined determine VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 position position NOUN NN Number=Sing 2 obj _ _ +5 of of ADP IN _ 6 case _ _ +6 Hong Hong PROPN NNP Number=Sing 4 nmod _ _ +7 Kong Kong PROPN NNP Number=Sing 6 flat _ _ +8 as as ADP IN _ 11 case _ _ +9 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +10 shopping shopping NOUN NN Number=Sing 11 compound _ _ +11 paradise paradise NOUN NN Number=Sing 2 obl _ SpaceAfter=No +12 ? ? PUNCT . _ 2 punct _ _ + +# sent_id = 190 +# text = Is it because of abundant merchandise or high quality at low prices? +1 Is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +2 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +3 because because ADP IN _ 6 case _ _ +4 of of ADP IN _ 6 case _ _ +5 abundant abundant ADJ JJ Degree=Pos 6 amod _ _ +6 merchandise merchandise NOUN NN Number=Sing 0 root _ _ +7 or or CCONJ CC _ 9 cc _ _ +8 high high ADJ JJ Degree=Pos 9 amod _ _ +9 quality quality NOUN NN Number=Sing 6 conj _ _ +10 at at ADP IN _ 12 case _ _ +11 low low ADJ JJ Degree=Pos 12 amod _ _ +12 prices price NOUN NNS Number=Plur 9 nmod _ SpaceAfter=No +13 ? ? PUNCT . _ 6 punct _ _ + +# sent_id = 191 +# text = Is it a paradise for the rich or the general public? +1 Is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +2 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +3 a a DET DT Definite=Ind|PronType=Art 4 det _ _ +4 paradise paradise NOUN NN Number=Sing 0 root _ _ +5 for for ADP IN _ 7 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 rich rich ADJ JJ Degree=Pos 4 nmod _ _ +8 or or CCONJ CC _ 11 cc _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 general general ADJ JJ Degree=Pos 11 amod _ _ +11 public public NOUN NN Number=Sing 4 conj _ SpaceAfter=No +12 ? ? PUNCT . _ 4 punct _ _ + +# sent_id = 192 +# text = After all, what are the joyful memories from inside paradise? +1 After after ADV RB _ 2 advmod _ _ +2 all all ADV RB _ 4 advmod _ SpaceAfter=No +3 , , PUNCT , _ 4 punct _ _ +4 what what PRON WP PronType=Int 0 root _ _ +5 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 cop _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 joyful joyful ADJ JJ Degree=Pos 8 amod _ _ +8 memories memory NOUN NNS Number=Plur 4 nsubj _ _ +9 from from ADP IN _ 11 case _ _ +10 inside inside ADP IN _ 11 case _ _ +11 paradise paradise NOUN NN Number=Sing 8 nmod _ SpaceAfter=No +12 ? ? PUNCT . _ 4 punct _ _ + +# sent_id = 193 +# text = We respectfully invite you to watch Hong Kong: a Shopping Paradise in this edition of Across China. +1 We we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 3 nsubj _ _ +2 respectfully respectfully ADV RB _ 3 advmod _ _ +3 invite invite VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +4 you you PRON PRP Case=Acc|Person=2|PronType=Prs 3 obj _ _ +5 to to PART TO _ 6 mark _ _ +6 watch watch VERB VB VerbForm=Inf 3 xcomp _ _ +7 Hong Hong PROPN NNP Number=Sing 6 obj _ _ +8 Kong Kong PROPN NNP Number=Sing 7 flat _ SpaceAfter=No +9 : : PUNCT : _ 3 punct _ _ +10 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 Shopping Shopping NOUN NN Number=Sing 12 compound _ _ +12 Paradise paradise NOUN NN Number=Sing 15 obj _ _ +13 in in ADP IN _ 15 case _ _ +14 this this DET DT Number=Sing|PronType=Dem 15 det _ _ +15 edition edition NOUN NN Number=Sing 3 nmod _ _ +16 of of ADP IN _ 18 case _ _ +17 Across Across PROPN NNP Number=Sing 18 compound _ _ +18 China China PROPN NNP Number=Sing 15 nmod _ SpaceAfter=No +19 . . PUNCT . _ 3 punct _ _ + +# sent_id = 194 +# text = Hello, everyone. +1 Hello hello INTJ UH _ 3 discourse _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 everyone everyone PRON NN Number=Sing 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 195 +# text = This is the Cross Strait program on CCTV International Channel. +1 This this PRON DT Number=Sing|PronType=Dem 6 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +3 the the DET DT Definite=Def|PronType=Art 6 det _ _ +4 Cross Cross PROPN NNP Number=Sing 5 compound _ _ +5 Strait Strait PROPN NNP Number=Sing 6 compound _ _ +6 program program NOUN NN Number=Sing 0 root _ _ +7 on on ADP IN _ 10 case _ _ +8 CCTV CCTV PROPN NNP Number=Sing 9 compound _ _ +9 International International PROPN NNP Number=Sing 10 compound _ _ +10 Channel Channel PROPN NNP Number=Sing 6 nmod _ SpaceAfter=No +11 . . PUNCT . _ 6 punct _ _ + +# sent_id = 196 +# text = Welcome to our program. +1 Welcome welcome ADJ JJ Degree=Pos 0 root _ _ +2 to to ADP IN _ 4 case _ _ +3 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +4 program program NOUN NN Number=Sing 1 obl _ SpaceAfter=No +5 . . PUNCT . _ 1 punct _ _ + +# sent_id = 197 +# text = First let's focus on the main contents of today's program. +1 First first ADV RB _ 2 advmod _ _ +2 let let VERB VB Mood=Imp|VerbForm=Fin 0 root _ SpaceAfter=No +3 's 's PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 2 obj _ _ +4 focus focus VERB VB VerbForm=Inf 2 xcomp _ _ +5 on on ADP IN _ 8 case _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 main main ADJ JJ Degree=Pos 8 amod _ _ +8 contents contents NOUN NNS Number=Plur 4 obl _ _ +9 of of ADP IN _ 12 case _ _ +10 today today NOUN NN Number=Sing 12 nmod:poss _ SpaceAfter=No +11 's 's PART POS _ 10 case _ _ +12 program program NOUN NN Number=Sing 8 nmod _ SpaceAfter=No +13 . . PUNCT . _ 2 punct _ _ + +# sent_id = 198 +# text = Wang Jin-pyng says that he has decided not to continue serving as KMT vice chairman. +1 Wang wang PROPN NNP Number=Sing 4 compound _ _ +2 Jin Jin PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +3 - - PUNCT , _ 1 punct _ SpaceAfter=No +4 pyng pyng NOUN NN Number=Sing 5 nsubj _ _ +5 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +6 that that SCONJ IN _ 9 mark _ _ +7 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 nsubj _ _ +8 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux _ _ +9 decided decide VERB VBN Tense=Past|VerbForm=Part 5 ccomp _ _ +10 not not ADV RB _ 9 advmod _ _ +11 to to PART TO _ 12 mark _ _ +12 continue continue VERB VB VerbForm=Inf 9 xcomp _ _ +13 serving serve VERB VBG VerbForm=Ger 12 xcomp _ _ +14 as as ADP IN _ 17 case _ _ +15 KMT Kmt PROPN NNP Number=Sing 17 compound _ _ +16 vice vice NOUN NN Number=Sing 17 compound _ _ +17 chairman chairman NOUN NN Number=Sing 13 obl _ SpaceAfter=No +18 . . PUNCT . _ 5 punct _ _ + +# sent_id = 199 +# text = Candidates for the giant pandas to be presented to Taiwan as gifts from the mainland may increase. +1 Candidates candidate NOUN NNS Number=Plur 17 nsubj _ _ +2 for for ADP IN _ 5 case _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 giant giant ADJ JJ Degree=Pos 5 amod _ _ +5 pandas panda NOUN NN Number=Sing 1 nmod _ _ +6 to to PART TO _ 8 mark _ _ +7 be be AUX VB VerbForm=Inf 8 aux:pass _ _ +8 presented present VERB VBN Tense=Past|VerbForm=Part 1 acl _ _ +9 to to ADP IN _ 10 case _ _ +10 Taiwan Taiwan PROPN NNP Number=Sing 8 obl _ _ +11 as as ADP IN _ 12 case _ _ +12 gifts gift NOUN NNS Number=Plur 1 obl _ _ +13 from from ADP IN _ 15 case _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 mainland mainland NOUN NN Number=Sing 12 nmod _ _ +16 may may AUX MD VerbForm=Fin 17 aux _ _ +17 increase increase VERB VB VerbForm=Inf 0 root _ SpaceAfter=No +18 . . PUNCT . _ 17 punct _ _ + +# sent_id = 200 +# text = Taiwan's military uses Taipei Aerospace Exhibition as an opportunity for pressing arms procurement. +1 Taiwan Taiwan PROPN NNP Number=Sing 3 nmod:poss _ SpaceAfter=No +2 's 's PART POS _ 1 case _ _ +3 military military NOUN NN Number=Sing 4 nsubj _ _ +4 uses use VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +5 Taipei Taipei PROPN NNP Number=Sing 4 obj _ _ +6 Aerospace Aerospace PROPN NNP Number=Sing 5 flat _ _ +7 Exhibition exhibition PROPN NNP Number=Sing 5 flat _ _ +8 as as ADP IN _ 10 case _ _ +9 an a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 opportunity opportunity NOUN NN Number=Sing 4 obl _ _ +11 for for SCONJ IN _ 12 mark _ _ +12 pressing pressing VERB VBG VerbForm=Ger 10 acl _ _ +13 arms arm NOUN NNS Number=Plur 14 compound _ _ +14 procurement procurement NOUN NN Number=Sing 12 obj _ SpaceAfter=No +15 . . PUNCT . _ 4 punct _ _ + +# sent_id = 201 +# text = Recently, the 2005 Ningxia Investment and Trade Fair and Ningxia-Taiwan Economic and Trade Cooperation Seminar were held in the city of Yinchuan. +1 Recently recently ADV RB _ 20 advmod _ SpaceAfter=No +2 , , PUNCT , _ 20 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 6 det _ _ +4 2005 2005 NUM CD NumType=Card 6 nummod _ _ +5 Ningxia Ningxia PROPN NNP Number=Sing 6 compound _ _ +6 Investment investment PROPN NNP Number=Sing 20 nsubj:pass _ _ +7 and and CCONJ CC _ 9 cc _ _ +8 Trade trade PROPN NNP Number=Sing 9 compound _ _ +9 Fair fair PROPN NNP Number=Sing 6 conj _ _ +10 and and CCONJ CC _ 14 cc _ _ +11 Ningxia Ningxia PROPN NNP Number=Sing 13 compound _ SpaceAfter=No +12 - - PUNCT HYPH _ 13 punct _ SpaceAfter=No +13 Taiwan Taiwan PROPN NNP Number=Sing 14 compound _ _ +14 Economic economic PROPN NNP Number=Sing 6 conj _ _ +15 and and CCONJ CC _ 18 cc _ _ +16 Trade trade PROPN NNP Number=Sing 17 compound _ _ +17 Cooperation cooperation PROPN NNP Number=Sing 18 compound _ _ +18 Seminar Seminar PROPN NNP Number=Sing 6 conj _ _ +19 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 20 aux:pass _ _ +20 held hold VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +21 in in ADP IN _ 23 case _ _ +22 the the DET DT Definite=Def|PronType=Art 23 det _ _ +23 city city NOUN NN Number=Sing 20 obl _ _ +24 of of ADP IN _ 25 case _ _ +25 Yinchuan Yinchuan PROPN NNP Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT . _ 20 punct _ _ + +# sent_id = 202 +# text = More than three hundred Taiwanese businesspeople gathered in this land known as" lush southern-type fields north of the Great Wall," beginning their tour and inspection journey. +1 More more ADJ JJR Degree=Cmp 0 root _ _ +2 than than ADP IN _ 6 case _ _ +3 three three NUM CD NumType=Card 4 nummod _ _ +4 hundred hundred NUM CD NumType=Card 6 nummod _ _ +5 Taiwanese taiwanese ADJ JJ Degree=Pos 6 amod _ _ +6 businesspeople businesspeople NOUN NN Number=Sing 1 obl _ _ +7 gathered gather VERB VBN Tense=Past|VerbForm=Part 6 acl _ _ +8 in in ADP IN _ 10 case _ _ +9 this this DET DT Number=Sing|PronType=Dem 10 det _ _ +10 land land NOUN NN Number=Sing 7 obl _ _ +11 known know VERB VBN Tense=Past|VerbForm=Part 10 acl _ _ +12 as as ADP IN _ 18 case _ SpaceAfter=No +13 " " PUNCT `` _ 18 punct _ _ +14 lush lush ADJ JJ Degree=Pos 18 amod _ _ +15 southern southern ADJ JJ Degree=Pos 17 amod _ SpaceAfter=No +16 - - PUNCT HYPH _ 17 punct _ SpaceAfter=No +17 type type NOUN NN Number=Sing 18 compound _ _ +18 fields field NOUN NNS Number=Plur 11 obl _ _ +19 north north ADV RB _ 11 advmod _ _ +20 of of ADP IN _ 23 case _ _ +21 the the DET DT Definite=Def|PronType=Art 23 det _ _ +22 Great Great PROPN NNP Number=Sing 23 compound _ _ +23 Wall wall PROPN NNP Number=Sing 19 obl _ SpaceAfter=No +24 , , PUNCT , _ 1 punct _ SpaceAfter=No +25 " " PUNCT '' _ 1 punct _ _ +26 beginning begin VERB VBG VerbForm=Ger 1 acl _ _ +27 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 28 nmod:poss _ _ +28 tour tour NOUN NN Number=Sing 26 obj _ _ +29 and and CCONJ CC _ 31 cc _ _ +30 inspection inspection NOUN NN Number=Sing 31 compound _ _ +31 journey journey NOUN NN Number=Sing 28 conj _ SpaceAfter=No +32 . . PUNCT . _ 1 punct _ _ + +# sent_id = 203 +# text = Well, what is the unique charm in Ningxia of the western region that has attracted the attention of so many Taiwanese businesspeople? +1 Well well INTJ UH _ 7 discourse _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 what what PRON WP PronType=Int 7 nsubj _ _ +4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 cop _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 unique unique ADJ JJ Degree=Pos 7 amod _ _ +7 charm charm NOUN NN Number=Sing 0 root _ _ +8 in in ADP IN _ 9 case _ _ +9 Ningxia Ningxia PROPN NNP Number=Sing 7 nmod _ _ +10 of of ADP IN _ 13 case _ _ +11 the the DET DT Definite=Def|PronType=Art 13 det _ _ +12 western western ADJ JJ Degree=Pos 13 amod _ _ +13 region region NOUN NN Number=Sing 9 nmod _ _ +14 that that PRON WDT PronType=Rel 16 nsubj _ _ +15 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 aux _ _ +16 attracted attract VERB VBN Tense=Past|VerbForm=Part 7 acl:relcl _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 attention attention NOUN NN Number=Sing 16 obj _ _ +19 of of ADP IN _ 23 case _ _ +20 so so ADV RB _ 21 advmod _ _ +21 many many ADJ JJ Degree=Pos 23 amod _ _ +22 Taiwanese taiwanese ADJ JJ Degree=Pos 23 amod _ _ +23 businesspeople businesspeople NOUN NN Number=Sing 18 nmod _ SpaceAfter=No +24 ? ? PUNCT . _ 7 punct _ _ + +# sent_id = 204 +# text = Please watch this edition of Hot Topic Analysis for a detailed report. +1 Please please INTJ UH _ 2 discourse _ _ +2 watch watch VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +3 this this DET DT Number=Sing|PronType=Dem 4 det _ _ +4 edition edition NOUN NN Number=Sing 2 obj _ _ +5 of of ADP IN _ 8 case _ _ +6 Hot hot ADJ JJ Degree=Pos 8 amod _ _ +7 Topic topic NOUN NN Number=Sing 8 compound _ _ +8 Analysis Analysis NOUN NN Number=Sing 4 nmod _ _ +9 for for ADP IN _ 12 case _ _ +10 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 detailed detailed ADJ JJ Degree=Pos 12 amod _ _ +12 report report NOUN NN Number=Sing 2 obl _ SpaceAfter=No +13 . . PUNCT . _ 2 punct _ _ + +# sent_id = 205 +# text = The KMT vice chairman arrived at party headquarters to meet with KMT Chairman Lien Chan on the afternoon of %pw. After a long talk of over an hour, Wang Jin-pyng expressed his wish not to renew his term as KMT vice chairman. +1 The the DET DT Definite=Def|PronType=Art 4 det _ _ +2 KMT KMT PROPN NNP Number=Sing 3 compound _ _ +3 vice vice NOUN NN Number=Sing 4 compound _ _ +4 chairman chairman NOUN NN Number=Sing 5 nsubj _ _ +5 arrived arrive VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +6 at at ADP IN _ 8 case _ _ +7 party party NOUN NN Number=Sing 8 compound _ _ +8 headquarters headquarters NOUN NNS Number=Plur 5 obl _ _ +9 to to PART TO _ 10 mark _ _ +10 meet meet VERB VB VerbForm=Inf 5 advcl _ _ +11 with with ADP IN _ 12 case _ _ +12 KMT KMT PROPN NNP Number=Sing 10 obl _ _ +13 Chairman Chairman PROPN NNP Number=Sing 12 flat _ _ +14 Lien Lien PROPN NNP Number=Sing 12 flat _ _ +15 Chan Chan PROPN NNP Number=Sing 12 flat _ _ +16 on on ADP IN _ 18 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 afternoon afternoon NOUN NN Number=Sing 10 obl _ _ +19 of of ADP IN _ 20 case _ _ +20 %pw %pw NOUN NN Number=Sing 18 nmod _ SpaceAfter=No +21 . . PUNCT . _ 5 punct _ _ +22 After after ADP IN _ 25 case _ _ +23 a a DET DT Definite=Ind|PronType=Art 25 det _ _ +24 long long ADJ JJ Degree=Pos 25 amod _ _ +25 talk talk NOUN NN Number=Sing 5 obl _ _ +26 of of ADP IN _ 29 case _ _ +27 over over ADP IN _ 29 case _ _ +28 an a DET DT Definite=Ind|PronType=Art 29 det _ _ +29 hour hour NOUN NN Number=Sing 25 nmod _ SpaceAfter=No +30 , , PUNCT , _ 34 punct _ _ +31 Wang wang PROPN NNP Number=Sing 34 compound _ _ +32 Jin Jin PROPN NNP Number=Sing 34 compound _ SpaceAfter=No +33 - - PUNCT , _ 34 punct _ SpaceAfter=No +34 pyng pyng NOUN NN Number=Sing 25 appos _ _ +35 expressed expresse VERB VBN Tense=Past|VerbForm=Part 34 acl _ _ +36 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 37 nmod:poss _ _ +37 wish wish NOUN NN Number=Sing 40 obj _ _ +38 not not ADV RB _ 40 advmod _ _ +39 to to PART TO _ 40 mark _ _ +40 renew renew VERB VB VerbForm=Inf 35 xcomp _ _ +41 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 42 nmod:poss _ _ +42 term term NOUN NN Number=Sing 40 obj _ _ +43 as as ADP IN _ 46 case _ _ +44 KMT Kmt ADJ JJ Degree=Pos 46 amod _ _ +45 vice vice NOUN NN Number=Sing 46 compound _ _ +46 chairman chairman NOUN NN Number=Sing 40 obl _ SpaceAfter=No +47 . . PUNCT . _ 5 punct _ _ + +# sent_id = 206 +# text = He said that he will follow Lien Chan as a lifelong volunteer. +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 that that SCONJ IN _ 6 mark _ _ +4 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +5 will will AUX MD VerbForm=Fin 6 aux _ _ +6 follow follow VERB VB VerbForm=Inf 2 ccomp _ _ +7 Lien Lien PROPN NNP Number=Sing 6 obj _ _ +8 Chan Chan PROPN NNP Number=Sing 7 flat _ _ +9 as as ADP IN _ 12 case _ _ +10 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 lifelong lifelong ADJ JJ Degree=Pos 12 amod _ _ +12 volunteer volunteer NOUN NN Number=Sing 6 obl _ SpaceAfter=No +13 . . PUNCT . _ 2 punct _ _ + +# sent_id = 207 +# text = %pw +1 %pw %pw NOUN NN Number=Sing 0 root _ SpaceAfter=No + diff --git a/demo/onto_train/cctv_0000.onf b/demo/onto_train/cctv_0000.onf new file mode 100644 index 00000000..e8d2a01e --- /dev/null +++ b/demo/onto_train/cctv_0000.onf @@ -0,0 +1,16310 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In the summer of 2005, a picture that people have long been looking forward to started emerging with frequency in + various major Hong Kong media. + +Treebanked sentence: +-------------------- + In the summer of 2005 , a picture that people have long been looking forward to *T*-1 started *-2 emerging with + frequency in various major Hong Kong media . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 47.836 + stop time: 55.349620893 + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (NP (DT the) + (NN summer)) + (PP (IN of) + (NP (CD 2005))))) + (, ,) + (NP-SBJ-2 (NP (DT a) + (NN picture)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (NNS people)) + (VP (VBP have) + (ADVP-TMP (RB long)) + (VP (VBN been) + (VP (VBG looking) + (ADVP-DIR (RB forward) + (PP (IN to) + (NP (-NONE- *T*-1)))))))))) + (VP (VBD started) + (S (NP-SBJ (-NONE- *-2)) + (VP (VBG emerging) + (PP-MNR (IN with) + (NP (NN frequency))) + (PP-LOC (IN in) + (NP (JJ various) + (JJ major) + (NML (NNP Hong) + (NNP Kong)) + (NNS media)))))) + (. .))) + +Leaves: +------- + 0 In + 1 the + name: DATE 1-4 the summer of 2005 + 2 summer + 3 of + 4 2005 + 5 , + 6 a + 7 picture + 8 that + 9 people + 10 have + prop: have.01 + v * -> 10:0, have + 11 long + 12 been + prop: be.03 + v * -> 12:0, been + 13 looking + sense: look-v.5 + prop: look.01 + v * -> 13:0, looking + ARG0 * -> 9:1, people + ARGM-TMP * -> 11:1, long + ARG1 * -> 14:1, forward to *T*-1 + 14 forward + 15 to + 16 *T*-1 + 17 started + sense: start-v.2 + prop: start.01 + v * -> 17:0, started + ARGM-TMP * -> 0:1, In the summer of 2005 + ARG1 * -> 6:2, a picture that people have long been looking forward to *T*-1 + ARG1 * -> 18:2, *-2 emerging with frequency in various major Hong Kong media + 18 *-2 + 19 emerging + sense: emerge-v.2 + prop: emerge.01 + v * -> 19:0, emerging + ARG0 * -> 18:0, *-2 -> 6:2, a picture that people have long been looking forward to *T*-1 + ARGM-MNR * -> 20:1, with frequency + ARGM-LOC * -> 22:1, in various major Hong Kong media + 20 with + 21 frequency + 22 in + 23 various + 24 major + 25 Hong + coref: IDENT 12 25-26 Hong Kong + name: GPE 25-26 Hong Kong + 26 Kong + 27 media + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With their unique charm, these well-known cartoon images once again caused Hong Kong to be a focus of worldwide + attention. + +Treebanked sentence: +-------------------- + With their unique charm , these well - known cartoon images once again caused Hong Kong to be a focus of worldwide + attention . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 55.349620893 + stop time: 63.0834035383 + +Tree: +----- + (TOP (S (PP (IN With) + (NP (PRP$ their) + (JJ unique) + (NN charm))) + (, ,) + (NP-SBJ (DT these) + (ADJP (RB well) + (HYPH -) + (VBN known)) + (NN cartoon) + (NNS images)) + (ADVP-TMP (RB once) + (RB again)) + (VP (VBD caused) + (S (NP-SBJ (NNP Hong) + (NNP Kong)) + (VP (TO to) + (VP (VB be) + (NP-PRD (NP (DT a) + (NN focus)) + (PP (IN of) + (NP (JJ worldwide) + (NN attention)))))))) + (. .))) + +Leaves: +------- + 0 With + 1 their + coref: IDENT 11 1-1 their + 2 unique + 3 charm + 4 , + 5 these + coref: IDENT 11 5-10 these well - known cartoon images + 6 well + 7 - + 8 known + prop: know.01 + v * -> 8:0, known + ARGM-EXT * -> 6:0, well + ARG1 * -> 9:0, cartoon + -> 10:0, images + 9 cartoon + 10 images + 11 once + 12 again + 13 caused + sense: cause-v.1 + prop: cause.01 + v * -> 13:0, caused + ARGM-MNR * -> 0:1, With their unique charm + ARG0 * -> 5:1, these well - known cartoon images + ARGM-TMP * -> 11:1, once again + ARG1 * -> 14:2, Hong Kong to be a focus of worldwide attention + 14 Hong + coref: IDENT 12 14-15 Hong Kong + name: GPE 14-15 Hong Kong + 15 Kong + 16 to + 17 be + sense: be-v.1 + prop: be.01 + v * -> 17:0, be + ARG1 * -> 14:1, Hong Kong + ARG2 * -> 18:2, a focus of worldwide attention + 18 a + 19 focus + 20 of + 21 worldwide + 22 attention + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The world's fifth Disney park will soon open to the public here. + +Treebanked sentence: +-------------------- + The world 's fifth Disney park will soon open to the public here . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 63.0834035383 + stop time: 72.707 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN world) + (POS 's)) + (JJ fifth) + (NNP Disney) + (NN park)) + (VP (MD will) + (ADVP-TMP (RB soon)) + (VP (VB open) + (PP-CLR (IN to) + (NP (DT the) + (NN public))) + (ADVP-LOC (RB here)))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 16 0-5 The world 's fifth Disney park + 1 world + 2 's + 3 fifth + name: ORDINAL 3-3 fifth + 4 Disney + coref: IDENT 21 4-4 Disney + name: ORG 4-4 Disney + 5 park + 6 will + 7 soon + 8 open + sense: open-v.2 + prop: open.01 + v * -> 8:0, open + ARG1 * -> 0:2, The world 's fifth Disney park + ARGM-MOD * -> 6:0, will + ARGM-TMP * -> 7:1, soon + ARG1 * -> 9:1, to the public + ARGM-LOC * -> 12:1, here + 9 to + 10 the + 11 public + 12 here + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The most important thing about Disney is that it is a global brand. + +Treebanked sentence: +-------------------- + The most important thing about Disney is that it is a global brand . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 72.707 + stop time: 77.586 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (ADJP (RBS most) + (JJ important)) + (NN thing)) + (PP (IN about) + (NP (NNP Disney)))) + (VP (VBZ is) + (SBAR-PRD (IN that) + (S (NP-SBJ (PRP it)) + (VP (VBZ is) + (NP-PRD (DT a) + (JJ global) + (NN brand)))))) + (. .))) + +Leaves: +------- + 0 The + 1 most + 2 important + 3 thing + 4 about + 5 Disney + coref: IDENT 21 5-5 Disney + name: ORG 5-5 Disney + 6 is + sense: be-v.2 + prop: be.01 + v * -> 6:0, is + ARG1 * -> 0:2, The most important thing about Disney + ARG2 * -> 7:1, that it is a global brand + 7 that + 8 it + coref: IDENT 21 8-8 it + 9 is + sense: be-v.1 + prop: be.01 + v * -> 9:0, is + ARG1 * -> 8:1, it + ARG2 * -> 10:1, a global brand + 10 a + 11 global + 12 brand + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Well, for several years, although it was still under construction and, er, not yet open, it can be said that many people + have viewed Hong Kong with new respect. + +Treebanked sentence: +-------------------- + Well , for several years , although it was still under construction and , er , not yet open , it *EXP*-2 can be said *-1 + that many people have viewed Hong Kong with new respect . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 77.586 + stop time: 88.483 + +Tree: +----- + (TOP (S (INTJ (UH Well)) + (, ,) + (PP-TMP (IN for) + (NP (JJ several) + (NNS years))) + (, ,) + (SBAR-ADV (IN although) + (S (NP-SBJ (PRP it)) + (VP (VBD was) + (ADVP-TMP (RB still)) + (UCP-PRD (PP (IN under) + (NP (NN construction))) + (CC and) + (, ,) + (INTJ (UH er)) + (, ,) + (ADJP (ADVP-TMP (RB not) + (RB yet)) + (JJ open)))))) + (, ,) + (NP-SBJ-1 (NP (PRP it)) + (SBAR (-NONE- *EXP*-2))) + (VP (MD can) + (VP (VB be) + (VP (VBN said) + (NP (-NONE- *-1)) + (SBAR-2 (IN that) + (S (NP-SBJ (JJ many) + (NNS people)) + (VP (VBP have) + (VP (VBN viewed) + (NP (NNP Hong) + (NNP Kong)) + (PP-MNR (IN with) + (NP (JJ new) + (NN respect)))))))))) + (. .))) + +Leaves: +------- + 0 Well + 1 , + 2 for + 3 several + name: DATE 3-4 several years + 4 years + 5 , + 6 although + 7 it + coref: IDENT 16 7-7 it + 8 was + sense: be-v.1 + prop: be.01 + v * -> 8:0, was + ARG1 * -> 7:1, it + ARGM-TMP * -> 9:1, still + ARG2 * -> 10:2, under construction and , er , not yet open + 9 still + 10 under + 11 construction + 12 and + 13 , + 14 er + 15 , + 16 not + 17 yet + 18 open + 19 , + 20 it + 21 *EXP*-2 + 22 can + 23 be + prop: be.03 + v * -> 23:0, be + 24 said + prop: say.01 + v * -> 24:0, said + ARGM-DIS * -> 0:1, Well + ARGM-TMP * -> 2:1, for several years + ARGM-ADV * -> 6:1, although it was still under construction and , er , not yet open + ARGM-MOD * -> 22:0, can + ARG1 * -> 26:1, that many people have viewed Hong Kong with new respect + 25 *-1 + 26 that + 27 many + 28 people + 29 have + prop: have.01 + v * -> 29:0, have + 30 viewed + sense: view-v.1 + prop: view.02 + v * -> 30:0, viewed + ARG0 * -> 27:1, many people + ARG1 * -> 31:1, Hong Kong + ARGM-MNR * -> 33:1, with new respect + 31 Hong + coref: IDENT 12 31-32 Hong Kong + name: GPE 31-32 Hong Kong + 32 Kong + 33 with + 34 new + 35 respect + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Then welcome to the official writing ceremony of Hong Kong Disneyland. + +Treebanked sentence: +-------------------- + Then *PRO* welcome to the official writing ceremony of Hong Kong Disneyland . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 88.483 + stop time: 94.017 + +Tree: +----- + (TOP (S (ADVP (RB Then)) + (NP-SBJ (-NONE- *PRO*)) + (VP (VBP welcome) + (PP-CLR (IN to) + (NP (NP (DT the) + (JJ official) + (NN writing) + (NN ceremony)) + (PP (IN of) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Disneyland)))))) + (. .))) + +Leaves: +------- + 0 Then + 1 *PRO* + 2 welcome + sense: welcome-v.2 + prop: welcome.01 + v * -> 2:0, welcome + ARGM-DIS * -> 0:1, Then + ARG0 * -> 1:0, *PRO* + ARG2 * -> 3:1, to the official writing ceremony of Hong Kong Disneyland + 3 to + 4 the + 5 official + 6 writing + 7 ceremony + 8 of + 9 Hong + coref: IDENT 12 9-10 Hong Kong + coref: IDENT 16 9-11 Hong Kong Disneyland + name: FAC 9-11 Hong Kong Disneyland + 10 Kong + 11 Disneyland + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The construction of Hong Kong Disneyland began two years ago, in 2003. + +Treebanked sentence: +-------------------- + The construction of Hong Kong Disneyland began two years ago , in 2003 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 94.017 + stop time: 99.03 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN construction)) + (PP (IN of) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Disneyland)))) + (VP (VBD began) + (ADVP-TMP (NP (CD two) + (NNS years)) + (RB ago)) + (, ,) + (PP-TMP (IN in) + (NP (CD 2003)))) + (. .))) + +Leaves: +------- + 0 The + 1 construction + 2 of + 3 Hong + coref: IDENT 12 3-4 Hong Kong + coref: IDENT 16 3-5 Hong Kong Disneyland + name: FAC 3-5 Hong Kong Disneyland + 4 Kong + 5 Disneyland + 6 began + sense: begin-v.1 + prop: begin.01 + v * -> 6:0, began + ARG1 * -> 0:2, The construction of Hong Kong Disneyland + ARGM-TMP * -> 7:2, two years ago + ARGM-TMP * -> 11:1, in 2003 + 7 two + name: DATE 7-9 two years ago + 8 years + 9 ago + 10 , + 11 in + 12 2003 + coref: IDENT 41 12-12 2003 + name: DATE 12-12 2003 + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In January of that year, the Hong Kong government turned over to Disney Corporation 200 hectares of land at the foot of + Lantau Island that was obtained following the largest land reclamation project in recent years. + +Treebanked sentence: +-------------------- + In January of that year , the Hong Kong government turned over to Disney Corporation 200 hectares of land at the foot of + Lantau Island that *T*-1 was obtained *-2 following the largest land reclamation project in recent years . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 99.03 + stop time: 108.930075821 + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (NP (NNP January)) + (PP (IN of) + (NP (DT that) + (NN year))))) + (, ,) + (NP-SBJ (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN government)) + (VP (VBD turned) + (PRT (RP over)) + (PP-CLR (IN to) + (NP (NNP Disney) + (NNP Corporation))) + (NP (NP (NP (CD 200) + (NNS hectares)) + (PP (IN of) + (NP (NN land))) + (PP-LOC (IN at) + (NP (NP (DT the) + (NN foot)) + (PP (IN of) + (NP (NNP Lantau) + (NNP Island)))))) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ-2 (-NONE- *T*-1)) + (VP (VBD was) + (VP (VBN obtained) + (NP (-NONE- *-2)) + (VP (VBG following) + (NP (NP (DT the) + (JJS largest) + (NML (NN land) + (NN reclamation)) + (NN project)) + (PP-TMP (IN in) + (NP (JJ recent) + (NNS years))))))))))) + (. .))) + +Leaves: +------- + 0 In + 1 January + name: DATE 1-4 January of that year + 2 of + 3 that + coref: IDENT 41 3-4 that year + 4 year + 5 , + 6 the + 7 Hong + coref: IDENT 12 7-8 Hong Kong + name: GPE 7-8 Hong Kong + 8 Kong + 9 government + 10 turned + sense: turn-v.11 + prop: turn.12 + v * -> 10:0, turned + -> 11:1, over + ARGM-TMP * -> 0:1, In January of that year + ARG0 * -> 6:1, the Hong Kong government + ARG2 * -> 12:1, to Disney Corporation + ARG1 * -> 15:3, 200 hectares of land at the foot of Lantau Island that *T*-1 was obtained *-2 + following the largest land reclamation project in recent years + 11 over + 12 to + 13 Disney + coref: IDENT 21 13-14 Disney Corporation + name: ORG 13-14 Disney Corporation + 14 Corporation + 15 200 + coref: IDENT 47 15-38 200 hectares of land at the foot of Lantau Island that *T*-1 was obtained + *-2 following the largest land reclamation project in recent years + name: QUANTITY 15-16 200 hectares + 16 hectares + 17 of + 18 land + 19 at + 20 the + 21 foot + 22 of + 23 Lantau + coref: IDENT 53 23-24 Lantau Island + name: LOC 23-24 Lantau Island + 24 Island + 25 that + 26 *T*-1 + 27 was + prop: be.03 + v * -> 27:0, was + 28 obtained + prop: obtain.01 + v * -> 28:0, obtained + ARG1 * -> 29:0, *-2 -> 26:0, *T*-1 -> 25:1, that + ARGM-TMP * -> 30:1, following the largest land reclamation project in recent years + LINK-SLC * -> 29:0, *-2 -> 26:0, *T*-1 -> 25:1, that + * -> 15:2, 200 hectares of land at the foot of Lantau Island + 29 *-2 + 30 following + sense: follow-v.2 + prop: follow.01 + v * -> 30:0, following + ARG2 * -> 31:2, the largest land reclamation project in recent years + 31 the + 32 largest + 33 land + 34 reclamation + 35 project + 36 in + 37 recent + name: DATE 37-38 recent years + 38 years + 39 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + One. + +Treebanked sentence: +-------------------- + One . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 108.930075821 + stop time: 110.042122999 + +Tree: +----- + (TOP (NP (CD One) + (. .))) + +Leaves: +------- + 0 One + name: CARDINAL 0-0 One + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Since then, this area has become a prohibited zone in Hong Kong. + +Treebanked sentence: +-------------------- + Since then , this area has become a prohibited zone in Hong Kong . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 118.48357203 + stop time: 122.729570345 + +Tree: +----- + (TOP (S (PP-TMP (IN Since) + (ADVP (RB then))) + (, ,) + (NP-SBJ (DT this) + (NN area)) + (VP (VBZ has) + (VP (VBN become) + (NP-PRD (NP (DT a) + (VBN prohibited) + (NN zone)) + (PP-LOC (IN in) + (NP (NNP Hong) + (NNP Kong)))))) + (. .))) + +Leaves: +------- + 0 Since + 1 then + 2 , + 3 this + coref: IDENT 47 3-4 this area + 4 area + 5 has + prop: have.01 + v * -> 5:0, has + 6 become + sense: become-v.1 + prop: become.01 + v * -> 6:0, become + ARGM-TMP * -> 0:1, Since then + ARG1 * -> 3:1, this area + ARG2 * -> 7:2, a prohibited zone in Hong Kong + 7 a + 8 prohibited + prop: prohibit.01 + v * -> 8:0, prohibited + ARG1 * -> 9:0, zone + 9 zone + 10 in + 11 Hong + coref: IDENT 12 11-12 Hong Kong + name: GPE 11-12 Hong Kong + 12 Kong + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As its neighbor on Lantau Island, Hong Kong International Airport had to change its flight routes to make this area a + no-fly zone. + +Treebanked sentence: +-------------------- + As its neighbor on Lantau Island , Hong Kong International Airport had *-1 to change its flight routes *PRO*-2 to make + this area a no - fly zone . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 122.729570345 + stop time: 131.120471778 + +Tree: +----- + (TOP (S (PP (IN As) + (NP (NP (PRP$ its) + (NN neighbor)) + (PP-LOC (IN on) + (NP (NNP Lantau) + (NNP Island))))) + (, ,) + (NP-SBJ-1 (NML (NNP Hong) + (NNP Kong)) + (NNP International) + (NNP Airport)) + (VP (VBD had) + (S (NP-SBJ-2 (-NONE- *-1)) + (VP (TO to) + (VP (VB change) + (NP (PRP$ its) + (NN flight) + (NNS routes)) + (S-PRP (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB make) + (S (NP-SBJ (DT this) + (NN area)) + (NP-PRD (DT a) + (NML (DT no) + (HYPH -) + (NN fly)) + (NN zone)))))))))) + (. .))) + +Leaves: +------- + 0 As + 1 its + coref: IDENT 47 1-1 its + 2 neighbor + 3 on + 4 Lantau + coref: IDENT 53 4-5 Lantau Island + name: LOC 4-5 Lantau Island + 5 Island + 6 , + 7 Hong + coref: IDENT 67 7-10 Hong Kong International Airport + name: ORG 7-10 Hong Kong International Airport + 8 Kong + 9 International + 10 Airport + 11 had + sense: have-v.12 + prop: have.02 + v * -> 11:0, had + 12 *-1 + 13 to + 14 change + sense: change-v.1 + prop: change.01 + v * -> 14:0, change + ARG0 * -> 12:0, *-1 -> 7:2, Hong Kong International Airport + ARG1 * -> 15:1, its flight routes + ARGM-PRP * -> 18:2, *PRO*-2 to make this area a no - fly zone + 15 its + coref: IDENT 67 15-15 its + 16 flight + 17 routes + 18 *PRO*-2 + 19 to + 20 make + sense: make-v.3 + prop: make.02 + v * -> 20:0, make + ARG0 * -> 18:0, *PRO*-2 -> 12:0, *-1 -> 7:2, Hong Kong International Airport + ARG1 * -> 21:2, this area a no - fly zone + LINK-PCR * -> 18:0, *PRO*-2 -> 12:0, *-1 -> 7:2, Hong Kong International Airport + * -> 18:0, *PRO*-2 -> 12:0, *-1 -> 7:2, Hong Kong International Airport + * -> 18:0, *PRO*-2 -> 12:0, *-1 -> 7:2, Hong Kong International Airport + 21 this + coref: IDENT 47 21-22 this area + 22 area + 23 a + 24 no + 25 - + 26 fly + 27 zone + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Mickey Mouse's new home, settling on Chinese land for the first time, has captured worldwide attention. + +Treebanked sentence: +-------------------- + Mickey Mouse 's new home , *PRO*-1 settling on Chinese land for the first time , has captured worldwide attention . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 131.120471778 + stop time: 138.50042123 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (NNP Mickey) + (NNP Mouse) + (POS 's)) + (JJ new) + (NN home)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG settling) + (PP-LOC (IN on) + (NP (JJ Chinese) + (NN land))) + (PP-TMP (IN for) + (NP (DT the) + (JJ first) + (NN time))))) + (, ,) + (VP (VBZ has) + (VP (VBN captured) + (NP (JJ worldwide) + (NN attention)))) + (. .))) + +Leaves: +------- + 0 Mickey + coref: IDENT 16 0-4 Mickey Mouse 's new home + 1 Mouse + 2 's + 3 new + 4 home + 5 , + 6 *PRO*-1 + 7 settling + prop: settle.03 + v * -> 7:0, settling + ARG0 * -> 6:0, *PRO*-1 -> 0:2, Mickey Mouse 's new home + ARG4 * -> 8:1, on Chinese land + ARGM-TMP * -> 11:1, for the first time + LINK-PCR * -> 6:0, *PRO*-1 -> 0:2, Mickey Mouse 's new home + * -> 0:2, Mickey Mouse 's new home + 8 on + 9 Chinese + name: NORP 9-9 Chinese + 10 land + 11 for + 12 the + 13 first + name: ORDINAL 13-13 first + 14 time + 15 , + 16 has + prop: have.01 + v * -> 16:0, has + 17 captured + sense: capture-v.2 + prop: capture.01 + v * -> 17:0, captured + ARG0 * -> 0:2, Mickey Mouse 's new home + ARGM-PRD * -> 6:2, *PRO*-1 settling on Chinese land for the first time + ARG1 * -> 18:1, worldwide attention + 18 worldwide + 19 attention + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + There's only one month left before the opening of Hong Kong Disneyland on September 12. + +Treebanked sentence: +-------------------- + There 's only one month left * before the opening of Hong Kong Disneyland on September 12 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 142.917 + stop time: 148.609941028 + +Tree: +----- + (TOP (S (NP-SBJ (EX There)) + (VP (VBZ 's) + (NP-PRD (NP (QP (RB only) + (CD one)) + (NN month)) + (VP (VBN left) + (NP (-NONE- *)) + (PP-TMP (IN before) + (NP (NP (DT the) + (NN opening)) + (PP (IN of) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Disneyland))) + (PP-TMP (IN on) + (NP (NNP September) + (CD 12)))))))) + (. .))) + +Leaves: +------- + 0 There + 1 's + sense: be-v.3 + prop: be.02 + v * -> 1:0, 's + ARG1 * -> 2:3, only one month left * before the opening of Hong Kong Disneyland on September 12 + 2 only + 3 one + ! name: DATE 3-4 one month + 4 month + 5 left + prop: leave.06 + v * -> 5:0, left + ARG1 * -> 6:0, * + ARGM-TMP * -> 7:1, before the opening of Hong Kong Disneyland on September 12 + LINK-PCR * -> 2:2, only one month + * -> 6:0, * + 6 * + 7 before + 8 the + 9 opening + 10 of + 11 Hong + coref: IDENT 12 11-12 Hong Kong + coref: IDENT 16 11-13 Hong Kong Disneyland + name: FAC 11-13 Hong Kong Disneyland + 12 Kong + 13 Disneyland + 14 on + 15 September + coref: IDENT 86 15-16 September 12 + name: DATE 15-16 September 12 + 16 12 + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The subway to Disney has already been constructed. + +Treebanked sentence: +-------------------- + The subway to Disney has already been constructed *-1 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 148.609941028 + stop time: 152.097725358 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (DT The) + (NN subway)) + (PP-DIR (IN to) + (NP (NNP Disney)))) + (VP (VBZ has) + (ADVP-TMP (RB already)) + (VP (VBN been) + (VP (VBN constructed) + (NP (-NONE- *-1))))) + (. .))) + +Leaves: +------- + 0 The + 1 subway + 2 to + 3 Disney + coref: IDENT 16 3-3 Disney + name: FAC 3-3 Disney + 4 has + prop: have.01 + v * -> 4:0, has + 5 already + 6 been + prop: be.03 + v * -> 6:0, been + 7 constructed + sense: construct-v.1 + prop: construct.01 + v * -> 7:0, constructed + ARGM-TMP * -> 5:1, already + ARG1 * -> 8:0, *-1 -> 0:2, The subway to Disney + 8 *-1 + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At subway stations, passengers will frequently press the station for Disney on ticket machines, trying to purchase + tickets to enjoy the park when it first opens. + +Treebanked sentence: +-------------------- + At subway stations , passengers will frequently press the station for Disney on ticket machines , *PRO*-1 trying *PRO*-2 + to purchase tickets *PRO*-3 to enjoy the park when it first opens *T*-4 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 152.097725358 + stop time: 160.438079191 + +Tree: +----- + (TOP (S (PP-LOC (IN At) + (NP (JJ subway) + (NNS stations))) + (, ,) + (NP-SBJ-1 (NNS passengers)) + (VP (MD will) + (ADVP-MNR (RB frequently)) + (VP (VB press) + (NP (NP (DT the) + (NN station)) + (PP (IN for) + (NP (NNP Disney)))) + (PP-LOC (IN on) + (NP (NN ticket) + (NNS machines))) + (, ,) + (S-ADV (NP-SBJ-2 (-NONE- *PRO*-1)) + (VP (VBG trying) + (S (NP-SBJ-3 (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB purchase) + (NP (NNS tickets)) + (S-PRP (NP-SBJ (-NONE- *PRO*-3)) + (VP (TO to) + (VP (VB enjoy) + (NP (DT the) + (NN park)) + (SBAR-TMP (WHADVP-4 (WRB when)) + (S (NP-SBJ (PRP it)) + (ADVP-TMP (RB first)) + (VP (VBZ opens) + (ADVP-TMP (-NONE- *T*-4))))))))))))))) + (. .))) + +Leaves: +------- + 0 At + 1 subway + 2 stations + 3 , + 4 passengers + 5 will + 6 frequently + 7 press + sense: press-v.1 + prop: press.01 + v * -> 7:0, press + ARGM-LOC * -> 0:1, At subway stations + ARG0 * -> 4:1, passengers + ARGM-MOD * -> 5:0, will + ARGM-MNR * -> 6:1, frequently + ARG1 * -> 8:2, the station for Disney + ARGM-LOC * -> 12:1, on ticket machines + ARG2 * -> 16:2, *PRO*-1 trying *PRO*-2 to purchase tickets *PRO*-3 to enjoy the park when it first + opens *T*-4 + 8 the + 9 station + 10 for + 11 Disney + coref: IDENT 16 11-11 Disney + name: FAC 11-11 Disney + 12 on + 13 ticket + 14 machines + 15 , + 16 *PRO*-1 + 17 trying + sense: try-v.1 + prop: try.01 + v * -> 17:0, trying + ARG0 * -> 16:0, *PRO*-1 -> 4:1, passengers + ARG1 * -> 18:2, *PRO*-2 to purchase tickets *PRO*-3 to enjoy the park when it first opens *T*-4 + LINK-PCR * -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 4:1, passengers + 18 *PRO*-2 + 19 to + 20 purchase + sense: purchase-v.1 + prop: purchase.01 + v * -> 20:0, purchase + ARG0 * -> 18:0, *PRO*-2 -> 16:0, *PRO*-1 -> 4:1, passengers + ARG1 * -> 21:1, tickets + ARGM-PRP * -> 22:2, *PRO*-3 to enjoy the park when it first opens *T*-4 + LINK-PCR * -> 18:0, *PRO*-2 -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 4:1, passengers + 21 tickets + 22 *PRO*-3 + 23 to + 24 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 24:0, enjoy + ARG0 * -> 22:0, *PRO*-3 -> 18:0, *PRO*-2 -> 16:0, *PRO*-1 -> 4:1, passengers + ARG1 * -> 25:1, the park + ARGM-TMP * -> 27:2, when it first opens *T*-4 + LINK-PCR * -> 22:0, *PRO*-3 -> 18:0, *PRO*-2 -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 18:0, *PRO*-2 -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 16:0, *PRO*-1 -> 4:1, passengers + * -> 4:1, passengers + 25 the + coref: IDENT 16 25-26 the park + 26 park + 27 when + 28 it + coref: IDENT 16 28-28 it + 29 first + name: ORDINAL 29-29 first + 30 opens + sense: open-v.2 + prop: open.01 + v * -> 30:0, opens + ARG1 * -> 28:1, it + ARGM-TMP * -> 29:1, first + ARGM-TMP * -> 31:0, *T*-4 -> 27:1, when + 31 *T*-4 + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Meanwhile, the Disney subway station is scheduled to open on the same day as the park. + +Treebanked sentence: +-------------------- + Meanwhile , the Disney subway station is scheduled *-1 *PRO*-2 to open on the same day as the park . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 160.438079191 + stop time: 168.633 + +Tree: +----- + (TOP (S (ADVP-TMP (RB Meanwhile)) + (, ,) + (NP-SBJ-1 (DT the) + (NNP Disney) + (NN subway) + (NN station)) + (VP (VBZ is) + (VP (VBN scheduled) + (NP-2 (-NONE- *-1)) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB open) + (PP-TMP (IN on) + (NP (NP (DT the) + (JJ same) + (NN day)) + (PP (IN as) + (NP (DT the) + (NN park)))))))))) + (. .))) + +Leaves: +------- + 0 Meanwhile + 1 , + 2 the + 3 Disney + coref: IDENT 16 3-3 Disney + name: FAC 3-3 Disney + 4 subway + 5 station + 6 is + prop: be.03 + v * -> 6:0, is + 7 scheduled + prop: schedule.01 + v * -> 7:0, scheduled + ARGM-TMP * -> 0:1, Meanwhile + ARG1 * -> 8:0, *-1 -> 2:1, the Disney subway station + ARG2 * -> 9:2, *PRO*-2 to open on the same day as the park + 8 *-1 + 9 *PRO*-2 + 10 to + 11 open + sense: open-v.2 + prop: open.01 + v * -> 11:0, open + ARG1 * -> 9:0, *PRO*-2 -> 8:0, *-1 -> 2:1, the Disney subway station + ARGM-TMP * -> 12:1, on the same day as the park + LINK-PCR * -> 9:0, *PRO*-2 -> 8:0, *-1 -> 2:1, the Disney subway station + * -> 8:0, *-1 -> 2:1, the Disney subway station + * -> 2:1, the Disney subway station + 12 on + 13 the + coref: IDENT 86 13-18 the same day as the park + name: DATE 13-15 the same day + 14 same + 15 day + 16 as + 17 the + coref: IDENT 16 17-18 the park + 18 park + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For two years, Disney has constantly maintained its mystery. + +Treebanked sentence: +-------------------- + For two years , Disney has constantly maintained its mystery . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 168.633 + stop time: 172.114574558 + +Tree: +----- + (TOP (S (PP-TMP (IN For) + (NP (CD two) + (NNS years))) + (, ,) + (NP-SBJ (NNP Disney)) + (VP (VBZ has) + (ADVP-MNR (RB constantly)) + (VP (VBN maintained) + (NP (PRP$ its) + (NN mystery)))) + (. .))) + +Leaves: +------- + 0 For + 1 two + name: DATE 1-2 two years + 2 years + 3 , + 4 Disney + coref: IDENT 16 4-4 Disney + name: ORG 4-4 Disney + 5 has + prop: have.01 + v * -> 5:0, has + 6 constantly + 7 maintained + sense: maintain-v.1 + prop: maintain.01 + v * -> 7:0, maintained + ARGM-TMP * -> 0:1, For two years + ARG0 * -> 4:1, Disney + ARGM-MNR * -> 6:1, constantly + ARG1 * -> 8:1, its mystery + 8 its + coref: IDENT 16 8-8 its + 9 mystery + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + No media have been allowed to enter for photos. + +Treebanked sentence: +-------------------- + No media have been allowed *-1 to enter for photos . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 172.114574558 + stop time: 175.652906487 + +Tree: +----- + (TOP (S (NP-SBJ-1 (DT No) + (NNS media)) + (VP (VBP have) + (VP (VBN been) + (VP (VBN allowed) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB enter) + (PP-PRP (IN for) + (NP (NNS photos))))))))) + (. .))) + +Leaves: +------- + 0 No + 1 media + 2 have + prop: have.01 + v * -> 2:0, have + 3 been + prop: be.03 + v * -> 3:0, been + 4 allowed + prop: allow.01 + v * -> 4:0, allowed + ARG1 * -> 5:2, *-1 to enter for photos + 5 *-1 + 6 to + 7 enter + sense: enter-v.1 + prop: enter.01 + v * -> 7:0, enter + ARG0 * -> 5:0, *-1 -> 0:1, No media + ARGM-PRP * -> 8:1, for photos + 8 for + 9 photos + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + We took a taxi along the path of the highway that heads toward Disney, trying to experience this mysterious park from + close by. + +Treebanked sentence: +-------------------- + We took a taxi along the path of the highway that *T*-1 heads toward Disney , *PRO*-2 trying *PRO*-3 to experience this + mysterious park from close by . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 175.652906487 + stop time: 184.695 + +Tree: +----- + (TOP (S (NP-SBJ-2 (PRP We)) + (VP (VBD took) + (NP (DT a) + (NN taxi)) + (PP-DIR (IN along) + (NP (NP (DT the) + (NN path)) + (PP (IN of) + (NP (NP (DT the) + (NN highway)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBZ heads) + (PP-DIR (IN toward) + (NP (NNP Disney)))))))))) + (, ,) + (S-ADV (NP-SBJ-3 (-NONE- *PRO*-2)) + (VP (VBG trying) + (S (NP-SBJ (-NONE- *PRO*-3)) + (VP (TO to) + (VP (VB experience) + (NP (DT this) + (JJ mysterious) + (NN park)) + (PP-DIR (IN from) + (ADVP (RB close) + (RB by))))))))) + (. .))) + +Leaves: +------- + 0 We + coref: IDENT 115 0-0 We + 1 took + sense: take-v.8 + prop: take.01 + v * -> 1:0, took + ARG0 * -> 0:1, We + ARG1 * -> 2:1, a taxi + ARGM-DIR * -> 4:1, along the path of the highway that *T*-1 heads toward Disney + ARGM-PRD * -> 16:2, *PRO*-2 trying *PRO*-3 to experience this mysterious park from close by + 2 a + coref: IDENT 116 2-3 a taxi + 3 taxi + 4 along + 5 the + 6 path + 7 of + 8 the + 9 highway + 10 that + 11 *T*-1 + 12 heads + sense: head-v.1 + prop: head.02 + v * -> 12:0, heads + ARG0 * -> 11:0, *T*-1 -> 10:1, that + ARG1 * -> 13:1, toward Disney + LINK-SLC * -> 11:0, *T*-1 -> 10:1, that + * -> 8:1, the highway + 13 toward + 14 Disney + coref: IDENT 16 14-14 Disney + name: FAC 14-14 Disney + 15 , + 16 *PRO*-2 + 17 trying + sense: try-v.1 + prop: try.01 + v * -> 17:0, trying + ARG0 * -> 16:0, *PRO*-2 -> 0:1, We + ARG1 * -> 18:2, *PRO*-3 to experience this mysterious park from close by + LINK-PCR * -> 16:0, *PRO*-2 -> 0:1, We + * -> 0:1, We + 18 *PRO*-3 + 19 to + 20 experience + sense: experience-v.1 + prop: experience.01 + v * -> 20:0, experience + ARG0 * -> 18:0, *PRO*-3 -> 16:0, *PRO*-2 -> 0:1, We + ARG1 * -> 21:1, this mysterious park + ARGM-DIR * -> 24:1, from close by + LINK-PCR * -> 18:0, *PRO*-3 -> 16:0, *PRO*-2 -> 0:1, We + * -> 16:0, *PRO*-2 -> 0:1, We + * -> 0:1, We + 21 this + coref: IDENT 16 21-23 this mysterious park + 22 mysterious + 23 park + 24 from + 25 close + 26 by + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, before any of the Disney symbols were in sight, the car was stopped by a security guard at the intersection of + the road towards Disney. + +Treebanked sentence: +-------------------- + However , before any of the Disney symbols were in sight , the car was stopped *-1 by a security guard at the + intersection of the road towards Disney . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 184.695 + stop time: 194.304970514 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (SBAR-TMP (IN before) + (S (NP-SBJ (NP (DT any)) + (PP (IN of) + (NP (DT the) + (NNP Disney) + (NNS symbols)))) + (VP (VBD were) + (PP-PRD (IN in) + (NP (NN sight)))))) + (, ,) + (NP-SBJ-1 (DT the) + (NN car)) + (VP (VBD was) + (VP (VBN stopped) + (NP (-NONE- *-1)) + (PP (IN by) + (NP-LGS (DT a) + (NN security) + (NN guard))) + (PP-LOC (IN at) + (NP (NP (DT the) + (NN intersection)) + (PP (IN of) + (NP (NP (DT the) + (NN road)) + (PP-DIR (IN towards) + (NP (NNP Disney))))))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 before + 3 any + 4 of + 5 the + 6 Disney + coref: IDENT 21 6-6 Disney + name: ORG 6-6 Disney + 7 symbols + 8 were + sense: be-v.1 + prop: be.01 + v * -> 8:0, were + ARG1 * -> 3:2, any of the Disney symbols + ARG2 * -> 9:1, in sight + 9 in + 10 sight + sense: sight-n.3 + 11 , + 12 the + coref: IDENT 116 12-13 the car + 13 car + 14 was + prop: be.03 + v * -> 14:0, was + 15 stopped + sense: stop-v.1 + prop: stop.01 + v * -> 15:0, stopped + ARGM-DIS * -> 0:1, However + ARGM-TMP * -> 2:1, before any of the Disney symbols were in sight + ARG1 * -> 16:0, *-1 -> 12:1, the car + ARG0 * -> 17:1, by a security guard + ARGM-LOC * -> 21:1, at the intersection of the road towards Disney + 16 *-1 + 17 by + 18 a + coref: IDENT 132 18-20 a security guard + 19 security + 20 guard + 21 at + 22 the + 23 intersection + 24 of + 25 the + 26 road + 27 towards + 28 Disney + coref: IDENT 16 28-28 Disney + name: ORG 28-28 Disney + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + On our way back, the taxi driver gave us an explanation after understanding our intentions. + +Treebanked sentence: +-------------------- + On our way back , the taxi driver gave us an explanation after *PRO*-1 understanding our intentions . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 194.304970514 + stop time: 200.096 + +Tree: +----- + (TOP (S (PP-TMP (IN On) + (NP (NP (PRP$ our) + (NN way)) + (ADVP-DIR (RB back)))) + (, ,) + (NP-SBJ-1 (DT the) + (NN taxi) + (NN driver)) + (VP (VBD gave) + (NP (PRP us)) + (NP (DT an) + (NN explanation)) + (PP-TMP (IN after) + (S-NOM (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG understanding) + (NP (PRP$ our) + (NNS intentions)))))) + (. .))) + +Leaves: +------- + 0 On + 1 our + coref: IDENT 115 1-1 our + 2 way + 3 back + 4 , + 5 the + 6 taxi + 7 driver + 8 gave + sense: give-v.2 + prop: give.01 + v * -> 8:0, gave + ARGM-TMP * -> 0:1, On our way back + ARG0 * -> 5:1, the taxi driver + ARG2 * -> 9:1, us + ARG1 * -> 10:1, an explanation + ARGM-TMP * -> 12:1, after *PRO*-1 understanding our intentions + 9 us + coref: IDENT 115 9-9 us + 10 an + 11 explanation + 12 after + 13 *PRO*-1 + 14 understanding + sense: understand-v.1 + prop: understand.01 + v * -> 14:0, understanding + ARG0 * -> 13:0, *PRO*-1 -> 5:1, the taxi driver + ARG1 * -> 15:1, our intentions + LINK-PCR * -> 13:0, *PRO*-1 -> 5:1, the taxi driver + * -> 5:1, the taxi driver + 15 our + coref: IDENT 115 15-15 our + 16 intentions + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Er, according to what the security guard said, for the time before everything is officially, opened,, no cars can enter + unless they have special permission. + +Treebanked sentence: +-------------------- + Er , according to what the security guard said *T*-1 , for the time before everything is officially opened , opened *-2 + , all , no cars can enter unless they have special permission . + +Speaker information: +-------------------- + name: Speaker#2 + start time: 200.096 + stop time: 213.817 + +Tree: +----- + (TOP (S (INTJ (UH Er)) + (, ,) + (PP (VBG according) + (PP (IN to) + (SBAR-NOM (WHNP-1 (WP what)) + (S (NP-SBJ (DT the) + (NN security) + (NN guard)) + (VP (VBD said) + (NP (-NONE- *T*-1))))))) + (, ,) + (PP (IN for) + (NP (NP (DT the) + (NN time)) + (SBAR-TMP (IN before) + (S (NP-SBJ-2 (NN everything)) + (VP (VBZ is) + (ADVP-MNR (RB officially)) + (EDITED (VBN opened)) + (, ,) + (VP (VBN opened) + (NP (-NONE- *-2)))))))) + (, ,) + (EDITED (DT all)) + (, ,) + (NP-SBJ (DT no) + (NNS cars)) + (VP (MD can) + (VP (VB enter) + (SBAR-ADV (IN unless) + (S (NP-SBJ (PRP they)) + (VP (VBP have) + (NP (JJ special) + (NN permission))))))) + (. .))) + +Leaves: +------- + 0 Er + 1 , + 2 according + 3 to + 4 what + 5 the + coref: IDENT 132 5-7 the security guard + 6 security + 7 guard + 8 said + sense: say-v.1 + prop: say.01 + v * -> 8:0, said + ARG0 * -> 5:1, the security guard + ARG1 * -> 9:0, *T*-1 -> 4:1, what + 9 *T*-1 + 10 , + 11 for + 12 the + 13 time + 14 before + 15 everything + 16 is + prop: be.03 + v * -> 16:0, is + 17 officially + 18 opened + sense: open-v.2 + prop: open.01 + v * -> 18:0, opened + ARG1 * -> 15:1, everything + ARGM-MNR * -> 17:1, officially + 19 , + 20 opened + sense: open-v.2 + prop: open.01 + v * -> 20:0, opened + ARGM-MNR * -> 17:1, officially + ARG1 * -> 21:0, *-2 -> 15:1, everything + 21 *-2 + 22 , + 23 all + 24 , + 25 no + 26 cars + 27 can + 28 enter + sense: enter-v.1 + prop: enter.01 + v * -> 28:0, enter + ARGM-DIS * -> 0:1, Er + ARGM-ADV * -> 2:1, according to what the security guard said *T*-1 + ARGM-TMP * -> 11:1, for the time before everything is officially opened , opened *-2 + ARG0 * -> 25:1, no cars + ARGM-MOD * -> 27:0, can + ARGM-ADV * -> 29:1, unless they have special permission + 29 unless + 30 they + 31 have + sense: have-v.2 + prop: have.03 + v * -> 31:0, have + ARG0 * -> 30:1, they + ARG1 * -> 32:1, special permission + 32 special + 33 permission + sense: permission-n.1 + prop: permission.01 + n * -> 33:0, permission + ARGM-MNR * -> 32:0, special + 34 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + No one can enter otherwise. + +Treebanked sentence: +-------------------- + No one can enter otherwise . + +Speaker information: +-------------------- + name: Speaker#2 + start time: 213.817 + stop time: 216.361 + +Tree: +----- + (TOP (S (NP-SBJ (DT No) + (NN one)) + (VP (MD can) + (VP (VB enter) + (ADVP (RB otherwise)))) + (. .))) + +Leaves: +------- + 0 No + 1 one + 2 can + 3 enter + sense: enter-v.1 + prop: enter.01 + v * -> 3:0, enter + ARG0 * -> 0:1, No one + ARGM-MOD * -> 2:0, can + ARGM-ADV * -> 4:1, otherwise + 4 otherwise + 5 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Video recording is especially forbidden. + +Treebanked sentence: +-------------------- + Video recording is especially forbidden *-1 . + +Speaker information: +-------------------- + name: Speaker#2 + start time: 216.361 + stop time: 219.626 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NNP Video) + (NN recording)) + (VP (VBZ is) + (ADVP (RB especially)) + (VP (VBN forbidden) + (NP (-NONE- *-1)))) + (. .))) + +Leaves: +------- + 0 Video + 1 recording + sense: recording-n.2 + prop: recording.01 + n * -> 1:0, recording + ARGM-MNR * -> 0:0, Video + 2 is + prop: be.03 + v * -> 2:0, is + 3 especially + 4 forbidden + prop: forbid.01 + v * -> 4:0, forbidden + ARGM-ADV * -> 3:1, especially + ARG1 * -> 5:0, *-1 -> 0:1, Video recording + 5 *-1 + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, everything is top secret. + +Treebanked sentence: +-------------------- + Ah , everything is top secret . + +Speaker information: +-------------------- + name: Speaker#2 + start time: 219.626 + stop time: 221.572 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (NN everything)) + (VP (VBZ is) + (ADJP-PRD (JJ top) + (JJ secret))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 everything + 3 is + sense: be-v.1 + prop: be.01 + v * -> 3:0, is + ARGM-DIS * -> 0:1, Ah + ARG1 * -> 2:1, everything + ARG2 * -> 4:1, top secret + 4 top + 5 secret + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + If pictures are taken without permission, %pw that is to say, it will at all times be pursued by legal action, a big + hassle. + +Treebanked sentence: +-------------------- + If pictures are taken *-1 without permission , %pw that is *PRO* to say , 0 it will at all times be pursued *-2 by legal + action , a big hassle . + +Speaker information: +-------------------- + name: Speaker#2 + start time: 221.572 + stop time: 232.326 + +Tree: +----- + (TOP (S (SBAR-ADV (IN If) + (S (NP-SBJ-1 (NNS pictures)) + (VP (VBP are) + (VP (VBN taken) + (NP (-NONE- *-1)) + (PP-MNR (IN without) + (NP (NN permission))))))) + (, ,) + (XX %pw) + (NP-SBJ (DT that)) + (VP (VBZ is) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB say) + (, ,) + (SBAR (-NONE- 0) + (S (NP-SBJ-2 (PRP it)) + (VP (MD will) + (PP-TMP (IN at) + (NP (DT all) + (NNS times))) + (VP (VB be) + (VP (VBN pursued) + (NP (-NONE- *-2)) + (PP-MNR (IN by) + (NP (JJ legal) + (NN action))) + (, ,) + (NP-ADV (DT a) + (JJ big) + (NN hassle))))))))))) + (. .))) + +Leaves: +------- + 0 If + 1 pictures + 2 are + prop: be.03 + v * -> 2:0, are + 3 taken + prop: take.01 + v * -> 3:0, taken + ARG1 * -> 4:0, *-1 -> 1:1, pictures + ARGM-MNR * -> 5:1, without permission + 4 *-1 + 5 without + 6 permission + sense: permission-n.1 + prop: permission.01 + n * -> 6:0, permission + 7 , + 8 %pw + 9 that + 10 is + sense: be-v.9 + prop: be.01 + v * -> 10:0, is + ARG1 * -> 9:1, that + ARG2 * -> 11:2, *PRO* to say , 0 it will at all times be pursued *-2 by legal action , a big hassle + 11 *PRO* + 12 to + 13 say + sense: say-v.1 + prop: say.01 + v * -> 13:0, say + ARG0 * -> 11:0, *PRO* + ARG1 * -> 15:1, 0 it will at all times be pursued *-2 by legal action , a big hassle + 14 , + 15 0 + 16 it + 17 will + 18 at + 19 all + 20 times + 21 be + prop: be.03 + v * -> 21:0, be + 22 pursued + sense: pursue-v.1 + prop: pursue.01 + v * -> 22:0, pursued + ARGM-MOD * -> 17:0, will + ARGM-TMP * -> 18:1, at all times + ARG1 * -> 23:0, *-2 -> 16:1, it + ARG0 * -> 24:1, by legal action + ARGM-PRD * -> 28:1, a big hassle + 23 *-2 + 24 by + 25 legal + 26 action + 27 , + 28 a + 29 big + 30 hassle + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Although Disney Corporation chose Hong Kong as the venue for the Chinese Disney park, what they are actually most + excited about is the mainland China tourist market. + +Treebanked sentence: +-------------------- + Although Disney Corporation chose Hong Kong as the venue for the Chinese Disney park , what they are actually most + excited about *T*-1 is the mainland China tourist market . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 232.326 + stop time: 245.948 + +Tree: +----- + (TOP (S (SBAR-ADV (IN Although) + (S (NP-SBJ (NNP Disney) + (NNP Corporation)) + (VP (VBD chose) + (NP (NNP Hong) + (NNP Kong)) + (PP-CLR (IN as) + (NP (NP (DT the) + (NN venue)) + (PP (IN for) + (NP (DT the) + (JJ Chinese) + (NNP Disney) + (NN park)))))))) + (, ,) + (SBAR-NOM-SBJ (WHNP-1 (WP what)) + (S (NP-SBJ (PRP they)) + (VP (VBP are) + (ADVP (RB actually)) + (ADJP-PRD (RBS most) + (JJ excited) + (PP (IN about) + (NP (-NONE- *T*-1))))))) + (VP (VBZ is) + (NP-PRD (DT the) + (NML (JJ mainland) + (NNP China)) + (NN tourist) + (NN market))) + (. .))) + +Leaves: +------- + 0 Although + 1 Disney + coref: IDENT 21 1-2 Disney Corporation + name: ORG 1-2 Disney Corporation + 2 Corporation + 3 chose + sense: choose-v.1 + prop: choose.01 + v * -> 3:0, chose + ARG0 * -> 1:1, Disney Corporation + ARG1 * -> 4:1, Hong Kong + ARG4 * -> 6:1, as the venue for the Chinese Disney park + 4 Hong + coref: IDENT 12 4-5 Hong Kong + name: GPE 4-5 Hong Kong + 5 Kong + 6 as + 7 the + 8 venue + 9 for + 10 the + coref: IDENT 16 10-13 the Chinese Disney park + 11 Chinese + name: NORP 11-11 Chinese + 12 Disney + name: FAC 12-12 Disney + 13 park + 14 , + 15 what + 16 they + coref: IDENT 21 16-16 they + 17 are + sense: be-v.1 + prop: be.01 + v * -> 17:0, are + ARG1 * -> 16:1, they + ARGM-ADV * -> 18:1, actually + ARG2 * -> 19:1, most excited about *T*-1 + 18 actually + 19 most + 20 excited + 21 about + 22 *T*-1 + 23 is + sense: be-v.2 + prop: be.01 + v * -> 23:0, is + ARGM-ADV * -> 0:1, Although Disney Corporation chose Hong Kong as the venue for the Chinese Disney park + ARG1 * -> 15:2, what they are actually most excited about *T*-1 + ARG2 * -> 24:1, the mainland China tourist market + 24 the + 25 mainland + 26 China + name: GPE 26-26 China + 27 tourist + 28 market + 29 . + + +======================================================================================================================== +Coreference chains for section 0: +--------------------------------- + + Chain 12 (IDENT) + 0.25-26 Hong Kong + 1.14-15 Hong Kong + 4.31-32 Hong Kong + 5.9-10 Hong Kong + 6.3-4 Hong Kong + 7.7-8 Hong Kong + 9.11-12 Hong Kong + 12.11-12 Hong Kong + 26.4-5 Hong Kong + + Chain 11 (IDENT) + 1.1-1 their + 1.5-10 these well - known cartoon images + + Chain 16 (IDENT) + 2.0-5 The world 's fifth Disney park + 4.7-7 it + 5.9-11 Hong Kong Disneyland + 6.3-5 Hong Kong Disneyland + 11.0-4 Mickey Mouse 's new home + 12.11-13 Hong Kong Disneyland + 13.3-3 Disney + 14.11-11 Disney + 14.25-26 the park + 14.28-28 it + 15.3-3 Disney + 15.17-18 the park + 16.4-4 Disney + 16.8-8 its + 18.14-14 Disney + 18.21-23 this mysterious park + 19.28-28 Disney + 26.10-13 the Chinese Disney park + + Chain 21 (IDENT) + 2.4-4 Disney + 3.5-5 Disney + 3.8-8 it + 7.13-14 Disney Corporation + 19.6-6 Disney + 26.1-2 Disney Corporation + 26.16-16 they + + Chain 41 (IDENT) + 6.12-12 2003 + 7.3-4 that year + + Chain 47 (IDENT) + 7.15-38 200 hectares of land at the foot of Lantau Island that *T*-1 was obtained *-2 following the + largest land reclamation project in recent years + 9.3-4 this area + 10.1-1 its + 10.21-22 this area + + Chain 53 (IDENT) + 7.23-24 Lantau Island + 10.4-5 Lantau Island + + Chain 67 (IDENT) + 10.7-10 Hong Kong International Airport + 10.15-15 its + + Chain 86 (IDENT) + 12.15-16 September 12 + 15.13-18 the same day as the park + + Chain 115 (IDENT) + 18.0-0 We + 20.1-1 our + 20.9-9 us + 20.15-15 our + + Chain 116 (IDENT) + 18.2-3 a taxi + 19.12-13 the car + + Chain 132 (IDENT) + 19.18-20 a security guard + 21.5-7 the security guard + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Since the implementation of the Individual Visit Scheme between Hong Kong and the mainland, more and more mainland + tourists are coming to visit Hong Kong. + +Treebanked sentence: +-------------------- + Since the implementation of the Individual Visit Scheme between Hong Kong and the mainland , more and more mainland + tourists are coming *PRO*-1 to visit Hong Kong . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 245.948 + stop time: 257.540016849 + +Tree: +----- + (TOP (S (PP-TMP (IN Since) + (NP (NP (DT the) + (NN implementation)) + (PP (IN of) + (NP (DT the) + (NNP Individual) + (NNP Visit) + (NNP Scheme))) + (PP (IN between) + (NP (NP (NNP Hong) + (NNP Kong)) + (CC and) + (NP (DT the) + (NN mainland)))))) + (, ,) + (NP-SBJ-1 (ADJP (JJR more) + (CC and) + (JJR more)) + (NN mainland) + (NNS tourists)) + (VP (VBP are) + (VP (VBG coming) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB visit) + (NP (NNP Hong) + (NNP Kong))))))) + (. .))) + +Leaves: +------- + 0 Since + 1 the + 2 implementation + sense: implementation-n.1 + prop: implementation.01 + n * -> 2:0, implementation + ARG1 * -> 3:1, of the Individual Visit Scheme + ARGM-LOC * -> 8:1, between Hong Kong and the mainland + 3 of + 4 the + name: LAW 4-7 the Individual Visit Scheme + 5 Individual + 6 Visit + 7 Scheme + 8 between + 9 Hong + coref: IDENT 8 9-10 Hong Kong + name: GPE 9-10 Hong Kong + 10 Kong + 11 and + 12 the + 13 mainland + 14 , + 15 more + 16 and + 17 more + 18 mainland + 19 tourists + 20 are + prop: be.03 + v * -> 20:0, are + 21 coming + sense: come-v.1 + prop: come.01 + v * -> 21:0, coming + ARGM-TMP * -> 0:1, Since the implementation of the Individual Visit Scheme between Hong Kong and the + mainland + ARG1 * -> 15:2, more and more mainland tourists + ARGM-PRP * -> 22:2, *PRO*-1 to visit Hong Kong + 22 *PRO*-1 + 23 to + 24 visit + sense: visit-v.1 + prop: visit.01 + v * -> 24:0, visit + ARG0 * -> 22:0, *PRO*-1 -> 15:2, more and more mainland tourists + ARG1 * -> 25:1, Hong Kong + LINK-PCR * -> 22:0, *PRO*-1 -> 15:2, more and more mainland tourists + * -> 15:2, more and more mainland tourists + 25 Hong + coref: IDENT 8 25-26 Hong Kong + name: GPE 25-26 Hong Kong + 26 Kong + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + From the beginning up till now, more than seven million individual tourists, have come to Hong Kong. + +Treebanked sentence: +-------------------- + From the beginning up till now , more than seven million individual tourists have , have come to Hong Kong . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 257.540016849 + stop time: 266.255 + +Tree: +----- + (TOP (S (PP-TMP (PP (IN From) + (NP (DT the) + (NN beginning))) + (PP (ADVP (RB up)) + (IN till) + (ADVP (RB now)))) + (, ,) + (NP-SBJ (QP (JJR more) + (IN than) + (CD seven) + (CD million)) + (JJ individual) + (NNS tourists)) + (EDITED (VBP have)) + (, ,) + (VP (VBP have) + (VP (VBN come) + (PP-DIR (IN to) + (NP (NNP Hong) + (NNP Kong))))) + (. .))) + +Leaves: +------- + 0 From + 1 the + 2 beginning + 3 up + 4 till + 5 now + 6 , + 7 more + name: CARDINAL 7-10 more than seven million + 8 than + 9 seven + 10 million + 11 individual + 12 tourists + 13 have + sense: have-v.12 + prop: have.01 + v * -> 13:0, have + 14 , + 15 have + prop: have.01 + v * -> 15:0, have + 16 come + sense: come-v.1 + prop: come.01 + v * -> 16:0, come + ARGM-TMP * -> 0:2, From the beginning up till now + ARG1 * -> 7:2, more than seven million individual tourists + ARG4 * -> 17:1, to Hong Kong + 17 to + 18 Hong + coref: IDENT 8 18-19 Hong Kong + name: GPE 18-19 Hong Kong + 19 Kong + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Well, we now, er, believe more will be coming. + +Treebanked sentence: +-------------------- + Well , we now , er , believe 0 more will be coming . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 266.255 + stop time: 272.262 + +Tree: +----- + (TOP (S (INTJ (UH Well)) + (, ,) + (NP-SBJ (PRP we)) + (ADVP (RB now)) + (, ,) + (INTJ (UH er)) + (, ,) + (VP (VBP believe) + (SBAR (-NONE- 0) + (S (NP-SBJ (JJR more)) + (VP (MD will) + (VP (VB be) + (VP (VBG coming))))))) + (. .))) + +Leaves: +------- + 0 Well + 1 , + 2 we + 3 now + 4 , + 5 er + 6 , + 7 believe + sense: believe-v.1 + prop: believe.01 + v * -> 7:0, believe + ARGM-DIS * -> 0:1, Well + ARG0 * -> 2:1, we + ARGM-TMP * -> 3:1, now + ARGM-DIS * -> 5:1, er + ARG1 * -> 8:1, 0 more will be coming + 8 0 + 9 more + 10 will + 11 be + prop: be.03 + v * -> 11:0, be + 12 coming + sense: come-v.1 + prop: come.01 + v * -> 12:0, coming + ARG1 * -> 9:1, more + ARGM-MOD * -> 10:0, will + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At this point, it has been about two years. + +Treebanked sentence: +-------------------- + At this point , it has been about two years . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 272.262 + stop time: 274.069081719 + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (DT this) + (NN point))) + (, ,) + (NP-SBJ (PRP it)) + (VP (VBZ has) + (VP (VBN been) + (NP-TMP-PRD (QP (RB about) + (CD two)) + (NNS years)))) + (. .))) + +Leaves: +------- + 0 At + 1 this + 2 point + 3 , + 4 it + 5 has + prop: have.01 + v * -> 5:0, has + 6 been + sense: be-v.6 + prop: be.01 + v * -> 6:0, been + ARGM-TMP * -> 0:1, At this point + ARG1 * -> 4:1, it + ARG2 * -> 7:2, about two years + 7 about + name: DATE 7-9 about two years + 8 two + 9 years + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Also, the current number of 34 cities will be increased. + +Treebanked sentence: +-------------------- + Also , the current number of 34 cities will be increased *-1 . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 274.069081719 + stop time: 279.47767481 + +Tree: +----- + (TOP (S (ADVP (RB Also)) + (, ,) + (NP-SBJ-1 (NP (DT the) + (JJ current) + (NN number)) + (PP (IN of) + (NP (CD 34) + (NNS cities)))) + (VP (MD will) + (VP (VB be) + (VP (VBN increased) + (NP (-NONE- *-1))))) + (. .))) + +Leaves: +------- + 0 Also + 1 , + 2 the + 3 current + 4 number + 5 of + 6 34 + name: CARDINAL 6-6 34 + 7 cities + 8 will + 9 be + prop: be.03 + v * -> 9:0, be + 10 increased + sense: increase-v.1 + prop: increase.01 + v * -> 10:0, increased + ARGM-DIS * -> 0:1, Also + ARGM-MOD * -> 8:0, will + ARG1 * -> 11:0, *-1 -> 2:2, the current number of 34 cities + 11 *-1 + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong was developed from a fishing harbor one hundred years ago to become today's international metropolis. + +Treebanked sentence: +-------------------- + Hong Kong was developed *-1 from a fishing harbor one hundred years ago *PRO*-2 to become today 's international + metropolis . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 279.47767481 + stop time: 285.571 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NNP Hong) + (NNP Kong)) + (VP (VBD was) + (VP (VBN developed) + (NP-2 (-NONE- *-1)) + (PP-CLR (IN from) + (NP (DT a) + (NN fishing) + (NN harbor))) + (ADVP-TMP (NP (QP (CD one) + (CD hundred)) + (NNS years)) + (RB ago)) + (S-PRP (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB become) + (NP-PRD (NP (NN today) + (POS 's)) + (JJ international) + (NNS metropolis))))))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 8 0-1 Hong Kong + name: GPE 0-1 Hong Kong + 1 Kong + 2 was + prop: be.03 + v * -> 2:0, was + 3 developed + prop: develop.02 + v * -> 3:0, developed + ARG1 * -> 4:0, *-1 -> 0:1, Hong Kong + ARG2 * -> 5:1, from a fishing harbor + ARGM-TMP * -> 9:3, one hundred years ago + ARGM-PRP * -> 13:2, *PRO*-2 to become today 's international metropolis + 4 *-1 + 5 from + 6 a + 7 fishing + 8 harbor + 9 one + name: DATE 9-12 one hundred years ago + 10 hundred + 11 years + 12 ago + 13 *PRO*-2 + 14 to + 15 become + sense: become-v.1 + prop: become.01 + v * -> 15:0, become + ARG1 * -> 13:0, *PRO*-2 -> 4:0, *-1 -> 0:1, Hong Kong + ARG2 * -> 16:2, today 's international metropolis + LINK-PCR * -> 13:0, *PRO*-2 -> 4:0, *-1 -> 0:1, Hong Kong + * -> 4:0, *-1 -> 0:1, Hong Kong + * -> 0:1, Hong Kong + 16 today + name: DATE 16-16 today + 17 's + 18 international + 19 metropolis + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Here, eastern and western cultures have gathered, and the new and the old coexist. + +Treebanked sentence: +-------------------- + Here , eastern and western cultures have gathered , and the new and the old coexist . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 285.571 + stop time: 290.5 + +Tree: +----- + (TOP (S (ADVP-LOC (RB Here)) + (, ,) + (S (NP-SBJ (ADJP (JJ eastern) + (CC and) + (JJ western)) + (NNS cultures)) + (VP (VBP have) + (VP (VBN gathered)))) + (, ,) + (CC and) + (S (NP-SBJ (NP (DT the) + (JJ new)) + (CC and) + (NP (DT the) + (JJ old))) + (VP (VBP coexist))) + (. .))) + +Leaves: +------- + 0 Here + 1 , + 2 eastern + 3 and + 4 western + 5 cultures + 6 have + prop: have.01 + v * -> 6:0, have + 7 gathered + sense: gather-v.3 + prop: gather.01 + v * -> 7:0, gathered + ARG1 * -> 2:2, eastern and western cultures + 8 , + 9 and + 10 the + 11 new + 12 and + 13 the + 14 old + 15 coexist + prop: co-exist.01 + v * -> 15:0, coexist + ARG1 * -> 10:2, the new and the old + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + When in Hong Kong, you can wander among skyscrapers, heartily enjoy shopping sprees in well-known stores and malls for + goods from various countries, and taste delicious snacks from all over the world at tea shops or at street stands in + Mong Kok. + +Treebanked sentence: +-------------------- + When in Hong Kong *T*-1 , you can wander among skyscrapers , heartily enjoy shopping sprees in well - known stores and + malls for goods from various countries , and taste delicious snacks from all over the world at tea shops or at street + stands in Mong Kok . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 290.5 + stop time: 309.50294861 + +Tree: +----- + (TOP (S (SBAR-TMP (WHADVP-1 (WRB When)) + (FRAG (PP-LOC (IN in) + (NP (NNP Hong) + (NNP Kong))) + (ADVP-TMP (-NONE- *T*-1)))) + (, ,) + (NP-SBJ (PRP you)) + (VP (MD can) + (VP (VP (VB wander) + (PP-LOC (IN among) + (NP (NNS skyscrapers)))) + (, ,) + (ADVP-MNR (RB heartily)) + (VP (VBP enjoy) + (NP (NN shopping) + (NNS sprees)) + (PP-LOC (IN in) + (NP (NP (ADJP (RB well) + (HYPH -) + (VBN known)) + (NNS stores)) + (CC and) + (NP (NP (NNS malls)) + (PP (IN for) + (NP (NP (NNS goods)) + (PP (IN from) + (NP (JJ various) + (NNS countries))))))))) + (, ,) + (CC and) + (VP (VB taste) + (NP (NP (JJ delicious) + (NNS snacks)) + (PP (IN from) + (PP (ADVP (RB all)) + (IN over) + (NP (DT the) + (NN world))))) + (PP-LOC (PP (IN at) + (NP (NN tea) + (NNS shops))) + (CC or) + (PP (IN at) + (NP (NP (NN street) + (NNS stands)) + (PP-LOC (IN in) + (NP (NNP Mong) + (NNP Kok))))))))) + (. .))) + +Leaves: +------- + 0 When + 1 in + 2 Hong + coref: IDENT 8 2-3 Hong Kong + name: GPE 2-3 Hong Kong + 3 Kong + 4 *T*-1 + 5 , + 6 you + 7 can + 8 wander + sense: wander-v.1 + prop: wander.01 + v * -> 8:0, wander + ARGM-TMP * -> 0:2, When in Hong Kong *T*-1 + ARG0 * -> 6:1, you + ARGM-MOD * -> 7:0, can + ARGM-LOC * -> 9:1, among skyscrapers + 9 among + 10 skyscrapers + 11 , + 12 heartily + 13 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 13:0, enjoy + ARGM-TMP * -> 0:2, When in Hong Kong *T*-1 + ARG0 * -> 6:1, you + ARGM-MOD * -> 7:0, can + ARGM-MNR * -> 12:1, heartily + ARG1 * -> 14:1, shopping sprees + ARGM-LOC * -> 16:1, in well - known stores and malls for goods from various countries + 14 shopping + 15 sprees + 16 in + 17 well + 18 - + 19 known + prop: know.01 + v * -> 19:0, known + ARGM-EXT * -> 17:0, well + ARG1 * -> 20:0, stores + 20 stores + 21 and + 22 malls + 23 for + 24 goods + 25 from + 26 various + 27 countries + 28 , + 29 and + 30 taste + sense: taste-v.2 + prop: taste.01 + v * -> 30:0, taste + ARGM-TMP * -> 0:2, When in Hong Kong *T*-1 + ARG0 * -> 6:1, you + ARGM-MOD * -> 7:0, can + ARG1 * -> 31:2, delicious snacks from all over the world + ARGM-LOC * -> 38:2, at tea shops or at street stands in Mong Kok + 31 delicious + 32 snacks + 33 from + 34 all + 35 over + 36 the + 37 world + 38 at + 39 tea + 40 shops + 41 or + 42 at + 43 street + 44 stands + 45 in + 46 Mong + name: LOC 46-47 Mong Kok + 47 Kok + 48 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + You can go to burn incense and make a vow at the Repulse Bay, where all deities gather. + +Treebanked sentence: +-------------------- + You can go *PRO*-1 to burn incense and make a vow at the Repulse Bay , where all deities gather *T*-2 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 313.474 + stop time: 317.381 + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP You)) + (VP (MD can) + (VP (VP (VB go) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB burn) + (NP (NN incense)))))) + (CC and) + (VP (VB make) + (NP (DT a) + (NN vow)) + (PP-LOC (IN at) + (NP (NP (DT the) + (NNP Repulse) + (NNP Bay)) + (, ,) + (SBAR (WHADVP-2 (WRB where)) + (S (NP-SBJ (DT all) + (NNS deities)) + (VP (VBP gather) + (ADVP-LOC (-NONE- *T*-2)))))))))) + (. .))) + +Leaves: +------- + 0 You + 1 can + 2 go + sense: go-v.1 + prop: go.05 + v * -> 2:0, go + ARG0 * -> 0:1, You + ARGM-MOD * -> 1:0, can + ARG1 * -> 3:2, *PRO*-1 to burn incense + 3 *PRO*-1 + 4 to + 5 burn + sense: burn-v.1 + prop: burn.01 + v * -> 5:0, burn + ARG0 * -> 3:0, *PRO*-1 -> 0:1, You + ARG1 * -> 6:1, incense + LINK-PCR * -> 3:0, *PRO*-1 -> 0:1, You + * -> 0:1, You + 6 incense + 7 and + 8 make + sense: make-v.1 + prop: make.01 + v * -> 8:0, make + ARG0 * -> 0:1, You + ARGM-MOD * -> 1:0, can + ARG1 * -> 9:1, a vow + ARGM-LOC * -> 11:1, at the Repulse Bay , where all deities gather *T*-2 + 9 a + 10 vow + 11 at + 12 the + name: LOC 12-14 the Repulse Bay + 13 Repulse + 14 Bay + 15 , + 16 where + 17 all + 18 deities + 19 gather + sense: gather-v.2 + prop: gather.01 + v * -> 19:0, gather + ARG1 * -> 17:1, all deities + ARGM-LOC * -> 20:0, *T*-2 -> 16:1, where + 20 *T*-2 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + You can enjoy the most charming sun-filled sandy beaches in Hong Kong. + +Treebanked sentence: +-------------------- + You can enjoy the most charming sun - filled sandy beaches in Hong Kong . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 317.381 + stop time: 320.669 + +Tree: +----- + (TOP (S (NP-SBJ (PRP You)) + (VP (MD can) + (VP (VB enjoy) + (NP (NP (DT the) + (ADJP (RBS most) + (JJ charming)) + (ADJP (NN sun) + (HYPH -) + (VBN filled)) + (JJ sandy) + (NNS beaches)) + (PP-LOC (IN in) + (NP (NNP Hong) + (NNP Kong)))))) + (. .))) + +Leaves: +------- + 0 You + 1 can + 2 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 2:0, enjoy + ARG0 * -> 0:1, You + ARGM-MOD * -> 1:0, can + ARG1 * -> 3:2, the most charming sun - filled sandy beaches in Hong Kong + 3 the + 4 most + 5 charming + 6 sun + 7 - + 8 filled + prop: fill.01 + v * -> 8:0, filled + ARG2 * -> 6:0, sun + ARG1 * -> 9:0, sandy + -> 10:0, beaches + 9 sandy + 10 beaches + 11 in + 12 Hong + coref: IDENT 8 12-13 Hong Kong + name: GPE 12-13 Hong Kong + 13 Kong + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + You can ascend Victoria Peak to get a panoramic view of Victoria Harbor's beautiful scenery. + +Treebanked sentence: +-------------------- + You can ascend Victoria Peak *PRO*-1 to get a panoramic view of Victoria Harbor 's beautiful scenery . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 325.695 + stop time: 331.468 + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP You)) + (VP (MD can) + (VP (VB ascend) + (NP (NNP Victoria) + (NNP Peak)) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB get) + (NP (NP (DT a) + (JJ panoramic) + (NN view)) + (PP (IN of) + (NP (NP (NNP Victoria) + (NNP Harbor) + (POS 's)) + (JJ beautiful) + (NN scenery))))))))) + (. .))) + +Leaves: +------- + 0 You + 1 can + 2 ascend + sense: ascend-v.1 + prop: ascend.01 + v * -> 2:0, ascend + ARG0 * -> 0:1, You + ARGM-MOD * -> 1:0, can + ARG1 * -> 3:1, Victoria Peak + ARGM-PRP * -> 5:2, *PRO*-1 to get a panoramic view of Victoria Harbor 's beautiful scenery + 3 Victoria + name: LOC 3-4 Victoria Peak + 4 Peak + 5 *PRO*-1 + 6 to + 7 get + sense: get-v.1 + prop: get.01 + v * -> 7:0, get + ARG0 * -> 5:0, *PRO*-1 -> 0:1, You + ARG1 * -> 8:2, a panoramic view of Victoria Harbor 's beautiful scenery + LINK-PCR * -> 5:0, *PRO*-1 -> 0:1, You + * -> 0:1, You + 8 a + 9 panoramic + 10 view + 11 of + 12 Victoria + name: LOC 12-14 Victoria Harbor 's + 13 Harbor + 14 's + 15 beautiful + 16 scenery + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Or hop onto a trolley with over a century of history, and feel the city's blend of the old and the modern in slow + motion. + +Treebanked sentence: +-------------------- + Or *PRO* hop onto a trolley with over a century of history , and feel the city 's blend of the old and the modern in + slow motion . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 338.27 + stop time: 347.523 + +Tree: +----- + (TOP (S-IMP (CC Or) + (NP-SBJ (-NONE- *PRO*)) + (VP (VP (VB hop) + (PP-CLR (IN onto) + (NP (NP (DT a) + (NN trolley)) + (PP (IN with) + (NP (NP (QP (RB over) + (DT a)) + (NN century)) + (PP (IN of) + (NP (NN history)))))))) + (, ,) + (CC and) + (VP (VB feel) + (NP (NP (NP (DT the) + (NN city) + (POS 's)) + (NN blend)) + (PP (IN of) + (NP (NP (DT the) + (JJ old)) + (CC and) + (NP (DT the) + (JJ modern))))) + (PP-MNR (IN in) + (NP (JJ slow) + (NN motion))))) + (. .))) + +Leaves: +------- + 0 Or + 1 *PRO* + 2 hop + sense: hop-v.1 + prop: hop.01 + v * -> 2:0, hop + ARGM-DIS * -> 0:0, Or + ARG0 * -> 1:0, *PRO* + ARGM-DIR * -> 3:1, onto a trolley with over a century of history + 3 onto + 4 a + 5 trolley + 6 with + 7 over + name: DATE 7-9 over a century + 8 a + 9 century + 10 of + 11 history + 12 , + 13 and + 14 feel + sense: feel-v.1 + prop: feel.03 + v * -> 14:0, feel + ARGM-DIS * -> 0:0, Or + ARG0 * -> 1:0, *PRO* + ARG1 * -> 15:3, the city 's blend of the old and the modern + ARGM-MNR * -> 25:1, in slow motion + 15 the + coref: IDENT 8 15-17 the city 's + 16 city + 17 's + 18 blend + 19 of + 20 the + 21 old + 22 and + 23 the + 24 modern + 25 in + 26 slow + 27 motion + 28 . + + +======================================================================================================================== +Coreference chains for section 1: +--------------------------------- + + Chain 8 (IDENT) + 27.9-10 Hong Kong + 27.25-26 Hong Kong + 28.18-19 Hong Kong + 32.0-1 Hong Kong + 34.2-3 Hong Kong + 36.12-13 Hong Kong + 38.15-17 the city 's + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + After dark, cruise Victoria Harbor at night to enjoy the enchanting evening view. + +Treebanked sentence: +-------------------- + After dark , *PRO* cruise Victoria Harbor at night *PRO*-1 to enjoy the enchanting evening view . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 352.052 + stop time: 356.739 + +Tree: +----- + (TOP (S-IMP (PP-TMP (IN After) + (NP (NN dark))) + (, ,) + (NP-SBJ-1 (-NONE- *PRO*)) + (VP (VB cruise) + (NP (NNP Victoria) + (NNP Harbor)) + (PP-TMP (IN at) + (NP (NN night))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB enjoy) + (NP (DT the) + (VBG enchanting) + (NN evening) + (NN view)))))) + (. .))) + +Leaves: +------- + 0 After + 1 dark + 2 , + 3 *PRO* + 4 cruise + sense: cruise-v.2 + prop: cruise.01 + v * -> 4:0, cruise + ARGM-TMP * -> 0:1, After dark + ARG0 * -> 3:0, *PRO* + ARGM-LOC * -> 5:1, Victoria Harbor + ARGM-TMP * -> 7:1, at night + ARGM-PRP * -> 9:2, *PRO*-1 to enjoy the enchanting evening view + 5 Victoria + name: LOC 5-6 Victoria Harbor + 6 Harbor + 7 at + 8 night + 9 *PRO*-1 + 10 to + 11 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 11:0, enjoy + ARG0 * -> 9:0, *PRO*-1 -> 3:0, *PRO* + ARG1 * -> 12:1, the enchanting evening view + LINK-PCR * -> 9:0, *PRO*-1 -> 3:0, *PRO* + * -> 3:0, *PRO* + 12 the + 13 enchanting + sense: enchant-v.1 + prop: enchant.01 + v * -> 13:0, enchanting + ARG0 * -> 14:0, evening + -> 15:0, view + 14 evening + 15 view + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Every corner of Hong Kong is filled with fun. + +Treebanked sentence: +-------------------- + Every corner of Hong Kong is filled *-1 with fun . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 356.739 + stop time: 360.748 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (DT Every) + (NN corner)) + (PP (IN of) + (NP (NNP Hong) + (NNP Kong)))) + (VP (VBZ is) + (VP (VBN filled) + (NP (-NONE- *-1)) + (PP-CLR (IN with) + (NP (NN fun))))) + (. .))) + +Leaves: +------- + 0 Every + 1 corner + 2 of + 3 Hong + coref: IDENT 8 3-4 Hong Kong + name: GPE 3-4 Hong Kong + 4 Kong + 5 is + prop: be.03 + v * -> 5:0, is + 6 filled + prop: fill.01 + v * -> 6:0, filled + ARG1 * -> 7:0, *-1 -> 0:2, Every corner of Hong Kong + ARG2 * -> 8:1, with fun + 7 *-1 + 8 with + 9 fun + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Meanwhile, as various new items are constantly being added, what other kinds of pleasant surprises will the Hong Kong + tourism industry bring us ? + +Treebanked sentence: +-------------------- + Meanwhile , as various new items are constantly being added *-1 , what other kinds of pleasant surprises will the Hong + Kong tourism industry bring us *T*-2 ? + +Speaker information: +-------------------- + name: Speaker#1 + start time: 360.748 + stop time: 368.472 + +Tree: +----- + (TOP (SBARQ (ADVP-TMP (RB Meanwhile)) + (, ,) + (SBAR-ADV (IN as) + (S (NP-SBJ-1 (JJ various) + (JJ new) + (NNS items)) + (VP (VBP are) + (ADVP-MNR (RB constantly)) + (VP (VBG being) + (VP (VBN added) + (NP (-NONE- *-1))))))) + (, ,) + (WHNP-2 (WHNP (WDT what) + (JJ other) + (NNS kinds)) + (PP (IN of) + (NP (JJ pleasant) + (NNS surprises)))) + (SQ (MD will) + (NP-SBJ (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN tourism) + (NN industry)) + (VP (VB bring) + (NP (PRP us)) + (NP (-NONE- *T*-2)))) + (. ?))) + +Leaves: +------- + 0 Meanwhile + 1 , + 2 as + 3 various + 4 new + 5 items + 6 are + prop: be.03 + v * -> 6:0, are + 7 constantly + 8 being + prop: be.03 + v * -> 8:0, being + 9 added + sense: add-v.1 + prop: add.02 + v * -> 9:0, added + ARGM-MNR * -> 7:1, constantly + ARG1 * -> 10:0, *-1 -> 3:1, various new items + 10 *-1 + 11 , + 12 what + 13 other + 14 kinds + 15 of + 16 pleasant + 17 surprises + 18 will + 19 the + 20 Hong + coref: IDENT 8 20-21 Hong Kong + name: GPE 20-21 Hong Kong + 21 Kong + 22 tourism + 23 industry + 24 bring + sense: bring-v.2 + prop: bring.01 + v * -> 24:0, bring + ARGM-TMP * -> 0:1, Meanwhile + ARGM-ADV * -> 2:1, as various new items are constantly being added *-1 + ARGM-MOD * -> 18:0, will + ARG0 * -> 19:1, the Hong Kong tourism industry + ARG2 * -> 25:1, us + ARG1 * -> 26:0, *T*-2 -> 12:2, what other kinds of pleasant surprises + 25 us + 26 *T*-2 + 27 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Over the past 28 years, the Ocean Park has basically been a must-see destination for tourists coming to Hong Kong. + +Treebanked sentence: +-------------------- + Over the past 28 years , the Ocean Park has basically been a *PRO* must - see destination for tourists coming to Hong + Kong . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 368.472 + stop time: 375.548 + +Tree: +----- + (TOP (S (PP-TMP (IN Over) + (NP (DT the) + (JJ past) + (CD 28) + (NNS years))) + (, ,) + (NP-SBJ (DT the) + (NNP Ocean) + (NNP Park)) + (VP (VBZ has) + (ADVP (RB basically)) + (VP (VBN been) + (NP-PRD (NP (DT a) + (NML (S (NP-SBJ (-NONE- *PRO*)) + (VP (MD must) + (HYPH -) + (VP (VB see))))) + (NN destination)) + (PP (IN for) + (NP (NP (NNS tourists)) + (VP (VBG coming) + (PP-DIR (IN to) + (NP (NNP Hong) + (NNP Kong))))))))) + (. .))) + +Leaves: +------- + 0 Over + 1 the + name: DATE 1-4 the past 28 years + 2 past + 3 28 + 4 years + 5 , + 6 the + coref: IDENT 18 6-8 the Ocean Park + name: FAC 6-8 the Ocean Park + 7 Ocean + 8 Park + 9 has + prop: have.01 + v * -> 9:0, has + 10 basically + 11 been + sense: be-v.1 + prop: be.01 + v * -> 11:0, been + ARGM-TMP * -> 0:1, Over the past 28 years + ARG1 * -> 6:1, the Ocean Park + ARGM-ADV * -> 10:1, basically + ARG2 * -> 12:2, a *PRO* must - see destination for tourists coming to Hong Kong + 12 a + 13 *PRO* + 14 must + 15 - + 16 see + 17 destination + 18 for + 19 tourists + 20 coming + sense: come-v.1 + prop: come.01 + v * -> 20:0, coming + ARG1 * -> 19:1, tourists + ARG4 * -> 21:1, to Hong Kong + 21 to + 22 Hong + coref: IDENT 8 22-23 Hong Kong + name: GPE 22-23 Hong Kong + 23 Kong + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Watch spectacular performances by dolphins and sea lions at the Ocean Theater, and experience passionate screaming and + accelerating heart-beat adventures on amusement rides. + +Treebanked sentence: +-------------------- + *PRO* Watch spectacular performances by dolphins and sea lions at the Ocean Theater , and experience passionate + screaming and accelerating heart - beat adventures on amusement rides . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 383.05 + stop time: 393.586 + +Tree: +----- + (TOP (S-IMP (NP-SBJ (-NONE- *PRO*)) + (VP (VP (VB Watch) + (NP (NP (JJ spectacular) + (NNS performances)) + (PP (IN by) + (NP (NP (NNS dolphins)) + (CC and) + (NP (NN sea) + (NNS lions))))) + (PP-LOC (IN at) + (NP (DT the) + (NNP Ocean) + (NNP Theater)))) + (, ,) + (CC and) + (VP (VB experience) + (NP (NP (JJ passionate) + (NN screaming)) + (CC and) + (NP (NML (VBG accelerating) + (NN heart) + (HYPH -) + (NN beat)) + (NNS adventures))) + (PP-LOC (IN on) + (NP (NN amusement) + (NNS rides))))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Watch + sense: watch-v.1 + prop: watch.01 + v * -> 1:0, Watch + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:2, spectacular performances by dolphins and sea lions + ARGM-LOC * -> 9:1, at the Ocean Theater + 2 spectacular + 3 performances + 4 by + 5 dolphins + 6 and + 7 sea + 8 lions + 9 at + 10 the + name: FAC 10-12 the Ocean Theater + 11 Ocean + 12 Theater + 13 , + 14 and + 15 experience + sense: experience-v.1 + prop: experience.01 + v * -> 15:0, experience + ARG0 * -> 0:0, *PRO* + ARG1 * -> 16:2, passionate screaming and accelerating heart - beat adventures + ARGM-LOC * -> 24:1, on amusement rides + 16 passionate + 17 screaming + 18 and + 19 accelerating + sense: accelerate-v.1 + prop: accelerate.01 + v * -> 19:0, accelerating + ARG1 * -> 20:0, heart + -> 22:0, beat + 20 heart + 21 - + 22 beat + 23 adventures + 24 on + 25 amusement + 26 rides + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Or ride the giant Ferris wheel to get a bird's eye view from high above of the magnificent panorama of Hong Kong Island + and the South China Sea. + +Treebanked sentence: +-------------------- + Or *PRO* ride the giant Ferris wheel *PRO*-1 to get a bird 's eye view from high above of the magnificent panorama of + Hong Kong Island and the South China Sea . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 400.094 + stop time: 407.565290649 + +Tree: +----- + (TOP (S-IMP (CC Or) + (NP-SBJ-1 (-NONE- *PRO*)) + (VP (VB ride) + (NP (DT the) + (JJ giant) + (NN Ferris) + (NN wheel)) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB get) + (NP (NP (DT a) + (NML (NP (NN bird) + (POS 's)) + (NN eye)) + (NN view)) + (PP-DIR (IN from) + (PP (ADVP (RB high)) + (IN above) + (PP (IN of) + (NP (NP (DT the) + (JJ magnificent) + (NN panorama)) + (PP (IN of) + (NP (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Island)) + (CC and) + (NP (DT the) + (NML (NNP South) + (NNP China)) + (NNP Sea))))))))))))) + (. .))) + +Leaves: +------- + 0 Or + 1 *PRO* + 2 ride + sense: ride-v.1 + prop: ride.01 + v * -> 2:0, ride + ARGM-DIS * -> 0:0, Or + ARG0 * -> 1:0, *PRO* + ARG1 * -> 3:1, the giant Ferris wheel + ARGM-PRP * -> 7:2, *PRO*-1 to get a bird 's eye view from high above of the magnificent panorama of Hong + Kong Island and the South China Sea + 3 the + 4 giant + 5 Ferris + 6 wheel + 7 *PRO*-1 + 8 to + 9 get + sense: get-v.1 + prop: get.01 + v * -> 9:0, get + ARG0 * -> 7:0, *PRO*-1 -> 1:0, *PRO* + ARG1 * -> 10:2, a bird 's eye view from high above of the magnificent panorama of Hong Kong Island and + the South China Sea + LINK-PCR * -> 7:0, *PRO*-1 -> 1:0, *PRO* + * -> 1:0, *PRO* + 10 a + 11 bird + 12 's + 13 eye + sense: eye-n.1 + 14 view + 15 from + 16 high + 17 above + 18 of + 19 the + 20 magnificent + 21 panorama + 22 of + 23 Hong + coref: IDENT 8 23-25 Hong Kong Island + name: LOC 23-25 Hong Kong Island + 24 Kong + 25 Island + 26 and + 27 the + name: LOC 27-30 the South China Sea + 28 South + 29 China + 30 Sea + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These items, which were the pride of the Ocean Park, have made this place the most popular tourist attraction in Hong + Kong for some time. + +Treebanked sentence: +-------------------- + These items , which *T*-1 were the pride of the Ocean Park , have made this place the most popular tourist attraction in + Hong Kong for some time . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 407.565290649 + stop time: 417.607 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT These) + (NNS items)) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD were) + (NP-PRD (NP (DT the) + (NN pride)) + (PP (IN of) + (NP (DT the) + (NNP Ocean) + (NNP Park)))))))) + (, ,) + (VP (VBP have) + (VP (VBN made) + (S (NP-SBJ (DT this) + (NN place)) + (NP-PRD (NP (DT the) + (ADJP (RBS most) + (JJ popular)) + (NN tourist) + (NN attraction)) + (PP-LOC (IN in) + (NP (NNP Hong) + (NNP Kong))))) + (PP-TMP (IN for) + (NP (DT some) + (NN time))))) + (. .))) + +Leaves: +------- + 0 These + 1 items + 2 , + 3 which + 4 *T*-1 + 5 were + sense: be-v.2 + prop: be.01 + v * -> 5:0, were + ARG1 * -> 4:0, *T*-1 -> 3:1, which + ARG2 * -> 6:2, the pride of the Ocean Park + LINK-SLC * -> 4:0, *T*-1 -> 3:1, which + * -> 0:1, These items + 6 the + 7 pride + 8 of + 9 the + coref: IDENT 18 9-11 the Ocean Park + name: LOC 9-11 the Ocean Park + 10 Ocean + 11 Park + 12 , + 13 have + prop: have.01 + v * -> 13:0, have + 14 made + sense: make-v.3 + prop: make.02 + v * -> 14:0, made + ARG0 * -> 0:2, These items , which *T*-1 were the pride of the Ocean Park + ARG1 * -> 15:2, this place the most popular tourist attraction in Hong Kong + ARGM-TMP * -> 25:1, for some time + 15 this + coref: IDENT 18 15-16 this place + 16 place + 17 the + 18 most + 19 popular + 20 tourist + 21 attraction + 22 in + 23 Hong + coref: IDENT 8 23-24 Hong Kong + name: GPE 23-24 Hong Kong + 24 Kong + 25 for + 26 some + 27 time + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, since Disney entered Hong Kong, the Ocean Park, sharing the same city as Disney, has felt the pressure of + competition. + +Treebanked sentence: +-------------------- + However , since Disney entered Hong Kong , the Ocean Park , *PRO*-1 sharing the same city as Disney , has felt the + pressure of competition . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 426.187 + stop time: 433.801 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (SBAR-TMP (IN since) + (S (NP-SBJ (NNP Disney)) + (VP (VBD entered) + (NP (NNP Hong) + (NNP Kong))))) + (, ,) + (NP-SBJ-1 (DT the) + (NNP Ocean) + (NNP Park)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG sharing) + (NP (NP (DT the) + (JJ same) + (NN city)) + (PP (IN as) + (NP (NNP Disney)))))) + (, ,) + (VP (VBZ has) + (VP (VBD felt) + (NP (NP (DT the) + (NN pressure)) + (PP (IN of) + (NP (NN competition)))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 since + 3 Disney + coref: IDENT 57 3-3 Disney + name: ORG 3-3 Disney + 4 entered + sense: enter-v.1 + prop: enter.01 + v * -> 4:0, entered + ARG0 * -> 3:1, Disney + ARG1 * -> 5:1, Hong Kong + 5 Hong + coref: IDENT 8 5-6 Hong Kong + name: GPE 5-6 Hong Kong + 6 Kong + 7 , + 8 the + coref: IDENT 18 8-10 the Ocean Park + name: ORG 8-10 the Ocean Park + 9 Ocean + 10 Park + 11 , + 12 *PRO*-1 + 13 sharing + prop: share.01 + v * -> 13:0, sharing + ARG0 * -> 12:0, *PRO*-1 -> 8:1, the Ocean Park + ARG1 * -> 14:2, the same city as Disney + LINK-PCR * -> 12:0, *PRO*-1 -> 8:1, the Ocean Park + * -> 8:1, the Ocean Park + 14 the + 15 same + 16 city + 17 as + 18 Disney + coref: IDENT 57 18-18 Disney + name: ORG 18-18 Disney + 19 , + 20 has + prop: have.01 + v * -> 20:0, has + 21 felt + sense: feel-v.1 + prop: feel.01 + v * -> 21:0, felt + ARGM-DIS * -> 0:1, However + ARGM-TMP * -> 2:1, since Disney entered Hong Kong + ARG0 * -> 8:1, the Ocean Park + ARGM-PRD * -> 12:2, *PRO*-1 sharing the same city as Disney + ARG1 * -> 22:2, the pressure of competition + 22 the + 23 pressure + 24 of + 25 competition + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + To improve the park's brand, they are planning to invest 5.5 billion in a renovation project starting in 2006. + +Treebanked sentence: +-------------------- + *PRO* To improve the park 's brand , they are planning *PRO*-1 to invest 5.5 billion in a renovation project starting in + 2006 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 433.801 + stop time: 440.926705981 + +Tree: +----- + (TOP (S (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO To) + (VP (VB improve) + (NP (NP (DT the) + (NN park) + (POS 's)) + (NN brand))))) + (, ,) + (NP-SBJ-1 (PRP they)) + (VP (VBP are) + (VP (VBG planning) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB invest) + (NP (QP (CD 5.5) + (CD billion))) + (PP-CLR (IN in) + (NP (NP (DT a) + (NN renovation) + (NN project)) + (VP (VBG starting) + (PP-TMP (IN in) + (NP (CD 2006))))))))))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 To + 2 improve + sense: improve-v.1 + prop: improve.01 + v * -> 2:0, improve + ARG0 * -> 0:0, *PRO* + ARG1 * -> 3:2, the park 's brand + 3 the + coref: IDENT 18 3-5 the park 's + 4 park + 5 's + 6 brand + 7 , + 8 they + coref: IDENT 18 8-8 they + 9 are + prop: be.03 + v * -> 9:0, are + 10 planning + sense: plan-v.1 + prop: plan.01 + v * -> 10:0, planning + ARGM-PRP * -> 0:2, *PRO* To improve the park 's brand + ARG0 * -> 8:1, they + ARG1 * -> 11:2, *PRO*-1 to invest 5.5 billion in a renovation project starting in 2006 + 11 *PRO*-1 + 12 to + 13 invest + sense: invest-v.1 + prop: invest.01 + v * -> 13:0, invest + ARG0 * -> 11:0, *PRO*-1 -> 8:1, they + ARG1 * -> 14:2, 5.5 billion + ARG2 * -> 16:1, in a renovation project starting in 2006 + LINK-PCR * -> 11:0, *PRO*-1 -> 8:1, they + * -> 8:1, they + 14 5.5 + name: MONEY 14-15 5.5 billion + 15 billion + 16 in + 17 a + 18 renovation + 19 project + 20 starting + sense: start-v.1 + prop: start.01 + v * -> 20:0, starting + ARG1 * -> 17:1, a renovation project + ARGM-TMP * -> 21:1, in 2006 + 21 in + 22 2006 + name: DATE 22-22 2006 + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It seems that for the future, we have a scheme, a major renovation plan. + +Treebanked sentence: +-------------------- + It seems that for the future , we have a scheme , a major renovation plan . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 451.482 + stop time: 456.239 + +Tree: +----- + (TOP (S (NP-SBJ (PRP It)) + (VP (VBZ seems) + (SBAR (IN that) + (S (PP-TMP (IN for) + (NP (DT the) + (NN future))) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBP have) + (NP (NP (DT a) + (NN scheme)) + (, ,) + (NP (DT a) + (JJ major) + (NN renovation) + (NN plan))))))) + (. .))) + +Leaves: +------- + 0 It + 1 seems + sense: seem-v.1 + prop: seem.01 + v * -> 1:0, seems + ARG1 * -> 2:1, that for the future , we have a scheme , a major renovation plan + 2 that + 3 for + 4 the + 5 future + 6 , + 7 we + coref: IDENT 18 7-7 we + 8 have + sense: have-v.2 + prop: have.03 + v * -> 8:0, have + ARGM-TMP * -> 3:1, for the future + ARG0 * -> 7:1, we + ARG1 * -> 9:2, a scheme , a major renovation plan + 9 a + coref: APPOS HEAD 80 9-10 a scheme + coref: IDENT 79 9-15 a scheme , a major renovation plan + 10 scheme + 11 , + 12 a + coref: APPOS ATTRIB 80 12-15 a major renovation plan + 13 major + 14 renovation + 15 plan + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + That is, the entire park will be divided into seven sections for renovation. + +Treebanked sentence: +-------------------- + That is , the entire park will be divided *-1 into seven sections for renovation . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 456.239 + stop time: 460.914 + +Tree: +----- + (TOP (FRAG (ADVP (RB That) + (RB is)) + (, ,) + (S (NP-SBJ-1 (DT the) + (JJ entire) + (NN park)) + (VP (MD will) + (VP (VB be) + (VP (VBN divided) + (NP (-NONE- *-1)) + (PP-CLR (IN into) + (NP (CD seven) + (NNS sections))) + (PP-PRP (IN for) + (NP (NN renovation))))))) + (. .))) + +Leaves: +------- + 0 That + 1 is + 2 , + 3 the + coref: IDENT 18 3-5 the entire park + 4 entire + 5 park + 6 will + 7 be + prop: be.03 + v * -> 7:0, be + 8 divided + prop: divide.02 + v * -> 8:0, divided + ARGM-MOD * -> 6:0, will + ARG1 * -> 9:0, *-1 -> 3:1, the entire park + ARG2 * -> 10:1, into seven sections + ARGM-PRP * -> 13:1, for renovation + 9 *-1 + 10 into + 11 seven + 12 sections + 13 for + 14 renovation + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, additional, newer, ah, attractions will be available for tourists. + +Treebanked sentence: +-------------------- + Ah , additional , newer , ah , attractions will be available for tourists . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 460.914 + stop time: 465.442 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (JJ additional) + (, ,) + (JJR newer) + (, ,) + (UH ah) + (, ,) + (NNS attractions)) + (VP (MD will) + (VP (VB be) + (ADJP-PRD (JJ available) + (PP (IN for) + (NP (NNS tourists)))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 additional + 3 , + 4 newer + 5 , + 6 ah + 7 , + 8 attractions + 9 will + 10 be + sense: be-v.1 + prop: be.01 + v * -> 10:0, be + ARGM-DIS * -> 0:1, Ah + ARG1 * -> 2:1, additional , newer , ah , attractions + ARGM-MOD * -> 9:0, will + ARG2 * -> 11:1, available for tourists + 11 available + 12 for + 13 tourists + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It seems that those attractions like the North Pole and the Marine Life Center will also be renovated after several + years. + +Treebanked sentence: +-------------------- + It seems that those attractions like the North Pole and the Marine Life Center will also be renovated *-1 after several + years . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 465.442 + stop time: 473.983 + +Tree: +----- + (TOP (S (NP-SBJ (PRP It)) + (VP (VBZ seems) + (SBAR (IN that) + (S (NP-SBJ-1 (NP (DT those) + (NNS attractions)) + (PP (IN like) + (NP (NP (DT the) + (NNP North) + (NNP Pole)) + (CC and) + (NP (DT the) + (NML (NNP Marine) + (NNP Life)) + (NNP Center))))) + (VP (MD will) + (ADVP (RB also)) + (VP (VB be) + (VP (VBN renovated) + (NP (-NONE- *-1)) + (PP-TMP (IN after) + (NP (JJ several) + (NNS years))))))))) + (. .))) + +Leaves: +------- + 0 It + 1 seems + sense: seem-v.1 + prop: seem.01 + v * -> 1:0, seems + ARG1 * -> 2:1, that those attractions like the North Pole and the Marine Life Center will also be + renovated *-1 after several years + 2 that + 3 those + coref: IDENT 89 3-13 those attractions like the North Pole and the Marine Life Center + 4 attractions + 5 like + 6 the + name: FAC 6-8 the North Pole + 7 North + 8 Pole + 9 and + 10 the + name: FAC 10-13 the Marine Life Center + 11 Marine + 12 Life + 13 Center + 14 will + 15 also + 16 be + prop: be.03 + v * -> 16:0, be + 17 renovated + sense: renovate-v.1 + prop: renovate.01 + v * -> 17:0, renovated + ARGM-MOD * -> 14:0, will + ARGM-ADV * -> 15:1, also + ARG1 * -> 18:0, *-1 -> 3:2, those attractions like the North Pole and the Marine Life Center + ARGM-TMP * -> 19:1, after several years + 18 *-1 + 19 after + 20 several + name: DATE 20-21 several years + 21 years + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Are they going to be different from what they are now ? + +Treebanked sentence: +-------------------- + Are they going *-1 to be different from what they are *T*-2 now ? + +Speaker information: +-------------------- + name: Speaker#3 + start time: 473.983 + stop time: 475.652906487 + +Tree: +----- + (TOP (SQ (VBP Are) + (NP-SBJ-1 (PRP they)) + (VP (VBG going) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB be) + (ADJP-PRD (JJ different) + (PP (IN from) + (SBAR-NOM (WHNP-2 (WP what)) + (S (NP-SBJ (PRP they)) + (VP (VBP are) + (NP-PRD (-NONE- *T*-2)) + (ADVP-TMP (RB now))))))))))) + (. ?))) + +Leaves: +------- + 0 Are + sense: be-v.1 + prop: be.03 + v * -> 0:0, Are + 1 they + coref: IDENT 89 1-1 they + 2 going + prop: go.04 + v * -> 2:0, going + 3 *-1 + 4 to + 5 be + sense: be-v.1 + prop: be.01 + v * -> 5:0, be + ARG1 * -> 3:0, *-1 -> 1:1, they + ARG2 * -> 6:1, different from what they are *T*-2 now + 6 different + 7 from + 8 what + 9 they + coref: IDENT 89 9-9 they + 10 are + sense: be-v.1 + prop: be.01 + v * -> 10:0, are + ARG1 * -> 9:1, they + ARG2 * -> 11:0, *T*-2 -> 8:1, what + ARGM-TMP * -> 12:1, now + 11 *T*-2 + 12 now + 13 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They will be, in ten years. + +Treebanked sentence: +-------------------- + They will be *?* , in ten years . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 475.652906487 + stop time: 476.405 + +Tree: +----- + (TOP (S (NP-SBJ (PRP They)) + (VP (MD will) + (VP (VB be) + (ADJP-PRD (-NONE- *?*)) + (, ,) + (PP-TMP (IN in) + (NP (CD ten) + (NNS years))))) + (. .))) + +Leaves: +------- + 0 They + coref: IDENT 89 0-0 They + 1 will + 2 be + sense: be-v.1 + prop: be.01 + v * -> 2:0, be + ARG1 * -> 0:1, They + ARGM-MOD * -> 1:0, will + ARG2 * -> 3:0, *?* + ARGM-TMP * -> 5:1, in ten years + 3 *?* + 4 , + 5 in + 6 ten + name: DATE 6-7 ten years + 7 years + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, there will be more animals, and more animal species, different from what there is now. + +Treebanked sentence: +-------------------- + Ah , there will be more animals , and more animal species , different from what there is *T*-1 now . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 476.405 + stop time: 482.338 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (EX there)) + (VP (MD will) + (VP (VB be) + (NP-PRD (NP (JJR more) + (NNS animals)) + (, ,) + (CC and) + (NP (NP (JJR more) + (NN animal) + (NNS species)) + (, ,) + (ADJP (JJ different) + (PP (IN from) + (SBAR-NOM (WHNP-1 (WP what)) + (S (NP-SBJ (EX there)) + (VP (VBZ is) + (NP-PRD (-NONE- *T*-1)) + (ADVP-TMP (RB now))))))))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 there + 3 will + 4 be + sense: be-v.3 + prop: be.02 + v * -> 4:0, be + ARGM-DIS * -> 0:1, Ah + ARGM-MOD * -> 3:0, will + ARG1 * -> 5:2, more animals , and more animal species , different from what there is *T*-1 now + 5 more + 6 animals + 7 , + 8 and + 9 more + 10 animal + 11 species + 12 , + 13 different + 14 from + 15 what + 16 there + 17 is + sense: be-v.1 + prop: be.02 + v * -> 17:0, is + ARG1 * -> 18:0, *T*-1 -> 15:1, what + ARGM-TMP * -> 19:1, now + 18 *T*-1 + 19 now + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It looks like we will also bring in whales. + +Treebanked sentence: +-------------------- + It looks like we will also bring in whales . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 482.338 + stop time: 485.357 + +Tree: +----- + (TOP (S (NP-SBJ (PRP It)) + (VP (VBZ looks) + (SBAR-PRD (IN like) + (S (NP-SBJ (PRP we)) + (VP (MD will) + (ADVP (RB also)) + (VP (VB bring) + (ADVP-DIR (RB in)) + (NP (NNS whales))))))) + (. .))) + +Leaves: +------- + 0 It + 1 looks + sense: look-v.2 + prop: look.02 + v * -> 1:0, looks + ARG0 * -> 0:1, It + ARG1 * -> 2:1, like we will also bring in whales + 2 like + 3 we + coref: IDENT 18 3-3 we + 4 will + 5 also + 6 bring + sense: bring-v.1 + prop: bring.01 + v * -> 6:0, bring + ARG0 * -> 3:1, we + ARGM-MOD * -> 4:0, will + ARGM-ADV * -> 5:1, also + ARGM-DIR * -> 7:1, in + ARG1 * -> 8:1, whales + 7 in + 8 whales + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Er, we will implement this plan as soon as it is approved by the government. + +Treebanked sentence: +-------------------- + Er , we will implement this plan as soon as it is approved *-1 by the government . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 485.357 + stop time: 491.357 + +Tree: +----- + (TOP (S (INTJ (UH Er)) + (, ,) + (NP-SBJ (PRP we)) + (VP (MD will) + (VP (VB implement) + (NP (DT this) + (NN plan)) + (ADVP-TMP (ADVP (RB as) + (RB soon)) + (SBAR (IN as) + (S (NP-SBJ-1 (PRP it)) + (VP (VBZ is) + (VP (VBN approved) + (NP (-NONE- *-1)) + (PP (IN by) + (NP-LGS (DT the) + (NN government)))))))))) + (. .))) + +Leaves: +------- + 0 Er + 1 , + 2 we + coref: IDENT 18 2-2 we + 3 will + 4 implement + sense: implement-v.1 + prop: implement.01 + v * -> 4:0, implement + ARGM-DIS * -> 0:1, Er + ARG0 * -> 2:1, we + ARGM-MOD * -> 3:0, will + ARG1 * -> 5:1, this plan + ARGM-TMP * -> 7:2, as soon as it is approved *-1 by the government + 5 this + coref: IDENT 79 5-6 this plan + 6 plan + 7 as + 8 soon + 9 as + 10 it + coref: IDENT 79 10-10 it + 11 is + prop: be.03 + v * -> 11:0, is + 12 approved + sense: approve-v.1 + prop: approve.01 + v * -> 12:0, approved + ARG1 * -> 13:0, *-1 -> 10:1, it + ARG0 * -> 14:1, by the government + 13 *-1 + 14 by + 15 the + 16 government + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Groundbreaking is expected to start next year. + +Treebanked sentence: +-------------------- + Groundbreaking is expected *-1 to start next year . + +Speaker information: +-------------------- + name: Li_lingfeng + start time: 491.357 + stop time: 493.357 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NN Groundbreaking)) + (VP (VBZ is) + (VP (VBN expected) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB start) + (NP-TMP (JJ next) + (NN year))))))) + (. .))) + +Leaves: +------- + 0 Groundbreaking + 1 is + prop: be.03 + v * -> 1:0, is + 2 expected + sense: expect-v.1 + prop: expect.01 + v * -> 2:0, expected + ARG1 * -> 3:2, *-1 to start next year + 3 *-1 + 4 to + 5 start + sense: start-v.1 + prop: start.01 + v * -> 5:0, start + ARG0 * -> 3:0, *-1 -> 0:1, Groundbreaking + ARGM-TMP * -> 6:1, next year + 6 next + name: DATE 6-7 next year + 7 year + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Yes. + +Treebanked sentence: +-------------------- + Yes . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 493.357 + stop time: 493.784 + +Tree: +----- + (TOP (INTJ (UH Yes) + (. .))) + +Leaves: +------- + 0 Yes + 1 . + + +======================================================================================================================== +Coreference chains for section 2: +--------------------------------- + + Chain 8 (IDENT) + 40.3-4 Hong Kong + 41.20-21 Hong Kong + 42.22-23 Hong Kong + 44.23-25 Hong Kong Island + 45.23-24 Hong Kong + 46.5-6 Hong Kong + + Chain 18 (IDENT) + 42.6-8 the Ocean Park + 45.9-11 the Ocean Park + 45.15-16 this place + 46.8-10 the Ocean Park + 47.3-5 the park 's + 47.8-8 they + 48.7-7 we + 49.3-5 the entire park + 55.3-3 we + 56.2-2 we + + Chain 57 (IDENT) + 46.3-3 Disney + 46.18-18 Disney + + Chain 80 (APPOS) + HEAD 48.9-10 a scheme + ATTRIB 48.12-15 a major renovation plan + + Chain 79 (IDENT) + 48.9-15 a scheme , a major renovation plan + 56.5-6 this plan + 56.10-10 it + + Chain 89 (IDENT) + 51.3-13 those attractions like the North Pole and the Marine Life Center + 52.1-1 they + 52.9-9 they + 53.0-0 They + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The area of Hong Kong is only one thousand-plus square kilometers. + +Treebanked sentence: +-------------------- + The area of Hong Kong is only one thousand - plus square kilometers . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 496.45 + stop time: 499.422 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN area)) + (PP (IN of) + (NP (NNP Hong) + (NNP Kong)))) + (VP (VBZ is) + (NP-PRD (QP (RB only) + (CD one) + (CD thousand) + (HYPH -) + (CC plus)) + (JJ square) + (NNS kilometers))) + (. .))) + +Leaves: +------- + 0 The + 1 area + 2 of + 3 Hong + coref: IDENT 2 3-4 Hong Kong + name: GPE 3-4 Hong Kong + 4 Kong + 5 is + sense: be-v.1 + prop: be.01 + v * -> 5:0, is + ARG1 * -> 0:2, The area of Hong Kong + ARG2 * -> 6:2, only one thousand - plus square kilometers + 6 only + 7 one + ! name: QUANTITY 7-12 one thousand - plus square kilometers + 8 thousand + 9 - + 10 plus + 11 square + 12 kilometers + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The population is dense. + +Treebanked sentence: +-------------------- + The population is dense . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 499.422 + stop time: 500.947 + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NN population)) + (VP (VBZ is) + (ADJP-PRD (JJ dense))) + (. .))) + +Leaves: +------- + 0 The + 1 population + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 0:1, The population + ARG2 * -> 3:1, dense + 3 dense + 4 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Natural resources are relatively scarce. + +Treebanked sentence: +-------------------- + Natural resources are relatively scarce . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 500.947 + stop time: 503.22 + +Tree: +----- + (TOP (S (NP-SBJ (JJ Natural) + (NNS resources)) + (VP (VBP are) + (ADJP-PRD (RB relatively) + (JJ scarce))) + (. .))) + +Leaves: +------- + 0 Natural + 1 resources + 2 are + sense: be-v.1 + prop: be.01 + v * -> 2:0, are + ARG1 * -> 0:1, Natural resources + ARG2 * -> 3:1, relatively scarce + 3 relatively + 4 scarce + 5 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, the clever Hong Kong people will utilize all resources they have created for developing the Hong Kong tourism + industry. + +Treebanked sentence: +-------------------- + However , the clever Hong Kong people will utilize all resources 0 they have created *T*-1 for *PRO* developing the Hong + Kong tourism industry . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 503.22 + stop time: 510.161 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (NP-SBJ (DT the) + (JJ clever) + (NML (NNP Hong) + (NNP Kong)) + (NNS people)) + (VP (MD will) + (VP (VB utilize) + (NP (NP (DT all) + (NNS resources)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (PRP they)) + (VP (VBP have) + (VP (VBN created) + (NP (-NONE- *T*-1))))))) + (PP-PRP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG developing) + (NP (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN tourism) + (NN industry))))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 the + coref: IDENT 6 2-6 the clever Hong Kong people + 3 clever + 4 Hong + coref: IDENT 2 4-5 Hong Kong + name: GPE 4-5 Hong Kong + 5 Kong + 6 people + 7 will + 8 utilize + sense: utilize-v.1 + prop: utilize.01 + v * -> 8:0, utilize + ARGM-DIS * -> 0:1, However + ARG0 * -> 2:1, the clever Hong Kong people + ARGM-MOD * -> 7:0, will + ARG1 * -> 9:2, all resources 0 they have created *T*-1 + ARGM-PRP * -> 16:1, for *PRO* developing the Hong Kong tourism industry + 9 all + coref: IDENT 7 9-15 all resources 0 they have created *T*-1 + 10 resources + 11 0 + 12 they + coref: IDENT 6 12-12 they + 13 have + prop: have.01 + v * -> 13:0, have + 14 created + sense: create-v.1 + prop: create.01 + v * -> 14:0, created + ARG0 * -> 12:1, they + ARG1 * -> 15:0, *T*-1 -> 11:0, 0 + LINK-SLC * -> 15:0, *T*-1 -> 11:0, 0 + * -> 9:1, all resources + 15 *T*-1 + 16 for + 17 *PRO* + 18 developing + prop: develop.02 + v * -> 18:0, developing + ARG0 * -> 17:0, *PRO* + ARG1 * -> 19:1, the Hong Kong tourism industry + LINK-PCR * -> 17:0, *PRO* + * -> 2:1, the clever Hong Kong people + 19 the + 20 Hong + coref: IDENT 2 20-21 Hong Kong + name: GPE 20-21 Hong Kong + 21 Kong + 22 tourism + 23 industry + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Among these is the Avenue of Stars. + +Treebanked sentence: +-------------------- + Among these is *T*-1 the Avenue of Stars . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 510.161 + stop time: 512.795 + +Tree: +----- + (TOP (SINV (PP-LOC-PRD-TPC-1 (IN Among) + (NP (DT these))) + (VP (VBZ is) + (PP-LOC-PRD (-NONE- *T*-1))) + (NP-SBJ (NP (DT the) + (NNP Avenue)) + (PP (IN of) + (NP (NNPS Stars)))) + (. .))) + +Leaves: +------- + 0 Among + 1 these + coref: IDENT 7 1-1 these + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG2 * -> 3:0, *T*-1 -> 0:1, Among these + ARG1 * -> 4:2, the Avenue of Stars + 3 *T*-1 + 4 the + coref: IDENT 15 4-7 the Avenue of Stars + name: FAC 4-7 the Avenue of Stars + 5 Avenue + 6 of + 7 Stars + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Entering Hollywood of the East, + +Treebanked sentence: +-------------------- + *PRO* Entering Hollywood of the East , + +Speaker information: +-------------------- + name: Speaker#1 + start time: 521.428 + stop time: 523.651 + +Tree: +----- + (TOP (S (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Entering) + (NP (NP (NNP Hollywood)) + (PP (IN of) + (NP (DT the) + (NNP East))))) + (, ,))) + +Leaves: +------- + 0 *PRO* + 1 Entering + sense: enter-v.1 + prop: enter.01 + v * -> 1:0, Entering + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:2, Hollywood of the East + 2 Hollywood + coref: IDENT 2 2-5 Hollywood of the East + name: GPE 2-2 Hollywood + 3 of + 4 the + 5 East + name: LOC 5-5 East + 6 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + here, you can come up close with the stars in your mind. + +Treebanked sentence: +-------------------- + here , you can come up close with the stars in your mind . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 523.651 + stop time: 528.828980623 + +Tree: +----- + (TOP (S (ADVP-LOC (RB here)) + (, ,) + (NP-SBJ (PRP you)) + (VP (MD can) + (VP (VB come) + (ADVP-LOC (RP up) + (RB close)) + (PP-CLR (IN with) + (NP (DT the) + (NNS stars))) + (PP-LOC (IN in) + (NP (PRP$ your) + (NN mind))))) + (. .))) + +Leaves: +------- + 0 here + 1 , + 2 you + 3 can + 4 come + sense: come-v.1 + prop: come.01 + v * -> 4:0, come + ARGM-LOC * -> 0:1, here + ARG1 * -> 2:1, you + ARGM-MOD * -> 3:0, can + ARG4 * -> 5:1, up close + ARGM-MNR * -> 7:1, with the stars + ARGM-LOC * -> 10:1, in your mind + 5 up + 6 close + 7 with + 8 the + 9 stars + 10 in + 11 your + 12 mind + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + He is my. + +Treebanked sentence: +-------------------- + He is my . + +Speaker information: +-------------------- + name: Speaker#4 + start time: 528.828980623 + stop time: 531.695 + +Tree: +----- + (TOP (S (NP-SBJ (PRP He)) + (VP (VBZ is) + (NP-PRD (PRP$ my))) + (. .))) + +Leaves: +------- + 0 He + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, He + ARG2 * -> 2:1, my + 2 my + 3 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + She is my Goddess, ah. + +Treebanked sentence: +-------------------- + She is my Goddess , ah . + +Speaker information: +-------------------- + name: Speaker#4 + start time: 531.695 + stop time: 533.41 + +Tree: +----- + (TOP (S (NP-SBJ (PRP She)) + (VP (VBZ is) + (NP-PRD (PRP$ my) + (NNP Goddess)) + (, ,) + (INTJ (UH ah))) + (. .))) + +Leaves: +------- + 0 She + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, She + ARG2 * -> 2:1, my Goddess + ARGM-DIS * -> 5:1, ah + 2 my + 3 Goddess + 4 , + 5 ah + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Please stay with us on New World Travel. + +Treebanked sentence: +-------------------- + Please *PRO* stay with us on New World Travel . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 533.41 + stop time: 540.0 + +Tree: +----- + (TOP (S-IMP (INTJ (UH Please)) + (NP-SBJ (-NONE- *PRO*)) + (VP (VB stay) + (PP-CLR (IN with) + (NP (PRP us))) + (PP-LOC (IN on) + (NP (NML (NNP New) + (NNP World)) + (NNP Travel)))) + (. .))) + +Leaves: +------- + 0 Please + 1 *PRO* + 2 stay + sense: stay-v.1 + prop: stay.01 + v * -> 2:0, stay + ARGM-DIS * -> 0:1, Please + ARG1 * -> 1:0, *PRO* + ARG3 * -> 3:1, with us + ARGM-LOC * -> 5:1, on New World Travel + 3 with + 4 us + 5 on + 6 New + name: ORG 6-8 New World Travel + 7 World + 8 Travel + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong has always worn the crown of Hollywood of the East. + +Treebanked sentence: +-------------------- + Hong Kong has always worn the crown of Hollywood of the East . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 545.783 + stop time: 550.04 + +Tree: +----- + (TOP (S (NP-SBJ (NNP Hong) + (NNP Kong)) + (VP (VBZ has) + (ADVP-TMP (RB always)) + (VP (VBN worn) + (NP (NP (DT the) + (NN crown)) + (PP (IN of) + (NP (NNP Hollywood) + (PP (IN of) + (NP (DT the) + (NNP East)))))))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 2 0-1 Hong Kong + name: GPE 0-1 Hong Kong + 1 Kong + 2 has + prop: have.01 + v * -> 2:0, has + 3 always + 4 worn + sense: wear-v.1 + prop: wear.01 + v * -> 4:0, worn + ARG0 * -> 0:1, Hong Kong + ARGM-TMP * -> 3:1, always + ARG1 * -> 5:2, the crown of Hollywood of the East + 5 the + 6 crown + 7 of + 8 Hollywood + name: GPE 8-8 Hollywood + 9 of + 10 the + 11 East + name: LOC 11-11 East + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Over the past 100 years of film history, Hong Kong cinema has nurtured many internationally renowned directors, actors, + and screenwriters. + +Treebanked sentence: +-------------------- + Over the past 100 years of film history , Hong Kong cinema has nurtured many internationally renowned directors , actors + , and screenwriters . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 550.04 + stop time: 557.567 + +Tree: +----- + (TOP (S (PP-TMP (IN Over) + (NP (NP (DT the) + (JJ past) + (CD 100) + (NNS years)) + (PP (IN of) + (NP (NN film) + (NN history))))) + (, ,) + (NP-SBJ (NML (NNP Hong) + (NNP Kong)) + (NNP cinema)) + (VP (VBZ has) + (VP (VBN nurtured) + (NP (JJ many) + (ADJP (RB internationally) + (JJ renowned)) + (NNS directors) + (, ,) + (NNS actors) + (, ,) + (CC and) + (NNS screenwriters)))) + (. .))) + +Leaves: +------- + 0 Over + 1 the + name: DATE 1-4 the past 100 years + 2 past + 3 100 + 4 years + 5 of + 6 film + 7 history + 8 , + 9 Hong + coref: IDENT 2 9-10 Hong Kong + coref: IDENT 39 9-11 Hong Kong cinema + name: GPE 9-10 Hong Kong + 10 Kong + 11 cinema + 12 has + prop: have.01 + v * -> 12:0, has + 13 nurtured + sense: nurture-v.1 + prop: nurture.01 + v * -> 13:0, nurtured + ARGM-TMP * -> 0:1, Over the past 100 years of film history + ARG0 * -> 9:2, Hong Kong cinema + ARG1 * -> 14:1, many internationally renowned directors , actors , and screenwriters + 14 many + 15 internationally + 16 renowned + 17 directors + 18 , + 19 actors + 20 , + 21 and + 22 screenwriters + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They have shortened the distance between Hong Kong and the world. + +Treebanked sentence: +-------------------- + They have shortened the distance between Hong Kong and the world . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 557.567 + stop time: 560.561 + +Tree: +----- + (TOP (S (NP-SBJ (PRP They)) + (VP (VBP have) + (VP (VBN shortened) + (NP (NP (DT the) + (NN distance)) + (PP (IN between) + (NP (NP (NNP Hong) + (NNP Kong)) + (CC and) + (NP (DT the) + (NN world))))))) + (. .))) + +Leaves: +------- + 0 They + coref: IDENT 39 0-0 They + 1 have + prop: have.01 + v * -> 1:0, have + 2 shortened + sense: shorten-v.2 + prop: shorten.01 + v * -> 2:0, shortened + ARG0 * -> 0:1, They + ARG1 * -> 3:2, the distance between Hong Kong and the world + 3 the + 4 distance + 5 between + 6 Hong + coref: IDENT 2 6-7 Hong Kong + name: GPE 6-7 Hong Kong + 7 Kong + 8 and + 9 the + 10 world + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong movies have even become a window for the world to see Hong Kong, which have made the image of metropolitan + Hong Kong more prominent internationally. + +Treebanked sentence: +-------------------- + Hong Kong movies have even become a window for the world to see Hong Kong , which *T*-1 have made the image of + metropolitan Hong Kong more prominent internationally . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 560.561 + stop time: 570.025273799 + +Tree: +----- + (TOP (S (NP-SBJ (NML (NNP Hong) + (NNP Kong)) + (NNS movies)) + (VP (VBP have) + (ADVP (RB even)) + (VP (VBN become) + (NP-PRD (NP (DT a) + (NN window)) + (SBAR (IN for) + (S (NP-SBJ (DT the) + (NN world)) + (VP (TO to) + (VP (VB see) + (NP (NNP Hong) + (NNP Kong))))))) + (, ,) + (SBAR-ADV (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBP have) + (VP (VBN made) + (S (NP-SBJ (NP (DT the) + (NN image)) + (PP (IN of) + (NP (JJ metropolitan) + (NNP Hong) + (NNP Kong)))) + (ADJP-PRD (RBR more) + (JJ prominent)) + (ADVP-LOC (RB internationally))))))))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 2 0-1 Hong Kong + name: GPE 0-1 Hong Kong + 1 Kong + 2 movies + 3 have + prop: have.01 + v * -> 3:0, have + 4 even + 5 become + sense: become-v.1 + prop: become.01 + v * -> 5:0, become + ARG1 * -> 0:2, Hong Kong movies + ARGM-ADV * -> 4:1, even + ARG2 * -> 6:2, a window for the world to see Hong Kong + ARGM-PRD * -> 16:2, which *T*-1 have made the image of metropolitan Hong Kong more prominent + internationally + 6 a + 7 window + 8 for + 9 the + 10 world + 11 to + 12 see + sense: see-v.3 + prop: see.01 + v * -> 12:0, see + ARG0 * -> 9:1, the world + ARG1 * -> 13:1, Hong Kong + 13 Hong + coref: IDENT 2 13-14 Hong Kong + name: GPE 13-14 Hong Kong + 14 Kong + 15 , + 16 which + 17 *T*-1 + 18 have + prop: have.01 + v * -> 18:0, have + 19 made + sense: make-v.3 + prop: make.02 + v * -> 19:0, made + ARG0 * -> 17:0, *T*-1 -> 16:1, which + ARG1 * -> 20:3, the image of metropolitan Hong Kong more prominent internationally + LINK-SLC * -> 17:0, *T*-1 -> 16:1, which + * -> 6:2, a window for the world to see Hong Kong + 20 the + 21 image + 22 of + 23 metropolitan + 24 Hong + ! name: GPE 24-25 Hong Kong + 25 Kong + 26 more + 27 prominent + 28 internationally + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For this reason, in 2004, on the Waterfront Promenade originally constructed for viewing only the scenery of Hong Kong + Island and Victoria Harbor, the Hong Kong Tourism Board also constructed the Avenue of Stars, memorializing Hong Kong's + 100-year film history. + +Treebanked sentence: +-------------------- + For this reason , in 2004 , on the Waterfront Promenade originally constructed * for *PRO* viewing only the scenery of + Hong Kong Island and Victoria Harbor , the Hong Kong Tourism Board also constructed the Avenue of Stars , memorializing + Hong Kong 's 100 - year film history . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 570.025273799 + stop time: 585.543386689 + +Tree: +----- + (TOP (S (PP-PRP (IN For) + (NP (DT this) + (NN reason))) + (, ,) + (PP-TMP (IN in) + (NP (CD 2004))) + (, ,) + (PP-LOC (IN on) + (NP (NP (DT the) + (NNP Waterfront) + (NNP Promenade)) + (VP (ADVP-TMP (RB originally)) + (VBN constructed) + (NP (-NONE- *)) + (PP-PRP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG viewing) + (NP (NP (RB only) + (DT the) + (NN scenery)) + (PP (IN of) + (NP (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Island)) + (CC and) + (NP (NNP Victoria) + (NNP Harbor))))))))))) + (, ,) + (NP-SBJ (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NNP Tourism) + (NNP Board)) + (ADVP (RB also)) + (VP (VBN constructed) + (NP (NP (NP (DT the) + (NNP Avenue)) + (PP (IN of) + (NP (NNPS Stars)))) + (, ,) + (VP (VBG memorializing) + (NP (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NML (CD 100) + (HYPH -) + (NN year)) + (NN film) + (NN history))))) + (. .))) + +Leaves: +------- + 0 For + 1 this + 2 reason + 3 , + 4 in + 5 2004 + name: DATE 5-5 2004 + 6 , + 7 on + 8 the + name: FAC 8-10 the Waterfront Promenade + 9 Waterfront + 10 Promenade + 11 originally + 12 constructed + sense: construct-v.1 + prop: construct.01 + v * -> 12:0, constructed + ARG1 * -> 13:0, * + * -> 8:1, the Waterfront Promenade + ARGM-TMP * -> 11:1, originally + ARGM-PRP * -> 14:1, for *PRO* viewing only the scenery of Hong Kong Island and Victoria Harbor + 13 * + 14 for + 15 *PRO* + 16 viewing + prop: view.01 + v * -> 16:0, viewing + ARG0 * -> 15:0, *PRO* + ARG1 * -> 17:2, only the scenery of Hong Kong Island and Victoria Harbor + 17 only + 18 the + 19 scenery + 20 of + 21 Hong + name: LOC 21-23 Hong Kong Island + 22 Kong + 23 Island + 24 and + 25 Victoria + name: LOC 25-26 Victoria Harbor + 26 Harbor + 27 , + 28 the + name: ORG 28-32 the Hong Kong Tourism Board + 29 Hong + 30 Kong + 31 Tourism + 32 Board + 33 also + 34 constructed + sense: construct-v.1 + prop: construct.01 + v * -> 34:0, constructed + ARGM-CAU * -> 0:1, For this reason + ARGM-TMP * -> 4:1, in 2004 + ARGM-LOC * -> 7:1, on the Waterfront Promenade originally constructed * for *PRO* viewing only the + scenery of Hong Kong Island and Victoria Harbor + ARG0 * -> 28:1, the Hong Kong Tourism Board + ARGM-ADV * -> 33:1, also + ARG1 * -> 35:3, the Avenue of Stars , memorializing Hong Kong 's 100 - year film history + 35 the + coref: IDENT 15 35-38 the Avenue of Stars + name: FAC 35-38 the Avenue of Stars + 36 Avenue + 37 of + 38 Stars + 39 , + 40 memorializing + prop: memorialize.01 + v * -> 40:0, memorializing + ARG0 * -> 35:2, the Avenue of Stars + ARG1 * -> 41:2, Hong Kong 's 100 - year film history + 41 Hong + coref: IDENT 72 41-48 Hong Kong 's 100 - year film history + coref: IDENT 2 41-43 Hong Kong 's + name: GPE 41-43 Hong Kong 's + 42 Kong + 43 's + 44 100 + name: DATE 44-46 100 - year + 45 - + 46 year + 47 film + 48 history + 49 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Here, tourists can learn about Hong Kong's film history, and can come up close with the stars in their mind. + +Treebanked sentence: +-------------------- + Here , tourists can learn about Hong Kong 's film history , and can come up close with the stars in their mind . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 585.543386689 + stop time: 594.362 + +Tree: +----- + (TOP (S (ADVP-LOC (RB Here)) + (, ,) + (NP-SBJ (NNS tourists)) + (VP (VP (MD can) + (VP (VB learn) + (PP-CLR (IN about) + (NP (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NN film) + (NN history))))) + (, ,) + (CC and) + (VP (MD can) + (VP (VB come) + (ADVP-LOC (RB up) + (RB close)) + (PP-CLR (IN with) + (NP (DT the) + (NNS stars))) + (PP-LOC (IN in) + (NP (PRP$ their) + (NN mind)))))) + (. .))) + +Leaves: +------- + 0 Here + 1 , + 2 tourists + coref: IDENT 74 2-2 tourists + 3 can + 4 learn + sense: learn-v.2 + prop: learn.01 + v * -> 4:0, learn + ARGM-LOC * -> 0:1, Here + ARG0 * -> 2:1, tourists + ARGM-MOD * -> 3:0, can + ARG1 * -> 5:1, about Hong Kong 's film history + 5 about + 6 Hong + coref: IDENT 72 6-10 Hong Kong 's film history + coref: IDENT 2 6-8 Hong Kong 's + name: GPE 6-8 Hong Kong 's + 7 Kong + 8 's + 9 film + 10 history + 11 , + 12 and + 13 can + 14 come + sense: come-v.1 + prop: come.01 + v * -> 14:0, come + ARGM-LOC * -> 0:1, Here + ARG1 * -> 2:1, tourists + ARGM-MOD * -> 13:0, can + ARG4 * -> 15:1, up close + ARGM-MNR * -> 17:1, with the stars + ARGM-LOC * -> 20:1, in their mind + 15 up + 16 close + 17 with + 18 the + 19 stars + 20 in + 21 their + coref: IDENT 74 21-21 their + 22 mind + 23 . + + +======================================================================================================================== +Coreference chains for section 3: +--------------------------------- + + Chain 2 (IDENT) + 59.3-4 Hong Kong + 62.4-5 Hong Kong + 62.20-21 Hong Kong + 64.2-5 Hollywood of the East + 69.0-1 Hong Kong + 70.9-10 Hong Kong + 71.6-7 Hong Kong + 72.0-1 Hong Kong + 72.13-14 Hong Kong + 73.41-43 Hong Kong 's + 74.6-8 Hong Kong 's + + Chain 6 (IDENT) + 62.2-6 the clever Hong Kong people + 62.12-12 they + + Chain 7 (IDENT) + 62.9-15 all resources 0 they have created *T*-1 + 63.1-1 these + + Chain 15 (IDENT) + 63.4-7 the Avenue of Stars + 73.35-38 the Avenue of Stars + + Chain 39 (IDENT) + 70.9-11 Hong Kong cinema + 71.0-0 They + + Chain 72 (IDENT) + 73.41-48 Hong Kong 's 100 - year film history + 74.6-10 Hong Kong 's film history + + Chain 74 (IDENT) + 74.2-2 tourists + 74.21-21 their + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong is a busy metropolis. + +Treebanked sentence: +-------------------- + Hong Kong is a busy metropolis . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 632.96 + stop time: 635.792 + +Tree: +----- + (TOP (S (NP-SBJ (NNP Hong) + (NNP Kong)) + (VP (VBZ is) + (NP-PRD (DT a) + (JJ busy) + (NN metropolis))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 0 0-1 Hong Kong + name: GPE 0-1 Hong Kong + 1 Kong + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 0:1, Hong Kong + ARG2 * -> 3:1, a busy metropolis + 3 a + 4 busy + 5 metropolis + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Even at dusk, the city's pulse never stops beating. + +Treebanked sentence: +-------------------- + Even at dusk , the city 's pulse never stops *-1 beating . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 635.792 + stop time: 641.241 + +Tree: +----- + (TOP (S (PP-TMP (ADVP (RB Even)) + (IN at) + (NP (NN dusk))) + (, ,) + (NP-SBJ-1 (NP (DT the) + (NN city) + (POS 's)) + (NN pulse)) + (ADVP-TMP (RB never)) + (VP (VBZ stops) + (S (NP-SBJ (-NONE- *-1)) + (VP (VBG beating)))) + (. .))) + +Leaves: +------- + 0 Even + 1 at + 2 dusk + 3 , + 4 the + coref: IDENT 0 4-6 the city 's + 5 city + 6 's + 7 pulse + 8 never + 9 stops + sense: stop-v.1 + prop: stop.01 + v * -> 9:0, stops + ARGM-TMP * -> 0:2, Even at dusk + ARG1 * -> 4:2, the city 's pulse + ARGM-TMP * -> 8:1, never + ARG1 * -> 10:2, *-1 beating + 10 *-1 + 11 beating + sense: beat-v.2 + prop: beat.02 + v * -> 11:0, beating + ARG1 * -> 10:0, *-1 -> 4:2, the city 's pulse + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Across from the Avenue of Stars, a special performance is staged every weekend. + +Treebanked sentence: +-------------------- + Across from the Avenue of Stars , a special performance is staged every weekend . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 641.241 + stop time: 647.706 + +Tree: +----- + (TOP (S (PP-LOC (IN Across) + (PP (IN from) + (NP (NP (DT the) + (NNP Avenue)) + (PP (IN of) + (NP (NNPS Stars)))))) + (, ,) + (NP-SBJ (DT a) + (JJ special) + (NN performance)) + (VP (VBZ is) + (VP (VBD staged) + (NP-TMP (DT every) + (NN weekend)))) + (. .))) + +Leaves: +------- + 0 Across + 1 from + 2 the + name: FAC 2-5 the Avenue of Stars + 3 Avenue + 4 of + 5 Stars + 6 , + 7 a + 8 special + 9 performance + 10 is + prop: be.03 + v * -> 10:0, is + 11 staged + prop: stage.01 + v * -> 11:0, staged + ARGM-LOC * -> 0:1, Across from the Avenue of Stars + ARG1 * -> 7:1, a special performance + ARGM-TMP * -> 12:1, every weekend + 12 every + 13 weekend + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + %pw As our Victoria Harbor is %pw very famous, and, er, our nightscape is already very beautiful, by what means could we + enhance the dynamic beauty of our nightscape ? + +Treebanked sentence: +-------------------- + %pw As our Victoria Harbor is %pw very famous , and , er , our nightscape is already very beautiful , by what means + could we enhance the dynamic beauty of our nightscape *T*-1 ? + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 651.021 + stop time: 666.802 + +Tree: +----- + (TOP (SBARQ (XX %pw) + (SBAR-ADV (IN As) + (S (S (NP-SBJ (PRP$ our) + (NNP Victoria) + (NNP Harbor)) + (VP (VBZ is) + (XX %pw) + (ADJP-PRD (RB very) + (JJ famous)))) + (, ,) + (CC and) + (, ,) + (INTJ (UH er)) + (, ,) + (S (NP-SBJ (PRP$ our) + (NN nightscape)) + (VP (VBZ is) + (ADVP-TMP (RB already)) + (ADJP-PRD (RB very) + (JJ beautiful)))))) + (, ,) + (WHPP-1 (IN by) + (WHNP (WDT what) + (NNS means))) + (SQ (MD could) + (NP-SBJ (PRP we)) + (VP (VB enhance) + (NP (NP (DT the) + (JJ dynamic) + (NN beauty)) + (PP (IN of) + (NP (PRP$ our) + (NN nightscape)))) + (PP-MNR (-NONE- *T*-1)))) + (. ?))) + +Leaves: +------- + 0 %pw + 1 As + 2 our + coref: IDENT 11 2-4 our Victoria Harbor + 3 Victoria + ! name: LOC 3-4 Victoria Harbor + 4 Harbor + 5 is + sense: be-v.1 + prop: be.01 + v * -> 5:0, is + ARG1 * -> 2:1, our Victoria Harbor + ARG2 * -> 7:1, very famous + 6 %pw + 7 very + 8 famous + 9 , + 10 and + 11 , + 12 er + 13 , + 14 our + 15 nightscape + 16 is + sense: be-v.1 + prop: be.01 + v * -> 16:0, is + ARG1 * -> 14:1, our nightscape + ARGM-TMP * -> 17:1, already + ARG2 * -> 18:1, very beautiful + 17 already + 18 very + 19 beautiful + 20 , + 21 by + 22 what + 23 means + 24 could + 25 we + 26 enhance + sense: enhance-v.1 + prop: enhance.01 + v * -> 26:0, enhance + ARGM-MOD * -> 24:0, could + ARG0 * -> 25:1, we + ARG1 * -> 27:2, the dynamic beauty of our nightscape + ARG3 * -> 33:0, *T*-1 -> 21:1, by what means + 27 the + 28 dynamic + 29 beauty + 30 of + 31 our + 32 nightscape + 33 *T*-1 + 34 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + So, one idea was to transform Victoria Harbor into a performance stage. + +Treebanked sentence: +-------------------- + So , one idea was *PRO* to transform Victoria Harbor into a performance stage . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 666.802 + stop time: 672.714 + +Tree: +----- + (TOP (S (ADVP (RB So)) + (, ,) + (NP-SBJ (CD one) + (NN idea)) + (VP (VBD was) + (S-PRD (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB transform) + (NP (NNP Victoria) + (NNP Harbor)) + (PP-CLR (IN into) + (NP (DT a) + (NN performance) + (NN stage))))))) + (. .))) + +Leaves: +------- + 0 So + 1 , + 2 one + 3 idea + 4 was + sense: be-v.2 + prop: be.01 + v * -> 4:0, was + ARGM-DIS * -> 0:1, So + ARG1 * -> 2:1, one idea + ARG2 * -> 5:2, *PRO* to transform Victoria Harbor into a performance stage + 5 *PRO* + 6 to + 7 transform + sense: transform-v.1 + prop: transform.01 + v * -> 7:0, transform + ARG0 * -> 5:0, *PRO* + ARG1 * -> 8:1, Victoria Harbor + ARG2 * -> 10:1, into a performance stage + 8 Victoria + coref: IDENT 11 8-9 Victoria Harbor + name: LOC 8-9 Victoria Harbor + 9 Harbor + 10 into + 11 a + 12 performance + 13 stage + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Er, each key building is like a performer. + +Treebanked sentence: +-------------------- + Er , each key building is like a performer . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 672.714 + stop time: 677.314 + +Tree: +----- + (TOP (S (INTJ (UH Er)) + (, ,) + (NP-SBJ (DT each) + (JJ key) + (NN building)) + (VP (VBZ is) + (PP-PRD (IN like) + (NP (DT a) + (NN performer)))) + (. .))) + +Leaves: +------- + 0 Er + 1 , + 2 each + 3 key + 4 building + 5 is + sense: be-v.1 + prop: be.01 + v * -> 5:0, is + ARGM-DIS * -> 0:1, Er + ARG1 * -> 2:1, each key building + ARG2 * -> 6:1, like a performer + 6 like + 7 a + 8 performer + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It is based on this that music and lights are arranged to reflect each other and perform a unique, er, and fascinating + multi-media world-class light show. + +Treebanked sentence: +-------------------- + It *EXP*-2 is based *-1 on this that music and lights are arranged *-3 *PRO*-4 to reflect each other and perform a + unique , er , and fascinating multi-media world - class light show . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 677.314 + stop time: 690.834035383 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (PRP It)) + (SBAR (-NONE- *EXP*-2))) + (VP (VBZ is) + (VP (VBN based) + (NP (-NONE- *-1)) + (PP-CLR (IN on) + (NP (DT this))) + (SBAR-2 (IN that) + (S (NP-SBJ-3 (NN music) + (CC and) + (NNS lights)) + (VP (VBP are) + (VP (VBN arranged) + (NP-4 (-NONE- *-3)) + (S-PRP (NP-SBJ (-NONE- *PRO*-4)) + (VP (TO to) + (VP (VP (VB reflect) + (NP (DT each) + (JJ other))) + (CC and) + (VP (VBP perform) + (NP (DT a) + (ADJP (JJ unique) + (, ,) + (UH er) + (, ,) + (CC and) + (JJ fascinating)) + (JJ multi-media) + (NML (NN world) + (HYPH -) + (NN class)) + (NN light) + (NN show)))))))))))) + (. .))) + +Leaves: +------- + 0 It + 1 *EXP*-2 + 2 is + prop: be.03 + v * -> 2:0, is + 3 based + prop: base.02 + v * -> 3:0, based + ARG2 * -> 5:1, on this + ARG1 * -> 7:1, that music and lights are arranged *-3 *PRO*-4 to reflect each other and perform a + unique , er , and fascinating multi-media world - class light show + 4 *-1 + 5 on + 6 this + 7 that + 8 music + 9 and + 10 lights + 11 are + prop: be.03 + v * -> 11:0, are + 12 arranged + prop: arrange.01 + v * -> 12:0, arranged + ARG1 * -> 13:0, *-3 -> 8:1, music and lights + ARGM-PRP * -> 14:2, *PRO*-4 to reflect each other and perform a unique , er , and fascinating multi-media + world - class light show + 13 *-3 + 14 *PRO*-4 + 15 to + 16 reflect + sense: reflect-v.4 + prop: reflect.01 + v * -> 16:0, reflect + ARG1 * -> 14:0, *PRO*-4 -> 13:0, *-3 -> 8:1, music and lights + ARGM-REC * -> 17:1, each other + LINK-PCR * -> 14:0, *PRO*-4 -> 13:0, *-3 -> 8:1, music and lights + * -> 13:0, *-3 -> 8:1, music and lights + * -> 8:1, music and lights + 17 each + 18 other + 19 and + 20 perform + sense: perform-v.2 + prop: perform.01 + v * -> 20:0, perform + ARG0 * -> 14:0, *PRO*-4 -> 13:0, *-3 -> 8:1, music and lights + ARG1 * -> 21:1, a unique , er , and fascinating multi-media world - class light show + LINK-PCR * -> 14:0, *PRO*-4 -> 13:0, *-3 -> 8:1, music and lights + * -> 13:0, *-3 -> 8:1, music and lights + * -> 8:1, music and lights + 21 a + coref: IDENT 31 21-33 a unique , er , and fascinating multi-media world - class light show + 22 unique + 23 , + 24 er + 25 , + 26 and + 27 fascinating + 28 multi-media + 29 world + 30 - + 31 class + 32 light + 33 show + 34 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Let me now introduce to you all the well-known skyscrapers participating in this large-scale light and music show. + +Treebanked sentence: +-------------------- + *PRO* Let me now introduce to you all the well - known skyscrapers participating in this large - scale light and music + show . + +Speaker information: +-------------------- + name: Speaker#5 + start time: 690.834035383 + stop time: 700.211 + +Tree: +----- + (TOP (S (NP-SBJ (-NONE- *PRO*)) + (VP (VB Let) + (S (NP-SBJ (PRP me)) + (ADVP-TMP (RB now)) + (VP (VB introduce) + (PP-CLR (IN to) + (NP (PRP you))) + (NP (NP (PDT all) + (DT the) + (ADJP (RB well) + (HYPH -) + (VBN known)) + (NNS skyscrapers)) + (VP (VBG participating) + (PP-CLR (IN in) + (NP (DT this) + (NML (JJ large) + (HYPH -) + (NN scale)) + (NML (NN light) + (CC and) + (NN music)) + (NN show)))))))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Let + sense: let-v.1 + prop: let.01 + v * -> 1:0, Let + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:2, me now introduce to you all the well - known skyscrapers participating in this large - + scale light and music show + 2 me + 3 now + 4 introduce + sense: introduce-v.1 + prop: introduce.01 + v * -> 4:0, introduce + ARG0 * -> 2:1, me + ARGM-TMP * -> 3:1, now + ARG2 * -> 5:1, to you + ARG1 * -> 7:2, all the well - known skyscrapers participating in this large - scale light and music + show + 5 to + 6 you + 7 all + coref: IDENT 35 7-22 all the well - known skyscrapers participating in this large - scale light + and music show + 8 the + 9 well + 10 - + 11 known + prop: know.01 + v * -> 11:0, known + ARGM-EXT * -> 9:0, well + ARG1 * -> 12:0, skyscrapers + 12 skyscrapers + 13 participating + sense: participate-v.1 + prop: participate.01 + v * -> 13:0, participating + ARG0 * -> 7:1, all the well - known skyscrapers + ARG1 * -> 14:1, in this large - scale light and music show + 14 in + 15 this + coref: IDENT 31 15-22 this large - scale light and music show + 16 large + 17 - + 18 scale + 19 light + 20 and + 21 music + 22 show + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The PLA Hong Kong Garrison Plaza, Bank of China Tower, at 8:00 every Saturday night, HSBC Main Building. + +Treebanked sentence: +-------------------- + The PLA Hong Kong Garrison Plaza , Bank of China Tower , at 8:00 every Saturday night , HSBC Main Building . + +Speaker information: +-------------------- + name: Speaker#6,Speaker#5,Speaker#5,Speaker#5 + start time: 700.211 + stop time: 709.694 + +Tree: +----- + (TOP (FRAG (NP (NP (DT The) + (NNP PLA) + (NML (NNP Hong) + (NNP Kong)) + (NNP Garrison) + (NNP Plaza)) + (, ,) + (NP (NML (NML (NP (NNP Bank))) + (PP (IN of) + (NP (NNP China)))) + (NNP Tower)) + (, ,) + (PP-TMP (IN at) + (NP (NP (CD 8:00)) + (NP-TMP (DT every) + (NNP Saturday) + (NN night))))) + (, ,) + (NP (NNP HSBC) + (NNP Main) + (NNP Building)) + (. .))) + +Leaves: +------- + 0 The + name: FAC 0-5 The PLA Hong Kong Garrison Plaza + 1 PLA + 2 Hong + 3 Kong + 4 Garrison + 5 Plaza + 6 , + 7 Bank + name: FAC 7-10 Bank of China Tower + 8 of + 9 China + 10 Tower + 11 , + 12 at + 13 8:00 + name: TIME 13-13 8:00 + 14 every + 15 Saturday + 16 night + 17 , + 18 HSBC + name: FAC 18-20 HSBC Main Building + 19 Main + 20 Building + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Their performances will be on schedule. + +Treebanked sentence: +-------------------- + Their performances will be on schedule . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 709.694 + stop time: 712.515 + +Tree: +----- + (TOP (S (NP-SBJ (PRP$ Their) + (NNS performances)) + (VP (MD will) + (VP (VB be) + (PP-PRD (IN on) + (NP (NN schedule))))) + (. .))) + +Leaves: +------- + 0 Their + coref: IDENT 35 0-0 Their + 1 performances + 2 will + 3 be + sense: be-v.1 + prop: be.01 + v * -> 3:0, be + ARG1 * -> 0:1, Their performances + ARGM-MOD * -> 2:0, will + ARG2 * -> 4:1, on schedule + 4 on + 5 schedule + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Center of the East Central. + +Treebanked sentence: +-------------------- + Center of the East Central . + +Speaker information: +-------------------- + name: Speaker#6 + start time: 711.243 + stop time: 712.515 + +Tree: +----- + (TOP (NP (NP (NNP Center)) + (PP (IN of) + (NP (DT the) + (NNP East) + (NNP Central))) + (. .))) + +Leaves: +------- + 0 Center + name: FAC 0-5 Center of the East Central . + 1 of + 2 the + 3 East + 4 Central + 5 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ten landmark buildings located on Hong Kong Island reveal themselves one by one, participating in the show in full + splendor, presenting a world-class light extravaganza to a musical rhythm. + +Treebanked sentence: +-------------------- + Ten landmark buildings located * on Hong Kong Island reveal themselves one by one , *PRO*-1 participating in the show in + full splendor , *PRO*-1 presenting a world - class light extravaganza to a musical rhythm . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 712.515 + stop time: 728.496 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (CD Ten) + (NN landmark) + (NNS buildings)) + (VP (VBN located) + (NP (-NONE- *)) + (PP-LOC (IN on) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Island))))) + (VP (VBP reveal) + (NP (PRP themselves)) + (NP-MNR (NP (CD one)) + (PP (IN by) + (NP (CD one)))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG participating) + (PP-CLR (IN in) + (NP (DT the) + (NN show))) + (PP-MNR (IN in) + (NP (JJ full) + (NN splendor))))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG presenting) + (NP (NP (DT a) + (NML (NN world) + (HYPH -) + (NN class)) + (JJ light) + (NN extravaganza)) + (PP (IN to) + (NP (DT a) + (JJ musical) + (NN rhythm))))))) + (. .))) + +Leaves: +------- + 0 Ten + coref: IDENT 52 0-8 Ten landmark buildings located * on Hong Kong Island + name: CARDINAL 0-0 Ten + 1 landmark + 2 buildings + 3 located + prop: locate.01 + v * -> 3:0, located + ARG1 * -> 4:0, * + ARGM-LOC * -> 5:1, on Hong Kong Island + LINK-PCR * -> 0:1, Ten landmark buildings + * -> 4:0, * + 4 * + 5 on + 6 Hong + name: LOC 6-8 Hong Kong Island + 7 Kong + 8 Island + 9 reveal + sense: reveal-v.1 + prop: reveal.01 + v * -> 9:0, reveal + ARG0 * -> 0:2, Ten landmark buildings located * on Hong Kong Island + ARG1 * -> 10:1, themselves + ARGM-MNR * -> 11:2, one by one + ARGM-PRD * -> 15:2, *PRO*-1 participating in the show in full splendor + ARGM-ADV * -> 24:2, *PRO*-1 presenting a world - class light extravaganza to a musical rhythm + 10 themselves + coref: IDENT 52 10-10 themselves + 11 one + name: CARDINAL 11-11 one + 12 by + 13 one + name: CARDINAL 13-13 one + 14 , + 15 *PRO*-1 + 16 participating + sense: participate-v.1 + prop: participate.01 + v * -> 16:0, participating + ARG0 * -> 15:0, *PRO*-1 -> 0:2, Ten landmark buildings located * on Hong Kong Island + ARG1 * -> 17:1, in the show + ARGM-PRD * -> 20:1, in full splendor + LINK-PCR * -> 15:0, *PRO*-1 -> 0:2, Ten landmark buildings located * on Hong Kong Island + * -> 0:2, Ten landmark buildings located * on Hong Kong Island + 17 in + 18 the + coref: IDENT 31 18-19 the show + 19 show + 20 in + 21 full + 22 splendor + 23 , + 24 *PRO*-1 + 25 presenting + sense: present-v.1 + prop: present.01 + v * -> 25:0, presenting + ARG0 * -> 24:0, *PRO*-1 -> 0:2, Ten landmark buildings located * on Hong Kong Island + ARG1 * -> 26:2, a world - class light extravaganza to a musical rhythm + LINK-PCR * -> 24:0, *PRO*-1 -> 0:2, Ten landmark buildings located * on Hong Kong Island + * -> 0:2, Ten landmark buildings located * on Hong Kong Island + 26 a + 27 world + 28 - + 29 class + 30 light + 31 extravaganza + 32 to + 33 a + 34 musical + 35 rhythm + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Whenever there is a major event or holiday, fireworks are also added to the light show. + +Treebanked sentence: +-------------------- + Whenever there is a major event or holiday *T*-1 , fireworks are also added *-2 to the light show . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 728.496 + stop time: 736.882898062 + +Tree: +----- + (TOP (S (SBAR-TMP (WHADVP-1 (WRB Whenever)) + (S (NP-SBJ (EX there)) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (JJ major) + (NN event)) + (CC or) + (NP (NN holiday))) + (ADVP-TMP (-NONE- *T*-1))))) + (, ,) + (NP-SBJ-2 (NNS fireworks)) + (VP (VBP are) + (ADVP (RB also)) + (VP (VBN added) + (NP (-NONE- *-2)) + (PP-CLR (IN to) + (NP (DT the) + (JJ light) + (NN show))))) + (. .))) + +Leaves: +------- + 0 Whenever + 1 there + 2 is + sense: be-v.5 + prop: be.02 + v * -> 2:0, is + ARG1 * -> 3:2, a major event or holiday + ARGM-TMP * -> 8:0, *T*-1 -> 0:1, Whenever + 3 a + 4 major + 5 event + 6 or + 7 holiday + 8 *T*-1 + 9 , + 10 fireworks + 11 are + prop: be.03 + v * -> 11:0, are + 12 also + 13 added + sense: add-v.1 + prop: add.02 + v * -> 13:0, added + ARGM-TMP * -> 0:2, Whenever there is a major event or holiday *T*-1 + ARGM-ADV * -> 12:1, also + ARG1 * -> 14:0, *-2 -> 10:1, fireworks + ARG2 * -> 15:1, to the light show + 14 *-2 + 15 to + 16 the + coref: IDENT 31 16-18 the light show + 17 light + 18 show + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Some, er, cities have consulted with us. + +Treebanked sentence: +-------------------- + Some , er , cities have consulted with us . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 765.447 + stop time: 768.648 + +Tree: +----- + (TOP (S (NP-SBJ (DT Some) + (, ,) + (UH er) + (, ,) + (NNS cities)) + (VP (VBP have) + (VP (VBN consulted) + (PP-CLR (IN with) + (NP (PRP us))))) + (. .))) + +Leaves: +------- + 0 Some + coref: IDENT 74 0-4 Some , er , cities + 1 , + 2 er + 3 , + 4 cities + 5 have + prop: have.01 + v * -> 5:0, have + 6 consulted + sense: consult-v.2 + prop: consult.01 + v * -> 6:0, consulted + ARG0 * -> 0:1, Some , er , cities + ARG1 * -> 7:1, with us + 7 with + 8 us + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Uh-huh. + +Treebanked sentence: +-------------------- + Uh-huh . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 768.648 + stop time: 768.952 + +Tree: +----- + (TOP (INTJ (UH Uh-huh) + (. .))) + +Leaves: +------- + 0 Uh-huh + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Their area of surprise was that those private, er, buildings, that is, the business community, ah, is willing to invest + in our overall project. + +Treebanked sentence: +-------------------- + Their area of surprise was that those private , er , buildings , that is , the business community , ah , is willing + *PRO*-1 to invest in our overall project . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 768.952 + stop time: 781.094 + +Tree: +----- + (TOP (S (NP-SBJ (NP (PRP$ Their) + (NN area)) + (PP (IN of) + (NP (NN surprise)))) + (VP (VBD was) + (SBAR-PRD (IN that) + (S (NP-SBJ-1 (NP (DT those) + (JJ private) + (, ,) + (UH er) + (, ,) + (NNS buildings)) + (, ,) + (ADVP (RB that) + (RB is)) + (, ,) + (NP (DT the) + (NN business) + (NN community))) + (, ,) + (INTJ (UH ah)) + (, ,) + (VP (VBZ is) + (ADJP-PRD (JJ willing) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB invest) + (PP-CLR (IN in) + (NP (PRP$ our) + (JJ overall) + (NN project))))))))))) + (. .))) + +Leaves: +------- + 0 Their + coref: IDENT 74 0-0 Their + 1 area + 2 of + 3 surprise + 4 was + sense: be-v.1 + prop: be.01 + v * -> 4:0, was + ARG1 * -> 0:2, Their area of surprise + ARG2 * -> 5:1, that those private , er , buildings , that is , the business community , ah , is + willing *PRO*-1 to invest in our overall project + 5 that + 6 those + coref: IDENT 35 6-11 those private , er , buildings + 7 private + 8 , + 9 er + 10 , + 11 buildings + 12 , + 13 that + 14 is + 15 , + 16 the + 17 business + 18 community + 19 , + 20 ah + 21 , + 22 is + prop: be.01 + v * -> 22:0, is + ARG1 * -> 6:2, those private , er , buildings , that is , the business community + ARGM-DIS * -> 20:1, ah + ARG2 * -> 23:1, willing *PRO*-1 to invest in our overall project + 23 willing + 24 *PRO*-1 + 25 to + 26 invest + sense: invest-v.1 + prop: invest.01 + v * -> 26:0, invest + ARG0 * -> 24:0, *PRO*-1 -> 6:2, those private , er , buildings , that is , the business community + ARG2 * -> 27:1, in our overall project + LINK-PCR * -> 24:0, *PRO*-1 -> 6:2, those private , er , buildings , that is , the business community + * -> 6:2, those private , er , buildings , that is , the business community + 27 in + 28 our + 29 overall + 30 project + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Yes. + +Treebanked sentence: +-------------------- + Yes . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 776.824 + stop time: 777.125 + +Tree: +----- + (TOP (INTJ (UH Yes) + (. .))) + +Leaves: +------- + 0 Yes + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The answer is that this is a reward to the entire society, not an individual building's reward. + +Treebanked sentence: +-------------------- + The answer is that this is a reward to the entire society , not an individual building 's reward . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 781.094 + stop time: 786.602 + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NN answer)) + (VP (VBZ is) + (SBAR-PRD (IN that) + (S (NP-SBJ (DT this)) + (VP (VBZ is) + (NP-PRD (NP (NP (DT a) + (NN reward)) + (PP (IN to) + (NP (DT the) + (JJ entire) + (NN society)))) + (, ,) + (RB not) + (NP (NP (DT an) + (JJ individual) + (NN building) + (POS 's)) + (NN reward))))))) + (. .))) + +Leaves: +------- + 0 The + 1 answer + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 0:1, The answer + ARG2 * -> 3:1, that this is a reward to the entire society , not an individual building 's reward + 3 that + 4 this + coref: IDENT 31 4-4 this + 5 is + sense: be-v.1 + prop: be.01 + v * -> 5:0, is + ARG1 * -> 4:1, this + ARG2 * -> 6:3, a reward to the entire society , not an individual building 's reward + 6 a + 7 reward + 8 to + 9 the + 10 entire + 11 society + 12 , + 13 not + 14 an + 15 individual + 16 building + 17 's + 18 reward + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Er, of course, after SARS, we felt that all of Hong Kong hopes to be involved, so that the Hong Kong tourism industry + will recover, rebound together with other sectors. + +Treebanked sentence: +-------------------- + Er , of course , after SARS , we felt that all of Hong Kong hopes *PRO*-1 to be involved *-2 , so that the Hong Kong + tourism industry will recover , rebound together with other sectors . + +Speaker information: +-------------------- + name: Zheng_ruhua + start time: 786.602 + stop time: 797.25 + +Tree: +----- + (TOP (S (INTJ (UH Er)) + (, ,) + (PP (IN of) + (NP (NN course))) + (, ,) + (PP-TMP (IN after) + (NP (NNP SARS))) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBD felt) + (SBAR (IN that) + (S (NP-SBJ-1 (NP (DT all)) + (PP (IN of) + (NP (NNP Hong) + (NNP Kong)))) + (VP (VBZ hopes) + (S (NP-SBJ-2 (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB be) + (VP (VBN involved) + (NP (-NONE- *-2)))))) + (, ,) + (SBAR-PRP (IN so) + (IN that) + (S (NP-SBJ (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN tourism) + (NN industry)) + (VP (MD will) + (VP (VB recover) + (, ,) + (VB rebound) + (ADVP-MNR (RB together) + (PP (IN with) + (NP (JJ other) + (NNS sectors)))))))))))) + (. .))) + +Leaves: +------- + 0 Er + 1 , + 2 of + 3 course + sense: course-n.13 + 4 , + 5 after + 6 SARS + 7 , + 8 we + 9 felt + sense: feel-v.3 + prop: feel.02 + v * -> 9:0, felt + ARGM-DIS * -> 0:1, Er + ARGM-DIS * -> 2:1, of course + ARGM-TMP * -> 5:1, after SARS + ARG0 * -> 8:1, we + ARG1 * -> 10:1, that all of Hong Kong hopes *PRO*-1 to be involved *-2 , so that the Hong Kong tourism + industry will recover , rebound together with other sectors + 10 that + 11 all + coref: IDENT 0 11-14 all of Hong Kong + 12 of + 13 Hong + name: GPE 13-14 Hong Kong + 14 Kong + 15 hopes + sense: hope-v.1 + prop: hope.01 + v * -> 15:0, hopes + ARG0 * -> 11:2, all of Hong Kong + ARG1 * -> 16:2, *PRO*-1 to be involved *-2 + ARGM-PRP * -> 22:1, so that the Hong Kong tourism industry will recover , rebound together with other + sectors + 16 *PRO*-1 + 17 to + 18 be + prop: be.03 + v * -> 18:0, be + 19 involved + prop: involve.01 + v * -> 19:0, involved + ARG1 * -> 16:0, *PRO*-1 -> 11:2, all of Hong Kong + LINK-PCR * -> 20:0, *-2 -> 16:0, *PRO*-1 -> 11:2, all of Hong Kong + * -> 16:0, *PRO*-1 -> 11:2, all of Hong Kong + * -> 11:2, all of Hong Kong + 20 *-2 + 21 , + 22 so + 23 that + 24 the + 25 Hong + coref: IDENT 0 25-26 Hong Kong + name: GPE 25-26 Hong Kong + 26 Kong + 27 tourism + 28 industry + 29 will + 30 recover + sense: recover-v.2 + prop: recover.01 + v * -> 30:0, recover + ARG1 * -> 24:1, the Hong Kong tourism industry + ARGM-MOD * -> 29:0, will + ARGM-MNR * -> 33:1, together with other sectors + 31 , + 32 rebound + sense: rebound-v.2 + prop: rebound.01 + v * -> 32:0, rebound + ARG1 * -> 24:1, the Hong Kong tourism industry + ARGM-MOD * -> 29:0, will + ARGM-MNR * -> 33:1, together with other sectors + 33 together + 34 with + 35 other + 36 sectors + 37 . + + +======================================================================================================================== +Coreference chains for section 4: +--------------------------------- + + Chain 0 (IDENT) + 75.0-1 Hong Kong + 76.4-6 the city 's + 93.11-14 all of Hong Kong + 93.25-26 Hong Kong + + Chain 11 (IDENT) + 78.2-4 our Victoria Harbor + 79.8-9 Victoria Harbor + + Chain 31 (IDENT) + 81.21-33 a unique , er , and fascinating multi-media world - class light show + 82.15-22 this large - scale light and music show + 86.18-19 the show + 87.16-18 the light show + 92.4-4 this + + Chain 35 (IDENT) + 82.7-22 all the well - known skyscrapers participating in this large - scale light and music show + 84.0-0 Their + 90.6-11 those private , er , buildings + + Chain 52 (IDENT) + 86.0-8 Ten landmark buildings located * on Hong Kong Island + 86.10-10 themselves + + Chain 74 (IDENT) + 88.0-4 Some , er , cities + 90.0-0 Their + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong Wetland Park, which is currently under construction, is also one of the designated new projects of the Hong + Kong SAR government for advancing the Hong Kong tourism industry. + +Treebanked sentence: +-------------------- + Hong Kong Wetland Park , which *T*-1 is currently under construction , is also one of the designated new projects of the + Hong Kong SAR government for *PRO* advancing the Hong Kong tourism industry . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 797.25 + stop time: 808.285 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Wetland) + (NNP Park)) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBZ is) + (ADVP-TMP (RB currently)) + (PP-PRD (IN under) + (NP (NN construction))))))) + (, ,) + (VP (VBZ is) + (ADVP (RB also)) + (NP-PRD (NP (CD one)) + (PP (IN of) + (NP (NP (DT the) + (VBN designated) + (JJ new) + (NNS projects)) + (PP (IN of) + (NP (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NNP SAR) + (NN government))) + (PP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG advancing) + (NP (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN tourism) + (NN industry))))))))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 0 0-10 Hong Kong Wetland Park , which *T*-1 is currently under construction + name: FAC 0-3 Hong Kong Wetland Park + 1 Kong + 2 Wetland + 3 Park + 4 , + 5 which + 6 *T*-1 + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 6:0, *T*-1 -> 5:1, which + ARGM-TMP * -> 8:1, currently + ARG2 * -> 9:1, under construction + LINK-SLC * -> 6:0, *T*-1 -> 5:1, which + * -> 0:2, Hong Kong Wetland Park + 8 currently + 9 under + 10 construction + 11 , + 12 is + sense: be-v.2 + prop: be.01 + v * -> 12:0, is + ARG1 * -> 0:3, Hong Kong Wetland Park , which *T*-1 is currently under construction + ARGM-ADV * -> 13:1, also + ARG2 * -> 14:2, one of the designated new projects of the Hong Kong SAR government for *PRO* advancing + the Hong Kong tourism industry + 13 also + 14 one + 15 of + 16 the + 17 designated + prop: designate.01 + v * -> 17:0, designated + ARG1 * -> 18:0, new + -> 19:0, projects + 18 new + 19 projects + 20 of + 21 the + coref: IDENT 8 21-25 the Hong Kong SAR government + 22 Hong + ! name: GPE 22-24 Hong Kong SAR + 23 Kong + 24 SAR + 25 government + 26 for + 27 *PRO* + 28 advancing + sense: advance-v.3 + prop: advance.01 + v * -> 28:0, advancing + ARG0 * -> 27:0, *PRO* + ARG1 * -> 29:1, the Hong Kong tourism industry + 29 the + 30 Hong + coref: IDENT 8 30-31 Hong Kong + name: GPE 30-31 Hong Kong + 31 Kong + 32 tourism + 33 industry + 34 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This is a park intimately connected with nature, being built by the Hong Kong government for its people who live in a + city of reinforced concrete. + +Treebanked sentence: +-------------------- + This is a park intimately connected * with nature , being built * by the Hong Kong government for its people who *T*-1 + live in a city of reinforced concrete . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 808.285 + stop time: 817.703 + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBZ is) + (NP-PRD (NP (NP (DT a) + (NN park)) + (VP (ADVP-MNR (RB intimately)) + (VBN connected) + (NP (-NONE- *)) + (PP-CLR (IN with) + (NP (NN nature))))) + (, ,) + (VP (VBG being) + (VP (VBN built) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (DT the) + (NML (NNP Hong) + (NNP Kong)) + (NN government))) + (PP-PRP (IN for) + (NP (NP (PRP$ its) + (NNS people)) + (SBAR (WHNP-1 (WP who)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBP live) + (PP-LOC (IN in) + (NP (NP (DT a) + (NN city)) + (PP (IN of) + (NP (VBN reinforced) + (NN concrete)))))))))))))) + (. .))) + +Leaves: +------- + 0 This + coref: IDENT 0 0-0 This + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, This + ARG2 * -> 2:3, a park intimately connected * with nature , being built * by the Hong Kong government + for its people who *T*-1 live in a city of reinforced concrete + 2 a + 3 park + 4 intimately + 5 connected + prop: connect.01 + v * -> 5:0, connected + ARG1 * -> 6:0, * + ARGM-MNR * -> 4:1, intimately + ARG1 * -> 7:1, with nature + LINK-PCR * -> 2:1, a park + * -> 6:0, * + 6 * + 7 with + 8 nature + 9 , + 10 being + prop: be.03 + v * -> 10:0, being + 11 built + sense: build-v.1 + prop: build.01 + v * -> 11:0, built + ARG1 * -> 12:0, * + ARG0 * -> 13:1, by the Hong Kong government + ARGM-GOL * -> 18:1, for its people who *T*-1 live in a city of reinforced concrete + LINK-PCR * -> 2:2, a park intimately connected * with nature + * -> 12:0, * + 12 * + 13 by + 14 the + coref: IDENT 8 14-17 the Hong Kong government + 15 Hong + name: GPE 15-16 Hong Kong + 16 Kong + 17 government + 18 for + 19 its + coref: IDENT 8 19-19 its + 20 people + 21 who + 22 *T*-1 + 23 live + sense: live-v.2 + prop: live.01 + v * -> 23:0, live + ARG0 * -> 22:0, *T*-1 -> 21:1, who + ARGM-LOC * -> 24:1, in a city of reinforced concrete + LINK-SLC * -> 22:0, *T*-1 -> 21:1, who + * -> 19:1, its people + 24 in + 25 a + 26 city + 27 of + 28 reinforced + sense: reinforce-v.1 + prop: reinforce.01 + v * -> 28:0, reinforced + ARG1 * -> 29:0, concrete + 29 concrete + 30 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong Wetland Park covers an area of 61 hectares, including a 10,000 square meter visitor's center and a 60 hectare + outdoor wildlife habitat. + +Treebanked sentence: +-------------------- + Hong Kong Wetland Park covers an area of 61 hectares , including a 10,000 square meter visitor 's center and a 60 + hectare outdoor wildlife habitat . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 824.22 + stop time: 834.945240101 + +Tree: +----- + (TOP (S (NP-SBJ (NML (NNP Hong) + (NNP Kong)) + (NNP Wetland) + (NNP Park)) + (VP (VBZ covers) + (NP (NP (DT an) + (NN area)) + (PP (IN of) + (NP (NP (CD 61) + (NNS hectares)) + (, ,) + (PP (VBG including) + (NP (NP (DT a) + (NML (CD 10,000) + (NN square) + (NN meter)) + (NP (NN visitor) + (POS 's)) + (NN center)) + (CC and) + (NP (DT a) + (NML (CD 60) + (NN hectare)) + (JJ outdoor) + (NN wildlife) + (NN habitat)))))))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 0 0-3 Hong Kong Wetland Park + name: FAC 0-3 Hong Kong Wetland Park + 1 Kong + 2 Wetland + 3 Park + 4 covers + sense: cover-v.2 + prop: cover.02 + v * -> 4:0, covers + ARG2 * -> 0:2, Hong Kong Wetland Park + ARG1 * -> 5:2, an area of 61 hectares , including a 10,000 square meter visitor 's center and a 60 + hectare outdoor wildlife habitat + 5 an + 6 area + 7 of + 8 61 + name: QUANTITY 8-9 61 hectares + 9 hectares + 10 , + 11 including + prop: include.01 + v * -> 11:0, including + ARG2 * -> 8:1, 61 hectares + ARG1 * -> 12:2, a 10,000 square meter visitor 's center and a 60 hectare outdoor wildlife habitat + 12 a + 13 10,000 + name: QUANTITY 13-15 10,000 square meter + 14 square + 15 meter + 16 visitor + 17 's + 18 center + 19 and + 20 a + 21 60 + name: QUANTITY 21-22 60 hectare + 22 hectare + 23 outdoor + 24 wildlife + 25 habitat + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In the indoor exhibition hall, tourists can learn about types of wetlands in various parts of the world, and to gain + knowledge about wetlands. + +Treebanked sentence: +-------------------- + In the indoor exhibition hall , tourists can learn about types of wetlands in various parts of the world , and *PRO* to + gain knowledge about wetlands . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 834.945240101 + stop time: 842.361 + +Tree: +----- + (TOP (S (PP-LOC (IN In) + (NP (DT the) + (NN indoor) + (NN exhibition) + (NN hall))) + (, ,) + (NP-SBJ (NNS tourists)) + (VP (MD can) + (VP (VB learn) + (UCP (PP (IN about) + (NP (NP (NNS types)) + (PP (IN of) + (NP (NNS wetlands))) + (PP-LOC (IN in) + (NP (NP (JJ various) + (NNS parts)) + (PP (IN of) + (NP (DT the) + (NN world))))))) + (, ,) + (CC and) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB gain) + (NP (NP (NN knowledge)) + (PP (IN about) + (NP (NNS wetlands)))))))))) + (. .))) + +Leaves: +------- + 0 In + 1 the + 2 indoor + 3 exhibition + 4 hall + 5 , + 6 tourists + coref: IDENT 35 6-6 tourists + 7 can + 8 learn + sense: learn-v.2 + prop: learn.01 + v * -> 8:0, learn + ARGM-LOC * -> 0:1, In the indoor exhibition hall + ARG0 * -> 6:1, tourists + ARGM-MOD * -> 7:0, can + ARG1 * -> 9:2, about types of wetlands in various parts of the world , and *PRO* to gain knowledge + about wetlands + 9 about + 10 types + 11 of + 12 wetlands + 13 in + 14 various + 15 parts + 16 of + 17 the + 18 world + 19 , + 20 and + 21 *PRO* + 22 to + 23 gain + sense: gain-v.1 + prop: gain.02 + v * -> 23:0, gain + ARG0 * -> 21:0, *PRO* + ARG1 * -> 24:2, knowledge about wetlands + 24 knowledge + 25 about + 26 wetlands + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Outdoors, they can also personally experience wetland ecology. + +Treebanked sentence: +-------------------- + Outdoors , they can also personally experience wetland ecology . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 842.361 + stop time: 847.068 + +Tree: +----- + (TOP (S (ADVP-LOC (RB Outdoors)) + (, ,) + (NP-SBJ (PRP they)) + (VP (MD can) + (ADVP (RB also)) + (ADVP-MNR (RB personally)) + (VP (VB experience) + (NP (NN wetland) + (NN ecology)))) + (. .))) + +Leaves: +------- + 0 Outdoors + 1 , + 2 they + coref: IDENT 35 2-2 they + 3 can + 4 also + 5 personally + 6 experience + sense: experience-v.1 + prop: experience.01 + v * -> 6:0, experience + ARGM-LOC * -> 0:1, Outdoors + ARG0 * -> 2:1, they + ARGM-MOD * -> 3:0, can + ARGM-ADV * -> 4:1, also + ARGM-MNR * -> 5:1, personally + ARG1 * -> 7:1, wetland ecology + 7 wetland + 8 ecology + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + , er, from the highest point we can see two different ecological environments. + +Treebanked sentence: +-------------------- + At the highest point of Hong Kong , er , from the highest point we can see two different ecological environments . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 847.068 + stop time: 853.92 + +Tree: +----- + (TOP (S (EDITED (PP-TMP (IN At) + (NP (NP (DT the) + (JJS highest) + (NN point)) + (PP (IN of) + (NP (NNP Hong) + (NNP Kong)))))) + (, ,) + (INTJ (UH er)) + (, ,) + (PP-DIR (IN from) + (NP (DT the) + (JJS highest) + (NN point))) + (NP-SBJ (PRP we)) + (VP (MD can) + (VP (VB see) + (NP (CD two) + (JJ different) + (JJ ecological) + (NNS environments)))) + (. .))) + +Leaves: +------- + 0 At + 1 the + 2 highest + 3 point + 4 of + 5 Hong + 6 Kong + 7 , + 8 er + 9 , + 10 from + 11 the + 12 highest + 13 point + 14 we + 15 can + 16 see + sense: see-v.1 + prop: see.01 + v * -> 16:0, see + ARGM-DIS * -> 8:1, er + ARGM-DIR * -> 10:1, from the highest point + ARG0 * -> 14:1, we + ARGM-MOD * -> 15:0, can + ARG1 * -> 17:1, two different ecological environments + 17 two + name: CARDINAL 17-17 two + 18 different + 19 ecological + 20 environments + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ha, on that side are many tall buildings, that is, towns with lots of people living there, + +Treebanked sentence: +-------------------- + Ha , on that side are *T*-1 many tall buildings , that is , towns with lots of people living there , + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 853.92 + stop time: 859.118 + +Tree: +----- + (TOP (SINV (INTJ (UH Ha)) + (, ,) + (PP-LOC-PRD-TPC-1 (IN on) + (NP (DT that) + (NN side))) + (VP (VBP are) + (PP-LOC-PRD (-NONE- *T*-1))) + (NP-SBJ (NP (JJ many) + (JJ tall) + (NNS buildings)) + (, ,) + (ADVP (RB that) + (RB is)) + (, ,) + (NP (NNS towns) + (PP (IN with) + (NP (NP (NP (NNS lots)) + (PP (IN of) + (NP (NNS people)))) + (VP (VBG living) + (ADVP-LOC (RB there))))))) + (, ,))) + +Leaves: +------- + 0 Ha + 1 , + 2 on + 3 that + 4 side + 5 are + sense: be-v.4 + prop: be.01 + v * -> 5:0, are + ARGM-DIS * -> 0:1, Ha + ARG2 * -> 6:0, *T*-1 -> 2:1, on that side + ARG1 * -> 7:2, many tall buildings , that is , towns with lots of people living there + 6 *T*-1 + 7 many + 8 tall + 9 buildings + 10 , + 11 that + 12 is + 13 , + 14 towns + 15 with + 16 lots + 17 of + 18 people + 19 living + sense: live-v.2 + prop: live.01 + v * -> 19:0, living + ARG0 * -> 16:2, lots of people + ARGM-LOC * -> 20:1, there + 20 there + 21 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + but behind me is our Wetland Park. + +Treebanked sentence: +-------------------- + but behind me is *T*-1 our Wetland Park . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 859.118 + stop time: 863.113 + +Tree: +----- + (TOP (SINV (CC but) + (PP-LOC-PRD-TPC-1 (IN behind) + (NP (PRP me))) + (VP (VBZ is) + (PP-LOC-PRD (-NONE- *T*-1))) + (NP-SBJ (PRP$ our) + (NNP Wetland) + (NNP Park)) + (. .))) + +Leaves: +------- + 0 but + 1 behind + 2 me + 3 is + sense: be-v.4 + prop: be.01 + v * -> 3:0, is + ARGM-DIS * -> 0:0, but + ARG2 * -> 4:0, *T*-1 -> 1:1, behind me + ARG1 * -> 5:1, our Wetland Park + 4 *T*-1 + 5 our + coref: IDENT 0 5-7 our Wetland Park + 6 Wetland + ! name: FAC 6-7 Wetland Park + 7 Park + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ha, entirely different. + +Treebanked sentence: +-------------------- + Ha , entirely different . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 863.113 + stop time: 864.414490312 + +Tree: +----- + (TOP (FRAG (INTJ (UH Ha)) + (, ,) + (ADJP (RB entirely) + (JJ different)) + (. .))) + +Leaves: +------- + 0 Ha + 1 , + 2 entirely + 3 different + 4 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Quite primitive, + +Treebanked sentence: +-------------------- + Quite primitive , + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 864.414490312 + stop time: 865.868 + +Tree: +----- + (TOP (ADJP (RB Quite) + (JJ primitive) + (, ,))) + +Leaves: +------- + 0 Quite + 1 primitive + 2 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + er, a fresh water swamp, + +Treebanked sentence: +-------------------- + er , a fresh water swamp , + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 865.868 + stop time: 867.649536647 + +Tree: +----- + (TOP (FRAG (INTJ (UH er)) + (, ,) + (NP (DT a) + (NML (JJ fresh) + (NN water)) + (NN swamp)) + (, ,))) + +Leaves: +------- + 0 er + 1 , + 2 a + 3 fresh + 4 water + 5 swamp + 6 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + er, the Wetland Park Exploration Center. + +Treebanked sentence: +-------------------- + er , the Wetland Park Exploration Center . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 867.649536647 + stop time: 870.596 + +Tree: +----- + (TOP (FRAG (INTJ (UH er)) + (, ,) + (NP (DT the) + (NML (NNP Wetland) + (NNP Park)) + (NNP Exploration) + (NNP Center)) + (. .))) + +Leaves: +------- + 0 er + 1 , + 2 the + name: FAC 2-6 the Wetland Park Exploration Center + 3 Wetland + 4 Park + 5 Exploration + 6 Center + 7 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Lastly, farthest away you can see Putian of Shenzhen. + +Treebanked sentence: +-------------------- + Lastly , farthest away you can see Putian of Shenzhen . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 870.596 + stop time: 874.787 + +Tree: +----- + (TOP (S (ADVP-TMP (RB Lastly)) + (, ,) + (ADVP-LOC (RBS farthest) + (RB away)) + (NP-SBJ (PRP you)) + (VP (MD can) + (VP (VB see) + (NP (NNP Putian) + (PP (IN of) + (NP (NNP Shenzhen)))))) + (. .))) + +Leaves: +------- + 0 Lastly + 1 , + 2 farthest + 3 away + 4 you + 5 can + 6 see + sense: see-v.1 + prop: see.01 + v * -> 6:0, see + ARGM-DIS * -> 0:1, Lastly + ARGM-LOC * -> 2:1, farthest away + ARG0 * -> 4:1, you + ARGM-MOD * -> 5:0, can + ARG1 * -> 7:1, Putian of Shenzhen + 7 Putian + name: GPE 7-7 Putian + 8 of + 9 Shenzhen + coref: IDENT 68 9-9 Shenzhen + name: GPE 9-9 Shenzhen + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Then,, on the bridge is Hong Kong and outside is Shenzhen. + +Treebanked sentence: +-------------------- + Then , the bridge is , on the bridge is *T*-1 Hong Kong and outside is *T*-2 Shenzhen . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 874.787 + stop time: 880.274 + +Tree: +----- + (TOP (SINV (ADVP-TMP (RB Then)) + (, ,) + (SINV (EDITED (S (NP-SBJ (DT the) + (NN bridge))) + (VP-UNF (VBZ is))) + (, ,) + (PP-LOC-PRD-TPC-1 (IN on) + (NP (DT the) + (NN bridge))) + (VP (VBZ is) + (PP-LOC-PRD (-NONE- *T*-1))) + (NP-SBJ (NNP Hong) + (NNP Kong))) + (CC and) + (SINV (ADVP-LOC-PRD-TPC-2 (RB outside)) + (VP (VBZ is) + (ADVP-LOC-PRD (-NONE- *T*-2))) + (NP-SBJ (NNP Shenzhen))) + (. .))) + +Leaves: +------- + 0 Then + 1 , + 2 the + 3 bridge + 4 is + prop: be.01 + v * -> 4:0, is + ARG1 * -> 2:2, the bridge + 5 , + 6 on + 7 the + 8 bridge + 9 is + sense: be-v.4 + prop: be.01 + v * -> 9:0, is + ARG2 * -> 10:0, *T*-1 -> 6:1, on the bridge + ARG1 * -> 11:1, Hong Kong + 10 *T*-1 + 11 Hong + coref: IDENT 50 11-12 Hong Kong + name: GPE 11-12 Hong Kong + 12 Kong + 13 and + 14 outside + 15 is + sense: be-v.4 + prop: be.01 + v * -> 15:0, is + ARG2 * -> 16:0, *T*-2 -> 14:1, outside + ARG1 * -> 17:1, Shenzhen + 16 *T*-2 + 17 Shenzhen + coref: IDENT 68 17-17 Shenzhen + name: GPE 17-17 Shenzhen + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + You can come into intimate contact with nature in the outdoor wetland environment. + +Treebanked sentence: +-------------------- + You can come into intimate contact with nature in the outdoor wetland environment . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 882.719 + stop time: 887.043 + +Tree: +----- + (TOP (S (NP-SBJ (PRP You)) + (VP (MD can) + (VP (VB come) + (PP-CLR (IN into) + (NP (NP (JJ intimate) + (NN contact)) + (PP (IN with) + (NP (NN nature))))) + (PP (IN in) + (NP (DT the) + (JJ outdoor) + (NN wetland) + (NN environment))))) + (. .))) + +Leaves: +------- + 0 You + 1 can + 2 come + sense: come-v.3 + prop: come.01 + v * -> 2:0, come + ARG1 * -> 0:1, You + ARGM-MOD * -> 1:0, can + ARG4 * -> 3:1, into intimate contact with nature + ARGM-LOC * -> 8:1, in the outdoor wetland environment + 3 into + 4 intimate + 5 contact + 6 with + 7 nature + 8 in + 9 the + 10 outdoor + 11 wetland + 12 environment + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Children can get to know different animals and plants, and even some crops that are rarely seen in our daily life. + +Treebanked sentence: +-------------------- + Children can get *PRO*-1 to know different animals and plants , and even some crops that *T*-2 are rarely seen *-3 in + our daily life . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 887.043 + stop time: 897.975 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NNS Children)) + (VP (MD can) + (VP (VB get) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB know) + (NP (NP (JJ different) + (NNS animals) + (CC and) + (NNS plants)) + (, ,) + (CC and) + (NP (NP (RB even) + (DT some) + (NNS crops)) + (SBAR (WHNP-2 (WDT that)) + (S (NP-SBJ-3 (-NONE- *T*-2)) + (VP (VBP are) + (ADVP-TMP (RB rarely)) + (VP (VBN seen) + (NP (-NONE- *-3)) + (PP-LOC (IN in) + (NP (PRP$ our) + (JJ daily) + (NN life)))))))))))))) + (. .))) + +Leaves: +------- + 0 Children + 1 can + 2 get + sense: get-v.11.37 + prop: get.03 + v * -> 2:0, get + ARG1 * -> 0:1, Children + ARGM-MOD * -> 1:0, can + ARG2 * -> 3:2, *PRO*-1 to know different animals and plants , and even some crops that *T*-2 are + rarely seen *-3 in our daily life + 3 *PRO*-1 + 4 to + 5 know + sense: know-v.2 + prop: know.01 + v * -> 5:0, know + ARG0 * -> 3:0, *PRO*-1 -> 0:1, Children + ARG1 * -> 6:2, different animals and plants , and even some crops that *T*-2 are rarely seen *-3 in + our daily life + LINK-PCR * -> 3:0, *PRO*-1 -> 0:1, Children + * -> 0:1, Children + 6 different + 7 animals + 8 and + 9 plants + 10 , + 11 and + 12 even + 13 some + 14 crops + 15 that + 16 *T*-2 + 17 are + prop: be.03 + v * -> 17:0, are + 18 rarely + 19 seen + prop: see.01 + v * -> 19:0, seen + ARGM-ADV * -> 18:1, rarely + ARG1 * -> 20:0, *-3 -> 16:0, *T*-2 -> 15:1, that + ARGM-LOC * -> 21:1, in our daily life + LINK-SLC * -> 20:0, *-3 -> 16:0, *T*-2 -> 15:1, that + * -> 12:1, even some crops + 20 *-3 + 21 in + 22 our + 23 daily + 24 life + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Over here are paddy fields, which is rather unique. + +Treebanked sentence: +-------------------- + Over here are *T*-1 paddy fields , which *T*-2 is rather unique . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 897.975 + stop time: 902.815 + +Tree: +----- + (TOP (SINV (PP-LOC-PRD-TPC-1 (IN Over) + (ADVP (RB here))) + (VP (VBP are) + (PP-LOC-PRD (-NONE- *T*-1))) + (NP-SBJ (NP (NN paddy) + (NNS fields)) + (, ,) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VBZ is) + (ADJP-PRD (RB rather) + (JJ unique)))))) + (. .))) + +Leaves: +------- + 0 Over + 1 here + 2 are + sense: be-v.4 + prop: be.01 + v * -> 2:0, are + ARG2 * -> 3:0, *T*-1 -> 0:1, Over here + ARG1 * -> 4:2, paddy fields , which *T*-2 is rather unique + 3 *T*-1 + 4 paddy + 5 fields + 6 , + 7 which + 8 *T*-2 + 9 is + sense: be-v.1 + prop: be.01 + v * -> 9:0, is + ARG1 * -> 8:0, *T*-2 -> 7:1, which + ARG2 * -> 10:1, rather unique + LINK-SLC * -> 8:0, *T*-2 -> 7:1, which + * -> 4:1, paddy fields + 10 rather + 11 unique + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ha, there are aquatic plants inside. + +Treebanked sentence: +-------------------- + Ha , there are aquatic plants inside . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 902.815 + stop time: 905.155855097 + +Tree: +----- + (TOP (S (INTJ (UH Ha)) + (, ,) + (NP-SBJ (EX there)) + (VP (VBP are) + (NP-PRD (JJ aquatic) + (NNS plants)) + (ADVP-LOC (RB inside))) + (. .))) + +Leaves: +------- + 0 Ha + 1 , + 2 there + 3 are + sense: be-v.4 + prop: be.02 + v * -> 3:0, are + ARGM-DIS * -> 0:1, Ha + ARG1 * -> 4:1, aquatic plants + ARGM-LOC * -> 6:1, inside + 4 aquatic + 5 plants + 6 inside + 7 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, the most special is rice, because %pw many Hong Kong children nowadays have never seen what rice looks like. + +Treebanked sentence: +-------------------- + Ah , the most special is rice , because %pw many Hong Kong children nowadays have never seen what rice looks like *T*-1 + . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 905.155855097 + stop time: 913.417 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (DT the) + (ADJP (RBS most) + (JJ special))) + (VP (VBZ is) + (NP-PRD (NN rice)) + (, ,) + (SBAR-PRP (IN because) + (S (XX %pw) + (NP-SBJ (JJ many) + (NML (NNP Hong) + (NNP Kong)) + (NNS children)) + (ADVP-TMP (RB nowadays)) + (VP (VBP have) + (ADVP-TMP (RB never)) + (VP (VBN seen) + (SBAR (WHNP-1 (WP what)) + (S (NP-SBJ (NN rice)) + (VP (VBZ looks) + (PP-CLR (IN like) + (NP (-NONE- *T*-1))))))))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 the + 3 most + 4 special + 5 is + sense: be-v.2 + prop: be.01 + v * -> 5:0, is + ARGM-DIS * -> 0:1, Ah + ARG1 * -> 2:1, the most special + ARG2 * -> 6:1, rice + ARGM-CAU * -> 8:1, because %pw many Hong Kong children nowadays have never seen what rice looks like + *T*-1 + 6 rice + 7 , + 8 because + 9 %pw + 10 many + 11 Hong + coref: IDENT 50 11-12 Hong Kong + name: GPE 11-12 Hong Kong + 12 Kong + 13 children + 14 nowadays + 15 have + prop: have.01 + v * -> 15:0, have + 16 never + 17 seen + sense: see-v.1 + prop: see.01 + v * -> 17:0, seen + ARG0 * -> 10:1, many Hong Kong children + ARGM-TMP * -> 14:1, nowadays + ARGM-NEG * -> 16:1, never + ARG1 * -> 18:2, what rice looks like *T*-1 + 18 what + 19 rice + 20 looks + sense: look-v.2 + prop: look.02 + v * -> 20:0, looks + ARG0 * -> 19:1, rice + ARG1 * -> 21:1, like *T*-1 + 21 like + 22 *T*-1 + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Look over there. + +Treebanked sentence: +-------------------- + *PRO* Look over there . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 913.417 + stop time: 916.781802864 + +Tree: +----- + (TOP (S-IMP (NP-SBJ (-NONE- *PRO*)) + (VP (VB Look) + (ADVP-DIR (RB over) + (RB there))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Look + sense: look-v.1 + prop: look.01 + v * -> 1:0, Look + ARG0 * -> 0:0, *PRO* + ARGM-DIR * -> 2:1, over there + 2 over + 3 there + 4 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They are going to be ripe soon. + +Treebanked sentence: +-------------------- + They are going *-1 to be ripe soon . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 913.417 + stop time: 916.781802864 + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP They)) + (VP (VBP are) + (VP (VBG going) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB be) + (ADJP-PRD (JJ ripe)) + (ADVP-TMP (RB soon))))))) + (. .))) + +Leaves: +------- + 0 They + 1 are + prop: be.03 + v * -> 1:0, are + 2 going + prop: go.04 + v * -> 2:0, going + 3 *-1 + 4 to + 5 be + sense: be-v.1 + prop: be.01 + v * -> 5:0, be + ARG1 * -> 3:0, *-1 -> 0:1, They + ARG2 * -> 6:1, ripe + ARGM-TMP * -> 7:1, soon + 6 ripe + 7 soon + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The long one over there. + +Treebanked sentence: +-------------------- + The long one over there . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 916.781802864 + stop time: 918.372 + +Tree: +----- + (TOP (NP (NP (DT The) + (JJ long) + (NN one)) + (ADVP-LOC (RB over) + (RB there)) + (. .))) + +Leaves: +------- + 0 The + 1 long + 2 one + 3 over + 4 there + 5 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Oh. + +Treebanked sentence: +-------------------- + Oh . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 917.651 + stop time: 918.372 + +Tree: +----- + (TOP (INTJ (UH Oh) + (. .))) + +Leaves: +------- + 0 Oh + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Yes. + +Treebanked sentence: +-------------------- + Yes . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 918.372 + stop time: 919.534 + +Tree: +----- + (TOP (INTJ (UH Yes) + (. .))) + +Leaves: +------- + 0 Yes + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + , with ears, ah. + +Treebanked sentence: +-------------------- + With , with ears , ah . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 919.534 + stop time: 921.326 + +Tree: +----- + (TOP (FRAG (EDITED (IN With)) + (, ,) + (PP (IN with) + (NP (NNS ears))) + (, ,) + (INTJ (UH ah)) + (. .))) + +Leaves: +------- + 0 With + 1 , + 2 with + 3 ears + 4 , + 5 ah + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Where ? + +Treebanked sentence: +-------------------- + Where ? + +Speaker information: +-------------------- + name: Speaker#3 + start time: 921.326 + stop time: 921.887110362 + +Tree: +----- + (TOP (SBARQ (WHADVP (WRB Where)) + (. ?))) + +Leaves: +------- + 0 Where + 1 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, here. + +Treebanked sentence: +-------------------- + Ah , here . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 921.887110362 + stop time: 922.618 + +Tree: +----- + (TOP (FRAG (INTJ (UH Ah)) + (, ,) + (ADVP-LOC (RB here)) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 here + 3 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Perhaps there will be an introduction so that children will know the names of the crops when they see them. + +Treebanked sentence: +-------------------- + Perhaps there will be an introduction so that children will know the names of the crops when they see them *T*-1 . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 922.618 + stop time: 927.808 + +Tree: +----- + (TOP (S (ADVP (RB Perhaps)) + (NP-SBJ (EX there)) + (VP (MD will) + (VP (VB be) + (NP-PRD (DT an) + (NN introduction)) + (SBAR-PRP (IN so) + (IN that) + (S (NP-SBJ (NNS children)) + (VP (MD will) + (VP (VB know) + (NP (NP (DT the) + (NNS names)) + (PP (IN of) + (NP (DT the) + (NNS crops)))) + (SBAR-TMP (WHADVP-1 (WRB when)) + (S (NP-SBJ (PRP they)) + (VP (VBP see) + (NP (PRP them)) + (ADVP-TMP (-NONE- *T*-1))))))))))) + (. .))) + +Leaves: +------- + 0 Perhaps + 1 there + 2 will + 3 be + sense: be-v.5 + prop: be.02 + v * -> 3:0, be + ARGM-ADV * -> 0:1, Perhaps + ARGM-MOD * -> 2:0, will + ARG1 * -> 4:1, an introduction + ARGM-PRP * -> 6:1, so that children will know the names of the crops when they see them *T*-1 + 4 an + 5 introduction + 6 so + 7 that + 8 children + coref: IDENT 105 8-8 children + 9 will + 10 know + sense: know-v.2 + prop: know.01 + v * -> 10:0, know + ARG0 * -> 8:1, children + ARGM-MOD * -> 9:0, will + ARG1 * -> 11:2, the names of the crops + ARGM-TMP * -> 16:2, when they see them *T*-1 + 11 the + 12 names + 13 of + 14 the + coref: IDENT 108 14-15 the crops + 15 crops + 16 when + 17 they + coref: IDENT 105 17-17 they + 18 see + sense: see-v.1 + prop: see.01 + v * -> 18:0, see + ARG0 * -> 17:1, they + ARG1 * -> 19:1, them + ARGM-TMP * -> 20:0, *T*-1 -> 16:1, when + 19 them + coref: IDENT 108 19-19 them + 20 *T*-1 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + , let them get some understanding. + +Treebanked sentence: +-------------------- + Let , *PRO* let them get some understanding . + +Speaker information: +-------------------- + name: Lu_lizhi + start time: 927.808 + stop time: 929.974726201 + +Tree: +----- + (TOP (S (EDITED (VB Let)) + (, ,) + (NP-SBJ (-NONE- *PRO*)) + (VP (VB let) + (S (NP-SBJ (PRP them)) + (VP (VB get) + (NP (DT some) + (NN understanding))))) + (. .))) + +Leaves: +------- + 0 Let + sense: let-v.1 + prop: let.01 + v * -> 0:0, Let + 1 , + 2 *PRO* + 3 let + sense: let-v.1 + prop: let.01 + v * -> 3:0, let + ARG0 * -> 2:0, *PRO* + ARG1 * -> 4:2, them get some understanding + 4 them + coref: IDENT 105 4-4 them + 5 get + sense: get-v.1 + prop: get.01 + v * -> 5:0, get + ARG0 * -> 4:1, them + ARG1 * -> 6:1, some understanding + 6 some + 7 understanding + 8 . + + +======================================================================================================================== +Coreference chains for section 5: +--------------------------------- + + Chain 0 (IDENT) + 94.0-10 Hong Kong Wetland Park , which *T*-1 is currently under construction + 95.0-0 This + 96.0-3 Hong Kong Wetland Park + 101.5-7 our Wetland Park + + Chain 8 (IDENT) + 94.21-25 the Hong Kong SAR government + 94.30-31 Hong Kong + 95.14-17 the Hong Kong government + 95.19-19 its + + Chain 35 (IDENT) + 97.6-6 tourists + 98.2-2 they + + Chain 68 (IDENT) + 106.9-9 Shenzhen + 107.17-17 Shenzhen + + Chain 50 (IDENT) + 107.11-12 Hong Kong + 112.11-12 Hong Kong + + Chain 105 (IDENT) + 121.8-8 children + 121.17-17 they + 122.4-4 them + + Chain 108 (IDENT) + 121.14-15 the crops + 121.19-19 them + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Mai Po Marshes adjacent to Wetland Park is a major wildlife habitat within Asia. + +Treebanked sentence: +-------------------- + Mai Po Marshes adjacent to Wetland Park is a major wildlife habitat within Asia . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 936.288 + stop time: 944.51 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NML (NNP Mai) + (NNP Po)) + (NNP Marshes)) + (ADJP (JJ adjacent) + (PP (IN to) + (NP (NNP Wetland) + (NNP Park))))) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (JJ major) + (NN wildlife) + (NN habitat)) + (PP-LOC (IN within) + (NP (NNP Asia))))) + (. .))) + +Leaves: +------- + 0 Mai + name: LOC 0-2 Mai Po Marshes + 1 Po + 2 Marshes + 3 adjacent + 4 to + 5 Wetland + coref: IDENT 2 5-6 Wetland Park + name: FAC 5-6 Wetland Park + 6 Park + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 0:3, Mai Po Marshes adjacent to Wetland Park + ARG2 * -> 8:2, a major wildlife habitat within Asia + 8 a + 9 major + 10 wildlife + 11 habitat + 12 within + 13 Asia + name: LOC 13-13 Asia + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Each year, over 50,000 migratory birds fly over Hong Kong's skyscrapers and choose to roost for winter here. + +Treebanked sentence: +-------------------- + Each year , over 50,000 migratory birds fly over Hong Kong 's skyscrapers and choose *PRO*-1 to roost for winter here . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 944.51 + stop time: 952.51895535 + +Tree: +----- + (TOP (S (NP-TMP (DT Each) + (NN year)) + (, ,) + (NP-SBJ-1 (QP (RB over) + (CD 50,000)) + (JJ migratory) + (NNS birds)) + (VP (VP (VBP fly) + (PP-CLR (IN over) + (NP (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NNS skyscrapers)))) + (CC and) + (VP (VBP choose) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB roost) + (PP-TMP (IN for) + (NP (NN winter))) + (ADVP-LOC (RB here))))))) + (. .))) + +Leaves: +------- + 0 Each + 1 year + 2 , + 3 over + 4 50,000 + name: CARDINAL 4-4 50,000 + 5 migratory + 6 birds + 7 fly + sense: fly-v.1 + prop: fly.01 + v * -> 7:0, fly + ARGM-TMP * -> 0:1, Each year + ARG1 * -> 3:2, over 50,000 migratory birds + ARGM-DIR * -> 8:1, over Hong Kong 's skyscrapers + 8 over + 9 Hong + coref: IDENT 9 9-11 Hong Kong 's + name: GPE 9-11 Hong Kong 's + 10 Kong + 11 's + 12 skyscrapers + 13 and + 14 choose + sense: choose-v.2 + prop: choose.01 + v * -> 14:0, choose + ARGM-TMP * -> 0:1, Each year + ARG0 * -> 3:2, over 50,000 migratory birds + ARG1 * -> 15:2, *PRO*-1 to roost for winter here + 15 *PRO*-1 + 16 to + 17 roost + prop: roost.01 + v * -> 17:0, roost + ARG0 * -> 15:0, *PRO*-1 -> 3:2, over 50,000 migratory birds + ARGM-TMP * -> 18:1, for winter + ARGM-LOC * -> 20:1, here + LINK-PCR * -> 15:0, *PRO*-1 -> 3:2, over 50,000 migratory birds + * -> 3:2, over 50,000 migratory birds + 18 for + 19 winter + 20 here + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As a result, three different types of aviaries were built in Hong Kong Wetland Park. + +Treebanked sentence: +-------------------- + As a result , three different types of aviaries were built *-1 in Hong Kong Wetland Park . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 952.51895535 + stop time: 958.243 + +Tree: +----- + (TOP (S (PP (IN As) + (NP (DT a) + (NN result))) + (, ,) + (NP-SBJ-1 (NP (CD three) + (JJ different) + (NNS types)) + (PP (IN of) + (NP (NNS aviaries)))) + (VP (VBD were) + (VP (VBN built) + (NP (-NONE- *-1)) + (PP-LOC (IN in) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Wetland) + (NNP Park))))) + (. .))) + +Leaves: +------- + 0 As + 1 a + 2 result + 3 , + 4 three + coref: IDENT 13 4-8 three different types of aviaries + name: CARDINAL 4-4 three + 5 different + 6 types + 7 of + 8 aviaries + 9 were + prop: be.03 + v * -> 9:0, were + 10 built + prop: build.01 + v * -> 10:0, built + ARGM-ADV * -> 0:1, As a result + ARG1 * -> 11:0, *-1 -> 4:2, three different types of aviaries + ARGM-LOC * -> 12:1, in Hong Kong Wetland Park + 11 *-1 + 12 in + 13 Hong + coref: IDENT 2 13-16 Hong Kong Wetland Park + name: FAC 13-16 Hong Kong Wetland Park + 14 Kong + 15 Wetland + 16 Park + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These have become the best spots to observe birds. + +Treebanked sentence: +-------------------- + These have become the best spots 0 *PRO* to observe birds *T*-1 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 958.243 + stop time: 961.154 + +Tree: +----- + (TOP (S (NP-SBJ (DT These)) + (VP (VBP have) + (VP (VBN become) + (NP-PRD (NP (DT the) + (JJS best) + (NNS spots)) + (SBAR (WHADVP-1 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB observe) + (NP (NNS birds)) + (ADVP-LOC (-NONE- *T*-1))))))))) + (. .))) + +Leaves: +------- + 0 These + coref: IDENT 13 0-0 These + 1 have + prop: have.01 + v * -> 1:0, have + 2 become + sense: become-v.1 + prop: become.01 + v * -> 2:0, become + ARG1 * -> 0:1, These + ARG2 * -> 3:2, the best spots 0 *PRO* to observe birds *T*-1 + 3 the + 4 best + 5 spots + 6 0 + 7 *PRO* + 8 to + 9 observe + sense: observe-v.1 + prop: observe.01 + v * -> 9:0, observe + ARG0 * -> 7:0, *PRO* + ARG1 * -> 10:1, birds + ARGM-LOC * -> 11:0, *T*-1 -> 6:0, 0 + LINK-SLC * -> 11:0, *T*-1 -> 6:0, 0 + * -> 3:1, the best spots + 10 birds + 11 *T*-1 + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Among common birds, a rather special one is the black-faced spoonbill. + +Treebanked sentence: +-------------------- + Among common birds , a rather special one is the black - faced spoonbill . + +Speaker information: +-------------------- + name: Ye_yan + start time: 966.997 + stop time: 970.943 + +Tree: +----- + (TOP (S (PP-LOC (IN Among) + (NP (JJ common) + (NNS birds))) + (, ,) + (NP-SBJ (DT a) + (ADJP (RB rather) + (JJ special)) + (NN one)) + (VP (VBZ is) + (NP-PRD (DT the) + (ADJP (JJ black) + (HYPH -) + (JJ faced)) + (NN spoonbill))) + (. .))) + +Leaves: +------- + 0 Among + 1 common + 2 birds + 3 , + 4 a + coref: IDENT 24 4-7 a rather special one + 5 rather + 6 special + 7 one + 8 is + sense: be-v.2 + prop: be.01 + v * -> 8:0, is + ARGM-LOC * -> 0:1, Among common birds + ARG1 * -> 4:1, a rather special one + ARG2 * -> 9:1, the black - faced spoonbill + 9 the + 10 black + 11 - + 12 faced + 13 spoonbill + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It is an endangered bird species throughout the world. + +Treebanked sentence: +-------------------- + It is an endangered bird species throughout the world . + +Speaker information: +-------------------- + name: Ye_yan + start time: 970.943 + stop time: 973.328 + +Tree: +----- + (TOP (S (NP-SBJ (PRP It)) + (VP (VBZ is) + (NP (NP (DT an) + (JJ endangered) + (NN bird) + (NNS species)) + (PP-LOC (IN throughout) + (NP (DT the) + (NN world))))) + (. .))) + +Leaves: +------- + 0 It + coref: IDENT 24 0-0 It + 1 is + sense: be-v.1 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, It + ARG2 * -> 2:2, an endangered bird species throughout the world + 2 an + 3 endangered + 4 bird + 5 species + 6 throughout + 7 the + coref: IDENT 29 7-8 the world + 8 world + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Uh-huh. + +Treebanked sentence: +-------------------- + Uh-huh . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 973.328 + stop time: 973.667 + +Tree: +----- + (TOP (INTJ (UH Uh-huh) + (. .))) + +Leaves: +------- + 0 Uh-huh + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, there are only about 1,500 in the world. + +Treebanked sentence: +-------------------- + Ah , there are only about 1,500 in the world . + +Speaker information: +-------------------- + name: Ye_yan + start time: 973.667 + stop time: 976.588 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (EX there)) + (VP (VBP are) + (NP-PRD (NP (QP (RB only) + (RB about) + (CD 1,500))) + (PP-LOC (IN in) + (NP (DT the) + (NN world))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 there + 3 are + sense: be-v.3 + prop: be.02 + v * -> 3:0, are + ARGM-DIS * -> 0:1, Ah + ARG1 * -> 4:3, only about 1,500 in the world + 4 only + coref: IDENT 31 4-9 only about 1,500 in the world + 5 about + 6 1,500 + name: CARDINAL 6-6 1,500 + 7 in + 8 the + coref: IDENT 29 8-9 the world + 9 world + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Wow. + +Treebanked sentence: +-------------------- + Wow . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 976.588 + stop time: 976.984 + +Tree: +----- + (TOP (INTJ (UH Wow) + (. .))) + +Leaves: +------- + 0 Wow + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Um, however, each year, about two to three hundred of them come to Hong Kong to spend the winter. + +Treebanked sentence: +-------------------- + Um , however , each year , about two to three hundred of them come to Hong Kong *PRO*-1 to spend the winter . + +Speaker information: +-------------------- + name: Ye_yan + start time: 976.984 + stop time: 981.201 + +Tree: +----- + (TOP (S (INTJ (UH Um)) + (, ,) + (ADVP (RB however)) + (, ,) + (NP-TMP (DT each) + (NN year)) + (, ,) + (NP-SBJ-1 (NP (QP (RB about) + (CD two) + (TO to) + (CD three) + (CD hundred))) + (PP (IN of) + (NP (PRP them)))) + (VP (VBP come) + (PP-DIR (IN to) + (NP (NNP Hong) + (NNP Kong))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB spend) + (NP-TMP (DT the) + (NN winter)))))) + (. .))) + +Leaves: +------- + 0 Um + 1 , + 2 however + 3 , + 4 each + 5 year + 6 , + 7 about + coref: IDENT 35 7-13 about two to three hundred of them + 8 two + ! name: CARDINAL 8-11 two to three hundred + 9 to + 10 three + 11 hundred + 12 of + 13 them + coref: IDENT 31 13-13 them + 14 come + sense: come-v.1 + prop: come.01 + v * -> 14:0, come + ARGM-DIS * -> 0:1, Um + ARGM-DIS * -> 2:1, however + ARGM-TMP * -> 4:1, each year + ARG1 * -> 7:3, about two to three hundred of them + ARG4 * -> 15:1, to Hong Kong + ARGM-PRP * -> 18:2, *PRO*-1 to spend the winter + 15 to + 16 Hong + coref: IDENT 9 16-17 Hong Kong + name: GPE 16-17 Hong Kong + 17 Kong + 18 *PRO*-1 + 19 to + 20 spend + sense: spend-v.1 + prop: spend.02 + v * -> 20:0, spend + ARG0 * -> 18:0, *PRO*-1 -> 7:3, about two to three hundred of them + ARG1 * -> 21:1, the winter + LINK-PCR * -> 18:0, *PRO*-1 -> 7:3, about two to three hundred of them + * -> 7:3, about two to three hundred of them + 21 the + 22 winter + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Some of them, er, have stayed in Hong Kong Wetland Park. + +Treebanked sentence: +-------------------- + Some of them , er , have stayed in Hong Kong Wetland Park . + +Speaker information: +-------------------- + name: Ye_yan + start time: 981.201 + stop time: 984.551 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT Some)) + (PP (IN of) + (NP (PRP them)))) + (, ,) + (INTJ (UH er)) + (, ,) + (VP (VBP have) + (VP (VBN stayed) + (PP-LOC (IN in) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Wetland) + (NNP Park))))) + (. .))) + +Leaves: +------- + 0 Some + 1 of + 2 them + coref: IDENT 35 2-2 them + 3 , + 4 er + 5 , + 6 have + prop: have.01 + v * -> 6:0, have + 7 stayed + sense: stay-v.1 + prop: stay.01 + v * -> 7:0, stayed + ARG1 * -> 0:2, Some of them + ARGM-DIS * -> 4:1, er + ARG3 * -> 8:1, in Hong Kong Wetland Park + 8 in + 9 Hong + coref: IDENT 2 9-12 Hong Kong Wetland Park + name: FAC 9-12 Hong Kong Wetland Park + 10 Kong + 11 Wetland + 12 Park + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Uh-huh. + +Treebanked sentence: +-------------------- + Uh-huh . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 984.551 + stop time: 985.283 + +Tree: +----- + (TOP (INTJ (UH Uh-huh) + (. .))) + +Leaves: +------- + 0 Uh-huh + 1 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + So, our park's logo is unique, featuring this black-faced spoonbill, which hopefully can draw people's attention. + +Treebanked sentence: +-------------------- + So , our park 's logo *ICH*-1 is unique , featuring this black - faced spoonbill , which *T*-2 hopefully can draw people + 's attention . + +Speaker information: +-------------------- + name: Ye_yan + start time: 985.283 + stop time: 991.305 + +Tree: +----- + (TOP (S (ADVP (RB So)) + (, ,) + (NP-SBJ (NP (NP (PRP$ our) + (NN park) + (POS 's)) + (NN logo)) + (VP (-NONE- *ICH*-1))) + (VP (VBZ is) + (ADJP-PRD (JJ unique)) + (, ,) + (VP-1 (VBG featuring) + (NP (DT this) + (ADJP (NN black) + (HYPH -) + (VBN faced)) + (NN spoonbill))) + (, ,) + (SBAR-ADV (WHNP-2 (WDT which)) + (S (NP-SBJ-SBJ (-NONE- *T*-2)) + (ADVP (RB hopefully)) + (VP (MD can) + (VP (VB draw) + (NP (NP (NNS people) + (POS 's)) + (NN attention))))))) + (. .))) + +Leaves: +------- + 0 So + 1 , + 2 our + coref: IDENT 2 2-4 our park 's + 3 park + 4 's + 5 logo + 6 *ICH*-1 + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARGM-DIS * -> 0:0, So + ARG1 * -> 2:3, our park 's logo *ICH*-1 + -> 10:1, featuring this black - faced spoonbill + * -> 6:0, *ICH*-1 -> 10:1, featuring this black - faced spoonbill + ARG2 * -> 8:1, unique + ARGM-ADV * -> 17:2, which *T*-2 hopefully can draw people 's attention + 8 unique + 9 , + 10 featuring + sense: feature-v.1 + prop: feature.01 + v * -> 10:0, featuring + ARG0 * -> 2:2, our park 's logo + ARG1 * -> 11:1, this black - faced spoonbill + 11 this + 12 black + 13 - + 14 faced + 15 spoonbill + 16 , + 17 which + 18 *T*-2 + 19 hopefully + 20 can + 21 draw + sense: draw-v.2 + prop: draw.02 + v * -> 21:0, draw + ARG0 * -> 18:0, *T*-2 -> 17:1, which + ARGM-ADV * -> 19:1, hopefully + ARGM-MOD * -> 20:0, can + ARG1 * -> 22:2, people 's attention + LINK-SLC * -> 18:0, *T*-2 -> 17:1, which + * -> 11:1, this black - faced spoonbill + 22 people + 23 's + 24 attention + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Uh-huh. + +Treebanked sentence: +-------------------- + Uh-huh . + +Speaker information: +-------------------- + name: Speaker#3 + start time: 991.305 + stop time: 991.654 + +Tree: +----- + (TOP (INTJ (UH Uh-huh) + (. .))) + +Leaves: +------- + 0 Uh-huh + 1 . + + +======================================================================================================================== +Coreference chains for section 6: +--------------------------------- + + Chain 2 (IDENT) + 123.5-6 Wetland Park + 125.13-16 Hong Kong Wetland Park + 133.9-12 Hong Kong Wetland Park + 135.2-4 our park 's + + Chain 9 (IDENT) + 124.9-11 Hong Kong 's + 132.16-17 Hong Kong + + Chain 13 (IDENT) + 125.4-8 three different types of aviaries + 126.0-0 These + + Chain 24 (IDENT) + 127.4-7 a rather special one + 128.0-0 It + + Chain 29 (IDENT) + 128.7-8 the world + 130.8-9 the world + + Chain 31 (IDENT) + 130.4-9 only about 1,500 in the world + 132.13-13 them + + Chain 35 (IDENT) + 132.7-13 about two to three hundred of them + 133.2-2 them + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Wetland Park workers are now in the middle of intensive work. + +Treebanked sentence: +-------------------- + Wetland Park workers are now in the middle of intensive work . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 994.517 + stop time: 998.999 + +Tree: +----- + (TOP (S (NP-SBJ (NML (NNP Wetland) + (NNP Park)) + (NNS workers)) + (VP (VBP are) + (ADVP-TMP (RB now)) + (PP-LOC-PRD (IN in) + (NP (NP (DT the) + (NN middle)) + (PP (IN of) + (NP (JJ intensive) + (NN work)))))) + (. .))) + +Leaves: +------- + 0 Wetland + coref: IDENT 0 0-2 Wetland Park workers + coref: IDENT 6 0-1 Wetland Park + name: FAC 0-1 Wetland Park + 1 Park + 2 workers + 3 are + sense: be-v.5 + prop: be.01 + v * -> 3:0, are + ARG1 * -> 0:2, Wetland Park workers + ARGM-TMP * -> 4:1, now + ARG2 * -> 5:1, in the middle of intensive work + 4 now + 5 in + 6 the + 7 middle + 8 of + 9 intensive + 10 work + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They will complete the park's entire construction by the beginning of 2006, to be able to participate in the 2006 + Discover Hong Kong Year campaign. + +Treebanked sentence: +-------------------- + They will complete the park 's entire construction by the beginning of 2006 , *PRO* to be able *PRO*-1 to participate in + the 2006 Discover Hong Kong Year campaign . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 998.999 + stop time: 1006.844 + +Tree: +----- + (TOP (S (NP-SBJ (PRP They)) + (VP (MD will) + (VP (VB complete) + (NP (NP (DT the) + (NN park) + (POS 's)) + (JJ entire) + (NN construction)) + (PP-TMP (IN by) + (NP (NP (DT the) + (NN beginning)) + (PP (IN of) + (NP (CD 2006))))) + (, ,) + (S-PRP (NP-SBJ-1 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB be) + (ADJP-PRD (JJ able) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB participate) + (PP-CLR (IN in) + (NP (DT the) + (CD 2006) + (NML (NML (NNP Discover) + (NNP Hong) + (NNP Kong)) + (NNP Year)) + (NN campaign)))))))))))) + (. .))) + +Leaves: +------- + 0 They + coref: IDENT 0 0-0 They + 1 will + 2 complete + sense: complete-v.1 + prop: complete.01 + v * -> 2:0, complete + ARG0 * -> 0:1, They + ARGM-MOD * -> 1:0, will + ARG1 * -> 3:2, the park 's entire construction + ARGM-TMP * -> 8:1, by the beginning of 2006 + ARGM-PRP * -> 14:2, *PRO* to be able *PRO*-1 to participate in the 2006 Discover Hong Kong Year campaign + 3 the + coref: IDENT 6 3-5 the park 's + 4 park + 5 's + 6 entire + 7 construction + 8 by + 9 the + name: DATE 9-12 the beginning of 2006 + 10 beginning + 11 of + 12 2006 + coref: IDENT 9 12-12 2006 + 13 , + 14 *PRO* + 15 to + 16 be + sense: be-v.1 + prop: be.01 + v * -> 16:0, be + ARG1 * -> 14:0, *PRO* + ARG2 * -> 17:1, able *PRO*-1 to participate in the 2006 Discover Hong Kong Year campaign + 17 able + 18 *PRO*-1 + 19 to + 20 participate + sense: participate-v.1 + prop: participate.01 + v * -> 20:0, participate + ARG0 * -> 18:0, *PRO*-1 -> 14:0, *PRO* + ARG1 * -> 21:1, in the 2006 Discover Hong Kong Year campaign + LINK-PCR * -> 18:0, *PRO*-1 -> 14:0, *PRO* + * -> 0:1, They + 21 in + 22 the + coref: IDENT 17 22-28 the 2006 Discover Hong Kong Year campaign + 23 2006 + coref: IDENT 9 23-23 2006 + name: DATE 23-23 2006 + 24 Discover + name: EVENT 24-27 Discover Hong Kong Year + 25 Hong + 26 Kong + 27 Year + 28 campaign + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, we have established the year 2006 as Discover Hong Kong Year. + +Treebanked sentence: +-------------------- + Ah , we have established the year 2006 as Discover Hong Kong Year . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1011.948 + stop time: 1016.785 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBP have) + (VP (VBN established) + (NP (NP (DT the) + (NN year)) + (NP (CD 2006))) + (PP-CLR (IN as) + (NP (NML (NNP Discover) + (NNP Hong) + (NNP Kong)) + (NNP Year))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 we + 3 have + prop: have.01 + v * -> 3:0, have + 4 established + sense: establish-v.1 + prop: establish.01 + v * -> 4:0, established + ARGM-DIS * -> 0:1, Ah + ARG0 * -> 2:1, we + ARG1 * -> 5:2, the year 2006 + ARG2 * -> 8:1, as Discover Hong Kong Year + coref: IDENT 18 4-4 established + 5 the + coref: IDENT 9 5-7 the year 2006 + name: DATE 5-7 the year 2006 + 6 year + 7 2006 + 8 as + 9 Discover + 10 Hong + 11 Kong + 12 Year + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Why is that ? + +Treebanked sentence: +-------------------- + Why is that *T*-1 ? + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1016.785 + stop time: 1018.493 + +Tree: +----- + (TOP (SBARQ (WHADVP-1 (WRB Why)) + (SQ (VBZ is) + (NP-SBJ (DT that)) + (ADVP-PRP-PRD (-NONE- *T*-1))) + (. ?))) + +Leaves: +------- + 0 Why + 1 is + sense: be-v.9 + prop: be.02 + v * -> 1:0, is + ARG1 * -> 2:1, that + ARGM-CAU * -> 3:0, *T*-1 -> 0:1, Why + 2 that + coref: IDENT 18 2-2 that + 3 *T*-1 + 4 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Because, as everyone knows, our Disneyland will open in September of this year. + +Treebanked sentence: +-------------------- + Because , as everyone knows *?* , our Disneyland will open in September of this year . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1018.493 + stop time: 1024.215 + +Tree: +----- + (TOP (SBAR-PRP (IN Because) + (, ,) + (S (SBAR-ADV (IN as) + (S (NP-SBJ (NN everyone)) + (VP (VBZ knows) + (SBAR (-NONE- *?*))))) + (, ,) + (NP-SBJ (PRP$ our) + (NNP Disneyland)) + (VP (MD will) + (VP (VB open) + (PP-TMP (IN in) + (NP (NP (NNP September)) + (PP (IN of) + (NP (DT this) + (NN year)))))))) + (. .))) + +Leaves: +------- + 0 Because + 1 , + 2 as + 3 everyone + 4 knows + sense: know-v.1 + prop: know.01 + v * -> 4:0, knows + ARG0 * -> 3:1, everyone + ARG1 * -> 5:0, *?* + 5 *?* + 6 , + 7 our + coref: IDENT 20 7-8 our Disneyland + 8 Disneyland + name: FAC 8-8 Disneyland + 9 will + 10 open + sense: open-v.2 + prop: open.01 + v * -> 10:0, open + ARGM-DIS * -> 2:1, as everyone knows *?* + ARG1 * -> 7:1, our Disneyland + ARGM-MOD * -> 9:0, will + ARGM-TMP * -> 11:1, in September of this year + 11 in + 12 September + name: DATE 12-15 September of this year + 13 of + 14 this + coref: IDENT 9 14-15 this year + 15 year + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In addition, we will have Ngong Ping 360, that is, the cable car, er, to the Giant Buddha. + +Treebanked sentence: +-------------------- + In addition , we will have Ngong Ping 360 , that is , the cable car , er , to the Giant Buddha . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1024.215 + stop time: 1033.746 + +Tree: +----- + (TOP (S (PP (IN In) + (NP (NN addition))) + (, ,) + (NP-SBJ (PRP we)) + (VP (MD will) + (VP (VB have) + (NP (NP (NNP Ngong) + (NNP Ping) + (CD 360)) + (, ,) + (ADVP (RB that) + (RB is)) + (, ,) + (NP (NP (DT the) + (NN cable) + (NN car)) + (, ,) + (INTJ (UH er)) + (, ,) + (PP (IN to) + (NP (DT the) + (NNP Giant) + (NNP Buddha))))))) + (. .))) + +Leaves: +------- + 0 In + 1 addition + 2 , + 3 we + 4 will + 5 have + sense: have-v.1 + prop: have.03 + v * -> 5:0, have + ARGM-DIS * -> 0:1, In addition + ARG0 * -> 3:1, we + ARGM-MOD * -> 4:0, will + ARG1 * -> 6:2, Ngong Ping 360 , that is , the cable car , er , to the Giant Buddha + 6 Ngong + coref: APPOS HEAD 27 6-8 Ngong Ping 360 + name: FAC 6-8 Ngong Ping 360 + 7 Ping + 8 360 + 9 , + 10 that + 11 is + 12 , + 13 the + coref: APPOS ATTRIB 27 13-22 the cable car , er , to the Giant Buddha + 14 cable + 15 car + 16 , + 17 er + 18 , + 19 to + 20 the + name: WORK_OF_ART 20-22 the Giant Buddha + 21 Giant + 22 Buddha + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They add to what we already have, like the Avenue of Stars, which is also very famous. + +Treebanked sentence: +-------------------- + They add to what *ICH*-2 we already have *T*-1 , like the Avenue of Stars , which *T*-3 is also very famous . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1033.746 + stop time: 1040.329 + +Tree: +----- + (TOP (S (NP-SBJ (PRP They)) + (VP (VBP add) + (PP-CLR (IN to) + (SBAR-NOM (WHNP-1 (WHNP (WP what)) + (PP (-NONE- *ICH*-2))) + (S (NP-SBJ (PRP we)) + (ADVP-TMP (RB already)) + (VP (VBP have) + (NP (-NONE- *T*-1)) + (, ,) + (PP-2 (IN like) + (NP (NP (NP (DT the) + (NNP Avenue)) + (PP (IN of) + (NP (NNPS Stars)))) + (, ,) + (SBAR (WHNP-3 (WDT which)) + (S (NP-SBJ (-NONE- *T*-3)) + (VP (VBZ is) + (ADVP (RB also)) + (ADJP-PRD (RB very) + (JJ famous)))))))))))) + (. .))) + +Leaves: +------- + 0 They + 1 add + sense: add-v.1 + prop: add.02 + v * -> 1:0, add + ARG1 * -> 0:1, They + ARG2 * -> 2:1, to what *ICH*-2 we already have *T*-1 , like the Avenue of Stars , which *T*-3 is also + very famous + 2 to + 3 what + 4 *ICH*-2 + 5 we + 6 already + 7 have + sense: have-v.1 + prop: have.03 + v * -> 7:0, have + ARG0 * -> 5:1, we + ARGM-TMP * -> 6:1, already + ARG1 * -> 8:0, *T*-1 -> 3:2, what *ICH*-2 + 8 *T*-1 + 9 , + 10 like + 11 the + name: FAC 11-14 the Avenue of Stars + 12 Avenue + 13 of + 14 Stars + 15 , + 16 which + 17 *T*-3 + 18 is + sense: be-v.1 + prop: be.01 + v * -> 18:0, is + ARG1 * -> 17:0, *T*-3 -> 16:1, which + ARGM-ADV * -> 19:1, also + ARG2 * -> 20:1, very famous + LINK-SLC * -> 17:0, *T*-3 -> 16:1, which + * -> 11:2, the Avenue of Stars + 19 also + 20 very + 21 famous + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Moreover, er, we are including our software. + +Treebanked sentence: +-------------------- + Moreover , er , we are including our software . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1040.329 + stop time: 1044.307 + +Tree: +----- + (TOP (S (ADVP (RB Moreover)) + (, ,) + (INTJ (UH er)) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBP are) + (VP (VBG including) + (NP (PRP$ our) + (NN software)))) + (. .))) + +Leaves: +------- + 0 Moreover + 1 , + 2 er + 3 , + 4 we + 5 are + prop: be.03 + v * -> 5:0, are + 6 including + sense: include-v.1 + prop: include.01 + v * -> 6:0, including + ARGM-DIS * -> 0:1, Moreover + ARG0 * -> 4:1, we + ARG1 * -> 7:1, our software + 7 our + coref: IDENT 40 7-8 our software + 8 software + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong's software is very well known. + +Treebanked sentence: +-------------------- + Hong Kong 's software is very well known *-1 . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1044.307 + stop time: 1046.33529907 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NN software)) + (VP (VBZ is) + (ADVP-MNR (RB very) + (RB well)) + (VP (VBN known) + (NP (-NONE- *-1)))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 42 0-2 Hong Kong 's + coref: IDENT 40 0-3 Hong Kong 's software + name: GPE 0-2 Hong Kong 's + 1 Kong + 2 's + 3 software + 4 is + prop: be.03 + v * -> 4:0, is + 5 very + 6 well + 7 known + prop: know.01 + v * -> 7:0, known + ARGM-EXT * -> 5:1, very well + ARG1 * -> 8:0, *-1 -> 0:2, Hong Kong 's software + 8 *-1 + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Like what's used in our Symphony of Lights. + +Treebanked sentence: +-------------------- + Like what *T*-1 's used *-2 in our Symphony of Lights . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1046.33529907 + stop time: 1049.406 + +Tree: +----- + (TOP (PP (IN Like) + (SBAR-NOM (WHNP-1 (WP what)) + (S (NP-SBJ-2 (-NONE- *T*-1)) + (VP (VBZ 's) + (VP (VBN used) + (NP (-NONE- *-2)) + (PP-LOC (IN in) + (NP (NP (PRP$ our) + (NNP Symphony)) + (PP (IN of) + (NP (NNPS Lights))))))))) + (. .))) + +Leaves: +------- + 0 Like + 1 what + 2 *T*-1 + 3 's + sense: be-v.1 + prop: be.03 + v * -> 3:0, 's + 4 used + sense: use-v.1 + prop: use.01 + v * -> 4:0, used + ARG1 * -> 5:0, *-2 -> 2:0, *T*-1 -> 1:1, what + ARGM-LOC * -> 6:1, in our Symphony of Lights + 5 *-2 + 6 in + 7 our + 8 Symphony + ! name: EVENT 8-10 Symphony of Lights + 9 of + 10 Lights + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + We hope to use, er, a variety of hardware and software to package this entire 2006 Discover Hong Kong Year. + +Treebanked sentence: +-------------------- + We hope *PRO*-1 to use , er , a variety of hardware and software *PRO*-2 to package this entire 2006 Discover Hong Kong + Year . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1049.406 + stop time: 1062.327 + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP We)) + (VP (VBP hope) + (S (NP-SBJ-2 (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB use) + (, ,) + (INTJ (UH er)) + (, ,) + (NP (NP (DT a) + (NN variety)) + (PP (IN of) + (NP (NN hardware) + (CC and) + (NN software)))) + (S-CLR (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB package) + (NP (DT this) + (JJ entire) + (CD 2006) + (NML (NNP Discover) + (NNP Hong) + (NNP Kong)) + (NNP Year))))))))) + (. .))) + +Leaves: +------- + 0 We + 1 hope + sense: hope-v.1 + prop: hope.01 + v * -> 1:0, hope + ARG0 * -> 0:1, We + ARG1 * -> 2:2, *PRO*-1 to use , er , a variety of hardware and software *PRO*-2 to package this + entire 2006 Discover Hong Kong Year + 2 *PRO*-1 + 3 to + 4 use + sense: use-v.1 + prop: use.01 + v * -> 4:0, use + ARG0 * -> 2:0, *PRO*-1 -> 0:1, We + ARGM-DIS * -> 6:1, er + ARG1 * -> 8:2, a variety of hardware and software + ARG2 * -> 14:2, *PRO*-2 to package this entire 2006 Discover Hong Kong Year + LINK-PCR * -> 2:0, *PRO*-1 -> 0:1, We + * -> 0:1, We + 5 , + 6 er + 7 , + 8 a + 9 variety + 10 of + 11 hardware + 12 and + 13 software + 14 *PRO*-2 + 15 to + 16 package + sense: package-v.1 + prop: package.01 + v * -> 16:0, package + ARG0 * -> 14:0, *PRO*-2 -> 2:0, *PRO*-1 -> 0:1, We + ARG1 * -> 17:1, this entire 2006 Discover Hong Kong Year + LINK-PCR * -> 14:0, *PRO*-2 -> 2:0, *PRO*-1 -> 0:1, We + * -> 2:0, *PRO*-1 -> 0:1, We + * -> 0:1, We + 17 this + coref: IDENT 17 17-23 this entire 2006 Discover Hong Kong Year + 18 entire + 19 2006 + name: DATE 19-19 2006 + 20 Discover + ! name: EVENT 20-23 Discover Hong Kong Year + 21 Hong + 22 Kong + 23 Year + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Without planning it in advance, they chose to settle here. + +Treebanked sentence: +-------------------- + Without *PRO* planning it in advance , they chose *PRO*-1 to settle here . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1062.327 + stop time: 1068.185 + +Tree: +----- + (TOP (S (PP (IN Without) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG planning) + (NP (PRP it)) + (PP-TMP (IN in) + (NP (NN advance)))))) + (, ,) + (NP-SBJ-1 (PRP they)) + (VP (VBD chose) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB settle) + (ADVP-LOC (RB here)))))) + (. .))) + +Leaves: +------- + 0 Without + 1 *PRO* + 2 planning + prop: plan.01 + v * -> 2:0, planning + ARG0 * -> 1:0, *PRO* + ARG1 * -> 3:1, it + ARGM-TMP * -> 4:1, in advance + 3 it + coref: IDENT 57 3-3 it + 4 in + 5 advance + 6 , + 7 they + 8 chose + sense: choose-v.2 + prop: choose.01 + v * -> 8:0, chose + ARGM-MNR * -> 0:1, Without *PRO* planning it in advance + ARG0 * -> 7:1, they + ARG1 * -> 9:2, *PRO*-1 to settle here + coref: IDENT 57 8-8 chose + 9 *PRO*-1 + 10 to + 11 settle + sense: settle-v.3 + prop: settle.03 + v * -> 11:0, settle + ARG0 * -> 9:0, *PRO*-1 -> 7:1, they + ARG4 * -> 12:1, here + LINK-PCR * -> 9:0, *PRO*-1 -> 7:1, they + * -> 7:1, they + 12 here + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A dream that has been anticipated for more than twenty years will soon come true here. + +Treebanked sentence: +-------------------- + A dream that *T*-1 has been anticipated *-2 for more than twenty years will soon come true here . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1068.185 + stop time: 1075.431 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT A) + (NN dream)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ-2 (-NONE- *T*-1)) + (VP (VBZ has) + (VP (VBN been) + (VP (VBN anticipated) + (NP (-NONE- *-2)) + (PP-TMP (IN for) + (NP (QP (JJR more) + (IN than) + (CD twenty)) + (NNS years))))))))) + (VP (MD will) + (ADVP-TMP (RB soon)) + (VP (VB come) + (ADJP-PRD (JJ true)) + (ADVP-LOC (RB here)))) + (. .))) + +Leaves: +------- + 0 A + 1 dream + 2 that + 3 *T*-1 + 4 has + prop: have.01 + v * -> 4:0, has + 5 been + prop: be.03 + v * -> 5:0, been + 6 anticipated + prop: anticipate.01 + v * -> 6:0, anticipated + ARG1 * -> 7:0, *-2 -> 3:0, *T*-1 -> 2:1, that + ARGM-TMP * -> 8:1, for more than twenty years + LINK-SLC * -> 7:0, *-2 -> 3:0, *T*-1 -> 2:1, that + * -> 0:1, A dream + 7 *-2 + 8 for + 9 more + name: DATE 9-12 more than twenty years + 10 than + 11 twenty + 12 years + 13 will + 14 soon + 15 come + sense: come-v.3 + prop: come.04 + v * -> 15:0, come + ARG1 * -> 0:2, A dream that *T*-1 has been anticipated *-2 for more than twenty years + ARGM-MOD * -> 13:0, will + ARGM-TMP * -> 14:1, soon + ARG2 * -> 16:1, true + ARGM-LOC * -> 17:1, here + 16 true + 17 here + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Because your line connects us with two-- + +Treebanked sentence: +-------------------- + Because your line connects us with two -- + +Speaker information: +-------------------- + name: Speaker#7 + start time: 1075.431 + stop time: 1086.441 + +Tree: +----- + (TOP (SBAR-PRP (IN Because) + (S (NP-SBJ (PRP$ your) + (NN line)) + (VP (VBZ connects) + (NP (PRP us)) + (PP-CLR (IN with) + (NP-UNF (CD two))))) + (. --))) + +Leaves: +------- + 0 Because + 1 your + 2 line + 3 connects + sense: connect-v.1 + prop: connect.01 + v * -> 3:0, connects + ARG0 * -> 1:1, your line + ARG1 * -> 4:1, us + ARG1 * -> 5:1, with two + 4 us + 5 with + 6 two + name: CARDINAL 6-6 two + 7 -- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In recent years, Hong Kong's tourist attractions have gradually moved from Hong Kong Island to Kowloon and the New + Territory. + +Treebanked sentence: +-------------------- + In recent years , Hong Kong 's tourist attractions have gradually moved from Hong Kong Island to Kowloon and the New + Territory . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1086.441 + stop time: 1093.179 + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (JJ recent) + (NNS years))) + (, ,) + (NP-SBJ (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NN tourist) + (NNS attractions)) + (VP (VBP have) + (ADVP-MNR (RB gradually)) + (VP (VBN moved) + (PP-DIR (IN from) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Island))) + (PP (IN to) + (NP (NP (NNP Kowloon)) + (CC and) + (NP (DT the) + (NNP New) + (NNP Territory)))))) + (. .))) + +Leaves: +------- + 0 In + 1 recent + name: DATE 1-2 recent years + 2 years + 3 , + 4 Hong + coref: IDENT 42 4-6 Hong Kong 's + name: GPE 4-6 Hong Kong 's + 5 Kong + 6 's + 7 tourist + 8 attractions + 9 have + prop: have.03 + v * -> 9:0, have + 10 gradually + 11 moved + sense: move-v.1 + prop: move.01 + v * -> 11:0, moved + ARGM-TMP * -> 0:1, In recent years + ARG1 * -> 4:2, Hong Kong 's tourist attractions + ARGM-MNR * -> 10:1, gradually + ARGM-DIR * -> 12:1, from Hong Kong Island + ARG2 * -> 16:1, to Kowloon and the New Territory + 12 from + 13 Hong + name: LOC 13-15 Hong Kong Island + 14 Kong + 15 Island + 16 to + 17 Kowloon + name: GPE 17-17 Kowloon + 18 and + 19 the + coref: IDENT 75 19-21 the New Territory + name: GPE 19-21 the New Territory + 20 New + 21 Territory + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Two out of the four new attractions participating in the 2006 Discover Hong Kong Year are located on Lantau Island of + the New Territory. + +Treebanked sentence: +-------------------- + Two out of the four new attractions participating in the 2006 Discover Hong Kong Year are located *-1 on Lantau Island + of the New Territory . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1093.179 + stop time: 1103.386 + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (QP (CD Two) + (IN out) + (IN of) + (DT the) + (CD four)) + (JJ new) + (NNS attractions)) + (VP (VBG participating) + (PP-CLR (IN in) + (NP (DT the) + (CD 2006) + (NML (NNP Discover) + (NNP Hong) + (NNP Kong)) + (NNP Year))))) + (VP (VBP are) + (VP (VBN located) + (NP (-NONE- *-1)) + (PP-LOC (IN on) + (NP (NP (NNP Lantau) + (NNP Island)) + (PP (IN of) + (NP (DT the) + (NNP New) + (NNP Territory))))))) + (. .))) + +Leaves: +------- + 0 Two + name: CARDINAL 0-0 Two + 1 out + 2 of + 3 the + 4 four + name: CARDINAL 4-4 four + 5 new + 6 attractions + 7 participating + sense: participate-v.1 + prop: participate.01 + v * -> 7:0, participating + ARG0 * -> 0:2, Two out of the four new attractions + ARG1 * -> 8:1, in the 2006 Discover Hong Kong Year + 8 in + 9 the + coref: IDENT 17 9-14 the 2006 Discover Hong Kong Year + 10 2006 + name: DATE 10-10 2006 + 11 Discover + ! name: EVENT 11-14 Discover Hong Kong Year + 12 Hong + 13 Kong + 14 Year + 15 are + prop: be.03 + v * -> 15:0, are + 16 located + prop: locate.01 + v * -> 16:0, located + ARG1 * -> 17:0, *-1 -> 0:3, Two out of the four new attractions participating in the 2006 Discover + Hong Kong Year + ARGM-LOC * -> 18:1, on Lantau Island of the New Territory + 17 *-1 + 18 on + 19 Lantau + coref: IDENT 80 19-24 Lantau Island of the New Territory + name: LOC 19-20 Lantau Island + 20 Island + 21 of + 22 the + coref: IDENT 75 22-24 the New Territory + name: GPE 22-24 the New Territory + 23 New + 24 Territory + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For this reason, Lantau Island has become a new Hong Kong tourism popular spot. + +Treebanked sentence: +-------------------- + For this reason , Lantau Island has become a new Hong Kong tourism popular spot . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1103.386 + stop time: 1107.555 + +Tree: +----- + (TOP (S (PP (IN For) + (NP (DT this) + (NN reason))) + (, ,) + (NP-SBJ (NNP Lantau) + (NNP Island)) + (VP (VBZ has) + (VP (VBN become) + (NP-PRD (DT a) + (JJ new) + (NML (NML (NNP Hong) + (NNP Kong)) + (NN tourism)) + (JJ popular) + (NN spot)))) + (. .))) + +Leaves: +------- + 0 For + 1 this + 2 reason + 3 , + 4 Lantau + coref: IDENT 80 4-5 Lantau Island + name: LOC 4-5 Lantau Island + 5 Island + 6 has + prop: have.01 + v * -> 6:0, has + 7 become + sense: become-v.1 + prop: become.01 + v * -> 7:0, become + ARGM-ADV * -> 0:1, For this reason + ARG1 * -> 4:1, Lantau Island + ARG2 * -> 8:1, a new Hong Kong tourism popular spot + 8 a + 9 new + 10 Hong + coref: IDENT 42 10-11 Hong Kong + name: GPE 10-11 Hong Kong + 11 Kong + 12 tourism + 13 popular + 14 spot + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The earliest to settle here was this world's largest outdoor seated bronze Buddha. + +Treebanked sentence: +-------------------- + The earliest 0 *T*-1 to settle here was this world 's largest outdoor seated bronze Buddha . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1107.555 + stop time: 1114.074 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (JJS earliest)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (TO to) + (VP (VB settle) + (ADVP-LOC (RB here))))))) + (VP (VBD was) + (NP-PRD (NP (DT this) + (NN world) + (POS 's)) + (JJS largest) + (JJ outdoor) + (VBN seated) + (NN bronze) + (NNP Buddha))) + (. .))) + +Leaves: +------- + 0 The + 1 earliest + 2 0 + 3 *T*-1 + 4 to + 5 settle + sense: settle-v.3 + prop: settle.03 + v * -> 5:0, settle + ARG1 * -> 3:0, *T*-1 -> 2:0, 0 + ARG4 * -> 6:1, here + LINK-SLC * -> 3:0, *T*-1 -> 2:0, 0 + * -> 0:1, The earliest + 6 here + 7 was + sense: be-v.2 + prop: be.01 + v * -> 7:0, was + ARG1 * -> 0:2, The earliest 0 *T*-1 to settle here + ARG2 * -> 8:2, this world 's largest outdoor seated bronze Buddha + 8 this + coref: IDENT 89 8-15 this world 's largest outdoor seated bronze Buddha + 9 world + 10 's + 11 largest + 12 outdoor + 13 seated + prop: seat.01 + v * -> 13:0, seated + ARG1 * -> 14:0, bronze + -> 15:0, Buddha + 14 bronze + 15 Buddha + name: WORK_OF_ART 15-15 Buddha + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In Chinese Buddhism, there are five directions-east, west, south, north, and center-and five Buddhas. + +Treebanked sentence: +-------------------- + In Chinese Buddhism , there are five directions - east , west , south , north , and center - and five Buddhas . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1124.909 + stop time: 1131.328 + +Tree: +----- + (TOP (S (PP-LOC (IN In) + (NP (JJ Chinese) + (NNP Buddhism))) + (, ,) + (NP-SBJ (EX there)) + (VP (VBP are) + (NP-PRD (NP (NP (CD five) + (NNS directions)) + (: -) + (NP (NN east) + (, ,) + (NN west) + (, ,) + (NN south) + (, ,) + (NN north) + (, ,) + (CC and) + (NN center))) + (: -) + (CC and) + (NP (CD five) + (NNPS Buddhas)))) + (. .))) + +Leaves: +------- + 0 In + 1 Chinese + name: NORP 1-1 Chinese + 2 Buddhism + name: NORP 2-2 Buddhism + 3 , + 4 there + 5 are + sense: be-v.3 + prop: be.02 + v * -> 5:0, are + ARGM-LOC * -> 0:1, In Chinese Buddhism + ARG1 * -> 6:3, five directions - east , west , south , north , and center - and five Buddhas + 6 five + name: CARDINAL 6-6 five + 7 directions + 8 - + 9 east + 10 , + 11 west + 12 , + 13 south + 14 , + 15 north + 16 , + 17 and + 18 center + 19 - + 20 and + 21 five + name: CARDINAL 21-21 five + 22 Buddhas + name: WORK_OF_ART 22-22 Buddhas + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Therefore, Hong Kong's Tian Tan Giant Buddha at the most southern tip of China, together with Lingshan Giant Buddha in + the east, Leshan Giant Buddha in the west, Yungang Giant Buddha in the north, and Longmen Giant Buddha in the Central + Plains, exist as the representative Buddhas for each of the five directions of China. + +Treebanked sentence: +-------------------- + Therefore , Hong Kong 's Tian Tan Giant Buddha at the most southern tip of China , together with Lingshan Giant Buddha + in the east , Leshan Giant Buddha in the west , Yungang Giant Buddha in the north , and Longmen Giant Buddha in the + Central Plains , exist as the representative Buddhas for each of the five directions of China . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1131.328 + stop time: 1152.148 + +Tree: +----- + (TOP (S (ADVP (RB Therefore)) + (, ,) + (NP-SBJ (NP (NP (NNP Hong) + (NNP Kong) + (POS 's)) + (NNP Tian) + (NNP Tan) + (NNP Giant) + (NNP Buddha)) + (PP-LOC (IN at) + (NP (NP (DT the) + (ADJP (RBS most) + (JJ southern)) + (NN tip)) + (PP (IN of) + (NP (NNP China))))) + (, ,) + (PP (ADVP (RB together)) + (IN with) + (NP (NP (NP (NNP Lingshan) + (NNP Giant) + (NNP Buddha)) + (PP-LOC (IN in) + (NP (DT the) + (NN east)))) + (, ,) + (NP (NP (NNP Leshan) + (NNP Giant) + (NNP Buddha)) + (PP-LOC (IN in) + (NP (DT the) + (NN west)))) + (, ,) + (NP (NP (NNP Yungang) + (NNP Giant) + (NNP Buddha)) + (PP-LOC (IN in) + (NP (DT the) + (NN north)))) + (, ,) + (CC and) + (NP (NP (NNP Longmen) + (NNP Giant) + (NNP Buddha)) + (PP-LOC (IN in) + (NP (DT the) + (NNP Central) + (NNPS Plains))))))) + (, ,) + (VP (VBP exist) + (PP-MNR (IN as) + (NP (NP (DT the) + (JJ representative) + (NNPS Buddhas)) + (PP (IN for) + (NP (NP (DT each)) + (PP (IN of) + (NP (NP (DT the) + (CD five) + (NNS directions)) + (PP (IN of) + (NP (NNP China)))))))))) + (. .))) + +Leaves: +------- + 0 Therefore + 1 , + 2 Hong + coref: IDENT 89 2-8 Hong Kong 's Tian Tan Giant Buddha + coref: IDENT 42 2-4 Hong Kong 's + name: GPE 2-4 Hong Kong 's + 3 Kong + 4 's + 5 Tian + ! name: WORK_OF_ART 5-8 Tian Tan Giant Buddha + 6 Tan + 7 Giant + 8 Buddha + 9 at + 10 the + 11 most + 12 southern + 13 tip + 14 of + 15 China + coref: IDENT 103 15-15 China + name: GPE 15-15 China + 16 , + 17 together + 18 with + 19 Lingshan + name: WORK_OF_ART 19-21 Lingshan Giant Buddha + 20 Giant + 21 Buddha + 22 in + 23 the + 24 east + 25 , + 26 Leshan + name: WORK_OF_ART 26-28 Leshan Giant Buddha + 27 Giant + 28 Buddha + 29 in + 30 the + 31 west + 32 , + 33 Yungang + name: WORK_OF_ART 33-35 Yungang Giant Buddha + 34 Giant + 35 Buddha + 36 in + 37 the + 38 north + 39 , + 40 and + 41 Longmen + name: WORK_OF_ART 41-43 Longmen Giant Buddha + 42 Giant + 43 Buddha + 44 in + 45 the + name: LOC 45-47 the Central Plains + 46 Central + 47 Plains + 48 , + 49 exist + sense: exist-v.1 + prop: exist.01 + v * -> 49:0, exist + ARGM-DIS * -> 0:1, Therefore + ARG1 * -> 2:3, Hong Kong 's Tian Tan Giant Buddha at the most southern tip of China , together with + Lingshan Giant Buddha in the east , Leshan Giant Buddha in the west , Yungang Giant + Buddha in the north , and Longmen Giant Buddha in the Central Plains + ARG2 * -> 50:1, as the representative Buddhas for each of the five directions of China + 50 as + 51 the + 52 representative + 53 Buddhas + name: WORK_OF_ART 53-53 Buddhas + 54 for + 55 each + 56 of + 57 the + 58 five + name: CARDINAL 58-58 five + 59 directions + 60 of + 61 China + coref: IDENT 103 61-61 China + name: GPE 61-61 China + 62 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As a result, this place has become holy land in the hearts of male and female devotees. + +Treebanked sentence: +-------------------- + As a result , this place has become holy land in the hearts of male and female devotees . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1152.148 + stop time: 1158.685 + +Tree: +----- + (TOP (S (PP (IN As) + (NP (DT a) + (NN result))) + (, ,) + (NP-SBJ (DT this) + (NN place)) + (VP (VBZ has) + (VP (VBN become) + (NP-PRD (JJ holy) + (NN land)) + (PP-LOC (IN in) + (NP (NP (DT the) + (NNS hearts)) + (PP (IN of) + (NP (ADJP (JJ male) + (CC and) + (JJ female)) + (NNS devotees))))))) + (. .))) + +Leaves: +------- + 0 As + 1 a + 2 result + 3 , + 4 this + coref: IDENT 80 4-5 this place + 5 place + 6 has + prop: have.01 + v * -> 6:0, has + 7 become + sense: become-v.1 + prop: become.01 + v * -> 7:0, become + ARGM-ADV * -> 0:1, As a result + ARG1 * -> 4:1, this place + ARG2 * -> 8:1, holy land + ARGM-LOC * -> 10:1, in the hearts of male and female devotees + 8 holy + 9 land + 10 in + 11 the + 12 hearts + 13 of + 14 male + 15 and + 16 female + 17 devotees + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, to common tourists, more of what this place brings them is wonder and awe. + +Treebanked sentence: +-------------------- + However , to common tourists , more of what this place brings them *T*-1 is wonder and awe . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1176.438 + stop time: 1183.259 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (PP (IN to) + (NP (JJ common) + (NNS tourists))) + (, ,) + (NP-SBJ (NP (JJR more)) + (PP (IN of) + (SBAR-NOM (WHNP-1 (WP what)) + (S (NP-SBJ (DT this) + (NN place)) + (VP (VBZ brings) + (NP (PRP them)) + (NP (-NONE- *T*-1))))))) + (VP (VBZ is) + (NP-PRD (NN wonder) + (CC and) + (NN awe))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 to + 3 common + 4 tourists + 5 , + 6 more + 7 of + 8 what + 9 this + coref: IDENT 80 9-10 this place + 10 place + 11 brings + sense: bring-v.2 + prop: bring.01 + v * -> 11:0, brings + ARG0 * -> 9:1, this place + ARG2 * -> 12:1, them + ARG1 * -> 13:0, *T*-1 -> 8:1, what + 12 them + 13 *T*-1 + 14 is + sense: be-v.2 + prop: be.01 + v * -> 14:0, is + ARGM-DIS * -> 0:1, However + ARGM-ADV * -> 2:1, to common tourists + ARG1 * -> 6:2, more of what this place brings them *T*-1 + ARG2 * -> 15:1, wonder and awe + 15 wonder + 16 and + 17 awe + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Since this giant bronze Buddha settled on Lantau Island, the world renowned Hong Kong International Airport at Chek Lap + Kok and Disneyland have also been constructed here in succession. + +Treebanked sentence: +-------------------- + Since this giant bronze Buddha settled on Lantau Island , the world renowned Hong Kong International Airport at Chek Lap + Kok and Disneyland have also been constructed *-1 here in succession . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1232.539 + stop time: 1245.398 + +Tree: +----- + (TOP (S (SBAR-TMP (IN Since) + (S (NP-SBJ (DT this) + (JJ giant) + (NN bronze) + (NNP Buddha)) + (VP (VBD settled) + (PP-LOC (IN on) + (NP (NNP Lantau) + (NNP Island)))))) + (, ,) + (NP-SBJ-1 (NP (NP (DT the) + (ADJP (NN world) + (JJ renowned)) + (NML (NNP Hong) + (NNP Kong)) + (NNP International) + (NNP Airport)) + (PP-LOC (IN at) + (NP (NNP Chek) + (NNP Lap) + (NNP Kok)))) + (CC and) + (NP (NNP Disneyland))) + (VP (VBP have) + (ADVP (RB also)) + (VP (VBN been) + (VP (VBN constructed) + (NP (-NONE- *-1)) + (ADVP-LOC (RB here)) + (PP-MNR (IN in) + (NP (NN succession)))))) + (. .))) + +Leaves: +------- + 0 Since + 1 this + coref: IDENT 89 1-4 this giant bronze Buddha + 2 giant + 3 bronze + 4 Buddha + name: WORK_OF_ART 4-4 Buddha + 5 settled + sense: settle-v.1 + prop: settle.03 + v * -> 5:0, settled + ARG1 * -> 1:1, this giant bronze Buddha + ARG4 * -> 6:1, on Lantau Island + 6 on + 7 Lantau + coref: IDENT 80 7-8 Lantau Island + name: LOC 7-8 Lantau Island + 8 Island + 9 , + 10 the + 11 world + 12 renowned + 13 Hong + ! name: FAC 13-16 Hong Kong International Airport + 14 Kong + 15 International + 16 Airport + 17 at + 18 Chek + name: GPE 18-20 Chek Lap Kok + 19 Lap + 20 Kok + 21 and + 22 Disneyland + coref: IDENT 20 22-22 Disneyland + name: FAC 22-22 Disneyland + 23 have + prop: have.03 + v * -> 23:0, have + 24 also + 25 been + prop: be.03 + v * -> 25:0, been + 26 constructed + sense: construct-v.1 + prop: construct.01 + v * -> 26:0, constructed + ARGM-TMP * -> 0:1, Since this giant bronze Buddha settled on Lantau Island + ARGM-ADV * -> 24:1, also + ARG1 * -> 27:0, *-1 -> 10:3, the world renowned Hong Kong International Airport at Chek Lap Kok and + Disneyland + ARGM-LOC * -> 28:1, here + ARGM-MNR * -> 29:1, in succession + 27 *-1 + 28 here + 29 in + 30 succession + sense: succession-n.1 + prop: succession.02 + n * -> 30:0, succession + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The important status of Lantau Island is increasingly apparent. + +Treebanked sentence: +-------------------- + The important status of Lantau Island is increasingly apparent . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1245.398 + stop time: 1248.492 + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (JJ important) + (NN status)) + (PP (IN of) + (NP (NNP Lantau) + (NNP Island)))) + (VP (VBZ is) + (ADJP-PRD (RB increasingly) + (JJ apparent))) + (. .))) + +Leaves: +------- + 0 The + 1 important + 2 status + 3 of + 4 Lantau + coref: IDENT 80 4-5 Lantau Island + name: LOC 4-5 Lantau Island + 5 Island + 6 is + sense: be-v.1 + prop: be.01 + v * -> 6:0, is + ARG1 * -> 0:2, The important status of Lantau Island + ARG2 * -> 7:1, increasingly apparent + 7 increasingly + 8 apparent + 9 . + + +======================================================================================================================== +Coreference chains for section 7: +--------------------------------- + + Chain 0 (IDENT) + 137.0-2 Wetland Park workers + 138.0-0 They + + Chain 6 (IDENT) + 137.0-1 Wetland Park + 138.3-5 the park 's + + Chain 9 (IDENT) + 138.12-12 2006 + 138.23-23 2006 + 139.5-7 the year 2006 + 141.14-15 this year + + Chain 17 (IDENT) + 138.22-28 the 2006 Discover Hong Kong Year campaign + 147.17-23 this entire 2006 Discover Hong Kong Year + 152.9-14 the 2006 Discover Hong Kong Year + + Chain 18 (IDENT) + 139.4-4 established + 140.2-2 that + + Chain 20 (IDENT) + 141.7-8 our Disneyland + 159.22-22 Disneyland + + Chain 27 (APPOS) + HEAD 142.6-8 Ngong Ping 360 + ATTRIB 142.13-22 the cable car , er , to the Giant Buddha + + Chain 40 (IDENT) + 144.7-8 our software + 145.0-3 Hong Kong 's software + + Chain 42 (IDENT) + 145.0-2 Hong Kong 's + 151.4-6 Hong Kong 's + 153.10-11 Hong Kong + 156.2-4 Hong Kong 's + + Chain 57 (IDENT) + 148.3-3 it + 148.8-8 chose + + Chain 75 (IDENT) + 151.19-21 the New Territory + 152.22-24 the New Territory + + Chain 80 (IDENT) + 152.19-24 Lantau Island of the New Territory + 153.4-5 Lantau Island + 157.4-5 this place + 158.9-10 this place + 159.7-8 Lantau Island + 160.4-5 Lantau Island + + Chain 89 (IDENT) + 154.8-15 this world 's largest outdoor seated bronze Buddha + 156.2-8 Hong Kong 's Tian Tan Giant Buddha + 159.1-4 this giant bronze Buddha + + Chain 103 (IDENT) + 156.15-15 China + 156.61-61 China + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + No, it was totally inaccessible in the past. + +Treebanked sentence: +-------------------- + No , it was totally inaccessible in the past . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1254.207 + stop time: 1266.31844987 + +Tree: +----- + (TOP (S (INTJ (UH No)) + (, ,) + (NP-SBJ (PRP it)) + (VP (VBD was) + (ADJP-PRD (RB totally) + (JJ inaccessible)) + (PP-TMP (IN in) + (NP (DT the) + (NN past)))) + (. .))) + +Leaves: +------- + 0 No + 1 , + 2 it + 3 was + sense: be-v.1 + prop: be.01 + v * -> 3:0, was + ARGM-DIS * -> 0:1, No + ARG1 * -> 2:1, it + ARG2 * -> 4:1, totally inaccessible + ARGM-TMP * -> 6:1, in the past + 4 totally + 5 inaccessible + 6 in + 7 the + 8 past + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In the near future, construction will also begin on a cross-sea bridge connecting Hong Kong, Zhuhai, and Macao. + +Treebanked sentence: +-------------------- + In the near future , construction will also begin on a cross-sea bridge connecting Hong Kong , Zhuhai , and Macao . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1256.391 + stop time: 1265.294 + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (DT the) + (JJ near) + (NN future))) + (, ,) + (NP-SBJ (NN construction)) + (VP (MD will) + (ADVP (RB also)) + (VP (VB begin) + (PP-CLR (IN on) + (NP (NP (DT a) + (JJ cross-sea) + (NN bridge)) + (VP (VBG connecting) + (NP (NP (NNP Hong) + (NNP Kong)) + (, ,) + (NP (NNP Zhuhai)) + (, ,) + (CC and) + (NP (NNP Macao)))))))) + (. .))) + +Leaves: +------- + 0 In + 1 the + 2 near + 3 future + 4 , + 5 construction + 6 will + 7 also + 8 begin + sense: begin-v.2 + prop: begin.01 + v * -> 8:0, begin + ARGM-TMP * -> 0:1, In the near future + ARG1 * -> 5:1, construction + ARGM-MOD * -> 6:0, will + ARGM-ADV * -> 7:1, also + ARGM-LOC * -> 9:1, on a cross-sea bridge connecting Hong Kong , Zhuhai , and Macao + 9 on + 10 a + coref: IDENT 4 10-20 a cross-sea bridge connecting Hong Kong , Zhuhai , and Macao + 11 cross-sea + 12 bridge + 13 connecting + sense: connect-v.1 + prop: connect.01 + v * -> 13:0, connecting + ARG2 * -> 10:1, a cross-sea bridge + ARG1 * -> 14:2, Hong Kong , Zhuhai , and Macao + 14 Hong + coref: IDENT 7 14-15 Hong Kong + coref: IDENT 69 14-20 Hong Kong , Zhuhai , and Macao + name: GPE 14-15 Hong Kong + 15 Kong + 16 , + 17 Zhuhai + coref: IDENT 8 17-17 Zhuhai + name: GPE 17-17 Zhuhai + 18 , + 19 and + 20 Macao + coref: IDENT 9 20-20 Macao + name: GPE 20-20 Macao + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In 1992-- + +Treebanked sentence: +-------------------- + In 1992 -- + +Speaker information: +-------------------- + name: Speaker#3 + start time: 1261.892 + stop time: 1264.313 + +Tree: +----- + (TOP (S-UNF (PP-TMP (IN In) + (NP (CD 1992))) + (. --))) + +Leaves: +------- + 0 In + 1 1992 + name: DATE 1-1 1992 + 2 -- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Could n't go in summer-- + +Treebanked sentence: +-------------------- + *PRO* Could n't go in summer -- + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1266.31844987 + stop time: 1268.13816344 + +Tree: +----- + (TOP (S (NP-SBJ (-NONE- *PRO*)) + (VP (MD Could) + (RB n't) + (VP (VB go) + (PP-TMP (IN in) + (NP (NN summer))))) + (. --))) + +Leaves: +------- + 0 *PRO* + 1 Could + 2 n't + 3 go + sense: go-v.1 + prop: go.01 + v * -> 3:0, go + ARG1 * -> 0:0, *PRO* + ARGM-MOD * -> 1:0, Could + ARGM-NEG * -> 2:0, n't + ARGM-TMP * -> 4:1, in summer + 4 in + 5 summer + 6 -- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + So, after their return, Macao, and Hong Kong, the two special administrative regions, are basically still using ships + and helicopters to stay connected. + +Treebanked sentence: +-------------------- + So , after their return , Macao , and Hong Kong , the two special administrative regions , are basically still using + ships and helicopters *PRO*-1 to stay connected . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1268.13816344 + stop time: 1285.1727043 + +Tree: +----- + (TOP (S (ADVP (RB So)) + (, ,) + (PP (IN after) + (NP (PRP$ their) + (NN return))) + (, ,) + (NP-SBJ-1 (NP (NP (NNP Macao)) + (, ,) + (CC and) + (NP (NNP Hong) + (NNP Kong))) + (, ,) + (NP (DT the) + (CD two) + (JJ special) + (JJ administrative) + (NNS regions))) + (, ,) + (VP (VBP are) + (ADVP (RB basically)) + (ADVP-TMP (RB still)) + (VP (VBG using) + (NP (NNS ships) + (CC and) + (NNS helicopters)) + (S-CLR (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB stay) + (ADJP-PRD (JJ connected))))))) + (. .))) + +Leaves: +------- + 0 So + 1 , + 2 after + 3 their + coref: IDENT 14 3-3 their + 4 return + 5 , + 6 Macao + coref: APPOS HEAD 15 6-10 Macao , and Hong Kong + coref: IDENT 9 6-6 Macao + coref: IDENT 14 6-16 Macao , and Hong Kong , the two special administrative regions + name: GPE 6-6 Macao + 7 , + 8 and + 9 Hong + coref: IDENT 7 9-10 Hong Kong + name: GPE 9-10 Hong Kong + 10 Kong + 11 , + 12 the + coref: APPOS ATTRIB 15 12-16 the two special administrative regions + 13 two + name: CARDINAL 13-13 two + 14 special + 15 administrative + 16 regions + 17 , + 18 are + prop: be.03 + v * -> 18:0, are + 19 basically + 20 still + 21 using + sense: use-v.1 + prop: use.01 + v * -> 21:0, using + ARGM-DIS * -> 0:1, So + ARGM-TMP * -> 2:1, after their return + ARG0 * -> 6:3, Macao , and Hong Kong , the two special administrative regions + ARGM-ADV * -> 19:1, basically + ARGM-TMP * -> 20:1, still + ARG1 * -> 22:1, ships and helicopters + ARG2 * -> 25:2, *PRO*-1 to stay connected + 22 ships + 23 and + 24 helicopters + 25 *PRO*-1 + 26 to + 27 stay + sense: stay-v.1 + prop: stay.01 + v * -> 27:0, stay + ARG1 * -> 25:0, *PRO*-1 -> 6:3, Macao , and Hong Kong , the two special administrative regions + ARG3 * -> 28:1, connected + LINK-PCR * -> 25:0, *PRO*-1 -> 6:3, Macao , and Hong Kong , the two special administrative regions + * -> 6:3, Macao , and Hong Kong , the two special administrative regions + 28 connected + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It's extremely troublesome to get there via land. + +Treebanked sentence: +-------------------- + It *EXP*-1 's extremely troublesome *PRO* to get there via land . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1285.1727043 + stop time: 1288.924 + +Tree: +----- + (TOP (S (NP-SBJ (NP (PRP It)) + (S (-NONE- *EXP*-1))) + (VP (VBZ 's) + (ADJP-PRD (RB extremely) + (JJ troublesome)) + (S-1 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB get) + (ADVP-CLR (RB there)) + (PP-MNR (IN via) + (NP (NN land))))))) + (. .))) + +Leaves: +------- + 0 It + 1 *EXP*-1 + 2 's + sense: be-v.1 + prop: be.01 + v * -> 2:0, 's + ARG2 * -> 3:1, extremely troublesome + ARG1 * -> 5:2, *PRO* to get there via land + 3 extremely + 4 troublesome + 5 *PRO* + 6 to + 7 get + sense: get-v.4 + prop: get.05 + v * -> 7:0, get + ARG1 * -> 5:0, *PRO* + ARG2 * -> 8:1, there + ARGM-MNR * -> 9:1, via land + 8 there + 9 via + 10 land + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + One has to go up to Shenzhen, Dongguan, then go through Panyu, keep going up, to Zhongshan, and certainly go to Zhuhai, + then pass through Zhuhai to get to Macao. + +Treebanked sentence: +-------------------- + One has *-1 to go up to Shenzhen , Dongguan , then go through Panyu , keep *-2 going up , to Zhongshan , and certainly + go to Zhuhai , then pass through Zhuhai *PRO* to get to Macao . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1288.924 + stop time: 1300.481 + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP One)) + (VP (VBZ has) + (S (NP-SBJ-2 (-NONE- *-1)) + (VP (TO to) + (VP (VP (VB go) + (ADVP-DIR (RB up) + (PP (IN to) + (NP (NP (NNP Shenzhen)) + (, ,) + (NP (NNP Dongguan)))))) + (, ,) + (ADVP-TMP (RB then)) + (VP (VB go) + (PP-DIR (IN through) + (NP (NNP Panyu)))) + (, ,) + (VP (VB keep) + (S (NP-SBJ (-NONE- *-2)) + (VP (VBG going) + (ADVP-DIR (RB up) + (, ,) + (PP (IN to) + (NP (NNP Zhongshan))))))) + (, ,) + (CC and) + (ADVP (RB certainly)) + (VP (VB go) + (PP-DIR (IN to) + (NP (NNP Zhuhai)))) + (, ,) + (ADVP-TMP (RB then)) + (VP (VB pass) + (PP-DIR (IN through) + (NP (NNP Zhuhai))))))) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB get) + (PP-CLR (IN to) + (NP (NNP Macao))))))) + (. .))) + +Leaves: +------- + 0 One + 1 has + sense: have-v.12 + prop: have.02 + v * -> 1:0, has + 2 *-1 + 3 to + 4 go + sense: go-v.1 + prop: go.02 + v * -> 4:0, go + ARG0 * -> 2:0, *-1 -> 0:1, One + ARG4 * -> 5:1, up to Shenzhen , Dongguan + 5 up + 6 to + 7 Shenzhen + name: GPE 7-7 Shenzhen + 8 , + 9 Dongguan + name: GPE 9-9 Dongguan + 10 , + 11 then + 12 go + sense: go-v.1 + prop: go.02 + v * -> 12:0, go + ARG0 * -> 2:0, *-1 -> 0:1, One + ARGM-TMP * -> 11:1, then + ARG4 * -> 13:1, through Panyu + 13 through + 14 Panyu + name: GPE 14-14 Panyu + 15 , + 16 keep + sense: keep-v.1 + prop: keep.02 + v * -> 16:0, keep + ARG0 * -> 2:0, *-1 -> 0:1, One + ARG1 * -> 17:2, *-2 going up , to Zhongshan + 17 *-2 + 18 going + sense: go-v.1 + prop: go.02 + v * -> 18:0, going + ARG0 * -> 17:0, *-2 -> 2:0, *-1 -> 0:1, One + ARG4 * -> 19:1, up , to Zhongshan + 19 up + 20 , + 21 to + 22 Zhongshan + name: GPE 22-22 Zhongshan + 23 , + 24 and + 25 certainly + 26 go + sense: go-v.1 + prop: go.02 + v * -> 26:0, go + ARG0 * -> 2:0, *-1 -> 0:1, One + ARGM-ADV * -> 25:1, certainly + ARG4 * -> 27:1, to Zhuhai + 27 to + 28 Zhuhai + coref: IDENT 8 28-28 Zhuhai + name: GPE 28-28 Zhuhai + 29 , + 30 then + 31 pass + prop: pass.03 + v * -> 31:0, pass + ARG1 * -> 2:0, *-1 -> 0:1, One + ARGM-TMP * -> 30:1, then + ARGM-DIR * -> 32:1, through Zhuhai + 32 through + 33 Zhuhai + coref: IDENT 8 33-33 Zhuhai + name: GPE 33-33 Zhuhai + 34 *PRO* + 35 to + 36 get + sense: get-v.4 + prop: get.05 + v * -> 36:0, get + ARG1 * -> 34:0, *PRO* + ARG2 * -> 37:1, to Macao + 37 to + 38 Macao + coref: IDENT 9 38-38 Macao + name: GPE 38-38 Macao + 39 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For a Hong Kong person choosing to go there via land, it's extremely inconvenient. + +Treebanked sentence: +-------------------- + For a Hong Kong person choosing *PRO* to go there via land , it 's extremely inconvenient . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1300.481 + stop time: 1305.198 + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NP (DT a) + (NML (NNP Hong) + (NNP Kong)) + (NN person)) + (VP (VBG choosing) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB go) + (ADVP-DIR (RB there)) + (PP-MNR (IN via) + (NP (NN land))))))))) + (, ,) + (NP-SBJ (PRP it)) + (VP (VBZ 's) + (ADJP-PRD (RB extremely) + (JJ inconvenient))) + (. .))) + +Leaves: +------- + 0 For + 1 a + 2 Hong + coref: IDENT 7 2-3 Hong Kong + name: GPE 2-3 Hong Kong + 3 Kong + 4 person + 5 choosing + sense: choose-v.2 + prop: choose.01 + v * -> 5:0, choosing + ARG0 * -> 1:1, a Hong Kong person + ARG1 * -> 6:2, *PRO* to go there via land + 6 *PRO* + 7 to + 8 go + sense: go-v.1 + prop: go.02 + v * -> 8:0, go + ARG0 * -> 6:0, *PRO* + ARG4 * -> 9:1, there + ARGM-MNR * -> 10:1, via land + 9 there + 10 via + 11 land + 12 , + 13 it + 14 's + sense: be-v.1 + prop: be.01 + v * -> 14:0, 's + ARGM-ADV * -> 0:1, For a Hong Kong person choosing *PRO* to go there via land + ARG1 * -> 13:1, it + ARG2 * -> 15:1, extremely inconvenient + 15 extremely + 16 inconvenient + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A full twenty years ago, Hopewell Holdings Group Chairman Wu Ying-sheung, a well-known construction tycoon, boldly made + a cross-sea bridge proposal. + +Treebanked sentence: +-------------------- + A full twenty years ago , Hopewell Holdings Group Chairman Wu Ying - sheung , a well - known construction tycoon , + boldly made a cross-sea bridge proposal . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1307.831 + stop time: 1319.147 + +Tree: +----- + (TOP (S (ADVP-TMP (NP (DT A) + (QP (JJ full) + (CD twenty)) + (NNS years)) + (RB ago)) + (, ,) + (NP-SBJ (NP (NML (NML (NML (NNP Hopewell) + (NNP Holdings)) + (NNP Group)) + (NNP Chairman)) + (NNP Wu) + (NNP Ying) + (HYPH -) + (NNP sheung)) + (, ,) + (NP (DT a) + (ADJP (RB well) + (HYPH -) + (VBN known)) + (NN construction) + (NN tycoon))) + (, ,) + (ADVP-MNR (RB boldly)) + (VP (VBD made) + (NP (DT a) + (NML (JJ cross-sea) + (NN bridge)) + (NN proposal))) + (. .))) + +Leaves: +------- + 0 A + name: DATE 0-4 A full twenty years ago + 1 full + 2 twenty + 3 years + 4 ago + 5 , + 6 Hopewell + coref: APPOS HEAD 44 6-13 Hopewell Holdings Group Chairman Wu Ying - sheung + name: ORG 6-8 Hopewell Holdings Group + 7 Holdings + 8 Group + 9 Chairman + 10 Wu + ! name: PERSON 10-13 Wu Ying - sheung + 11 Ying + 12 - + 13 sheung + 14 , + 15 a + coref: APPOS ATTRIB 44 15-20 a well - known construction tycoon + 16 well + 17 - + 18 known + prop: know.01 + v * -> 18:0, known + ARGM-EXT * -> 16:0, well + ARG1 * -> 19:0, construction + -> 20:0, tycoon + 19 construction + 20 tycoon + 21 , + 22 boldly + 23 made + sense: make-v.2 + 24 a + 25 cross-sea + 26 bridge + 27 proposal + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With this bridge, the distance would be very small, only a little over one kilometer. + +Treebanked sentence: +-------------------- + With this bridge , the distance would be very small , only a little over one kilometer . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1315.923 + stop time: 1323.203 + +Tree: +----- + (TOP (S (PP (IN With) + (NP (DT this) + (NN bridge))) + (, ,) + (NP-SBJ (DT the) + (NN distance)) + (VP (MD would) + (VP (VB be) + (ADJP-PRD (ADJP (RB very) + (JJ small)) + (, ,) + (NP (QP (RB only) + (DT a) + (JJ little) + (RB over) + (CD one)) + (NN kilometer))))) + (. .))) + +Leaves: +------- + 0 With + 1 this + coref: IDENT 4 1-2 this bridge + 2 bridge + 3 , + 4 the + 5 distance + 6 would + 7 be + sense: be-v.1 + prop: be.01 + v * -> 7:0, be + ARGM-ADV * -> 0:1, With this bridge + ARG1 * -> 4:1, the distance + ARGM-MOD * -> 6:0, would + ARG2 * -> 8:2, very small , only a little over one kilometer + 8 very + 9 small + 10 , + 11 only + 12 a + ! name: QUANTITY 12-16 a little over one kilometer + 13 little + 14 over + 15 one + 16 kilometer + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, due to various reasons, bridge construction was put off. + +Treebanked sentence: +-------------------- + However , due to various reasons , bridge construction was put *-1 off . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1319.147 + stop time: 1323.18449874 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (PP-PRP (IN due) + (IN to) + (NP (JJ various) + (NNS reasons))) + (, ,) + (NP-SBJ-1 (NN bridge) + (NN construction)) + (VP (VBD was) + (VP (VBN put) + (NP (-NONE- *-1)) + (PRT (RP off)))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 due + 3 to + 4 various + 5 reasons + 6 , + 7 bridge + 8 construction + 9 was + prop: be.03 + v * -> 9:0, was + 10 put + sense: put-v.7.15 + prop: put.06 + v * -> 10:0, put + -> 12:1, off + ARGM-DIS * -> 0:1, However + ARGM-CAU * -> 2:1, due to various reasons + ARG1 * -> 11:0, *-1 -> 7:1, bridge construction + 11 *-1 + 12 off + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This is what we have seen since 1999. + +Treebanked sentence: +-------------------- + This is what we have seen *T*-1 since 1999 . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1323.203 + stop time: 1329.857 + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBZ is) + (SBAR-NOM-PRD (WHNP-1 (WP what)) + (S (NP-SBJ (PRP we)) + (VP (VBP have) + (VP (VBN seen) + (NP (-NONE- *T*-1)) + (PP-TMP (IN since) + (NP (CD 1999)))))))) + (. .))) + +Leaves: +------- + 0 This + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, This + ARG2 * -> 2:2, what we have seen *T*-1 since 1999 + 2 what + 3 we + 4 have + prop: have.03 + v * -> 4:0, have + 5 seen + sense: see-v.3 + prop: see.01 + v * -> 5:0, seen + ARG0 * -> 3:1, we + ARG1 * -> 6:0, *T*-1 -> 2:1, what + ARGM-TMP * -> 7:1, since 1999 + 6 *T*-1 + 7 since + 8 1999 + name: DATE 8-8 1999 + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Anticipated for 20 years, today this dream is finally coming true. + +Treebanked sentence: +-------------------- + *PRO*-1 Anticipated for 20 years , today this dream is finally coming true . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1323.203 + stop time: 1329.857 + +Tree: +----- + (TOP (S (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (ADJP-PRD (JJ Anticipated) + (PP (IN for) + (NP (CD 20) + (NNS years))))) + (, ,) + (NP-TMP (NN today)) + (NP-SBJ-1 (DT this) + (NN dream)) + (VP (VBZ is) + (ADVP-TMP (RB finally)) + (VP (VBG coming) + (ADJP-PRD (JJ true)))) + (. .))) + +Leaves: +------- + 0 *PRO*-1 + 1 Anticipated + 2 for + 3 20 + name: DATE 3-4 20 years + 4 years + 5 , + 6 today + 7 this + 8 dream + 9 is + prop: be.03 + v * -> 9:0, is + 10 finally + 11 coming + sense: come-v.3 + prop: come.04 + v * -> 11:0, coming + ARGM-PRD * -> 0:2, *PRO*-1 Anticipated for 20 years + ARGM-TMP * -> 6:1, today + ARG1 * -> 7:1, this dream + ARGM-TMP * -> 10:1, finally + ARG2 * -> 12:1, true + 12 true + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Well, originally the construction of the new-- + +Treebanked sentence: +-------------------- + Well , originally the construction of the new -- + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1328.94692502 + stop time: 1331.27211457 + +Tree: +----- + (TOP (S (INTJ (UH Well)) + (, ,) + (ADVP-TMP (RB originally)) + (NP-SBJ (NP (DT the) + (NN construction)) + (PP (IN of) + (NP-UNF (DT the) + (JJ new)))) + (. --))) + +Leaves: +------- + 0 Well + 1 , + 2 originally + 3 the + 4 construction + 5 of + 6 the + 7 new + 8 -- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With this new Hong Kong-Zhuhai-Macao bridge that basically leads to all three places, Hong Kong, Macao, and Zhuhai, + basically, at the start of the bridge, you can get on the separate road to the place you want to go. + +Treebanked sentence: +-------------------- + With this new Hong Kong - Zhuhai - Macao bridge that *T*-1 basically leads to all three places , Hong Kong , Macao , and + Zhuhai , basically , at the start of the bridge , you can get on the separate road to the place 0 you want *PRO*-2 to go + *T*-3 . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1331.27211457 + stop time: 1345.57708509 + +Tree: +----- + (TOP (S (PP (IN With) + (NP (NP (DT this) + (JJ new) + (NML (NML (NNP Hong) + (NNP Kong)) + (HYPH -) + (NML (NNP Zhuhai)) + (HYPH -) + (NML (NNP Macao))) + (NN bridge)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (ADVP (RB basically)) + (VP (VBZ leads) + (PP-DIR (IN to) + (NP (NP (DT all) + (CD three) + (NNS places)) + (, ,) + (NP (NP (NNP Hong) + (NNP Kong)) + (, ,) + (NP (NNP Macao)) + (, ,) + (CC and) + (NP (NNP Zhuhai)))))))))) + (, ,) + (ADVP (RB basically)) + (, ,) + (PP-LOC (IN at) + (NP (NP (DT the) + (NN start)) + (PP (IN of) + (NP (DT the) + (NN bridge))))) + (, ,) + (NP-SBJ (PRP you)) + (VP (MD can) + (VP (VB get) + (PP-CLR (IN on) + (NP (NP (DT the) + (JJ separate) + (NN road)) + (PP-DIR (IN to) + (NP (NP (DT the) + (NN place)) + (SBAR (WHADVP-3 (-NONE- 0)) + (S (NP-SBJ-2 (PRP you)) + (VP (VBP want) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB go) + (ADVP-DIR (-NONE- *T*-3)))))))))))))) + (. .))) + +Leaves: +------- + 0 With + 1 this + coref: IDENT 4 1-25 this new Hong Kong - Zhuhai - Macao bridge that *T*-1 basically leads to + all three places , Hong Kong , Macao , and Zhuhai + 2 new + 3 Hong + coref: IDENT 7 3-4 Hong Kong + coref: IDENT 69 3-8 Hong Kong - Zhuhai - Macao + 4 Kong + 5 - + 6 Zhuhai + coref: IDENT 8 6-6 Zhuhai + name: GPE 6-6 Zhuhai + 7 - + 8 Macao + coref: IDENT 9 8-8 Macao + 9 bridge + 10 that + 11 *T*-1 + 12 basically + 13 leads + sense: lead-v.3 + prop: lead.01 + v * -> 13:0, leads + ARG0 * -> 11:0, *T*-1 -> 10:1, that + ARGM-ADV * -> 12:1, basically + ARG4 * -> 14:1, to all three places , Hong Kong , Macao , and Zhuhai + LINK-SLC * -> 11:0, *T*-1 -> 10:1, that + * -> 1:1, this new Hong Kong - Zhuhai - Macao bridge + 14 to + 15 all + coref: APPOS ATTRIB 68 15-17 all three places + coref: IDENT 69 15-25 all three places , Hong Kong , Macao , and Zhuhai + 16 three + name: GPE 16-16 three + 17 places + 18 , + 19 Hong + coref: APPOS HEAD 68 19-25 Hong Kong , Macao , and Zhuhai + coref: IDENT 7 19-20 Hong Kong + name: GPE 19-20 Hong Kong + 20 Kong + 21 , + 22 Macao + coref: IDENT 9 22-22 Macao + name: GPE 22-22 Macao + 23 , + 24 and + 25 Zhuhai + coref: IDENT 8 25-25 Zhuhai + name: GPE 25-25 Zhuhai + 26 , + 27 basically + 28 , + 29 at + 30 the + 31 start + 32 of + 33 the + coref: IDENT 4 33-34 the bridge + 34 bridge + 35 , + 36 you + 37 can + 38 get + sense: get-v.11.2 + prop: get.05 + v * -> 38:0, get + ARGM-MNR * -> 0:1, With this new Hong Kong - Zhuhai - Macao bridge that *T*-1 basically leads to all + three places , Hong Kong , Macao , and Zhuhai + ARGM-ADV * -> 27:1, basically + ARGM-LOC * -> 29:1, at the start of the bridge + ARG1 * -> 36:1, you + ARGM-MOD * -> 37:0, can + ARG2 * -> 39:1, on the separate road to the place 0 you want *PRO*-2 to go *T*-3 + 39 on + 40 the + 41 separate + 42 road + 43 to + 44 the + 45 place + 46 0 + 47 you + 48 want + sense: want-v.1 + prop: want.01 + v * -> 48:0, want + ARG0 * -> 47:1, you + ARG1 * -> 49:2, *PRO*-2 to go *T*-3 + 49 *PRO*-2 + 50 to + 51 go + sense: go-v.1 + prop: go.02 + v * -> 51:0, go + ARG0 * -> 49:0, *PRO*-2 -> 47:1, you + ARG4 * -> 52:0, *T*-3 -> 46:0, 0 + LINK-SLC * -> 52:0, *T*-3 -> 46:0, 0 + * -> 44:1, the place + LINK-PCR * -> 49:0, *PRO*-2 -> 47:1, you + * -> 47:1, you + 52 *T*-3 + 53 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Macao is this way, and Zhuhai is this way. + +Treebanked sentence: +-------------------- + Macao is this way , and Zhuhai is this way . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1345.57708509 + stop time: 1348.15 + +Tree: +----- + (TOP (S (S (NP-SBJ (NNP Macao)) + (VP (VBZ is) + (NP-DIR-PRD (DT this) + (NN way)))) + (, ,) + (S (CC and) + (NP-SBJ (NNP Zhuhai)) + (VP (VBZ is) + (NP-DIR-PRD (DT this) + (NN way)))) + (. .))) + +Leaves: +------- + 0 Macao + coref: IDENT 9 0-0 Macao + name: GPE 0-0 Macao + 1 is + sense: be-v.4 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, Macao + ARG2 * -> 2:1, this way + 2 this + 3 way + 4 , + 5 and + 6 Zhuhai + coref: IDENT 8 6-6 Zhuhai + name: GPE 6-6 Zhuhai + 7 is + sense: be-v.4 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 6:1, Zhuhai + ARG2 * -> 8:1, this way + 8 this + 9 way + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + From the perspective of either Hong Kong, Macao, or Zhuhai, our concept is a tourism zone. + +Treebanked sentence: +-------------------- + From the perspective of either Hong Kong , Macao , or Zhuhai , our concept is a tourism zone . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1348.15 + stop time: 1356.802 + +Tree: +----- + (TOP (S (PP (IN From) + (NP (NP (DT the) + (NN perspective)) + (PP (IN of) + (NP (CC either) + (NP (NNP Hong) + (NNP Kong)) + (, ,) + (NP (NNP Macao)) + (, ,) + (CC or) + (NP (NN Zhuhai)))))) + (, ,) + (NP-SBJ (PRP$ our) + (NN concept)) + (VP (VBZ is) + (NP-PRD (DT a) + (NN tourism) + (NN zone))) + (. .))) + +Leaves: +------- + 0 From + 1 the + 2 perspective + 3 of + 4 either + 5 Hong + coref: IDENT 7 5-6 Hong Kong + name: GPE 5-6 Hong Kong + 6 Kong + 7 , + 8 Macao + coref: IDENT 9 8-8 Macao + name: GPE 8-8 Macao + 9 , + 10 or + 11 Zhuhai + coref: IDENT 8 11-11 Zhuhai + name: GPE 11-11 Zhuhai + 12 , + 13 our + 14 concept + 15 is + sense: be-v.2 + prop: be.01 + v * -> 15:0, is + ARGM-ADV * -> 0:1, From the perspective of either Hong Kong , Macao , or Zhuhai + ARG1 * -> 13:1, our concept + ARG2 * -> 16:1, a tourism zone + 16 a + 17 tourism + 18 zone + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Er, %pw Zhuhai for sightseeing tours, Macao for entertainment, and we have Disneyland and, other attractions in Hong + Kong. + +Treebanked sentence: +-------------------- + Er , %pw Zhuhai for sightseeing tours , Macao for entertainment , and we have Disneyland and other , other attractions + in Hong Kong . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1356.802 + stop time: 1370.923 + +Tree: +----- + (TOP (FRAG (INTJ (UH Er)) + (, ,) + (XX %pw) + (NP (NP (NNP Zhuhai)) + (PP (IN for) + (NP (NN sightseeing) + (NNS tours)))) + (, ,) + (NP (NP (NN Macao)) + (PP (IN for) + (NP (NN entertainment)))) + (, ,) + (CC and) + (S (NP-SBJ (PRP we)) + (VP (VBP have) + (NP (NP (NNP Disneyland)) + (CC and) + (EDITED (JJ other)) + (, ,) + (NP (JJ other) + (NNS attractions)) + (PP-LOC (IN in) + (NP (NNP Hong) + (NNP Kong)))))) + (. .))) + +Leaves: +------- + 0 Er + 1 , + 2 %pw + 3 Zhuhai + coref: IDENT 8 3-3 Zhuhai + name: GPE 3-3 Zhuhai + 4 for + 5 sightseeing + 6 tours + 7 , + 8 Macao + coref: IDENT 9 8-8 Macao + name: GPE 8-8 Macao + 9 for + 10 entertainment + 11 , + 12 and + 13 we + 14 have + sense: have-v.2 + prop: have.03 + v * -> 14:0, have + ARG0 * -> 13:1, we + ARG1 * -> 15:2, Disneyland and other , other attractions in Hong Kong + 15 Disneyland + coref: IDENT 103 15-15 Disneyland + name: FAC 15-15 Disneyland + 16 and + 17 other + 18 , + 19 other + 20 attractions + 21 in + 22 Hong + coref: IDENT 7 22-23 Hong Kong + name: GPE 22-23 Hong Kong + 23 Kong + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Each place has different attractions of its own. + +Treebanked sentence: +-------------------- + Each place has different attractions of its own . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1370.923 + stop time: 1377.14 + +Tree: +----- + (TOP (S (NP-SBJ (DT Each) + (NN place)) + (VP (VBZ has) + (NP (NP (JJ different) + (NNS attractions)) + (PP (IN of) + (NP (PRP$ its) + (JJ own))))) + (. .))) + +Leaves: +------- + 0 Each + coref: IDENT 106 0-1 Each place + 1 place + 2 has + sense: have-v.2 + prop: have.03 + v * -> 2:0, has + ARG0 * -> 0:1, Each place + ARG1 * -> 3:2, different attractions of its own + 3 different + 4 attractions + 5 of + 6 its + coref: IDENT 106 6-6 its + 7 own + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + So, with this bridge, when some old friends, friends from mainland China or from foreign countries come to our place, it + seems they can basically enjoy a complete tour with great convenience in several days, before, ha, going home. + +Treebanked sentence: +-------------------- + So , with this bridge , when some old friends , friends from mainland China or from foreign countries come to our place + *T*-1 , it seems 0 they can basically enjoy a complete tour with great convenience in several days , before , ha , *PRO* + going home . + +Speaker information: +-------------------- + name: Liang_guoji + start time: 1377.14 + stop time: 1399.739 + +Tree: +----- + (TOP (S (ADVP (RB So)) + (, ,) + (PP (IN with) + (NP (DT this) + (NN bridge))) + (, ,) + (SBAR-TMP (WHADVP-1 (WRB when)) + (S (NP-SBJ (NP (DT some) + (JJ old) + (NNS friends)) + (, ,) + (NP (NP (NNS friends)) + (PP (PP (IN from) + (NP (JJ mainland) + (NNP China))) + (CC or) + (PP (IN from) + (NP (JJ foreign) + (NNS countries)))))) + (VP (VBP come) + (PP-DIR (IN to) + (NP (PRP$ our) + (NN place))) + (ADVP-TMP (-NONE- *T*-1))))) + (, ,) + (NP-SBJ (PRP it)) + (VP (VBZ seems) + (SBAR (-NONE- 0) + (S (NP-SBJ (PRP they)) + (VP (MD can) + (ADVP (RB basically)) + (VP (VB enjoy) + (NP (DT a) + (JJ complete) + (NN tour)) + (PP-MNR (IN with) + (NP (JJ great) + (NN convenience))) + (PP-TMP (IN in) + (NP (JJ several) + (NNS days))) + (, ,) + (PP (IN before) + (, ,) + (INTJ (UH ha)) + (, ,) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG going) + (ADVP-DIR (RB home)))))))))) + (. .))) + +Leaves: +------- + 0 So + 1 , + 2 with + 3 this + coref: IDENT 4 3-4 this bridge + 4 bridge + 5 , + 6 when + 7 some + coref: IDENT 111 7-18 some old friends , friends from mainland China or from foreign countries + coref: IDENT 112 7-9 some old friends + 8 old + 9 friends + 10 , + 11 friends + coref: IDENT 112 11-18 friends from mainland China or from foreign countries + 12 from + 13 mainland + 14 China + name: GPE 14-14 China + 15 or + 16 from + 17 foreign + 18 countries + 19 come + sense: come-v.1 + prop: come.01 + v * -> 19:0, come + ARG1 * -> 7:2, some old friends , friends from mainland China or from foreign countries + ARG4 * -> 20:1, to our place + ARGM-TMP * -> 23:0, *T*-1 -> 6:1, when + 20 to + 21 our + 22 place + 23 *T*-1 + 24 , + 25 it + 26 seems + sense: seem-v.1 + prop: seem.01 + v * -> 26:0, seems + ARGM-DIS * -> 0:0, So + ARGM-MNR * -> 2:1, with this bridge + ARGM-TMP * -> 6:2, when some old friends , friends from mainland China or from foreign countries come to + our place *T*-1 + ARG1 * -> 27:1, 0 they can basically enjoy a complete tour with great convenience in several days , + before , ha , *PRO* going home + 27 0 + 28 they + coref: IDENT 111 28-28 they + 29 can + 30 basically + 31 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 31:0, enjoy + ARG0 * -> 28:1, they + ARGM-MOD * -> 29:0, can + ARGM-ADV * -> 30:1, basically + ARG1 * -> 32:1, a complete tour + ARGM-MNR * -> 35:1, with great convenience + ARGM-TMP * -> 38:1, in several days + ARGM-TMP * -> 42:1, before , ha , *PRO* going home + 32 a + 33 complete + 34 tour + 35 with + 36 great + 37 convenience + 38 in + 39 several + 40 days + 41 , + 42 before + 43 , + 44 ha + 45 , + 46 *PRO* + 47 going + sense: go-v.1 + prop: go.02 + v * -> 47:0, going + ARG0 * -> 46:0, *PRO* + ARG4 * -> 48:1, home + 48 home + 49 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Once the Zhuhai-Hong Kong-Macao bridge is built, it will no longer be a dream of tourists to enjoy gourmet food in Macao + before having fun at Disneyland just an hour later. + +Treebanked sentence: +-------------------- + Once the Zhuhai - Hong Kong - Macao bridge is built *-1 , it *EXP*-2 will no longer be a dream of tourists *PRO* to + enjoy gourmet food in Macao before *PRO* having fun at Disneyland just an hour later . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1399.739 + stop time: 1415.041 + +Tree: +----- + (TOP (S (SBAR-TMP (RB Once) + (S (NP-SBJ-1 (DT the) + (NML (NML (NNP Zhuhai)) + (HYPH -) + (NML (NNP Hong) + (NNP Kong)) + (HYPH -) + (NML (NNP Macao))) + (NN bridge)) + (VP (VBZ is) + (VP (VBN built) + (NP (-NONE- *-1)))))) + (, ,) + (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-2))) + (VP (MD will) + (ADVP-TMP (RB no) + (RB longer)) + (VP (VB be) + (NP-PRD (NP (DT a) + (NN dream)) + (PP (IN of) + (NP (NNS tourists)))) + (S-2 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB enjoy) + (NP (JJ gourmet) + (NN food)) + (PP-LOC (IN in) + (NP (NNP Macao))) + (PP-TMP (IN before) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG having) + (NP (NN fun)) + (PP-LOC (IN at) + (NP (NNP Disneyland))) + (ADVP-TMP (NP (QP (RB just) + (DT an)) + (NN hour)) + (RB later)))))))))) + (. .))) + +Leaves: +------- + 0 Once + 1 the + coref: IDENT 4 1-8 the Zhuhai - Hong Kong - Macao bridge + 2 Zhuhai + coref: IDENT 69 2-7 Zhuhai - Hong Kong - Macao + coref: IDENT 8 2-2 Zhuhai + name: GPE 2-2 Zhuhai + 3 - + 4 Hong + coref: IDENT 7 4-5 Hong Kong + 5 Kong + 6 - + 7 Macao + coref: IDENT 9 7-7 Macao + name: GPE 7-7 Macao + 8 bridge + 9 is + prop: be.03 + v * -> 9:0, is + 10 built + prop: build.01 + v * -> 10:0, built + ARG1 * -> 11:0, *-1 -> 1:1, the Zhuhai - Hong Kong - Macao bridge + 11 *-1 + 12 , + 13 it + 14 *EXP*-2 + 15 will + 16 no + 17 longer + 18 be + sense: be-v.1 + prop: be.01 + v * -> 18:0, be + ARGM-TMP * -> 0:1, Once the Zhuhai - Hong Kong - Macao bridge is built *-1 + ARGM-MOD * -> 15:0, will + ARGM-NEG * -> 16:1, no longer + ARG2 * -> 19:2, a dream of tourists + ARG1 * -> 14:0, *EXP*-2 -> 23:2, *PRO* to enjoy gourmet food in Macao before *PRO* having fun at + Disneyland just an hour later + 19 a + 20 dream + 21 of + 22 tourists + 23 *PRO* + 24 to + 25 enjoy + sense: enjoy-v.1 + prop: enjoy.01 + v * -> 25:0, enjoy + ARG0 * -> 23:0, *PRO* + ARG1 * -> 26:1, gourmet food + ARGM-LOC * -> 28:1, in Macao + ARGM-TMP * -> 30:1, before *PRO* having fun at Disneyland just an hour later + LINK-PCR * -> 23:0, *PRO* + * -> 22:1, tourists + 26 gourmet + 27 food + 28 in + 29 Macao + coref: IDENT 9 29-29 Macao + name: GPE 29-29 Macao + 30 before + 31 *PRO* + 32 having + sense: have-v.4 + prop: have.03 + v * -> 32:0, having + ARG0 * -> 31:0, *PRO* + ARG1 * -> 33:1, fun + ARGM-LOC * -> 34:1, at Disneyland + ARGM-TMP * -> 36:3, just an hour later + 33 fun + 34 at + 35 Disneyland + coref: IDENT 103 35-35 Disneyland + name: FAC 35-35 Disneyland + 36 just + 37 an + ! name: TIME 37-39 an hour later + 38 hour + 39 later + 40 . + + +======================================================================================================================== +Coreference chains for section 8: +--------------------------------- + + Chain 4 (IDENT) + 162.10-20 a cross-sea bridge connecting Hong Kong , Zhuhai , and Macao + 170.1-2 this bridge + 175.1-25 this new Hong Kong - Zhuhai - Macao bridge that *T*-1 basically leads to all three places , + Hong Kong , Macao , and Zhuhai + 175.33-34 the bridge + 180.3-4 this bridge + 181.1-8 the Zhuhai - Hong Kong - Macao bridge + + Chain 7 (IDENT) + 162.14-15 Hong Kong + 165.9-10 Hong Kong + 168.2-3 Hong Kong + 175.3-4 Hong Kong + 175.19-20 Hong Kong + 177.5-6 Hong Kong + 178.22-23 Hong Kong + 181.4-5 Hong Kong + + Chain 69 (IDENT) + 162.14-20 Hong Kong , Zhuhai , and Macao + 175.3-8 Hong Kong - Zhuhai - Macao + 175.15-25 all three places , Hong Kong , Macao , and Zhuhai + 181.2-7 Zhuhai - Hong Kong - Macao + + Chain 8 (IDENT) + 162.17-17 Zhuhai + 167.28-28 Zhuhai + 167.33-33 Zhuhai + 175.6-6 Zhuhai + 175.25-25 Zhuhai + 176.6-6 Zhuhai + 177.11-11 Zhuhai + 178.3-3 Zhuhai + 181.2-2 Zhuhai + + Chain 9 (IDENT) + 162.20-20 Macao + 165.6-6 Macao + 167.38-38 Macao + 175.8-8 Macao + 175.22-22 Macao + 176.0-0 Macao + 177.8-8 Macao + 178.8-8 Macao + 181.7-7 Macao + 181.29-29 Macao + + Chain 14 (IDENT) + 165.3-3 their + 165.6-16 Macao , and Hong Kong , the two special administrative regions + + Chain 15 (APPOS) + HEAD 165.6-10 Macao , and Hong Kong + ATTRIB 165.12-16 the two special administrative regions + + Chain 44 (APPOS) + HEAD 169.6-13 Hopewell Holdings Group Chairman Wu Ying - sheung + ATTRIB 169.15-20 a well - known construction tycoon + + Chain 68 (APPOS) + ATTRIB 175.15-17 all three places + HEAD 175.19-25 Hong Kong , Macao , and Zhuhai + + Chain 103 (IDENT) + 178.15-15 Disneyland + 181.35-35 Disneyland + + Chain 106 (IDENT) + 179.0-1 Each place + 179.6-6 its + + Chain 111 (IDENT) + 180.7-18 some old friends , friends from mainland China or from foreign countries + 180.28-28 they + + Chain 112 (IDENT) + 180.7-9 some old friends + 180.11-18 friends from mainland China or from foreign countries + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Promotion of Hong Kong Disneyland has long since begun. + +Treebanked sentence: +-------------------- + Promotion of Hong Kong Disneyland has long since begun . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1425.004 + stop time: 1429.174 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NN Promotion)) + (PP (IN of) + (NP (NML (NNP Hong) + (NNP Kong)) + (NNP Disneyland)))) + (VP (VBZ has) + (ADVP-TMP (RB long) + (RB since)) + (VP (VBN begun))) + (. .))) + +Leaves: +------- + 0 Promotion + 1 of + 2 Hong + coref: IDENT 2 2-4 Hong Kong Disneyland + coref: IDENT 36 2-3 Hong Kong + name: FAC 2-4 Hong Kong Disneyland + 3 Kong + 4 Disneyland + 5 has + prop: have.01 + v * -> 5:0, has + 6 long + 7 since + 8 begun + sense: begin-v.2 + prop: begin.01 + v * -> 8:0, begun + ARG1 * -> 0:2, Promotion of Hong Kong Disneyland + ARGM-TMP * -> 6:1, long since + 9 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, even though it has entered the last countdown period before its final opening, this wonderland is still + unwilling to take off its mysterious veil. + +Treebanked sentence: +-------------------- + However , even though it has entered the last countdown period before its final opening , this wonderland is still + unwilling *PRO*-1 to take off its mysterious veil . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1429.174 + stop time: 1439.9494524 + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (SBAR-ADV (ADVP (RB even)) + (IN though) + (S (NP-SBJ (PRP it)) + (VP (VBZ has) + (VP (VBN entered) + (NP (NP (DT the) + (JJ last) + (NN countdown) + (NN period)) + (PP-TMP (IN before) + (NP (PRP$ its) + (JJ final) + (NN opening)))))))) + (, ,) + (NP-SBJ-1 (DT this) + (NN wonderland)) + (VP (VBZ is) + (ADVP-TMP (RB still)) + (ADJP-PRD (JJ unwilling) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB take) + (PRT (RP off)) + (NP (PRP$ its) + (JJ mysterious) + (NN veil))))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 even + 3 though + 4 it + coref: IDENT 2 4-4 it + 5 has + prop: have.01 + v * -> 5:0, has + 6 entered + sense: enter-v.1 + prop: enter.01 + v * -> 6:0, entered + ARG0 * -> 4:1, it + ARG1 * -> 7:2, the last countdown period before its final opening + 7 the + 8 last + 9 countdown + 10 period + 11 before + 12 its + coref: IDENT 2 12-12 its + 13 final + 14 opening + 15 , + 16 this + coref: IDENT 2 16-17 this wonderland + 17 wonderland + 18 is + sense: be-v.1 + prop: be.01 + v * -> 18:0, is + ARGM-DIS * -> 0:1, However + ARGM-ADV * -> 2:2, even though it has entered the last countdown period before its final opening + ARG1 * -> 16:1, this wonderland + ARGM-TMP * -> 19:1, still + ARG2 * -> 20:1, unwilling *PRO*-1 to take off its mysterious veil + 19 still + 20 unwilling + 21 *PRO*-1 + 22 to + 23 take + sense: take-v.11 + prop: take.07 + v * -> 23:0, take + -> 24:1, off + ARG0 * -> 21:0, *PRO*-1 -> 16:1, this wonderland + ARG1 * -> 25:1, its mysterious veil + LINK-PCR * -> 21:0, *PRO*-1 -> 16:1, this wonderland + * -> 16:1, this wonderland + 24 off + 25 its + coref: IDENT 2 25-25 its + 26 mysterious + 27 veil + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, currently it has been decided that Disney will open on September 12. + +Treebanked sentence: +-------------------- + Ah , currently it *EXP*-2 has been decided *-1 that Disney will open on September 12 . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1443.68997473 + stop time: 1448.317 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (ADVP-TMP (RB currently)) + (NP-SBJ-1 (NP (PRP it)) + (SBAR (-NONE- *EXP*-2))) + (VP (VBZ has) + (VP (VBN been) + (VP (VBN decided) + (NP (-NONE- *-1)) + (SBAR-2 (IN that) + (S (NP-SBJ (NNP Disney)) + (VP (MD will) + (VP (VB open) + (PP-TMP (IN on) + (NP (NNP September) + (CD 12)))))))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 currently + 3 it + 4 *EXP*-2 + 5 has + prop: have.01 + v * -> 5:0, has + 6 been + prop: be.03 + v * -> 6:0, been + 7 decided + prop: decide.01 + v * -> 7:0, decided + ARGM-DIS * -> 0:1, Ah + ARGM-TMP * -> 2:1, currently + ARG1 * -> 9:1, that Disney will open on September 12 + 8 *-1 + 9 that + 10 Disney + coref: IDENT 2 10-10 Disney + name: FAC 10-10 Disney + 11 will + 12 open + sense: open-v.2 + prop: open.01 + v * -> 12:0, open + ARG1 * -> 10:1, Disney + ARGM-MOD * -> 11:0, will + ARGM-TMP * -> 13:1, on September 12 + 13 on + 14 September + name: DATE 14-15 September 12 + 15 12 + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + There's also what we call soft opening. + +Treebanked sentence: +-------------------- + There 's also what we call *T*-1 *PRO*-2 soft opening . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1448.317 + stop time: 1453.564 + +Tree: +----- + (TOP (S (NP-SBJ (EX There)) + (VP (VBZ 's) + (ADVP (RB also)) + (SBAR-NOM-PRD (WHNP-1 (WP what)) + (S (NP-SBJ (PRP we)) + (VP (VBP call) + (NP-2 (-NONE- *T*-1)) + (S-CLR (NP-SBJ (-NONE- *PRO*-2)) + (NP-PRD (JJ soft) + (NN opening))))))) + (. .))) + +Leaves: +------- + 0 There + 1 's + sense: be-v.3 + prop: be.02 + v * -> 1:0, 's + ARGM-ADV * -> 2:1, also + ARG1 * -> 3:2, what we call *T*-1 *PRO*-2 soft opening + 2 also + 3 what + 4 we + 5 call + sense: call-v.5 + prop: call.01 + v * -> 5:0, call + ARG0 * -> 4:1, we + ARG1 * -> 6:0, *T*-1 -> 3:1, what + ARG2 * -> 7:2, *PRO*-2 soft opening + 6 *T*-1 + 7 *PRO*-2 + 8 soft + 9 opening + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah, they are now rehearsing. + +Treebanked sentence: +-------------------- + Ah , they are now rehearsing . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1453.564 + stop time: 1455.47 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (NP-SBJ (PRP they)) + (VP (VBP are) + (ADVP-TMP (RB now)) + (VP (VBG rehearsing))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 they + coref: IDENT 21 2-2 they + 3 are + prop: be.03 + v * -> 3:0, are + 4 now + 5 rehearsing + prop: rehearse.01 + v * -> 5:0, rehearsing + ARGM-DIS * -> 0:1, Ah + ARG0 * -> 2:1, they + ARGM-TMP * -> 4:1, now + 6 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ah,, ah, some groups, they are rehearsing their service, well, hoping that they will become used to the service, be + familiar with it, when our tourists come in September. + +Treebanked sentence: +-------------------- + Ah , different , ah , some groups , they are rehearsing their service , well , *PRO*-1 hoping that they will become used + to the service , be familiar with it , when our tourists come in September *T*-2 . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1455.47 + stop time: 1470.019 + +Tree: +----- + (TOP (S (INTJ (UH Ah)) + (, ,) + (EDITED (JJ different)) + (, ,) + (UH ah) + (, ,) + (NP-TPC (DT some) + (NNS groups)) + (, ,) + (NP-SBJ-1 (PRP they)) + (VP (VBP are) + (VP (VBG rehearsing) + (NP (PRP$ their) + (NN service)) + (, ,) + (INTJ (UH well)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG hoping) + (SBAR (IN that) + (S (NP-SBJ (PRP they)) + (VP (MD will) + (VP (VP (VB become) + (ADJP-PRD (VBN used) + (PP (IN to) + (NP (DT the) + (NN service))))) + (, ,) + (VP (VB be) + (ADJP-PRD (JJ familiar) + (PP (IN with) + (NP (PRP it))))) + (, ,) + (SBAR-TMP (WHADVP-2 (WRB when)) + (S (NP-SBJ (PRP$ our) + (NNS tourists)) + (VP (VBP come) + (PP-TMP (IN in) + (NP (NNP September))) + (ADVP-TMP (-NONE- *T*-2))))))))))))) + (. .))) + +Leaves: +------- + 0 Ah + 1 , + 2 different + 3 , + 4 ah + 5 , + 6 some + coref: IDENT 21 6-7 some groups + 7 groups + 8 , + 9 they + coref: IDENT 21 9-9 they + 10 are + prop: be.03 + v * -> 10:0, are + 11 rehearsing + prop: rehearse.01 + v * -> 11:0, rehearsing + ARGM-DIS * -> 0:1, Ah + ARGM-DIS * -> 4:0, ah + ARG0 * -> 6:1, some groups + * -> 9:1, they + * -> 17:0, *PRO*-1 -> 9:1, they + ARG1 * -> 12:1, their service + ARGM-DIS * -> 15:1, well + ARGM-PRD * -> 17:2, *PRO*-1 hoping that they will become used to the service , be familiar with it , when + our tourists come in September *T*-2 + 12 their + coref: IDENT 21 12-12 their + coref: IDENT 23 12-13 their service + 13 service + 14 , + 15 well + 16 , + 17 *PRO*-1 + 18 hoping + sense: hope-v.1 + prop: hope.01 + v * -> 18:0, hoping + ARG0 * -> 17:0, *PRO*-1 -> 9:1, they + ARG1 * -> 19:1, that they will become used to the service , be familiar with it , when our tourists + come in September *T*-2 + LINK-PCR * -> 17:0, *PRO*-1 -> 9:1, they + * -> 9:1, they + 19 that + 20 they + coref: IDENT 21 20-20 they + 21 will + 22 become + sense: become-v.1 + prop: become.01 + v * -> 22:0, become + ARG1 * -> 20:1, they + ARGM-MOD * -> 21:0, will + ARG2 * -> 23:1, used to the service + ARGM-TMP * -> 33:2, when our tourists come in September *T*-2 + 23 used + prop: use.02 + v * -> 23:0, used + -> 24:0, to + ARG0 * -> 20:1, they + ARGM-MOD * -> 21:0, will + ARG1 * -> 25:1, the service + 24 to + 25 the + coref: IDENT 23 25-26 the service + 26 service + 27 , + 28 be + sense: be-v.1 + prop: be.01 + v * -> 28:0, be + ARG1 * -> 20:1, they + ARGM-MOD * -> 21:0, will + ARG2 * -> 29:1, familiar with it + ARGM-TMP * -> 33:2, when our tourists come in September *T*-2 + 29 familiar + 30 with + 31 it + coref: IDENT 23 31-31 it + 32 , + 33 when + 34 our + 35 tourists + 36 come + sense: come-v.1 + prop: come.01 + v * -> 36:0, come + ARG1 * -> 34:1, our tourists + ARGM-TMP * -> 37:1, in September + ARGM-TMP * -> 39:0, *T*-2 -> 33:1, when + 37 in + 38 September + name: DATE 38-38 September + 39 *T*-2 + 40 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Well, I am very confident, that when our tourists come to Disneyland, they will certainly return home very satisfied. + +Treebanked sentence: +-------------------- + Well , I am very confident , that when our tourists come to Disneyland *T*-1 , they will certainly return home *PRO*-2 + very satisfied . + +Speaker information: +-------------------- + name: Zhou_liangshuyi + start time: 1470.019 + stop time: 1478.26453243 + +Tree: +----- + (TOP (S (INTJ (UH Well)) + (, ,) + (NP-SBJ (PRP I)) + (VP (VBP am) + (ADJP-PRD (RB very) + (JJ confident) + (, ,) + (SBAR (IN that) + (S (SBAR-TMP (WHADVP-1 (WRB when)) + (S (NP-SBJ (PRP$ our) + (NNS tourists)) + (VP (VBP come) + (PP-DIR (IN to) + (NP (NNP Disneyland))) + (ADVP-TMP (-NONE- *T*-1))))) + (, ,) + (NP-SBJ-2 (PRP they)) + (VP (MD will) + (ADVP (RB certainly)) + (VP (VB return) + (ADVP-DIR (RB home)) + (S-ADV (NP-SBJ (-NONE- *PRO*-2)) + (ADJP-PRD (RB very) + (JJ satisfied))))))))) + (. .))) + +Leaves: +------- + 0 Well + 1 , + 2 I + 3 am + sense: be-v.1 + prop: be.01 + v * -> 3:0, am + ARGM-DIS * -> 0:1, Well + ARG1 * -> 2:1, I + ARG2 * -> 4:1, very confident , that when our tourists come to Disneyland *T*-1 , they will certainly + return home *PRO*-2 very satisfied + 4 very + 5 confident + 6 , + 7 that + 8 when + 9 our + coref: IDENT 31 9-10 our tourists + 10 tourists + 11 come + sense: come-v.1 + prop: come.01 + v * -> 11:0, come + ARG1 * -> 9:1, our tourists + ARG4 * -> 12:1, to Disneyland + ARGM-TMP * -> 14:0, *T*-1 -> 8:1, when + 12 to + 13 Disneyland + coref: IDENT 2 13-13 Disneyland + name: FAC 13-13 Disneyland + 14 *T*-1 + 15 , + 16 they + coref: IDENT 31 16-16 they + 17 will + 18 certainly + 19 return + sense: return-v.1 + prop: return.01 + v * -> 19:0, return + ARGM-TMP * -> 8:2, when our tourists come to Disneyland *T*-1 + ARG1 * -> 16:1, they + ARGM-MOD * -> 17:0, will + ARGM-ADV * -> 18:1, certainly + ARG4 * -> 20:1, home + ARGM-PRD * -> 21:2, *PRO*-2 very satisfied + 20 home + 21 *PRO*-2 + 22 very + 23 satisfied + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The Wonder Tour will start from Hong Kong. + +Treebanked sentence: +-------------------- + The Wonder Tour will start from Hong Kong . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1478.26453243 + stop time: 1481.83 + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NNP Wonder) + (NNP Tour)) + (VP (MD will) + (VP (VB start) + (PP-DIR (IN from) + (NP (NNP Hong) + (NNP Kong))))) + (. .))) + +Leaves: +------- + 0 The + name: EVENT 0-2 The Wonder Tour + 1 Wonder + 2 Tour + 3 will + 4 start + sense: start-v.1 + prop: start.01 + v * -> 4:0, start + ARG1 * -> 0:1, The Wonder Tour + ARGM-MOD * -> 3:0, will + ARGM-DIR * -> 5:1, from Hong Kong + 5 from + 6 Hong + coref: IDENT 36 6-7 Hong Kong + name: GPE 6-7 Hong Kong + 7 Kong + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This dynamic metropolis never ceases its movement. + +Treebanked sentence: +-------------------- + This dynamic metropolis never ceases its movement . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1481.83 + stop time: 1485.561 + +Tree: +----- + (TOP (S (NP-SBJ (DT This) + (JJ dynamic) + (NNS metropolis)) + (ADVP-TMP (RB never)) + (VP (VBZ ceases) + (NP (PRP$ its) + (NN movement))) + (. .))) + +Leaves: +------- + 0 This + coref: IDENT 36 0-2 This dynamic metropolis + 1 dynamic + 2 metropolis + 3 never + 4 ceases + sense: cease-v.2 + prop: cease.01 + v * -> 4:0, ceases + ARG0 * -> 0:1, This dynamic metropolis + ARGM-NEG * -> 3:1, never + ARG1 * -> 5:1, its movement + 5 its + coref: IDENT 36 5-5 its + 6 movement + 7 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It continues to explore ; it continues to open new worlds. + +Treebanked sentence: +-------------------- + It continues *-1 to explore ; it continues *-2 to open new worlds . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1485.561 + stop time: 1490.015 + +Tree: +----- + (TOP (S (S (NP-SBJ-1 (PRP It)) + (VP (VBZ continues) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB explore)))))) + (, ;) + (S (NP-SBJ-2 (PRP it)) + (VP (VBZ continues) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VB open) + (NP (JJ new) + (NNS worlds))))))) + (. .))) + +Leaves: +------- + 0 It + coref: IDENT 36 0-0 It + 1 continues + sense: continue-v.1 + prop: continue.01 + v * -> 1:0, continues + ARG0 * -> 0:1, It + ARG1 * -> 2:2, *-1 to explore + 2 *-1 + 3 to + 4 explore + sense: explore-v.2 + prop: explore.01 + v * -> 4:0, explore + ARG0 * -> 2:0, *-1 -> 0:1, It + 5 ; + 6 it + coref: IDENT 36 6-6 it + 7 continues + sense: continue-v.1 + prop: continue.01 + v * -> 7:0, continues + ARG0 * -> 6:1, it + ARG1 * -> 8:2, *-2 to open new worlds + 8 *-2 + 9 to + 10 open + sense: open-v.1 + prop: open.01 + v * -> 10:0, open + ARG0 * -> 8:0, *-2 -> 6:1, it + ARG1 * -> 11:1, new worlds + 11 new + 12 worlds + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Each day, there is always something new for people to experience and to love about this city. + +Treebanked sentence: +-------------------- + Each day , there is always something new 0 for people to experience *T*-1 and to love *T*-1 about this city . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1490.015 + stop time: 1495.70345409 + +Tree: +----- + (TOP (S (NP-TMP (DT Each) + (NN day)) + (, ,) + (NP-SBJ (EX there)) + (VP (VBZ is) + (ADVP-TMP (RB always)) + (NP-PRD (NP (NP (NN something)) + (ADJP (JJ new))) + (SBAR (WHNP-1 (-NONE- 0)) + (IN for) + (S (NP-SBJ (NNS people)) + (VP (VP (TO to) + (VP (VB experience) + (NP (-NONE- *T*-1)))) + (CC and) + (VP (TO to) + (VP (VB love) + (NP (-NONE- *T*-1))))))) + (PP (IN about) + (NP (DT this) + (NN city))))) + (. .))) + +Leaves: +------- + 0 Each + 1 day + 2 , + 3 there + 4 is + sense: be-v.3 + prop: be.02 + v * -> 4:0, is + ARGM-TMP * -> 0:1, Each day + ARGM-TMP * -> 5:1, always + ARG1 * -> 6:3, something new 0 for people to experience *T*-1 and to love *T*-1 about this city + 5 always + 6 something + 7 new + 8 0 + 9 for + 10 people + 11 to + 12 experience + sense: experience-v.1 + prop: experience.01 + v * -> 12:0, experience + ARG0 * -> 10:1, people + ARG1 * -> 13:0, *T*-1 -> 8:0, 0 + LINK-SLC * -> 13:0, *T*-1 -> 8:0, 0 + * -> 6:2, something new + 13 *T*-1 + 14 and + 15 to + 16 love + sense: love-v.1 + prop: love.01 + v * -> 16:0, love + ARG0 * -> 10:1, people + ARG1 * -> 17:0, *T*-1 -> 8:0, 0 + LINK-SLC * -> 17:0, *T*-1 -> 8:0, 0 + * -> 6:2, something new + 17 *T*-1 + 18 about + 19 this + coref: IDENT 36 19-20 this city + 20 city + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hong Kong is a world famous shopping paradise. + +Treebanked sentence: +-------------------- + Hong Kong is a world famous shopping paradise . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1531.13732098 + stop time: 1535.283 + +Tree: +----- + (TOP (S (NP-SBJ (NNP Hong) + (NNP Kong)) + (VP (VBZ is) + (NP-PRD (DT a) + (ADJP (NN world) + (JJ famous)) + (NN shopping) + (NN paradise))) + (. .))) + +Leaves: +------- + 0 Hong + coref: IDENT 36 0-1 Hong Kong + name: GPE 0-1 Hong Kong + 1 Kong + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 0:1, Hong Kong + ARG2 * -> 3:1, a world famous shopping paradise + 3 a + 4 world + 5 famous + 6 shopping + 7 paradise + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + What determined the position of Hong Kong as a shopping paradise ? + +Treebanked sentence: +-------------------- + What *T*-1 determined the position of Hong Kong as a shopping paradise ? + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1535.283 + stop time: 1539.234 + +Tree: +----- + (TOP (SBARQ (WHNP-1 (WP What)) + (SQ (NP-SBJ (-NONE- *T*-1)) + (VBD determined) + (NP (NP (DT the) + (NN position)) + (PP (IN of) + (NP (NNP Hong) + (NNP Kong)))) + (PP-CLR (IN as) + (NP (DT a) + (NN shopping) + (NN paradise)))) + (. ?))) + +Leaves: +------- + 0 What + 1 *T*-1 + 2 determined + sense: determine-v.3 + prop: determine.01 + v * -> 2:0, determined + ARG0 * -> 1:0, *T*-1 -> 0:1, What + ARG1 * -> 3:2, the position of Hong Kong + ARG3 * -> 8:1, as a shopping paradise + 3 the + 4 position + 5 of + 6 Hong + coref: IDENT 36 6-7 Hong Kong + name: GPE 6-7 Hong Kong + 7 Kong + 8 as + 9 a + 10 shopping + 11 paradise + 12 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Is it because of abundant merchandise or high quality at low prices ? + +Treebanked sentence: +-------------------- + Is it because of abundant merchandise or high quality at low prices ? + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1539.234 + stop time: 1542.52 + +Tree: +----- + (TOP (SQ (VBZ Is) + (NP-SBJ (PRP it)) + (PP-PRP-PRD (IN because) + (IN of) + (NP (NP (JJ abundant) + (NN merchandise)) + (CC or) + (NP (NP (JJ high) + (NN quality)) + (PP (IN at) + (NP (JJ low) + (NNS prices)))))) + (. ?))) + +Leaves: +------- + 0 Is + sense: be-v.1 + prop: be.01 + v * -> 0:0, Is + ARG1 * -> 1:1, it + ARG2 * -> 2:1, because of abundant merchandise or high quality at low prices + 1 it + 2 because + 3 of + 4 abundant + 5 merchandise + 6 or + 7 high + 8 quality + 9 at + 10 low + 11 prices + 12 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Is it a paradise for the rich or the general public ? + +Treebanked sentence: +-------------------- + Is it a paradise for the rich or the general public ? + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1542.52 + stop time: 1546.706 + +Tree: +----- + (TOP (SQ (VBZ Is) + (NP-SBJ (PRP it)) + (NP-PRD (NP (DT a) + (NN paradise)) + (PP (IN for) + (NP (NP (DT the) + (JJ rich)) + (CC or) + (NP (DT the) + (JJ general) + (NN public))))) + (. ?))) + +Leaves: +------- + 0 Is + sense: be-v.1 + prop: be.01 + v * -> 0:0, Is + ARG1 * -> 1:1, it + ARG2 * -> 2:2, a paradise for the rich or the general public + 1 it + coref: IDENT 36 1-1 it + 2 a + 3 paradise + 4 for + 5 the + 6 rich + 7 or + 8 the + 9 general + 10 public + 11 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + After all, what are the joyful memories from inside paradise ? + +Treebanked sentence: +-------------------- + After all , what are the joyful memories from inside paradise *T*-1 ? + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1546.706 + stop time: 1550.1432182 + +Tree: +----- + (TOP (SBARQ (ADVP (RB After) + (RB all)) + (, ,) + (WHNP-1 (WP what)) + (SQ (VBP are) + (NP-SBJ (NP (DT the) + (JJ joyful) + (NNS memories)) + (PP-DIR (IN from) + (PP (IN inside) + (NP (NN paradise))))) + (NP-PRD (-NONE- *T*-1))) + (. ?))) + +Leaves: +------- + 0 After + 1 all + 2 , + 3 what + 4 are + sense: be-v.2 + prop: be.01 + v * -> 4:0, are + ARGM-DIS * -> 0:1, After all + ARG1 * -> 5:2, the joyful memories from inside paradise + ARG2 * -> 11:0, *T*-1 -> 3:1, what + 5 the + 6 joyful + 7 memories + 8 from + 9 inside + 10 paradise + 11 *T*-1 + 12 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + We respectfully invite you to watch Hong Kong : a Shopping Paradise in this edition of Across China. + +Treebanked sentence: +-------------------- + We respectfully invite you *PRO*-1 to watch Hong Kong : a Shopping Paradise in this edition of Across China . + +Speaker information: +-------------------- + name: Speaker#1 + start time: 1550.1432182 + stop time: 1555.619 + +Tree: +----- + (TOP (S (NP-SBJ (PRP We)) + (ADVP-MNR (RB respectfully)) + (VP (VBP invite) + (NP-1 (PRP you)) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB watch) + (NP-TTL (NP (NNP Hong) + (NNP Kong)) + (, :) + (NP (DT a) + (NNP Shopping) + (NNP Paradise))) + (PP-LOC (IN in) + (NP (NP (DT this) + (NN edition)) + (PP (IN of) + (NP-TTL (NNP Across) + (NNP China))))))))) + (. .))) + +Leaves: +------- + 0 We + 1 respectfully + 2 invite + sense: invite-v.3 + prop: invite.01 + v * -> 2:0, invite + ARG0 * -> 0:1, We + ARGM-MNR * -> 1:1, respectfully + ARG1 * -> 3:1, you + ARG2 * -> 4:2, *PRO*-1 to watch Hong Kong : a Shopping Paradise in this edition of Across China + 3 you + 4 *PRO*-1 + 5 to + 6 watch + sense: watch-v.1 + prop: watch.01 + v * -> 6:0, watch + ARG0 * -> 4:0, *PRO*-1 -> 3:1, you + ARG1 * -> 7:2, Hong Kong : a Shopping Paradise + ARGM-LOC * -> 13:1, in this edition of Across China + LINK-PCR * -> 4:0, *PRO*-1 -> 3:1, you + * -> 3:1, you + 7 Hong + coref: APPOS HEAD 81 7-8 Hong Kong + name: WORK_OF_ART 7-12 Hong Kong : a Shopping Paradise + 8 Kong + 9 : + 10 a + coref: APPOS ATTRIB 81 10-12 a Shopping Paradise + 11 Shopping + 12 Paradise + 13 in + 14 this + 15 edition + 16 of + 17 Across + name: ORG 17-18 Across China + 18 China + 19 . + + +======================================================================================================================== +Coreference chains for section 9: +--------------------------------- + + Chain 2 (IDENT) + 182.2-4 Hong Kong Disneyland + 183.4-4 it + 183.12-12 its + 183.16-17 this wonderland + 183.25-25 its + 184.10-10 Disney + 188.13-13 Disneyland + + Chain 36 (IDENT) + 182.2-3 Hong Kong + 189.6-7 Hong Kong + 190.0-2 This dynamic metropolis + 190.5-5 its + 191.0-0 It + 191.6-6 it + 192.19-20 this city + 193.0-1 Hong Kong + 194.6-7 Hong Kong + 196.1-1 it + + Chain 21 (IDENT) + 186.2-2 they + 187.6-7 some groups + 187.9-9 they + 187.12-12 their + 187.20-20 they + + Chain 23 (IDENT) + 187.12-13 their service + 187.25-26 the service + 187.31-31 it + + Chain 31 (IDENT) + 188.9-10 our tourists + 188.16-16 they + + Chain 81 (APPOS) + HEAD 198.7-8 Hong Kong + ATTRIB 198.10-12 a Shopping Paradise + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hello, everyone. + +Treebanked sentence: +-------------------- + Hello , everyone . + +Speaker information: +-------------------- + name: Speaker#8 + start time: 1741.493 + stop time: 1744.677 + +Tree: +----- + (TOP (FRAG (INTJ (UH Hello)) + (, ,) + (NP-VOC (NN everyone)) + (. .))) + +Leaves: +------- + 0 Hello + 1 , + 2 everyone + 3 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This is the Cross Strait program on CCTV International Channel. + +Treebanked sentence: +-------------------- + This is the Cross Strait program on CCTV International Channel . + +Speaker information: +-------------------- + name: Speaker#8 + start time: 1741.493 + stop time: 1744.677 + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBZ is) + (NP-PRD (DT the) + (NML-TTL (NNP Cross) + (NNP Strait)) + (NN program)) + (PP-LOC (IN on) + (NP (NNP CCTV) + (NNP International) + (NNP Channel)))) + (. .))) + +Leaves: +------- + 0 This + coref: IDENT 1 0-0 This + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, This + ARG2 * -> 2:1, the Cross Strait program + ARGM-LOC * -> 6:1, on CCTV International Channel + 2 the + 3 Cross + name: ORG 3-4 Cross Strait + 4 Strait + 5 program + 6 on + 7 CCTV + name: ORG 7-9 CCTV International Channel + 8 International + 9 Channel + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Welcome to our program. + +Treebanked sentence: +-------------------- + *PRO* Welcome to our program . + +Speaker information: +-------------------- + name: Speaker#8 + start time: 1744.677 + stop time: 1745.582 + +Tree: +----- + (TOP (S (NP-SBJ (-NONE- *PRO*)) + (VP (VBP Welcome) + (PP-CLR (IN to) + (NP (PRP$ our) + (NN program)))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Welcome + sense: welcome-v.2 + prop: welcome.01 + v * -> 1:0, Welcome + ARG0 * -> 0:0, *PRO* + ARG2 * -> 2:1, to our program + 2 to + 3 our + coref: IDENT 1 3-4 our program + 4 program + 5 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + First let's focus on the main contents of today's program. + +Treebanked sentence: +-------------------- + First *PRO* let 's focus on the main contents of today 's program . + +Speaker information: +-------------------- + name: Speaker#8 + start time: 1745.582 + stop time: 1749.443 + +Tree: +----- + (TOP (S (ADVP-TMP (RB First)) + (NP-SBJ (-NONE- *PRO*)) + (VP (VB let) + (S (NP-SBJ (PRP 's)) + (VP (VB focus) + (PP-CLR (IN on) + (NP (NP (DT the) + (JJ main) + (NNS contents)) + (PP (IN of) + (NP (NP (NN today) + (POS 's)) + (NN program)))))))) + (. .))) + +Leaves: +------- + 0 First + name: ORDINAL 0-0 First + 1 *PRO* + 2 let + sense: let-v.1 + prop: let.01 + v * -> 2:0, let + ARGM-TMP * -> 0:1, First + ARG0 * -> 1:0, *PRO* + ARG1 * -> 3:2, 's focus on the main contents of today 's program + 3 's + 4 focus + sense: focus-v.2 + prop: focus.01 + v * -> 4:0, focus + ARG0 * -> 3:1, 's + ARG2 * -> 5:1, on the main contents of today 's program + 5 on + 6 the + 7 main + 8 contents + 9 of + 10 today + name: DATE 10-10 today + 11 's + 12 program + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Wang Jin-pyng says that he has decided not to continue serving as KMT vice chairman. + +Treebanked sentence: +-------------------- + Wang Jin - pyng says that he has decided *PRO*-1 not to continue *-2 serving as KMT vice chairman . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1749.443 + stop time: 1752.328 + +Tree: +----- + (TOP (S (NP-SBJ (NNP Wang) + (NNP Jin) + (HYPH -) + (NNP pyng)) + (VP (VBZ says) + (SBAR (IN that) + (S (NP-SBJ-1 (PRP he)) + (VP (VBZ has) + (VP (VBN decided) + (S (NP-SBJ-2 (-NONE- *PRO*-1)) + (RB not) + (VP (TO to) + (VP (VB continue) + (S (NP-SBJ (-NONE- *-2)) + (VP (VBG serving) + (PP-CLR (IN as) + (NP (NNP KMT) + (NN vice) + (NN chairman))))))))))))) + (. .))) + +Leaves: +------- + 0 Wang + coref: IDENT 12 0-3 Wang Jin - pyng + name: PERSON 0-3 Wang Jin - pyng + 1 Jin + 2 - + 3 pyng + 4 says + sense: say-v.1 + prop: say.01 + v * -> 4:0, says + ARG0 * -> 0:1, Wang Jin - pyng + ARG1 * -> 5:1, that he has decided *PRO*-1 not to continue *-2 serving as KMT vice chairman + 5 that + 6 he + coref: IDENT 12 6-6 he + 7 has + prop: have.01 + v * -> 7:0, has + 8 decided + sense: decide-v.1 + prop: decide.01 + v * -> 8:0, decided + ARG0 * -> 6:1, he + ARG1 * -> 9:2, *PRO*-1 not to continue *-2 serving as KMT vice chairman + 9 *PRO*-1 + 10 not + 11 to + 12 continue + sense: continue-v.1 + prop: continue.01 + v * -> 12:0, continue + ARG0 * -> 9:0, *PRO*-1 -> 6:1, he + ARGM-NEG * -> 10:0, not + ARG1 * -> 13:2, *-2 serving as KMT vice chairman + LINK-PCR * -> 9:0, *PRO*-1 -> 6:1, he + * -> 6:1, he + 13 *-2 + 14 serving + sense: serve-v.3 + prop: serve.01 + v * -> 14:0, serving + ARG0 * -> 9:0, *PRO*-1 -> 6:1, he + ARG1 * -> 15:1, as KMT vice chairman + LINK-PCR * -> 13:0, *-2 -> 9:0, *PRO*-1 -> 6:1, he + * -> 9:0, *PRO*-1 -> 6:1, he + * -> 6:1, he + 15 as + 16 KMT + name: ORG 16-16 KMT + 17 vice + 18 chairman + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Candidates for the giant pandas to be presented to Taiwan as gifts from the mainland may increase. + +Treebanked sentence: +-------------------- + Candidates for the giant pandas to be presented *-1 to Taiwan as gifts from the mainland may increase . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1752.328 + stop time: 1755.926 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NNS Candidates)) + (SBAR (IN for) + (S (NP-SBJ-1 (DT the) + (JJ giant) + (NNS pandas)) + (VP (TO to) + (VP (VB be) + (VP (VBN presented) + (NP (-NONE- *-1)) + (PP-CLR (IN to) + (NP (NNP Taiwan))) + (PP-CLR (IN as) + (NP (NP (NNS gifts)) + (PP (IN from) + (NP (DT the) + (NN mainland))))))))))) + (VP (MD may) + (VP (VB increase))) + (. .))) + +Leaves: +------- + 0 Candidates + 1 for + 2 the + 3 giant + 4 pandas + 5 to + 6 be + prop: be.03 + v * -> 6:0, be + 7 presented + sense: present-v.3 + prop: present.01 + v * -> 7:0, presented + ARG1 * -> 8:0, *-1 -> 2:1, the giant pandas + ARG2 * -> 9:1, to Taiwan + ARG3 * -> 11:1, as gifts from the mainland + 8 *-1 + 9 to + 10 Taiwan + coref: IDENT 21 10-10 Taiwan + name: GPE 10-10 Taiwan + 11 as + 12 gifts + 13 from + 14 the + 15 mainland + 16 may + 17 increase + sense: increase-v.1 + prop: increase.01 + v * -> 17:0, increase + ARG1 * -> 0:2, Candidates for the giant pandas to be presented *-1 to Taiwan as gifts from the + mainland + ARGM-MOD * -> 16:0, may + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Taiwan's military uses Taipei Aerospace Exhibition as an opportunity for pressing arms procurement. + +Treebanked sentence: +-------------------- + Taiwan 's military uses Taipei Aerospace Exhibition as an opportunity for *PRO* pressing arms procurement . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1755.926 + stop time: 1759.308 + +Tree: +----- + (TOP (S (NP-SBJ (NP (NNP Taiwan) + (POS 's)) + (NN military)) + (VP (VBZ uses) + (NP (NNP Taipei) + (NNP Aerospace) + (NNP Exhibition)) + (PP-CLR (IN as) + (NP (NP (DT an) + (NN opportunity)) + (PP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG pressing) + (NP (NNS arms) + (NN procurement)))))))) + (. .))) + +Leaves: +------- + 0 Taiwan + coref: IDENT 21 0-1 Taiwan 's + name: GPE 0-0 Taiwan + 1 's + 2 military + 3 uses + sense: use-v.1 + prop: use.01 + v * -> 3:0, uses + ARG0 * -> 0:2, Taiwan 's military + ARG1 * -> 4:1, Taipei Aerospace Exhibition + ARG2 * -> 7:1, as an opportunity for *PRO* pressing arms procurement + 4 Taipei + name: EVENT 4-6 Taipei Aerospace Exhibition + 5 Aerospace + 6 Exhibition + 7 as + 8 an + 9 opportunity + 10 for + 11 *PRO* + 12 pressing + prop: press.01 + v * -> 12:0, pressing + ARG0 * -> 11:0, *PRO* + ARG1 * -> 13:1, arms procurement + 13 arms + 14 procurement + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Recently, the 2005 Ningxia Investment and Trade Fair and Ningxia-Taiwan Economic and Trade Cooperation Seminar were held + in the city of Yinchuan. + +Treebanked sentence: +-------------------- + Recently , the 2005 Ningxia Investment and Trade Fair and Ningxia - Taiwan Economic and Trade Cooperation Seminar were + held *-1 in the city of Yinchuan . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1759.308 + stop time: 1765.407 + +Tree: +----- + (TOP (S (ADVP-TMP (RB Recently)) + (, ,) + (NP-SBJ-1 (NP (DT the) + (CD 2005) + (NNP Ningxia) + (NML (NNP Investment) + (CC and) + (NNP Trade)) + (NNP Fair)) + (CC and) + (NP (NML (NNP Ningxia) + (HYPH -) + (NNP Taiwan)) + (NML (NNP Economic) + (CC and) + (NNP Trade) + (NNP Cooperation)) + (NNP Seminar))) + (VP (VBD were) + (VP (VBN held) + (NP (-NONE- *-1)) + (PP-LOC (IN in) + (NP (NP (DT the) + (NN city)) + (PP (IN of) + (NP (NNP Yinchuan))))))) + (. .))) + +Leaves: +------- + 0 Recently + 1 , + 2 the + 3 2005 + name: DATE 3-3 2005 + 4 Ningxia + ! name: EVENT 4-8 Ningxia Investment and Trade Fair + 5 Investment + 6 and + 7 Trade + 8 Fair + 9 and + 10 Ningxia + name: EVENT 10-17 Ningxia - Taiwan Economic and Trade Cooperation Seminar + 11 - + 12 Taiwan + 13 Economic + 14 and + 15 Trade + 16 Cooperation + 17 Seminar + 18 were + prop: be.03 + v * -> 18:0, were + 19 held + prop: hold.04 + v * -> 19:0, held + ARGM-TMP * -> 0:1, Recently + ARG1 * -> 20:0, *-1 -> 2:2, the 2005 Ningxia Investment and Trade Fair and Ningxia - Taiwan Economic + and Trade Cooperation Seminar + ARGM-LOC * -> 21:1, in the city of Yinchuan + 20 *-1 + 21 in + 22 the + 23 city + 24 of + 25 Yinchuan + name: GPE 25-25 Yinchuan + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + More than three hundred Taiwanese businesspeople gathered in this land known as " lush southern-type fields north of the + Great Wall, " beginning their tour and inspection journey. + +Treebanked sentence: +-------------------- + More than three hundred Taiwanese businesspeople gathered in this land known * as " lush southern - type fields north of + the Great Wall , " *PRO*-1 beginning their tour and inspection journey . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1765.407 + stop time: 1771.095 + +Tree: +----- + (TOP (S (NP-SBJ-1 (QP (JJR More) + (IN than) + (CD three) + (CD hundred)) + (JJ Taiwanese) + (NN businesspeople)) + (VP (VBD gathered) + (PP-LOC (IN in) + (NP (NP (DT this) + (NN land)) + (VP (VBN known) + (NP (-NONE- *)) + (PP-CLR (IN as) + (`` ") + (NP (JJ lush) + (NML (JJ southern) + (HYPH -) + (NN type)) + (NNS fields)))) + (ADJP (JJ north) + (PP (IN of) + (NP (DT the) + (NNP Great) + (NNP Wall)))))) + (, ,) + ('' ") + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG beginning) + (NP (PRP$ their) + (NML (NML (NN tour)) + (CC and) + (NML (NN inspection) + (NN journey))))))) + (. .))) + +Leaves: +------- + 0 More + coref: IDENT 39 0-5 More than three hundred Taiwanese businesspeople + name: CARDINAL 0-3 More than three hundred + 1 than + 2 three + 3 hundred + 4 Taiwanese + name: NORP 4-4 Taiwanese + 5 businesspeople + 6 gathered + sense: gather-v.2 + prop: gather.01 + v * -> 6:0, gathered + ARG1 * -> 0:2, More than three hundred Taiwanese businesspeople + ARGM-LOC * -> 7:1, in this land known * as " lush southern - type fields north of the Great Wall + ARGM-ADV * -> 26:2, *PRO*-1 beginning their tour and inspection journey + 7 in + 8 this + 9 land + 10 known + sense: know-v.2 + prop: know.01 + v * -> 10:0, known + ARG1 * -> 11:0, * + * -> 8:1, this land + ARG2 * -> 12:1, as " lush southern - type fields + ARGM-LOC * -> 19:1, north of the Great Wall + 11 * + 12 as + 13 " + 14 lush + 15 southern + 16 - + 17 type + 18 fields + 19 north + 20 of + 21 the + name: WORK_OF_ART 21-23 the Great Wall + 22 Great + 23 Wall + 24 , + 25 " + 26 *PRO*-1 + 27 beginning + sense: begin-v.2 + prop: begin.01 + v * -> 27:0, beginning + ARG0 * -> 26:0, *PRO*-1 -> 0:2, More than three hundred Taiwanese businesspeople + ARG1 * -> 28:1, their tour and inspection journey + LINK-PCR * -> 26:0, *PRO*-1 -> 0:2, More than three hundred Taiwanese businesspeople + * -> 0:2, More than three hundred Taiwanese businesspeople + 28 their + coref: IDENT 39 28-28 their + 29 tour + 30 and + 31 inspection + 32 journey + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Well, what is the unique charm in Ningxia of the western region that has attracted the attention of so many Taiwanese + businesspeople ? + +Treebanked sentence: +-------------------- + Well , what is the unique charm in Ningxia of the western region that *T*-1 has attracted the attention of so many + Taiwanese businesspeople *T*-2 ? + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1771.095 + stop time: 1776.613 + +Tree: +----- + (TOP (SBARQ (INTJ (UH Well)) + (, ,) + (WHNP-2 (WP what)) + (SQ (VBZ is) + (NP-SBJ (NP (NP (DT the) + (JJ unique) + (NN charm)) + (PP (IN in) + (NP (NP (NNP Ningxia)) + (PP (IN of) + (NP (DT the) + (JJ western) + (NN region)))))) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBZ has) + (VP (VBN attracted) + (NP (NP (DT the) + (NN attention)) + (PP (IN of) + (NP (ADJP (RB so) + (JJ many)) + (JJ Taiwanese) + (NN businesspeople))))))))) + (NP-PRD (-NONE- *T*-2))) + (. ?))) + +Leaves: +------- + 0 Well + 1 , + 2 what + 3 is + sense: be-v.2 + prop: be.01 + v * -> 3:0, is + ARGM-DIS * -> 0:1, Well + ARG1 * -> 4:3, the unique charm in Ningxia of the western region that *T*-1 has attracted the + attention of so many Taiwanese businesspeople + ARG2 * -> 24:0, *T*-2 -> 2:1, what + 4 the + 5 unique + 6 charm + 7 in + 8 Ningxia + name: GPE 8-8 Ningxia + 9 of + 10 the + 11 western + 12 region + 13 that + 14 *T*-1 + 15 has + prop: have.01 + v * -> 15:0, has + 16 attracted + sense: attract-v.1 + prop: attract.01 + v * -> 16:0, attracted + ARG0 * -> 14:0, *T*-1 -> 13:1, that + ARG1 * -> 17:2, the attention of so many Taiwanese businesspeople + LINK-SLC * -> 14:0, *T*-1 -> 13:1, that + * -> 4:2, the unique charm in Ningxia of the western region + 17 the + 18 attention + 19 of + 20 so + 21 many + 22 Taiwanese + name: NORP 22-22 Taiwanese + 23 businesspeople + 24 *T*-2 + 25 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Please watch this edition of Hot Topic Analysis for a detailed report. + +Treebanked sentence: +-------------------- + Please *PRO* watch this edition of Hot Topic Analysis for a detailed report . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1776.613 + stop time: 1779.837 + +Tree: +----- + (TOP (S-IMP (INTJ (UH Please)) + (NP-SBJ (-NONE- *PRO*)) + (VP (VB watch) + (NP (NP (DT this) + (NN edition)) + (PP (IN of) + (NP-TTL (NNP Hot) + (NNP Topic) + (NNP Analysis)))) + (PP-PRP (IN for) + (NP (DT a) + (VBN detailed) + (NN report)))) + (. .))) + +Leaves: +------- + 0 Please + 1 *PRO* + 2 watch + sense: watch-v.1 + prop: watch.01 + v * -> 2:0, watch + ARGM-DIS * -> 0:1, Please + ARG0 * -> 1:0, *PRO* + ARG1 * -> 3:2, this edition of Hot Topic Analysis + ARGM-PRP * -> 9:1, for a detailed report + 3 this + 4 edition + 5 of + 6 Hot + name: ORG 6-8 Hot Topic Analysis + 7 Topic + 8 Analysis + 9 for + 10 a + 11 detailed + prop: detail.01 + v * -> 11:0, detailed + ARG0 * -> 12:0, report + 12 report + 13 . + + +======================================================================================================================== +Coreference chains for section 10: +---------------------------------- + + Chain 1 (IDENT) + 200.0-0 This + 201.3-4 our program + + Chain 12 (IDENT) + 203.0-3 Wang Jin - pyng + 203.6-6 he + + Chain 21 (IDENT) + 204.10-10 Taiwan + 205.0-1 Taiwan 's + + Chain 39 (IDENT) + 207.0-5 More than three hundred Taiwanese businesspeople + 207.28-28 their + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The KMT vice chairman arrived at party headquarters to meet with KMT Chairman Lien Chan on the afternoon of %pw. + +Treebanked sentence: +-------------------- + The KMT vice chairman arrived at party headquarters *PRO*-1 to meet with KMT Chairman Lien Chan on the afternoon of %pw + . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1786.342 + stop time: 1790.858 + +Tree: +----- + (TOP (S (NP-SBJ-1 (DT The) + (NNP KMT) + (NN vice) + (NN chairman)) + (VP (VBD arrived) + (PP-LOC (IN at) + (NP (NN party) + (NNS headquarters))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB meet) + (PP-CLR (IN with) + (NP (NNP KMT) + (NNP Chairman) + (NNP Lien) + (NNP Chan))) + (PP-TMP (IN on) + (NP (NP (DT the) + (NN afternoon)) + (PP (IN of) + (NP (XX %pw))))))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 0 0-3 The KMT vice chairman + 1 KMT + coref: IDENT CCTV4_ACROSSCHINA_CMN_20050812_150501-part-011-E1 1-1 KMT + name: ORG 1-1 KMT + 2 vice + 3 chairman + 4 arrived + sense: arrive-v.1 + prop: arrive.01 + v * -> 4:0, arrived + ARG1 * -> 0:1, The KMT vice chairman + ARG4 * -> 5:1, at party headquarters + ARGM-PRP * -> 8:2, *PRO*-1 to meet with KMT Chairman Lien Chan on the afternoon of %pw + 5 at + 6 party + 7 headquarters + 8 *PRO*-1 + 9 to + 10 meet + sense: meet-v.2 + prop: meet.03 + v * -> 10:0, meet + ARG0 * -> 8:0, *PRO*-1 -> 0:1, The KMT vice chairman + ARG1 * -> 11:1, with KMT Chairman Lien Chan + ARGM-TMP * -> 16:1, on the afternoon of %pw + LINK-PCR * -> 8:0, *PRO*-1 -> 0:1, The KMT vice chairman + * -> 0:1, The KMT vice chairman + 11 with + 12 KMT + coref: IDENT CCTV4_ACROSSCHINA_CMN_20050812_150501-part-011-E1 12-12 KMT + coref: IDENT 3 12-15 KMT Chairman Lien Chan + name: ORG 12-12 KMT + 13 Chairman + 14 Lien + ! name: PERSON 14-15 Lien Chan + 15 Chan + 16 on + 17 the + ! name: TIME 17-19 the afternoon of + 18 afternoon + 19 of + 20 %pw + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + After a long talk of over an hour, Wang Jin-pyng expressed his wish not to renew his term as KMT vice chairman. + +Treebanked sentence: +-------------------- + After a long talk of over an hour , Wang Jin - pyng expressed his wish *PRO* not to renew his term as KMT vice chairman + . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1790.858 + stop time: 1795.665 + +Tree: +----- + (TOP (S (PP-TMP (IN After) + (NP (NP (DT a) + (JJ long) + (NN talk)) + (PP (IN of) + (NP (QP (RB over) + (DT an)) + (NN hour))))) + (, ,) + (NP-SBJ (NNP Wang) + (NNP Jin) + (HYPH -) + (NNP pyng)) + (VP (VBD expressed) + (NP (PRP$ his) + (NN wish) + (S (NP-SBJ (-NONE- *PRO*)) + (RB not) + (VP (TO to) + (VP (VB renew) + (NP (NP (PRP$ his) + (NN term)) + (PP (IN as) + (NP (NNP KMT) + (NN vice) + (NN chairman))))))))) + (. .))) + +Leaves: +------- + 0 After + 1 a + 2 long + 3 talk + 4 of + 5 over + name: TIME 5-7 over an hour + 6 an + 7 hour + 8 , + 9 Wang + coref: IDENT 0 9-12 Wang Jin - pyng + name: PERSON 9-12 Wang Jin - pyng + 10 Jin + 11 - + 12 pyng + 13 expressed + sense: express-v.1 + prop: express.01 + v * -> 13:0, expressed + ARGM-TMP * -> 0:1, After a long talk of over an hour + ARG0 * -> 9:1, Wang Jin - pyng + ARG1 * -> 14:1, his wish *PRO* not to renew his term as KMT vice chairman + 14 his + coref: IDENT 0 14-14 his + 15 wish + 16 *PRO* + 17 not + 18 to + 19 renew + sense: renew-v.1 + prop: renew.01 + v * -> 19:0, renew + ARG0 * -> 16:0, *PRO* + ARGM-NEG * -> 17:0, not + ARG1 * -> 20:2, his term as KMT vice chairman + 20 his + coref: IDENT 0 20-20 his + 21 term + 22 as + 23 KMT + coref: IDENT CCTV4_ACROSSCHINA_CMN_20050812_150501-part-011-E1 23-23 KMT + name: ORG 23-23 KMT + 24 vice + 25 chairman + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + He said that he will follow Lien Chan as a lifelong volunteer. + +Treebanked sentence: +-------------------- + He said that he will follow Lien Chan as a lifelong volunteer . + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1795.665 + stop time: 1798.681 + +Tree: +----- + (TOP (S (NP-SBJ (PRP He)) + (VP (VBD said) + (SBAR (IN that) + (S (NP-SBJ (PRP he)) + (VP (MD will) + (VP (VB follow) + (NP (NNP Lien) + (NNP Chan)) + (PP-MNR (IN as) + (NP (DT a) + (JJ lifelong) + (NN volunteer)))))))) + (. .))) + +Leaves: +------- + 0 He + coref: IDENT 0 0-0 He + 1 said + sense: say-v.1 + prop: say.01 + v * -> 1:0, said + ARG0 * -> 0:1, He + ARG1 * -> 2:1, that he will follow Lien Chan as a lifelong volunteer + 2 that + 3 he + coref: IDENT 0 3-3 he + 4 will + 5 follow + sense: follow-v.1 + prop: follow.02 + v * -> 5:0, follow + ARG0 * -> 3:1, he + ARGM-MOD * -> 4:0, will + ARG1 * -> 6:1, Lien Chan + ARGM-PRD * -> 8:1, as a lifelong volunteer + 6 Lien + coref: IDENT 3 6-7 Lien Chan + name: PERSON 6-7 Lien Chan + 7 Chan + 8 as + 9 a + 10 lifelong + 11 volunteer + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + %pw + +Treebanked sentence: +-------------------- + %pw + +Speaker information: +-------------------- + name: Speaker#9 + start time: 1798.681 + stop time: 1799.172 + +Tree: +----- + (TOP (X (XX %pw))) + +Leaves: +------- + 0 %pw + + +======================================================================================================================== +Coreference chains for section 11: +---------------------------------- + + Chain 0 (IDENT) + 210.0-3 The KMT vice chairman + 211.9-12 Wang Jin - pyng + 211.14-14 his + 211.20-20 his + 212.0-0 He + 212.3-3 he + + Chain CCTV4_ACROSSCHINA_CMN_20050812_150501-part-011-E1 (IDENT) + 210.1-1 KMT + 210.12-12 KMT + 211.23-23 KMT + + Chain 3 (IDENT) + 210.12-15 KMT Chairman Lien Chan + 212.6-7 Lien Chan diff --git a/demo/onto_train/cctv_0000.txt b/demo/onto_train/cctv_0000.txt new file mode 100644 index 00000000..56fd3904 --- /dev/null +++ b/demo/onto_train/cctv_0000.txt @@ -0,0 +1 @@ + In the summer of 2005, a picture that people have long been looking forward to started emerging with frequency in various major Hong Kong media. With their unique charm, these well-known cartoon images once again caused Hong Kong to be a focus of worldwide attention. The world's fifth Disney park will soon open to the public here. The most important thing about Disney is that it is a global brand. Well, for several years, although it was still under construction and, er, not yet open, it can be said that many people have viewed Hong Kong with new respect. Then welcome to the official writing ceremony of Hong Kong Disneyland. The construction of Hong Kong Disneyland began two years ago, in 2003. In January of that year, the Hong Kong government turned over to Disney Corporation 200 hectares of land at the foot of Lantau Island that was obtained following the largest land reclamation project in recent years. One. Since then, this area has become a prohibited zone in Hong Kong. As its neighbor on Lantau Island, Hong Kong International Airport had to change its flight routes to make this area a no-fly zone. Mickey Mouse's new home, settling on Chinese land for the first time, has captured worldwide attention. There's only one month left before the opening of Hong Kong Disneyland on September 12. The subway to Disney has already been constructed. At subway stations, passengers will frequently press the station for Disney on ticket machines, trying to purchase tickets to enjoy the park when it first opens. Meanwhile, the Disney subway station is scheduled to open on the same day as the park. For two years, Disney has constantly maintained its mystery. No media have been allowed to enter for photos. We took a taxi along the path of the highway that heads toward Disney, trying to experience this mysterious park from close by. However, before any of the Disney symbols were in sight, the car was stopped by a security guard at the intersection of the road towards Disney. On our way back, the taxi driver gave us an explanation after understanding our intentions. Er, according to what the security guard said, for the time before everything is officially, opened,, no cars can enter unless they have special permission. No one can enter otherwise. Video recording is especially forbidden. Ah, everything is top secret. If pictures are taken without permission, %pw that is to say, it will at all times be pursued by legal action, a big hassle. Although Disney Corporation chose Hong Kong as the venue for the Chinese Disney park, what they are actually most excited about is the mainland China tourist market. Since the implementation of the Individual Visit Scheme between Hong Kong and the mainland, more and more mainland tourists are coming to visit Hong Kong. From the beginning up till now, more than seven million individual tourists, have come to Hong Kong. Well, we now, er, believe more will be coming. At this point, it has been about two years. Also, the current number of 34 cities will be increased. Hong Kong was developed from a fishing harbor one hundred years ago to become today's international metropolis. Here, eastern and western cultures have gathered, and the new and the old coexist. When in Hong Kong, you can wander among skyscrapers, heartily enjoy shopping sprees in well-known stores and malls for goods from various countries, and taste delicious snacks from all over the world at tea shops or at street stands in Mong Kok. You can go to burn incense and make a vow at the Repulse Bay, where all deities gather. You can enjoy the most charming sun-filled sandy beaches in Hong Kong. You can ascend Victoria Peak to get a panoramic view of Victoria Harbor's beautiful scenery. Or hop onto a trolley with over a century of history, and feel the city's blend of the old and the modern in slow motion. After dark, cruise Victoria Harbor at night to enjoy the enchanting evening view. Every corner of Hong Kong is filled with fun. Meanwhile, as various new items are constantly being added, what other kinds of pleasant surprises will the Hong Kong tourism industry bring us? Over the past 28 years, the Ocean Park has basically been a must-see destination for tourists coming to Hong Kong. Watch spectacular performances by dolphins and sea lions at the Ocean Theater, and experience passionate screaming and accelerating heart-beat adventures on amusement rides. Or ride the giant Ferris wheel to get a bird's eye view from high above of the magnificent panorama of Hong Kong Island and the South China Sea. These items, which were the pride of the Ocean Park, have made this place the most popular tourist attraction in Hong Kong for some time. However, since Disney entered Hong Kong, the Ocean Park, sharing the same city as Disney, has felt the pressure of competition. To improve the park's brand, they are planning to invest 5.5 billion in a renovation project starting in 2006. It seems that for the future, we have a scheme, a major renovation plan. That is, the entire park will be divided into seven sections for renovation. Ah, additional, newer, ah, attractions will be available for tourists. It seems that those attractions like the North Pole and the Marine Life Center will also be renovated after several years. Are they going to be different from what they are now? They will be, in ten years. Ah, there will be more animals, and more animal species, different from what there is now. It looks like we will also bring in whales. Er, we will implement this plan as soon as it is approved by the government. Groundbreaking is expected to start next year. Yes. The area of Hong Kong is only one thousand-plus square kilometers. The population is dense. Natural resources are relatively scarce. However, the clever Hong Kong people will utilize all resources they have created for developing the Hong Kong tourism industry. Among these is the Avenue of Stars. Entering Hollywood of the East, here, you can come up close with the stars in your mind. He is my. She is my Goddess, ah. Please stay with us on New World Travel. Hong Kong has always worn the crown of Hollywood of the East. Over the past 100 years of film history, Hong Kong cinema has nurtured many internationally renowned directors, actors, and screenwriters. They have shortened the distance between Hong Kong and the world. Hong Kong movies have even become a window for the world to see Hong Kong, which have made the image of metropolitan Hong Kong more prominent internationally. For this reason, in 2004, on the Waterfront Promenade originally constructed for viewing only the scenery of Hong Kong Island and Victoria Harbor, the Hong Kong Tourism Board also constructed the Avenue of Stars, memorializing Hong Kong's 100-year film history. Here, tourists can learn about Hong Kong's film history, and can come up close with the stars in their mind. Hong Kong is a busy metropolis. Even at dusk, the city's pulse never stops beating. Across from the Avenue of Stars, a special performance is staged every weekend. %pw As our Victoria Harbor is %pw very famous, and, er, our nightscape is already very beautiful, by what means could we enhance the dynamic beauty of our nightscape? So, one idea was to transform Victoria Harbor into a performance stage. Er, each key building is like a performer. It is based on this that music and lights are arranged to reflect each other and perform a unique, er, and fascinating multi-media world-class light show. Let me now introduce to you all the well-known skyscrapers participating in this large-scale light and music show. The PLA Hong Kong Garrison Plaza, Bank of China Tower, at 8:00 every Saturday night, HSBC Main Building. Their performances will be on schedule. Center of the East Central. Ten landmark buildings located on Hong Kong Island reveal themselves one by one, participating in the show in full splendor, presenting a world-class light extravaganza to a musical rhythm. Whenever there is a major event or holiday, fireworks are also added to the light show. Some, er, cities have consulted with us. Uh-huh. Their area of surprise was that those private, er, buildings, that is, the business community, ah, is willing to invest in our overall project. Yes. The answer is that this is a reward to the entire society, not an individual building's reward. Er, of course, after SARS, we felt that all of Hong Kong hopes to be involved, so that the Hong Kong tourism industry will recover, rebound together with other sectors. Hong Kong Wetland Park, which is currently under construction, is also one of the designated new projects of the Hong Kong SAR government for advancing the Hong Kong tourism industry. This is a park intimately connected with nature, being built by the Hong Kong government for its people who live in a city of reinforced concrete. Hong Kong Wetland Park covers an area of 61 hectares, including a 10,000 square meter visitor's center and a 60 hectare outdoor wildlife habitat. In the indoor exhibition hall, tourists can learn about types of wetlands in various parts of the world, and to gain knowledge about wetlands. Outdoors, they can also personally experience wetland ecology., er, from the highest point we can see two different ecological environments. Ha, on that side are many tall buildings, that is, towns with lots of people living there, but behind me is our Wetland Park. Ha, entirely different. Quite primitive, er, a fresh water swamp, er, the Wetland Park Exploration Center. Lastly, farthest away you can see Putian of Shenzhen. Then,, on the bridge is Hong Kong and outside is Shenzhen. You can come into intimate contact with nature in the outdoor wetland environment. Children can get to know different animals and plants, and even some crops that are rarely seen in our daily life. Over here are paddy fields, which is rather unique. Ha, there are aquatic plants inside. Ah, the most special is rice, because %pw many Hong Kong children nowadays have never seen what rice looks like. Look over there. They are going to be ripe soon. The long one over there. Oh. Yes., with ears, ah. Where? Ah, here. Perhaps there will be an introduction so that children will know the names of the crops when they see them., let them get some understanding. Mai Po Marshes adjacent to Wetland Park is a major wildlife habitat within Asia. Each year, over 50,000 migratory birds fly over Hong Kong's skyscrapers and choose to roost for winter here. As a result, three different types of aviaries were built in Hong Kong Wetland Park. These have become the best spots to observe birds. Among common birds, a rather special one is the black-faced spoonbill. It is an endangered bird species throughout the world. Uh-huh. Ah, there are only about 1,500 in the world. Wow. Um, however, each year, about two to three hundred of them come to Hong Kong to spend the winter. Some of them, er, have stayed in Hong Kong Wetland Park. Uh-huh. So, our park's logo is unique, featuring this black-faced spoonbill, which hopefully can draw people's attention. Uh-huh. Wetland Park workers are now in the middle of intensive work. They will complete the park's entire construction by the beginning of 2006, to be able to participate in the 2006 Discover Hong Kong Year campaign. Ah, we have established the year 2006 as Discover Hong Kong Year. Why is that? Because, as everyone knows, our Disneyland will open in September of this year. In addition, we will have Ngong Ping 360, that is, the cable car, er, to the Giant Buddha. They add to what we already have, like the Avenue of Stars, which is also very famous. Moreover, er, we are including our software. Hong Kong's software is very well known. Like what's used in our Symphony of Lights. We hope to use, er, a variety of hardware and software to package this entire 2006 Discover Hong Kong Year. Without planning it in advance, they chose to settle here. A dream that has been anticipated for more than twenty years will soon come true here. Because your line connects us with two-- In recent years, Hong Kong's tourist attractions have gradually moved from Hong Kong Island to Kowloon and the New Territory. Two out of the four new attractions participating in the 2006 Discover Hong Kong Year are located on Lantau Island of the New Territory. For this reason, Lantau Island has become a new Hong Kong tourism popular spot. The earliest to settle here was this world's largest outdoor seated bronze Buddha. In Chinese Buddhism, there are five directions-east, west, south, north, and center-and five Buddhas. Therefore, Hong Kong's Tian Tan Giant Buddha at the most southern tip of China, together with Lingshan Giant Buddha in the east, Leshan Giant Buddha in the west, Yungang Giant Buddha in the north, and Longmen Giant Buddha in the Central Plains, exist as the representative Buddhas for each of the five directions of China. As a result, this place has become holy land in the hearts of male and female devotees. However, to common tourists, more of what this place brings them is wonder and awe. Since this giant bronze Buddha settled on Lantau Island, the world renowned Hong Kong International Airport at Chek Lap Kok and Disneyland have also been constructed here in succession. The important status of Lantau Island is increasingly apparent. No, it was totally inaccessible in the past. In the near future, construction will also begin on a cross-sea bridge connecting Hong Kong, Zhuhai, and Macao. In 1992-- Could n't go in summer-- So, after their return, Macao, and Hong Kong, the two special administrative regions, are basically still using ships and helicopters to stay connected. It's extremely troublesome to get there via land. One has to go up to Shenzhen, Dongguan, then go through Panyu, keep going up, to Zhongshan, and certainly go to Zhuhai, then pass through Zhuhai to get to Macao. For a Hong Kong person choosing to go there via land, it's extremely inconvenient. A full twenty years ago, Hopewell Holdings Group Chairman Wu Ying-sheung, a well-known construction tycoon, boldly made a cross-sea bridge proposal. With this bridge, the distance would be very small, only a little over one kilometer. However, due to various reasons, bridge construction was put off. This is what we have seen since 1999. Anticipated for 20 years, today this dream is finally coming true. Well, originally the construction of the new-- With this new Hong Kong-Zhuhai-Macao bridge that basically leads to all three places, Hong Kong, Macao, and Zhuhai, basically, at the start of the bridge, you can get on the separate road to the place you want to go. Macao is this way, and Zhuhai is this way. From the perspective of either Hong Kong, Macao, or Zhuhai, our concept is a tourism zone. Er, %pw Zhuhai for sightseeing tours, Macao for entertainment, and we have Disneyland and, other attractions in Hong Kong. Each place has different attractions of its own. So, with this bridge, when some old friends, friends from mainland China or from foreign countries come to our place, it seems they can basically enjoy a complete tour with great convenience in several days, before, ha, going home. Once the Zhuhai-Hong Kong-Macao bridge is built, it will no longer be a dream of tourists to enjoy gourmet food in Macao before having fun at Disneyland just an hour later. Promotion of Hong Kong Disneyland has long since begun. However, even though it has entered the last countdown period before its final opening, this wonderland is still unwilling to take off its mysterious veil. Ah, currently it has been decided that Disney will open on September 12. There's also what we call soft opening. Ah, they are now rehearsing. Ah,, ah, some groups, they are rehearsing their service, well, hoping that they will become used to the service, be familiar with it, when our tourists come in September. Well, I am very confident, that when our tourists come to Disneyland, they will certainly return home very satisfied. The Wonder Tour will start from Hong Kong. This dynamic metropolis never ceases its movement. It continues to explore; it continues to open new worlds. Each day, there is always something new for people to experience and to love about this city. Hong Kong is a world famous shopping paradise. What determined the position of Hong Kong as a shopping paradise? Is it because of abundant merchandise or high quality at low prices? Is it a paradise for the rich or the general public? After all, what are the joyful memories from inside paradise? We respectfully invite you to watch Hong Kong: a Shopping Paradise in this edition of Across China. Hello, everyone. This is the Cross Strait program on CCTV International Channel. Welcome to our program. First let's focus on the main contents of today's program. Wang Jin-pyng says that he has decided not to continue serving as KMT vice chairman. Candidates for the giant pandas to be presented to Taiwan as gifts from the mainland may increase. Taiwan's military uses Taipei Aerospace Exhibition as an opportunity for pressing arms procurement. Recently, the 2005 Ningxia Investment and Trade Fair and Ningxia-Taiwan Economic and Trade Cooperation Seminar were held in the city of Yinchuan. More than three hundred Taiwanese businesspeople gathered in this land known as" lush southern-type fields north of the Great Wall," beginning their tour and inspection journey. Well, what is the unique charm in Ningxia of the western region that has attracted the attention of so many Taiwanese businesspeople? Please watch this edition of Hot Topic Analysis for a detailed report. The KMT vice chairman arrived at party headquarters to meet with KMT Chairman Lien Chan on the afternoon of %pw. After a long talk of over an hour, Wang Jin-pyng expressed his wish not to renew his term as KMT vice chairman. He said that he will follow Lien Chan as a lifelong volunteer. %pw \ No newline at end of file diff --git a/demo/onto_train/ectb_1003.in.conllu b/demo/onto_train/ectb_1003.in.conllu new file mode 100644 index 00000000..7b35bd6e --- /dev/null +++ b/demo/onto_train/ectb_1003.in.conllu @@ -0,0 +1,5860 @@ +# newdoc +# newpar +# sent_id = 1 +# text = A Second Spring for Textiles in Taiwan?-LRB-Laura Li/photos by Pu Hua-chih/tr. by Robert Taylor-RRB- Early in December the China Textile In-stitute, located at Tucheng in Taipei County, celebrated its 40th anniversary with a dynamic multimedia show. +1 A a DET DT Definite=Ind|PronType=Art 3 det _ SpacesBefore=\s +2 Second second ADJ JJ Degree=Pos|NumType=Ord 3 amod _ _ +3 Spring spring NOUN NN Number=Sing 38 nsubj _ _ +4 for for ADP IN _ 5 case _ _ +5 Textiles Textiles NOUN NNS Number=Plur 3 nmod _ _ +6 in in ADP IN _ 9 case _ _ +7 Taiwan Taiwan PROPN NNP Number=Sing 8 compound _ SpaceAfter=No +8 ?-LRB-Laura ?-LRB-Laura PROPN NNP Number=Sing 9 compound _ _ +9 Li/photos Li/photos PROPN NNPS Number=Plur 5 nmod _ _ +10 by by ADP IN _ 11 case _ _ +11 Pu Pu PROPN NNP Number=Sing 3 nmod _ _ +12 Hua-chih Hua-chih PROPN NNP Number=Sing 11 flat _ SpaceAfter=No +13 / / PUNCT , _ 14 cc _ SpaceAfter=No +14 tr. tr. NOUN NN Number=Sing 11 conj _ _ +15 by by ADP IN _ 16 case _ _ +16 Robert Robert PROPN NNP Number=Sing 3 nmod _ _ +17 Taylor Taylor PROPN NNP Number=Sing 16 flat _ SpaceAfter=No +18 - - PUNCT HYPH _ 21 punct _ SpaceAfter=No +19 RRB RRB PROPN NNP Number=Sing 21 compound _ SpaceAfter=No +20 - - PUNCT HYPH _ 21 punct _ _ +21 Early Early PROPN NNP Number=Sing 16 flat _ _ +22 in in ADP IN _ 23 case _ _ +23 December December PROPN NNP Number=Sing 3 nmod _ _ +24 the the DET DT Definite=Def|PronType=Art 26 det _ _ +25 China China PROPN NNP Number=Sing 26 compound _ _ +26 Textile Textile PROPN NNP Number=Sing 23 flat _ _ +27 In in ADP IN _ 29 case _ SpaceAfter=No +28 - - PUNCT HYPH _ 29 punct _ SpaceAfter=No +29 stitute stitute NOUN NN Number=Sing 31 obl _ SpaceAfter=No +30 , , PUNCT , _ 31 punct _ _ +31 located locate VERB VBN Tense=Past|VerbForm=Part 3 acl _ _ +32 at at ADP IN _ 33 case _ _ +33 Tucheng Tucheng PROPN NNP Number=Sing 31 obl _ _ +34 in in ADP IN _ 36 case _ _ +35 Taipei Taipei PROPN NNP Number=Sing 36 compound _ _ +36 County County PROPN NNP Number=Sing 31 obl _ SpaceAfter=No +37 , , PUNCT , _ 38 punct _ _ +38 celebrated celebrate VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +39 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 41 nmod:poss _ _ +40 40th 40th ADJ JJ Degree=Pos|NumType=Ord 41 amod _ _ +41 anniversary anniversary NOUN NN Number=Sing 38 obj _ _ +42 with with ADP IN _ 46 case _ _ +43 a a DET DT Definite=Ind|PronType=Art 46 det _ _ +44 dynamic dynamic ADJ JJ Degree=Pos 46 amod _ _ +45 multimedia multimedia NOUN NN Number=Sing 46 compound _ _ +46 show show NOUN NN Number=Sing 38 obl _ SpaceAfter=No +47 . . PUNCT . _ 38 punct _ _ + +# sent_id = 2 +# text = The CTI's 40-year history has borne witness to the rise and decline of Taiwan's textile industry. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 CTI CTI PROPN NNP Number=Sing 7 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 40 40 NUM CD NumType=Card 6 nummod _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 year year NOUN NN Number=Sing 7 compound _ _ +7 history history NOUN NN Number=Sing 8 nsubj _ _ +8 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +9 borne borne ADJ JJ Degree=Pos 10 amod _ _ +10 witness witness NOUN NN Number=Sing 8 obj _ _ +11 to to ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 rise rise NOUN NN Number=Sing 10 nmod _ _ +14 and and CCONJ CC _ 15 cc _ _ +15 decline decline NOUN NN Number=Sing 13 conj _ _ +16 of of ADP IN _ 20 case _ _ +17 Taiwan Taiwan PROPN NNP Number=Sing 20 nmod:poss _ SpaceAfter=No +18 's 's PART POS _ 17 case _ _ +19 textile textile NOUN NN Number=Sing 20 compound _ _ +20 industry industry NOUN NN Number=Sing 15 nmod _ SpaceAfter=No +21 . . PUNCT . _ 8 punct _ _ + +# sent_id = 3 +# text = Forty years ago, Taiwan was just crossing the threshold of industrialization. +1 Forty Forty NUM CD NumType=Card 2 nummod _ _ +2 years year NOUN NNS Number=Plur 3 obl:npmod _ _ +3 ago ago ADV RB _ 8 advmod _ SpaceAfter=No +4 , , PUNCT , _ 8 punct _ _ +5 Taiwan Taiwan PROPN NNP Number=Sing 8 nsubj _ _ +6 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 8 aux _ _ +7 just just ADV RB _ 8 advmod _ _ +8 crossing cross VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 threshold threshold NOUN NN Number=Sing 8 obj _ _ +11 of of ADP IN _ 12 case _ _ +12 industrialization industrialization NOUN NN Number=Sing 10 nmod _ SpaceAfter=No +13 . . PUNCT . _ 8 punct _ _ + +# sent_id = 4 +# text = The textile industry was the darling of the nation, just like the electronics industry today. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 textile textile NOUN NN Number=Sing 3 compound _ _ +3 industry industry NOUN NN Number=Sing 6 nsubj _ _ +4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 darling darling NOUN NN Number=Sing 0 root _ _ +7 of of ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 nation nation NOUN NN Number=Sing 6 nmod _ SpaceAfter=No +10 , , PUNCT , _ 6 punct _ _ +11 just just ADV RB _ 15 advmod _ _ +12 like like ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 electronics electronics NOUN NNS Number=Plur 15 compound _ _ +15 industry industry NOUN NN Number=Sing 16 nmod _ _ +16 today today NOUN NN Number=Sing 6 appos _ SpaceAfter=No +17 . . PUNCT . _ 6 punct _ _ + +# sent_id = 5 +# text = Although it has lost its former kudos, the textile industry is still an indispensable part of Taiwan's industrial landscape. +1 Although although SCONJ IN _ 4 mark _ _ +2 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 aux _ _ +4 lost lose VERB VBN Tense=Past|VerbForm=Part 16 advcl _ _ +5 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 7 nmod:poss _ _ +6 former former ADJ JJ Degree=Pos 7 amod _ _ +7 kudos kudo NOUN NNS Number=Plur 4 obj _ SpaceAfter=No +8 , , PUNCT , _ 16 punct _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 textile textile NOUN NN Number=Sing 11 compound _ _ +11 industry industry NOUN NN Number=Sing 16 nsubj _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ _ +13 still still ADV RB _ 16 advmod _ _ +14 an a DET DT Definite=Ind|PronType=Art 16 det _ _ +15 indispensable indispensable ADJ JJ Degree=Pos 16 amod _ _ +16 part part NOUN NN Number=Sing 0 root _ _ +17 of of ADP IN _ 21 case _ _ +18 Taiwan Taiwan PROPN NNP Number=Sing 21 nmod:poss _ SpaceAfter=No +19 's 's PART POS _ 18 case _ _ +20 industrial industrial ADJ JJ Degree=Pos 21 amod _ _ +21 landscape landscape NOUN NN Number=Sing 16 nmod _ SpaceAfter=No +22 . . PUNCT . _ 16 punct _ _ + +# sent_id = 6 +# text = For the last decade, the CTI has been working hand in hand with the industry, quietly sowing the seeds of research and development in many places. +1 For for ADP IN _ 4 case _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 last last ADJ JJ Degree=Pos 4 amod _ _ +4 decade decade NOUN NN Number=Sing 10 obl _ SpaceAfter=No +5 , , PUNCT , _ 10 punct _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 CTI Cto NOUN NN Number=Sing 10 nsubj _ _ +8 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 aux _ _ +9 been be AUX VBN Tense=Past|VerbForm=Part 10 aux _ _ +10 working work VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +11 hand hand NOUN NN Number=Sing 10 obl:tmod _ _ +12 in in ADP IN _ 13 case _ _ +13 hand hand NOUN NN Number=Sing 10 obl _ _ +14 with with ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 industry industry NOUN NN Number=Sing 10 obl _ SpaceAfter=No +17 , , PUNCT , _ 10 punct _ _ +18 quietly quietly ADV RB _ 19 advmod _ _ +19 sowing sow VERB VBG VerbForm=Ger 10 advcl _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 seeds seed NOUN NNS Number=Plur 19 obj _ _ +22 of of ADP IN _ 23 case _ _ +23 research research NOUN NN Number=Sing 21 nmod _ _ +24 and and CCONJ CC _ 25 cc _ _ +25 development development NOUN NN Number=Sing 23 conj _ _ +26 in in ADP IN _ 28 case _ _ +27 many many ADJ JJ Degree=Pos 28 amod _ _ +28 places place NOUN NNS Number=Plur 10 obl _ SpaceAfter=No +29 . . PUNCT . _ 10 punct _ _ + +# sent_id = 7 +# text = Can those seeds germinate to create a second spring for Taiwan's textile industry? +1 Can can AUX MD VerbForm=Fin 4 aux _ _ +2 those those DET DT Number=Plur|PronType=Dem 3 det _ _ +3 seeds seed NOUN NNS Number=Plur 4 nsubj _ _ +4 germinate germinate VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +5 to to PART TO _ 6 mark _ _ +6 create create VERB VB VerbForm=Inf 4 xcomp _ _ +7 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +8 second second ADJ JJ Degree=Pos|NumType=Ord 9 amod _ _ +9 spring spring NOUN NN Number=Sing 6 obj _ _ +10 for for ADP IN _ 14 case _ _ +11 Taiwan Taiwan PROPN NNP Number=Sing 14 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 textile textile NOUN NN Number=Sing 14 compound _ _ +14 industry industry NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +15 ? ? PUNCT . _ 4 punct _ _ + +# sent_id = 8 +# text = As the latest bout of winter weather hits Taiwan, do you want to go up Mt. Hehuan to see the snow? +1 As as SCONJ IN _ 13 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 latest latest ADJ JJS Degree=Sup 4 amod _ _ +4 bout bout NOUN NN Number=Sing 13 nsubj _ _ +5 of of ADP IN _ 9 case _ _ +6 winter winter NOUN NN Number=Sing 7 compound _ _ +7 weather weather NOUN NN Number=Sing 9 compound _ _ +8 hits hit NOUN NNS Number=Plur 9 compound _ _ +9 Taiwan Taiwan PROPN NNP Number=Sing 4 nmod _ SpaceAfter=No +10 , , PUNCT , _ 13 punct _ _ +11 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 13 aux _ _ +12 you you PRON PRP Case=Nom|Person=2|PronType=Prs 13 nsubj _ _ +13 want want VERB VB VerbForm=Inf 19 advcl _ _ +14 to to PART TO _ 15 mark _ _ +15 go go VERB VB VerbForm=Inf 13 xcomp _ _ +16 up up ADP IN _ 17 case _ _ +17 Mt mt PROPN NNP Number=Sing 15 obl _ SpaceAfter=No +18 . . PUNCT . _ 19 punct _ _ +19 Hehuan Hehuan PROPN NNP Number=Sing 0 root _ _ +20 to to PART TO _ 21 mark _ _ +21 see see VERB VB VerbForm=Inf 19 advcl _ _ +22 the the DET DT Definite=Def|PronType=Art 23 det _ _ +23 snow snow NOUN NN Number=Sing 21 obj _ SpaceAfter=No +24 ? ? PUNCT . _ 19 punct _ _ + +# sent_id = 9 +# text = You could put on a jacket containing highly insulating melt-spun ceramic fibers. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +2 could could AUX MD VerbForm=Fin 3 aux _ _ +3 put put VERB VB VerbForm=Inf 0 root _ _ +4 on on ADP IN _ 6 case _ _ +5 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +6 jacket jacket NOUN NN Number=Sing 3 obl _ _ +7 containing contain VERB VBG VerbForm=Ger 6 acl _ _ +8 highly highly ADV RB _ 9 advmod _ _ +9 insulating insulating VERB VBG VerbForm=Ger 14 amod _ _ +10 melt melt NOUN NN Number=Sing 12 compound _ SpaceAfter=No +11 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +12 spun spun NOUN NN Number=Sing 14 compound _ _ +13 ceramic ceramic ADJ JJ Degree=Pos 14 amod _ _ +14 fibers fiber NOUN NNS Number=Plur 7 obj _ SpaceAfter=No +15 . . PUNCT . _ 3 punct _ _ + +# sent_id = 10 +# text = When the wind sends a fine driving rain slanting across the water, are you still unwilling to forgo the pleasure of sea angling? +1 When when ADV WRB PronType=Int 4 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 wind wind NOUN NN Number=Sing 4 nsubj _ _ +4 sends send VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 advcl _ _ +5 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +6 fine fine ADJ JJ Degree=Pos 8 amod _ _ +7 driving driving NOUN NN Number=Sing 8 compound _ _ +8 rain rain NOUN NN Number=Sing 4 obj _ _ +9 slanting slante VERB VBG VerbForm=Ger 4 advcl _ _ +10 across across ADP IN _ 12 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 water water NOUN NN Number=Sing 9 obl _ SpaceAfter=No +13 , , PUNCT , _ 17 punct _ _ +14 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 17 cop _ _ +15 you you PRON PRP Case=Nom|Person=2|PronType=Prs 17 nsubj _ _ +16 still still ADV RB _ 17 advmod _ _ +17 unwilling unwill ADJ JJ Degree=Pos 0 root _ _ +18 to to PART TO _ 19 mark _ _ +19 forgo forgo VERB VB VerbForm=Inf 17 csubj _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 pleasure pleasure NOUN NN Number=Sing 19 obj _ _ +22 of of ADP IN _ 24 case _ _ +23 sea sea NOUN NN Number=Sing 24 compound _ _ +24 angling angling NOUN NN Number=Sing 21 nmod _ SpaceAfter=No +25 ? ? PUNCT . _ 17 punct _ _ + +# sent_id = 11 +# text = Why not wear some micropore breathable rainwear, with an outer layer which is completely waterproof, but an inner layer which is dry and comfortable on the skin? +1 Why why ADV WRB PronType=Int 3 advmod _ _ +2 not not PART RB _ 3 advmod _ _ +3 wear wear VERB VB VerbForm=Inf 0 root _ _ +4 some some DET DT _ 7 det _ _ +5 micropore micropore NOUN NN Number=Sing 7 compound _ _ +6 breathable breathable ADJ JJ Degree=Pos 7 amod _ _ +7 rainwear rainwear NOUN NN Number=Sing 3 obj _ SpaceAfter=No +8 , , PUNCT , _ 3 punct _ _ +9 with with ADP IN _ 12 case _ _ +10 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 outer outer ADJ JJ Degree=Pos 12 amod _ _ +12 layer layer NOUN NN Number=Sing 3 obl _ _ +13 which which PRON WDT PronType=Rel 16 nsubj _ _ +14 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ _ +15 completely completely ADV RB _ 16 advmod _ _ +16 waterproof waterproof ADJ JJ Degree=Pos 12 acl:relcl _ SpaceAfter=No +17 , , PUNCT , _ 21 punct _ _ +18 but but CCONJ CC _ 21 cc _ _ +19 an a DET DT Definite=Ind|PronType=Art 21 det _ _ +20 inner inner ADJ JJ Degree=Pos 21 amod _ _ +21 layer layer NOUN NN Number=Sing 3 conj _ _ +22 which which PRON WDT PronType=Rel 24 nsubj _ _ +23 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 24 cop _ _ +24 dry dry ADJ JJ Degree=Pos 21 acl:relcl _ _ +25 and and CCONJ CC _ 26 cc _ _ +26 comfortable comfortable ADJ JJ Degree=Pos 24 conj _ _ +27 on on ADP IN _ 29 case _ _ +28 the the DET DT Definite=Def|PronType=Art 29 det _ _ +29 skin skin NOUN NN Number=Sing 24 obl _ SpaceAfter=No +30 ? ? PUNCT . _ 3 punct _ _ + +# sent_id = 12 +# text = Tencel, made from wood cellulose, has given the lie to the notion that man-made fibers never degrade, and is set to become one of the most important fibers of the coming environmental century; and the shrimp and crab shells which were once tossed away are now being processed to extract chitin, which when used to treat clothing can inhibit bacteria and mold and prevent unwanted odors, and which can also be used as a dressing for burns which both reduces inflammation and encourages new tissue growth.... +1 Tencel Tencel PROPN NNP Number=Sing 3 nsubj _ SpaceAfter=No +2 , , PUNCT , _ 3 punct _ _ +3 made make VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 from from ADP IN _ 6 case _ _ +5 wood wood NOUN NN Number=Sing 6 compound _ _ +6 cellulose cellulose NOUN NN Number=Sing 3 obl _ SpaceAfter=No +7 , , PUNCT , _ 9 punct _ _ +8 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 aux _ _ +9 given give VERB VBN Tense=Past|VerbForm=Part 3 ccomp _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 lie lie NOUN NN Number=Sing 9 obj _ _ +12 to to ADP IN _ 14 case _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 notion notion NOUN NN Number=Sing 9 obl _ _ +15 that that DET DT Number=Sing|PronType=Dem 16 det _ _ +16 man man NOUN NN Number=Sing 18 compound _ SpaceAfter=No +17 -made -made ADJ JJ Degree=Pos 18 amod _ _ +18 fibers fiber NOUN NNS Number=Plur 20 nsubj _ _ +19 never never ADV RB _ 20 advmod _ _ +20 degrade degrade VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 acl:relcl _ SpaceAfter=No +21 , , PUNCT , _ 24 punct _ _ +22 and and CCONJ CC _ 24 cc _ _ +23 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 24 cop _ _ +24 set set ADJ JJ Degree=Pos 3 conj _ _ +25 to to PART TO _ 26 mark _ _ +26 become become VERB VB VerbForm=Inf 24 xcomp _ _ +27 one one NUM CD NumType=Card 26 obj _ _ +28 of of ADP IN _ 32 case _ _ +29 the the DET DT Definite=Def|PronType=Art 32 det _ _ +30 most most ADV RBS _ 31 advmod _ _ +31 important important ADJ JJ Degree=Pos 32 amod _ _ +32 fibers fiber NOUN NNS Number=Plur 27 nmod _ _ +33 of of ADP IN _ 37 case _ _ +34 the the DET DT Definite=Def|PronType=Art 37 det _ _ +35 coming come VERB VBG VerbForm=Ger 37 amod _ _ +36 environmental environmental ADJ JJ Degree=Pos 37 amod _ _ +37 century century NOUN NN Number=Sing 32 nmod _ SpaceAfter=No +38 ; ; PUNCT , _ 3 punct _ _ +39 and and CCONJ CC _ 53 cc _ _ +40 the the DET DT Definite=Def|PronType=Art 41 det _ _ +41 shrimp shrimp NOUN NN Number=Sing 53 nsubj:pass _ _ +42 and and CCONJ CC _ 44 cc _ _ +43 crab crab NOUN NN Number=Sing 44 compound _ _ +44 shells shells NOUN NNS Number=Plur 41 conj _ _ +45 which which PRON WDT PronType=Rel 48 nsubj:pass _ _ +46 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 48 aux:pass _ _ +47 once once ADV RB NumType=Mult 48 advmod _ _ +48 tossed toss VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 41 acl:relcl _ _ +49 away away ADV RB _ 48 advmod _ _ +50 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 53 aux _ _ +51 now now ADV RB _ 53 advmod _ _ +52 being be AUX VBG VerbForm=Ger 53 aux:pass _ _ +53 processed process VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 3 conj _ _ +54 to to PART TO _ 55 mark _ _ +55 extract extract VERB VB VerbForm=Inf 53 xcomp _ _ +56 chitin chitin NOUN NN Number=Sing 55 obj _ SpaceAfter=No +57 , , PUNCT , _ 56 punct _ _ +58 which which PRON WDT PronType=Rel 65 nsubj _ _ +59 when when ADV WRB PronType=Int 60 mark _ _ +60 used use VERB VBN Tense=Past|VerbForm=Part 65 csubj _ _ +61 to to PART TO _ 62 mark _ _ +62 treat treat VERB VB VerbForm=Inf 60 xcomp _ _ +63 clothing clothing NOUN NN Number=Sing 62 obj _ _ +64 can can AUX MD VerbForm=Fin 65 aux _ _ +65 inhibit inhibit VERB VB VerbForm=Inf 56 acl:relcl _ _ +66 bacteria bacteria NOUN NN Number=Sing 65 obj _ _ +67 and and CCONJ CC _ 68 cc _ _ +68 mold mold NOUN NN Number=Sing 66 conj _ _ +69 and and CCONJ CC _ 70 cc _ _ +70 prevent prevent VERB VB VerbForm=Inf 65 conj _ _ +71 unwanted unwanted ADJ JJ Degree=Pos 72 amod _ _ +72 odors odor NOUN NNS Number=Plur 70 obj _ SpaceAfter=No +73 , , PUNCT , _ 79 punct _ _ +74 and and CCONJ CC _ 79 cc _ _ +75 which which PRON WDT PronType=Int 79 nsubj:pass _ _ +76 can can AUX MD VerbForm=Fin 79 aux _ _ +77 also also ADV RB _ 79 advmod _ _ +78 be be AUX VB VerbForm=Inf 79 aux:pass _ _ +79 used use VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 3 conj _ _ +80 as as ADP IN _ 82 case _ _ +81 a a DET DT Definite=Ind|PronType=Art 82 det _ _ +82 dressing dressing NOUN NN Number=Sing 79 obl _ _ +83 for for ADP IN _ 84 case _ _ +84 burns burn NOUN NNS Number=Plur 82 nmod _ _ +85 which which PRON WDT PronType=Rel 87 nsubj _ _ +86 both both DET DT _ 87 nsubj _ _ +87 reduces reduce VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 84 acl:relcl _ _ +88 inflammation inflammation NOUN NN Number=Sing 87 obj _ _ +89 and and CCONJ CC _ 90 cc _ _ +90 encourages encourage VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 87 conj _ _ +91 new new ADJ JJ Degree=Pos 93 amod _ _ +92 tissue tissue NOUN NN Number=Sing 93 compound _ _ +93 growth growth NOUN NN Number=Sing 90 obj _ SpaceAfter=No +94 .... .... PUNCT . _ 3 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 13 +# text = What sunset industry? +1 What what DET WDT PronType=Int 3 det _ _ +2 sunset sunset NOUN NN Number=Sing 3 compound _ _ +3 industry industry NOUN NN Number=Sing 0 root _ SpaceAfter=No +4 ? ? PUNCT . _ 3 punct _ _ + +# sent_id = 14 +# text = Ceramic fibers, stainless steel, shrimp shells-at first glance there seems to be no connection with spinning and weaving. +1 Ceramic ceramic ADJ JJ Degree=Pos 2 amod _ _ +2 fibers fiber NOUN NNS Number=Plur 14 nsubj _ SpaceAfter=No +3 , , PUNCT , _ 5 punct _ _ +4 stainless stainless ADJ JJ Degree=Pos 5 amod _ _ +5 steel steel NOUN NN Number=Sing 2 conj _ SpaceAfter=No +6 , , PUNCT , _ 2 punct _ _ +7 shrimp shrimp NOUN NN Number=Sing 8 compound _ _ +8 shells shell NOUN NNS Number=Plur 2 appos _ SpaceAfter=No +9 - - PUNCT , _ 2 punct _ SpaceAfter=No +10 at at ADP IN _ 12 case _ _ +11 first first ADJ JJ Degree=Pos|NumType=Ord 12 amod _ _ +12 glance glance NOUN NN Number=Sing 2 nmod _ _ +13 there there ADV RB PronType=Dem 2 advmod _ _ +14 seems seem VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +15 to to PART TO _ 18 mark _ _ +16 be be AUX VB VerbForm=Inf 18 cop _ _ +17 no no DET DT _ 18 det _ _ +18 connection connection NOUN NN Number=Sing 14 xcomp _ _ +19 with with SCONJ IN _ 20 mark _ _ +20 spinning spinning VERB VBG VerbForm=Ger 18 acl _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 weaving weave VERB VBG VerbForm=Ger 20 conj _ SpaceAfter=No +23 . . PUNCT . _ 14 punct _ _ + +# sent_id = 15 +# text = But in fact these are among the latest products and trends quietly taking shape in the textile industry. +1 But but CCONJ CC _ 9 cc _ _ +2 in in ADP IN _ 3 case _ _ +3 fact fact NOUN NN Number=Sing 9 obl _ _ +4 these these PRON DT Number=Plur|PronType=Dem 9 nsubj _ _ +5 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 cop _ _ +6 among among ADP IN _ 9 case _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 latest latest ADJ JJS Degree=Sup 9 amod _ _ +9 products product NOUN NNS Number=Plur 0 root _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 trends trend NOUN NNS Number=Plur 9 conj _ _ +12 quietly quietly ADV RB _ 13 advmod _ _ +13 taking take VERB VBG VerbForm=Ger 9 acl _ _ +14 shape shape NOUN NN Number=Sing 13 obj _ _ +15 in in ADP IN _ 18 case _ _ +16 the the DET DT Definite=Def|PronType=Art 18 det _ _ +17 textile textile NOUN NN Number=Sing 18 compound _ _ +18 industry industry NOUN NN Number=Sing 13 obl _ SpaceAfter=No +19 . . PUNCT . _ 9 punct _ _ + +# sent_id = 16 +# text = With the rise of new industries such as electronics, aerospace and biotechnology, the areas of application for textile products have expanded ever wider, from being simply coverings for the human body to finding their way up into space and down into the earth." +1 With with SCONJ IN _ 23 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 rise rise NOUN NN Number=Sing 23 nsubj _ _ +4 of of ADP IN _ 6 case _ _ +5 new new ADJ JJ Degree=Pos 6 amod _ _ +6 industries industries NOUN NNS Number=Plur 3 nmod _ _ +7 such such ADJ JJ Degree=Pos 9 case _ _ +8 as as ADP IN _ 7 fixed _ _ +9 electronics electronics NOUN NNS Number=Plur 3 nmod _ SpaceAfter=No +10 , , PUNCT , _ 11 punct _ _ +11 aerospace aerospace NOUN NN Number=Sing 9 conj _ _ +12 and and CCONJ CC _ 13 cc _ _ +13 biotechnology biotechnology NOUN NN Number=Sing 9 conj _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 areas area NOUN NNS Number=Plur 9 conj _ _ +17 of of ADP IN _ 18 case _ _ +18 application application NOUN NN Number=Sing 16 nmod _ _ +19 for for ADP IN _ 21 case _ _ +20 textile textile NOUN NN Number=Sing 21 compound _ _ +21 products product NOUN NNS Number=Plur 18 nmod _ _ +22 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 23 aux _ _ +23 expanded expand VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +24 ever ever ADV RB _ 23 advmod _ _ +25 wider wider ADV RBR _ 23 advmod _ SpaceAfter=No +26 , , PUNCT , _ 23 punct _ _ +27 from from SCONJ IN _ 30 mark _ _ +28 being be AUX VBG VerbForm=Ger 30 cop _ _ +29 simply simply ADV RB _ 30 advmod _ _ +30 coverings coverings NOUN NNS Number=Plur 23 advcl _ _ +31 for for ADP IN _ 34 case _ _ +32 the the DET DT Definite=Def|PronType=Art 34 det _ _ +33 human human ADJ JJ Degree=Pos 34 amod _ _ +34 body body NOUN NN Number=Sing 30 nmod _ _ +35 to to SCONJ IN _ 36 mark _ _ +36 finding finde VERB VBG VerbForm=Ger 34 acl _ _ +37 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 38 nmod:poss _ _ +38 way way NOUN NN Number=Sing 36 obj _ _ +39 up up ADV RB _ 41 advmod _ _ +40 into into ADP IN _ 41 case _ _ +41 space space NOUN NN Number=Sing 36 obl _ _ +42 and and CCONJ CC _ 43 cc _ _ +43 down down ADV RB _ 41 conj _ _ +44 into into ADP IN _ 46 case _ _ +45 the the DET DT Definite=Def|PronType=Art 46 det _ _ +46 earth earth NOUN NN Number=Sing 43 obl _ SpaceAfter=No +47 . . PUNCT . _ 23 punct _ SpaceAfter=No +48 " " PUNCT '' _ 23 punct _ _ + +# sent_id = 17 +# text = There are only sunset products, not sunset industries." +1 There there PRON EX _ 2 expl _ _ +2 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +3 only only ADV RB _ 5 advmod _ _ +4 sunset sunset ADJ JJ Degree=Pos 5 amod _ _ +5 products product NOUN NNS Number=Plur 2 nsubj _ SpaceAfter=No +6 , , PUNCT , _ 2 punct _ _ +7 not not PART RB _ 9 advmod _ _ +8 sunset sunset VERB VBN Tense=Past|VerbForm=Part 9 amod _ _ +9 industries industry NOUN NNS Number=Plur 2 appos _ SpaceAfter=No +10 . . PUNCT . _ 2 punct _ SpaceAfter=No +11 " " PUNCT '' _ 2 punct _ _ + +# sent_id = 18 +# text = These words from competitiveness guru Michael Porter hit the nail on the head when it comes to Taiwan's textile industry's current efforts to transform itself into a high-tech, capital-and information-intensive sector." +1 These these DET DT Number=Plur|PronType=Dem 2 det _ _ +2 words word NOUN NNS Number=Plur 8 nsubj _ _ +3 from from ADP IN _ 6 case _ _ +4 competitiveness competitiveness NOUN NN Number=Sing 5 compound _ _ +5 guru guru NOUN NN Number=Sing 6 compound _ _ +6 Michael Michael PROPN NNP Number=Sing 2 nmod _ _ +7 Porter Porter PROPN NNP Number=Sing 6 flat _ _ +8 hit hit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 nail nail NOUN NN Number=Sing 8 obj _ _ +11 on on ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 head head NOUN NN Number=Sing 8 obl _ _ +14 when when ADV WRB PronType=Int 16 mark _ _ +15 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 nsubj _ _ +16 comes come VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 advcl _ _ +17 to to ADP IN _ 24 case _ _ +18 Taiwan Taiwan PROPN NNP Number=Sing 21 nmod:poss _ SpaceAfter=No +19 's 's PART POS _ 18 case _ _ +20 textile textile NOUN NN Number=Sing 21 compound _ _ +21 industry industry NOUN NN Number=Sing 24 nmod:poss _ SpaceAfter=No +22 's 's PART POS _ 21 case _ _ +23 current current ADJ JJ Degree=Pos 24 amod _ _ +24 efforts effort NOUN NNS Number=Plur 16 obl _ _ +25 to to PART TO _ 26 mark _ _ +26 transform transform VERB VB VerbForm=Inf 8 xcomp _ _ +27 itself itself PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs|Reflex=Yes 26 obj _ _ +28 into into ADP IN _ 32 case _ _ +29 a a DET DT Definite=Ind|PronType=Art 32 det _ _ +30 high high ADJ JJ Degree=Pos 32 amod _ SpaceAfter=No +31 - - PUNCT HYPH _ 32 punct _ SpaceAfter=No +32 tech tech NOUN NN Number=Sing 26 obl _ SpaceAfter=No +33 , , PUNCT , _ 34 punct _ _ +34 capital capital NOUN NN Number=Sing 32 conj _ SpaceAfter=No +35 - - PUNCT , _ 32 punct _ SpaceAfter=No +36 and and CCONJ CC _ 37 cc _ _ +37 information information NOUN NN Number=Sing 39 conj _ SpaceAfter=No +38 -intensive -intensive ADJ JJ Degree=Pos 39 amod _ _ +39 sector sector NOUN NN Number=Sing 32 appos _ SpaceAfter=No +40 . . PUNCT . _ 8 punct _ SpaceAfter=No +41 " " PUNCT '' _ 8 punct _ _ + +# sent_id = 19 +# text = Twenty years ago, the polyester uniforms worn by schoolchildren in Taiwan turned dreadfully stiff when you tried to wash them; cotton clothes shrank; nylon made your skin red and itchy; stockings would ladder if you so much as looked at them; and decent clothes had to be expensively dry cleaned," recalls CTI president Yao Hsing-chuan. +1 Twenty twenty NUM CD NumType=Card 2 nummod _ _ +2 years year NOUN NNS Number=Plur 3 obl:npmod _ _ +3 ago ago ADV RB _ 13 advmod _ SpaceAfter=No +4 , , PUNCT , _ 13 punct _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 polyester polyester NOUN NN Number=Sing 7 compound _ _ +7 uniforms uniform NOUN NNS Number=Plur 13 nsubj _ _ +8 worn wear VERB VBN Tense=Past|VerbForm=Part 7 acl _ _ +9 by by ADP IN _ 10 case _ _ +10 schoolchildren schoolchild NOUN NNS Number=Plur 8 obl _ _ +11 in in ADP IN _ 12 case _ _ +12 Taiwan Taiwan PROPN NNP Number=Sing 7 nmod _ _ +13 turned turn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +14 dreadfully dreadfully ADV RB _ 13 advmod _ _ +15 stiff stiff ADV RB _ 13 advmod _ _ +16 when when ADV WRB PronType=Int 18 mark _ _ +17 you you PRON PRP Case=Nom|Person=2|PronType=Prs 18 nsubj _ _ +18 tried try VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 advcl _ _ +19 to to PART TO _ 20 mark _ _ +20 wash wash VERB VB VerbForm=Inf 18 xcomp _ _ +21 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 20 obj _ SpaceAfter=No +22 ; ; PUNCT , _ 13 punct _ _ +23 cotton cotton NOUN NN Number=Sing 24 compound _ _ +24 clothes clothes NOUN NNS Number=Plur 25 compound _ _ +25 shrank shrank NOUN NN Number=Sing 13 appos _ SpaceAfter=No +26 ; ; PUNCT , _ 13 punct _ _ +27 nylon nylon NOUN NN Number=Sing 13 nsubj _ _ +28 made make VERB VBN Tense=Past|VerbForm=Part 27 acl _ _ +29 your you PRON PRP$ Person=2|Poss=Yes|PronType=Prs 30 nmod:poss _ _ +30 skin skin NOUN NN Number=Sing 28 obj _ _ +31 red red ADJ JJ Degree=Pos 28 xcomp _ _ +32 and and CCONJ CC _ 33 cc _ _ +33 itchy itchy ADJ JJ Degree=Pos 31 conj _ SpaceAfter=No +34 ; ; PUNCT , _ 37 punct _ _ +35 stockings stocking NOUN NNS Number=Plur 37 nsubj _ _ +36 would would AUX MD VerbForm=Fin 37 aux _ _ +37 ladder ladder ADJ JJR Degree=Cmp 13 conj _ _ +38 if if SCONJ IN _ 41 mark _ _ +39 you you PRON PRP Case=Nom|Person=2|PronType=Prs 41 nsubj _ _ +40 so so ADV RB _ 41 advmod _ _ +41 much much ADJ JJ Degree=Pos 37 advcl _ _ +42 as as SCONJ IN _ 43 mark _ _ +43 looked look VERB VBN Tense=Past|VerbForm=Part 41 advcl _ _ +44 at at ADP IN _ 45 case _ _ +45 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 43 obl _ SpaceAfter=No +46 ; ; PUNCT , _ 50 punct _ _ +47 and and CCONJ CC _ 50 cc _ _ +48 decent decent ADJ JJ Degree=Pos 49 amod _ _ +49 clothes clothes NOUN NNS Number=Plur 50 nsubj _ _ +50 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 conj _ _ +51 to to PART TO _ 54 mark _ _ +52 be be AUX VB VerbForm=Inf 54 cop _ _ +53 expensively expensively ADV RB _ 54 advmod _ _ +54 dry dry ADJ JJ Degree=Pos 50 xcomp _ _ +55 cleaned clean VERB VBN Tense=Past|VerbForm=Part 54 ccomp _ SpaceAfter=No +56 , , PUNCT , _ 13 punct _ SpaceAfter=No +57 " " PUNCT '' _ 58 punct _ _ +58 recalls recall NOUN NNS Number=Plur 64 compound _ _ +59 CTI CTI PROPN NNP Number=Sing 61 compound _ _ +60 president president PROPN NNP Number=Sing 59 flat _ _ +61 Yao Yao PROPN NNP Number=Sing 58 flat _ _ +62 Hsing Hsing PROPN NNP Number=Sing 64 compound _ SpaceAfter=No +63 - - PUNCT HYPH _ 64 punct _ SpaceAfter=No +64 chuan chuan PROPN NNP Number=Sing 13 appos _ SpaceAfter=No +65 . . PUNCT . _ 13 punct _ _ + +# sent_id = 20 +# text = If clothes in Taiwan today are getting ever lighter, softer, warmer, more wrinkle-free and easier to keep clean, and if their colors are bright, fresh and stain-resistant, this is not thanks to the magic wand wielded by Cinderella's fairy godmother, but is the result of the unceasing efforts towards research, development and upgrading put in by the textile industry over the years." Upgrading" has been a word on the lips of everyone in the textile industry in recent years. +1 If if SCONJ IN _ 7 mark _ _ +2 clothes clothes NOUN NNS Number=Plur 7 nsubj _ _ +3 in in ADP IN _ 4 case _ _ +4 Taiwan Taiwan PROPN NNP Number=Sing 2 nmod _ _ +5 today today NOUN NN Number=Sing 2 obl:tmod _ _ +6 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 aux _ _ +7 getting get VERB VBG Tense=Pres|VerbForm=Part 13 advcl _ _ +8 ever ever ADV RB _ 9 advmod _ _ +9 lighter lighter ADJ JJR Degree=Cmp 7 xcomp _ SpaceAfter=No +10 , , PUNCT , _ 11 punct _ _ +11 softer softer ADV RB _ 7 conj _ SpaceAfter=No +12 , , PUNCT , _ 13 punct _ _ +13 warmer warmer ADJ JJR Degree=Cmp 78 amod _ SpaceAfter=No +14 , , PUNCT , _ 13 punct _ _ +15 more more ADV RBR _ 16 advmod _ _ +16 wrinkle wrinkle ADJ JJ Degree=Pos 18 amod _ SpaceAfter=No +17 - - PUNCT HYPH _ 18 punct _ SpaceAfter=No +18 free free ADJ JJ Degree=Pos 13 conj _ _ +19 and and CCONJ CC _ 20 cc _ _ +20 easier easier ADJ JJR Degree=Cmp 13 conj _ _ +21 to to PART TO _ 22 mark _ _ +22 keep keep VERB VB VerbForm=Inf 20 advcl _ _ +23 clean clean ADJ JJ Degree=Pos 22 xcomp _ SpaceAfter=No +24 , , PUNCT , _ 41 punct _ _ +25 and and CCONJ CC _ 41 cc _ _ +26 if if SCONJ IN _ 30 mark _ _ +27 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 28 nmod:poss _ _ +28 colors color NOUN NNS Number=Plur 30 nsubj _ _ +29 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 30 cop _ _ +30 bright bright ADJ JJ Degree=Pos 41 advcl _ SpaceAfter=No +31 , , PUNCT , _ 32 punct _ _ +32 fresh fresh ADJ JJ Degree=Pos 30 conj _ _ +33 and and CCONJ CC _ 36 cc _ _ +34 stain stain NOUN NN Number=Sing 36 compound _ SpaceAfter=No +35 - - PUNCT HYPH _ 36 punct _ SpaceAfter=No +36 resistant resistant NOUN NN Number=Sing 30 conj _ SpaceAfter=No +37 , , PUNCT , _ 41 punct _ _ +38 this this PRON DT Number=Sing|PronType=Dem 41 nsubj _ _ +39 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 41 cop _ _ +40 not not PART RB _ 41 advmod _ _ +41 thanks thanks NOUN NN Number=Sing 13 conj _ _ +42 to to ADP IN _ 45 case _ _ +43 the the DET DT Definite=Def|PronType=Art 45 det _ _ +44 magic magic NOUN NN Number=Sing 45 compound _ _ +45 wand wand NOUN NN Number=Sing 41 nmod _ _ +46 wielded wield VERB VBN Tense=Past|VerbForm=Part 45 acl _ _ +47 by by ADP IN _ 51 case _ _ +48 Cinderella Cinderella PROPN NNP Number=Sing 51 nmod:poss _ SpaceAfter=No +49 's 's PART POS _ 48 case _ _ +50 fairy fairy NOUN NN Number=Sing 51 compound _ _ +51 godmother godmother NOUN NN Number=Sing 46 obl _ SpaceAfter=No +52 , , PUNCT , _ 56 punct _ _ +53 but but CCONJ CC _ 56 cc _ _ +54 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 56 cop _ _ +55 the the DET DT Definite=Def|PronType=Art 56 det _ _ +56 result result NOUN NN Number=Sing 13 conj _ _ +57 of of ADP IN _ 60 case _ _ +58 the the DET DT Definite=Def|PronType=Art 60 det _ _ +59 unceasing unceasing ADJ JJ Degree=Pos 60 amod _ _ +60 efforts effort NOUN NNS Number=Plur 56 nmod _ _ +61 towards towards ADP IN _ 62 case _ _ +62 research research NOUN NN Number=Sing 60 nmod _ SpaceAfter=No +63 , , PUNCT , _ 64 punct _ _ +64 development development NOUN NN Number=Sing 62 conj _ _ +65 and and CCONJ CC _ 66 cc _ _ +66 upgrading upgrading NOUN NN Number=Sing 62 conj _ _ +67 put put VERB VBN Tense=Past|VerbForm=Part 60 acl _ _ +68 in in ADP RP _ 67 compound:prt _ _ +69 by by ADP IN _ 72 case _ _ +70 the the DET DT Definite=Def|PronType=Art 72 det _ _ +71 textile textile NOUN NN Number=Sing 72 compound _ _ +72 industry industry NOUN NN Number=Sing 67 obl _ _ +73 over over ADP IN _ 75 case _ _ +74 the the DET DT Definite=Def|PronType=Art 75 det _ _ +75 years year NOUN NNS Number=Plur 67 obl _ SpaceAfter=No +76 . . PUNCT . _ 13 punct _ SpaceAfter=No +77 " " PUNCT `` _ 78 punct _ _ +78 Upgrading Upgrading NOUN NN Number=Sing 83 nsubj _ SpaceAfter=No +79 " " PUNCT '' _ 78 punct _ _ +80 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 83 aux _ _ +81 been be AUX VBN Tense=Past|VerbForm=Part 83 cop _ _ +82 a a DET DT Definite=Ind|PronType=Art 83 det _ _ +83 word word NOUN NN Number=Sing 0 root _ _ +84 on on ADP IN _ 86 case _ _ +85 the the DET DT Definite=Def|PronType=Art 86 det _ _ +86 lips lip NOUN NNS Number=Plur 83 nmod _ _ +87 of of ADP IN _ 88 case _ _ +88 everyone everyone PRON NN Number=Sing 86 nmod _ _ +89 in in ADP IN _ 92 case _ _ +90 the the DET DT Definite=Def|PronType=Art 92 det _ _ +91 textile textile NOUN NN Number=Sing 92 compound _ _ +92 industry industry NOUN NN Number=Sing 88 nmod _ _ +93 in in ADP IN _ 95 case _ _ +94 recent recent ADJ JJ Degree=Pos 95 amod _ _ +95 years year NOUN NNS Number=Plur 83 nmod _ SpaceAfter=No +96 . . PUNCT . _ 83 punct _ _ + +# sent_id = 21 +# text = But the adverse environment in which the industry has had to operate has made the pace of that upgrading halting and hesitant." +1 But but CCONJ CC _ 4 cc _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 adverse adverse ADJ JJ Degree=Pos 4 amod _ _ +4 environment environment NOUN NN Number=Sing 14 nsubj _ _ +5 in in ADP IN _ 6 case _ _ +6 which which PRON WDT PronType=Rel 10 obl _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 industry industry NOUN NN Number=Sing 10 nsubj _ _ +9 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 aux _ _ +10 had have VERB VBN Tense=Past|VerbForm=Part 4 acl:relcl _ _ +11 to to PART TO _ 12 mark _ _ +12 operate operate VERB VB VerbForm=Inf 10 xcomp _ _ +13 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 aux _ _ +14 made make VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 pace pace NOUN NN Number=Sing 14 obj _ _ +17 of of ADP IN _ 20 case _ _ +18 that that DET DT Number=Sing|PronType=Dem 20 det _ _ +19 upgrading upgrading NOUN NN Number=Sing 20 compound _ _ +20 halting halting NOUN NN Number=Sing 16 nmod _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 hesitant hesitant NOUN NN Number=Sing 20 conj _ SpaceAfter=No +23 . . PUNCT . _ 14 punct _ SpaceAfter=No +24 " " PUNCT '' _ 14 punct _ _ + +# sent_id = 22 +# text = In the early 1980s, making ready-to-wear garments for export was pretty much a sure-fire money-spinner. +1 In in ADP IN _ 4 case _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 early early ADJ JJ Degree=Pos 4 amod _ _ +4 1980s 1980 NOUN NNS Number=Plur 23 obl _ SpaceAfter=No +5 , , PUNCT , _ 23 punct _ _ +6 making make VERB VBG VerbForm=Ger 23 csubj _ _ +7 ready ready ADJ JJ Degree=Pos 11 amod _ SpaceAfter=No +8 -to -to NOUN NN Number=Sing 10 compound _ SpaceAfter=No +9 - - PUNCT HYPH _ 10 punct _ SpaceAfter=No +10 wear wear NOUN NN Number=Sing 11 compound _ _ +11 garments garment NOUN NNS Number=Plur 6 obj _ _ +12 for for ADP IN _ 13 case _ _ +13 export export NOUN NN Number=Sing 11 nmod _ _ +14 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 23 cop _ _ +15 pretty pretty ADV RB _ 16 advmod _ _ +16 much much ADV RB _ 23 advmod _ _ +17 a a DET DT Definite=Ind|PronType=Art 23 det _ _ +18 sure sure ADJ JJ Degree=Pos 20 amod _ SpaceAfter=No +19 - - PUNCT HYPH _ 20 punct _ SpaceAfter=No +20 fire fire NOUN NN Number=Sing 23 compound _ _ +21 money money NOUN NN Number=Sing 23 compound _ SpaceAfter=No +22 - - PUNCT HYPH _ 23 punct _ SpaceAfter=No +23 spinner spinner NOUN NN Number=Sing 0 root _ SpaceAfter=No +24 . . PUNCT . _ 23 punct _ _ + +# sent_id = 23 +# text = Everything sold like hot cakes, just like electronics today," says Yao Hsing-chuan. +1 Everything everything PRON NN Number=Sing 2 nsubj _ _ +2 sold sell VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 like like ADP IN _ 5 case _ _ +4 hot hot ADJ JJ Degree=Pos 5 amod _ _ +5 cakes cake NOUN NNS Number=Plur 2 obl _ SpaceAfter=No +6 , , PUNCT , _ 2 punct _ _ +7 just just ADV RB _ 13 advmod _ _ +8 like like SCONJ IN _ 13 mark _ _ +9 electronics electronics NOUN NNS Number=Plur 13 nsubj _ _ +10 today today NOUN NN Number=Sing 9 obl:tmod _ SpaceAfter=No +11 , , PUNCT , _ 13 punct _ SpaceAfter=No +12 " " PUNCT '' _ 13 punct _ _ +13 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 advcl _ _ +14 Yao Yao PROPN NNP Number=Sing 13 nsubj _ _ +15 Hsing Hsing PROPN NNP Number=Sing 14 flat _ SpaceAfter=No +16 - - PUNCT HYPH _ 17 punct _ SpaceAfter=No +17 chuan chuan PROPN NNP Number=Sing 14 flat _ SpaceAfter=No +18 . . PUNCT . _ 2 punct _ _ + +# sent_id = 24 +# text = But around 1987, under strong US pressure, the NT dollar appreciated, and exporters lost their competitive price advantage. +1 But but CCONJ CC _ 3 cc _ _ +2 around around ADP IN _ 3 case _ _ +3 1987 1987 NUM CD NumType=Card 0 root _ SpaceAfter=No +4 , , PUNCT , _ 3 punct _ _ +5 under under ADP IN _ 8 case _ _ +6 strong strong ADJ JJ Degree=Pos 8 amod _ _ +7 US US PROPN NNP Number=Sing 8 compound _ _ +8 pressure pressure NOUN NN Number=Sing 3 nmod _ SpaceAfter=No +9 , , PUNCT , _ 12 punct _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 NT Nt ADJ JJ Degree=Pos 12 amod _ _ +12 dollar dollar NOUN NN Number=Sing 3 conj _ _ +13 appreciated appreciate VERB VBN Tense=Past|VerbForm=Part 12 acl _ SpaceAfter=No +14 , , PUNCT , _ 17 punct _ _ +15 and and CCONJ CC _ 17 cc _ _ +16 exporters exporter NOUN NNS Number=Plur 17 nsubj _ _ +17 lost lose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 conj _ _ +18 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 21 nmod:poss _ _ +19 competitive competitive ADJ JJ Degree=Pos 21 amod _ _ +20 price price NOUN NN Number=Sing 21 compound _ _ +21 advantage advantage NOUN NN Number=Sing 17 obj _ SpaceAfter=No +22 . . PUNCT . _ 3 punct _ _ + +# sent_id = 25 +# text = Next, there was a series of rises in land and labor costs. +1 Next next ADV RB _ 4 advmod _ SpaceAfter=No +2 , , PUNCT , _ 4 punct _ _ +3 there there PRON EX _ 4 expl _ _ +4 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ +5 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +6 series series NOUN NN Number=Sing 4 nsubj _ _ +7 of of ADP IN _ 8 case _ _ +8 rises rise NOUN NNS Number=Plur 6 nmod _ _ +9 in in ADP IN _ 10 case _ _ +10 land land NOUN NN Number=Sing 8 nmod _ _ +11 and and CCONJ CC _ 13 cc _ _ +12 labor labor ADJ JJ Degree=Pos 13 amod _ _ +13 costs cost NOUN NNS Number=Plur 10 conj _ SpaceAfter=No +14 . . PUNCT . _ 4 punct _ _ + +# sent_id = 26 +# text = Garment making is labor-intensive, and the combination of internal and external pressures led to wholesale factory closures. +1 Garment garment NOUN NN Number=Sing 2 compound _ _ +2 making make NOUN NN Number=Sing 6 nsubj _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +4 labor labor ADJ JJ Degree=Pos 6 obl:npmod _ SpaceAfter=No +5 - - PUNCT , _ 6 punct _ SpaceAfter=No +6 intensive intensive ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +7 , , PUNCT , _ 16 punct _ _ +8 and and CCONJ CC _ 16 cc _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 combination combination NOUN NN Number=Sing 16 nsubj _ _ +11 of of ADP IN _ 15 case _ _ +12 internal internal ADJ JJ Degree=Pos 15 amod _ _ +13 and and CCONJ CC _ 14 cc _ _ +14 external external ADJ JJ Degree=Pos 12 conj _ _ +15 pressures pressure NOUN NNS Number=Plur 10 nmod _ _ +16 led lead VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 conj _ _ +17 to to ADP IN _ 20 case _ _ +18 wholesale wholesale ADJ JJ Degree=Pos 20 amod _ _ +19 factory factory NOUN NN Number=Sing 20 compound _ _ +20 closures closure NOUN NNS Number=Plur 16 obl _ SpaceAfter=No +21 . . PUNCT . _ 6 punct _ _ + +# sent_id = 27 +# text = Many firms moved production to mainland China or Southeast Asia, and Taiwan's remaining domestic textile industry was dramatically reshuffled. +1 Many many ADJ JJ Degree=Pos 2 amod _ _ +2 firms firm NOUN NNS Number=Plur 3 nsubj _ _ +3 moved move VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 production production NOUN NN Number=Sing 3 obj _ _ +5 to to ADP IN _ 7 case _ _ +6 mainland mainland PROPN NNP Number=Sing 7 compound _ _ +7 China China PROPN NNP Number=Sing 4 nmod _ _ +8 or or CCONJ CC _ 9 cc _ _ +9 Southeast Southeast PROPN NNP Number=Sing 10 compound _ _ +10 Asia Asia PROPN NNP Number=Sing 7 conj _ SpaceAfter=No +11 , , PUNCT , _ 21 punct _ _ +12 and and CCONJ CC _ 21 cc _ _ +13 Taiwan Taiwan PROPN NNP Number=Sing 18 nmod:poss _ SpaceAfter=No +14 's 's PART POS _ 13 case _ _ +15 remaining remain VERB VBG VerbForm=Ger 18 amod _ _ +16 domestic domestic ADJ JJ Degree=Pos 18 amod _ _ +17 textile textile NOUN NN Number=Sing 18 compound _ _ +18 industry industry NOUN NN Number=Sing 21 nsubj:pass _ _ +19 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 21 aux:pass _ _ +20 dramatically dramatically ADV RB _ 21 advmod _ _ +21 reshuffled reshuffle VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 7 conj _ SpaceAfter=No +22 . . PUNCT . _ 3 punct _ _ + +# sent_id = 28 +# text = With the departure of the ready-to-wear industry, Taiwan lost its" garment kingdom" status. +1 With with SCONJ IN _ 14 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 departure departure NOUN NN Number=Sing 14 nsubj _ _ +4 of of ADP IN _ 11 case _ _ +5 the the DET DT Definite=Def|PronType=Art 11 det _ _ +6 ready ready ADJ JJ Degree=Pos 11 amod _ SpaceAfter=No +7 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +8 to to ADP IN _ 10 mark _ SpaceAfter=No +9 - - PUNCT HYPH _ 10 punct _ SpaceAfter=No +10 wear wear VERB VB VerbForm=Inf 11 amod _ _ +11 industry industry NOUN NN Number=Sing 3 nmod _ SpaceAfter=No +12 , , PUNCT , _ 14 punct _ _ +13 Taiwan Taiwan PROPN NNP Number=Sing 14 nsubj _ _ +14 lost lose VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +15 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 18 nmod:poss _ SpaceAfter=No +16 " " PUNCT `` _ 18 punct _ _ +17 garment garment NOUN NN Number=Sing 18 compound _ _ +18 kingdom kingdom NOUN NN Number=Sing 20 compound _ SpaceAfter=No +19 " " PUNCT '' _ 18 punct _ _ +20 status status NOUN NN Number=Sing 14 obj _ SpaceAfter=No +21 . . PUNCT . _ 14 punct _ _ + +# sent_id = 29 +# text = But looking from another perspective, the Taiwanese manufacturers who spread all over Southeast Asia, mainland China and Latin America were still very much a force to be reckoned with, and in their new locations they continued to source raw materials and semi-finished goods from Taiwan. +1 But but CCONJ CC _ 27 cc _ _ +2 looking look VERB VBG VerbForm=Ger 27 advcl _ _ +3 from from ADP IN _ 5 case _ _ +4 another another DET DT _ 5 det _ _ +5 perspective perspective NOUN NN Number=Sing 2 obl _ SpaceAfter=No +6 , , PUNCT , _ 9 punct _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 Taiwanese taiwanese ADJ JJ Degree=Pos 9 amod _ _ +9 manufacturers manufacturer NOUN NNS Number=Plur 27 nsubj _ _ +10 who who PRON WP PronType=Rel 11 nsubj _ _ +11 spread spread VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 acl:relcl _ _ +12 all all ADV RB _ 15 advmod _ _ +13 over over ADP IN _ 15 case _ _ +14 Southeast Southeast PROPN NNP Number=Sing 15 compound _ _ +15 Asia Asia PROPN NNP Number=Sing 18 compound _ SpaceAfter=No +16 , , PUNCT , _ 17 punct _ _ +17 mainland mainland PROPN NNP Number=Sing 18 compound _ _ +18 China China PROPN NNP Number=Sing 11 obj _ _ +19 and and CCONJ CC _ 21 cc _ _ +20 Latin latin PROPN NNP Number=Sing 21 compound _ _ +21 America America PROPN NNP Number=Sing 18 conj _ _ +22 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 27 cop _ _ +23 still still ADV RB _ 25 advmod _ _ +24 very very ADV RB _ 25 advmod _ _ +25 much much ADV RB _ 27 advmod _ _ +26 a a DET DT Definite=Ind|PronType=Art 27 det _ _ +27 force force NOUN NN Number=Sing 0 root _ _ +28 to to PART TO _ 30 mark _ _ +29 be be AUX VB VerbForm=Inf 30 aux:pass _ _ +30 reckoned reckon VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 27 acl _ _ +31 with with ADP IN _ 30 obl _ SpaceAfter=No +32 , , PUNCT , _ 39 punct _ _ +33 and and CCONJ CC _ 39 cc _ _ +34 in in ADP IN _ 37 case _ _ +35 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 37 nmod:poss _ _ +36 new new ADJ JJ Degree=Pos 37 amod _ _ +37 locations location NOUN NNS Number=Plur 39 obl _ _ +38 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 39 nsubj _ _ +39 continued continue VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 27 conj _ _ +40 to to PART TO _ 41 mark _ _ +41 source source VERB VB VerbForm=Inf 39 xcomp _ _ +42 raw raw ADJ JJ Degree=Pos 43 amod _ _ +43 materials material NOUN NNS Number=Plur 41 obj _ _ +44 and and CCONJ CC _ 46 cc _ _ +45 semi-finished semi-finish VERB VBN Tense=Past|VerbForm=Part 46 amod _ _ +46 goods goods NOUN NNS Number=Plur 43 conj _ _ +47 from from ADP IN _ 48 case _ _ +48 Taiwan Taiwan PROPN NNP Number=Sing 46 nmod _ SpaceAfter=No +49 . . PUNCT . _ 27 punct _ _ + +# sent_id = 30 +# text = With their support, the upstream portions of the industry-fiber making, yarn spinning, weaving, dyeing, finishing and garment design-were able to stay in Taiwan and prosper. +1 With with ADP IN _ 3 case _ _ +2 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +3 support support NOUN NN Number=Sing 28 obl _ SpaceAfter=No +4 , , PUNCT , _ 7 punct _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 upstream upstream ADJ JJ Degree=Pos 7 amod _ _ +7 portions portion NOUN NNS Number=Plur 28 nsubj _ _ +8 of of ADP IN _ 13 case _ _ +9 the the DET DT Definite=Def|PronType=Art 13 det _ _ +10 industry industry NOUN NN Number=Sing 12 compound _ SpaceAfter=No +11 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +12 fiber fiber NOUN NN Number=Sing 13 compound _ _ +13 making making NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 yarn yarn NOUN NN Number=Sing 16 compound _ _ +16 spinning spin NOUN NN Number=Sing 13 conj _ SpaceAfter=No +17 , , PUNCT , _ 18 punct _ _ +18 weaving weave NOUN NN Number=Sing 13 conj _ SpaceAfter=No +19 , , PUNCT , _ 20 punct _ _ +20 dyeing dyeing NOUN NN Number=Sing 13 conj _ SpaceAfter=No +21 , , PUNCT , _ 22 punct _ _ +22 finishing finishing NOUN NN Number=Sing 13 conj _ _ +23 and and CCONJ CC _ 25 cc _ _ +24 garment garment NOUN NN Number=Sing 25 compound _ _ +25 design design NOUN NN Number=Sing 13 conj _ SpaceAfter=No +26 - - PUNCT : _ 7 punct _ SpaceAfter=No +27 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 28 cop _ _ +28 able able ADJ JJ Degree=Pos 0 root _ _ +29 to to PART TO _ 30 mark _ _ +30 stay stay VERB VB VerbForm=Inf 28 xcomp _ _ +31 in in ADP IN _ 32 case _ _ +32 Taiwan Taiwan PROPN NNP Number=Sing 30 obl _ _ +33 and and CCONJ CC _ 34 cc _ _ +34 prosper prosper NOUN NN Number=Sing 32 conj _ SpaceAfter=No +35 . . PUNCT . _ 28 punct _ _ + +# sent_id = 31 +# text = In September 1998, while the industry was still reeling from the effects of the Asian financial crisis, construction began of the long-planned specialist industrial parks in Yunlin and Changhua Counties. +1 In in ADP IN _ 2 case _ _ +2 September September PROPN NNP Number=Sing 21 obl _ _ +3 1998 1998 NUM CD NumType=Card 2 nummod _ SpaceAfter=No +4 , , PUNCT , _ 21 punct _ _ +5 while while SCONJ IN _ 10 mark _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 industry industry NOUN NN Number=Sing 10 nsubj _ _ +8 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 10 aux _ _ +9 still still ADV RB _ 10 advmod _ _ +10 reeling reel VERB VBG Tense=Pres|VerbForm=Part 21 advcl _ _ +11 from from ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 effects effect NOUN NNS Number=Plur 10 obl _ _ +14 of of ADP IN _ 18 case _ _ +15 the the DET DT Definite=Def|PronType=Art 18 det _ _ +16 Asian asian ADJ JJ Degree=Pos 18 amod _ _ +17 financial financial ADJ JJ Degree=Pos 18 amod _ _ +18 crisis crisis NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +19 , , PUNCT , _ 21 punct _ _ +20 construction construction NOUN NN Number=Sing 21 nsubj _ _ +21 began begin VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +22 of of ADP IN _ 29 case _ _ +23 the the DET DT Definite=Def|PronType=Art 29 det _ _ +24 long long ADV RB Degree=Pos 26 advmod _ SpaceAfter=No +25 - - PUNCT HYPH _ 26 punct _ SpaceAfter=No +26 planned plan VERB VBN Tense=Past|VerbForm=Part 29 amod _ _ +27 specialist specialist NOUN NN Number=Sing 29 compound _ _ +28 industrial industrial ADJ JJ Degree=Pos 29 amod _ _ +29 parks park NOUN NNS Number=Plur 21 obl _ _ +30 in in ADP IN _ 31 case _ _ +31 Yunlin Yunlin PROPN NNP Number=Sing 29 nmod _ _ +32 and and CCONJ CC _ 34 cc _ _ +33 Changhua Changhua PROPN NNP Number=Sing 34 compound _ _ +34 Counties countie PROPN NNPS Number=Plur 31 conj _ SpaceAfter=No +35 . . PUNCT . _ 21 punct _ _ + +# sent_id = 32 +# text = These were the peak of the large investments made in Taiwan's textile industry over recent years. +1 These these PRON DT Number=Plur|PronType=Dem 4 nsubj _ _ +2 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 cop _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 peak peak NOUN NN Number=Sing 0 root _ _ +5 of of ADP IN _ 8 case _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 large large ADJ JJ Degree=Pos 8 amod _ _ +8 investments investment NOUN NNS Number=Plur 4 nmod _ _ +9 made make VERB VBN Tense=Past|VerbForm=Part 8 acl _ _ +10 in in ADP IN _ 14 case _ _ +11 Taiwan Taiwan PROPN NNP Number=Sing 14 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 textile textile NOUN NN Number=Sing 14 compound _ _ +14 industry industry NOUN NN Number=Sing 9 obl _ _ +15 over over ADP IN _ 17 case _ _ +16 recent recent ADJ JJ Degree=Pos 17 amod _ _ +17 years year NOUN NNS Number=Plur 9 obl _ SpaceAfter=No +18 . . PUNCT . _ 4 punct _ _ + +# sent_id = 33 +# text = But overcapacity and shrinking demand caused by the crisis had hit the industry hard. +1 But but CCONJ CC _ 2 cc _ _ +2 overcapacity overcapacity NOUN NN Number=Sing 11 nsubj _ _ +3 and and CCONJ CC _ 5 cc _ _ +4 shrinking shrink VERB VBG VerbForm=Ger 5 amod _ _ +5 demand demand NOUN NN Number=Sing 2 conj _ _ +6 caused cause VERB VBN Tense=Past|VerbForm=Part 2 acl _ _ +7 by by ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 crisis crisis NOUN NN Number=Sing 6 obl _ _ +10 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 aux _ _ +11 hit hit VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 industry industry NOUN NN Number=Sing 11 obj _ _ +14 hard hard ADV RB Degree=Pos 11 advmod _ SpaceAfter=No +15 . . PUNCT . _ 11 punct _ _ + +# sent_id = 34 +# text = By mid-1999 things were looking up again, but then massive power failures in the wake of the 21 September earthquake wiped out nearly NT$ 10 billion worth of textile orders. +1 By by ADP IN _ 3 case _ _ +2 mid-1999 mid-1999 NUM CD NumType=Card 3 nummod _ _ +3 things thing NOUN NNS Number=Plur 5 obl _ _ +4 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 aux _ _ +5 looking look VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +6 up up ADP RP _ 5 compound:prt _ _ +7 again again ADV RB _ 5 advmod _ SpaceAfter=No +8 , , PUNCT , _ 13 punct _ _ +9 but but CCONJ CC _ 13 cc _ _ +10 then then ADV RB PronType=Dem 13 advmod _ _ +11 massive massive ADJ JJ Degree=Pos 13 amod _ _ +12 power power NOUN NN Number=Sing 13 compound _ _ +13 failures failure NOUN NNS Number=Plur 22 nsubj _ _ +14 in in ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 wake wake NOUN NN Number=Sing 13 nmod _ _ +17 of of ADP IN _ 21 case _ _ +18 the the DET DT Definite=Def|PronType=Art 21 det _ _ +19 21 21 NUM CD NumType=Card 20 nummod _ _ +20 September September PROPN NNP Number=Sing 21 compound _ _ +21 earthquake earthquake NOUN NN Number=Sing 16 nmod _ _ +22 wiped wip VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 conj _ _ +23 out out ADP RP _ 22 compound:prt _ _ +24 nearly nearly ADV RB _ 25 advmod _ _ +25 NT$ NT$ SYM $ _ 28 case _ _ +26 10 10 NUM CD NumType=Card 27 compound _ _ +27 billion billion NUM CD NumType=Card 25 compound _ _ +28 worth worth NOUN NN Number=Sing 22 obl _ _ +29 of of ADP IN _ 31 case _ _ +30 textile textile NOUN NN Number=Sing 31 compound _ _ +31 orders order NOUN NNS Number=Plur 28 nmod _ SpaceAfter=No +32 . . PUNCT . _ 5 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 35 +# text = Taiwan's biggest currency earner Nevertheless, thanks to its solid foundations built up over 40 years, the textile industry is still a pillar of Taiwan's economy. +1 Taiwan Taiwan PROPN NNP Number=Sing 6 nmod:poss _ SpaceAfter=No +2 's 's PART POS _ 1 case _ _ +3 biggest biggest ADJ JJS Degree=Sup 5 amod _ _ +4 currency currency NOUN NN Number=Sing 5 compound _ _ +5 earner earner NOUN NN Number=Sing 6 compound _ _ +6 Nevertheless nevertheless PROPN NNP Number=Sing 0 root _ SpaceAfter=No +7 , , PUNCT , _ 8 punct _ _ +8 thanks thanks NOUN NN Number=Sing 6 appos _ _ +9 to to ADP IN _ 12 case _ _ +10 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ _ +11 solid solid ADJ JJ Degree=Pos 12 amod _ _ +12 foundations foundation NOUN NNS Number=Plur 8 nmod _ _ +13 built build VERB VBN Tense=Past|VerbForm=Part 12 acl _ _ +14 up up ADP RP _ 13 compound:prt _ _ +15 over over ADP IN _ 17 case _ _ +16 40 40 NUM CD NumType=Card 17 nummod _ _ +17 years year NOUN NNS Number=Plur 13 obl _ SpaceAfter=No +18 , , PUNCT , _ 25 punct _ _ +19 the the DET DT Definite=Def|PronType=Art 21 det _ _ +20 textile textile NOUN NN Number=Sing 21 compound _ _ +21 industry industry NOUN NN Number=Sing 25 nsubj _ _ +22 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 25 cop _ _ +23 still still ADV RB _ 25 advmod _ _ +24 a a DET DT Definite=Ind|PronType=Art 25 det _ _ +25 pillar pillar NOUN NN Number=Sing 12 appos _ _ +26 of of ADP IN _ 29 case _ _ +27 Taiwan Taiwan PROPN NNP Number=Sing 29 nmod:poss _ SpaceAfter=No +28 's 's PART POS _ 27 case _ _ +29 economy economy NOUN NN Number=Sing 25 nmod _ SpaceAfter=No +30 . . PUNCT . _ 6 punct _ _ + +# sent_id = 36 +# text = In 1999, Taiwan's textile exports are expected to be worth US$ 14.5 billion or 12 % of the island's total exports, behind only electronics-LRB-17.6 %-RRB-and IT/telecom products-LRB-12.3 %-RRB-. +1 In in ADP IN _ 2 case _ _ +2 1999 1999 NUM CD NumType=Card 9 obl _ SpaceAfter=No +3 , , PUNCT , _ 9 punct _ _ +4 Taiwan Taiwan PROPN NNP Number=Sing 7 nmod:poss _ SpaceAfter=No +5 's 's PART POS _ 4 case _ _ +6 textile textile NOUN NN Number=Sing 7 compound _ _ +7 exports export NOUN NNS Number=Plur 9 nsubj:pass _ _ +8 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 aux:pass _ _ +9 expected expect VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +10 to to PART TO _ 12 mark _ _ +11 be be AUX VB VerbForm=Inf 12 cop _ _ +12 worth worth ADJ JJ Degree=Pos 9 xcomp _ _ +13 US$ us$ SYM $ _ 15 compound _ _ +14 14.5 14.5 NUM CD NumType=Card 15 compound _ _ +15 billion billion NUM CD NumType=Card 18 nummod _ _ +16 or or CCONJ CC _ 17 cc _ _ +17 12 12 NUM CD NumType=Card 15 conj _ _ +18 % % SYM NN Number=Sing 12 obj _ _ +19 of of ADP IN _ 24 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 island island NOUN NN Number=Sing 24 nmod:poss _ SpaceAfter=No +22 's 's PART POS _ 21 case _ _ +23 total total ADJ JJ Degree=Pos 24 amod _ _ +24 exports export NOUN NNS Number=Plur 18 nmod _ SpaceAfter=No +25 , , PUNCT , _ 9 punct _ _ +26 behind behind ADP IN _ 33 case _ _ +27 only only ADV RB _ 33 advmod _ _ +28 electronics electronics NOUN NNS Number=Plur 30 compound _ SpaceAfter=No +29 - - PUNCT HYPH _ 30 punct _ SpaceAfter=No +30 LRB Lrb NOUN NN Number=Sing 33 compound _ SpaceAfter=No +31 - - PUNCT HYPH _ 32 punct _ SpaceAfter=No +32 17.6 17.6 NUM CD NumType=Card 30 nummod _ _ +33 %-RRB %-rrb NOUN NN Number=Sing 41 compound _ SpaceAfter=No +34 - - PUNCT , _ 33 punct _ SpaceAfter=No +35 and and CCONJ CC _ 39 cc _ _ +36 IT it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 39 conj _ SpaceAfter=No +37 / / PUNCT , _ 38 cc _ SpaceAfter=No +38 telecom telecom NOUN NN Number=Sing 36 conj _ _ +39 products product NOUN NNS Number=Plur 33 conj _ SpaceAfter=No +40 - - PUNCT , _ 41 punct _ SpaceAfter=No +41 LRB Lrb NOUN NN Number=Sing 9 appos _ SpaceAfter=No +42 -12.3 -12.3 NUM CD NumType=Card 44 nummod _ _ +43 %- %- PUNCT . _ 44 punct _ SpaceAfter=No +44 RRB Rrb NOUN NN Number=Sing 41 appos _ SpaceAfter=No +45 -. -. PUNCT . _ 9 punct _ _ + +# sent_id = 37 +# text = Moreover, after deducting the cost of imported raw materials etc., the textile industry is Taiwan's biggest foreign currency earner, bringing in over US$ 10 billion each year. +1 Moreover moreover ADV RB _ 22 advmod _ SpaceAfter=No +2 , , PUNCT , _ 22 punct _ _ +3 after after SCONJ IN _ 4 mark _ _ +4 deducting deduct VERB VBG VerbForm=Ger 22 advcl _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 cost cost NOUN NN Number=Sing 4 obj _ _ +7 of of ADP IN _ 10 case _ _ +8 imported imported ADJ JJ Degree=Pos 10 amod _ _ +9 raw raw ADJ JJ Degree=Pos 10 amod _ _ +10 materials material NOUN NNS Number=Plur 6 nmod _ _ +11 etc. etc. X FW _ 10 advmod _ SpaceAfter=No +12 , , PUNCT , _ 22 punct _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 textile textile NOUN NN Number=Sing 15 compound _ _ +15 industry industry NOUN NN Number=Sing 22 nsubj _ _ +16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 cop _ _ +17 Taiwan Taiwan PROPN NNP Number=Sing 22 nmod:poss _ SpaceAfter=No +18 's 's PART POS _ 17 case _ _ +19 biggest biggest ADJ JJS Degree=Sup 22 amod _ _ +20 foreign foreign ADJ JJ Degree=Pos 22 amod _ _ +21 currency currency NOUN NN Number=Sing 22 compound _ _ +22 earner earner NOUN NN Number=Sing 0 root _ SpaceAfter=No +23 , , PUNCT , _ 22 punct _ _ +24 bringing bring VERB VBG VerbForm=Ger 22 advcl _ _ +25 in in ADV RB _ 24 advmod _ _ +26 over over ADV RB _ 24 advmod _ _ +27 US$ us$ SYM $ _ 29 advmod _ _ +28 10 10 NUM CD NumType=Card 29 compound _ _ +29 billion billion NUM CD NumType=Card 24 obj _ _ +30 each each DET DT _ 31 det _ _ +31 year year NOUN NN Number=Sing 24 obl:tmod _ SpaceAfter=No +32 . . PUNCT . _ 22 punct _ _ + +# sent_id = 38 +# text = For instance, polyester is the most widely used man-made fiber, and little Taiwan produces no less than 17 % of the total worldwide supply, making it the largest supplier. +1 For for ADP IN _ 2 case _ _ +2 instance instance NOUN NN Number=Sing 10 obl _ SpaceAfter=No +3 , , PUNCT , _ 10 punct _ _ +4 polyester polyester NOUN NN Number=Sing 10 nsubj _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _ +6 the the DET DT Definite=Def|PronType=Art 10 det _ _ +7 most most ADV RBS _ 9 advmod _ _ +8 widely widely ADV RB _ 9 advmod _ _ +9 used use VERB VBN Tense=Past|VerbForm=Part 10 amod _ _ +10 man man NOUN NN Number=Sing 0 root _ SpaceAfter=No +11 - - PUNCT HYPH _ 10 punct _ SpaceAfter=No +12 made make VERB VBN Tense=Past|VerbForm=Part 10 acl _ _ +13 fiber fiber NOUN NN Number=Sing 12 xcomp _ SpaceAfter=No +14 , , PUNCT , _ 18 punct _ _ +15 and and CCONJ CC _ 18 cc _ _ +16 little little ADJ JJ Degree=Pos 17 amod _ _ +17 Taiwan Taiwan PROPN NNP Number=Sing 18 nsubj _ _ +18 produces produce VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 conj _ _ +19 no no ADV RB _ 20 advmod _ _ +20 less less ADV RBR Degree=Cmp 22 advmod _ _ +21 than than ADP IN _ 22 case _ _ +22 17 17 NUM CD NumType=Card 23 nummod _ _ +23 % % SYM NN Number=Sing 18 obj _ _ +24 of of ADP IN _ 28 case _ _ +25 the the DET DT Definite=Def|PronType=Art 28 det _ _ +26 total total ADJ JJ Degree=Pos 28 amod _ _ +27 worldwide worldwide ADJ JJ Degree=Pos 28 amod _ _ +28 supply supply NOUN NN Number=Sing 23 nmod _ SpaceAfter=No +29 , , PUNCT , _ 18 punct _ _ +30 making make VERB VBG VerbForm=Ger 18 advcl _ _ +31 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 30 obj _ _ +32 the the DET DT Definite=Def|PronType=Art 34 det _ _ +33 largest largest ADJ JJS Degree=Sup 34 amod _ _ +34 supplier supplier NOUN NN Number=Sing 30 obj _ SpaceAfter=No +35 . . PUNCT . _ 10 punct _ _ + +# sent_id = 39 +# text = The island's total production of man-made fibers ranks third globally, behind the USA and mainland China. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 island island NOUN NN Number=Sing 5 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 total total ADJ JJ Degree=Pos 5 amod _ _ +5 production production NOUN NN Number=Sing 0 root _ _ +6 of of ADP IN _ 11 case _ _ +7 man man NOUN NN Number=Sing 9 compound _ SpaceAfter=No +8 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +9 made make VERB VBN Tense=Past|VerbForm=Part 11 amod _ _ +10 fibers fiber NOUN NNS Number=Plur 11 compound _ _ +11 ranks rank NOUN NNS Number=Plur 5 nmod _ _ +12 third third ADJ JJ Degree=Pos|NumType=Ord 11 acl _ _ +13 globally globally ADV RB _ 12 advmod _ SpaceAfter=No +14 , , PUNCT , _ 5 punct _ _ +15 behind behind ADP IN _ 20 case _ _ +16 the the DET DT Definite=Def|PronType=Art 20 det _ _ +17 USA USA PROPN NNP Number=Sing 20 compound _ _ +18 and and CCONJ CC _ 19 cc _ _ +19 mainland mainland PROPN NNP Number=Sing 17 conj _ _ +20 China China PROPN NNP Number=Sing 5 nmod _ SpaceAfter=No +21 . . PUNCT . _ 5 punct _ _ + +# sent_id = 40 +# text = At present, the largest category among Taiwan's textile exports is finished cloth, which accounts for more than 60 % of Taiwan's textile exports by value." +1 At at ADP IN _ 2 case _ _ +2 present present ADJ JJ Degree=Pos 14 obl _ SpaceAfter=No +3 , , PUNCT , _ 14 punct _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 largest largest ADJ JJS Degree=Sup 6 amod _ _ +6 category category NOUN NN Number=Sing 14 nsubj _ _ +7 among among ADP IN _ 11 case _ _ +8 Taiwan Taiwan PROPN NNP Number=Sing 11 nmod:poss _ SpaceAfter=No +9 's 's PART POS _ 8 case _ _ +10 textile textile NOUN NN Number=Sing 11 compound _ _ +11 exports export NOUN NNS Number=Plur 6 nmod _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +13 finished finish VERB VBN Tense=Past|VerbForm=Part 14 amod _ _ +14 cloth cloth NOUN NN Number=Sing 0 root _ SpaceAfter=No +15 , , PUNCT , _ 14 punct _ _ +16 which which PRON WDT PronType=Rel 17 nsubj _ _ +17 accounts account VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 acl:relcl _ _ +18 for for ADP IN _ 22 case _ _ +19 more more ADJ JJR Degree=Cmp 21 advmod _ _ +20 than than ADP IN _ 19 fixed _ _ +21 60 60 NUM CD NumType=Card 22 nummod _ _ +22 % % SYM NN Number=Sing 17 obl _ _ +23 of of ADP IN _ 27 case _ _ +24 Taiwan Taiwan PROPN NNP Number=Sing 27 nmod:poss _ SpaceAfter=No +25 's 's PART POS _ 24 case _ _ +26 textile textile NOUN NN Number=Sing 27 compound _ _ +27 exports export NOUN NNS Number=Plur 22 nmod _ _ +28 by by ADP IN _ 29 case _ _ +29 value value NOUN NN Number=Sing 27 nmod _ SpaceAfter=No +30 . . PUNCT . _ 14 punct _ SpaceAfter=No +31 " " PUNCT '' _ 14 punct _ _ + +# sent_id = 41 +# text = The textile industry has deep roots in Taiwan, and there are many processes to be gone through from the fiber to the finished garment. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 textile textile NOUN NN Number=Sing 3 compound _ _ +3 industry industry NOUN NN Number=Sing 4 nsubj _ _ +4 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +5 deep deep ADJ JJ Degree=Pos 6 amod _ _ +6 roots root NOUN NNS Number=Plur 4 obj _ _ +7 in in ADP IN _ 8 case _ _ +8 Taiwan Taiwan PROPN NNP Number=Sing 6 nmod _ SpaceAfter=No +9 , , PUNCT , _ 12 punct _ _ +10 and and CCONJ CC _ 12 cc _ _ +11 there there PRON EX _ 12 expl _ _ +12 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 conj _ _ +13 many many ADJ JJ Degree=Pos 14 amod _ _ +14 processes process NOUN NNS Number=Plur 12 nsubj _ _ +15 to to PART TO _ 17 mark _ _ +16 be be AUX VB VerbForm=Inf 17 aux:pass _ _ +17 gone go VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 14 acl _ _ +18 through through ADP IN _ 21 case _ _ +19 from from ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 fiber fiber NOUN NN Number=Sing 17 obl _ _ +22 to to ADP IN _ 25 case _ _ +23 the the DET DT Definite=Def|PronType=Art 25 det _ _ +24 finished finish VERB VBN Tense=Past|VerbForm=Part 25 amod _ _ +25 garment garment NOUN NN Number=Sing 17 obl _ SpaceAfter=No +26 . . PUNCT . _ 4 punct _ _ + +# sent_id = 42 +# text = Thus there are many key technologies which can be developed, and the industry can sustain a large workforce." +1 Thus thus ADV RB _ 3 advmod _ _ +2 there there PRON EX _ 3 expl _ _ +3 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +4 many many ADJ JJ Degree=Pos 6 amod _ _ +5 key key ADJ JJ Degree=Pos 6 amod _ _ +6 technologies technology NOUN NNS Number=Plur 3 nsubj _ _ +7 which which PRON WDT PronType=Rel 10 nsubj:pass _ _ +8 can can AUX MD VerbForm=Fin 10 aux _ _ +9 be be AUX VB VerbForm=Inf 10 aux:pass _ _ +10 developed develop VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 6 acl:relcl _ SpaceAfter=No +11 , , PUNCT , _ 16 punct _ _ +12 and and CCONJ CC _ 16 cc _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 industry industry NOUN NN Number=Sing 16 nsubj _ _ +15 can can AUX MD VerbForm=Fin 16 aux _ _ +16 sustain sustain VERB VB VerbForm=Inf 10 conj _ _ +17 a a DET DT Definite=Ind|PronType=Art 19 det _ _ +18 large large ADJ JJ Degree=Pos 19 amod _ _ +19 workforce workforce NOUN NN Number=Sing 16 obj _ SpaceAfter=No +20 . . PUNCT . _ 3 punct _ SpaceAfter=No +21 " " PUNCT '' _ 3 punct _ _ + +# sent_id = 43 +# text = CTI acting vice-president +1 CTI CTI PROPN NNP Number=Sing 0 root _ _ +2 acting act VERB VBG VerbForm=Ger 1 acl _ _ +3 vice-president vice-president NOUN NN Number=Sing 2 obj _ _ + +# sent_id = 44 +# text = Wu Chung-fu observes that the advanced countries still devote substantial efforts to developing textile technologies, and naturally this is something Taiwan should not lightly give up. +1 Wu Wu PRON PRP Case=Nom|Person=2|PronType=Prs 2 nsubj _ _ +2 Chung Ching VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ SpaceAfter=No +3 - - PUNCT , _ 2 punct _ SpaceAfter=No +4 fu fu PRON PRP _ 5 nsubj _ _ +5 observes observe VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 parataxis _ _ +6 that that SCONJ IN _ 13 mark _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 advanced advanced ADJ JJ Degree=Pos 9 amod _ _ +9 countries country NOUN NNS Number=Plur 13 nsubj _ _ +10 still still ADV RB _ 11 advmod _ _ +11 devote devote ADJ JJ Degree=Pos 13 amod _ _ +12 substantial substantial ADJ JJ Degree=Pos 13 amod _ _ +13 efforts effort NOUN NNS Number=Plur 5 ccomp _ _ +14 to to SCONJ IN _ 15 mark _ _ +15 developing develop VERB VBG VerbForm=Ger 13 acl _ _ +16 textile textile NOUN NN Number=Sing 17 compound _ _ +17 technologies technology NOUN NNS Number=Plur 15 obj _ SpaceAfter=No +18 , , PUNCT , _ 24 punct _ _ +19 and and CCONJ CC _ 24 cc _ _ +20 naturally naturally ADV RB _ 21 advmod _ _ +21 this this PRON DT Number=Sing|PronType=Dem 24 nsubj _ _ +22 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 24 cop _ _ +23 something something PRON NN Number=Sing 24 compound _ _ +24 Taiwan Taiwan PROPN NNP Number=Sing 28 nsubj _ _ +25 should should AUX MD VerbForm=Fin 28 aux _ _ +26 not not PART RB _ 28 advmod _ _ +27 lightly lightly ADV RB _ 28 advmod _ _ +28 give give VERB VB VerbForm=Inf 2 parataxis _ _ +29 up up ADP RP _ 28 compound:prt _ SpaceAfter=No +30 . . PUNCT . _ 2 punct _ _ + +# sent_id = 45 +# text = We ca n't give it up, but neither can we rest on our laurels. +1 We we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 4 nsubj _ _ +2 ca can AUX MD VerbForm=Fin 4 aux _ _ +3 n't not PART RB _ 4 advmod _ _ +4 give give VERB VB VerbForm=Inf 0 root _ _ +5 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 obj _ _ +6 up up ADP RP _ 4 compound:prt _ SpaceAfter=No +7 , , PUNCT , _ 12 punct _ _ +8 but but CCONJ CC _ 12 cc _ _ +9 neither neither DET DT _ 12 advmod _ _ +10 can can AUX MD VerbForm=Fin 12 aux _ _ +11 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 12 nsubj _ _ +12 rest rest VERB VB VerbForm=Inf 4 conj _ _ +13 on on ADP IN _ 15 case _ _ +14 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 15 nmod:poss _ _ +15 laurels laurel NOUN NNS Number=Plur 12 obl _ SpaceAfter=No +16 . . PUNCT . _ 4 punct _ _ + +# sent_id = 46 +# text = With Southeast Asia and mainland China catching up fast, Taiwan's textile industry will only have a future if it can quickly transform itself and develop towards high-tech products. +1 With with SCONJ IN _ 7 mark _ _ +2 Southeast Southeast PROPN NNP Number=Sing 3 compound _ _ +3 Asia asia PROPN NNP Number=Sing 6 compound _ _ +4 and and CCONJ CC _ 5 cc _ _ +5 mainland mainland PROPN NNP Number=Sing 3 conj _ _ +6 China China PROPN NNP Number=Sing 7 nsubj _ _ +7 catching catch VERB VBG VerbForm=Ger 17 advcl _ _ +8 up up ADV RB _ 9 advmod _ _ +9 fast fast ADV RB Degree=Pos 7 advmod _ SpaceAfter=No +10 , , PUNCT , _ 17 punct _ _ +11 Taiwan Taiwan PROPN NNP Number=Sing 14 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 textile textile NOUN NN Number=Sing 14 compound _ _ +14 industry industry NOUN NN Number=Sing 17 nsubj _ _ +15 will will AUX MD VerbForm=Fin 17 aux _ _ +16 only only ADV RB _ 17 advmod _ _ +17 have have VERB VB VerbForm=Inf 0 root _ _ +18 a a DET DT Definite=Ind|PronType=Art 19 det _ _ +19 future future NOUN NN Number=Sing 17 obj _ _ +20 if if SCONJ IN _ 24 mark _ _ +21 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 24 nsubj _ _ +22 can can AUX MD VerbForm=Fin 24 aux _ _ +23 quickly quickly ADV RB _ 24 advmod _ _ +24 transform transform VERB VB VerbForm=Inf 17 advcl _ _ +25 itself itself PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs|Reflex=Yes 24 obj _ _ +26 and and CCONJ CC _ 27 cc _ _ +27 develop develop VERB VB VerbForm=Inf 24 conj _ _ +28 towards towards ADP IN _ 32 case _ _ +29 high high ADJ JJ Degree=Pos 31 amod _ SpaceAfter=No +30 - - PUNCT HYPH _ 31 punct _ SpaceAfter=No +31 tech tech NOUN NN Number=Sing 32 compound _ _ +32 products product NOUN NNS Number=Plur 27 obl _ SpaceAfter=No +33 . . PUNCT . _ 17 punct _ _ + +# sent_id = 47 +# text = The CTI, which a decade ago began a timely change in its role to one of a specialist R&D center working in partnership with firms, has become the leading R&D center for Taiwan's several thousand textile industry companies. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 CTI CTI PROPN NNP Number=Sing 29 nsubj _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 which which PRON WDT PronType=Rel 8 nsubj _ _ +5 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +6 decade decade NOUN NN Number=Sing 7 obl:npmod _ _ +7 ago ago ADV RB _ 8 advmod _ _ +8 began begin VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 2 acl:relcl _ _ +9 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +10 timely timely ADJ JJ Degree=Pos 11 amod _ _ +11 change change NOUN NN Number=Sing 8 obj _ _ +12 in in ADP IN _ 14 case _ _ +13 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 14 nmod:poss _ _ +14 role role NOUN NN Number=Sing 8 obl _ _ +15 to to ADP IN _ 16 case _ _ +16 one one NUM CD NumType=Card 8 obl _ _ +17 of of ADP IN _ 21 case _ _ +18 a a DET DT Definite=Ind|PronType=Art 21 det _ _ +19 specialist specialist ADJ JJ Degree=Pos 21 amod _ _ +20 R&D R&d NOUN NN Number=Sing 21 compound _ _ +21 center center NOUN NN Number=Sing 16 nmod _ _ +22 working work VERB VBG VerbForm=Ger 21 acl _ _ +23 in in ADP IN _ 24 case _ _ +24 partnership partnership NOUN NN Number=Sing 22 obl _ _ +25 with with ADP IN _ 26 case _ _ +26 firms firm NOUN NNS Number=Plur 22 obl _ SpaceAfter=No +27 , , PUNCT , _ 29 punct _ _ +28 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 29 aux _ _ +29 become become VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +30 the the DET DT Definite=Def|PronType=Art 33 det _ _ +31 leading lead VERB VBG VerbForm=Ger 33 amod _ _ +32 R&D R&d NOUN NN Number=Sing 33 compound _ _ +33 center center NOUN NN Number=Sing 29 xcomp _ _ +34 for for ADP IN _ 41 case _ _ +35 Taiwan Taiwan PROPN NNP Number=Sing 41 nmod:poss _ SpaceAfter=No +36 's 's PART POS _ 35 case _ _ +37 several several ADJ JJ Degree=Pos 41 amod _ _ +38 thousand thousand NUM CD NumType=Card 41 nummod _ _ +39 textile textile NOUN NN Number=Sing 41 compound _ _ +40 industry industry NOUN NN Number=Sing 41 compound _ _ +41 companies company NOUN NNS Number=Plur 33 nmod _ SpaceAfter=No +42 . . PUNCT . _ 29 punct _ _ + +# sent_id = 48 +# text = The development of new" nylon 66" fibers is a case in point. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 development development NOUN NN Number=Sing 12 nsubj _ _ +3 of of ADP IN _ 9 case _ _ +4 new new ADJ JJ Degree=Pos 9 amod _ SpaceAfter=No +5 " " PUNCT `` _ 6 punct _ _ +6 nylon nylon NOUN NN Number=Sing 9 compound _ _ +7 66 66 NUM CD NumType=Card 6 nummod _ SpaceAfter=No +8 " " PUNCT `` _ 6 punct _ _ +9 fibers fiber NOUN NNS Number=Plur 2 nmod _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 cop _ _ +11 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +12 case case NOUN NN Number=Sing 0 root _ _ +13 in in ADP IN _ 14 case _ _ +14 point point NOUN NN Number=Sing 12 nmod _ SpaceAfter=No +15 . . PUNCT . _ 12 punct _ _ + +# sent_id = 49 +# text = Grace Kuo, a vice-president at Ta Ching Hwa Enterprise Co.-LRB-TCH-RRB-, as yet the only company in Taiwan to manufacture nylon 66 filament, recounts that ten years ago her husband and a group of friends who had worked many years at Formosa Chemicals and Fiber Corporation wanted to set up in business for themselves. +1 Grace Grace PROPN NNP Number=Sing 27 nsubj _ _ +2 Kuo Kuo PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +3 , , PUNCT , _ 1 punct _ _ +4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +5 vice vice NOUN NN Number=Sing 6 compound _ SpaceAfter=No +6 -president -president NOUN NN Number=Sing 1 appos _ _ +7 at at ADP IN _ 12 case _ _ +8 Ta ta PROPN NNP Number=Sing 12 compound _ _ +9 Ching Ching PROPN NNP Number=Sing 11 compound _ _ +10 Hwa Hwa PROPN NNP Number=Sing 9 flat _ _ +11 Enterprise Enterprise PROPN NNP Number=Sing 8 flat _ _ +12 Co.-LRB-TCH-RRB Co.-LRB-TCH-RRB PROPN NNP Number=Sing 6 nmod _ SpaceAfter=No +13 -, -, PUNCT . _ 1 punct _ _ +14 as as ADP IN _ 18 case _ _ +15 yet yet CCONJ CC _ 18 cc _ _ +16 the the DET DT Definite=Def|PronType=Art 18 det _ _ +17 only only ADJ JJ Degree=Pos 18 amod _ _ +18 company company NOUN NN Number=Sing 27 obl _ _ +19 in in ADP IN _ 20 case _ _ +20 Taiwan Taiwan PROPN NNP Number=Sing 18 nmod _ _ +21 to to PART TO _ 22 mark _ _ +22 manufacture manufacture VERB VB VerbForm=Inf 18 acl _ _ +23 nylon nylon NUM CD NumType=Card 24 compound _ _ +24 66 66 NUM CD NumType=Card 25 nummod _ _ +25 filament filament NOUN NN Number=Sing 22 obj _ SpaceAfter=No +26 , , PUNCT , _ 27 punct _ _ +27 recounts recount VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +28 that that SCONJ IN _ 50 mark _ _ +29 ten ten NUM CD NumType=Card 30 nummod _ _ +30 years year NOUN NNS Number=Plur 31 obl:npmod _ _ +31 ago ago ADV RB _ 33 advmod _ _ +32 her she PRON PRP$ Gender=Fem|Number=Sing|Person=3|Poss=Yes|PronType=Prs 33 nmod:poss _ _ +33 husband husband NOUN NN Number=Sing 50 nsubj _ _ +34 and and CCONJ CC _ 36 cc _ _ +35 a a DET DT Definite=Ind|PronType=Art 36 det _ _ +36 group group NOUN NN Number=Sing 33 conj _ _ +37 of of ADP IN _ 38 case _ _ +38 friends friend NOUN NNS Number=Plur 36 nmod _ _ +39 who who PRON WP PronType=Rel 41 nsubj _ _ +40 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 41 aux _ _ +41 worked work VERB VBN Tense=Past|VerbForm=Part 38 acl:relcl _ _ +42 many many ADJ JJ Degree=Pos 43 amod _ _ +43 years year NOUN NNS Number=Plur 41 obj _ _ +44 at at ADP IN _ 46 case _ _ +45 Formosa Formosa PROPN NNP Number=Sing 46 compound _ _ +46 Chemicals chemicals PROPN NNP Number=Sing 41 obl _ _ +47 and and CCONJ CC _ 48 cc _ _ +48 Fiber Fiber PROPN NNP Number=Sing 46 conj _ _ +49 Corporation Corporation PROPN NNP Number=Sing 48 flat _ _ +50 wanted want VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 27 ccomp _ _ +51 to to PART TO _ 52 mark _ _ +52 set set VERB VB VerbForm=Inf 50 xcomp _ _ +53 up up ADP RP _ 52 compound:prt _ _ +54 in in ADP IN _ 55 case _ _ +55 business business NOUN NN Number=Sing 52 obl _ _ +56 for for ADP IN _ 57 case _ _ +57 themselves themselves PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs|Reflex=Yes 52 obl _ SpaceAfter=No +58 . . PUNCT . _ 27 punct _ _ + +# sent_id = 50 +# text = At that time, a huge amount of nylon 66 fiber-600 tonnes per month-was used by the local textile industry in the manufacture of specialty apparel such as women's tights, swimwear and underwear. +1 At at ADP IN _ 3 case _ _ +2 that that DET DT Number=Sing|PronType=Dem 3 det _ _ +3 time time NOUN NN Number=Sing 7 obl _ SpaceAfter=No +4 , , PUNCT , _ 7 punct _ _ +5 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +6 huge huge ADJ JJ Degree=Pos 7 amod _ _ +7 amount amount NOUN NN Number=Sing 19 nsubj:pass _ _ +8 of of ADP IN _ 11 case _ _ +9 nylon nylon NUM CD NumType=Card 10 compound _ _ +10 66 66 NUM CD NumType=Card 11 nummod _ _ +11 fiber fiber NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +12 - - SYM SYM _ 13 case _ SpaceAfter=No +13 600 600 NUM CD NumType=Card 11 nmod _ _ +14 tonnes tonne NOUN NNS Number=Plur 7 nmod _ _ +15 per per ADP IN _ 16 case _ _ +16 month month NOUN NN Number=Sing 14 nmod _ SpaceAfter=No +17 - - PUNCT , _ 7 punct _ SpaceAfter=No +18 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 19 aux:pass _ _ +19 used use VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +20 by by ADP IN _ 24 case _ _ +21 the the DET DT Definite=Def|PronType=Art 24 det _ _ +22 local local ADJ JJ Degree=Pos 24 amod _ _ +23 textile textile NOUN NN Number=Sing 24 compound _ _ +24 industry industry NOUN NN Number=Sing 19 obl _ _ +25 in in ADP IN _ 27 case _ _ +26 the the DET DT Definite=Def|PronType=Art 27 det _ _ +27 manufacture manufacture NOUN NN Number=Sing 19 obl _ _ +28 of of ADP IN _ 30 case _ _ +29 specialty specialty NOUN NN Number=Sing 30 compound _ _ +30 apparel apparel NOUN NN Number=Sing 27 nmod _ _ +31 such such ADJ JJ Degree=Pos 35 case _ _ +32 as as ADP IN _ 31 fixed _ _ +33 women woman NOUN NNS Number=Plur 35 nmod:poss _ SpaceAfter=No +34 's 's PART POS _ 33 case _ _ +35 tights tight NOUN NNS Number=Plur 19 nmod _ SpaceAfter=No +36 , , PUNCT , _ 37 punct _ _ +37 swimwear swimwear NOUN NN Number=Sing 35 conj _ _ +38 and and CCONJ CC _ 39 cc _ _ +39 underwear underwear NOUN NN Number=Sing 35 conj _ SpaceAfter=No +40 . . PUNCT . _ 19 punct _ _ + +# sent_id = 51 +# text = But Taiwan had no manufacturing capability in the fiber, and relied entirely on imports. +1 But but CCONJ CC _ 2 cc _ _ +2 Taiwan Taiwan PROPN NNP Number=Sing 3 nsubj _ _ +3 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 no no DET DT _ 6 det _ _ +5 manufacturing manufacturing NOUN NN Number=Sing 6 compound _ _ +6 capability capability NOUN NN Number=Sing 3 obj _ _ +7 in in ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 fiber fiber NOUN NN Number=Sing 3 obl _ SpaceAfter=No +10 , , PUNCT , _ 12 punct _ _ +11 and and CCONJ CC _ 12 cc _ _ +12 relied rely VERB VBN Tense=Past|VerbForm=Part 3 conj _ _ +13 entirely entirely ADV RB _ 12 advmod _ _ +14 on on ADP IN _ 15 case _ _ +15 imports import NOUN NNS Number=Plur 12 obl _ SpaceAfter=No +16 . . PUNCT . _ 3 punct _ _ + +# sent_id = 52 +# text = This aroused their interest in entering the field. +1 This this PRON DT Number=Sing|PronType=Dem 2 nsubj _ _ +2 aroused arouse VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +4 interest interest NOUN NN Number=Sing 2 obj _ _ +5 in in SCONJ IN _ 6 mark _ _ +6 entering enter VERB VBG VerbForm=Ger 2 advcl _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 field field NOUN NN Number=Sing 6 obj _ SpaceAfter=No +9 . . PUNCT . _ 2 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 53 +# text = David and Goliath Grace Kuo comments that nylon 66 was a new fiber with good elasticity, high strength and a soft, bulky feel, along with good resistance to ultraviolet light. +1 David David PROPN NNP Number=Sing 5 compound _ _ +2 and and CCONJ CC _ 3 cc _ _ +3 Goliath Goliath PROPN NNP Number=Sing 1 conj _ _ +4 Grace Grace PROPN NNP Number=Sing 1 flat _ _ +5 Kuo Kuo PROPN NNP Number=Sing 6 compound _ _ +6 comments comment NOUN NNS Number=Plur 13 nsubj _ _ +7 that that PRON WDT PronType=Rel 8 nsubj _ _ +8 nylon nylon VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 acl:relcl _ _ +9 66 66 NUM CD NumType=Card 8 obj _ _ +10 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 13 cop _ _ +11 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +12 new new ADJ JJ Degree=Pos 13 amod _ _ +13 fiber fiber NOUN NN Number=Sing 0 root _ _ +14 with with ADP IN _ 16 case _ _ +15 good good ADJ JJ Degree=Pos 16 amod _ _ +16 elasticity elasticity NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +17 , , PUNCT , _ 19 punct _ _ +18 high high ADJ JJ Degree=Pos 19 amod _ _ +19 strength strength NOUN NN Number=Sing 16 conj _ _ +20 and and CCONJ CC _ 25 cc _ _ +21 a a DET DT Definite=Ind|PronType=Art 25 det _ _ +22 soft soft ADJ JJ Degree=Pos 25 amod _ SpaceAfter=No +23 , , PUNCT , _ 25 punct _ _ +24 bulky bulky ADJ JJ Degree=Pos 25 amod _ _ +25 feel feel NOUN NN Number=Sing 16 conj _ SpaceAfter=No +26 , , PUNCT , _ 13 punct _ _ +27 along along ADP IN _ 30 case _ _ +28 with with ADP IN _ 30 case _ _ +29 good good ADJ JJ Degree=Pos 30 amod _ _ +30 resistance resistance NOUN NN Number=Sing 13 nmod _ _ +31 to to PART TO _ 32 mark _ _ +32 ultraviolet ultraviolet VERB VB VerbForm=Inf 30 acl _ _ +33 light light NOUN NN Number=Sing 32 obj _ SpaceAfter=No +34 . . PUNCT . _ 13 punct _ _ + +# sent_id = 54 +# text = Adding just 15 to 20 % of nylon 66 to a fabric transforms it, making it thoroughly suited to modern-day demands for" healthy, comfortable" clothing. +1 Adding add VERB VBG VerbForm=Ger 13 csubj _ _ +2 just just ADV RB _ 3 advmod _ _ +3 15 15 NUM CD NumType=Card 1 obj _ _ +4 to to ADP IN _ 6 case _ _ +5 20 20 NUM CD NumType=Card 6 nummod _ _ +6 % % SYM NN Number=Sing 1 obl _ _ +7 of of ADP IN _ 8 case _ _ +8 nylon nylon NUM CD NumType=Card 6 nmod _ _ +9 66 66 NUM CD NumType=Card 8 nmod _ _ +10 to to ADP IN _ 12 case _ _ +11 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +12 fabric fabric NOUN NN Number=Sing 1 nmod _ _ +13 transforms transform VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +14 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 13 obj _ SpaceAfter=No +15 , , PUNCT , _ 13 punct _ _ +16 making make VERB VBG VerbForm=Ger 13 advcl _ _ +17 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 16 obj _ _ +18 thoroughly thoroughly ADV RB _ 19 advmod _ _ +19 suited suite VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 16 xcomp _ _ +20 to to ADP IN _ 24 case _ _ +21 modern modern ADJ JJ Degree=Pos 23 amod _ SpaceAfter=No +22 - - PUNCT HYPH _ 23 punct _ SpaceAfter=No +23 day day NOUN NN Number=Sing 24 compound _ _ +24 demands demand NOUN NNS Number=Plur 19 obl _ _ +25 for for ADP IN _ 31 case _ SpaceAfter=No +26 " " PUNCT `` _ 31 punct _ _ +27 healthy healthy ADJ JJ Degree=Pos 31 amod _ SpaceAfter=No +28 , , PUNCT , _ 29 punct _ _ +29 comfortable comfortable ADJ JJ Degree=Pos 27 conj _ SpaceAfter=No +30 " " PUNCT '' _ 31 punct _ _ +31 clothing clothing NOUN NN Number=Sing 24 nmod _ SpaceAfter=No +32 . . PUNCT . _ 13 punct _ _ + +# sent_id = 55 +# text = The big international manufacturers had realized this and adopted an oligarchic strategy: as well as making it difficult for others to obtain the raw materials, they were very careful not to reveal any of their manufacturing know-how. +1 The the DET DT Definite=Def|PronType=Art 4 det _ _ +2 big big ADJ JJ Degree=Pos 4 amod _ _ +3 international international ADJ JJ Degree=Pos 4 amod _ _ +4 manufacturers manufacturer NOUN NNS Number=Plur 6 nsubj _ _ +5 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 aux _ _ +6 realized realize VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +7 this this PRON DT Number=Sing|PronType=Dem 6 obj _ _ +8 and and CCONJ CC _ 9 cc _ _ +9 adopted adopt VERB VBN Tense=Past|VerbForm=Part 6 conj _ _ +10 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 oligarchic oligarchic ADJ JJ Degree=Pos 12 amod _ _ +12 strategy strategy NOUN NN Number=Sing 9 obj _ SpaceAfter=No +13 : : PUNCT : _ 6 punct _ _ +14 as as ADV RB _ 17 mark _ _ +15 well well ADV RB Degree=Pos 14 fixed _ _ +16 as as SCONJ IN _ 14 fixed _ _ +17 making make VERB VBG VerbForm=Ger 6 advcl _ _ +18 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 17 obj _ _ +19 difficult difficult ADJ JJ Degree=Pos 17 xcomp _ _ +20 for for ADP IN _ 21 case _ _ +21 others other NOUN NNS Number=Plur 19 obl _ _ +22 to to PART TO _ 23 mark _ _ +23 obtain obtain VERB VB VerbForm=Inf 21 acl _ _ +24 the the DET DT Definite=Def|PronType=Art 26 det _ _ +25 raw raw ADJ JJ Degree=Pos 26 amod _ _ +26 materials material NOUN NNS Number=Plur 23 obj _ SpaceAfter=No +27 , , PUNCT , _ 6 punct _ _ +28 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 31 nsubj _ _ +29 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 31 cop _ _ +30 very very ADV RB _ 31 advmod _ _ +31 careful careful ADJ JJ Degree=Pos 6 parataxis _ _ +32 not not ADV RB _ 31 advmod _ _ +33 to to PART TO _ 34 mark _ _ +34 reveal reveal VERB VB VerbForm=Inf 31 advcl _ _ +35 any any DET DT _ 34 obj _ _ +36 of of ADP IN _ 38 case _ _ +37 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 38 nmod:poss _ _ +38 manufacturing manufacturing NOUN NN Number=Sing 35 nmod _ _ +39 know know VERB VB VerbForm=Inf 34 acl:relcl _ SpaceAfter=No +40 - - PUNCT HYPH _ 39 punct _ SpaceAfter=No +41 how how ADV WRB PronType=Int 39 advmod _ SpaceAfter=No +42 . . PUNCT . _ 6 punct _ _ + +# sent_id = 56 +# text = But thanks to the expertise the TCH team had built up over many years in the textile fibers field, within the first year after the company was set up they succeeded in drawing filaments from nylon 66 granules." +1 But but CCONJ CC _ 2 cc _ _ +2 thanks thanks NOUN NN Number=Sing 29 nsubj:pass _ _ +3 to to ADP IN _ 5 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 expertise expertise NOUN NN Number=Sing 2 nmod _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 TCH Tch PROPN NNP Number=Sing 8 compound _ _ +8 team team NOUN NN Number=Sing 10 nsubj _ _ +9 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 10 aux _ _ +10 built build VERB VBN Tense=Past|VerbForm=Part 2 acl _ _ +11 up up ADP RP _ 10 compound:prt _ _ +12 over over ADP IN _ 14 case _ _ +13 many many ADJ JJ Degree=Pos 14 amod _ _ +14 years year NOUN NNS Number=Plur 10 obl _ _ +15 in in ADP IN _ 19 case _ _ +16 the the DET DT Definite=Def|PronType=Art 19 det _ _ +17 textile textile NOUN NN Number=Sing 19 compound _ _ +18 fibers fiber NOUN NNS Number=Plur 19 compound _ _ +19 field field NOUN NN Number=Sing 10 obl _ SpaceAfter=No +20 , , PUNCT , _ 2 punct _ _ +21 within within ADP IN _ 24 case _ _ +22 the the DET DT Definite=Def|PronType=Art 24 det _ _ +23 first first ADJ JJ Degree=Pos|NumType=Ord 24 amod _ _ +24 year year NOUN NN Number=Sing 2 nmod _ _ +25 after after ADP IN _ 27 case _ _ +26 the the DET DT Definite=Def|PronType=Art 27 det _ _ +27 company company NOUN NN Number=Sing 24 nmod _ _ +28 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 29 aux:pass _ _ +29 set set VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +30 up up ADP RP _ 29 compound:prt _ _ +31 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 32 nsubj _ _ +32 succeeded succeed VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 29 ccomp _ _ +33 in in SCONJ IN _ 34 mark _ _ +34 drawing draw VERB VBG VerbForm=Ger 32 advcl _ _ +35 filaments filament NOUN NNS Number=Plur 34 obj _ _ +36 from from ADP IN _ 39 case _ _ +37 nylon nylon NOUN NN Number=Sing 39 compound _ _ +38 66 66 NUM CD NumType=Card 39 nummod _ _ +39 granules granule NOUN NNS Number=Plur 35 nmod _ SpaceAfter=No +40 . . PUNCT . _ 29 punct _ SpaceAfter=No +41 " " PUNCT '' _ 29 punct _ _ + +# sent_id = 57 +# text = As soon as we did that, Dupont cut their prices, hoping to squeeze us right out of the market," says Grace Kuo with a smile. +1 As as ADV RB _ 2 advmod _ _ +2 soon soon ADV RB Degree=Pos 9 advmod _ _ +3 as as SCONJ IN _ 5 mark _ _ +4 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 5 nsubj _ _ +5 did do VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 2 advcl _ _ +6 that that PRON DT Number=Sing|PronType=Dem 5 obj _ SpaceAfter=No +7 , , PUNCT , _ 9 punct _ _ +8 Dupont Dupont PROPN NNP Number=Sing 9 nsubj _ _ +9 cut cut VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 24 ccomp _ _ +10 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 11 nmod:poss _ _ +11 prices price NOUN NNS Number=Plur 9 obj _ SpaceAfter=No +12 , , PUNCT , _ 9 punct _ _ +13 hoping hope VERB VBG VerbForm=Ger 9 advcl _ _ +14 to to PART TO _ 15 mark _ _ +15 squeeze squeeze VERB VB VerbForm=Inf 13 xcomp _ _ +16 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 15 obj _ _ +17 right right ADV RB _ 21 advmod _ _ +18 out out ADP IN _ 21 case _ _ +19 of of ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 market market NOUN NN Number=Sing 15 obl _ SpaceAfter=No +22 , , PUNCT , _ 24 punct _ SpaceAfter=No +23 " " PUNCT '' _ 24 punct _ _ +24 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +25 Grace Grace PROPN NNP Number=Sing 24 nsubj _ _ +26 Kuo Kuo PROPN NNP Number=Sing 25 flat _ _ +27 with with ADP IN _ 29 case _ _ +28 a a DET DT Definite=Ind|PronType=Art 29 det _ _ +29 smile smile NOUN NN Number=Sing 24 obl _ SpaceAfter=No +30 . . PUNCT . _ 24 punct _ _ + +# sent_id = 58 +# text = But after going head-to-head with TCH for several years, Dupont realized how resilient the company was, and since then the two firms have begun to cooperate. +1 But but CCONJ CC _ 16 cc _ _ +2 after after SCONJ IN _ 3 mark _ _ +3 going go VERB VBG VerbForm=Ger 16 advcl _ _ +4 head head NOUN NN Number=Sing 3 obj _ SpaceAfter=No +5 - - PUNCT HYPH _ 4 punct _ SpaceAfter=No +6 to to ADP IN _ 8 case _ SpaceAfter=No +7 - - PUNCT HYPH _ 8 punct _ SpaceAfter=No +8 head head NOUN NN Number=Sing 3 obl _ _ +9 with with ADP IN _ 10 case _ _ +10 TCH TCH PROPN NNP Number=Sing 3 obl _ _ +11 for for ADP IN _ 13 case _ _ +12 several several ADJ JJ Degree=Pos 13 amod _ _ +13 years year NOUN NNS Number=Plur 3 obl _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 Dupont Dupont PROPN NNP Number=Sing 16 nsubj _ _ +16 realized realize VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +17 how how ADV WRB PronType=Int 18 advmod _ _ +18 resilient resilient ADJ JJ Degree=Pos 16 ccomp _ _ +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 company company NOUN NN Number=Sing 18 nsubj _ _ +21 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 18 cop _ SpaceAfter=No +22 , , PUNCT , _ 30 punct _ _ +23 and and CCONJ CC _ 30 cc _ _ +24 since since ADP IN _ 25 case _ _ +25 then then ADV RB PronType=Dem 30 obl _ _ +26 the the DET DT Definite=Def|PronType=Art 28 det _ _ +27 two two NUM CD NumType=Card 28 nummod _ _ +28 firms firm NOUN NNS Number=Plur 30 nsubj _ _ +29 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 30 aux _ _ +30 begun begin VERB VBN Tense=Past|VerbForm=Part 18 conj _ _ +31 to to PART TO _ 32 mark _ _ +32 cooperate cooperate VERB VB VerbForm=Inf 30 xcomp _ SpaceAfter=No +33 . . PUNCT . _ 16 punct _ _ + +# sent_id = 59 +# text = Currently, TCH is the world's fifth-largest manufacturer of nylon 66 filament, supplying 8 % of the global market. +1 Currently currently ADV RB _ 6 advmod _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 TCH TCH PROPN NNP Number=Sing 6 nsubj _ _ +4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 world world NOUN NN Number=Sing 11 nmod:poss _ SpaceAfter=No +7 's 's PART POS _ 6 case _ _ +8 fifth fifth NOUN NN Number=Sing 10 compound _ SpaceAfter=No +9 - - PUNCT , _ 10 punct _ SpaceAfter=No +10 largest largest ADJ JJS Degree=Sup 11 amod _ _ +11 manufacturer manufacturer NOUN NN Number=Sing 0 root _ _ +12 of of ADP IN _ 15 case _ _ +13 nylon nylon NUM CD NumType=Card 14 compound _ _ +14 66 66 NUM CD NumType=Card 15 nummod _ _ +15 filament filament NOUN NN Number=Sing 11 nmod _ SpaceAfter=No +16 , , PUNCT , _ 11 punct _ _ +17 supplying supply VERB VBG VerbForm=Ger 11 acl _ _ +18 8 8 NUM CD NumType=Card 19 nummod _ _ +19 % % SYM NN Number=Sing 17 obj _ _ +20 of of ADP IN _ 23 case _ _ +21 the the DET DT Definite=Def|PronType=Art 23 det _ _ +22 global global ADJ JJ Degree=Pos 23 amod _ _ +23 market market NOUN NN Number=Sing 19 nmod _ SpaceAfter=No +24 . . PUNCT . _ 11 punct _ _ + +# sent_id = 60 +# text = It stands as another example of a Taiwanese company successfully taking on the big boys in international markets. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 stands stand VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 as as SCONJ IN _ 5 case _ _ +4 another another DET DT _ 5 det _ _ +5 example example NOUN NN Number=Sing 2 obl _ _ +6 of of ADP IN _ 9 case _ _ +7 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +8 Taiwanese taiwanese ADJ JJ Degree=Pos 9 amod _ _ +9 company company NOUN NN Number=Sing 5 nmod _ _ +10 successfully successfully ADV RB _ 11 advmod _ _ +11 taking take VERB VBG VerbForm=Ger 9 acl _ _ +12 on on ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 big big ADJ JJ Degree=Pos 15 amod _ _ +15 boys boy NOUN NNS Number=Plur 11 obl _ _ +16 in in ADP IN _ 18 case _ _ +17 international international ADJ JJ Degree=Pos 18 amod _ _ +18 markets market NOUN NNS Number=Plur 15 nmod _ SpaceAfter=No +19 . . PUNCT . _ 2 punct _ _ + +# sent_id = 61 +# text = The original use of nylon 66 was in tights and swimwear, but these are far from being the only applications for such a superior new fiber. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 original original ADJ JJ Degree=Pos 3 amod _ _ +3 use use NOUN NN Number=Sing 9 nsubj _ _ +4 of of ADP IN _ 5 case _ _ +5 nylon nylon NOUN NN Number=Sing 3 nmod _ _ +6 66 66 NUM CD NumType=Card 5 nummod _ _ +7 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 9 cop _ _ +8 in in ADP IN _ 9 case _ _ +9 tights tights NOUN NNS Number=Plur 0 root _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 swimwear swimwear VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 conj _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 but but CCONJ CC _ 16 cc _ _ +14 these these PRON DT Number=Plur|PronType=Dem 16 nsubj _ _ +15 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 16 cop _ _ +16 far far ADV RB Degree=Pos 9 conj _ _ +17 from from SCONJ IN _ 21 mark _ _ +18 being be AUX VBG VerbForm=Ger 21 cop _ _ +19 the the DET DT Definite=Def|PronType=Art 21 det _ _ +20 only only ADJ JJ Degree=Pos 21 amod _ _ +21 applications application NOUN NNS Number=Plur 16 advcl _ _ +22 for for ADP IN _ 27 case _ _ +23 such such DET PDT _ 27 det:predet _ _ +24 a a DET DT Definite=Ind|PronType=Art 27 det _ _ +25 superior superior ADJ JJ Degree=Pos 27 amod _ _ +26 new new ADJ JJ Degree=Pos 27 amod _ _ +27 fiber fiber NOUN NN Number=Sing 21 nmod _ SpaceAfter=No +28 . . PUNCT . _ 9 punct _ _ + +# sent_id = 62 +# text = But because the filaments are so thin-LRB-only half the thickness of a human hair-RRB-, they can easily break at the yarn spinning stage, and at the dyeing stage the yarn absorbs only the smallest dye molecules. +1 But but CCONJ CC _ 26 cc _ _ +2 because because SCONJ IN _ 9 mark _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 filaments filament NOUN NNS Number=Plur 9 nsubj _ _ +5 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 cop _ _ +6 so so ADV RB _ 9 advmod _ _ +7 thin thin ADJ JJ Degree=Pos 9 amod _ SpaceAfter=No +8 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +9 LRB Lrb NOUN NN Number=Sing 26 advcl _ SpaceAfter=No +10 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +11 only only ADV RB _ 14 advmod _ _ +12 half half DET PDT _ 14 det:predet _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 thickness thickness NOUN NN Number=Sing 9 appos _ _ +15 of of ADP IN _ 20 case _ _ +16 a a DET DT Definite=Ind|PronType=Art 20 det _ _ +17 human human ADJ JJ Degree=Pos 20 amod _ _ +18 hair hair NOUN NN Number=Sing 20 compound _ SpaceAfter=No +19 - - PUNCT HYPH _ 20 punct _ SpaceAfter=No +20 RRB RRB NOUN NN Number=Sing 14 nmod _ SpaceAfter=No +21 - - PUNCT HYPH _ 20 punct _ SpaceAfter=No +22 , , PUNCT , _ 26 punct _ _ +23 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 26 nsubj _ _ +24 can can AUX MD VerbForm=Fin 26 aux _ _ +25 easily easily ADV RB _ 26 advmod _ _ +26 break break VERB VB VerbForm=Inf 0 root _ _ +27 at at ADP IN _ 29 case _ _ +28 the the DET DT Definite=Def|PronType=Art 29 det _ _ +29 yarn yarn NOUN NN Number=Sing 26 obl _ _ +30 spinning spinning VERB VBG VerbForm=Ger 29 acl _ _ +31 stage stage NOUN NN Number=Sing 30 obj _ SpaceAfter=No +32 , , PUNCT , _ 37 punct _ _ +33 and and CCONJ CC _ 37 cc _ _ +34 at at ADP IN _ 37 case _ _ +35 the the DET DT Definite=Def|PronType=Art 37 det _ _ +36 dyeing dyeing NOUN NN Number=Sing 37 compound _ _ +37 stage stage NOUN NN Number=Sing 26 conj _ _ +38 the the DET DT Definite=Def|PronType=Art 40 det _ _ +39 yarn yarn NOUN NN Number=Sing 40 compound _ _ +40 absorbs absorb NOUN NNS Number=Plur 37 compound _ _ +41 only only ADV RB _ 45 advmod _ _ +42 the the DET DT Definite=Def|PronType=Art 45 det _ _ +43 smallest smallest ADJ JJS Degree=Sup 45 amod _ _ +44 dye dye NOUN NN Number=Sing 45 compound _ _ +45 molecules molecule NOUN NNS Number=Plur 40 appos _ SpaceAfter=No +46 . . PUNCT . _ 26 punct _ _ + +# sent_id = 63 +# text = Hence firms around the world are still feeling their way forward on how to use this fiber. +1 Hence hence NOUN NN Number=Sing 2 compound _ _ +2 firms firm NOUN NNS Number=Plur 8 nsubj _ _ +3 around around ADP IN _ 5 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 world world NOUN NN Number=Sing 2 nmod _ _ +6 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 aux _ _ +7 still still ADV RB _ 8 advmod _ _ +8 feeling feel VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +9 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 10 nmod:poss _ _ +10 way way NOUN NN Number=Sing 8 obj _ _ +11 forward forward ADV RB _ 8 advmod _ _ +12 on on SCONJ IN _ 15 mark _ _ +13 how how ADV WRB PronType=Int 15 advmod _ _ +14 to to PART TO _ 15 mark _ _ +15 use use VERB VB VerbForm=Inf 8 advcl _ _ +16 this this DET DT Number=Sing|PronType=Dem 17 det _ _ +17 fiber fiber NOUN NN Number=Sing 15 obj _ SpaceAfter=No +18 . . PUNCT . _ 8 punct _ _ + +# sent_id = 64 +# text = For this reason, TCH approached the CTI to conduct a series of cooperative development projects. +1 For for ADP IN _ 3 case _ _ +2 this this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 reason reason NOUN NN Number=Sing 6 obl _ SpaceAfter=No +4 , , PUNCT , _ 6 punct _ _ +5 TCH TCH PRON WDT PronType=Rel 6 nsubj _ _ +6 approached approach VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 CTI Cto PROPN NNP Number=Sing 6 obj _ _ +9 to to PART TO _ 10 mark _ _ +10 conduct conduct VERB VB VerbForm=Inf 6 xcomp _ _ +11 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +12 series series NOUN NN Number=Sing 10 obj _ _ +13 of of ADP IN _ 16 case _ _ +14 cooperative cooperative ADJ JJ Degree=Pos 16 amod _ _ +15 development development NOUN NN Number=Sing 16 compound _ _ +16 projects project NOUN NNS Number=Plur 12 nmod _ SpaceAfter=No +17 . . PUNCT . _ 6 punct _ _ + +# sent_id = 65 +# text = To date they have successfully developed various new yarns blended from nylon 66 and other fibers such as acrylic or polyester, and have staged numerous seminars and visited many firms to teach users how to weave and dye the new fabrics and how to design for them. +1 To to ADP IN _ 2 case _ _ +2 date date NOUN NN Number=Sing 6 obl _ _ +3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 6 nsubj _ _ +4 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 successfully successfully ADV RB _ 6 advmod _ _ +6 developed develop VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +7 various various ADJ JJ Degree=Pos 9 amod _ _ +8 new new ADJ JJ Degree=Pos 9 amod _ _ +9 yarns yarn NOUN NNS Number=Plur 6 obj _ _ +10 blended blend VERB VBN Tense=Past|VerbForm=Part 9 acl _ _ +11 from from ADP IN _ 12 case _ _ +12 nylon nylon NOUN NN Number=Sing 10 obl _ _ +13 66 66 NUM CD NumType=Card 12 nummod _ _ +14 and and CCONJ CC _ 16 cc _ _ +15 other other ADJ JJ Degree=Pos 16 amod _ _ +16 fibers fiber NOUN NNS Number=Plur 12 conj _ _ +17 such such ADJ JJ Degree=Pos 19 case _ _ +18 as as ADP IN _ 17 fixed _ _ +19 acrylic acrylic ADJ JJ Degree=Pos 9 nmod _ _ +20 or or CCONJ CC _ 21 cc _ _ +21 polyester polyester NOUN NN Number=Sing 19 conj _ SpaceAfter=No +22 , , PUNCT , _ 25 punct _ _ +23 and and CCONJ CC _ 25 cc _ _ +24 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 25 aux _ _ +25 staged stage VERB VBN Tense=Past|VerbForm=Part 6 conj _ _ +26 numerous numerous ADJ JJ Degree=Pos 27 amod _ _ +27 seminars seminar NOUN NNS Number=Plur 25 obj _ _ +28 and and CCONJ CC _ 29 cc _ _ +29 visited visit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 conj _ _ +30 many many ADJ JJ Degree=Pos 31 amod _ _ +31 firms firm NOUN NNS Number=Plur 29 obj _ _ +32 to to PART TO _ 33 mark _ _ +33 teach teach VERB VB VerbForm=Inf 29 xcomp _ _ +34 users user NOUN NNS Number=Plur 33 obj _ _ +35 how how ADV WRB PronType=Int 37 advmod _ _ +36 to to PART TO _ 37 mark _ _ +37 weave weave VERB VB VerbForm=Inf 33 advcl _ _ +38 and and CCONJ CC _ 39 cc _ _ +39 dye dye VERB VB VerbForm=Inf 37 conj _ _ +40 the the DET DT Definite=Def|PronType=Art 42 det _ _ +41 new new ADJ JJ Degree=Pos 42 amod _ _ +42 fabrics fabric NOUN NNS Number=Plur 37 obj _ _ +43 and and CCONJ CC _ 46 cc _ _ +44 how how ADV WRB PronType=Int 46 advmod _ _ +45 to to PART TO _ 46 mark _ _ +46 design design VERB VB VerbForm=Inf 6 conj _ _ +47 for for ADP IN _ 48 case _ _ +48 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 46 obl _ SpaceAfter=No +49 . . PUNCT . _ 6 punct _ _ + +# sent_id = 66 +# text = Why go to such lengths to popularize new fibers? +1 Why why ADV WRB PronType=Int 2 advmod _ _ +2 go go VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +3 to to ADP IN _ 5 case _ _ +4 such such ADJ JJ Degree=Pos 5 amod _ _ +5 lengths length NOUN NNS Number=Plur 2 obl _ _ +6 to to PART TO _ 7 mark _ _ +7 popularize popularize VERB VB VerbForm=Inf 2 advcl _ _ +8 new new ADJ JJ Degree=Pos 9 amod _ _ +9 fibers fiber NOUN NNS Number=Plur 7 obj _ SpaceAfter=No +10 ? ? PUNCT . _ 2 punct _ _ + +# sent_id = 67 +# text = Grace +1 Grace Grace PROPN NNP Number=Sing 0 root _ _ + +# sent_id = 68 +# text = Kuo says the textile industry today needs to take a lead from the electronics industry, and constantly strive for innovation:" +1 Kuo Kuo PROPN NNP Number=Sing 2 nsubj _ _ +2 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 textile textile NOUN NN Number=Sing 5 compound _ _ +5 industry industry NOUN NN Number=Sing 7 nsubj _ _ +6 today today NOUN NN Number=Sing 5 nmod:tmod _ _ +7 needs need VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 2 ccomp _ _ +8 to to PART TO _ 9 mark _ _ +9 take take VERB VB VerbForm=Inf 7 xcomp _ _ +10 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +11 lead lead NOUN NN Number=Sing 9 obj _ _ +12 from from ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 electronics electronics NOUN NNS Number=Plur 15 compound _ _ +15 industry industry NOUN NN Number=Sing 9 obl _ SpaceAfter=No +16 , , PUNCT , _ 19 punct _ _ +17 and and CCONJ CC _ 19 cc _ _ +18 constantly constantly ADV RB _ 19 advmod _ _ +19 strive strive VERB VB VerbForm=Inf 2 conj _ _ +20 for for ADP IN _ 21 case _ _ +21 innovation innovation NOUN NN Number=Sing 19 obl _ SpaceAfter=No +22 : : PUNCT : _ 2 punct _ SpaceAfter=No +23 " " PUNCT `` _ 2 punct _ _ + +# sent_id = 69 +# text = What consumer today does n't already have a wardrobe full of clothes? +1 What what DET WDT PronType=Int 2 det _ _ +2 consumer consumer NOUN NN Number=Sing 7 nsubj _ _ +3 today today NOUN NN Number=Sing 2 obl:tmod _ _ +4 does do AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +5 n't not PART RB _ 7 advmod _ _ +6 already already ADV RB _ 7 advmod _ _ +7 have have VERB VB VerbForm=Inf 0 root _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 wardrobe wardrobe NOUN NN Number=Sing 7 obj _ _ +10 full full ADJ JJ Degree=Pos 9 amod _ _ +11 of of ADP IN _ 12 case _ _ +12 clothes clothes NOUN NNS Number=Plur 10 obl _ SpaceAfter=No +13 ? ? PUNCT . _ 7 punct _ _ + +# sent_id = 70 +# text = If you want to persuade her to spend, you have to keep putting out products which look novel at the first glance and feel great at the first touch. +1 If if SCONJ IN _ 3 mark _ _ +2 you you PRON PRP Case=Nom|Person=2|PronType=Prs 3 nsubj _ _ +3 want want VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 advcl _ _ +4 to to PART TO _ 5 mark _ _ +5 persuade persuade VERB VB VerbForm=Inf 3 xcomp _ _ +6 her she PRON PRP Case=Acc|Gender=Fem|Number=Sing|Person=3|PronType=Prs 5 obj _ _ +7 to to PART TO _ 8 mark _ _ +8 spend spend VERB VB VerbForm=Inf 5 advcl _ SpaceAfter=No +9 , , PUNCT , _ 11 punct _ _ +10 you you PRON PRP Case=Nom|Person=2|PronType=Prs 11 nsubj _ _ +11 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +12 to to PART TO _ 13 mark _ _ +13 keep keep VERB VB VerbForm=Inf 11 xcomp _ _ +14 putting put VERB VBG VerbForm=Ger 13 xcomp _ _ +15 out out ADP RP _ 14 compound:prt _ _ +16 products product NOUN NNS Number=Plur 14 obj _ _ +17 which which PRON WDT PronType=Rel 18 nsubj _ _ +18 look look VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 16 acl:relcl _ _ +19 novel novel NOUN NN Number=Sing 18 obj _ _ +20 at at ADP IN _ 23 case _ _ +21 the the DET DT Definite=Def|PronType=Art 23 det _ _ +22 first first ADJ JJ Degree=Pos|NumType=Ord 23 amod _ _ +23 glance glance NOUN NN Number=Sing 18 obl _ _ +24 and and CCONJ CC _ 25 cc _ _ +25 feel feel VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 conj _ _ +26 great great ADJ JJ Degree=Pos 25 xcomp _ _ +27 at at ADP IN _ 30 case _ _ +28 the the DET DT Definite=Def|PronType=Art 30 det _ _ +29 first first ADJ JJ Degree=Pos|NumType=Ord 30 amod _ _ +30 touch touch NOUN NN Number=Sing 25 obl _ SpaceAfter=No +31 . . PUNCT . _ 11 punct _ _ + +# sent_id = 71 +# text = Only then can you create demand and stimulate consumption," she avers. +1 Only only ADV RB _ 2 advmod _ _ +2 then then ADV RB PronType=Dem 5 advmod _ _ +3 can can AUX MD VerbForm=Fin 5 aux _ _ +4 you you PRON PRP Case=Nom|Person=2|PronType=Prs 5 nsubj _ _ +5 create create VERB VB VerbForm=Inf 0 root _ _ +6 demand demand NOUN NN Number=Sing 13 compound _ _ +7 and and CCONJ CC _ 9 cc _ _ +8 stimulate stimulate NOUN NN Number=Sing 9 compound _ _ +9 consumption consumption NOUN NN Number=Sing 6 conj _ SpaceAfter=No +10 , , PUNCT , _ 13 punct _ SpaceAfter=No +11 " " PUNCT '' _ 13 punct _ _ +12 she she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 13 nsubj _ _ +13 avers avers VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 conj _ SpaceAfter=No +14 . . PUNCT . _ 5 punct _ _ + +# sent_id = 72 +# text = Behind the quest for innovation and change, there needs to be a great deal of R&D work, along with a keen nose for the market. +1 Behind behind ADP IN _ 3 case _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 quest quest NOUN NN Number=Sing 10 obl _ _ +4 for for ADP IN _ 5 case _ _ +5 innovation innovation NOUN NN Number=Sing 3 nmod _ _ +6 and and CCONJ CC _ 7 cc _ _ +7 change change NOUN NN Number=Sing 5 conj _ SpaceAfter=No +8 , , PUNCT , _ 10 punct _ _ +9 there there PRON EX _ 10 expl _ _ +10 needs need VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +11 to to PART TO _ 15 mark _ _ +12 be be AUX VB VerbForm=Inf 15 cop _ _ +13 a a DET DT Definite=Ind|PronType=Art 15 det _ _ +14 great great ADJ JJ Degree=Pos 15 amod _ _ +15 deal deal NOUN NN Number=Sing 10 xcomp _ _ +16 of of ADP IN _ 18 case _ _ +17 R&D R&d NOUN NN Number=Sing 18 compound _ _ +18 work work NOUN NN Number=Sing 15 nmod _ SpaceAfter=No +19 , , PUNCT , _ 15 punct _ _ +20 along along ADP IN _ 24 case _ _ +21 with with ADP IN _ 24 case _ _ +22 a a DET DT Definite=Ind|PronType=Art 24 det _ _ +23 keen keen ADJ JJ Degree=Pos 24 amod _ _ +24 nose nose NOUN NN Number=Sing 15 nmod _ _ +25 for for ADP IN _ 27 case _ _ +26 the the DET DT Definite=Def|PronType=Art 27 det _ _ +27 market market NOUN NN Number=Sing 24 nmod _ SpaceAfter=No +28 . . PUNCT . _ 10 punct _ _ + +# sent_id = 73 +# text = But 95 % of Taiwan's textile firms are small or medium-sized enterprises. +1 But but CCONJ CC _ 3 cc _ _ +2 95 95 NUM CD NumType=Card 3 nummod _ _ +3 % % SYM NN Number=Sing 15 nsubj _ _ +4 of of ADP IN _ 8 case _ _ +5 Taiwan Taiwan PROPN NNP Number=Sing 8 nmod:poss _ SpaceAfter=No +6 's 's PART POS _ 5 case _ _ +7 textile textile NOUN NN Number=Sing 8 compound _ _ +8 firms firm NOUN NNS Number=Plur 3 nmod _ _ +9 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 15 cop _ _ +10 small small ADJ JJ Degree=Pos 15 amod _ _ +11 or or CCONJ CC _ 14 cc _ _ +12 medium medium ADJ JJ Degree=Pos 14 obl:npmod _ SpaceAfter=No +13 - - PUNCT HYPH _ 14 punct _ SpaceAfter=No +14 sized size VERB VBN Tense=Past|VerbForm=Part 10 conj _ _ +15 enterprises enterprise NOUN NNS Number=Plur 0 root _ SpaceAfter=No +16 . . PUNCT . _ 15 punct _ _ + +# sent_id = 74 +# text = They do not have the facilities or staff to carry on R&D, and they lack the perspective to take a broad view of worldwide trends. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 4 nsubj _ _ +2 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux _ _ +3 not not PART RB _ 4 advmod _ _ +4 have have VERB VB VerbForm=Inf 0 root _ _ +5 the the DET DT Definite=Def|PronType=Art 6 det _ _ +6 facilities facility NOUN NNS Number=Plur 4 obj _ _ +7 or or CCONJ CC _ 8 cc _ _ +8 staff staff NOUN NN Number=Sing 6 conj _ _ +9 to to PART TO _ 10 mark _ _ +10 carry carry VERB VB VerbForm=Inf 4 xcomp _ _ +11 on on ADP IN _ 12 case _ _ +12 R&D R&D NOUN NN Number=Sing 10 obl _ SpaceAfter=No +13 , , PUNCT , _ 16 punct _ _ +14 and and CCONJ CC _ 16 cc _ _ +15 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 16 nsubj _ _ +16 lack lack VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 conj _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 perspective perspective NOUN NN Number=Sing 16 obj _ _ +19 to to PART TO _ 20 mark _ _ +20 take take VERB VB VerbForm=Inf 16 xcomp _ _ +21 a a DET DT Definite=Ind|PronType=Art 23 det _ _ +22 broad broad ADJ JJ Degree=Pos 23 amod _ _ +23 view view NOUN NN Number=Sing 20 obj _ _ +24 of of ADP IN _ 26 case _ _ +25 worldwide worldwide ADJ JJ Degree=Pos 26 amod _ _ +26 trends trend NOUN NNS Number=Plur 23 nmod _ SpaceAfter=No +27 . . PUNCT . _ 4 punct _ _ + +# sent_id = 75 +# text = Hence in the upgrading process, organizations like the CTI will play an increasingly important role. +1 Hence hence ADV RB _ 5 advmod _ _ +2 in in ADP IN _ 5 case _ _ +3 the the DET DT Definite=Def|PronType=Art 5 det _ _ +4 upgrading upgrading NOUN NN Number=Sing 5 compound _ _ +5 process process NOUN NN Number=Sing 12 obl _ SpaceAfter=No +6 , , PUNCT , _ 12 punct _ _ +7 organizations organization NOUN NNS Number=Plur 12 nsubj _ _ +8 like like ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 CTI CTI PROPN NNP Number=Sing 7 nmod _ _ +11 will will AUX MD VerbForm=Fin 12 aux _ _ +12 play play VERB VB VerbForm=Inf 0 root _ _ +13 an a DET DT Definite=Ind|PronType=Art 16 det _ _ +14 increasingly increasingly ADV RB _ 15 advmod _ _ +15 important important ADJ JJ Degree=Pos 16 amod _ _ +16 role role NOUN NN Number=Sing 12 obj _ SpaceAfter=No +17 . . PUNCT . _ 12 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 76 +# text = Flexibility v. +1 Flexibility flexibility NOUN NN Number=Sing 2 compound _ _ +2 v. v. NOUN NN Number=Sing 0 root _ _ + +# sent_id = 77 +# text = perfectionism +1 perfectionism perfectionism NOUN NN Number=Sing 0 root _ _ + +# sent_id = 78 +# text = However, G-Fun Industrial Corporation general manager Tsai Chiu-hsiung, who worked at the CTI for many years before setting up in business for himself in late 1998, has had a different experience. +1 However however ADV RB _ 8 advmod _ SpaceAfter=No +2 , , PUNCT , _ 8 punct _ _ +3 G- G- SYM NFP _ 8 punct _ SpaceAfter=No +4 Fun fun PROPN NNP Number=Sing 5 compound _ _ +5 Industrial industrial PROPN NNP Number=Sing 6 compound _ _ +6 Corporation Corporation PROPN NNP Number=Sing 8 compound _ _ +7 general general ADJ JJ Degree=Pos 8 amod _ _ +8 manager manager NOUN NN Number=Sing 34 nsubj _ _ +9 Tsai Tsai PROPN NNP Number=Sing 8 appos _ _ +10 Chiu Chiu PROPN NNP Number=Sing 9 flat _ SpaceAfter=No +11 - - PUNCT , _ 9 punct _ SpaceAfter=No +12 hsiung hsiung NOUN NN Number=Sing 9 flat _ SpaceAfter=No +13 , , PUNCT , _ 8 punct _ _ +14 who who PRON WP PronType=Rel 15 nsubj _ _ +15 worked work VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 8 acl:relcl _ _ +16 at at ADP IN _ 18 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 CTI CTI NOUN NN Number=Sing 15 obl _ _ +19 for for ADP IN _ 21 case _ _ +20 many many ADJ JJ Degree=Pos 21 amod _ _ +21 years year NOUN NNS Number=Plur 15 obl _ _ +22 before before SCONJ IN _ 23 mark _ _ +23 setting set VERB VBG VerbForm=Ger 15 advcl _ _ +24 up up ADP RP _ 23 compound:prt _ _ +25 in in ADP IN _ 26 case _ _ +26 business business NOUN NN Number=Sing 23 obl _ _ +27 for for ADP IN _ 28 case _ _ +28 himself himself PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs|Reflex=Yes 15 obl _ _ +29 in in ADP IN _ 31 case _ _ +30 late late ADJ JJ Degree=Pos 31 amod _ _ +31 1998 1998 NUM CD NumType=Card 15 obl _ SpaceAfter=No +32 , , PUNCT , _ 34 punct _ _ +33 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 34 aux _ _ +34 had have VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +35 a a DET DT Definite=Ind|PronType=Art 37 det _ _ +36 different different ADJ JJ Degree=Pos 37 amod _ _ +37 experience experience NOUN NN Number=Sing 34 obj _ SpaceAfter=No +38 . . PUNCT . _ 34 punct _ _ + +# sent_id = 79 +# text = While at the CTI, Tsai headed a project to develop the technology for making breathable waterproof fabrics. +1 While while NOUN NN Number=Sing 0 root _ _ +2 at at ADP IN _ 4 case _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 CTI CTI PROPN NNP Number=Sing 1 nmod _ SpaceAfter=No +5 , , PUNCT , _ 1 punct _ _ +6 Tsai Tsai PROPN NNP Number=Sing 7 nsubj _ _ +7 headed head VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 1 parataxis _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 project project NOUN NN Number=Sing 7 obj _ _ +10 to to PART TO _ 11 mark _ _ +11 develop develop VERB VB VerbForm=Inf 9 acl _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 technology technology NOUN NN Number=Sing 11 obj _ _ +14 for for SCONJ IN _ 15 mark _ _ +15 making make VERB VBG VerbForm=Ger 11 advcl _ _ +16 breathable breathable ADJ JJ Degree=Pos 18 amod _ _ +17 waterproof waterproof ADJ JJ Degree=Pos 18 amod _ _ +18 fabrics fabric NOUN NNS Number=Plur 15 obj _ SpaceAfter=No +19 . . PUNCT . _ 1 punct _ _ + +# sent_id = 80 +# text = At that time, he says, few manufacturers in Taiwan were both interested in the technology and competent to apply it. +1 At at ADP IN _ 3 case _ _ +2 that that DET DT Number=Sing|PronType=Dem 3 det _ _ +3 time time NOUN NN Number=Sing 6 obl _ SpaceAfter=No +4 , , PUNCT , _ 6 punct _ _ +5 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +6 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 few few ADJ JJ Degree=Pos 9 amod _ _ +9 manufacturers manufacturer NOUN NNS Number=Plur 14 nsubj _ _ +10 in in ADP IN _ 11 case _ _ +11 Taiwan Taiwan PROPN NNP Number=Sing 9 nmod _ _ +12 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 14 cop _ _ +13 both both ADV RB _ 14 advmod _ _ +14 interested interested ADJ JJ Degree=Pos 6 ccomp _ _ +15 in in ADP IN _ 17 case _ _ +16 the the DET DT Definite=Def|PronType=Art 17 det _ _ +17 technology technology NOUN NN Number=Sing 14 obl _ _ +18 and and CCONJ CC _ 19 cc _ _ +19 competent competent ADJ JJ Degree=Pos 17 conj _ _ +20 to to PART TO _ 21 mark _ _ +21 apply apply VERB VB VerbForm=Inf 14 advcl _ _ +22 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 21 obj _ SpaceAfter=No +23 . . PUNCT . _ 6 punct _ _ + +# sent_id = 81 +# text = Later, when his team had developed the process, many firms expressed an interest. +1 Later later ADV RB _ 7 advmod _ SpaceAfter=No +2 , , PUNCT , _ 7 punct _ _ +3 when when ADV WRB PronType=Int 7 mark _ _ +4 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 5 nmod:poss _ _ +5 team team NOUN NN Number=Sing 7 nsubj _ _ +6 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 7 aux _ _ +7 developed develop VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 process process NOUN NN Number=Sing 7 obj _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 many many ADJ JJ Degree=Pos 12 amod _ _ +12 firms firm NOUN NNS Number=Plur 9 appos _ _ +13 expressed express VERB VBN Tense=Past|VerbForm=Part 12 acl _ _ +14 an a DET DT Definite=Ind|PronType=Art 15 det _ _ +15 interest interest NOUN NN Number=Sing 13 obj _ SpaceAfter=No +16 . . PUNCT . _ 7 punct _ _ + +# sent_id = 82 +# text = But once they had acquired the technology, many lost money or even went out of business-the results were far from ideal." +1 But but CCONJ CC _ 11 cc _ _ +2 once once SCONJ IN _ 5 mark _ _ +3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 5 nsubj _ _ +4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 aux _ _ +5 acquired acquire VERB VBN Tense=Past|VerbForm=Part 11 advcl _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 technology technology NOUN NN Number=Sing 5 obj _ SpaceAfter=No +8 , , PUNCT , _ 11 punct _ _ +9 many many ADJ JJ Degree=Pos 11 amod _ _ +10 lost lose ADJ JJ Degree=Pos 11 amod _ _ +11 money money NOUN NN Number=Sing 0 root _ _ +12 or or CCONJ CC _ 14 cc _ _ +13 even even ADV RB _ 14 advmod _ _ +14 went go VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 conj _ _ +15 out out ADP IN _ 17 case _ _ +16 of of ADP IN _ 17 case _ _ +17 business business NOUN NN Number=Sing 14 obl _ SpaceAfter=No +18 - - PUNCT , _ 11 punct _ SpaceAfter=No +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 results result NOUN NNS Number=Plur 24 nsubj _ _ +21 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 24 cop _ _ +22 far far ADV RB Degree=Pos 24 advmod _ _ +23 from from ADP IN _ 24 case _ _ +24 ideal ideal ADJ JJ Degree=Pos 11 parataxis _ SpaceAfter=No +25 . . PUNCT . _ 11 punct _ SpaceAfter=No +26 " " PUNCT '' _ 11 punct _ _ + +# sent_id = 83 +# text = At that time I felt very frustrated. +1 At at ADP IN _ 3 case _ _ +2 that that DET DT Number=Sing|PronType=Dem 3 det _ _ +3 time time NOUN NN Number=Sing 5 obl _ _ +4 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 5 nsubj _ _ +5 felt feel VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +6 very very ADV RB _ 7 advmod _ _ +7 frustrated frustrated ADJ JJ Degree=Pos 5 xcomp _ SpaceAfter=No +8 . . PUNCT . _ 5 punct _ _ + +# sent_id = 84 +# text = It was clearly a good process, but after buying the technology for a nominal sum, many companies did n't value it," says Tsai Chiu-hsiung. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +2 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 cop _ _ +3 clearly clearly ADV RB _ 6 advmod _ _ +4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +5 good good ADJ JJ Degree=Pos 6 amod _ _ +6 process process NOUN NN Number=Sing 26 ccomp _ SpaceAfter=No +7 , , PUNCT , _ 22 punct _ _ +8 but but CCONJ CC _ 22 cc _ _ +9 after after SCONJ IN _ 10 mark _ _ +10 buying buy VERB VBG VerbForm=Ger 22 advcl _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 technology technology NOUN NN Number=Sing 10 obj _ _ +13 for for ADP IN _ 16 case _ _ +14 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +15 nominal nominal ADJ JJ Degree=Pos 16 amod _ _ +16 sum sum NOUN NN Number=Sing 10 obl _ SpaceAfter=No +17 , , PUNCT , _ 22 punct _ _ +18 many many ADJ JJ Degree=Pos 19 amod _ _ +19 companies company NOUN NNS Number=Plur 22 nsubj _ _ +20 did do AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 22 aux _ _ +21 n't not PART RB _ 22 advmod _ _ +22 value value VERB VB VerbForm=Inf 6 conj _ _ +23 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 22 obj _ SpaceAfter=No +24 , , PUNCT , _ 26 punct _ SpaceAfter=No +25 " " PUNCT '' _ 26 punct _ _ +26 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +27 Tsai Tsai PROPN NNP Number=Sing 30 compound _ _ +28 Chiu Chiu PROPN NNP Number=Sing 27 flat _ SpaceAfter=No +29 - - PUNCT HYPH _ 30 punct _ SpaceAfter=No +30 hsiung hsiung NOUN NNS Number=Plur 26 ccomp _ SpaceAfter=No +31 . . PUNCT . _ 26 punct _ _ + +# sent_id = 85 +# text = On the one hand, the market for breathable waterproof fabrics was not yet mature, and too many companies entering all at once knocked the bottom out of the market; on the other, manufacturers in Taiwan still lack the concept of dedicating production equipment to one product. +1 On on ADP IN _ 4 case _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 one one NUM CD NumType=Card 4 nummod _ _ +4 hand hand NOUN NN Number=Sing 15 obl _ SpaceAfter=No +5 , , PUNCT , _ 15 punct _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 market market NOUN NN Number=Sing 15 nsubj _ _ +8 for for ADP IN _ 11 case _ _ +9 breathable breathable ADJ JJ Degree=Pos 11 amod _ _ +10 waterproof waterproof ADJ JJ Degree=Pos 11 amod _ _ +11 fabrics fabric NOUN NNS Number=Plur 7 nmod _ _ +12 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 15 cop _ _ +13 not not PART RB _ 15 advmod _ _ +14 yet yet ADV RB _ 15 advmod _ _ +15 mature mature ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +16 , , PUNCT , _ 20 punct _ _ +17 and and CCONJ CC _ 20 cc _ _ +18 too too ADV RB _ 19 advmod _ _ +19 many many ADJ JJ Degree=Pos 20 amod _ _ +20 companies company NOUN NNS Number=Plur 15 conj _ _ +21 entering enter VERB VBG VerbForm=Ger 20 acl _ _ +22 all all ADV RB _ 21 advmod _ _ +23 at at ADV RB _ 24 advmod _ _ +24 once once ADV RB NumType=Mult 25 advmod _ _ +25 knocked knocke VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 21 conj _ _ +26 the the DET DT Definite=Def|PronType=Art 27 det _ _ +27 bottom bottom NOUN NN Number=Sing 25 obj _ _ +28 out out ADP IN _ 31 case _ _ +29 of of ADP IN _ 31 case _ _ +30 the the DET DT Definite=Def|PronType=Art 31 det _ _ +31 market market NOUN NN Number=Sing 25 obl _ SpaceAfter=No +32 ; ; PUNCT , _ 15 punct _ _ +33 on on ADP IN _ 35 case _ _ +34 the the DET DT Definite=Def|PronType=Art 35 det _ _ +35 other other ADJ JJ Degree=Pos 41 obl _ SpaceAfter=No +36 , , PUNCT , _ 41 punct _ _ +37 manufacturers manufacturer NOUN NNS Number=Plur 41 nsubj _ _ +38 in in ADP IN _ 39 case _ _ +39 Taiwan Taiwan PROPN NNP Number=Sing 37 nmod _ _ +40 still still ADV RB _ 41 advmod _ _ +41 lack lack VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 15 parataxis _ _ +42 the the DET DT Definite=Def|PronType=Art 43 det _ _ +43 concept concept NOUN NN Number=Sing 41 obj _ _ +44 of of SCONJ IN _ 45 mark _ _ +45 dedicating dedicating VERB VBG VerbForm=Ger 43 acl _ _ +46 production production NOUN NN Number=Sing 47 compound _ _ +47 equipment equipment NOUN NN Number=Sing 45 obj _ _ +48 to to ADP IN _ 50 case _ _ +49 one one NUM CD NumType=Card 50 nummod _ _ +50 product product NOUN NN Number=Sing 45 obl _ SpaceAfter=No +51 . . PUNCT . _ 15 punct _ _ + +# sent_id = 86 +# text = For fear of putting all their eggs in one basket, many firms are in the habit of producing whatever they can get orders for: today it may be waterproof fabric, tomorrow cloth for tarpaulins, and next month purses. +1 For for ADP IN _ 2 case _ _ +2 fear fear NOUN NN Number=Sing 17 obl _ _ +3 of of SCONJ IN _ 4 mark _ _ +4 putting put VERB VBG VerbForm=Ger 2 acl _ _ +5 all all DET PDT _ 7 det:predet _ _ +6 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 7 nmod:poss _ _ +7 eggs egg NOUN NNS Number=Plur 4 obj _ _ +8 in in ADP IN _ 10 case _ _ +9 one one NUM CD NumType=Card 10 nummod _ _ +10 basket basket NOUN NN Number=Sing 4 obl _ SpaceAfter=No +11 , , PUNCT , _ 17 punct _ _ +12 many many ADJ JJ Degree=Pos 13 amod _ _ +13 firms firm NOUN NNS Number=Plur 17 nsubj _ _ +14 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 17 cop _ _ +15 in in ADP IN _ 17 case _ _ +16 the the DET DT Definite=Def|PronType=Art 17 det _ _ +17 habit habit NOUN NN Number=Sing 23 obl _ _ +18 of of SCONJ IN _ 19 mark _ _ +19 producing produce VERB VBG VerbForm=Ger 23 advcl _ _ +20 whatever whatever PRON WP PronType=Int 19 obj _ _ +21 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 23 nsubj _ _ +22 can can AUX MD VerbForm=Fin 23 aux _ _ +23 get get VERB VB VerbForm=Inf 0 root _ _ +24 orders order NOUN NNS Number=Plur 23 obj _ _ +25 for for ADP IN _ 27 case _ SpaceAfter=No +26 : : PUNCT : _ 27 punct _ _ +27 today today NOUN NN Number=Sing 23 obl _ _ +28 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 32 nsubj _ _ +29 may may AUX MD VerbForm=Fin 32 aux _ _ +30 be be AUX VB VerbForm=Inf 32 cop _ _ +31 waterproof waterproof ADJ JJ Degree=Pos 32 amod _ _ +32 fabric fabric NOUN NN Number=Sing 23 parataxis _ SpaceAfter=No +33 , , PUNCT , _ 32 punct _ _ +34 tomorrow tomorrow NOUN NN Number=Sing 35 compound _ _ +35 cloth cloth NOUN NN Number=Sing 32 conj _ _ +36 for for ADP IN _ 37 case _ _ +37 tarpaulins tarpaulin NOUN NNS Number=Plur 35 nmod _ SpaceAfter=No +38 , , PUNCT , _ 42 punct _ _ +39 and and CCONJ CC _ 42 cc _ _ +40 next next ADJ JJ Degree=Pos 42 amod _ _ +41 month month NOUN NN Number=Sing 42 compound _ _ +42 purses purse NOUN NNS Number=Plur 32 conj _ SpaceAfter=No +43 . . PUNCT . _ 23 punct _ _ + +# sent_id = 87 +# text = Their product mix is very varied, with frequent switching. +1 Their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +2 product product NOUN NN Number=Sing 3 compound _ _ +3 mix mix NOUN NN Number=Sing 6 nsubj _ _ +4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +5 very very ADV RB _ 6 advmod _ _ +6 varied varied ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 with with ADP IN _ 10 case _ _ +9 frequent frequent ADJ JJ Degree=Pos 10 amod _ _ +10 switching switching NOUN NN Number=Sing 6 obl _ SpaceAfter=No +11 . . PUNCT . _ 6 punct _ _ + +# sent_id = 88 +# text = This makes quality control difficult, so that when firms are faced with a technically demanding product, defects may easily arise. +1 This this PRON DT Number=Sing|PronType=Dem 2 nsubj _ _ +2 makes make VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 quality quality ADJ JJ Degree=Pos 4 amod _ _ +4 control control NOUN NN Number=Sing 2 obj _ _ +5 difficult difficult ADJ JJ Degree=Pos 4 amod _ SpaceAfter=No +6 , , PUNCT , _ 2 punct _ _ +7 so so ADV RB _ 22 advmod _ _ +8 that that SCONJ IN _ 22 mark _ _ +9 when when ADV WRB PronType=Int 12 mark _ _ +10 firms firm NOUN NNS Number=Plur 12 nsubj:pass _ _ +11 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 12 aux:pass _ _ +12 faced face VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 22 advcl _ _ +13 with with ADP IN _ 17 case _ _ +14 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +15 technically technically ADV RB _ 16 advmod _ _ +16 demanding demand ADJ JJ Degree=Pos 17 amod _ _ +17 product product NOUN NN Number=Sing 12 obl _ SpaceAfter=No +18 , , PUNCT , _ 22 punct _ _ +19 defects defect NOUN NNS Number=Plur 22 nsubj _ _ +20 may may AUX MD VerbForm=Fin 22 aux _ _ +21 easily easily ADV RB _ 22 advmod _ _ +22 arise arise VERB VB VerbForm=Inf 2 advcl _ SpaceAfter=No +23 . . PUNCT . _ 2 punct _ _ + +# sent_id = 89 +# text = Worse, they are often unable even to identify the cause."' Flexibility' helps SMEs survive in difficult times, but it is not conducive to the perfectionist attitudes needed when upgrading." +1 Worse worse ADV RBR Degree=Cmp 6 advmod _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 6 nsubj _ _ +4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 cop _ _ +5 often often ADV RB _ 6 advmod _ _ +6 unable unable ADJ JJ Degree=Pos 15 amod _ _ +7 even even ADV RB _ 9 advmod _ _ +8 to to PART TO _ 9 mark _ _ +9 identify identify VERB VB VerbForm=Inf 6 advcl _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 cause cause NOUN NN Number=Sing 9 obj _ SpaceAfter=No +12 . . PUNCT . _ 6 punct _ SpaceAfter=No +13 " " PUNCT '' _ 15 punct _ SpaceAfter=No +14 ' ' PUNCT `` _ 15 punct _ _ +15 Flexibility flexibility NOUN NN Number=Sing 17 compound _ SpaceAfter=No +16 ' ' PUNCT '' _ 15 punct _ _ +17 helps help VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +18 SMEs SMEs PROPN NNP Number=Sing 17 obj _ _ +19 survive survive VERB VB VerbForm=Inf 17 xcomp _ _ +20 in in ADP IN _ 22 case _ _ +21 difficult difficult ADJ JJ Degree=Pos 22 amod _ _ +22 times time NOUN NNS Number=Plur 19 obl _ SpaceAfter=No +23 , , PUNCT , _ 28 punct _ _ +24 but but CCONJ CC _ 28 cc _ _ +25 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 28 nsubj _ _ +26 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 28 cop _ _ +27 not not PART RB _ 28 advmod _ _ +28 conducive conducive ADJ JJ Degree=Pos 17 conj _ _ +29 to to ADP IN _ 32 case _ _ +30 the the DET DT Definite=Def|PronType=Art 32 det _ _ +31 perfectionist perfectionist NOUN NN Number=Sing 32 compound _ _ +32 attitudes attitude NOUN NNS Number=Plur 33 nsubj _ _ +33 needed need VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 28 acl:relcl _ _ +34 when when ADV WRB PronType=Int 35 mark _ _ +35 upgrading upgrading VERB VBG VerbForm=Ger 33 advcl _ SpaceAfter=No +36 . . PUNCT . _ 17 punct _ SpaceAfter=No +37 " " PUNCT '' _ 17 punct _ _ + +# sent_id = 90 +# text = Tsai Chiu-hsiung, who urges companies to" know when to give things up," has now been in business for himself for a year, and his is the only firm in Taiwan which specializes in applying breathable waterproof coatings to fabrics. +1 Tsai Tsai PROPN NNP Number=Sing 0 root _ _ +2 Chiu Chiu PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +3 - - PUNCT , _ 1 punct _ SpaceAfter=No +4 hsiung hsiung NOUN NN Number=Sing 1 flat _ SpaceAfter=No +5 , , PUNCT , _ 1 punct _ _ +6 who who PRON WP PronType=Rel 7 nsubj _ _ +7 urges urge VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 acl:relcl _ _ +8 companies company NOUN NNS Number=Plur 7 obj _ _ +9 to to PART TO _ 11 mark _ SpaceAfter=No +10 " " PUNCT `` _ 11 punct _ _ +11 know know VERB VB VerbForm=Inf 8 acl _ _ +12 when when ADV WRB PronType=Int 14 mark _ _ +13 to to PART TO _ 14 mark _ _ +14 give give VERB VB VerbForm=Inf 11 advcl _ _ +15 things thing NOUN NNS Number=Plur 14 obj _ _ +16 up up ADP RP _ 14 compound:prt _ SpaceAfter=No +17 , , PUNCT , _ 23 punct _ SpaceAfter=No +18 " " PUNCT '' _ 23 punct _ _ +19 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 23 aux _ _ +20 now now ADV RB _ 23 advmod _ _ +21 been be AUX VBN Tense=Past|VerbForm=Part 23 cop _ _ +22 in in ADP IN _ 23 case _ _ +23 business business NOUN NN Number=Sing 1 conj _ _ +24 for for ADP IN _ 25 case _ _ +25 himself himself PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs|Reflex=Yes 23 nmod _ _ +26 for for ADP IN _ 28 case _ _ +27 a a DET DT Definite=Ind|PronType=Art 28 det _ _ +28 year year NOUN NN Number=Sing 23 nmod _ SpaceAfter=No +29 , , PUNCT , _ 35 punct _ _ +30 and and CCONJ CC _ 35 cc _ _ +31 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 35 nsubj _ _ +32 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 35 cop _ _ +33 the the DET DT Definite=Def|PronType=Art 35 det _ _ +34 only only ADJ JJ Degree=Pos 35 amod _ _ +35 firm firm NOUN NN Number=Sing 1 conj _ _ +36 in in ADP IN _ 37 case _ _ +37 Taiwan Taiwan PROPN NNP Number=Sing 35 nmod _ _ +38 which which PRON WDT PronType=Rel 39 nsubj _ _ +39 specializes specialize VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 1 acl:relcl _ _ +40 in in SCONJ IN _ 41 mark _ _ +41 applying apply VERB VBG VerbForm=Ger 39 advcl _ _ +42 breathable breathable ADJ JJ Degree=Pos 44 amod _ _ +43 waterproof waterproof ADJ JJ Degree=Pos 44 amod _ _ +44 coatings coating NOUN NNS Number=Plur 41 obj _ _ +45 to to ADP IN _ 46 case _ _ +46 fabrics fabric NOUN NNS Number=Plur 44 nmod _ SpaceAfter=No +47 . . PUNCT . _ 1 punct _ _ + +# sent_id = 91 +# text = With more orders than he can handle, he is now preparing to build a new factory at Touliu in Yunlin County. +1 With with ADP IN _ 3 case _ _ +2 more more ADJ JJR Degree=Cmp 3 amod _ _ +3 orders order NOUN NNS Number=Plur 12 obl _ _ +4 than than SCONJ IN _ 7 mark _ _ +5 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 7 nsubj _ _ +6 can can AUX MD VerbForm=Fin 7 aux _ _ +7 handle handle VERB VB VerbForm=Inf 12 advcl _ SpaceAfter=No +8 , , PUNCT , _ 12 punct _ _ +9 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 12 nsubj _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 aux _ _ +11 now now ADV RB _ 12 advmod _ _ +12 preparing prepare VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +13 to to PART TO _ 14 mark _ _ +14 build build VERB VB VerbForm=Inf 12 xcomp _ _ +15 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +16 new new ADJ JJ Degree=Pos 17 amod _ _ +17 factory factory NOUN NN Number=Sing 14 obj _ _ +18 at at ADP IN _ 19 case _ _ +19 Touliu Touliu PROPN NNP Number=Sing 14 obl _ _ +20 in in ADP IN _ 22 case _ _ +21 Yunlin Yunlin PROPN NNP Number=Sing 22 compound _ _ +22 County County PROPN NNP Number=Sing 14 obl _ SpaceAfter=No +23 . . PUNCT . _ 12 punct _ _ + +# sent_id = 92 +# text = G-Fun's micropore breathable coating is a compound containing special water-soluble granules which create tiny pores in the fabric surface. +1 G- G- SYM NFP _ 2 punct _ SpaceAfter=No +2 Fun fun PROPN NNP Number=Sing 6 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 micropore micropore ADJ JJ Degree=Pos 6 amod _ _ +5 breathable breathable ADJ JJ Degree=Pos 6 amod _ _ +6 coating coating NOUN NN Number=Sing 9 nsubj _ _ +7 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ _ +8 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +9 compound compound NOUN NN Number=Sing 0 root _ _ +10 containing contain VERB VBG VerbForm=Ger 9 acl _ _ +11 special special ADJ JJ Degree=Pos 15 amod _ _ +12 water water NOUN NN Number=Sing 14 obl:npmod _ SpaceAfter=No +13 - - PUNCT HYPH _ 14 punct _ SpaceAfter=No +14 soluble soluble ADJ JJ Degree=Pos 15 amod _ _ +15 granules granule NOUN NNS Number=Plur 10 obj _ _ +16 which which PRON WDT PronType=Rel 17 nsubj _ _ +17 create create VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 15 acl:relcl _ _ +18 tiny tiny ADJ JJ Degree=Pos 19 amod _ _ +19 pores pore NOUN NNS Number=Plur 17 obj _ _ +20 in in ADP IN _ 23 case _ _ +21 the the DET DT Definite=Def|PronType=Art 23 det _ _ +22 fabric fabric NOUN NN Number=Sing 23 compound _ _ +23 surface surface NOUN NN Number=Sing 17 obl _ SpaceAfter=No +24 . . PUNCT . _ 9 punct _ _ + +# sent_id = 93 +# text = Sweat can evaporate through these pores without being absorbed by the fabric, improving comfort compared with traditional hydrophilic fabrics which when worn in the rain start sticking to the body after a time. +1 Sweat sweat NOUN NN Number=Sing 3 nsubj _ _ +2 can can AUX MD VerbForm=Fin 3 aux _ _ +3 evaporate evaporate VERB VB VerbForm=Inf 0 root _ _ +4 through through ADP IN _ 6 case _ _ +5 these these DET DT Number=Plur|PronType=Dem 6 det _ _ +6 pores pore NOUN NNS Number=Plur 3 obl _ _ +7 without without SCONJ IN _ 9 mark _ _ +8 being be AUX VBG VerbForm=Ger 9 aux:pass _ _ +9 absorbed absorb VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 3 advcl _ _ +10 by by ADP IN _ 12 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 fabric fabric NOUN NN Number=Sing 9 obl _ SpaceAfter=No +13 , , PUNCT , _ 3 punct _ _ +14 improving improve VERB VBG VerbForm=Ger 15 amod _ _ +15 comfort comfort NOUN NN Number=Sing 3 obj _ _ +16 compared compare VERB VBN Tense=Past|VerbForm=Part 15 acl _ _ +17 with with ADP IN _ 20 case _ _ +18 traditional traditional ADJ JJ Degree=Pos 20 amod _ _ +19 hydrophilic hydrophilic ADJ JJ Degree=Pos 20 amod _ _ +20 fabrics fabric NOUN NNS Number=Plur 16 obl _ _ +21 which which PRON WDT PronType=Rel 23 nsubj _ _ +22 when when ADV WRB PronType=Int 23 mark _ _ +23 worn wear VERB VBN Tense=Past|VerbForm=Part 20 acl:relcl _ _ +24 in in ADP IN _ 27 case _ _ +25 the the DET DT Definite=Def|PronType=Art 27 det _ _ +26 rain rain NOUN NN Number=Sing 27 compound _ _ +27 start start NOUN NN Number=Sing 23 obl _ _ +28 sticking stick VERB VBG VerbForm=Ger 23 advcl _ _ +29 to to ADP IN _ 31 case _ _ +30 the the DET DT Definite=Def|PronType=Art 31 det _ _ +31 body body NOUN NN Number=Sing 28 obl _ _ +32 after after ADP IN _ 34 case _ _ +33 a a DET DT Definite=Ind|PronType=Art 34 det _ _ +34 time time NOUN NN Number=Sing 28 obl _ SpaceAfter=No +35 . . PUNCT . _ 3 punct _ _ + +# sent_id = 94 +# text = G-Fun is also co-operating with the CTI to develop waterproof fabrics with both micropore and hydrophilic characteristics. +1 G G NOUN NN Number=Sing 3 compound _ SpaceAfter=No +2 - - PUNCT : _ 1 punct _ SpaceAfter=No +3 Fun fun PROPN NNP Number=Sing 6 nsubj _ _ +4 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 also also ADV RB _ 6 advmod _ _ +6 co-operating co-operating VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +7 with with ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 CTI Cto NOUN NN Number=Sing 6 obl _ _ +10 to to PART TO _ 11 mark _ _ +11 develop develop VERB VB VerbForm=Inf 6 advcl _ _ +12 waterproof waterproof ADJ JJ Degree=Pos 13 amod _ _ +13 fabrics fabric NOUN NNS Number=Plur 11 obj _ _ +14 with with ADP IN _ 19 case _ _ +15 both both CCONJ CC _ 16 cc:preconj _ _ +16 micropore micropore ADJ JJ Degree=Pos 19 amod _ _ +17 and and CCONJ CC _ 18 cc _ _ +18 hydrophilic hydrophilic ADJ JJ Degree=Pos 16 conj _ _ +19 characteristics characteristic NOUN NNS Number=Plur 13 nmod _ SpaceAfter=No +20 . . PUNCT . _ 6 punct _ _ + +# sent_id = 95 +# text = At present, most of the company's orders come from Europe and the USA, and are made into upmarket leisurewear such as climbing or golf apparel which sells for as much as NT$ 8,000 per garment. +1 At at ADP IN _ 2 case _ _ +2 present present ADJ JJ Degree=Pos 4 obl _ SpaceAfter=No +3 , , PUNCT , _ 4 punct _ _ +4 most most ADJ JJS Degree=Sup 0 root _ _ +5 of of ADP IN _ 9 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 company company NOUN NN Number=Sing 9 nmod:poss _ SpaceAfter=No +8 's 's PART POS _ 7 case _ _ +9 orders order NOUN NNS Number=Plur 4 obl _ _ +10 come come VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 acl _ _ +11 from from ADP IN _ 12 case _ _ +12 Europe Europe PROPN NNP Number=Sing 10 obl _ _ +13 and and CCONJ CC _ 15 cc _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 USA USA PROPN NNP Number=Sing 9 conj _ SpaceAfter=No +16 , , PUNCT , _ 19 punct _ _ +17 and and CCONJ CC _ 19 cc _ _ +18 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 aux:pass _ _ +19 made make VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 4 conj _ _ +20 into into ADP IN _ 22 case _ _ +21 upmarket upmarket NOUN NN Number=Sing 22 compound _ _ +22 leisurewear leisurewear NOUN NN Number=Sing 19 obl _ _ +23 such such ADJ JJ Degree=Pos 25 case _ _ +24 as as ADP IN _ 23 fixed _ _ +25 climbing climb NOUN NN Number=Sing 19 nmod _ _ +26 or or CCONJ CC _ 28 cc _ _ +27 golf golf NOUN NN Number=Sing 28 compound _ _ +28 apparel apparel NOUN NN Number=Sing 25 conj _ _ +29 which which PRON WDT PronType=Rel 30 nsubj _ _ +30 sells sell VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 25 acl:relcl _ _ +31 for for ADP IN _ 33 case _ _ +32 as as ADV RB _ 33 advmod _ _ +33 much much ADJ JJ Degree=Pos 30 obl _ _ +34 as as ADP IN _ 35 case _ _ +35 NT$ NT$ SYM $ _ 30 obl _ _ +36 8,000 8,000 NUM CD NumType=Card 35 nummod _ _ +37 per per ADP IN _ 38 case _ _ +38 garment garment NOUN NN Number=Sing 35 nmod _ SpaceAfter=No +39 . . PUNCT . _ 4 punct _ _ + +# sent_id = 96 +# text = Like TCH, G-Fun also hopes its products can help Taiwan's textile industry upgrade." +1 Like like ADP IN _ 2 case _ _ +2 TCH TCH PROPN NNP Number=Sing 6 compound _ SpaceAfter=No +3 , , PUNCT , _ 4 punct _ _ +4 G G PROPN NNP Number=Sing 2 conj _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 Fun fun PROPN NNP Number=Sing 8 nsubj _ _ +7 also also ADV RB _ 8 advmod _ _ +8 hopes hope VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +9 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 10 nmod:poss _ _ +10 products product NOUN NNS Number=Plur 12 nsubj _ _ +11 can can AUX MD VerbForm=Fin 12 aux _ _ +12 help help VERB VB VerbForm=Inf 8 ccomp _ _ +13 Taiwan Taiwan PROPN NNP Number=Sing 17 nmod:poss _ SpaceAfter=No +14 's 's PART POS _ 13 case _ _ +15 textile textile NOUN NN Number=Sing 16 compound _ _ +16 industry industry NOUN NN Number=Sing 17 compound _ _ +17 upgrade upgrade NOUN NN Number=Sing 12 obj _ SpaceAfter=No +18 . . PUNCT . _ 8 punct _ SpaceAfter=No +19 " " PUNCT '' _ 8 punct _ _ + +# sent_id = 97 +# text = The 21st century will be an age of leisure, and Taiwanese sport and leisurewear fabrics have long held first place worldwide. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 21st 21st ADJ JJ Degree=Pos|NumType=Ord 3 amod _ _ +3 century century NOUN NN Number=Sing 7 nsubj _ _ +4 will will AUX MD VerbForm=Fin 7 aux _ _ +5 be be AUX VB VerbForm=Inf 7 cop _ _ +6 an a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 age age NOUN NN Number=Sing 0 root _ _ +8 of of ADP IN _ 9 case _ _ +9 leisure leisure NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +10 , , PUNCT , _ 19 punct _ _ +11 and and CCONJ CC _ 19 cc _ _ +12 Taiwanese taiwanese ADJ JJ Degree=Pos 13 amod _ _ +13 sport sport NOUN NN Number=Sing 19 nsubj _ _ +14 and and CCONJ CC _ 16 cc _ _ +15 leisurewear leisurewear NOUN NN Number=Sing 16 compound _ _ +16 fabrics fabric NOUN NNS Number=Plur 13 conj _ _ +17 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 aux _ _ +18 long long ADV RB Degree=Pos 19 advmod _ _ +19 held held VERB VBN Tense=Past|VerbForm=Part 7 conj _ _ +20 first first ADJ JJ Degree=Pos|NumType=Ord 21 amod _ _ +21 place place NOUN NN Number=Sing 19 obj _ _ +22 worldwide worldwide ADV RB _ 21 advmod _ SpaceAfter=No +23 . . PUNCT . _ 7 punct _ _ + +# sent_id = 98 +# text = If they can all be given better breathability and water resistance, this will greatly increase their added value," says Tsai Chiu-hsiung. +1 If if SCONJ IN _ 6 mark _ _ +2 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 6 nsubj:pass _ _ +3 can can AUX MD VerbForm=Fin 6 aux _ _ +4 all all ADV RB _ 6 advmod _ _ +5 be be AUX VB VerbForm=Inf 6 aux:pass _ _ +6 given give VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 16 advcl _ _ +7 better better ADJ JJR Degree=Cmp 8 amod _ _ +8 breathability breathability NOUN NN Number=Sing 6 obj _ _ +9 and and CCONJ CC _ 11 cc _ _ +10 water water NOUN NN Number=Sing 11 compound _ _ +11 resistance resistance NOUN NN Number=Sing 8 conj _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 this this PRON DT Number=Sing|PronType=Dem 16 nsubj _ _ +14 will will AUX MD VerbForm=Fin 16 aux _ _ +15 greatly greatly ADV RB _ 16 advmod _ _ +16 increase increase VERB VB VerbForm=Inf 22 ccomp _ _ +17 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 19 nmod:poss _ _ +18 added add VERB VBN Tense=Past|VerbForm=Part 19 amod _ _ +19 value value NOUN NN Number=Sing 16 obj _ SpaceAfter=No +20 , , PUNCT , _ 22 punct _ SpaceAfter=No +21 " " PUNCT '' _ 22 punct _ _ +22 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +23 Tsai Tsai PROPN NNP Number=Sing 25 compound _ _ +24 Chiu- chiu- NOUN NN Number=Sing 25 compound _ SpaceAfter=No +25 hsiung hsiung NOUN NNS Number=Plur 22 nsubj _ SpaceAfter=No +26 . . PUNCT . _ 22 punct _ _ + +# sent_id = 99 +# text = Fabrics treated by G-Fun are currently a third cheaper than the same grades of fabric from Japan, and Tsai hopes he can attract Taiwanese firms to make greater use of them. +1 Fabrics Fabrics NOUN NNS Number=Plur 6 compound _ _ +2 treated treat VERB VBN Tense=Past|VerbForm=Part 1 acl _ _ +3 by by ADP IN _ 4 case _ _ +4 G G PROPN NNP Number=Sing 2 obl _ SpaceAfter=No +5 - - PUNCT HYPH _ 1 punct _ SpaceAfter=No +6 Fun fun PROPN NNP Number=Sing 11 nsubj _ _ +7 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 cop _ _ +8 currently currently ADV RB _ 11 advmod _ _ +9 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +10 third third ADJ JJ Degree=Pos|NumType=Ord 11 amod _ _ +11 cheaper cheaper ADJ JJR Degree=Cmp 0 root _ _ +12 than than ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 same same ADJ JJ Degree=Pos 15 amod _ _ +15 grades grade NOUN NNS Number=Plur 11 obl _ _ +16 of of ADP IN _ 17 case _ _ +17 fabric fabric NOUN NN Number=Sing 15 nmod _ _ +18 from from ADP IN _ 19 case _ _ +19 Japan Japan PROPN NNP Number=Sing 17 nmod _ SpaceAfter=No +20 , , PUNCT , _ 23 punct _ _ +21 and and CCONJ CC _ 23 cc _ _ +22 Tsai Tsai PROPN NNP Number=Sing 23 nsubj _ _ +23 hopes hope VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 conj _ _ +24 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 26 nsubj _ _ +25 can can AUX MD VerbForm=Fin 26 aux _ _ +26 attract attract VERB VB VerbForm=Inf 23 ccomp _ _ +27 Taiwanese taiwanese ADJ JJ Degree=Pos 28 amod _ _ +28 firms firm NOUN NNS Number=Plur 26 obj _ _ +29 to to PART TO _ 30 mark _ _ +30 make make VERB VB VerbForm=Inf 26 advcl _ _ +31 greater greater ADJ JJR Degree=Cmp 32 amod _ _ +32 use use NOUN NN Number=Sing 30 obj _ _ +33 of of ADP IN _ 34 case _ _ +34 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 32 nmod _ SpaceAfter=No +35 . . PUNCT . _ 11 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 100 +# text = A short-term view Another type of new fabric which is in great demand is wicking fabric, based on fibers with a special cross-section. +1 A a DET DT Definite=Ind|PronType=Art 5 det _ _ +2 short short ADJ JJ Degree=Pos 4 amod _ SpaceAfter=No +3 - - PUNCT HYPH _ 4 punct _ SpaceAfter=No +4 term term NOUN NN Number=Sing 5 compound _ _ +5 view viow NOUN NN Number=Sing 17 nsubj _ _ +6 Another another DET DT _ 7 det _ _ +7 type type NOUN NN Number=Sing 17 nsubj _ _ +8 of of ADP IN _ 10 case _ _ +9 new new ADJ JJ Degree=Pos 10 amod _ _ +10 fabric fabric NOUN NN Number=Sing 7 nmod _ _ +11 which which PRON WDT PronType=Rel 15 nsubj _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 15 cop _ _ +13 in in ADP IN _ 15 case _ _ +14 great great ADJ JJ Degree=Pos 15 amod _ _ +15 demand demand NOUN NN Number=Sing 10 acl:relcl _ _ +16 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 aux _ _ +17 wicking wick VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +18 fabric fabric NOUN NN Number=Sing 17 obj _ SpaceAfter=No +19 , , PUNCT , _ 18 punct _ _ +20 based base VERB VBN Tense=Past|VerbForm=Part 22 case _ _ +21 on on ADP IN _ 22 case _ _ +22 fibers fiber NOUN NNS Number=Plur 18 nmod _ _ +23 with with ADP IN _ 26 case _ _ +24 a a DET DT Definite=Ind|PronType=Art 26 det _ _ +25 special special ADJ JJ Degree=Pos 26 amod _ _ +26 cross-section cross-section NOUN NN Number=Sing 22 nmod _ SpaceAfter=No +27 . . PUNCT . _ 17 punct _ _ + +# sent_id = 101 +# text = The leading volume producer of wicking fibers in Taiwan is Chung Shing Textile Company. +1 The the DET DT Definite=Def|PronType=Art 4 det _ _ +2 leading lead VERB VBG VerbForm=Ger 4 amod _ _ +3 volume volume NOUN NN Number=Sing 4 compound _ _ +4 producer producer NOUN NN Number=Sing 14 nsubj _ _ +5 of of SCONJ IN _ 6 mark _ _ +6 wicking wicking VERB VBG VerbForm=Ger 4 acl _ _ +7 fibers fiber NOUN NNS Number=Plur 6 obj _ _ +8 in in ADP IN _ 9 case _ _ +9 Taiwan Taiwan PROPN NNP Number=Sing 6 obl _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +11 Chung Ching ADJ JJ Degree=Pos 14 amod _ _ +12 Shing Shing PROPN NNP Number=Sing 14 compound _ _ +13 Textile Textile PROPN NNP Number=Sing 14 compound _ _ +14 Company Company PROPN NNP Number=Sing 0 root _ SpaceAfter=No +15 . . PUNCT . _ 14 punct _ _ + +# sent_id = 102 +# text = Its president, William Shang, explains that conventional fibers have a round cross-section, but by changing the fibers' physical properties it is possible to produce them with various cross-sectional profiles such as X or Y shapes, which create capillaries along the fibers. +1 Its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 president president NOUN NN Number=Sing 7 nsubj _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 William William PROPN NNP Number=Sing 2 appos _ _ +5 Shang Shang PROPN NNP Number=Sing 4 flat _ SpaceAfter=No +6 , , PUNCT , _ 7 punct _ _ +7 explains explain VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +8 that that SCONJ IN _ 11 mark _ _ +9 conventional conventional ADJ JJ Degree=Pos 10 amod _ _ +10 fibers fiber NOUN NNS Number=Plur 11 nsubj _ _ +11 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 ccomp _ _ +12 a a DET DT Definite=Ind|PronType=Art 14 det _ _ +13 round round ADJ JJ Degree=Pos 14 amod _ _ +14 cross-section cross-section NOUN NN Number=Sing 11 obj _ SpaceAfter=No +15 , , PUNCT , _ 26 punct _ _ +16 but but CCONJ CC _ 26 cc _ _ +17 by by SCONJ IN _ 18 mark _ _ +18 changing change VERB VBG VerbForm=Ger 26 advcl _ _ +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 fibers fiber NOUN NNS Number=Plur 23 nmod:poss _ SpaceAfter=No +21 ' ' PART POS _ 20 case _ _ +22 physical physical ADJ JJ Degree=Pos 23 amod _ _ +23 properties property NOUN NNS Number=Plur 18 obj _ _ +24 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 26 expl _ _ +25 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 26 cop _ _ +26 possible possible ADJ JJ Degree=Pos 7 conj _ _ +27 to to PART TO _ 28 mark _ _ +28 produce produce VERB VB VerbForm=Inf 26 csubj _ _ +29 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 28 obj _ _ +30 with with ADP IN _ 33 case _ _ +31 various various ADJ JJ Degree=Pos 33 amod _ _ +32 cross-sectional cross-sectional ADJ JJ Degree=Pos 33 amod _ _ +33 profiles profile NOUN NNS Number=Plur 28 obl _ _ +34 such such ADJ JJ Degree=Pos 36 case _ _ +35 as as ADP IN _ 34 fixed _ _ +36 X x NOUN NN Number=Sing 28 obl _ _ +37 or or CCONJ CC _ 38 cc _ _ +38 Y y NOUN NN Number=Sing 36 conj _ _ +39 shapes shape NOUN NNS Number=Plur 36 conj _ SpaceAfter=No +40 , , PUNCT , _ 39 punct _ _ +41 which which PRON WDT PronType=Rel 42 nsubj _ _ +42 create create VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 36 acl:relcl _ _ +43 capillaries capillary NOUN NNS Number=Plur 42 obj _ _ +44 along along ADP IN _ 46 case _ _ +45 the the DET DT Definite=Def|PronType=Art 46 det _ _ +46 fibers fiber NOUN NNS Number=Plur 43 nmod _ SpaceAfter=No +47 . . PUNCT . _ 7 punct _ _ + +# sent_id = 103 +# text = These not only quickly wick sweat away from the skin, but also regulate body temperature and allow garments to dry quickly after washing. +1 These these DET DT Number=Plur|PronType=Dem 6 det _ _ +2 not not ADV RB _ 3 advmod _ _ +3 only only ADV RB _ 6 advmod _ _ +4 quickly quickly ADV RB _ 6 advmod _ _ +5 wick wick X GW _ 6 advmod _ _ +6 sweat sweat VERB VB VerbForm=Inf 0 root _ _ +7 away away ADV RB _ 6 advmod _ _ +8 from from ADP IN _ 10 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 skin skin NOUN NN Number=Sing 7 obl _ SpaceAfter=No +11 , , PUNCT , _ 14 punct _ _ +12 but but CCONJ CC _ 14 cc _ _ +13 also also ADV RB _ 14 advmod _ _ +14 regulate regulate VERB VB VerbForm=Inf 6 conj _ _ +15 body body NOUN NN Number=Sing 16 compound _ _ +16 temperature temperature NOUN NN Number=Sing 14 obj _ _ +17 and and CCONJ CC _ 18 cc _ _ +18 allow allow VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 conj _ _ +19 garments garment NOUN NNS Number=Plur 18 obj _ _ +20 to to PART TO _ 21 mark _ _ +21 dry dry VERB VB VerbForm=Inf 18 xcomp _ _ +22 quickly quickly ADV RB _ 21 advmod _ _ +23 after after SCONJ IN _ 24 mark _ _ +24 washing wash VERB VBG VerbForm=Ger 21 advcl _ SpaceAfter=No +25 . . PUNCT . _ 6 punct _ _ + +# sent_id = 104 +# text = However, the fibers' special properties can easily be destroyed in the various processes they go through such as yarn spinning, weaving, dyeing and finishing, so that making finished garments requires a high degree of technical sophistication. +1 However however ADV RB _ 11 advmod _ SpaceAfter=No +2 , , PUNCT , _ 11 punct _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 fibers fiber NOUN NNS Number=Plur 7 nmod:poss _ SpaceAfter=No +5 ' ' PART POS _ 4 case _ _ +6 special special ADJ JJ Degree=Pos 7 amod _ _ +7 properties property NOUN NNS Number=Plur 11 nsubj _ _ +8 can can AUX MD VerbForm=Fin 11 aux _ _ +9 easily easily ADV RB _ 11 advmod _ _ +10 be be AUX VB VerbForm=Inf 11 aux:pass _ _ +11 destroyed destroy VERB VBN Tense=Past|VerbForm=Part 17 advcl _ _ +12 in in ADP IN _ 15 case _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 various various ADJ JJ Degree=Pos 15 amod _ _ +15 processes process NOUN NNS Number=Plur 11 obl _ _ +16 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 17 nsubj _ _ +17 go go VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +18 through through ADP IN _ 19 case _ _ +19 such such ADJ JJ Degree=Pos 17 obl _ _ +20 as as ADP IN _ 22 case _ _ +21 yarn yarn ADJ JJ Degree=Pos 22 amod _ _ +22 spinning spinning NOUN NN Number=Sing 17 obl _ SpaceAfter=No +23 , , PUNCT , _ 17 punct _ _ +24 weaving weave VERB VBG VerbForm=Ger 17 advcl _ SpaceAfter=No +25 , , PUNCT , _ 26 punct _ _ +26 dyeing dyee VERB VBG VerbForm=Ger 24 conj _ _ +27 and and CCONJ CC _ 28 cc _ _ +28 finishing finish VERB VBG Tense=Pres|VerbForm=Part 24 conj _ SpaceAfter=No +29 , , PUNCT , _ 17 punct _ _ +30 so so SCONJ IN _ 35 mark _ _ +31 that that SCONJ IN _ 35 mark _ _ +32 making make VERB VBG VerbForm=Ger 35 csubj _ _ +33 finished finished ADJ JJ Degree=Pos 34 amod _ _ +34 garments garment NOUN NNS Number=Plur 32 obj _ _ +35 requires require VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 17 advcl _ _ +36 a a DET DT Definite=Ind|PronType=Art 38 det _ _ +37 high high ADJ JJ Degree=Pos 38 amod _ _ +38 degree degree NOUN NN Number=Sing 35 obj _ _ +39 of of ADP IN _ 41 case _ _ +40 technical technical ADJ JJ Degree=Pos 41 amod _ _ +41 sophistication sophistication NOUN NN Number=Sing 38 nmod _ SpaceAfter=No +42 . . PUNCT . _ 17 punct _ _ + +# sent_id = 105 +# text = Chung +1 Chung Chung NOUN NN Number=Sing 0 root _ _ + +# sent_id = 106 +# text = Shing has launched a fabric named Coolplus to compete with Dupont's equivalent product, Coolmax." Developing new fibers is the most important element in upgrading the textile industry," says Shang. +1 Shing Shing PRON NN Number=Sing 3 nsubj _ _ +2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 launched launch VERB VBN Tense=Past|VerbForm=Part 34 ccomp _ _ +4 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +5 fabric fabric NOUN NN Number=Sing 3 obj _ _ +6 named name VERB VBN Tense=Past|VerbForm=Part 5 acl _ _ +7 Coolplus Coolplus PROPN NNP Number=Sing 6 obj _ _ +8 to to PART TO _ 9 mark _ _ +9 compete compete VERB VB VerbForm=Inf 6 xcomp _ _ +10 with with ADP IN _ 14 case _ _ +11 Dupont Dupont PROPN NNP Number=Sing 14 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 equivalent equivalent ADJ JJ Degree=Pos 14 amod _ _ +14 product product NOUN NN Number=Sing 9 obl _ SpaceAfter=No +15 , , PUNCT , _ 14 punct _ _ +16 Coolmax Coolmax PROPN NNP Number=Sing 14 appos _ SpaceAfter=No +17 . . PUNCT . _ 3 punct _ SpaceAfter=No +18 " " PUNCT '' _ 3 punct _ _ +19 Developing develop VERB VBG VerbForm=Ger 3 advcl _ _ +20 new new ADJ JJ Degree=Pos 21 amod _ _ +21 fibers fiber NOUN NNS Number=Plur 19 obj _ _ +22 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 26 cop _ _ +23 the the DET DT Definite=Def|PronType=Art 26 det _ _ +24 most most ADV RBS _ 25 advmod _ _ +25 important important ADJ JJ Degree=Pos 26 amod _ _ +26 element element NOUN NN Number=Sing 3 conj _ _ +27 in in SCONJ IN _ 28 mark _ _ +28 upgrading upgrad VERB VBG VerbForm=Ger 3 advcl _ _ +29 the the DET DT Definite=Def|PronType=Art 31 det _ _ +30 textile textile NOUN NN Number=Sing 31 compound _ _ +31 industry industry NOUN NN Number=Sing 28 obj _ SpaceAfter=No +32 , , PUNCT , _ 34 punct _ SpaceAfter=No +33 " " PUNCT '' _ 34 punct _ _ +34 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +35 Shang Shang PROPN NNP Number=Sing 34 nsubj _ SpaceAfter=No +36 . . PUNCT . _ 34 punct _ _ + +# sent_id = 107 +# text = However, he acknowledges that although many new products are being developed in Taiwan, on closer inspection they are all copies of products first developed elsewhere, and so fall some way short of real innovation. +1 However however ADV RB _ 4 advmod _ SpaceAfter=No +2 , , PUNCT , _ 4 punct _ _ +3 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +4 acknowledges acknowledge VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +5 that that SCONJ IN _ 26 mark _ _ +6 although although SCONJ IN _ 12 mark _ _ +7 many many ADJ JJ Degree=Pos 9 amod _ _ +8 new new ADJ JJ Degree=Pos 9 amod _ _ +9 products product NOUN NNS Number=Plur 12 nsubj:pass _ _ +10 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 12 aux _ _ +11 being be AUX VBG VerbForm=Ger 12 aux:pass _ _ +12 developed develop VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 22 advcl _ _ +13 in in ADP IN _ 14 case _ _ +14 Taiwan Taiwan PROPN NNP Number=Sing 12 obl _ SpaceAfter=No +15 , , PUNCT , _ 22 punct _ _ +16 on on ADP IN _ 18 case _ _ +17 closer closer ADJ JJR Degree=Cmp 18 amod _ _ +18 inspection inspection NOUN NN Number=Sing 22 obl _ _ +19 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 22 nsubj _ _ +20 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 22 cop _ _ +21 all all DET DT _ 22 det _ _ +22 copies copy NOUN NNS Number=Plur 26 nsubj _ _ +23 of of ADP IN _ 24 case _ _ +24 products product NOUN NNS Number=Plur 22 nmod _ _ +25 first first ADV RB _ 26 advmod _ _ +26 developed develop VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 ccomp _ _ +27 elsewhere elsewhere ADV RB _ 26 advmod _ SpaceAfter=No +28 , , PUNCT , _ 31 punct _ _ +29 and and CCONJ CC _ 31 cc _ _ +30 so so ADV RB _ 31 advmod _ _ +31 fall fall VERB VB VerbForm=Inf 26 conj _ _ +32 some some DET DT _ 33 det _ _ +33 way way NOUN NN Number=Sing 31 obj _ _ +34 short short ADJ JJ Degree=Pos 33 amod _ _ +35 of of ADP IN _ 37 case _ _ +36 real real ADJ JJ Degree=Pos 37 amod _ _ +37 innovation innovation NOUN NN Number=Sing 34 obl _ SpaceAfter=No +38 . . PUNCT . _ 4 punct _ _ + +# sent_id = 108 +# text = But whereas it used to take Taiwanese companies several years of trial and error to figure out how to make such products, the gap between them and their European and American competitors is growing ever smaller. +1 But but CCONJ CC _ 4 cc _ _ +2 whereas whereas SCONJ IN _ 4 mark _ _ +3 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +4 used use VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 35 advcl _ _ +5 to to PART TO _ 6 mark _ _ +6 take take VERB VB VerbForm=Inf 4 xcomp _ _ +7 Taiwanese taiwanese ADJ JJ Degree=Pos 8 amod _ _ +8 companies company NOUN NNS Number=Plur 6 obj _ _ +9 several several ADJ JJ Degree=Pos 10 amod _ _ +10 years year NOUN NNS Number=Plur 6 obl:tmod _ _ +11 of of ADP IN _ 12 case _ _ +12 trial trial NOUN NN Number=Sing 10 nmod _ _ +13 and and CCONJ CC _ 14 cc _ _ +14 error error NOUN NN Number=Sing 12 conj _ _ +15 to to PART TO _ 16 mark _ _ +16 figure figure VERB VB VerbForm=Inf 6 advcl _ _ +17 out out ADP RP _ 16 compound:prt _ _ +18 how how ADV WRB PronType=Int 20 advmod _ _ +19 to to PART TO _ 20 mark _ _ +20 make make VERB VB VerbForm=Inf 16 ccomp _ _ +21 such such ADJ JJ Degree=Pos 22 amod _ _ +22 products product NOUN NNS Number=Plur 20 obj _ SpaceAfter=No +23 , , PUNCT , _ 35 punct _ _ +24 the the DET DT Definite=Def|PronType=Art 25 det _ _ +25 gap gap NOUN NN Number=Sing 35 nsubj _ _ +26 between between ADP IN _ 27 case _ _ +27 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 25 nmod _ _ +28 and and CCONJ CC _ 33 cc _ _ +29 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 33 nmod:poss _ _ +30 European european ADJ JJ Degree=Pos 33 amod _ _ +31 and and CCONJ CC _ 32 cc _ _ +32 American american ADJ JJ Degree=Pos 30 conj _ _ +33 competitors competitor NOUN NNS Number=Plur 27 conj _ _ +34 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 35 aux _ _ +35 growing grow VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +36 ever ever ADV RB _ 35 advmod _ _ +37 smaller smaller ADJ JJR Degree=Cmp 35 xcomp _ SpaceAfter=No +38 . . PUNCT . _ 35 punct _ _ + +# sent_id = 109 +# text = When new products appear overseas it now only takes Taiwan two to three years to bring out an equivalent. +1 When when ADV WRB PronType=Int 4 mark _ _ +2 new new ADJ JJ Degree=Pos 3 amod _ _ +3 products product NOUN NNS Number=Plur 4 nsubj _ _ +4 appear appear VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 advcl _ _ +5 overseas overseas ADV RB _ 4 advmod _ _ +6 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 obj _ _ +7 now now ADV RB _ 9 advmod _ _ +8 only only ADV RB _ 9 advmod _ _ +9 takes take VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +10 Taiwan Taiwan PROPN NNP Number=Sing 9 obj _ _ +11 two two NUM CD NumType=Card 10 nummod _ _ +12 to to ADP IN _ 14 case _ _ +13 three three NUM CD NumType=Card 14 nummod _ _ +14 years year NOUN NNS Number=Plur 9 obl _ _ +15 to to PART TO _ 16 mark _ _ +16 bring bring VERB VB VerbForm=Inf 9 advcl _ _ +17 out out ADP RP _ 16 compound:prt _ _ +18 an a DET DT Definite=Ind|PronType=Art 19 det _ _ +19 equivalent equivalent NOUN NN Number=Sing 16 obj _ SpaceAfter=No +20 . . PUNCT . _ 9 punct _ _ + +# sent_id = 110 +# text = William Shang observes that when most Taiwanese firms see something new at an overseas exhibition they will bring back a sample, inspect it under a high-powered microscope to determine the weaving method and have it chemically analyzed to find out the composition of the fibers and finishing chemicals. +1 William William PROPN NNP Number=Sing 3 nsubj _ _ +2 Shang Shang PROPN NNP Number=Sing 1 flat _ _ +3 observes observe VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 that that SCONJ IN _ 18 mark _ _ +5 when when ADV WRB PronType=Int 9 mark _ _ +6 most most ADV RBS _ 7 advmod _ _ +7 Taiwanese taiwanese ADJ JJ Degree=Pos 8 amod _ _ +8 firms firm NOUN NNS Number=Plur 9 nsubj _ _ +9 see see VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 advcl _ _ +10 something something PRON NN Number=Sing 9 obj _ _ +11 new new ADJ JJ Degree=Pos 10 amod _ _ +12 at at ADP IN _ 15 case _ _ +13 an a DET DT Definite=Ind|PronType=Art 15 det _ _ +14 overseas overseas ADJ JJ Degree=Pos 15 amod _ _ +15 exhibition exhibition NOUN NN Number=Sing 9 obl _ _ +16 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 18 nsubj _ _ +17 will will AUX MD VerbForm=Fin 18 aux _ _ +18 bring bring VERB VB VerbForm=Inf 3 ccomp _ _ +19 back back ADV RB _ 18 advmod _ _ +20 a a DET DT Definite=Ind|PronType=Art 21 det _ _ +21 sample sample NOUN NN Number=Sing 18 obj _ SpaceAfter=No +22 , , PUNCT , _ 23 punct _ _ +23 inspect inspect VERB VB Mood=Imp|VerbForm=Fin 3 conj _ _ +24 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 23 obj _ _ +25 under under ADP IN _ 29 case _ _ +26 a a DET DT Definite=Ind|PronType=Art 29 det _ _ +27 high high ADJ JJ Degree=Pos 29 amod _ SpaceAfter=No +28 -powered -powered ADJ JJ Degree=Pos 29 amod _ _ +29 microscope microscope NOUN NN Number=Sing 23 obl _ _ +30 to to PART TO _ 31 mark _ _ +31 determine determine VERB VB VerbForm=Inf 29 acl _ _ +32 the the DET DT Definite=Def|PronType=Art 34 det _ _ +33 weaving weaving VERB VBG VerbForm=Ger 34 amod _ _ +34 method method NOUN NN Number=Sing 31 obj _ _ +35 and and CCONJ CC _ 36 cc _ _ +36 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 39 conj _ _ +37 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 36 obj _ _ +38 chemically chemically ADV RB _ 39 advmod _ _ +39 analyzed analyze VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 conj _ _ +40 to to PART TO _ 41 mark _ _ +41 find find VERB VB VerbForm=Inf 39 xcomp _ _ +42 out out ADP RP _ 41 compound:prt _ _ +43 the the DET DT Definite=Def|PronType=Art 44 det _ _ +44 composition composition NOUN NN Number=Sing 41 obj _ _ +45 of of ADP IN _ 47 case _ _ +46 the the DET DT Definite=Def|PronType=Art 47 det _ _ +47 fibers fiber NOUN NNS Number=Plur 44 nmod _ _ +48 and and CCONJ CC _ 49 cc _ _ +49 finishing finish VERB VBG Tense=Pres|VerbForm=Part 41 conj _ _ +50 chemicals chemical NOUN NNS Number=Plur 49 obj _ SpaceAfter=No +51 . . PUNCT . _ 3 punct _ _ + +# sent_id = 111 +# text = With Taiwan's long years of manufacturing experience, it is then not difficult to reproduce the product with 70-80 % accuracy. +1 With with ADP IN _ 5 case _ _ +2 Taiwan Taiwan PROPN NNP Number=Sing 5 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 long long ADJ JJ Degree=Pos 5 amod _ _ +5 years year NOUN NNS Number=Plur 14 obl _ _ +6 of of ADP IN _ 8 case _ _ +7 manufacturing manufacturing NOUN NN Number=Sing 8 compound _ _ +8 experience experience NOUN NN Number=Sing 5 nmod _ SpaceAfter=No +9 , , PUNCT , _ 14 punct _ _ +10 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 14 expl _ _ +11 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +12 then then ADV RB PronType=Dem 14 advmod _ _ +13 not not PART RB _ 14 advmod _ _ +14 difficult difficult ADJ JJ Degree=Pos 0 root _ _ +15 to to PART TO _ 16 mark _ _ +16 reproduce reproduce VERB VB VerbForm=Inf 14 xcomp _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 product product NOUN NN Number=Sing 16 obj _ _ +19 with with ADP IN _ 24 case _ _ +20 70 70 NUM CD NumType=Card 23 nummod _ SpaceAfter=No +21 - - SYM SYM _ 22 case _ SpaceAfter=No +22 80 80 NUM CD NumType=Card 20 nmod _ _ +23 % % SYM NN Number=Sing 24 compound _ _ +24 accuracy accuracy NOUN NN Number=Sing 18 nmod _ SpaceAfter=No +25 . . PUNCT . _ 14 punct _ _ + +# sent_id = 112 +# text = However, Shang does not see this as a viable long-term strategy." +1 However however ADV RB _ 6 advmod _ SpaceAfter=No +2 , , PUNCT , _ 6 punct _ _ +3 Shang Shang PROPN NNP Number=Sing 6 nsubj _ _ +4 does do AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 not not PART RB _ 6 advmod _ _ +6 see see VERB VB VerbForm=Inf 0 root _ _ +7 this this PRON DT Number=Sing|PronType=Dem 6 obj _ _ +8 as as ADP IN _ 14 case _ _ +9 a a DET DT Definite=Ind|PronType=Art 14 det _ _ +10 viable viable ADJ JJ Degree=Pos 14 amod _ _ +11 long long ADJ JJ Degree=Pos 13 amod _ SpaceAfter=No +12 - - PUNCT HYPH _ 13 punct _ SpaceAfter=No +13 term term NOUN NN Number=Sing 14 compound _ _ +14 strategy strategy NOUN NN Number=Sing 6 obl _ SpaceAfter=No +15 . . PUNCT . _ 6 punct _ SpaceAfter=No +16 " " PUNCT '' _ 6 punct _ _ + +# sent_id = 113 +# text = The best strategy for the long-term is still to put more effort into basic scientific research," he says. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 best best ADJ JJS Degree=Sup 3 amod _ _ +3 strategy strategy NOUN NN Number=Sing 12 nsubj _ _ +4 for for ADP IN _ 8 case _ _ +5 the the DET DT Definite=Def|PronType=Art 8 det _ _ +6 long long ADJ JJ Degree=Pos 8 amod _ SpaceAfter=No +7 - - PUNCT HYPH _ 8 punct _ SpaceAfter=No +8 term term NOUN NN Number=Sing 3 nmod _ _ +9 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 cop _ _ +10 still still ADV RB _ 12 advmod _ _ +11 to to PART TO _ 12 mark _ _ +12 put put VERB VB VerbForm=Inf 22 ccomp _ _ +13 more more ADJ JJR Degree=Cmp 14 amod _ _ +14 effort effort NOUN NN Number=Sing 12 obj _ _ +15 into into ADP IN _ 18 case _ _ +16 basic basic ADJ JJ Degree=Pos 18 amod _ _ +17 scientific scientific ADJ JJ Degree=Pos 18 amod _ _ +18 research research NOUN NN Number=Sing 14 nmod _ SpaceAfter=No +19 , , PUNCT , _ 22 punct _ SpaceAfter=No +20 " " PUNCT '' _ 22 punct _ _ +21 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 22 nsubj _ _ +22 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ SpaceAfter=No +23 . . PUNCT . _ 22 punct _ _ + +# sent_id = 114 +# text = For example, he read in Time magazine that because spiders produce the best natural fibers in the world, being both lustrous and resilient, US scientists transferred spider genes into silkworms to produce" super silkworms." +1 For for ADP IN _ 2 case _ _ +2 example example NOUN NN Number=Sing 5 obl _ SpaceAfter=No +3 , , PUNCT , _ 5 punct _ _ +4 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ +5 read read VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +6 in in ADP IN _ 8 case _ _ +7 Time time PROPN NNP Number=Sing 8 compound _ _ +8 magazine magazine NOUN NN Number=Sing 5 obl _ _ +9 that that SCONJ IN _ 23 mark _ _ +10 because because SCONJ IN _ 12 mark _ _ +11 spiders spider NOUN NNS Number=Plur 12 nsubj _ _ +12 produce produce VERB VB VerbForm=Inf 23 advcl _ _ +13 the the DET DT Definite=Def|PronType=Art 16 det _ _ +14 best best ADJ JJS Degree=Sup 16 amod _ _ +15 natural natural ADJ JJ Degree=Pos 16 amod _ _ +16 fibers fiber NOUN NNS Number=Plur 12 obj _ _ +17 in in ADP IN _ 19 case _ _ +18 the the DET DT Definite=Def|PronType=Art 19 det _ _ +19 world world NOUN NN Number=Sing 12 obl _ SpaceAfter=No +20 , , PUNCT , _ 23 punct _ _ +21 being be AUX VBG VerbForm=Ger 23 cop _ _ +22 both both ADV RB _ 23 advmod _ _ +23 lustrous lustrous ADJ JJ Degree=Pos 31 amod _ _ +24 and and CCONJ CC _ 25 cc _ _ +25 resilient resilient ADJ JJ Degree=Pos 23 conj _ SpaceAfter=No +26 , , PUNCT , _ 23 punct _ _ +27 US US PROPN NNP Number=Sing 28 compound _ _ +28 scientists scientist NOUN NNS Number=Plur 31 compound _ _ +29 transferred transfer VERB VBN Tense=Past|VerbForm=Part 31 amod _ _ +30 spider spider NOUN NN Number=Sing 31 compound _ _ +31 genes gene NOUN NNS Number=Plur 5 obj _ _ +32 into into ADP IN _ 33 case _ _ +33 silkworms silkworm NOUN NNS Number=Plur 31 nmod _ _ +34 to to PART TO _ 35 mark _ _ +35 produce produce VERB VB VerbForm=Inf 33 acl _ SpaceAfter=No +36 " " PUNCT `` _ 35 punct _ _ +37 super super ADV RB _ 38 advmod _ _ +38 silkworms silkworm NOUN NNS Number=Plur 35 obj _ SpaceAfter=No +39 . . PUNCT . _ 5 punct _ SpaceAfter=No +40 " " PUNCT '' _ 5 punct _ _ + +# sent_id = 115 +# text = The technique succeeded, but because the Americans were not very interested in producing clothing textiles, they did not commercialize it. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 technique technique NOUN NN Number=Sing 3 nsubj _ _ +3 succeeded succeed VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ SpaceAfter=No +4 , , PUNCT , _ 21 punct _ _ +5 but but CCONJ CC _ 21 cc _ _ +6 because because SCONJ IN _ 12 mark _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 Americans Americans PROPN NNPS Number=Plur 12 nsubj _ _ +9 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 12 cop _ _ +10 not not PART RB _ 12 advmod _ _ +11 very very ADV RB _ 12 advmod _ _ +12 interested interested ADJ JJ Degree=Pos 21 advcl _ _ +13 in in SCONJ IN _ 14 mark _ _ +14 producing produce VERB VBG VerbForm=Ger 12 advcl _ _ +15 clothing clothing NOUN NN Number=Sing 16 compound _ _ +16 textiles textile NOUN NNS Number=Plur 14 obj _ SpaceAfter=No +17 , , PUNCT , _ 21 punct _ _ +18 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 21 nsubj _ _ +19 did do AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 21 aux _ _ +20 not not PART RB _ 21 advmod _ _ +21 commercialize commercialize VERB VB VerbForm=Inf 3 conj _ _ +22 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 21 obj _ SpaceAfter=No +23 . . PUNCT . _ 3 punct _ _ + +# sent_id = 116 +# text = When it comes to this kind of combination of lateral thinking and advanced technology, Taiwan still has some way to go. +1 When when ADV WRB PronType=Int 3 mark _ _ +2 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ +3 comes come VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 18 advcl _ _ +4 to to ADP IN _ 6 case _ _ +5 this this DET DT Number=Sing|PronType=Dem 6 det _ _ +6 kind kind NOUN NN Number=Sing 3 obl _ _ +7 of of ADP IN _ 8 case _ _ +8 combination combination NOUN NN Number=Sing 6 nmod _ _ +9 of of ADP IN _ 11 case _ _ +10 lateral lateral ADJ JJ Degree=Pos 11 amod _ _ +11 thinking thinking NOUN NN Number=Sing 8 nmod _ _ +12 and and CCONJ CC _ 14 cc _ _ +13 advanced advanced ADJ JJ Degree=Pos 14 amod _ _ +14 technology technology NOUN NN Number=Sing 11 conj _ SpaceAfter=No +15 , , PUNCT , _ 18 punct _ _ +16 Taiwan Taiwan PROPN NNP Number=Sing 18 nsubj _ _ +17 still still ADV RB _ 18 advmod _ _ +18 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +19 some some DET DT _ 20 det _ _ +20 way way NOUN NN Number=Sing 18 obj _ _ +21 to to PART TO _ 22 mark _ _ +22 go go VERB VB VerbForm=Inf 20 acl _ SpaceAfter=No +23 . . PUNCT . _ 18 punct _ _ + +# sent_id = 117 +# text = Shang, currently chairman of the CTI's technology committee, is well aware of where the obstacle to R&D lies:" Innovative ideas take time to mature, and you have to accept a high degree of uncertainty. +1 Shang Shang PROPN NNP Number=Sing 14 nsubj _ SpaceAfter=No +2 , , PUNCT , _ 1 punct _ _ +3 currently currently ADV RB _ 4 advmod _ _ +4 chairman chairman NOUN NN Number=Sing 1 appos _ _ +5 of of ADP IN _ 10 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 CTI CTI PROPN NNP Number=Sing 10 nmod:poss _ SpaceAfter=No +8 's 's PART POS _ 7 case _ _ +9 technology technology NOUN NN Number=Sing 10 compound _ _ +10 committee committee NOUN NN Number=Sing 4 nmod _ SpaceAfter=No +11 , , PUNCT , _ 14 punct _ _ +12 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 cop _ _ +13 well well ADV RB Degree=Pos 14 advmod _ _ +14 aware aware ADJ JJ Degree=Pos 0 root _ _ +15 of of ADP IN _ 16 case _ _ +16 where where ADV WRB PronType=Int 21 obl _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 obstacle obstacle NOUN NN Number=Sing 16 nsubj _ _ +19 to to ADP IN _ 20 case _ _ +20 R&D R& PROPN NNP Number=Sing 18 nmod _ _ +21 lies lie VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 26 advcl _ SpaceAfter=No +22 : : PUNCT : _ 26 punct _ SpaceAfter=No +23 " " PUNCT `` _ 26 punct _ _ +24 Innovative innovative ADJ JJ Degree=Pos 25 amod _ _ +25 ideas idea NOUN NNS Number=Plur 26 nsubj _ _ +26 take take VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 ccomp _ _ +27 time time NOUN NN Number=Sing 26 obj _ _ +28 to to PART TO _ 29 mark _ _ +29 mature mature VERB VB VerbForm=Inf 26 xcomp _ SpaceAfter=No +30 , , PUNCT , _ 33 punct _ _ +31 and and CCONJ CC _ 33 cc _ _ +32 you you PRON PRP Case=Nom|Person=2|PronType=Prs 33 nsubj _ _ +33 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 26 conj _ _ +34 to to PART TO _ 35 mark _ _ +35 accept accept VERB VB VerbForm=Inf 33 xcomp _ _ +36 a a DET DT Definite=Ind|PronType=Art 38 det _ _ +37 high high ADJ JJ Degree=Pos 38 amod _ _ +38 degree degree NOUN NN Number=Sing 35 obj _ _ +39 of of ADP IN _ 40 case _ _ +40 uncertainty uncertainty NOUN NN Number=Sing 38 nmod _ SpaceAfter=No +41 . . PUNCT . _ 26 punct _ _ + +# sent_id = 118 +# text = But our environment does not allow this." +1 But but CCONJ CC _ 6 cc _ _ +2 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +3 environment environment NOUN NN Number=Sing 6 nsubj _ _ +4 does do AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 not not PART RB _ 6 advmod _ _ +6 allow allow VERB VB VerbForm=Inf 0 root _ _ +7 this this PRON DT Number=Sing|PronType=Dem 6 obj _ SpaceAfter=No +8 . . PUNCT . _ 6 punct _ SpaceAfter=No +9 " " PUNCT '' _ 6 punct _ _ + +# sent_id = 119 +# text = He notes that industries in Taiwan always pursue short-term profits, so there is never much interest in technologies which are too forward-looking and can not immediately produce saleable products. +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 notes note VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 that that SCONJ IN _ 4 mark _ _ +4 industries industry NOUN NNS Number=Plur 2 ccomp _ _ +5 in in ADP IN _ 6 case _ _ +6 Taiwan Taiwan PROPN NNP Number=Sing 4 nmod _ _ +7 always always ADV RB _ 4 advmod _ _ +8 pursue pursue ADP IN _ 12 case _ _ +9 short short ADJ JJ Degree=Pos 11 amod _ SpaceAfter=No +10 - - PUNCT HYPH _ 11 punct _ SpaceAfter=No +11 term term NOUN NN Number=Sing 12 compound _ _ +12 profits profit NOUN NNS Number=Plur 4 nmod _ SpaceAfter=No +13 , , PUNCT , _ 4 punct _ _ +14 so so ADV RB _ 16 advmod _ _ +15 there there PRON EX _ 16 expl _ _ +16 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 parataxis _ _ +17 never never ADV RB _ 18 advmod _ _ +18 much much ADJ JJ Degree=Pos 19 amod _ _ +19 interest interest NOUN NN Number=Sing 16 nsubj _ _ +20 in in ADP IN _ 21 case _ _ +21 technologies technology NOUN NNS Number=Plur 19 nmod _ _ +22 which which PRON WDT PronType=Rel 25 nsubj _ _ +23 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 25 cop _ _ +24 too too ADV RB _ 25 advmod _ _ +25 forward forward ADV RB _ 27 advmod _ SpaceAfter=No +26 - - PUNCT HYPH _ 27 punct _ SpaceAfter=No +27 looking look VERB VBG VerbForm=Ger 19 acl _ _ +28 and and CCONJ CC _ 32 cc _ _ +29 can can AUX MD VerbForm=Fin 32 aux _ _ +30 not not PART RB _ 32 advmod _ _ +31 immediately immediately ADV RB _ 32 advmod _ _ +32 produce produce VERB VB VerbForm=Inf 16 conj _ _ +33 saleable saleable ADJ JJ Degree=Pos 34 amod _ _ +34 products product NOUN NNS Number=Plur 32 obj _ SpaceAfter=No +35 . . PUNCT . _ 2 punct _ _ + +# sent_id = 120 +# text = As one of 18 industrial institutes under the Ministry of Economic Affairs, the CTI has some state funding. +1 As as SCONJ IN _ 6 mark _ _ +2 one one NUM CD NumType=Card 6 nummod _ _ +3 of of ADP IN _ 4 case _ _ +4 18 18 NUM CD NumType=Card 2 nmod _ _ +5 industrial industrial ADJ JJ Degree=Pos 6 amod _ _ +6 institutes institute NOUN NNS Number=Plur 16 advcl _ _ +7 under under ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 Ministry ministry PROPN NNP Number=Sing 6 nmod _ _ +10 of of ADP IN _ 12 case _ _ +11 Economic economic ADJ JJ Degree=Pos 12 amod _ _ +12 Affairs affair NOUN NNS Number=Plur 9 nmod _ SpaceAfter=No +13 , , PUNCT , _ 16 punct _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 CTI CTI PROPN NNP Number=Sing 16 nsubj _ _ +16 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +17 some some DET DT _ 19 det _ _ +18 state state NOUN NN Number=Sing 19 compound _ _ +19 funding funding NOUN NN Number=Sing 16 obj _ SpaceAfter=No +20 . . PUNCT . _ 16 punct _ _ + +# sent_id = 121 +# text = But with ever greater budgetary constraints and pressure to cover its own costs, development projects mostly concentrate on firms' current needs, and stress the sales and profit they generate. +1 But but CCONJ CC _ 6 cc _ _ +2 with with ADP IN _ 6 case _ _ +3 ever ever ADV RB _ 4 advmod _ _ +4 greater greater ADJ JJR Degree=Cmp 6 amod _ _ +5 budgetary budgetary ADJ JJ Degree=Pos 6 amod _ _ +6 constraints constraint NOUN NNS Number=Plur 0 root _ _ +7 and and CCONJ CC _ 8 cc _ _ +8 pressure pressure NOUN NN Number=Sing 6 conj _ _ +9 to to PART TO _ 10 mark _ _ +10 cover cover VERB VB VerbForm=Inf 6 acl _ _ +11 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 13 nmod:poss _ _ +12 own own ADJ JJ Degree=Pos 13 amod _ _ +13 costs cost NOUN NNS Number=Plur 10 obj _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 development development NOUN NN Number=Sing 16 compound _ _ +16 projects project NOUN NNS Number=Plur 13 conj _ _ +17 mostly mostly ADV RB _ 18 advmod _ _ +18 concentrate concentrate ADJ JJ Degree=Pos 16 amod _ _ +19 on on ADP IN _ 23 case _ _ +20 firms firm NOUN NNS Number=Plur 23 nmod:poss _ SpaceAfter=No +21 ' ' PART POS _ 20 case _ _ +22 current current ADJ JJ Degree=Pos 23 amod _ _ +23 needs need NOUN NNS Number=Plur 18 obl _ SpaceAfter=No +24 , , PUNCT , _ 26 punct _ _ +25 and and CCONJ CC _ 26 cc _ _ +26 stress stress VERB VB VerbForm=Inf 6 conj _ _ +27 the the DET DT Definite=Def|PronType=Art 28 det _ _ +28 sales sale NOUN NNS Number=Plur 26 obj _ _ +29 and and CCONJ CC _ 30 cc _ _ +30 profit profit NOUN NN Number=Sing 28 conj _ _ +31 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 32 nsubj _ _ +32 generate generate VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 acl:relcl _ SpaceAfter=No +33 . . PUNCT . _ 6 punct _ _ + +# sent_id = 122 +# text = Under such circumstances, epoch-making innovations are unlikely to emerge. +1 Under under ADP IN _ 3 case _ _ +2 such such ADJ JJ Degree=Pos 3 amod _ _ +3 circumstances circumstance NOUN NNS Number=Plur 5 obl _ SpaceAfter=No +4 , , PUNCT , _ 5 punct _ _ +5 epoch epoch VERB VB Mood=Imp|VerbForm=Fin 0 root _ SpaceAfter=No +6 -making -making VERB VBG VerbForm=Ger 7 amod _ _ +7 innovations innovation NOUN NNS Number=Plur 9 nsubj _ _ +8 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 9 cop _ _ +9 unlikely unlikely ADJ JJ Degree=Pos 5 parataxis _ _ +10 to to PART TO _ 11 mark _ _ +11 emerge emerge VERB VB VerbForm=Inf 9 advcl _ SpaceAfter=No +12 . . PUNCT . _ 5 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 123 +# text = Standardizing colors Because innovation is so hard to achieve, the highly innovative Sinocolor Book color reference system, which was launched at the CTI's 40th anniversary celebration, has been greeted with great admiration by many. +1 Standardizing Standardize VERB VBG VerbForm=Ger 33 advcl _ _ +2 colors color NOUN NNS Number=Plur 1 obj _ _ +3 Because Because SCONJ IN _ 7 mark _ _ +4 innovation innovation NOUN NN Number=Sing 7 nsubj _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 cop _ _ +6 so so ADV RB _ 7 advmod _ _ +7 hard hard ADJ JJ Degree=Pos 1 advcl _ _ +8 to to PART TO _ 9 mark _ _ +9 achieve achieve VERB VB VerbForm=Inf 7 advcl _ SpaceAfter=No +10 , , PUNCT , _ 18 punct _ _ +11 the the DET DT Definite=Def|PronType=Art 18 det _ _ +12 highly highly ADV RB _ 13 advmod _ _ +13 innovative innovative ADJ JJ Degree=Pos 18 amod _ _ +14 Sinocolor Sinocolor PROPN NNP Number=Sing 15 compound _ _ +15 Book book PROPN NNP Number=Sing 18 compound _ _ +16 color color NOUN NN Number=Sing 18 compound _ _ +17 reference reference NOUN NN Number=Sing 18 compound _ _ +18 system system NOUN NN Number=Sing 1 conj _ SpaceAfter=No +19 , , PUNCT , _ 18 punct _ _ +20 which which PRON WDT PronType=Rel 22 nsubj:pass _ _ +21 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 22 aux:pass _ _ +22 launched launch VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 18 acl:relcl _ _ +23 at at ADP IN _ 29 case _ _ +24 the the DET DT Definite=Def|PronType=Art 25 det _ _ +25 CTI CTI PROPN NNP Number=Sing 29 nmod:poss _ SpaceAfter=No +26 's 's PART POS _ 25 case _ _ +27 40th 40th ADJ JJ Degree=Pos|NumType=Ord 29 amod _ _ +28 anniversary anniversary NOUN NN Number=Sing 29 compound _ _ +29 celebration celebration NOUN NN Number=Sing 22 obl _ SpaceAfter=No +30 , , PUNCT , _ 33 punct _ _ +31 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 33 aux _ _ +32 been be AUX VBN Tense=Past|VerbForm=Part 33 aux:pass _ _ +33 greeted greet VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +34 with with ADP IN _ 36 case _ _ +35 great great ADJ JJ Degree=Pos 36 amod _ _ +36 admiration admiration NOUN NN Number=Sing 33 obl _ _ +37 by by ADP IN _ 38 case _ _ +38 many many ADJ JJ Degree=Pos 33 obl _ SpaceAfter=No +39 . . PUNCT . _ 33 punct _ _ + +# sent_id = 124 +# text = The system's inventor, Hsu Yun-peng, only had a junior high school education, but had researched color matching for 18 years in a dyeing factory. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 system system NOUN NN Number=Sing 4 nmod:poss _ SpaceAfter=No +3 's 's PART POS _ 2 case _ _ +4 inventor inventor NOUN NN Number=Sing 12 nsubj _ SpaceAfter=No +5 , , PUNCT , _ 4 punct _ _ +6 Hsu Hsu PROPN NNP Number=Sing 4 appos _ _ +7 Yun Yun PROPN NNP Number=Sing 6 flat _ SpaceAfter=No +8 - - PUNCT , _ 4 punct _ SpaceAfter=No +9 peng peng NOUN NN Number=Sing 4 appos _ SpaceAfter=No +10 , , PUNCT , _ 4 punct _ _ +11 only only ADV RB _ 12 advmod _ _ +12 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +13 a a DET DT Definite=Ind|PronType=Art 17 det _ _ +14 junior junior ADJ JJ Degree=Pos 17 amod _ _ +15 high high ADJ JJ Degree=Pos 16 amod _ _ +16 school school NOUN NN Number=Sing 17 compound _ _ +17 education education NOUN NN Number=Sing 12 obj _ SpaceAfter=No +18 , , PUNCT , _ 21 punct _ _ +19 but but CCONJ CC _ 21 cc _ _ +20 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 21 aux _ _ +21 researched research VERB VBN Tense=Past|VerbForm=Part 12 conj _ _ +22 color color NOUN NN Number=Sing 21 obj _ _ +23 matching matching VERB VBG VerbForm=Ger 22 acl _ _ +24 for for ADP IN _ 26 case _ _ +25 18 18 NUM CD NumType=Card 26 nummod _ _ +26 years year NOUN NNS Number=Plur 23 obl _ _ +27 in in ADP IN _ 30 case _ _ +28 a a DET DT Definite=Ind|PronType=Art 30 det _ _ +29 dyeing dyeing NOUN NN Number=Sing 30 compound _ _ +30 factory factory NOUN NN Number=Sing 23 obl _ SpaceAfter=No +31 . . PUNCT . _ 12 punct _ _ + +# sent_id = 125 +# text = Discovering that imported color matching software was of little practical use, Hsu, who did n't know a word of English, taught himself to program and wrote an improved version of the software. +1 Discovering Discover VERB VBG VerbForm=Ger 24 advcl _ _ +2 that that SCONJ IN _ 11 mark _ _ +3 imported import ADJ JJ Degree=Pos 5 amod _ _ +4 color color NOUN NN Number=Sing 5 compound _ _ +5 matching matching NOUN NN Number=Sing 6 compound _ _ +6 software software NOUN NN Number=Sing 11 nsubj _ _ +7 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 11 cop _ _ +8 of of ADP IN _ 11 case _ _ +9 little little ADJ JJ Degree=Pos 11 amod _ _ +10 practical practical ADJ JJ Degree=Pos 11 amod _ _ +11 use use NOUN NN Number=Sing 1 ccomp _ SpaceAfter=No +12 , , PUNCT , _ 11 punct _ _ +13 Hsu Hsu PROPN NNP Number=Sing 11 flat _ SpaceAfter=No +14 , , PUNCT , _ 1 punct _ _ +15 who who PRON WP PronType=Rel 18 nsubj _ _ +16 did do AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 18 aux _ _ +17 n't not PART RB _ 18 advmod _ _ +18 know know VERB VB VerbForm=Inf 1 acl:relcl _ _ +19 a a DET DT Definite=Ind|PronType=Art 20 det _ _ +20 word word NOUN NN Number=Sing 18 obj _ _ +21 of of ADP IN _ 22 case _ _ +22 English English PROPN NNP Number=Sing 20 nmod _ SpaceAfter=No +23 , , PUNCT , _ 24 punct _ _ +24 taught teach VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +25 himself himself PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs|Reflex=Yes 24 obj _ _ +26 to to ADP IN _ 27 case _ _ +27 program program NOUN NN Number=Sing 24 obl _ _ +28 and and CCONJ CC _ 29 cc _ _ +29 wrote write VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 24 conj _ _ +30 an a DET DT Definite=Ind|PronType=Art 32 det _ _ +31 improved improved VERB VBN Tense=Past|VerbForm=Part 32 amod _ _ +32 version version NOUN NN Number=Sing 29 obj _ _ +33 of of ADP IN _ 35 case _ _ +34 the the DET DT Definite=Def|PronType=Art 35 det _ _ +35 software software NOUN NN Number=Sing 32 nmod _ SpaceAfter=No +36 . . PUNCT . _ 24 punct _ _ + +# sent_id = 126 +# text = Writing color matching software earned Hsu Yun-peng a lot of money, but this was not his main purpose. +1 Writing write VERB VBG VerbForm=Ger 4 amod _ _ +2 color color NOUN NN Number=Sing 4 compound _ _ +3 matching matching VERB VBG VerbForm=Ger 4 amod _ _ +4 software software NOUN NN Number=Sing 5 nsubj _ _ +5 earned earn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +6 Hsu Hsu PROPN NNP Number=Sing 9 compound _ _ +7 Yun Yun PROPN NNP Number=Sing 6 flat _ SpaceAfter=No +8 - - PUNCT HYPH _ 9 punct _ SpaceAfter=No +9 peng peng NOUN NN Number=Sing 11 compound _ _ +10 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +11 lot lot NOUN NN Number=Sing 5 obj _ _ +12 of of ADP IN _ 13 case _ _ +13 money money NOUN NN Number=Sing 11 nmod _ SpaceAfter=No +14 , , PUNCT , _ 21 punct _ _ +15 but but CCONJ CC _ 21 cc _ _ +16 this this PRON DT Number=Sing|PronType=Dem 21 nsubj _ _ +17 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 21 cop _ _ +18 not not PART RB _ 21 advmod _ _ +19 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 21 nmod:poss _ _ +20 main main ADJ JJ Degree=Pos 21 amod _ _ +21 purpose purpose NOUN NN Number=Sing 5 conj _ SpaceAfter=No +22 . . PUNCT . _ 5 punct _ _ + +# sent_id = 127 +# text = His real aim was to produce a color reference system that was genuinely easy to use, to overcome the lack of color standardization which had long plagued the dyeing industry. +1 His he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +2 real real ADJ JJ Degree=Pos 3 amod _ _ +3 aim aim NOUN NN Number=Sing 4 nsubj _ _ +4 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 0 root _ _ +5 to to PART TO _ 6 mark _ _ +6 produce produce VERB VB VerbForm=Inf 4 ccomp _ _ +7 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +8 color color NOUN NN Number=Sing 10 compound _ _ +9 reference reference NOUN NN Number=Sing 10 compound _ _ +10 system system NOUN NN Number=Sing 6 obj _ _ +11 that that PRON WDT PronType=Rel 14 nsubj _ _ +12 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 14 cop _ _ +13 genuinely genuinely ADV RB _ 14 advmod _ _ +14 easy easy ADJ JJ Degree=Pos 10 acl:relcl _ _ +15 to to PART TO _ 16 mark _ _ +16 use use VERB VB VerbForm=Inf 14 advcl _ SpaceAfter=No +17 , , PUNCT , _ 4 punct _ _ +18 to to PART TO _ 19 mark _ _ +19 overcome overcome VERB VB VerbForm=Inf 4 advcl _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 lack lack NOUN NN Number=Sing 19 obj _ _ +22 of of ADP IN _ 24 case _ _ +23 color color NOUN NN Number=Sing 24 compound _ _ +24 standardization standardization NOUN NN Number=Sing 21 nmod _ _ +25 which which PRON WDT PronType=Rel 28 nsubj _ _ +26 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 28 aux _ _ +27 long long ADV RB Degree=Pos 28 advmod _ _ +28 plagued plague VERB VBN Tense=Past|VerbForm=Part 24 acl:relcl _ _ +29 the the DET DT Definite=Def|PronType=Art 31 det _ _ +30 dyeing dyeing NOUN NN Number=Sing 31 compound _ _ +31 industry industry NOUN NN Number=Sing 28 obj _ SpaceAfter=No +32 . . PUNCT . _ 4 punct _ _ + +# sent_id = 128 +# text = To pursue this goal he quit his job, moved to the suburbs of Kuishan in Taoyuan County, and began to spend 18 hours a day studying the problem. +1 To to PART TO _ 2 mark _ _ +2 pursue pursue VERB VB VerbForm=Inf 10 advcl _ _ +3 this this DET DT Number=Sing|PronType=Dem 4 det _ _ +4 goal goal NOUN NN Number=Sing 2 obj _ _ +5 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +6 quit quit VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 acl:relcl _ _ +7 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 8 nmod:poss _ _ +8 job job NOUN NN Number=Sing 6 obj _ SpaceAfter=No +9 , , PUNCT , _ 10 punct _ _ +10 moved move VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +11 to to ADP IN _ 13 case _ _ +12 the the DET DT Definite=Def|PronType=Art 13 det _ _ +13 suburbs suburb NOUN NNS Number=Plur 10 obl _ _ +14 of of ADP IN _ 15 case _ _ +15 Kuishan Kuishan PROPN NNP Number=Sing 13 nmod _ _ +16 in in ADP IN _ 18 case _ _ +17 Taoyuan Taoyuan PROPN NNP Number=Sing 18 compound _ _ +18 County County PROPN NNP Number=Sing 15 nmod _ SpaceAfter=No +19 , , PUNCT , _ 21 punct _ _ +20 and and CCONJ CC _ 21 cc _ _ +21 began begin VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 10 conj _ _ +22 to to PART TO _ 23 mark _ _ +23 spend spend VERB VB VerbForm=Inf 21 xcomp _ _ +24 18 18 NUM CD NumType=Card 25 nummod _ _ +25 hours hour NOUN NNS Number=Plur 23 obl:tmod _ _ +26 a a DET DT Definite=Ind|PronType=Art 27 det _ _ +27 day day NOUN NN Number=Sing 25 nmod:npmod _ _ +28 studying study VERB VBG VerbForm=Ger 23 advcl _ _ +29 the the DET DT Definite=Def|PronType=Art 30 det _ _ +30 problem problem NOUN NN Number=Sing 28 obj _ SpaceAfter=No +31 . . PUNCT . _ 10 punct _ _ + +# sent_id = 129 +# text = Quite apart from the difficulties of keeping his family fed, he often was n't even sure how old his three children were and what year of school they were in. +1 Quite quite ADV RB _ 2 advmod _ _ +2 apart apart ADV RB _ 17 advmod _ _ +3 from from ADP IN _ 5 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 difficulties difficulty NOUN NNS Number=Plur 2 obl _ _ +6 of of SCONJ IN _ 7 mark _ _ +7 keeping keep VERB VBG VerbForm=Ger 5 acl _ _ +8 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 9 nmod:poss _ _ +9 family family NOUN NN Number=Sing 7 obj _ _ +10 fed feed VERB VBN Tense=Past|VerbForm=Part 7 xcomp _ SpaceAfter=No +11 , , PUNCT , _ 17 punct _ _ +12 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 17 nsubj _ _ +13 often often ADV RB _ 17 advmod _ _ +14 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 17 cop _ _ +15 n't not PART RB _ 17 advmod _ _ +16 even even ADV RB _ 17 advmod _ _ +17 sure sure ADJ JJ Degree=Pos 0 root _ _ +18 how how ADV WRB PronType=Int 19 advmod _ _ +19 old old ADJ JJ Degree=Pos 17 ccomp _ _ +20 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 22 nmod:poss _ _ +21 three three NUM CD NumType=Card 22 nummod _ _ +22 children child NOUN NNS Number=Plur 19 nsubj _ _ +23 were were AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 19 cop _ _ +24 and and CCONJ CC _ 26 cc _ _ +25 what what DET WDT PronType=Int 26 det _ _ +26 year year NOUN NN Number=Sing 17 conj _ _ +27 of of ADP IN _ 28 case _ _ +28 school school NOUN NN Number=Sing 26 nmod _ _ +29 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 31 nsubj _ _ +30 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 31 cop _ _ +31 in in ADV RB _ 26 advmod _ SpaceAfter=No +32 . . PUNCT . _ 17 punct _ _ + +# sent_id = 130 +# text = Finally he used a three-dimensional model to create a regularly graded, finely differentiated color reference system covering 20,000 colors, each with clear" color coordinates." +1 Finally finally ADV RB _ 3 advmod _ _ +2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ +3 used use VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +5 three three NUM CD NumType=Card 7 nummod _ SpaceAfter=No +6 - - PUNCT HYPH _ 7 punct _ SpaceAfter=No +7 dimensional dimensional ADJ JJ Degree=Pos 8 amod _ _ +8 model model NOUN NN Number=Sing 3 obj _ _ +9 to to PART TO _ 10 mark _ _ +10 create create VERB VB VerbForm=Inf 3 advcl _ _ +11 a a DET DT Definite=Ind|PronType=Art 19 det _ _ +12 regularly regularly ADV RB _ 13 advmod _ _ +13 graded grad ADJ JJ Degree=Pos 19 amod _ SpaceAfter=No +14 , , PUNCT , _ 19 punct _ _ +15 finely finely ADV RB _ 16 advmod _ _ +16 differentiated differentiate VERB VBN Tense=Past|VerbForm=Part 19 amod _ _ +17 color color NOUN NN Number=Sing 19 compound _ _ +18 reference reference NOUN NN Number=Sing 19 compound _ _ +19 system system NOUN NN Number=Sing 10 obj _ _ +20 covering cover VERB VBG VerbForm=Ger 10 advcl _ _ +21 20,000 20,000 NUM CD NumType=Card 22 nummod _ _ +22 colors color NOUN NNS Number=Plur 20 obj _ SpaceAfter=No +23 , , PUNCT , _ 22 punct _ _ +24 each each DET DT _ 29 det _ _ +25 with with ADP IN _ 29 case _ _ +26 clear clear ADJ JJ Degree=Pos 29 amod _ SpaceAfter=No +27 " " PUNCT `` _ 29 punct _ _ +28 color color NOUN NN Number=Sing 29 compound _ _ +29 coordinates coordinate NOUN NNS Number=Plur 22 nmod _ SpaceAfter=No +30 . . PUNCT . _ 3 punct _ SpaceAfter=No +31 " " PUNCT '' _ 3 punct _ _ + +# sent_id = 131 +# text = These features are unmatched by any of the systems currently in common use worldwide, which only define up to 3,000 colors. +1 These these DET DT Number=Plur|PronType=Dem 2 det _ _ +2 features feature NOUN NNS Number=Plur 4 nsubj:pass _ _ +3 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux:pass _ _ +4 unmatched unmatched VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +5 by by ADP IN _ 6 case _ _ +6 any any DET DT _ 4 obl _ _ +7 of of ADP IN _ 9 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 systems system NOUN NNS Number=Plur 6 nmod _ _ +10 currently currently ADV RB _ 9 advmod _ _ +11 in in ADP IN _ 13 case _ _ +12 common common ADJ JJ Degree=Pos 13 amod _ _ +13 use use NOUN NN Number=Sing 4 obl _ _ +14 worldwide worldwide ADV RB _ 13 advmod _ SpaceAfter=No +15 , , PUNCT , _ 4 punct _ _ +16 which which PRON WDT PronType=Int 18 nsubj _ _ +17 only only ADV RB _ 18 advmod _ _ +18 define define VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 parataxis _ _ +19 up up ADP RP _ 18 compound:prt _ _ +20 to to ADP IN _ 22 case _ _ +21 3,000 3,000 NUM CD NumType=Card 22 nummod _ _ +22 colors color NOUN NNS Number=Plur 18 obl _ SpaceAfter=No +23 . . PUNCT . _ 4 punct _ _ + +# sent_id = 132 +# text = The textile industry's efforts to upgrade are gradually showing some results, but looking at the situation overall, CTI president Yao Hsing-chuan is still somewhat worried. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 textile textile NOUN NN Number=Sing 3 compound _ _ +3 industry industry NOUN NN Number=Sing 5 nmod:poss _ SpaceAfter=No +4 's 's PART POS _ 3 case _ _ +5 efforts effort NOUN NNS Number=Plur 10 nsubj _ _ +6 to to PART TO _ 7 mark _ _ +7 upgrade upgrade VERB VB VerbForm=Inf 5 acl _ _ +8 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 10 aux _ _ +9 gradually gradually ADV RB _ 10 advmod _ _ +10 showing show VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +11 some some DET DT _ 12 det _ _ +12 results result NOUN NNS Number=Plur 10 obj _ SpaceAfter=No +13 , , PUNCT , _ 15 punct _ _ +14 but but CCONJ CC _ 15 cc _ _ +15 looking look VERB VBG VerbForm=Ger 10 conj _ _ +16 at at ADP IN _ 18 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 situation situation NOUN NN Number=Sing 15 obl _ _ +19 overall overall ADV RB _ 15 advmod _ SpaceAfter=No +20 , , PUNCT , _ 23 punct _ _ +21 CTI CTI PROPN NNP Number=Sing 23 compound _ _ +22 president president PROPN NNP Number=Sing 21 flat _ _ +23 Yao Yao PROPN NNP Number=Sing 26 compound _ _ +24 Hsing Hsing PROPN NNP Number=Sing 23 flat _ SpaceAfter=No +25 - - PUNCT , _ 23 punct _ SpaceAfter=No +26 chuan chuan NOUN NN Number=Sing 30 nsubj _ _ +27 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 30 cop _ _ +28 still still ADV RB _ 30 advmod _ _ +29 somewhat somewhat ADV RB _ 30 advmod _ _ +30 worried worried ADJ JJ Degree=Pos 15 ccomp _ SpaceAfter=No +31 . . PUNCT . _ 10 punct _ _ + +# sent_id = 133 +# text = He comments that the majority of companies still have the traditional mindset of pursuing low-cost, high-volume production. +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 comments comment NOUN NNS Number=Plur 0 root _ _ +3 that that SCONJ IN _ 9 mark _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 majority majority NOUN NN Number=Sing 9 nsubj _ _ +6 of of ADP IN _ 7 case _ _ +7 companies company NOUN NNS Number=Plur 5 nmod _ _ +8 still still ADV RB _ 9 advmod _ _ +9 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 acl _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 traditional traditional ADJ JJ Degree=Pos 12 amod _ _ +12 mindset mindset NOUN NN Number=Sing 9 obj _ _ +13 of of SCONJ IN _ 14 mark _ _ +14 pursuing pursuing VERB VBG VerbForm=Ger 12 acl _ _ +15 low low ADV RB Degree=Pos 22 advmod _ SpaceAfter=No +16 - - PUNCT HYPH _ 17 punct _ SpaceAfter=No +17 cost cost NOUN NN Number=Sing 22 compound _ SpaceAfter=No +18 , , PUNCT , _ 22 punct _ _ +19 high high ADJ JJ Degree=Pos 21 amod _ SpaceAfter=No +20 - - PUNCT HYPH _ 21 punct _ SpaceAfter=No +21 volume volume NOUN NN Number=Sing 22 compound _ _ +22 production production NOUN NN Number=Sing 14 obj _ SpaceAfter=No +23 . . PUNCT . _ 2 punct _ _ + +# sent_id = 134 +# text = Taiwan is the world's third biggest producer of man-made fibers, but it only produces a small range of mass-market fibers for apparel fabrics, to the almost total neglect of the hundred or so other high-added-value, special fibers on the market such as high-strength fibers for bullet-proof fabrics, elastic fibers or superalloy aerospace fibers. +1 Taiwan Taiwan PROPN NNP Number=Sing 8 nsubj _ _ +2 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 world world NOUN NN Number=Sing 8 nmod:poss _ SpaceAfter=No +5 's 's PART POS _ 4 case _ _ +6 third third ADJ JJ Degree=Pos|NumType=Ord 8 amod _ _ +7 biggest biggest ADJ JJS Degree=Sup 8 amod _ _ +8 producer producer NOUN NN Number=Sing 0 root _ _ +9 of of ADP IN _ 13 case _ _ +10 man man NOUN NN Number=Sing 12 compound _ SpaceAfter=No +11 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +12 made make VERB VBN Tense=Past|VerbForm=Part 13 amod _ _ +13 fibers fiber NOUN NNS Number=Plur 8 nmod _ SpaceAfter=No +14 , , PUNCT , _ 18 punct _ _ +15 but but CCONJ CC _ 18 cc _ _ +16 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 18 nsubj _ _ +17 only only ADV RB _ 18 advmod _ _ +18 produces produce VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 conj _ _ +19 a a DET DT Definite=Ind|PronType=Art 21 det _ _ +20 small small ADJ JJ Degree=Pos 21 amod _ _ +21 range range NOUN NN Number=Sing 18 obj _ _ +22 of of ADP IN _ 25 case _ _ +23 mass mass ADJ JJ Degree=Pos 25 amod _ SpaceAfter=No +24 -market -market NOUN NN Number=Sing 25 compound _ _ +25 fibers fiber NOUN NNS Number=Plur 21 nmod _ _ +26 for for ADP IN _ 28 case _ _ +27 apparel apparel NOUN NN Number=Sing 28 compound _ _ +28 fabrics fabric NOUN NNS Number=Plur 25 nmod _ SpaceAfter=No +29 , , PUNCT , _ 8 punct _ _ +30 to to ADP IN _ 34 case _ _ +31 the the DET DT Definite=Def|PronType=Art 34 det _ _ +32 almost almost ADV RBS _ 33 advmod _ _ +33 total total ADJ JJ Degree=Pos 34 amod _ _ +34 neglect neglect NOUN NN Number=Sing 8 obl _ _ +35 of of ADP IN _ 37 case _ _ +36 the the DET DT Definite=Def|PronType=Art 37 det _ _ +37 hundred hundred NUM CD NumType=Card 34 nmod _ _ +38 or or CCONJ CC _ 45 cc _ _ +39 so so ADV RB _ 40 advmod _ _ +40 other other ADJ JJ Degree=Pos 45 amod _ _ +41 high high ADJ JJ Degree=Pos 43 amod _ SpaceAfter=No +42 - - PUNCT HYPH _ 43 punct _ SpaceAfter=No +43 added add VERB VBN Tense=Past|VerbForm=Part 40 advcl _ SpaceAfter=No +44 - - PUNCT HYPH _ 45 punct _ SpaceAfter=No +45 value value NOUN NN Number=Sing 8 conj _ SpaceAfter=No +46 , , PUNCT , _ 48 punct _ _ +47 special special ADJ JJ Degree=Pos 48 amod _ _ +48 fibers fiber NOUN NNS Number=Plur 8 conj _ _ +49 on on ADP IN _ 51 case _ _ +50 the the DET DT Definite=Def|PronType=Art 51 det _ _ +51 market market NOUN NN Number=Sing 48 nmod _ _ +52 such such ADJ JJ Degree=Pos 57 case _ _ +53 as as ADP IN _ 52 fixed _ _ +54 high high ADJ JJ Degree=Pos 56 amod _ SpaceAfter=No +55 - - PUNCT HYPH _ 56 punct _ SpaceAfter=No +56 strength strength NOUN NN Number=Sing 57 compound _ _ +57 fibers fiber NOUN NNS Number=Plur 8 nmod _ _ +58 for for ADP IN _ 62 case _ _ +59 bullet bullet NOUN NN Number=Sing 61 compound _ SpaceAfter=No +60 - - PUNCT HYPH _ 61 punct _ SpaceAfter=No +61 proof proof NOUN NN Number=Sing 62 compound _ _ +62 fabrics fabric NOUN NNS Number=Plur 57 nmod _ SpaceAfter=No +63 , , PUNCT , _ 65 punct _ _ +64 elastic elastic ADJ JJ Degree=Pos 65 amod _ _ +65 fibers fiber NOUN NNS Number=Plur 62 conj _ _ +66 or or CCONJ CC _ 69 cc _ _ +67 superalloy superalloy ADJ JJ Degree=Pos 69 amod _ _ +68 aerospace aerospace NOUN NN Number=Sing 69 compound _ _ +69 fibers fiber NOUN NNS Number=Plur 62 conj _ SpaceAfter=No +70 . . PUNCT . _ 8 punct _ _ + +# sent_id = 135 +# text = Again, when it comes Taiwan's biggest export item, finished fabrics, these too are largely limited to apparel fabrics, with few companies getting involved in other areas despite their potential. +1 Again again ADV RB _ 19 advmod _ SpaceAfter=No +2 , , PUNCT , _ 19 punct _ _ +3 when when ADV WRB PronType=Int 5 mark _ _ +4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ +5 comes come VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 advcl _ _ +6 Taiwan Taiwan PROPN NNP Number=Sing 10 nmod:poss _ SpaceAfter=No +7 's 's PART POS _ 6 case _ _ +8 biggest biggest ADJ JJS Degree=Sup 10 amod _ _ +9 export export NOUN NN Number=Sing 10 compound _ _ +10 item item NOUN NN Number=Sing 5 obj _ SpaceAfter=No +11 , , PUNCT , _ 13 punct _ _ +12 finished finish VERB VBN Tense=Past|VerbForm=Part 13 amod _ _ +13 fabrics fabric NOUN NNS Number=Plur 10 conj _ SpaceAfter=No +14 , , PUNCT , _ 19 punct _ _ +15 these these PRON DT Number=Plur|PronType=Dem 19 nsubj _ _ +16 too too ADV RB _ 19 advmod _ _ +17 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 19 cop _ _ +18 largely largely ADV RB _ 19 advmod _ _ +19 limited limit ADJ JJ Degree=Pos 0 root _ _ +20 to to PART TO _ 21 mark _ _ +21 apparel apparel VERB VB VerbForm=Inf 19 advcl _ _ +22 fabrics fabric NOUN NNS Number=Plur 21 obj _ SpaceAfter=No +23 , , PUNCT , _ 21 punct _ _ +24 with with ADP IN _ 26 case _ _ +25 few few ADJ JJ Degree=Pos 26 amod _ _ +26 companies company NOUN NNS Number=Plur 19 obl _ _ +27 getting get VERB VBG VerbForm=Ger 26 acl _ _ +28 involved involved ADJ JJ Degree=Pos 27 obj _ _ +29 in in ADP IN _ 31 case _ _ +30 other other ADJ JJ Degree=Pos 31 amod _ _ +31 areas area NOUN NNS Number=Plur 28 obl _ _ +32 despite despite ADP IN _ 34 case _ _ +33 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 potential potential NOUN NN Number=Sing 31 nmod _ SpaceAfter=No +35 . . PUNCT . _ 19 punct _ _ + +# sent_id = 136 +# text = For instance, Taiwan has been struck by many landslides in recent years, and requires large quantities of geotextiles-heavy-grade textiles laid under or around civil engineering structures to prevent erosion by groundwater movement. +1 For for ADP IN _ 2 case _ _ +2 instance instance NOUN NN Number=Sing 7 obl _ SpaceAfter=No +3 , , PUNCT , _ 7 punct _ _ +4 Taiwan Taiwan PROPN NNP Number=Sing 7 nsubj:pass _ _ +5 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +6 been be AUX VBN Tense=Past|VerbForm=Part 7 aux:pass _ _ +7 struck strike VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 by by ADP IN _ 10 case _ _ +9 many many ADJ JJ Degree=Pos 10 amod _ _ +10 landslides landslide NOUN NNS Number=Plur 7 obl _ _ +11 in in ADP IN _ 13 case _ _ +12 recent recent ADJ JJ Degree=Pos 13 amod _ _ +13 years year NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +14 , , PUNCT , _ 16 punct _ _ +15 and and CCONJ CC _ 16 cc _ _ +16 requires require VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 conj _ _ +17 large large ADJ JJ Degree=Pos 18 amod _ _ +18 quantities quantity NOUN NNS Number=Plur 16 obj _ _ +19 of of ADP IN _ 25 case _ _ +20 geotextiles geotextile NOUN NNS Number=Plur 24 compound _ SpaceAfter=No +21 - - PUNCT HYPH _ 24 punct _ SpaceAfter=No +22 heavy heavy ADJ JJ Degree=Pos 24 amod _ SpaceAfter=No +23 - - PUNCT HYPH _ 24 punct _ SpaceAfter=No +24 grade grade NOUN NN Number=Sing 25 compound _ _ +25 textiles textile NOUN NNS Number=Plur 18 nmod _ _ +26 laid lay ADJ JJ Degree=Pos 25 advmod _ _ +27 under under ADP IN _ 32 case _ _ +28 or or CCONJ CC _ 32 cc _ _ +29 around around ADP IN _ 32 case _ _ +30 civil civil ADJ JJ Degree=Pos 32 amod _ _ +31 engineering engineere NOUN NN Number=Sing 32 compound _ _ +32 structures structure NOUN NNS Number=Plur 26 obl _ _ +33 to to PART TO _ 34 mark _ _ +34 prevent prevent VERB VB VerbForm=Inf 16 xcomp _ _ +35 erosion erosion NOUN NN Number=Sing 34 obj _ _ +36 by by ADP IN _ 38 case _ _ +37 groundwater groundwater NOUN NN Number=Sing 38 compound _ _ +38 movement movement NOUN NN Number=Sing 34 obl _ SpaceAfter=No +39 . . PUNCT . _ 7 punct _ _ + +# sent_id = 137 +# text = The currently planned high-speed rail system alone is expected to require several million yards of geotextiles. +1 The the DET DT Definite=Def|PronType=Art 8 det _ _ +2 currently currently ADV RB _ 3 advmod _ _ +3 planned plan VERB VBN Tense=Past|VerbForm=Part 8 amod _ _ +4 high high ADJ JJ Degree=Pos 6 amod _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 speed speed NOUN NN Number=Sing 7 compound _ _ +7 rail rail NOUN NN Number=Sing 8 compound _ _ +8 system system NOUN NN Number=Sing 11 nsubj:pass _ _ +9 alone alone ADV RB _ 8 advmod _ _ +10 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 aux:pass _ _ +11 expected expect VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +12 to to PART TO _ 13 mark _ _ +13 require require VERB VB VerbForm=Inf 11 xcomp _ _ +14 several several ADJ JJ Degree=Pos 16 amod _ _ +15 million million NUM CD NumType=Card 16 nummod _ _ +16 yards yard NOUN NNS Number=Plur 13 obj _ _ +17 of of ADP IN _ 18 case _ _ +18 geotextiles geotextile NOUN NNS Number=Plur 16 nmod _ SpaceAfter=No +19 . . PUNCT . _ 11 punct _ _ + +# sent_id = 138 +# text = But Taiwanese companies are inexperienced in this area, and sending products overseas for quality certification tests is time consuming and complicated, so local companies can only stand and watch as the entire market goes to imported products. +1 But but CCONJ CC _ 5 cc _ _ +2 Taiwanese taiwanese ADJ JJ Degree=Pos 3 amod _ _ +3 companies company NOUN NNS Number=Plur 5 nsubj:pass _ _ +4 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 aux:pass _ _ +5 inexperienced inexperienc VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 in in ADP IN _ 8 case _ _ +7 this this DET DT Number=Sing|PronType=Dem 8 det _ _ +8 area area NOUN NN Number=Sing 5 obl _ SpaceAfter=No +9 , , PUNCT , _ 11 punct _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 sending send VERB VBG VerbForm=Ger 5 conj _ _ +12 products product NOUN NNS Number=Plur 20 obj _ _ +13 overseas overseas ADV RB _ 17 advmod _ _ +14 for for ADP IN _ 17 case _ _ +15 quality quality ADJ JJ Degree=Pos 17 amod _ _ +16 certification certification NOUN NN Number=Sing 17 compound _ _ +17 tests test NOUN NNS Number=Plur 19 nsubj _ _ +18 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _ +19 time time NOUN NN Number=Sing 20 obl:npmod _ _ +20 consuming consuming VERB VBG VerbForm=Ger 11 xcomp _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 complicated complicated VERB VBN Tense=Past|VerbForm=Part 20 conj _ SpaceAfter=No +23 , , PUNCT , _ 20 punct _ _ +24 so so SCONJ IN _ 29 mark _ _ +25 local local ADJ JJ Degree=Pos 26 amod _ _ +26 companies company NOUN NNS Number=Plur 29 nsubj _ _ +27 can can AUX MD VerbForm=Fin 29 aux _ _ +28 only only ADV RB _ 29 advmod _ _ +29 stand stand VERB VB VerbForm=Inf 20 advcl _ _ +30 and and CCONJ CC _ 31 cc _ _ +31 watch watch VERB VB VerbForm=Inf 29 conj _ _ +32 as as SCONJ IN _ 36 mark _ _ +33 the the DET DT Definite=Def|PronType=Art 35 det _ _ +34 entire entire ADJ JJ Degree=Pos 35 amod _ _ +35 market market NOUN NN Number=Sing 36 nsubj _ _ +36 goes go VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 31 advcl _ _ +37 to to ADP IN _ 39 case _ _ +38 imported import ADJ JJ Degree=Pos 39 amod _ _ +39 products product NOUN NNS Number=Plur 36 obl _ SpaceAfter=No +40 . . PUNCT . _ 5 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 139 +# text = Bullet-proof fabrics? +1 Bullet bullet NOUN NN Number=Sing 4 compound _ SpaceAfter=No +2 - - PUNCT HYPH _ 1 punct _ SpaceAfter=No +3 proof proof ADJ JJ Degree=Pos 4 amod _ _ +4 fabrics fabric NOUN NNS Number=Plur 0 root _ SpaceAfter=No +5 ? ? PUNCT . _ 4 punct _ _ + +# sent_id = 140 +# text = Geotextiles? +1 Geotextiles Geotextiles NOUN NNS Number=Plur 0 root _ SpaceAfter=No +2 ? ? PUNCT . _ 1 punct _ _ + +# sent_id = 141 +# text = Are these part of the textile industry? +1 Are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 cop _ _ +2 these these DET DT Number=Plur|PronType=Dem 3 det _ _ +3 part part NOUN NN Number=Sing 0 root _ _ +4 of of ADP IN _ 7 case _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 textile textile NOUN NN Number=Sing 7 compound _ _ +7 industry industry NOUN NN Number=Sing 3 nmod _ SpaceAfter=No +8 ? ? PUNCT . _ 3 punct _ _ + +# sent_id = 142 +# text = Indeed they are. +1 Indeed indeed ADV RB _ 3 advmod _ _ +2 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +3 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ SpaceAfter=No +4 . . PUNCT . _ 3 punct _ _ + +# sent_id = 143 +# text = Yao Hsing-chuan says that textile industry products have three main fields of application: apparel, furnishings and industrial. +1 Yao Yao PROPN NNP Number=Sing 4 compound _ _ +2 Hsing Hsing PROPN NNP Number=Sing 1 flat _ SpaceAfter=No +3 - - PUNCT , _ 1 punct _ SpaceAfter=No +4 chuan chuan NOUN NN Number=Sing 5 nsubj _ _ +5 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +6 that that SCONJ IN _ 10 mark _ _ +7 textile textile NOUN NN Number=Sing 8 compound _ _ +8 industry industry NOUN NN Number=Sing 9 compound _ _ +9 products product NOUN NNS Number=Plur 10 nsubj _ _ +10 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 ccomp _ _ +11 three three NUM CD NumType=Card 13 nummod _ _ +12 main main ADJ JJ Degree=Pos 13 amod _ _ +13 fields field NOUN NNS Number=Plur 10 obj _ _ +14 of of ADP IN _ 15 case _ _ +15 application application NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +16 : : PUNCT : _ 13 punct _ _ +17 apparel apparel NOUN NN Number=Sing 13 appos _ SpaceAfter=No +18 , , PUNCT , _ 19 punct _ _ +19 furnishings furnishings NOUN NNS Number=Plur 17 conj _ _ +20 and and CCONJ CC _ 21 cc _ _ +21 industrial industrial ADJ JJ Degree=Pos 17 conj _ SpaceAfter=No +22 . . PUNCT . _ 5 punct _ _ + +# sent_id = 144 +# text = At present, over 95 % by value of ROC textile industry output is accounted for by apparel products with low added value. +1 At at ADP IN _ 2 case _ _ +2 present present ADJ JJ Degree=Pos 15 obl _ SpaceAfter=No +3 , , PUNCT , _ 15 punct _ _ +4 over over ADP IN _ 6 case _ _ +5 95 95 NUM CD NumType=Card 6 nummod _ _ +6 % % SYM NN Number=Sing 15 obl _ _ +7 by by ADP IN _ 8 case _ _ +8 value value NOUN NN Number=Sing 15 obl _ _ +9 of of ADP IN _ 12 case _ _ +10 ROC ROC NOUN NN Number=Sing 12 compound _ _ +11 textile textile NOUN NN Number=Sing 12 compound _ _ +12 industry industry NOUN NN Number=Sing 13 compound _ _ +13 output output NOUN NN Number=Sing 15 nsubj:pass _ _ +14 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 15 aux:pass _ _ +15 accounted account VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +16 for for ADP IN _ 19 case _ _ +17 by by ADP IN _ 19 case _ _ +18 apparel apparel NOUN NN Number=Sing 19 compound _ _ +19 products product NOUN NNS Number=Plur 15 obl _ _ +20 with with ADP IN _ 23 case _ _ +21 low low ADV RB Degree=Pos 22 advmod _ _ +22 added add VERB VBN Tense=Past|VerbForm=Part 23 amod _ _ +23 value value NOUN NN Number=Sing 19 nmod _ SpaceAfter=No +24 . . PUNCT . _ 15 punct _ _ + +# sent_id = 145 +# text = By contrast, in the USA textiles for clothing and industrial applications are produced in equal quantities, and industrial textiles include a wide variety of different products, many of which are technically demanding and command profit margins with which most apparel products can not compare. +1 By by ADP IN _ 2 case _ _ +2 contrast contrast ADJ JJ Degree=Pos 14 obl _ SpaceAfter=No +3 , , PUNCT , _ 14 punct _ _ +4 in in ADP IN _ 7 case _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 USA USA PROPN NNP Number=Sing 7 compound _ _ +7 textiles textile NOUN NNS Number=Plur 14 obl _ _ +8 for for ADP IN _ 9 case _ _ +9 clothing clothing NOUN NN Number=Sing 7 nmod _ _ +10 and and CCONJ CC _ 12 cc _ _ +11 industrial industrial ADJ JJ Degree=Pos 12 amod _ _ +12 applications application NOUN NNS Number=Plur 9 conj _ _ +13 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 aux:pass _ _ +14 produced produce VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +15 in in ADP IN _ 17 case _ _ +16 equal equal ADJ JJ Degree=Pos 17 amod _ _ +17 quantities quantity NOUN NNS Number=Plur 14 obl _ SpaceAfter=No +18 , , PUNCT , _ 22 punct _ _ +19 and and CCONJ CC _ 22 cc _ _ +20 industrial industrial ADJ JJ Degree=Pos 21 amod _ _ +21 textiles textile NOUN NNS Number=Plur 22 nsubj _ _ +22 include include VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 14 conj _ _ +23 a a DET DT Definite=Ind|PronType=Art 25 det _ _ +24 wide wide ADJ JJ Degree=Pos 25 amod _ _ +25 variety variety NOUN NN Number=Sing 22 obj _ _ +26 of of ADP IN _ 28 case _ _ +27 different different ADJ JJ Degree=Pos 28 amod _ _ +28 products product NOUN NNS Number=Plur 25 nmod _ SpaceAfter=No +29 , , PUNCT , _ 14 punct _ _ +30 many many ADJ JJ Degree=Pos 35 nsubj _ _ +31 of of ADP IN _ 32 case _ _ +32 which which PRON WDT PronType=Int 30 obl _ _ +33 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 35 aux _ _ +34 technically technically ADV RB _ 35 advmod _ _ +35 demanding demanding VERB VBG Tense=Pres|VerbForm=Part 14 ccomp _ _ +36 and and CCONJ CC _ 37 cc _ _ +37 command command VERB VB VerbForm=Inf 35 conj _ _ +38 profit profit NOUN NN Number=Sing 39 compound _ _ +39 margins margin NOUN NNS Number=Plur 37 obj _ _ +40 with with ADP IN _ 47 case _ _ +41 which which PRON WDT PronType=Rel 47 nsubj _ _ +42 most most ADJ JJS Degree=Sup 44 amod _ _ +43 apparel apparel NOUN NN Number=Sing 44 compound _ _ +44 products product NOUN NNS Number=Plur 47 nsubj _ _ +45 can can AUX MD VerbForm=Fin 47 aux _ _ +46 not not PART RB _ 47 advmod _ _ +47 compare compare VERB VB VerbForm=Inf 37 acl:relcl _ SpaceAfter=No +48 . . PUNCT . _ 14 punct _ _ + +# sent_id = 146 +# text = Hence the CTI has already made it one of its major goals to encourage firms to shift their orientation towards industrial textiles. +1 Hence hence VERB VB Mood=Imp|VerbForm=Fin 0 root _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 CTI Cto NOUN NN Number=Sing 6 nsubj _ _ +4 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +5 already already ADV RB _ 6 advmod _ _ +6 made make VERB VBN Tense=Past|VerbForm=Part 1 ccomp _ _ +7 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 6 obj _ _ +8 one one NUM CD NumType=Card 6 xcomp _ _ +9 of of ADP IN _ 12 case _ _ +10 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ _ +11 major major ADJ JJ Degree=Pos 12 amod _ _ +12 goals goal NOUN NNS Number=Plur 8 nmod _ _ +13 to to PART TO _ 14 mark _ _ +14 encourage encourage VERB VB VerbForm=Inf 12 acl _ _ +15 firms firm NOUN NNS Number=Plur 14 obj _ _ +16 to to PART TO _ 17 mark _ _ +17 shift shift VERB VB VerbForm=Inf 14 xcomp _ _ +18 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 19 nmod:poss _ _ +19 orientation orientation NOUN NN Number=Sing 17 obj _ _ +20 towards towards ADP IN _ 22 case _ _ +21 industrial industrial ADJ JJ Degree=Pos 22 amod _ _ +22 textiles textile NOUN NNS Number=Plur 17 obl _ SpaceAfter=No +23 . . PUNCT . _ 1 punct _ _ + +# sent_id = 147 +# text = The development of stainless-steel fibers is one success story in this area. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 development development NOUN NN Number=Sing 11 nsubj _ _ +3 of of ADP IN _ 7 case _ _ +4 stainless stainless ADJ JJ Degree=Pos 6 amod _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 steel steel NOUN NN Number=Sing 7 compound _ _ +7 fibers fiber NOUN NNS Number=Plur 2 nmod _ _ +8 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 11 cop _ _ +9 one one NUM CD NumType=Card 11 nummod _ _ +10 success success NOUN NN Number=Sing 11 compound _ _ +11 story story NOUN NN Number=Sing 0 root _ _ +12 in in ADP IN _ 14 case _ _ +13 this this DET DT Number=Sing|PronType=Dem 14 det _ _ +14 area area NOUN NN Number=Sing 11 nmod _ SpaceAfter=No +15 . . PUNCT . _ 11 punct _ _ + +# sent_id = 148 +# text = From false teeth to space suits Dotted among the paddy fields of Taichung County's Houli Rural Township are many metal-clad buildings which house a variety of factories producing such products as plastics, furniture and electronic components. +1 From from ADP IN _ 3 case _ _ +2 false false ADJ JJ Degree=Pos 3 amod _ _ +3 teeth tooth NOUN NNS Number=Plur 24 nsubj _ _ +4 to to ADP IN _ 6 case _ _ +5 space space NOUN NN Number=Sing 6 compound _ _ +6 suits suit NOUN NNS Number=Plur 3 nmod _ _ +7 Dotted Dot VERB VBN Tense=Past|VerbForm=Part 6 acl _ _ +8 among among ADP IN _ 11 case _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 paddy paddy NOUN NN Number=Sing 11 compound _ _ +11 fields field NOUN NNS Number=Plur 7 obl _ _ +12 of of ADP IN _ 18 case _ _ +13 Taichung Taichung ADJ JJ Degree=Pos 14 amod _ _ +14 County county PROPN NNP Number=Sing 18 nmod:poss _ SpaceAfter=No +15 's 's PART POS _ 14 case _ _ +16 Houli Houli PROPN NNP Number=Sing 18 compound _ _ +17 Rural rural PROPN NNP Number=Sing 18 compound _ _ +18 Township Township PROPN NNP Number=Sing 11 nmod _ _ +19 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 24 cop _ _ +20 many many ADJ JJ Degree=Pos 24 amod _ _ +21 metal metal NOUN NN Number=Sing 23 compound _ SpaceAfter=No +22 - - PUNCT HYPH _ 23 punct _ SpaceAfter=No +23 clad clad NOUN NN Number=Sing 24 compound _ _ +24 buildings building NOUN NNS Number=Plur 0 root _ _ +25 which which PRON WDT PronType=Rel 26 nsubj _ _ +26 house house VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 24 acl:relcl _ _ +27 a a DET DT Definite=Ind|PronType=Art 28 det _ _ +28 variety variety NOUN NN Number=Sing 26 obj _ _ +29 of of ADP IN _ 30 case _ _ +30 factories factory NOUN NNS Number=Plur 28 nmod _ _ +31 producing produce VERB VBG VerbForm=Ger 28 acl _ _ +32 such such ADJ JJ Degree=Pos 33 amod _ _ +33 products product NOUN NNS Number=Plur 31 obj _ _ +34 as as ADP IN _ 35 case _ _ +35 plastics plastics NOUN NNS Number=Plur 33 nmod _ SpaceAfter=No +36 , , PUNCT , _ 37 punct _ _ +37 furniture furniture NOUN NN Number=Sing 35 conj _ _ +38 and and CCONJ CC _ 40 cc _ _ +39 electronic electronic ADJ JJ Degree=Pos 40 amod _ _ +40 components component NOUN NNS Number=Plur 35 conj _ SpaceAfter=No +41 . . PUNCT . _ 24 punct _ _ + +# sent_id = 149 +# text = Among them is King's Metal Fiber Technologies Company, the only firm in Taiwan which draws fibers from stainless steel. +1 Among among ADP IN _ 2 case _ _ +2 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 4 nsubj _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +4 King King PROPN NNP Number=Sing 9 nmod:poss _ SpaceAfter=No +5 's 's PART POS _ 4 case _ _ +6 Metal metal PROPN NNP Number=Sing 8 compound _ _ +7 Fiber Fiber PROPN NNP Number=Sing 6 flat _ _ +8 Technologies Technologies PROPN NNPS Number=Plur 9 compound _ _ +9 Company company PROPN NNP Number=Sing 13 flat _ SpaceAfter=No +10 , , PUNCT , _ 13 punct _ _ +11 the the DET DT Definite=Def|PronType=Art 13 det _ _ +12 only only ADJ JJ Degree=Pos 13 amod _ _ +13 firm firm NOUN NN Number=Sing 0 root _ _ +14 in in ADP IN _ 15 case _ _ +15 Taiwan Taiwan PROPN NNP Number=Sing 13 nmod _ _ +16 which which PRON WDT PronType=Rel 17 nsubj _ _ +17 draws draw VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 13 acl:relcl _ _ +18 fibers fiber NOUN NNS Number=Plur 17 obj _ _ +19 from from ADP IN _ 21 case _ _ +20 stainless stainless ADJ JJ Degree=Pos 21 amod _ _ +21 steel steel NOUN NN Number=Sing 18 nmod _ SpaceAfter=No +22 . . PUNCT . _ 13 punct _ _ + +# sent_id = 150 +# text = King's president Rocky Chang is known to all as Dr. Chang, and is indeed still a practicing dentist. +1 King King PROPN NNP Number=Sing 4 nmod:poss _ SpaceAfter=No +2 's 's PART POS _ 1 case _ _ +3 president president PROPN NNP Number=Sing 4 compound _ _ +4 Rocky Rocky PROPN NNP Number=Sing 7 nsubj:pass _ _ +5 Chang Chang PROPN NNP Number=Sing 4 flat _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux:pass _ _ +7 known know VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +8 to to ADP IN _ 9 case _ _ +9 all all DET DT _ 7 obl _ _ +10 as as ADP IN _ 11 case _ _ +11 Dr. Dr. PROPN NNP Number=Sing 7 obl _ _ +12 Chang Chang PROPN NNP Number=Sing 11 flat _ SpaceAfter=No +13 , , PUNCT , _ 20 punct _ _ +14 and and CCONJ CC _ 20 cc _ _ +15 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 20 cop _ _ +16 indeed indeed ADV RB _ 20 advmod _ _ +17 still still ADV RB _ 20 advmod _ _ +18 a a DET DT Definite=Ind|PronType=Art 20 det _ _ +19 practicing practicing VERB VBG VerbForm=Ger 20 amod _ _ +20 dentist dentist NOUN NN Number=Sing 7 conj _ SpaceAfter=No +21 . . PUNCT . _ 7 punct _ _ + +# sent_id = 151 +# text = A decade or so ago, while he was studying in Australia, he developed an interest in metallurgy, and hoped to develop the use of metals in tooth implants. +1 A a DET DT Definite=Ind|PronType=Art 2 det _ _ +2 decade decade NOUN NN Number=Sing 5 obl:npmod _ _ +3 or or CCONJ CC _ 5 cc _ _ +4 so so ADV RB _ 5 advmod _ _ +5 ago ago ADV RB _ 6 conj _ SpaceAfter=No +6 , , PUNCT , _ 10 punct _ _ +7 while while SCONJ IN _ 10 mark _ _ +8 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 10 nsubj _ _ +9 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 10 aux _ _ +10 studying study VERB VBG Tense=Pres|VerbForm=Part 15 advcl _ _ +11 in in ADP IN _ 12 case _ _ +12 Australia Australia PROPN NNP Number=Sing 10 obl _ SpaceAfter=No +13 , , PUNCT , _ 15 punct _ _ +14 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 15 nsubj _ _ +15 developed develop VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +16 an a DET DT Definite=Ind|PronType=Art 17 det _ _ +17 interest interest NOUN NN Number=Sing 15 obj _ _ +18 in in ADP IN _ 19 case _ _ +19 metallurgy metallurgy NOUN NN Number=Sing 17 nmod _ SpaceAfter=No +20 , , PUNCT , _ 22 punct _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 hoped hope VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 15 conj _ _ +23 to to PART TO _ 24 mark _ _ +24 develop develop VERB VB VerbForm=Inf 22 xcomp _ _ +25 the the DET DT Definite=Def|PronType=Art 26 det _ _ +26 use use NOUN NN Number=Sing 24 obj _ _ +27 of of ADP IN _ 28 case _ _ +28 metals metals NOUN NNS Number=Plur 26 nmod _ _ +29 in in ADP IN _ 31 case _ _ +30 tooth tooth DET DT _ 31 det _ _ +31 implants implant NOUN NNS Number=Plur 28 nmod _ SpaceAfter=No +32 . . PUNCT . _ 15 punct _ _ + +# sent_id = 152 +# text = Later he learned that stainless steels have an enormously wide range of applications in the textiles, industrial and military fields. +1 Later later ADV RBR Degree=Cmp 3 advmod _ _ +2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 3 nsubj _ _ +3 learned learn VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 that that SCONJ IN _ 7 mark _ _ +5 stainless stainless ADJ JJ Degree=Pos 6 amod _ _ +6 steels steels NOUN NNS Number=Plur 7 nsubj _ _ +7 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 ccomp _ _ +8 an a DET DT Definite=Ind|PronType=Art 11 det _ _ +9 enormously enormously ADV RB _ 10 advmod _ _ +10 wide wide ADJ JJ Degree=Pos 11 amod _ _ +11 range range NOUN NN Number=Sing 7 obj _ _ +12 of of ADP IN _ 13 case _ _ +13 applications application NOUN NNS Number=Plur 11 nmod _ _ +14 in in ADP IN _ 16 case _ _ +15 the the DET DT Definite=Def|PronType=Art 16 det _ _ +16 textiles textile NOUN NNS Number=Plur 11 nmod _ SpaceAfter=No +17 , , PUNCT , _ 18 punct _ _ +18 industrial industrial ADJ JJ Degree=Pos 16 conj _ _ +19 and and CCONJ CC _ 21 cc _ _ +20 military military ADJ JJ Degree=Pos 21 amod _ _ +21 fields field NOUN NNS Number=Plur 16 conj _ SpaceAfter=No +22 . . PUNCT . _ 3 punct _ _ + +# sent_id = 153 +# text = But he could not find a partner to work with in Australia, so he returned to Taiwan and began collaborating with the CTI. +1 But but CCONJ CC _ 5 cc _ _ +2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ +3 could could AUX MD VerbForm=Fin 5 aux _ _ +4 not not PART RB _ 5 advmod _ _ +5 find find VERB VB VerbForm=Inf 0 root _ _ +6 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +7 partner partner NOUN NN Number=Sing 5 obj _ _ +8 to to PART TO _ 9 mark _ _ +9 work work VERB VB VerbForm=Inf 7 acl _ _ +10 with with ADP IN _ 12 case _ _ +11 in in ADP IN _ 12 case _ _ +12 Australia Australia PROPN NNP Number=Sing 9 obl _ SpaceAfter=No +13 , , PUNCT , _ 5 punct _ _ +14 so so ADV RB _ 16 advmod _ _ +15 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 16 nsubj _ _ +16 returned return VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 parataxis _ _ +17 to to ADP IN _ 18 case _ _ +18 Taiwan Taiwan PROPN NNP Number=Sing 16 obl _ _ +19 and and CCONJ CC _ 20 cc _ _ +20 began begin VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 16 conj _ _ +21 collaborating collaborate VERB VBG VerbForm=Ger 20 xcomp _ _ +22 with with ADP IN _ 24 case _ _ +23 the the DET DT Definite=Def|PronType=Art 24 det _ _ +24 CTI Cto NOUN NN Number=Sing 21 obl _ SpaceAfter=No +25 . . PUNCT . _ 5 punct _ _ + +# sent_id = 154 +# text = Today, not only is King's on a par with the large overseas manufacturers in terms of filament drawing technology, but to assist local downstream manufacturers in using its products, it has also set up metal fiber yarn spinning and fabric weaving plants, and is making efforts in the area of nonwoven fabrics. +1 Today today NOUN NN Number=Sing 6 nsubj _ SpaceAfter=No +2 , , PUNCT , _ 1 punct _ _ +3 not not ADV RB _ 4 advmod _ _ +4 only only ADV RB _ 6 cc:preconj _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +6 King King PROPN NNP Number=Sing 0 root _ SpaceAfter=No +7 's 's PART POS _ 6 case _ _ +8 on on ADP IN _ 10 case _ _ +9 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 par par NOUN NN Number=Sing 6 obl _ _ +11 with with ADP IN _ 15 case _ _ +12 the the DET DT Definite=Def|PronType=Art 15 det _ _ +13 large large ADJ JJ Degree=Pos 15 amod _ _ +14 overseas overseas ADJ JJ Degree=Pos 15 amod _ _ +15 manufacturers manufacturer NOUN NNS Number=Plur 10 nmod _ _ +16 in in ADP IN _ 17 case _ _ +17 terms term NOUN NNS Number=Plur 15 nmod _ _ +18 of of ADP IN _ 21 case _ _ +19 filament filament NOUN NN Number=Sing 21 compound _ _ +20 drawing draw NOUN NN Number=Sing 21 compound _ _ +21 technology technology NOUN NN Number=Sing 17 nmod _ SpaceAfter=No +22 , , PUNCT , _ 37 punct _ _ +23 but but CCONJ CC _ 37 cc _ _ +24 to to PART TO _ 25 mark _ _ +25 assist assist VERB VB VerbForm=Inf 37 advcl _ _ +26 local local ADJ JJ Degree=Pos 28 amod _ _ +27 downstream downstream ADJ JJ Degree=Pos 28 amod _ _ +28 manufacturers manufacturer NOUN NNS Number=Plur 25 obj _ _ +29 in in SCONJ IN _ 30 mark _ _ +30 using use VERB VBG VerbForm=Ger 25 advcl _ _ +31 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 32 nmod:poss _ _ +32 products product NOUN NNS Number=Plur 30 obj _ SpaceAfter=No +33 , , PUNCT , _ 37 punct _ _ +34 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 37 nsubj _ _ +35 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 37 aux _ _ +36 also also ADV RB _ 37 advmod _ _ +37 set set VERB VBN Tense=Past|VerbForm=Part 6 conj _ _ +38 up up ADP RP _ 37 compound:prt _ _ +39 metal metal NOUN NN Number=Sing 40 compound _ _ +40 fiber fiber NOUN NN Number=Sing 41 compound _ _ +41 yarn yarn NOUN NN Number=Sing 42 compound _ _ +42 spinning spinning NOUN NN Number=Sing 37 obj _ _ +43 and and CCONJ CC _ 44 cc _ _ +44 fabric fabric NOUN NN Number=Sing 42 conj _ _ +45 weaving weave VERB VBG VerbForm=Ger 44 acl _ _ +46 plants plant NOUN NNS Number=Plur 45 obj _ SpaceAfter=No +47 , , PUNCT , _ 50 punct _ _ +48 and and CCONJ CC _ 50 cc _ _ +49 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 50 aux _ _ +50 making make VERB VBG Tense=Pres|VerbForm=Part 6 conj _ _ +51 efforts efforts NOUN NNS Number=Plur 50 obj _ _ +52 in in ADP IN _ 54 case _ _ +53 the the DET DT Definite=Def|PronType=Art 54 det _ _ +54 area area NOUN NN Number=Sing 51 nmod _ _ +55 of of ADP IN _ 57 case _ _ +56 nonwoven nonwoven ADJ JJ Degree=Pos 57 amod _ _ +57 fabrics fabric NOUN NNS Number=Plur 54 nmod _ SpaceAfter=No +58 . . PUNCT . _ 6 punct _ _ + +# sent_id = 155 +# text = Stroking the silver-gray ringlets which are twice as fine as human hair, Chang says that these soft, flexible fibers of high-grade steel can not only make fashion fabrics glisten with a mysterious modern sheen suitable for a millennium party, but-thanks to metals' outstanding capacity to shield and conduct electromagnetic waves, and their ability to withstand high temperatures and acid or caustic environments-they also have a wide range of applications in many industries. +1 Stroking Strok VERB VBG VerbForm=Ger 17 advcl _ _ +2 the the DET DT Definite=Def|PronType=Art 6 det _ _ +3 silver silver NOUN NN Number=Sing 5 compound _ SpaceAfter=No +4 - - PUNCT HYPH _ 5 punct _ SpaceAfter=No +5 gray gray NOUN NN Number=Sing 6 compound _ _ +6 ringlets ringlet NOUN NNS Number=Plur 1 obj _ _ +7 which which PRON WDT PronType=Rel 11 nsubj _ _ +8 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 cop _ _ +9 twice twice ADV RB NumType=Mult 11 advmod _ _ +10 as as ADV RB _ 11 advmod _ _ +11 fine fine ADJ JJ Degree=Pos 6 acl:relcl _ _ +12 as as SCONJ IN _ 14 mark _ _ +13 human human ADJ JJ Degree=Pos 14 amod _ _ +14 hair hair NOUN NN Number=Sing 11 advcl _ SpaceAfter=No +15 , , PUNCT , _ 17 punct _ _ +16 Chang Chang PROPN NNP Number=Sing 17 nsubj _ _ +17 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +18 that that SCONJ IN _ 32 mark _ _ +19 these these DET DT Number=Plur|PronType=Dem 23 det _ _ +20 soft soft ADJ JJ Degree=Pos 23 amod _ SpaceAfter=No +21 , , PUNCT , _ 23 punct _ _ +22 flexible flexible ADJ JJ Degree=Pos 23 amod _ _ +23 fibers fiber NOUN NNS Number=Plur 32 nsubj _ _ +24 of of ADP IN _ 28 case _ _ +25 high high ADJ JJ Degree=Pos 27 amod _ SpaceAfter=No +26 - - PUNCT HYPH _ 27 punct _ SpaceAfter=No +27 grade grade NOUN NN Number=Sing 28 compound _ _ +28 steel steel NOUN NN Number=Sing 23 nmod _ _ +29 can can AUX MD VerbForm=Fin 32 aux _ _ +30 not not PART RB _ 32 advmod _ _ +31 only only ADV RB _ 32 advmod _ _ +32 make make VERB VB VerbForm=Inf 17 ccomp _ _ +33 fashion fashion NOUN NN Number=Sing 34 compound _ _ +34 fabrics fabric NOUN NNS Number=Plur 32 obj _ _ +35 glisten glisten VERB VB VerbForm=Inf 32 xcomp _ _ +36 with with ADP IN _ 40 case _ _ +37 a a DET DT Definite=Ind|PronType=Art 40 det _ _ +38 mysterious mysterious ADJ JJ Degree=Pos 40 amod _ _ +39 modern modern ADJ JJ Degree=Pos 40 amod _ _ +40 sheen sheen NOUN NN Number=Sing 35 obl _ _ +41 suitable suitable ADJ JJ Degree=Pos 40 amod _ _ +42 for for ADP IN _ 45 case _ _ +43 a a DET DT Definite=Ind|PronType=Art 45 det _ _ +44 millennium millennium NOUN NN Number=Sing 45 compound _ _ +45 party party NOUN NN Number=Sing 41 obl _ SpaceAfter=No +46 , , PUNCT , _ 49 punct _ _ +47 but but CCONJ CC _ 49 cc _ SpaceAfter=No +48 - - PUNCT HYPH _ 49 punct _ SpaceAfter=No +49 thanks thanks NOUN NN Number=Sing 45 conj _ _ +50 to to ADP IN _ 54 case _ _ +51 metals metals NOUN NNS Number=Plur 54 nmod:poss _ SpaceAfter=No +52 ' ' PART POS _ 51 case _ _ +53 outstanding outstanding ADJ JJ Degree=Pos 54 amod _ _ +54 capacity capacity NOUN NN Number=Sing 49 nmod _ _ +55 to to PART TO _ 56 mark _ _ +56 shield shield VERB VB VerbForm=Inf 54 acl _ _ +57 and and CCONJ CC _ 58 cc _ _ +58 conduct conduct VERB VB VerbForm=Inf 56 conj _ _ +59 electromagnetic electromagnetic ADJ JJ Degree=Pos 60 amod _ _ +60 waves wave NOUN NNS Number=Plur 58 obj _ SpaceAfter=No +61 , , PUNCT , _ 64 punct _ _ +62 and and CCONJ CC _ 64 cc _ _ +63 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 64 nmod:poss _ _ +64 ability ability NOUN NN Number=Sing 45 conj _ _ +65 to to PART TO _ 66 mark _ _ +66 withstand withstand VERB VB VerbForm=Inf 64 acl _ _ +67 high high ADJ JJ Degree=Pos 68 amod _ _ +68 temperatures temperature NOUN NNS Number=Plur 66 obj _ _ +69 and and CCONJ CC _ 73 cc _ _ +70 acid acid ADJ JJ Degree=Pos 73 amod _ _ +71 or or CCONJ CC _ 72 cc _ _ +72 caustic caustic ADJ JJ Degree=Pos 70 conj _ _ +73 environments environment NOUN NNS Number=Plur 68 conj _ SpaceAfter=No +74 - - PUNCT , _ 64 punct _ SpaceAfter=No +75 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 77 nsubj _ _ +76 also also ADV RB _ 77 advmod _ _ +77 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 64 parataxis _ _ +78 a a DET DT Definite=Ind|PronType=Art 80 det _ _ +79 wide wide ADJ JJ Degree=Pos 80 amod _ _ +80 range range NOUN NN Number=Sing 77 obj _ _ +81 of of ADP IN _ 82 case _ _ +82 applications application NOUN NNS Number=Plur 80 nmod _ _ +83 in in ADP IN _ 85 case _ _ +84 many many ADJ JJ Degree=Pos 85 amod _ _ +85 industries industry NOUN NNS Number=Plur 77 obl _ SpaceAfter=No +86 . . PUNCT . _ 17 punct _ _ + +# sent_id = 156 +# text = For instance, at a recent international furniture show in Taipei, King's exhibited sound insulating panels containing metal fibers, which hi-fi buffs can install to produce an excellent sound studio effect. +1 For for ADP IN _ 2 case _ _ +2 instance instance NOUN NN Number=Sing 9 obl _ SpaceAfter=No +3 , , PUNCT , _ 9 punct _ _ +4 at at ADP IN _ 9 case _ _ +5 a a DET DT Definite=Ind|PronType=Art 9 det _ _ +6 recent recent ADJ JJ Degree=Pos 9 amod _ _ +7 international international ADJ JJ Degree=Pos 9 amod _ _ +8 furniture furniture NOUN NN Number=Sing 9 compound _ _ +9 show show NOUN NN Number=Sing 0 root _ _ +10 in in ADP IN _ 11 case _ _ +11 Taipei Taipei PROPN NNP Number=Sing 16 nmod:poss _ SpaceAfter=No +12 , , PUNCT , _ 11 punct _ _ +13 King King PROPN NNP Number=Sing 11 flat _ SpaceAfter=No +14 's 's PART POS _ 11 case _ _ +15 exhibited exhibit VERB VBN Tense=Past|VerbForm=Part 16 amod _ _ +16 sound sound NOUN NN Number=Sing 9 nmod _ _ +17 insulating insulating VERB VBG VerbForm=Ger 16 acl _ _ +18 panels panel NOUN NNS Number=Plur 21 compound _ _ +19 containing contain VERB VBG VerbForm=Ger 21 amod _ _ +20 metal metal NOUN NN Number=Sing 21 compound _ _ +21 fibers fiber NOUN NNS Number=Plur 17 obj _ SpaceAfter=No +22 , , PUNCT , _ 21 punct _ _ +23 which which DET WDT PronType=Int 27 det _ _ +24 hi hi NOUN NN Number=Sing 26 compound _ SpaceAfter=No +25 - - PUNCT HYPH _ 26 punct _ SpaceAfter=No +26 fi fi NOUN NN Number=Sing 27 compound _ _ +27 buffs buff NOUN NNS Number=Plur 29 nsubj _ _ +28 can can AUX MD VerbForm=Fin 29 aux _ _ +29 install install VERB VB VerbForm=Inf 21 acl:relcl _ _ +30 to to PART TO _ 31 mark _ _ +31 produce produce VERB VB VerbForm=Inf 29 xcomp _ _ +32 an a DET DT Definite=Ind|PronType=Art 36 det _ _ +33 excellent excellent ADJ JJ Degree=Pos 36 amod _ _ +34 sound sound NOUN NN Number=Sing 35 compound _ _ +35 studio studio NOUN NN Number=Sing 36 compound _ _ +36 effect effect NOUN NN Number=Sing 31 obj _ SpaceAfter=No +37 . . PUNCT . _ 9 punct _ _ + +# sent_id = 157 +# text = Cellphone cases of metal fabric can shield users from the electromagnetic radiation the phones produce; and in the clean rooms of silicon wafer fabs, where dust particles attracted by static electricity on clothing are the biggest bugbear, there is a host of applications for anti-static fabrics, from workers' clothing and footwear to trolleys, conveyor belts and wall coverings. +1 Cellphone Cellphone ADJ JJ Degree=Pos 2 amod _ _ +2 cases case NOUN NNS Number=Plur 7 nsubj _ _ +3 of of ADP IN _ 5 case _ _ +4 metal metal NOUN NN Number=Sing 5 compound _ _ +5 fabric fabric NOUN NN Number=Sing 2 nmod _ _ +6 can can AUX MD VerbForm=Fin 7 aux _ _ +7 shield shield VERB VB VerbForm=Inf 0 root _ _ +8 users user NOUN NNS Number=Plur 7 obj _ _ +9 from from ADP IN _ 12 case _ _ +10 the the DET DT Definite=Def|PronType=Art 12 det _ _ +11 electromagnetic electromagnetic ADJ JJ Degree=Pos 12 amod _ _ +12 radiation radiation NOUN NN Number=Sing 7 obl _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 phones phone NOUN NNS Number=Plur 15 nsubj _ _ +15 produce produce VERB VB VerbForm=Inf 12 acl:relcl _ SpaceAfter=No +16 ; ; PUNCT , _ 7 punct _ _ +17 and and CCONJ CC _ 21 cc _ _ +18 in in ADP IN _ 21 case _ _ +19 the the DET DT Definite=Def|PronType=Art 21 det _ _ +20 clean clean ADJ JJ Degree=Pos 21 amod _ _ +21 rooms room NOUN NNS Number=Plur 7 conj _ _ +22 of of ADP IN _ 25 case _ _ +23 silicon silicon NOUN NN Number=Sing 24 compound _ _ +24 wafer wafer NOUN NN Number=Sing 25 compound _ _ +25 fabs fab NOUN NNS Number=Plur 21 nmod _ SpaceAfter=No +26 , , PUNCT , _ 25 punct _ _ +27 where where ADV WRB PronType=Rel 39 advmod _ _ +28 dust dust ADJ JJ Degree=Pos 29 amod _ _ +29 particles particle NOUN NNS Number=Plur 39 nsubj _ _ +30 attracted attrac VERB VBN Tense=Past|VerbForm=Part 29 acl _ _ +31 by by ADP IN _ 33 case _ _ +32 static static NOUN NN Number=Sing 33 compound _ _ +33 electricity electricity NOUN NN Number=Sing 30 obl _ _ +34 on on ADP IN _ 35 case _ _ +35 clothing clothing NOUN NN Number=Sing 33 nmod _ _ +36 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 39 cop _ _ +37 the the DET DT Definite=Def|PronType=Art 39 det _ _ +38 biggest biggest ADJ JJS Degree=Sup 39 amod _ _ +39 bugbear bugbear NOUN NN Number=Sing 25 acl:relcl _ SpaceAfter=No +40 , , PUNCT , _ 7 punct _ _ +41 there there PRON EX _ 42 expl _ _ +42 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 parataxis _ _ +43 a a DET DT Definite=Ind|PronType=Art 44 det _ _ +44 host host NOUN NN Number=Sing 42 nsubj _ _ +45 of of ADP IN _ 46 case _ _ +46 applications application NOUN NNS Number=Plur 44 nmod _ _ +47 for for ADP IN _ 49 case _ _ +48 anti-static anti-static ADJ JJ Degree=Pos 49 amod _ _ +49 fabrics fabric NOUN NNS Number=Plur 44 nmod _ SpaceAfter=No +50 , , PUNCT , _ 7 punct _ _ +51 from from ADP IN _ 54 case _ _ +52 workers worker NOUN NNS Number=Plur 54 nmod:poss _ SpaceAfter=No +53 ' ' PART POS _ 52 case _ _ +54 clothing clothing NOUN NN Number=Sing 7 obl _ _ +55 and and CCONJ CC _ 56 cc _ _ +56 footwear footwear NOUN NN Number=Sing 54 conj _ _ +57 to to ADP IN _ 58 case _ _ +58 trolleys trolley NOUN NNS Number=Plur 7 obl _ SpaceAfter=No +59 , , PUNCT , _ 64 punct _ _ +60 conveyor conveyor CCONJ CC _ 64 cc _ _ +61 belts belt NOUN NNS Number=Plur 64 compound _ _ +62 and and CCONJ CC _ 63 cc _ _ +63 wall wall NOUN NN Number=Sing 61 conj _ _ +64 coverings coverings NOUN NNS Number=Plur 7 conj _ SpaceAfter=No +65 . . PUNCT . _ 7 punct _ _ + +# sent_id = 158 +# text = Rocky Chang says that before King's started producing metal fibers, the market was divided up between a few foreign companies which charged high prices and produced only small quantities of products. +1 Rocky Rocky PROPN NNP Number=Sing 2 compound _ _ +2 Chang Chang PROPN NNP Number=Sing 3 nsubj _ _ +3 says say VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 that that SCONJ IN _ 16 mark _ _ +5 before before SCONJ IN _ 8 mark _ _ +6 King King PROPN NNP Number=Sing 8 nsubj:pass _ SpaceAfter=No +7 's 's AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 aux:pass _ _ +8 started start VERB VBN Tense=Past|VerbForm=Part 16 advcl _ _ +9 producing produce VERB VBG VerbForm=Ger 8 xcomp _ _ +10 metal metal NOUN NN Number=Sing 11 compound _ _ +11 fibers fiber NOUN NNS Number=Plur 9 obj _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 market market NOUN NN Number=Sing 16 nsubj:pass _ _ +15 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 16 aux:pass _ _ +16 divided divide VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 3 ccomp _ _ +17 up up ADP RP _ 16 compound:prt _ _ +18 between between ADP IN _ 22 case _ _ +19 a a DET DT Definite=Ind|PronType=Art 22 det _ _ +20 few few ADJ JJ Degree=Pos 22 amod _ _ +21 foreign foreign ADJ JJ Degree=Pos 22 amod _ _ +22 companies company NOUN NNS Number=Plur 16 obl _ _ +23 which which PRON WDT PronType=Rel 24 nsubj _ _ +24 charged charge VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 22 acl:relcl _ _ +25 high high ADJ JJ Degree=Pos 26 amod _ _ +26 prices price NOUN NNS Number=Plur 24 obj _ _ +27 and and CCONJ CC _ 28 cc _ _ +28 produced produce VERB VBN Tense=Past|VerbForm=Part 24 conj _ _ +29 only only ADV RB _ 31 advmod _ _ +30 small small ADJ JJ Degree=Pos 31 amod _ _ +31 quantities quantity NOUN NNS Number=Plur 28 obj _ _ +32 of of ADP IN _ 33 case _ _ +33 products product NOUN NNS Number=Plur 31 nmod _ SpaceAfter=No +34 . . PUNCT . _ 3 punct _ _ + +# sent_id = 159 +# text = Furthermore, when Taiwanese users had difficulties with production they did not know who to turn to for help. +1 Furthermore furthermore ADV RB _ 13 advmod _ SpaceAfter=No +2 , , PUNCT , _ 13 punct _ _ +3 when when ADV WRB PronType=Int 6 mark _ _ +4 Taiwanese taiwanese ADJ JJ Degree=Pos 5 amod _ _ +5 users users NOUN NNS Number=Plur 6 nsubj _ _ +6 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 advcl _ _ +7 difficulties difficulty NOUN NNS Number=Plur 6 obj _ _ +8 with with ADP IN _ 9 case _ _ +9 production production NOUN NN Number=Sing 7 nmod _ _ +10 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 13 nsubj _ _ +11 did do AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 aux _ _ +12 not not PART RB _ 13 advmod _ _ +13 know know VERB VB VerbForm=Inf 0 root _ _ +14 who who PRON WP PronType=Int 16 nsubj _ _ +15 to to PART TO _ 16 mark _ _ +16 turn turn VERB VB VerbForm=Inf 13 ccomp _ _ +17 to to ADP IN _ 16 obl _ _ +18 for for ADP IN _ 19 case _ _ +19 help help NOUN NN Number=Sing 16 obl _ SpaceAfter=No +20 . . PUNCT . _ 13 punct _ _ + +# sent_id = 160 +# text = Looking into the future, Chang hopes that as a key material, stainless steel fiber can have a" locomotive" effect, encouraging various industries in Taiwan to develop a range of different products. +1 Looking look VERB VBG VerbForm=Ger 7 advcl _ _ +2 into into ADP IN _ 4 case _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 future future NOUN NN Number=Sing 1 obl _ SpaceAfter=No +5 , , PUNCT , _ 7 punct _ _ +6 Chang Chang PROPN NNP Number=Sing 7 nsubj _ _ +7 hopes hope VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +8 that that PRON DT Number=Sing|PronType=Dem 7 obj _ _ +9 as as ADP IN _ 12 case _ _ +10 a a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 key key ADJ JJ Degree=Pos 12 amod _ _ +12 material material NOUN NN Number=Sing 18 obl _ SpaceAfter=No +13 , , PUNCT , _ 18 punct _ _ +14 stainless stainless ADJ JJ Degree=Pos 16 amod _ _ +15 steel steel NOUN NN Number=Sing 16 compound _ _ +16 fiber fiber NOUN NN Number=Sing 18 nsubj _ _ +17 can can AUX MD VerbForm=Fin 18 aux _ _ +18 have have VERB VB VerbForm=Inf 7 ccomp _ _ +19 a a DET DT Definite=Ind|PronType=Art 23 det _ SpaceAfter=No +20 " " PUNCT `` _ 23 punct _ _ +21 locomotive locomotive NOUN NN Number=Sing 23 compound _ SpaceAfter=No +22 " " PUNCT '' _ 23 punct _ _ +23 effect effect NOUN NN Number=Sing 18 obj _ SpaceAfter=No +24 , , PUNCT , _ 23 punct _ _ +25 encouraging encourage VERB VBG VerbForm=Ger 23 acl _ _ +26 various various ADJ JJ Degree=Pos 27 amod _ _ +27 industries industries NOUN NNS Number=Plur 25 obj _ _ +28 in in ADP IN _ 29 case _ _ +29 Taiwan Taiwan PROPN NNP Number=Sing 25 obl _ _ +30 to to PART TO _ 31 mark _ _ +31 develop develop VERB VB VerbForm=Inf 25 advcl _ _ +32 a a DET DT Definite=Ind|PronType=Art 33 det _ _ +33 range range NOUN NN Number=Sing 31 obj _ _ +34 of of ADP IN _ 36 case _ _ +35 different different ADJ JJ Degree=Pos 36 amod _ _ +36 products product NOUN NNS Number=Plur 33 nmod _ SpaceAfter=No +37 . . PUNCT . _ 7 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 161 +# text = Time to get weaving Developing industrial textiles requires an understanding of different industries' needs, and also requires new channels of distribution. +1 Time time NOUN NN Number=Sing 8 nsubj _ _ +2 to to PART TO _ 3 mark _ _ +3 get get VERB VB VerbForm=Inf 1 acl _ _ +4 weaving weave VERB VBG VerbForm=Ger 3 xcomp _ _ +5 Developing develope VERB VBG VerbForm=Ger 7 amod _ _ +6 industrial industrial ADJ JJ Degree=Pos 7 amod _ _ +7 textiles textile NOUN NNS Number=Plur 4 obj _ _ +8 requires require VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +9 an a DET DT Definite=Ind|PronType=Art 10 det _ _ +10 understanding understanding NOUN NN Number=Sing 8 obj _ _ +11 of of ADP IN _ 15 case _ _ +12 different different ADJ JJ Degree=Pos 13 amod _ _ +13 industries industry NOUN NNS Number=Plur 15 nmod:poss _ SpaceAfter=No +14 ' ' PART POS _ 13 case _ _ +15 needs need NOUN NNS Number=Plur 10 nmod _ SpaceAfter=No +16 , , PUNCT , _ 19 punct _ _ +17 and and CCONJ CC _ 19 cc _ _ +18 also also ADV RB _ 19 advmod _ _ +19 requires require VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 conj _ _ +20 new new ADJ JJ Degree=Pos 21 amod _ _ +21 channels channel NOUN NNS Number=Plur 19 obj _ _ +22 of of ADP IN _ 23 case _ _ +23 distribution distribution NOUN NN Number=Sing 21 nmod _ SpaceAfter=No +24 . . PUNCT . _ 8 punct _ _ + +# sent_id = 162 +# text = For instance, cellphone cases have to be sold through electronic goods shops, while car airbags have to be sold into automotive distribution channels. +1 For for ADP IN _ 2 case _ _ +2 instance instance NOUN NN Number=Sing 6 obl _ SpaceAfter=No +3 , , PUNCT , _ 6 punct _ _ +4 cellphone cellphone NOUN NN Number=Sing 5 compound _ _ +5 cases case NOUN NNS Number=Plur 6 nsubj _ _ +6 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +7 to to PART TO _ 9 mark _ _ +8 be be AUX VB VerbForm=Inf 9 aux:pass _ _ +9 sold sell VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 6 xcomp _ _ +10 through through ADP IN _ 13 case _ _ +11 electronic electronic ADJ JJ Degree=Pos 13 amod _ _ +12 goods good NOUN NNS Number=Plur 13 compound _ _ +13 shops shop NOUN NNS Number=Plur 9 obl _ SpaceAfter=No +14 , , PUNCT , _ 6 punct _ _ +15 while while SCONJ IN _ 18 mark _ _ +16 car car NOUN NN Number=Sing 17 compound _ _ +17 airbags airbag NOUN NNS Number=Plur 18 nsubj _ _ +18 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 6 advcl _ _ +19 to to PART TO _ 21 mark _ _ +20 be be AUX VB VerbForm=Inf 21 aux:pass _ _ +21 sold sell VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 18 xcomp _ _ +22 into into ADP IN _ 25 case _ _ +23 automotive automotive ADJ JJ Degree=Pos 25 amod _ _ +24 distribution distribution NOUN NN Number=Sing 25 compound _ _ +25 channels channel NOUN NNS Number=Plur 21 obl _ SpaceAfter=No +26 . . PUNCT . _ 6 punct _ _ + +# sent_id = 163 +# text = For entrepreneurs who have previously only sold into the clothing trade, this is a challenge. +1 For for ADP IN _ 2 case _ _ +2 entrepreneurs entrepreneur NOUN NNS Number=Plur 16 obl _ _ +3 who who PRON WP PronType=Rel 4 nsubj _ _ +4 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 2 acl:relcl _ _ +5 previously previously ADV RB _ 7 advmod _ _ +6 only only ADV RB _ 7 advmod _ _ +7 sold sell VERB VBN Tense=Past|VerbForm=Part 4 xcomp _ _ +8 into into ADP IN _ 11 case _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 clothing clothing NOUN NN Number=Sing 11 compound _ _ +11 trade trade NOUN NN Number=Sing 7 obl _ SpaceAfter=No +12 , , PUNCT , _ 16 punct _ _ +13 this this PRON DT Number=Sing|PronType=Dem 16 nsubj _ _ +14 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 16 cop _ _ +15 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +16 challenge challenge NOUN NN Number=Sing 0 root _ SpaceAfter=No +17 . . PUNCT . _ 16 punct _ _ + +# sent_id = 164 +# text = How to promote" cross-industry cooperation," and get people in the textile industry to look beyond their own industry's boundaries and become effective partners for the electronics, construction, medical supplies and other industries is the next task for the CTI to tackle. +1 How how ADV WRB PronType=Int 3 advmod _ _ +2 to to PART TO _ 3 mark _ _ +3 promote promote VERB VB VerbForm=Inf 0 root _ SpaceAfter=No +4 " " PUNCT `` _ 7 punct _ _ +5 cross cross NOUN NN Number=Sing 7 compound _ SpaceAfter=No +6 -industry -industry NOUN NN Number=Sing 7 compound _ _ +7 cooperation cooperation NOUN NN Number=Sing 3 obj _ SpaceAfter=No +8 , , PUNCT , _ 7 punct _ SpaceAfter=No +9 " " PUNCT '' _ 3 punct _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 get get VERB VB VerbForm=Inf 3 conj _ _ +12 people people NOUN NNS Number=Plur 11 obj _ _ +13 in in ADP IN _ 16 case _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 textile textile NOUN NN Number=Sing 16 compound _ _ +16 industry industry NOUN NN Number=Sing 11 obl _ _ +17 to to PART TO _ 18 mark _ _ +18 look look VERB VB VerbForm=Inf 11 advcl _ _ +19 beyond beyond ADP IN _ 24 case _ _ +20 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 22 nmod:poss _ _ +21 own own ADJ JJ Degree=Pos 22 amod _ _ +22 industry industry NOUN NN Number=Sing 24 nmod:poss _ SpaceAfter=No +23 's 's PART POS _ 22 case _ _ +24 boundaries boundary NOUN NNS Number=Plur 18 obl _ _ +25 and and CCONJ CC _ 26 cc _ _ +26 become become VERB VB VerbForm=Inf 18 conj _ _ +27 effective effective ADJ JJ Degree=Pos 28 amod _ _ +28 partners partner NOUN NNS Number=Plur 43 nsubj _ _ +29 for for ADP IN _ 31 case _ _ +30 the the DET DT Definite=Def|PronType=Art 31 det _ _ +31 electronics electronics NOUN NNS Number=Plur 28 nmod _ SpaceAfter=No +32 , , PUNCT , _ 33 punct _ _ +33 construction construction NOUN NN Number=Sing 31 conj _ SpaceAfter=No +34 , , PUNCT , _ 36 punct _ _ +35 medical medical ADJ JJ Degree=Pos 36 amod _ _ +36 supplies supplies NOUN NNS Number=Plur 31 conj _ _ +37 and and CCONJ CC _ 39 cc _ _ +38 other other ADJ JJ Degree=Pos 39 amod _ _ +39 industries industry NOUN NNS Number=Plur 31 conj _ _ +40 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 43 cop _ _ +41 the the DET DT Definite=Def|PronType=Art 43 det _ _ +42 next next ADJ JJ Degree=Pos 43 amod _ _ +43 task task NOUN NN Number=Sing 26 ccomp _ _ +44 for for ADP IN _ 46 case _ _ +45 the the DET DT Definite=Def|PronType=Art 46 det _ _ +46 CTI Cto NOUN NN Number=Sing 43 nmod _ _ +47 to to ADP IN _ 48 case _ _ +48 tackle tackle NOUN NNS Number=Plur 46 nmod _ SpaceAfter=No +49 . . PUNCT . _ 3 punct _ _ + +# sent_id = 165 +# text = As CTI president Yao Hsing-chuan observes, what has enabled Taiwan's textile industry to survive through the ups and downs of its history is the highly motivated attitude of its entrepreneurs. +1 As as SCONJ IN _ 8 mark _ _ +2 CTI CTI PROPN NNP Number=Sing 8 compound _ _ +3 president president PROPN NNP Number=Sing 2 flat _ _ +4 Yao Yao PROPN NNP Number=Sing 2 flat _ _ +5 Hsing Hse PROPN NNP Number=Sing 2 flat _ SpaceAfter=No +6 - - PUNCT , _ 2 punct _ SpaceAfter=No +7 chuan chuan ADJ JJ Degree=Pos 8 amod _ _ +8 observes observe NOUN NNS Number=Plur 12 advcl _ SpaceAfter=No +9 , , PUNCT , _ 12 punct _ _ +10 what what PRON WP PronType=Int 12 nsubj _ _ +11 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 12 aux _ _ +12 enabled enable VERB VBN Tense=Past|VerbForm=Part 31 nsubj _ _ +13 Taiwan Taiwan PROPN NNP Number=Sing 16 nmod:poss _ SpaceAfter=No +14 's 's PART POS _ 13 case _ _ +15 textile textile NOUN NN Number=Sing 16 compound _ _ +16 industry industry NOUN NN Number=Sing 12 obj _ _ +17 to to PART TO _ 18 mark _ _ +18 survive survive VERB VB VerbForm=Inf 12 advcl _ _ +19 through through ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 ups up NOUN NNS Number=Plur 18 obl _ _ +22 and and CCONJ CC _ 23 cc _ _ +23 downs downs NOUN NNS Number=Plur 21 conj _ _ +24 of of ADP IN _ 26 case _ _ +25 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 26 nmod:poss _ _ +26 history history NOUN NN Number=Sing 21 nmod _ _ +27 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 31 cop _ _ +28 the the DET DT Definite=Def|PronType=Art 31 det _ _ +29 highly highly ADV RB _ 30 advmod _ _ +30 motivated motivated VERB VBN Tense=Past|VerbForm=Part 31 amod _ _ +31 attitude attitude NOUN NN Number=Sing 0 root _ _ +32 of of ADP IN _ 34 case _ _ +33 its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 34 nmod:poss _ _ +34 entrepreneurs entrepreneur NOUN NNS Number=Plur 31 nmod _ SpaceAfter=No +35 . . PUNCT . _ 31 punct _ _ + +# sent_id = 166 +# text = It is this ambition which is the best guarantee of the industry creating a second spring. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 expl _ _ +2 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 this this DET DT Number=Sing|PronType=Dem 4 det _ _ +4 ambition ambition NOUN NN Number=Sing 2 nsubj _ _ +5 which which PRON WDT PronType=Rel 9 nsubj _ _ +6 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 best best ADJ JJS Degree=Sup 9 amod _ _ +9 guarantee guarantee NOUN NN Number=Sing 4 acl:relcl _ _ +10 of of ADP IN _ 12 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 industry industry NOUN NN Number=Sing 9 nmod _ _ +13 creating create VERB VBG VerbForm=Ger 12 acl _ _ +14 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +15 second second ADJ JJ Degree=Pos|NumType=Ord 16 amod _ _ +16 spring spring NOUN NN Number=Sing 13 obj _ SpaceAfter=No +17 . . PUNCT . _ 2 punct _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 167 +# text = p. 30 An unusual fashion show at the China Textile Institute's 40th anniversary celebration: the focus is not on showing fashionable new styles, but on introducing the latest fruits of textile product development in the ROC. +1 p. p. NOUN NN Number=Sing 5 compound _ _ +2 30 30 NUM CD NumType=Card 5 nummod _ _ +3 An a DET DT Definite=Ind|PronType=Art 5 det _ _ +4 unusual unusual ADJ JJ Degree=Pos 5 amod _ _ +5 fashion fashion NOUN NN Number=Sing 0 root _ _ +6 show show VERB VB VerbForm=Inf 5 acl _ _ +7 at at ADP IN _ 15 case _ _ +8 the the DET DT Definite=Def|PronType=Art 11 det _ _ +9 China China PROPN NNP Number=Sing 11 compound _ _ +10 Textile Textile PROPN NNP Number=Sing 11 compound _ _ +11 Institute Institute PROPN NNP Number=Sing 15 nmod:poss _ SpaceAfter=No +12 's 's PART POS _ 11 case _ _ +13 40th 40th NOUN NN Number=Sing 14 compound _ _ +14 anniversary anniversary NOUN NN Number=Sing 15 compound _ _ +15 celebration celebration NOUN NN Number=Sing 6 obl _ SpaceAfter=No +16 : : PUNCT : _ 5 punct _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 focus focus NOUN NN Number=Sing 22 nsubj _ _ +19 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 22 cop _ _ +20 not not PART RB _ 22 advmod _ _ +21 on on SCONJ IN _ 22 mark _ _ +22 showing show VERB VBG VerbForm=Ger 5 parataxis _ _ +23 fashionable fashionable ADJ JJ Degree=Pos 25 amod _ _ +24 new new ADJ JJ Degree=Pos 25 amod _ _ +25 styles style NOUN NNS Number=Plur 22 obj _ SpaceAfter=No +26 , , PUNCT , _ 29 punct _ _ +27 but but CCONJ CC _ 29 cc _ _ +28 on on SCONJ IN _ 29 mark _ _ +29 introducing introduce VERB VBG VerbForm=Ger 22 conj _ _ +30 the the DET DT Definite=Def|PronType=Art 32 det _ _ +31 latest latest ADJ JJS Degree=Sup 32 amod _ _ +32 fruits fruit NOUN NNS Number=Plur 29 obj _ _ +33 of of ADP IN _ 36 case _ _ +34 textile textile NOUN NN Number=Sing 35 compound _ _ +35 product product NOUN NN Number=Sing 36 compound _ _ +36 development development NOUN NN Number=Sing 32 nmod _ _ +37 in in ADP IN _ 39 case _ _ +38 the the DET DT Definite=Def|PronType=Art 39 det _ _ +39 ROC ROC NOUN NN Number=Sing 29 obl _ SpaceAfter=No +40 . . PUNCT . _ 5 punct _ _ + +# sent_id = 168 +# text = The stainless steel fibers in the fabrics worn by these models have potential applications not only in avant-garde fashions, but also in industrial conveyor belts and even space suits. +1 The the DET DT Definite=Def|PronType=Art 4 det _ _ +2 stainless stainless ADJ JJ Degree=Pos 4 amod _ _ +3 steel steel NOUN NN Number=Sing 4 compound _ _ +4 fibers fiber NOUN NNS Number=Plur 12 nsubj _ _ +5 in in ADP IN _ 7 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 fabrics fabric NOUN NNS Number=Plur 4 nmod _ _ +8 worn wear VERB VBN Tense=Past|VerbForm=Part 7 acl _ _ +9 by by ADP IN _ 11 case _ _ +10 these these DET DT Number=Plur|PronType=Dem 11 det _ _ +11 models model NOUN NNS Number=Plur 8 obl _ _ +12 have have VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +13 potential potential ADJ JJ Degree=Pos 14 amod _ _ +14 applications application NOUN NNS Number=Plur 12 obj _ _ +15 not not ADV RB _ 16 advmod _ _ +16 only only ADV RB _ 21 cc:preconj _ _ +17 in in ADP IN _ 21 case _ _ +18 avant avant NOUN NN Number=Sing 20 compound _ SpaceAfter=No +19 - - PUNCT HYPH _ 20 punct _ SpaceAfter=No +20 garde garde NOUN NN Number=Sing 21 compound _ _ +21 fashions fashion NOUN NNS Number=Plur 12 obl _ SpaceAfter=No +22 , , PUNCT , _ 28 punct _ _ +23 but but CCONJ CC _ 28 cc _ _ +24 also also ADV RB _ 28 advmod _ _ +25 in in ADP IN _ 28 case _ _ +26 industrial industrial ADJ JJ Degree=Pos 28 amod _ _ +27 conveyor conveyor NOUN NN Number=Sing 28 compound _ _ +28 belts belt NOUN NNS Number=Plur 12 conj _ _ +29 and and CCONJ CC _ 32 cc _ _ +30 even even ADV RB _ 32 advmod _ _ +31 space space NOUN NN Number=Sing 32 compound _ _ +32 suits suit NOUN NNS Number=Plur 28 conj _ SpaceAfter=No +33 . . PUNCT . _ 12 punct _ _ + +# sent_id = 169 +# text = p. 32 Eight years ago, this was just a textile testing center with a handful of single-storey buildings and a staff of less than 20. +1 p. p. NOUN NN Number=Sing 13 obl _ _ +2 32 32 NUM CD NumType=Card 4 nummod _ _ +3 Eight eight NUM CD NumType=Card 4 nummod _ _ +4 years year NOUN NNS Number=Plur 5 obl:npmod _ _ +5 ago ago ADV RB _ 1 advmod _ SpaceAfter=No +6 , , PUNCT , _ 13 punct _ _ +7 this this PRON DT Number=Sing|PronType=Dem 13 nsubj _ _ +8 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 13 cop _ _ +9 just just ADV RB _ 13 advmod _ _ +10 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +11 textile textile NOUN NN Number=Sing 12 compound _ _ +12 testing testing NOUN NN Number=Sing 13 compound _ _ +13 center center NOUN NN Number=Sing 0 root _ _ +14 with with ADP IN _ 16 case _ _ +15 a a DET DT Definite=Ind|PronType=Art 16 det _ _ +16 handful handful NOUN NN Number=Sing 13 nmod _ _ +17 of of ADP IN _ 21 case _ _ +18 single single ADJ JJ Degree=Pos 20 amod _ SpaceAfter=No +19 - - PUNCT HYPH _ 20 punct _ SpaceAfter=No +20 storey storey NOUN NN Number=Sing 21 compound _ _ +21 buildings building NOUN NNS Number=Plur 16 nmod _ _ +22 and and CCONJ CC _ 24 cc _ _ +23 a a DET DT Definite=Ind|PronType=Art 24 det _ _ +24 staff staff NOUN NN Number=Sing 21 conj _ _ +25 of of ADP IN _ 28 case _ _ +26 less less ADJ JJR Degree=Cmp 28 advmod _ _ +27 than than ADP IN _ 26 fixed _ _ +28 20 20 NUM CD NumType=Card 24 nmod _ SpaceAfter=No +29 . . PUNCT . _ 13 punct _ _ + +# sent_id = 170 +# text = But president Yao Hsing-chuan-LRB-left-RRB-, has single-handedly transformed it into today's China Textiles Institute, with a staff of nearly 300. +1 But but CCONJ CC _ 2 cc _ _ +2 president president PROPN NNP Number=Sing 4 compound _ _ +3 Yao Yao PROPN NNP Number=Sing 2 flat _ _ +4 Hsing Hse PROPN NNP Number=Sing 5 compound _ SpaceAfter=No +5 -chuan-LRB-left-RRB -chuan-LRB-left-RRB PROPN NNP Number=Sing 6 flat _ SpaceAfter=No +6 -, -, PUNCT . _ 7 punct _ _ +7 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +8 single single ADJ JJ Degree=Pos 7 obj _ SpaceAfter=No +9 - - PUNCT , _ 8 punct _ SpaceAfter=No +10 handedly handedly ADV RB _ 11 advmod _ _ +11 transformed transform VERB VBN Tense=Past|VerbForm=Part 8 acl _ _ +12 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 11 obj _ _ +13 into into ADP IN _ 17 case _ _ +14 today today NOUN NN Number=Sing 17 nmod:poss _ SpaceAfter=No +15 's 's PART POS _ 14 case _ _ +16 China China PROPN NNP Number=Sing 17 compound _ _ +17 Textiles Textiles PROPN NNP Number=Sing 11 obl _ _ +18 Institute Institute PROPN NNP Number=Sing 17 flat _ SpaceAfter=No +19 , , PUNCT , _ 17 punct _ _ +20 with with ADP IN _ 22 case _ _ +21 a a DET DT Definite=Ind|PronType=Art 22 det _ _ +22 staff staff NOUN NN Number=Sing 11 obl _ _ +23 of of ADP IN _ 25 case _ _ +24 nearly nearly ADV RB _ 25 advmod _ _ +25 300 300 NUM CD NumType=Card 22 nmod _ SpaceAfter=No +26 . . PUNCT . _ 7 punct _ _ + +# sent_id = 171 +# text = With him is Ho Yu-lan, formerly director of the Taiwan Textile Federation and now consultant to the CTI. +1 With with SCONJ IN _ 4 mark _ _ +2 him he PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 4 nsubj _ _ +3 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 4 cop _ _ +4 Ho Ho PROPN NNP Number=Sing 0 root _ _ +5 Yu Yu PROPN NNP Number=Sing 4 flat _ SpaceAfter=No +6 - - PUNCT , _ 4 punct _ SpaceAfter=No +7 lan lan ADJ JJ Degree=Pos 10 amod _ SpaceAfter=No +8 , , PUNCT , _ 10 punct _ _ +9 formerly formerly ADJ JJ Degree=Pos 10 amod _ _ +10 director director NOUN NN Number=Sing 4 appos _ _ +11 of of ADP IN _ 15 case _ _ +12 the the DET DT Definite=Def|PronType=Art 15 det _ _ +13 Taiwan Taiwan PROPN NNP Number=Sing 14 compound _ _ +14 Textile Textile PROPN NNP Number=Sing 15 compound _ _ +15 Federation Federation PROPN NNP Number=Sing 10 nmod _ _ +16 and and CCONJ CC _ 18 cc _ _ +17 now now ADV RB _ 18 advmod _ _ +18 consultant consultant ADJ JJ Degree=Pos 15 conj _ _ +19 to to ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 CTI CTI NOUN NN Number=Sing 18 obl _ SpaceAfter=No +22 . . PUNCT . _ 4 punct _ _ + +# sent_id = 172 +# text = p. 34 The CTI has an artificial climate chamber which can simulate all kinds of weather conditions such as frost and rain. +1 p. p. NOUN NN Number=Sing 5 nsubj _ _ +2 34 34 NUM CD NumType=Card 1 nummod _ _ +3 The the DET DT Definite=Def|PronType=Art 4 det _ _ +4 CTI CTI PROPN NNP Number=Sing 5 nsubj _ _ +5 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +6 an a DET DT Definite=Ind|PronType=Art 9 det _ _ +7 artificial artificial ADJ JJ Degree=Pos 9 amod _ _ +8 climate climate NOUN NN Number=Sing 9 compound _ _ +9 chamber chamber NOUN NN Number=Sing 5 obj _ _ +10 which which PRON WDT PronType=Rel 12 nsubj _ _ +11 can can AUX MD VerbForm=Fin 12 aux _ _ +12 simulate simulate VERB VB VerbForm=Inf 9 acl:relcl _ _ +13 all all DET DT _ 14 det _ _ +14 kinds kind NOUN NNS Number=Plur 12 obj _ _ +15 of of ADP IN _ 17 case _ _ +16 weather weather NOUN NN Number=Sing 17 compound _ _ +17 conditions condition NOUN NNS Number=Plur 14 nmod _ _ +18 such such ADJ JJ Degree=Pos 20 case _ _ +19 as as ADP IN _ 18 fixed _ _ +20 frost frost NOUN NN Number=Sing 12 obl _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 rain rain NOUN NN Number=Sing 20 conj _ SpaceAfter=No +23 . . PUNCT . _ 5 punct _ _ + +# sent_id = 173 +# text = Our picture shows members of an ROC mountaineering team testing the warmth and anti-condensation qualities of their clothing before setting out to tackle Mt. Everest.-LRB-courtesy of CTI-RRB- +1 Our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 picture picture NOUN NN Number=Sing 3 nsubj _ _ +3 shows show VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 members member NOUN NNS Number=Plur 3 obj _ _ +5 of of ADP IN _ 9 case _ _ +6 an a DET DT Definite=Ind|PronType=Art 9 det _ _ +7 ROC ROC NOUN NN Number=Sing 8 compound _ _ +8 mountaineering mountaineer NOUN NN Number=Sing 9 compound _ _ +9 team team NOUN NN Number=Sing 4 nmod _ _ +10 testing test VERB VBG VerbForm=Ger 9 acl _ _ +11 the the DET DT Definite=Def|PronType=Art 15 det _ _ +12 warmth warmth NOUN NN Number=Sing 15 compound _ _ +13 and and CCONJ CC _ 14 cc _ _ +14 anti-condensation anti-condensation NOUN NN Number=Sing 12 conj _ _ +15 qualities qualitie NOUN NNS Number=Plur 10 obj _ _ +16 of of ADP IN _ 18 case _ _ +17 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 18 nmod:poss _ _ +18 clothing clothing NOUN NN Number=Sing 15 nmod _ _ +19 before before SCONJ IN _ 20 mark _ _ +20 setting set VERB VBG VerbForm=Ger 3 advcl _ _ +21 out out ADP RP _ 20 compound:prt _ _ +22 to to ADP IN _ 26 case _ _ +23 tackle tackle PROPN NNP Number=Sing 26 compound _ _ +24 Mt. Mt. PROPN NNP Number=Sing 23 flat _ _ +25 Everest Everest PROPN NNP Number=Sing 23 flat _ SpaceAfter=No +26 .-LRB-courtesy .-LRB-courtesy PROPN NNP Number=Sing 20 obl _ _ +27 of of ADP IN _ 28 case _ _ +28 CTI-RRB- CTI-RRB- NOUN NN Number=Sing 26 nmod _ SpacesAfter=\n\n\s + +# newpar +# sent_id = 174 +# text = p. 35 Guess what these lads are doing? +1 p. p. NOUN NN Number=Sing 3 compound _ _ +2 35 35 NUM CD NumType=Card 3 nummod _ _ +3 Guess guess PROPN NNP Number=Sing 0 root _ _ +4 what what PRON WP PronType=Int 8 obj _ _ +5 these these DET DT Number=Plur|PronType=Dem 6 det _ _ +6 lads lad NOUN NNS Number=Plur 8 nsubj _ _ +7 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 8 aux _ _ +8 doing do VERB VBG Tense=Pres|VerbForm=Part 3 acl:relcl _ SpaceAfter=No +9 ? ? PUNCT . _ 3 punct _ _ + +# sent_id = 175 +# text = They are playing a" computer handle test" game: after carefully feeling a numbered cloth sample they score it for handle-LRB-crispness, drape, pliability, etc.-RRB- and then compare their scores with those given by the computer. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +2 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 playing play VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +4 a a DET DT Definite=Ind|PronType=Art 10 det _ SpaceAfter=No +5 " " PUNCT `` _ 8 punct _ _ +6 computer computer NOUN NN Number=Sing 8 compound _ _ +7 handle handle NOUN NN Number=Sing 8 compound _ _ +8 test test NOUN NN Number=Sing 10 compound _ SpaceAfter=No +9 " " PUNCT '' _ 10 punct _ _ +10 game game NOUN NN Number=Sing 3 obj _ SpaceAfter=No +11 : : PUNCT : _ 3 punct _ _ +12 after after SCONJ IN _ 14 mark _ _ +13 carefully carefully ADV RB _ 14 advmod _ _ +14 feeling feel VERB VBG VerbForm=Ger 3 advcl _ _ +15 a a DET DT Definite=Ind|PronType=Art 18 det _ _ +16 numbered number VERB VBN Tense=Past|VerbForm=Part 18 amod _ _ +17 cloth cloth NOUN NN Number=Sing 18 compound _ _ +18 sample sample NOUN NN Number=Sing 14 obj _ _ +19 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 20 nsubj _ _ +20 score score VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 acl:relcl _ _ +21 it it PRON PRP Case=Acc|Gender=Neut|Number=Sing|Person=3|PronType=Prs 20 obj _ _ +22 for for ADP IN _ 25 case _ _ +23 handle handle NOUN NN Number=Sing 25 compound _ SpaceAfter=No +24 - - PUNCT HYPH _ 25 punct _ SpaceAfter=No +25 LRB-crispness LRB-crispness NOUN NN Number=Sing 20 obl _ SpaceAfter=No +26 , , PUNCT , _ 27 punct _ _ +27 drape drape NOUN NN Number=Sing 25 conj _ SpaceAfter=No +28 , , PUNCT , _ 29 punct _ _ +29 pliability pliability NOUN NN Number=Sing 25 conj _ SpaceAfter=No +30 , , PUNCT , _ 32 punct _ _ +31 etc.- etc.- SYM NFP _ 32 punct _ SpaceAfter=No +32 RRB RRB PROPN NNP Number=Sing 25 conj _ SpaceAfter=No +33 - - PUNCT , _ 3 punct _ _ +34 and and CCONJ CC _ 36 cc _ _ +35 then then ADV RB PronType=Dem 36 advmod _ _ +36 compare compare VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 conj _ _ +37 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 38 nmod:poss _ _ +38 scores score NOUN NNS Number=Plur 36 obj _ _ +39 with with ADP IN _ 40 case _ _ +40 those those DET DT Number=Plur|PronType=Dem 36 obl _ _ +41 given give VERB VBN Tense=Past|VerbForm=Part 40 acl _ _ +42 by by ADP IN _ 44 case _ _ +43 the the DET DT Definite=Def|PronType=Art 44 det _ _ +44 computer computer NOUN NN Number=Sing 41 obl _ SpaceAfter=No +45 . . PUNCT . _ 3 punct _ _ + +# sent_id = 176 +# text = Many are surprised to find how different the results are! +1 Many many ADJ JJ Degree=Pos 3 nsubj _ _ +2 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 3 cop _ _ +3 surprised surprised ADJ JJ Degree=Pos 0 root _ _ +4 to to PART TO _ 5 mark _ _ +5 find find VERB VB VerbForm=Inf 3 xcomp _ _ +6 how how ADV WRB PronType=Int 7 advmod _ _ +7 different different ADJ JJ Degree=Pos 10 obj _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 results result NOUN NNS Number=Plur 10 nsubj _ _ +10 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 5 ccomp _ SpaceAfter=No +11 ! ! PUNCT . _ 3 punct _ _ + +# sent_id = 177 +# text = p. 36 This high-grade fabric is completely waterproof, yet breathes to allow sweat to evaporate. +1 p. p. NOUN NN Number=Sing 7 compound _ _ +2 36 36 NUM CD NumType=Card 1 nummod _ _ +3 This this DET DT Number=Sing|PronType=Dem 7 det _ _ +4 high high ADJ JJ Degree=Pos 6 amod _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 grade grade NOUN NN Number=Sing 7 compound _ _ +7 fabric fabric NOUN NN Number=Sing 10 nsubj _ _ +8 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 cop _ _ +9 completely completely ADV RB _ 10 advmod _ _ +10 waterproof waterproof ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +11 , , PUNCT , _ 13 punct _ _ +12 yet yet CCONJ CC _ 13 cc _ _ +13 breathes breath VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 10 conj _ _ +14 to to PART TO _ 15 mark _ _ +15 allow allow VERB VB VerbForm=Inf 13 xcomp _ _ +16 sweat sweat VERB VB VerbForm=Inf 15 xcomp _ _ +17 to to PART TO _ 18 mark _ _ +18 evaporate evaporate VERB VB VerbForm=Inf 16 xcomp _ SpaceAfter=No +19 . . PUNCT . _ 10 punct _ _ + +# sent_id = 178 +# text = It can be made into military or police rainwear and horse blankets, and is also in great demand in advanced countries for leisure wear. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 4 nsubj:pass _ _ +2 can can AUX MD VerbForm=Fin 4 aux _ _ +3 be be AUX VB VerbForm=Inf 4 aux:pass _ _ +4 made make VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +5 into into ADP IN _ 6 case _ _ +6 military military NOUN NN Number=Sing 4 obl _ _ +7 or or CCONJ CC _ 8 cc _ _ +8 police police NOUN NN Number=Sing 6 conj _ _ +9 rainwear rainwear NOUN NN Number=Sing 6 conj _ _ +10 and and CCONJ CC _ 11 cc _ _ +11 horse horse NOUN NN Number=Sing 6 conj _ _ +12 blankets blanket NOUN NNS Number=Plur 6 conj _ SpaceAfter=No +13 , , PUNCT , _ 19 punct _ _ +14 and and CCONJ CC _ 19 cc _ _ +15 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 19 cop _ _ +16 also also ADV RB _ 19 advmod _ _ +17 in in ADP IN _ 19 case _ _ +18 great great ADJ JJ Degree=Pos 19 amod _ _ +19 demand demand NOUN NN Number=Sing 4 conj _ _ +20 in in ADP IN _ 22 case _ _ +21 advanced advanced ADJ JJ Degree=Pos 22 amod _ _ +22 countries country NOUN NNS Number=Plur 19 nmod _ _ +23 for for ADP IN _ 25 case _ _ +24 leisure leisure NOUN NN Number=Sing 25 compound _ _ +25 wear wear NOUN NN Number=Sing 22 nmod _ SpaceAfter=No +26 . . PUNCT . _ 4 punct _ _ + +# sent_id = 179 +# text = The picture at left shows high-value leisure apparel; above, the fabric coating process. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 picture picture NOUN NN Number=Sing 0 root _ _ +3 at at ADP IN _ 5 case _ _ +4 left left ADJ JJ Degree=Pos 5 amod _ _ +5 shows show NOUN NNS Number=Plur 2 nmod _ _ +6 high high ADJ JJ Degree=Pos 8 amod _ SpaceAfter=No +7 - - PUNCT HYPH _ 8 punct _ SpaceAfter=No +8 value value NOUN NN Number=Sing 10 compound _ _ +9 leisure leisure NOUN NN Number=Sing 10 compound _ _ +10 apparel apparel NOUN NN Number=Sing 5 appos _ SpaceAfter=No +11 ; ; PUNCT , _ 2 punct _ _ +12 above above ADV RB _ 2 advmod _ SpaceAfter=No +13 , , PUNCT , _ 17 punct _ _ +14 the the DET DT Definite=Def|PronType=Art 17 det _ _ +15 fabric fabric NOUN NN Number=Sing 17 compound _ _ +16 coating coating NOUN NN Number=Sing 17 compound _ _ +17 process process NOUN NN Number=Sing 2 appos _ SpaceAfter=No +18 . . PUNCT . _ 2 punct _ _ + +# sent_id = 180 +# text = p. 37 Various kinds of protective fabrics find a wide range of applications in industry. +1 p. p. NOUN NN Number=Sing 4 compound _ _ +2 37 37 NUM CD NumType=Card 4 nummod _ _ +3 Various various ADJ JJ Degree=Pos 4 amod _ _ +4 kinds kind NOUN NNS Number=Plur 8 nsubj _ _ +5 of of ADP IN _ 7 case _ _ +6 protective protective ADJ JJ Degree=Pos 7 amod _ _ +7 fabrics fabric NOUN NNS Number=Plur 4 nmod _ _ +8 find find VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +9 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +10 wide wide ADJ JJ Degree=Pos 11 amod _ _ +11 range range NOUN NN Number=Sing 8 obj _ _ +12 of of ADP IN _ 13 case _ _ +13 applications application NOUN NNS Number=Plur 11 nmod _ _ +14 in in ADP IN _ 15 case _ _ +15 industry industry NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +16 . . PUNCT . _ 8 punct _ _ + +# sent_id = 181 +# text = The picture above shows articles made by the" fully fashioned" knitting method, which vastly increases their strength and resilience, making them suitable for crash helmet liners, protective lagging for water pipes, climbing ropes and more. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 picture picture NOUN NN Number=Sing 0 root _ _ +3 above above ADP IN _ 5 case _ _ +4 shows show NOUN NNS Number=Plur 5 compound _ _ +5 articles article NOUN NNS Number=Plur 2 nmod _ _ +6 made make VERB VBN Tense=Past|VerbForm=Part 2 acl _ _ +7 by by ADP IN _ 14 case _ _ +8 the the DET DT Definite=Def|PronType=Art 14 det _ SpaceAfter=No +9 " " PUNCT `` _ 14 punct _ _ +10 fully fully ADV RB _ 11 advmod _ _ +11 fashioned fashioned ADJ JJ Degree=Pos 14 amod _ SpaceAfter=No +12 " " PUNCT '' _ 14 punct _ _ +13 knitting knitting NOUN NN Number=Sing 14 compound _ _ +14 method method NOUN NN Number=Sing 6 obl _ SpaceAfter=No +15 , , PUNCT , _ 14 punct _ _ +16 which which PRON WDT PronType=Rel 18 nsubj _ _ +17 vastly vastly ADV RB _ 18 advmod _ _ +18 increases increase VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 14 acl:relcl _ _ +19 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 20 nmod:poss _ _ +20 strength strength NOUN NN Number=Sing 18 obj _ _ +21 and and CCONJ CC _ 22 cc _ _ +22 resilience resilience NOUN NN Number=Sing 20 conj _ SpaceAfter=No +23 , , PUNCT , _ 18 punct _ _ +24 making make VERB VBG VerbForm=Ger 18 advcl _ _ +25 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 24 obj _ _ +26 suitable suitable ADJ JJ Degree=Pos 24 xcomp _ _ +27 for for ADP IN _ 30 case _ _ +28 crash crash ADJ JJ Degree=Pos 30 amod _ _ +29 helmet helmet NOUN NN Number=Sing 30 compound _ _ +30 liners liner NOUN NNS Number=Plur 26 obl _ SpaceAfter=No +31 , , PUNCT , _ 33 punct _ _ +32 protective protective ADJ JJ Degree=Pos 33 amod _ _ +33 lagging lagging NOUN NN Number=Sing 30 conj _ _ +34 for for ADP IN _ 36 case _ _ +35 water water NOUN NN Number=Sing 36 compound _ _ +36 pipes pipe NOUN NNS Number=Plur 33 nmod _ SpaceAfter=No +37 , , PUNCT , _ 2 punct _ _ +38 climbing climb VERB VBG VerbForm=Ger 2 acl _ _ +39 ropes rope NOUN NNS Number=Plur 38 obj _ _ +40 and and CCONJ CC _ 41 cc _ _ +41 more more ADJ JJR Degree=Cmp 39 conj _ SpaceAfter=No +42 . . PUNCT . _ 2 punct _ _ + +# sent_id = 182 +# text = At right, cut-resistant gloves containing stainless steel fibers. +1 At at ADP IN _ 2 case _ _ +2 right right ADV RB _ 4 obl _ SpaceAfter=No +3 , , PUNCT , _ 4 punct _ _ +4 cut cut VERB VB Mood=Imp|VerbForm=Fin 0 root _ SpaceAfter=No +5 -resistant -resistant ADJ JJ Degree=Pos 6 amod _ _ +6 gloves glove NOUN NNS Number=Plur 4 obj _ _ +7 containing contain VERB VBG VerbForm=Ger 6 acl _ _ +8 stainless stainless ADJ JJ Degree=Pos 10 amod _ _ +9 steel steel NOUN NN Number=Sing 10 compound _ _ +10 fibers fiber NOUN NNS Number=Plur 7 obj _ SpaceAfter=No +11 . . PUNCT . _ 4 punct _ _ + +# sent_id = 183 +# text = They cost much less than imported products, but are just as effective. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 2 nsubj _ _ +2 cost cost VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 much much ADV RB _ 4 advmod _ _ +4 less less ADJ JJR Degree=Cmp 2 obj _ _ +5 than than ADP IN _ 7 case _ _ +6 imported imported VERB VBN Tense=Past|VerbForm=Part 7 amod _ _ +7 products product NOUN NNS Number=Plur 4 obl _ SpaceAfter=No +8 , , PUNCT , _ 13 punct _ _ +9 but but CCONJ CC _ 13 cc _ _ +10 are be AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 13 cop _ _ +11 just just ADV RB _ 13 advmod _ _ +12 as as ADV RB _ 13 advmod _ _ +13 effective effective ADJ JJ Degree=Pos 2 conj _ SpaceAfter=No +14 . . PUNCT . _ 2 punct _ _ + +# sent_id = 184 +# text = p. 37 +1 p. p. NOUN NN Number=Sing 0 root _ _ +2 37 37 NUM CD NumType=Card 1 nummod _ _ + +# sent_id = 185 +# text = The development of new fibers with various properties or special feel can help the industry upgrade. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 development development NOUN NN Number=Sing 13 nsubj _ _ +3 of of ADP IN _ 5 case _ _ +4 new new ADJ JJ Degree=Pos 5 amod _ _ +5 fibers fiber NOUN NNS Number=Plur 2 nmod _ _ +6 with with ADP IN _ 8 case _ _ +7 various various ADJ JJ Degree=Pos 8 amod _ _ +8 properties property NOUN NNS Number=Plur 2 nmod _ _ +9 or or CCONJ CC _ 11 cc _ _ +10 special special ADJ JJ Degree=Pos 11 amod _ _ +11 feel feel NOUN NN Number=Sing 8 conj _ _ +12 can can AUX MD VerbForm=Fin 13 aux _ _ +13 help help VERB VB VerbForm=Inf 0 root _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 industry industry NOUN NN Number=Sing 16 compound _ _ +16 upgrade upgrade NOUN NN Number=Sing 13 obj _ SpaceAfter=No +17 . . PUNCT . _ 13 punct _ _ + +# sent_id = 186 +# text = At left we see soft, flexible yarns spun from high-grade stainless steel; below, chitin, which can be drawn into thread or ground into powder to make health food. +1 At at ADP IN _ 2 case _ _ +2 left left ADJ JJ Degree=Pos 4 obl _ _ +3 we we PRON PRP Case=Nom|Number=Plur|Person=1|PronType=Prs 4 nsubj _ _ +4 see see VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +5 soft soft ADJ JJ Degree=Pos 8 amod _ SpaceAfter=No +6 , , PUNCT , _ 8 punct _ _ +7 flexible flexible ADJ JJ Degree=Pos 8 amod _ _ +8 yarns yarn NOUN NNS Number=Plur 4 obj _ _ +9 spun spun VERB VBN Tense=Past|VerbForm=Part 8 acl _ _ +10 from from ADP IN _ 15 case _ _ +11 high high ADJ JJ Degree=Pos 13 amod _ SpaceAfter=No +12 - - PUNCT HYPH _ 13 punct _ SpaceAfter=No +13 grade grade NOUN NN Number=Sing 15 compound _ _ +14 stainless stainless ADJ JJ Degree=Pos 15 amod _ _ +15 steel steel NOUN NN Number=Sing 9 obl _ SpaceAfter=No +16 ; ; PUNCT , _ 4 punct _ _ +17 below below ADV RB _ 4 advmod _ SpaceAfter=No +18 , , PUNCT , _ 19 punct _ _ +19 chitin chitin NOUN NN Number=Sing 4 conj _ SpaceAfter=No +20 , , PUNCT , _ 19 punct _ _ +21 which which PRON WDT PronType=Rel 24 nsubj:pass _ _ +22 can can AUX MD VerbForm=Fin 24 aux _ _ +23 be be AUX VB VerbForm=Inf 24 aux:pass _ _ +24 drawn draw VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 19 acl:relcl _ _ +25 into into ADP IN _ 26 case _ _ +26 thread thread NOUN NN Number=Sing 24 obl _ _ +27 or or CCONJ CC _ 28 cc _ _ +28 ground ground NOUN NN Number=Sing 26 conj _ _ +29 into into ADP IN _ 30 case _ _ +30 powder powder NOUN NN Number=Sing 24 obl _ _ +31 to to PART TO _ 32 mark _ _ +32 make make VERB VB VerbForm=Inf 24 advcl _ _ +33 health health NOUN NN Number=Sing 34 compound _ _ +34 food food NOUN NN Number=Sing 32 obj _ SpaceAfter=No +35 . . PUNCT . _ 4 punct _ _ + +# sent_id = 187 +# text = p. 38 Hsu Yun-peng built on his solid practical grounding to not only develop color matching software which is widely used in Taiwan, but also compile the Sinocolor Book color reference system covering 20,000 colors. +1 p. p. NOUN NN Number=Sing 6 compound _ _ +2 38 38 NUM CD NumType=Card 1 nummod _ _ +3 Hsu Hsu PROPN NNP Number=Sing 6 compound _ _ +4 Yun Yun PROPN NNP Number=Sing 3 flat _ SpaceAfter=No +5 - - PUNCT , _ 3 punct _ SpaceAfter=No +6 peng peng NOUN NN Number=Sing 7 flat _ _ +7 built build VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +8 on on ADP IN _ 12 case _ _ +9 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ _ +10 solid solid ADJ JJ Degree=Pos 12 amod _ _ +11 practical practical ADJ JJ Degree=Pos 12 amod _ _ +12 grounding grounding NOUN NN Number=Sing 7 obl _ _ +13 to to PART TO _ 19 mark _ _ +14 not not ADV RB _ 15 advmod _ _ +15 only only ADV RB _ 19 cc:preconj _ _ +16 develop develop ADJ JJ Degree=Pos 19 amod _ _ +17 color color NOUN NN Number=Sing 19 compound _ _ +18 matching matching NOUN NN Number=Sing 19 compound _ _ +19 software software NOUN NN Number=Sing 7 advcl _ _ +20 which which PRON WDT PronType=Rel 23 nsubj:pass _ _ +21 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 23 aux:pass _ _ +22 widely widely ADV RB _ 23 advmod _ _ +23 used use VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 19 acl:relcl _ _ +24 in in ADP IN _ 25 case _ _ +25 Taiwan Taiwan PROPN NNP Number=Sing 23 obl _ SpaceAfter=No +26 , , PUNCT , _ 29 punct _ _ +27 but but CCONJ CC _ 29 cc _ _ +28 also also ADV RB _ 29 advmod _ _ +29 compile compile VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 conj _ _ +30 the the DET DT Definite=Def|PronType=Art 35 det _ _ +31 Sinocolor Sinocolor PROPN NNP Number=Sing 32 compound _ _ +32 Book Book PROPN NNP Number=Sing 35 compound _ _ +33 color color NOUN NN Number=Sing 35 compound _ _ +34 reference reference NOUN NN Number=Sing 35 compound _ _ +35 system system NOUN NN Number=Sing 29 obj _ _ +36 covering cover VERB VBG VerbForm=Ger 35 acl _ _ +37 20,000 20,000 NUM CD NumType=Card 38 nummod _ _ +38 colors color NOUN NNS Number=Plur 36 obj _ SpaceAfter=No +39 . . PUNCT . _ 7 punct _ _ + +# sent_id = 188 +# text = Its recent launch was a big event for Taiwan's textile industry. +1 Its its PRON PRP$ Gender=Neut|Number=Sing|Person=3|Poss=Yes|PronType=Prs 3 nmod:poss _ _ +2 recent recent ADJ JJ Degree=Pos 3 amod _ _ +3 launch launch NOUN NN Number=Sing 7 nsubj _ _ +4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 7 cop _ _ +5 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +6 big big ADJ JJ Degree=Pos 7 amod _ _ +7 event event NOUN NN Number=Sing 0 root _ _ +8 for for ADP IN _ 12 case _ _ +9 Taiwan Taiwan PROPN NNP Number=Sing 12 nmod:poss _ SpaceAfter=No +10 's 's PART POS _ 9 case _ _ +11 textile textile NOUN NN Number=Sing 12 compound _ _ +12 industry industry NOUN NN Number=Sing 7 nmod _ SpaceAfter=No +13 . . PUNCT . _ 7 punct _ _ + +# sent_id = 189 +# text = p. 39 Practicing dentist Rocky Chang, known to all as" Dr. Chang," has collaborated with the CTI to develop yarn spinning and fabric weaving technologies for metal fibers, thus opening up a new field for the ROC textile industry. +1 p. p. NOUN NN Number=Sing 4 compound _ _ +2 39 39 NUM CD NumType=Card 4 nummod _ _ +3 Practicing practicing NOUN NN Number=Sing 4 compound _ _ +4 dentist dentist NOUN NN Number=Sing 0 root _ _ +5 Rocky Rocky PROPN NNP Number=Sing 4 compound _ _ +6 Chang Chang PROPN NNP Number=Sing 5 flat _ SpaceAfter=No +7 , , PUNCT , _ 4 punct _ _ +8 known know VERB VBN Tense=Past|VerbForm=Part 4 acl _ _ +9 to to ADP IN _ 10 case _ _ +10 all all DET DT _ 8 obl _ _ +11 as as ADP IN _ 13 case _ SpaceAfter=No +12 " " PUNCT `` _ 13 punct _ _ +13 Dr. Dr. PROPN NNP Number=Sing 8 obl _ _ +14 Chang Chang PROPN NNP Number=Sing 13 flat _ SpaceAfter=No +15 , , PUNCT , _ 18 punct _ SpaceAfter=No +16 " " PUNCT '' _ 18 punct _ _ +17 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 18 aux _ _ +18 collaborated collaborate VERB VBN Tense=Past|VerbForm=Part 4 acl _ _ +19 with with ADP IN _ 21 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 CTI Cto NOUN NN Number=Sing 18 obl _ _ +22 to to PART TO _ 23 mark _ _ +23 develop develop VERB VB VerbForm=Inf 18 advcl _ _ +24 yarn yarn NOUN NN Number=Sing 25 compound _ _ +25 spinning spinning NOUN NN Number=Sing 23 obj _ _ +26 and and CCONJ CC _ 27 cc _ _ +27 fabric fabric NOUN NN Number=Sing 25 conj _ _ +28 weaving weave VERB VBG VerbForm=Ger 27 acl _ _ +29 technologies technology NOUN NNS Number=Plur 28 obj _ _ +30 for for ADP IN _ 32 case _ _ +31 metal metal NOUN NN Number=Sing 32 compound _ _ +32 fibers fiber NOUN NNS Number=Plur 29 nmod _ SpaceAfter=No +33 , , PUNCT , _ 28 punct _ _ +34 thus thus ADV RB _ 35 advmod _ _ +35 opening open VERB VBG VerbForm=Ger 28 advcl _ _ +36 up up ADP RP _ 35 compound:prt _ _ +37 a a DET DT Definite=Ind|PronType=Art 39 det _ _ +38 new new ADJ JJ Degree=Pos 39 amod _ _ +39 field field NOUN NN Number=Sing 35 obj _ _ +40 for for ADP IN _ 44 case _ _ +41 the the DET DT Definite=Def|PronType=Art 44 det _ _ +42 ROC ROC PROPN NNP Number=Sing 44 compound _ _ +43 textile textile NOUN NN Number=Sing 44 compound _ _ +44 industry industry NOUN NN Number=Sing 39 nmod _ SpaceAfter=No +45 . . PUNCT . _ 4 punct _ SpaceAfter=No + diff --git a/demo/onto_train/ectb_1003.onf b/demo/onto_train/ectb_1003.onf new file mode 100644 index 00000000..2dbc8e5a --- /dev/null +++ b/demo/onto_train/ectb_1003.onf @@ -0,0 +1,21288 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A Second Spring for Textiles in Taiwan ? + +Treebanked sentence: +-------------------- + A Second Spring for Textiles in Taiwan ? + +Tree: +----- + (TOP (FRAG-HLN (NP (DT A) + (JJ Second) + (NN Spring)) + (PP (IN for) + (NP (NNS Textiles))) + (PP-LOC (IN in) + (NP (NNP Taiwan))) + (. ?))) + +Leaves: +------- + 0 A + 1 Second + name: ORDINAL 1-1 Second + 2 Spring + sense: spring-n.4 + prop: spring.01 + n * -> 2:0, Spring + ARGM-TMP * -> 1:0, Second + name: DATE 2-2 Spring + 3 for + 4 Textiles + 5 in + 6 Taiwan + coref: IDENT 199 6-6 Taiwan + name: GPE 6-6 Taiwan + 7 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + -LRB-Laura Li/photos by Pu Hua-chih/tr. by Robert Taylor-RRB- + +Treebanked sentence: +-------------------- + -LRB- Laura Li / photos by Pu Hua - chih / tr. * by Robert Taylor -RRB- + +Tree: +----- + (TOP (FRAG (-LRB- -LRB-) + (NP (NNP Laura) + (NNP Li)) + (: /) + (NP (NP (NNS photos)) + (PP (IN by) + (NP (NNP Pu) + (NNP Hua) + (HYPH -) + (NNP chih)))) + (: /) + (VP (VBN tr.) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (NNP Robert) + (NNP Taylor)))) + (-RRB- -RRB-))) + +Leaves: +------- + 0 -LRB- + 1 Laura + name: PERSON 1-2 Laura Li + 2 Li + 3 / + 4 photos + 5 by + 6 Pu + name: PERSON 6-9 Pu Hua - chih + 7 Hua + 8 - + 9 chih + 10 / + 11 tr. + prop: translate.01 + v * -> 11:0, tr. + ARG1 * -> 12:0, * + ARG0 * -> 13:1, by Robert Taylor + 12 * + 13 by + 14 Robert + name: PERSON 14-15 Robert Taylor + 15 Taylor + 16 -RRB- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Early in December the China Textile In-stitute, located at Tucheng in Taipei County, celebrated its 40th anniversary + with a dynamic multimedia show. + +Treebanked sentence: +-------------------- + Early in December the China Textile In - stitute , located * at Tucheng in Taipei County , celebrated its 40th + anniversary with a dynamic multimedia show . + +Tree: +----- + (TOP (S (PP-TMP (ADVP (RB Early)) + (IN in) + (NP (NNP December))) + (NP-SBJ (NP (DT the) + (NNP China) + (NNP Textile) + (NNP In) + (HYPH -) + (NNP stitute)) + (, ,) + (VP (VBN located) + (NP (-NONE- *)) + (PP-LOC (IN at) + (NP (NP (NNP Tucheng)) + (PP-LOC (IN in) + (NP (NNP Taipei) + (NNP County))))))) + (, ,) + (VP (VBD celebrated) + (NP (PRP$ its) + (JJ 40th) + (NN anniversary)) + (PP (IN with) + (NP (DT a) + (JJ dynamic) + (NN multimedia) + (NN show)))) + (. .))) + +Leaves: +------- + 0 Early + 1 in + 2 December + name: DATE 2-2 December + 3 the + coref: IDENT 207 3-16 the China Textile In - stitute , located * at Tucheng in Taipei County + name: ORG 3-8 the China Textile In - stitute + 4 China + 5 Textile + 6 In + 7 - + 8 stitute + 9 , + 10 located + prop: locate.01 + v * -> 10:0, located + ARG1 * -> 3:1, the China Textile In - stitute + * -> 11:0, * + ARGM-LOC * -> 12:1, at Tucheng in Taipei County + 11 * + 12 at + 13 Tucheng + name: GPE 13-13 Tucheng + 14 in + 15 Taipei + name: GPE 15-16 Taipei County + 16 County + 17 , + 18 celebrated + sense: celebrate-v.1 + prop: celebrate.02 + v * -> 18:0, celebrated + ARGM-TMP * -> 0:2, Early in December + ARG0 * -> 3:2, the China Textile In - stitute , located * at Tucheng in Taipei County + ARG1 * -> 19:1, its 40th anniversary + ARGM-MNR * -> 22:1, with a dynamic multimedia show + 19 its + coref: IDENT 207 19-19 its + 20 40th + ! name: DATE 20-21 40th anniversary + 21 anniversary + 22 with + 23 a + 24 dynamic + 25 multimedia + 26 show + sense: show-n.4 + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The CTI's 40-year history has borne witness to the rise and decline of Taiwan's textile industry. + +Treebanked sentence: +-------------------- + The CTI 's 40 - year history has borne witness to the rise and decline of Taiwan 's textile industry . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NNP CTI) + (POS 's)) + (NML (CD 40) + (HYPH -) + (NN year)) + (NN history)) + (VP (VBZ has) + (VP (VBN borne) + (NP (NP (NN witness)) + (PP (IN to) + (NP (NP (DT the) + (NN rise) + (CC and) + (NN decline)) + (PP (IN of) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry)))))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 207 0-2 The CTI 's + 1 CTI + name: ORG 1-1 CTI + 2 's + 3 40 + name: DATE 3-5 40 - year + 4 - + 5 year + 6 history + 7 has + prop: have.01 + v * -> 7:0, has + 8 borne + sense: bear-v.12 + prop: bear.01 + v * -> 8:0, borne + ARG0 * -> 0:2, The CTI 's 40 - year history + ARG1 * -> 9:2, witness to the rise and decline of Taiwan 's textile industry + 9 witness + 10 to + 11 the + 12 rise + sense: rise-n.6 + prop: rise.01 + n * -> 12:0, rise + ARG1 * -> 15:1, of Taiwan 's textile industry + 13 and + 14 decline + sense: decline-n.2 + 15 of + 16 Taiwan + coref: IDENT 221 16-19 Taiwan 's textile industry + coref: IDENT 199 16-17 Taiwan 's + name: GPE 16-16 Taiwan + 17 's + 18 textile + 19 industry + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Forty years ago, Taiwan was just crossing the threshold of industrialization. + +Treebanked sentence: +-------------------- + Forty years ago , Taiwan was just crossing the threshold of industrialization . + +Tree: +----- + (TOP (S (ADVP-TMP (NP (CD Forty) + (NNS years)) + (RB ago)) + (, ,) + (NP-SBJ (NNP Taiwan)) + (VP (VBD was) + (ADVP (RB just)) + (VP (VBG crossing) + (NP (NP (DT the) + (NN threshold)) + (PP (IN of) + (NP (NN industrialization)))))) + (. .))) + +Leaves: +------- + 0 Forty + name: DATE 0-2 Forty years ago + 1 years + 2 ago + 3 , + 4 Taiwan + coref: IDENT 199 4-4 Taiwan + name: GPE 4-4 Taiwan + 5 was + prop: be.03 + v * -> 5:0, was + 6 just + 7 crossing + sense: cross-v.1 + prop: cross.02 + v * -> 7:0, crossing + ARGM-TMP * -> 0:2, Forty years ago + ARG0 * -> 4:1, Taiwan + ARGM-ADV * -> 6:1, just + ARG1 * -> 8:2, the threshold of industrialization + 8 the + 9 threshold + 10 of + 11 industrialization + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The textile industry was the darling of the nation, just like the electronics industry today. + +Treebanked sentence: +-------------------- + The textile industry was the darling of the nation , just like the electronics industry today . + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NN textile) + (NN industry)) + (VP (VBD was) + (NP-PRD (NP (DT the) + (NN darling)) + (PP (IN of) + (NP (DT the) + (NN nation)))) + (, ,) + (PP (ADVP (RB just)) + (IN like) + (NP (NP (DT the) + (NN electronics) + (NN industry)) + (NP-TMP (NN today))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 221 0-2 The textile industry + 1 textile + 2 industry + 3 was + sense: be-v.2 + prop: be.01 + v * -> 3:0, was + ARG1 * -> 0:1, The textile industry + ARG2 * -> 4:2, the darling of the nation + ARGM-ADV * -> 10:2, just like the electronics industry today + 4 the + 5 darling + 6 of + 7 the + coref: IDENT 199 7-8 the nation + 8 nation + sense: nation-n.1 + 9 , + 10 just + 11 like + 12 the + 13 electronics + 14 industry + sense: industry-n.1 + 15 today + sense: today-n.2 + name: TIME 15-15 today + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Although it has lost its former kudos, the textile industry is still an indispensable part of Taiwan's industrial + landscape. + +Treebanked sentence: +-------------------- + Although it has lost its former kudos , the textile industry is still an indispensable part of Taiwan 's industrial + landscape . + +Tree: +----- + (TOP (S (SBAR-ADV (IN Although) + (S (NP-SBJ (PRP it)) + (VP (VBZ has) + (VP (VBN lost) + (NP (PRP$ its) + (JJ former) + (NNS kudos)))))) + (, ,) + (NP-SBJ (DT the) + (NN textile) + (NN industry)) + (VP (VBZ is) + (ADVP (RB still)) + (NP-PRD (NP (DT an) + (JJ indispensable) + (NN part)) + (PP (IN of) + (NP (NP (NNP Taiwan) + (POS 's)) + (JJ industrial) + (NN landscape))))) + (. .))) + +Leaves: +------- + 0 Although + 1 it + coref: IDENT 221 1-1 it + 2 has + prop: have.01 + v * -> 2:0, has + 3 lost + sense: lose-v.2 + prop: lose.02 + v * -> 3:0, lost + ARG0 * -> 1:1, it + ARG1 * -> 4:1, its former kudos + 4 its + coref: IDENT 221 4-4 its + 5 former + 6 kudos + 7 , + 8 the + coref: IDENT 221 8-10 the textile industry + 9 textile + 10 industry + 11 is + sense: be-v.1 + prop: be.01 + v * -> 11:0, is + ARGM-ADV * -> 0:1, Although it has lost its former kudos + ARG1 * -> 8:1, the textile industry + ARGM-ADV * -> 12:1, still + ARG2 * -> 13:2, an indispensable part of Taiwan 's industrial landscape + 12 still + 13 an + 14 indispensable + 15 part + sense: part-n.1 + 16 of + 17 Taiwan + coref: IDENT 199 17-18 Taiwan 's + name: GPE 17-17 Taiwan + 18 's + 19 industrial + 20 landscape + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For the last decade, the CTI has been working hand in hand with the industry, quietly sowing the seeds of research and + development in many places. + +Treebanked sentence: +-------------------- + For the last decade , the CTI has been working hand in hand with the industry , *PRO*-1 quietly sowing the seeds of + research and development in many places . + +Tree: +----- + (TOP (S (PP-TMP (IN For) + (NP (DT the) + (JJ last) + (NN decade))) + (, ,) + (NP-SBJ-1 (DT the) + (NNP CTI)) + (VP (VBZ has) + (VP (VBN been) + (VP (VBG working) + (NP-ADV (NP (NN hand)) + (PP (IN in) + (NP (NN hand)))) + (PP (IN with) + (NP (DT the) + (NN industry))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (ADVP (RB quietly)) + (VP (VBG sowing) + (NP (NP (DT the) + (NNS seeds)) + (PP (IN of) + (NP (NN research) + (CC and) + (NN development)))) + (PP (IN in) + (NP (JJ many) + (NNS places)))))))) + (. .))) + +Leaves: +------- + 0 For + 1 the + name: DATE 1-3 the last decade + 2 last + 3 decade + sense: decade-n.1 + 4 , + 5 the + coref: IDENT 207 5-6 the CTI + 6 CTI + name: ORG 6-6 CTI + 7 has + prop: have.01 + v * -> 7:0, has + 8 been + prop: be.03 + v * -> 8:0, been + 9 working + sense: work-v.1 + prop: work.01 + v * -> 9:0, working + ARGM-TMP * -> 0:1, For the last decade + ARG0 * -> 17:0, *PRO*-1 -> 5:1, the CTI + ARGM-MNR * -> 10:2, hand in hand + ARG3 * -> 13:1, with the industry + ARGM-PRD * -> 17:2, *PRO*-1 quietly sowing the seeds of research and development in many places + 10 hand + sense: hand-n.1 + 11 in + 12 hand + sense: hand-n.1 + 13 with + 14 the + coref: IDENT 221 14-15 the industry + 15 industry + sense: industry-n.1 + 16 , + 17 *PRO*-1 + 18 quietly + 19 sowing + sense: sow-v.2 + prop: sow.01 + v * -> 19:0, sowing + ARG0 * -> 17:0, *PRO*-1 -> 5:1, the CTI + ARGM-MNR * -> 18:1, quietly + ARG1 * -> 20:2, the seeds of research and development + ARGM-LOC * -> 26:1, in many places + 20 the + coref: IDENT 249 20-25 the seeds of research and development + 21 seeds + 22 of + 23 research + sense: research-n.1 + 24 and + 25 development + 26 in + 27 many + 28 places + sense: place-n.1 + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Can those seeds germinate to create a second spring for Taiwan's textile industry ? + +Treebanked sentence: +-------------------- + Can those seeds germinate *PRO*-9 to create a second spring for Taiwan 's textile industry ? + +Tree: +----- + (TOP (SQ (MD Can) + (NP-SBJ-9 (DT those) + (NNS seeds)) + (VP (VB germinate) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB create) + (NP (DT a) + (JJ second) + (NN spring)) + (PP (IN for) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry))))))) + (. ?))) + +Leaves: +------- + 0 Can + 1 those + coref: IDENT 249 1-2 those seeds + 2 seeds + 3 germinate + prop: germinate.01 + v * -> 3:0, germinate + ARGM-MOD * -> 0:0, Can + ARG1 * -> 4:0, *PRO*-9 -> 1:1, those seeds + ARGM-PRP * -> 4:2, *PRO*-9 to create a second spring for Taiwan 's textile industry + 4 *PRO*-9 + 5 to + 6 create + sense: create-v.1 + prop: create.01 + v * -> 6:0, create + ARG0 * -> 4:0, *PRO*-9 -> 1:1, those seeds + ARG1 * -> 7:1, a second spring + ARG3 * -> 10:1, for Taiwan 's textile industry + 7 a + 8 second + name: ORDINAL 8-8 second + 9 spring + sense: spring-n.4 + prop: spring.01 + n * -> 9:0, spring + ARGM-TMP * -> 8:0, second + name: DATE 9-9 spring + 10 for + 11 Taiwan + coref: IDENT 221 11-14 Taiwan 's textile industry + coref: IDENT 199 11-12 Taiwan 's + name: GPE 11-11 Taiwan + 12 's + 13 textile + 14 industry + 15 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As the latest bout of winter weather hits Taiwan, do you want to go up Mt. Hehuan to see the snow ? + +Treebanked sentence: +-------------------- + As the latest bout of winter weather hits Taiwan , do you want *PRO*-9 to go up Mt. Hehuan *PRO*-9 to see the snow ? + +Tree: +----- + (TOP (SQ (SBAR-ADV (IN As) + (S (NP-SBJ (NP (DT the) + (JJS latest) + (NN bout)) + (PP (IN of) + (NP (NN winter) + (NN weather)))) + (VP (VBZ hits) + (NP (NNP Taiwan))))) + (, ,) + (VBP do) + (NP-SBJ-9 (PRP you)) + (VP (VB want) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB go) + (PP (IN up) + (NP (NNP Mt.) + (NNP Hehuan))) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB see) + (NP (DT the) + (NN snow))))))))) + (. ?))) + +Leaves: +------- + 0 As + 1 the + 2 latest + 3 bout + sense: bout-n.1 + 4 of + 5 winter + name: DATE 5-5 winter + 6 weather + 7 hits + sense: hit-v.2 + prop: hit.01 + v * -> 7:0, hits + ARG0 * -> 1:2, the latest bout of winter weather + ARG1 * -> 8:1, Taiwan + 8 Taiwan + coref: IDENT 199 8-8 Taiwan + name: GPE 8-8 Taiwan + 9 , + 10 do + prop: do.01 + v * -> 10:0, do + 11 you + 12 want + sense: want-v.1 + prop: want.01 + v * -> 12:0, want + ARGM-TMP * -> 0:1, As the latest bout of winter weather hits Taiwan + ARG0 * -> 13:0, *PRO*-9 -> 11:1, you + ARG1 * -> 13:2, *PRO*-9 to go up Mt. Hehuan *PRO*-9 to see the snow + 13 *PRO*-9 + 14 to + 15 go + sense: go-v.1 + prop: go.02 + v * -> 15:0, go + ARG0 * -> 13:0, *PRO*-9 -> 11:1, you + ARGM-DIR * -> 16:1, up Mt. Hehuan + ARGM-PRP * -> 19:2, *PRO*-9 to see the snow + 16 up + 17 Mt. + name: LOC 17-18 Mt. Hehuan + 18 Hehuan + 19 *PRO*-9 + 20 to + 21 see + sense: see-v.1 + prop: see.01 + v * -> 21:0, see + ARG0 * -> 19:0, *PRO*-9 -> 11:1, you + ARG1 * -> 22:1, the snow + 22 the + 23 snow + 24 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + You could put on a jacket containing highly insulating melt-spun ceramic fibers. + +Treebanked sentence: +-------------------- + You could put on a jacket containing highly insulating melt - spun ceramic fibers . + +Tree: +----- + (TOP (S (NP-SBJ (PRP You)) + (VP (MD could) + (VP (VB put) + (PP-CLR (IN on) + (NP (NP (DT a) + (NN jacket)) + (VP (VBG containing) + (NP (ADJP (RB highly) + (VBG insulating)) + (ADJP (VB melt) + (HYPH -) + (VBN spun)) + (JJ ceramic) + (NNS fibers))))))) + (. .))) + +Leaves: +------- + 0 You + 1 could + 2 put + sense: put-v.7.26 + prop: put.08 + v * -> 2:0, put + -> 3:0, on + ARG0 * -> 0:1, You + ARGM-MOD * -> 1:0, could + ARG1 * -> 4:2, a jacket containing highly insulating melt - spun ceramic fibers + 3 on + 4 a + 5 jacket + 6 containing + sense: contain-v.1 + prop: contain.01 + v * -> 6:0, containing + ARG0 * -> 4:1, a jacket + ARG1 * -> 7:2, highly insulating melt - spun ceramic fibers + 7 highly + 8 insulating + sense: insulate-v.1 + prop: insulate.01 + v * -> 8:0, insulating + ARGM-MNR * -> 7:0, highly + ARG0 * -> 13:0, fibers + 9 melt + 10 - + 11 spun + prop: spin.04 + v * -> 11:0, spun + ARG2 * -> 9:0, melt + 12 ceramic + 13 fibers + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + When the wind sends a fine driving rain slanting across the water, are you still unwilling to forgo the pleasure of sea + angling ? + +Treebanked sentence: +-------------------- + When the wind sends a fine driving rain slanting across the water *T*-2 , are you still unwilling *PRO*-1 to forgo the + pleasure of sea angling ? + +Tree: +----- + (TOP (SQ (SBAR-TMP (WHADVP-2 (WRB When)) + (S (NP-SBJ (DT the) + (NN wind)) + (VP (VBZ sends) + (S (NP-SBJ (DT a) + (JJ fine) + (VBG driving) + (NN rain)) + (VP (VBG slanting) + (PP (IN across) + (NP (DT the) + (NN water))))) + (ADVP-TMP (-NONE- *T*-2))))) + (, ,) + (VBP are) + (NP-SBJ-1 (PRP you)) + (ADVP-TMP (RB still)) + (ADJP-PRD (JJ unwilling) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB forgo) + (NP (NP (DT the) + (NN pleasure)) + (PP (IN of) + (NP (NN sea) + (NN angling)))))))) + (. ?))) + +Leaves: +------- + 0 When + 1 the + 2 wind + sense: wind-n.1 + 3 sends + sense: send-v.3 + prop: send.02 + v * -> 3:0, sends + ARG0 * -> 1:1, the wind + ARG1 * -> 4:1, a fine driving rain + ARG2 * -> 8:1, slanting across the water + ARGM-TMP * -> 12:0, *T*-2 -> 0:1, When + 4 a + 5 fine + 6 driving + prop: drive.02 + v * -> 6:0, driving + ARG1 * -> 7:0, rain + 7 rain + 8 slanting + sense: slant-v.1 + prop: slant.01 + v * -> 8:0, slanting + ARG1 * -> 4:1, a fine driving rain + ARGM-DIR * -> 9:1, across the water + 9 across + 10 the + 11 water + sense: water-n.3 + 12 *T*-2 + 13 , + 14 are + sense: be-v.1 + prop: be.01 + v * -> 14:0, are + ARGM-TMP * -> 0:2, When the wind sends a fine driving rain slanting across the water *T*-2 + ARG1 * -> 18:0, *PRO*-1 -> 15:1, you + ARGM-TMP * -> 16:1, still + ARG2 * -> 17:1, unwilling *PRO*-1 to forgo the pleasure of sea angling + 15 you + 16 still + 17 unwilling + 18 *PRO*-1 + 19 to + 20 forgo + sense: forgo-v.1 + prop: forgo.01 + v * -> 20:0, forgo + ARG0 * -> 18:0, *PRO*-1 -> 15:1, you + ARG1 * -> 21:2, the pleasure of sea angling + 21 the + 22 pleasure + sense: pleasure-n.2 + 23 of + 24 sea + 25 angling + 26 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Why not wear some micropore breathable rainwear, with an outer layer which is completely waterproof, but an inner layer + which is dry and comfortable on the skin ? + +Treebanked sentence: +-------------------- + Why *PRO* not wear some micropore breathable rainwear , with an outer layer which *T*-1 is completely waterproof , but + an inner layer which *T*-2 is dry and comfortable on the skin *T*-3 ? + +Tree: +----- + (TOP (SBAR (WHADVP-3 (WRB Why)) + (S (NP-SBJ (-NONE- *PRO*)) + (RB not) + (VP (VB wear) + (NP (NP (DT some) + (NN micropore) + (JJ breathable) + (NN rainwear)) + (, ,) + (PP (IN with) + (NP (NP (NP (DT an) + (JJ outer) + (NN layer)) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBZ is) + (ADJP-PRD (RB completely) + (JJ waterproof)))))) + (, ,) + (CC but) + (NP (NP (DT an) + (JJ inner) + (NN layer)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VBZ is) + (ADJP-PRD (JJ dry) + (CC and) + (JJ comfortable)) + (PP-LOC (IN on) + (NP (DT the) + (NN skin)))))))))) + (ADVP-PRP (-NONE- *T*-3)))) + (. ?))) + +Leaves: +------- + 0 Why + 1 *PRO* + 2 not + 3 wear + sense: wear-v.1 + prop: wear.01 + v * -> 3:0, wear + ARG0 * -> 1:0, *PRO* + ARGM-NEG * -> 2:0, not + ARG1 * -> 4:2, some micropore breathable rainwear , with an outer layer which *T*-1 is completely + waterproof , but an inner layer which *T*-2 is dry and comfortable on the skin + ARGM-CAU * -> 32:0, *T*-3 -> 0:1, Why + 4 some + 5 micropore + 6 breathable + 7 rainwear + 8 , + 9 with + 10 an + 11 outer + 12 layer + 13 which + 14 *T*-1 + 15 is + sense: be-v.1 + prop: be.01 + v * -> 15:0, is + ARG1 * -> 14:0, *T*-1 -> 13:1, which + ARG2 * -> 16:1, completely waterproof + LINK-SLC * -> 10:1, an outer layer + * -> 14:0, *T*-1 -> 13:1, which + 16 completely + 17 waterproof + 18 , + 19 but + 20 an + 21 inner + 22 layer + 23 which + 24 *T*-2 + 25 is + sense: be-v.1 + prop: be.01 + v * -> 25:0, is + ARG1 * -> 24:0, *T*-2 -> 23:1, which + ARG2 * -> 26:1, dry and comfortable + ARGM-LOC * -> 29:1, on the skin + LINK-SLC * -> 20:1, an inner layer + * -> 24:0, *T*-2 -> 23:1, which + 26 dry + 27 and + 28 comfortable + 29 on + 30 the + 31 skin + 32 *T*-3 + 33 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Tencel, made from wood cellulose, has given the lie to the notion that man-made fibers never degrade, and is set to + become one of the most important fibers of the coming environmental century ; and the shrimp and crab shells which were + once tossed away are now being processed to extract chitin, which when used to treat clothing can inhibit bacteria and + mold and prevent unwanted odors, and which can also be used as a dressing for burns which both reduces inflammation and + encourages new tissue growth.... + +Treebanked sentence: +-------------------- + Tencel , made * from wood cellulose , has given the lie to the notion that man - made fibers never degrade , and is set + *-8 to become one of the most important fibers of the coming environmental century ; and the shrimp and crab shells + which *T*-2 were once tossed *-2 away are now being processed *-1 *PRO* to extract chitin , which *T*-3 when *PRO* used + * *PRO* to treat clothing *T*-4 can inhibit bacteria and mold and prevent unwanted odors , and which *T*-6 can also be + used *-6 as a dressing for burns which *T*-7 both reduces inflammation and encourages new tissue growth . . . . + +Tree: +----- + (TOP (S (S (NP-SBJ-8 (NP (NNP Tencel)) + (, ,) + (VP (VBN made) + (NP (-NONE- *)) + (PP-CLR (IN from) + (NP (NN wood) + (NN cellulose)))) + (, ,)) + (VP (VP (VBZ has) + (VP (VBN given) + (NP (DT the) + (NN lie)) + (PP-DTV (IN to) + (NP (DT the) + (NN notion) + (SBAR (IN that) + (S (NP-SBJ (ADJP (NN man) + (HYPH -) + (VBN made)) + (NNS fibers)) + (ADVP-TMP (RB never)) + (VP (VBP degrade)))))))) + (, ,) + (CC and) + (VP (VBZ is) + (VP (VBN set) + (S (NP-SBJ (-NONE- *-8)) + (VP (TO to) + (VP (VB become) + (NP-PRD (NP (CD one)) + (PP (IN of) + (NP (NP (DT the) + (ADJP (RBS most) + (JJ important)) + (NNS fibers)) + (PP (IN of) + (NP (DT the) + (VBG coming) + (JJ environmental) + (NN century))))))))))))) + (, ;) + (CC and) + (S (NP-SBJ-1 (NP (DT the) + (NML (NN shrimp) + (CC and) + (NN crab)) + (NNS shells)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VBD were) + (ADVP-TMP (RB once)) + (VP (VBN tossed) + (NP (-NONE- *-2)) + (ADVP (RB away))))))) + (VP (VBP are) + (ADVP-TMP (RB now)) + (VP (VBG being) + (VP (VBN processed) + (NP (-NONE- *-1)) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB extract) + (NP (NP (NN chitin)) + (, ,) + (SBAR (SBAR (WHNP-3 (WDT which)) + (S (NP-SBJ (-NONE- *T*-3)) + (SBAR-TMP (WHADVP-4 (WRB when)) + (S (NP-SBJ-5 (-NONE- *PRO*)) + (VP (VBN used) + (NP-5 (-NONE- *)) + (S-CLR (NP-SBJ-5 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB treat) + (NP (NN clothing))))) + (ADVP-TMP (-NONE- *T*-4))))) + (VP (MD can) + (VP (VP (VB inhibit) + (NP (NNS bacteria) + (CC and) + (NN mold))) + (CC and) + (VP (VB prevent) + (NP (JJ unwanted) + (NNS odors))))))) + (, ,) + (CC and) + (SBAR (WHNP-6 (WDT which)) + (S (NP-SBJ (-NONE- *T*-6)) + (VP (MD can) + (ADVP (RB also)) + (VP (VB be) + (VP (VBN used) + (NP (-NONE- *-6)) + (PP-CLR (IN as) + (NP (NP (NP (DT a) + (NN dressing)) + (PP (IN for) + (NP (NNS burns)))) + (SBAR (WHNP-7 (WDT which)) + (S (NP-SBJ (-NONE- *T*-7)) + (VP (CC both) + (VP (VBZ reduces) + (NP (NN + inflammation))) + (CC and) + (VP (VBZ encourages) + (NP (JJ new) + (NN tissue) + (NN + growth)))))))))))))))))))))) + (. .) + (. .) + (. .) + (. .))) + +Leaves: +------- + 0 Tencel + 1 , + 2 made + prop: make.01 + v * -> 2:0, made + ARG1 * -> 3:0, * + ARG2 * -> 4:1, from wood cellulose + LINK-PCR * -> 0:1, Tencel + * -> 3:0, * + 3 * + 4 from + 5 wood + sense: wood-n.1 + 6 cellulose + 7 , + 8 has + prop: have.01 + v * -> 8:0, has + 9 given + sense: give-v.2 + prop: give.01 + v * -> 9:0, given + ARG0 * -> 26:0, *-8 -> 0:2, Tencel , made * from wood cellulose , + ARG1 * -> 10:1, the lie + ARG2 * -> 12:1, to the notion that man - made fibers never degrade + 10 the + 11 lie + sense: lie-n.1 + prop: lie.01 + n * -> 11:0, lie + 12 to + 13 the + 14 notion + sense: notion-n.1 + 15 that + 16 man + sense: man-n.10 + 17 - + 18 made + prop: make.01 + v * -> 18:0, made + ARG0 * -> 16:0, man + ARG1 * -> 19:0, fibers + 19 fibers + 20 never + 21 degrade + prop: degrade.01 + v * -> 21:0, degrade + ARG1 * -> 16:2, man - made fibers + ARGM-NEG * -> 20:1, never + 22 , + 23 and + 24 is + prop: be.03 + v * -> 24:0, is + 25 set + prop: set.08 + v * -> 25:0, set + ARG1 * -> 26:0, *-8 -> 0:2, Tencel , made * from wood cellulose , + ARG2 * -> 26:2, *-8 to become one of the most important fibers of the coming environmental century + 26 *-8 + 27 to + 28 become + sense: become-v.1 + prop: become.01 + v * -> 28:0, become + ARG1 * -> 26:0, *-8 -> 0:2, Tencel , made * from wood cellulose , + ARG2 * -> 29:2, one of the most important fibers of the coming environmental century + 29 one + 30 of + 31 the + 32 most + 33 important + 34 fibers + 35 of + 36 the + 37 coming + prop: come.01 + v * -> 37:0, coming + ARG1 * -> 38:0, environmental + -> 39:0, century + 38 environmental + 39 century + name: DATE 39-39 century + 40 ; + 41 and + 42 the + 43 shrimp + 44 and + 45 crab + 46 shells + 47 which + 48 *T*-2 + 49 were + prop: be.03 + v * -> 49:0, were + 50 once + name: ORDINAL 50-50 once + 51 tossed + prop: toss.01 + v * -> 51:0, tossed + ARGM-TMP * -> 50:1, once + ARG1 * -> 52:0, *-2 -> 47:1, which + ARGM-DIR * -> 53:1, away + LINK-SLC * -> 42:1, the shrimp and crab shells + * -> 52:0, *-2 -> 47:1, which + LINK-PCR * -> 52:0, *-2 -> 47:1, which + * -> 52:0, *-2 -> 47:1, which + 52 *-2 + 53 away + 54 are + prop: be.03 + v * -> 54:0, are + 55 now + 56 being + prop: be.03 + v * -> 56:0, being + 57 processed + prop: process.01 + v * -> 57:0, processed + ARGM-TMP * -> 55:1, now + ARG1 * -> 58:0, *-1 -> 42:2, the shrimp and crab shells which *T*-2 were once tossed *-2 away + ARGM-PRP * -> 59:2, *PRO* to extract chitin , which *T*-3 when *PRO* used * *PRO* to treat clothing *T*-4 + can inhibit bacteria and mold and prevent unwanted odors , and which *T*-6 can also be + used *-6 as a dressing for burns which *T*-7 both reduces inflammation and encourages + new tissue growth + LINK-PCR * -> 58:0, *-1 -> 42:2, the shrimp and crab shells which *T*-2 were once tossed *-2 away + * -> 58:0, *-1 -> 42:2, the shrimp and crab shells which *T*-2 were once tossed *-2 away + 58 *-1 + 59 *PRO* + 60 to + 61 extract + sense: extract-v.2 + prop: extract.01 + v * -> 61:0, extract + ARG0 * -> 59:0, *PRO* + ARG1 * -> 62:2, chitin , which *T*-3 when *PRO* used * *PRO* to treat clothing *T*-4 can inhibit + bacteria and mold and prevent unwanted odors , and which *T*-6 can also be used *-6 as + a dressing for burns which *T*-7 both reduces inflammation and encourages new tissue + growth + 62 chitin + 63 , + 64 which + 65 *T*-3 + 66 when + 67 *PRO* + 68 used + prop: use.01 + v * -> 68:0, used + ARG1 * -> 69:0, * + ARG2 * -> 70:2, *PRO* to treat clothing + ARGM-TMP * -> 74:0, *T*-4 -> 66:1, when + 69 * + 70 *PRO* + 71 to + 72 treat + sense: treat-v.3 + prop: treat.04 + v * -> 72:0, treat + ARG0 * -> 70:0, *PRO* + ARG1 * -> 73:1, clothing + 73 clothing + 74 *T*-4 + 75 can + 76 inhibit + sense: inhibit-v.1 + prop: inhibit.01 + v * -> 76:0, inhibit + ARG0 * -> 65:0, *T*-3 -> 64:1, which + ARGM-TMP * -> 66:2, when *PRO* used * *PRO* to treat clothing *T*-4 + ARGM-MOD * -> 75:0, can + ARG1 * -> 77:1, bacteria and mold + LINK-SLC * -> 62:1, chitin + * -> 65:0, *T*-3 -> 64:1, which + 77 bacteria + 78 and + 79 mold + sense: mold-n.1 + 80 and + 81 prevent + sense: prevent-v.1 + prop: prevent.01 + v * -> 81:0, prevent + ARG0 * -> 65:0, *T*-3 -> 64:1, which + ARGM-TMP * -> 66:2, when *PRO* used * *PRO* to treat clothing *T*-4 + ARGM-MOD * -> 75:0, can + ARG1 * -> 82:1, unwanted odors + LINK-SLC * -> 62:1, chitin + * -> 65:0, *T*-3 -> 64:1, which + 82 unwanted + 83 odors + 84 , + 85 and + 86 which + 87 *T*-6 + 88 can + 89 also + 90 be + prop: be.03 + v * -> 90:0, be + 91 used + prop: use.01 + v * -> 91:0, used + ARGM-MOD * -> 88:0, can + ARGM-ADV * -> 89:1, also + ARG1 * -> 92:0, *-6 -> 86:1, which + ARG2 * -> 93:1, as a dressing for burns which *T*-7 both reduces inflammation and encourages new + tissue growth + LINK-SLC * -> 62:1, chitin + * -> 92:0, *-6 -> 86:1, which + 92 *-6 + 93 as + 94 a + 95 dressing + 96 for + 97 burns + sense: burn-n.1 + 98 which + 99 *T*-7 + 100 both + 101 reduces + sense: reduce-v.1 + prop: reduce.01 + v * -> 101:0, reduces + ARG0 * -> 99:0, *T*-7 -> 98:1, which + ARG1 * -> 102:1, inflammation + LINK-SLC * -> 94:2, a dressing for burns + * -> 99:0, *T*-7 -> 98:1, which + 102 inflammation + 103 and + 104 encourages + prop: encourage.02 + v * -> 104:0, encourages + ARG0 * -> 99:0, *T*-7 -> 98:1, which + ARG1 * -> 105:1, new tissue growth + LINK-SLC * -> 94:2, a dressing for burns + * -> 99:0, *T*-7 -> 98:1, which + 105 new + 106 tissue + 107 growth + sense: growth-n.1 + 108 . + 109 . + 110 . + 111 . + + +======================================================================================================================== +Coreference chains for section 0: +--------------------------------- + + Chain 199 (IDENT) + 0.6-6 Taiwan + 3.16-17 Taiwan 's + 4.4-4 Taiwan + 5.7-8 the nation + 6.17-18 Taiwan 's + 8.11-12 Taiwan 's + 9.8-8 Taiwan + + Chain 207 (IDENT) + 2.3-16 the China Textile In - stitute , located * at Tucheng in Taipei County + 2.19-19 its + 3.0-2 The CTI 's + 7.5-6 the CTI + + Chain 221 (IDENT) + 3.16-19 Taiwan 's textile industry + 5.0-2 The textile industry + 6.1-1 it + 6.4-4 its + 6.8-10 the textile industry + 7.14-15 the industry + 8.11-14 Taiwan 's textile industry + + Chain 249 (IDENT) + 7.20-25 the seeds of research and development + 8.1-2 those seeds + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + What sunset industry ? + +Treebanked sentence: +-------------------- + What sunset industry ? + +Tree: +----- + (TOP (FRAG (WHNP (WDT What) + (NN sunset) + (NN industry)) + (. ?))) + +Leaves: +------- + 0 What + 1 sunset + 2 industry + sense: industry-n.1 + 3 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Ceramic fibers, stainless steel, shrimp shells-at first glance there seems to be no connection with spinning and + weaving. + +Treebanked sentence: +-------------------- + Ceramic fibers , stainless steel , shrimp shells - at first glance there seems *-1 to be no connection with spinning and + weaving . + +Tree: +----- + (TOP (S (NP-ADV (NP (JJ Ceramic) + (NNS fibers)) + (, ,) + (NP (JJ stainless) + (NN steel)) + (, ,) + (NP (NN shrimp) + (NNS shells))) + (: -) + (PP-TMP (IN at) + (NP (JJ first) + (NN glance))) + (NP-SBJ-1 (EX there)) + (VP (VBZ seems) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB be) + (NP-PRD (NP (DT no) + (NN connection)) + (PP (IN with) + (NP (NN spinning) + (CC and) + (NN weaving)))))))) + (. .))) + +Leaves: +------- + 0 Ceramic + coref: IDENT 0 0-7 Ceramic fibers , stainless steel , shrimp shells + 1 fibers + 2 , + 3 stainless + 4 steel + sense: steel-n.1 + 5 , + 6 shrimp + 7 shells + 8 - + 9 at + 10 first + 11 glance + 12 there + 13 seems + sense: seem-v.1 + prop: seem.01 + v * -> 13:0, seems + ARGM-TMP * -> 9:1, at first glance + ARG1 * -> 14:2, *-1 to be no connection with spinning and weaving + 14 *-1 + 15 to + 16 be + sense: be-v.3 + prop: be.02 + v * -> 16:0, be + ARG1 * -> 17:2, no connection with spinning and weaving + 17 no + 18 connection + sense: connection-n.1 + prop: connection.01 + n * -> 18:0, connection + ARGM-NEG * -> 17:0, no + ARG2 * -> 19:1, with spinning and weaving + 19 with + 20 spinning + 21 and + 22 weaving + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But in fact these are among the latest products and trends quietly taking shape in the textile industry. + +Treebanked sentence: +-------------------- + But in fact these are among the latest products and trends quietly taking shape in the textile industry . + +Tree: +----- + (TOP (S (CC But) + (PP (IN in) + (NP (NN fact))) + (NP-SBJ (DT these)) + (VP (VBP are) + (PP-PRD (IN among) + (NP (NP (DT the) + (JJS latest) + (NNS products) + (CC and) + (NNS trends)) + (VP (ADVP (RB quietly)) + (VBG taking) + (NP (NN shape)) + (PP (IN in) + (NP (DT the) + (NN textile) + (NN industry))))))) + (. .))) + +Leaves: +------- + 0 But + 1 in + 2 fact + sense: fact-n.5 + 3 these + coref: IDENT 0 3-3 these + 4 are + sense: be-v.4 + prop: be.01 + v * -> 4:0, are + ARGM-DIS * -> 0:0, But + ARGM-DIS * -> 1:1, in fact + ARG1 * -> 3:1, these + ARG2 * -> 5:1, among the latest products and trends quietly taking shape in the textile industry + 5 among + 6 the + 7 latest + 8 products + sense: product-n.1 + 9 and + 10 trends + sense: trend-n.1 + 11 quietly + 12 taking + prop: take.01 + v * -> 12:0, taking + ARG0 * -> 6:1, the latest products and trends + ARGM-MNR * -> 11:1, quietly + ARG1 * -> 13:1, shape + ARGM-LOC * -> 14:1, in the textile industry + 13 shape + sense: shape-n.3 + 14 in + 15 the + coref: IDENT 15 15-17 the textile industry + 16 textile + 17 industry + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With the rise of new industries such as electronics, aerospace and biotechnology, the areas of application for textile + products have expanded ever wider, from being simply coverings for the human body to finding their way up into space and + down into the earth. + +Treebanked sentence: +-------------------- + With the rise of new industries such as electronics , aerospace and biotechnology , the areas of application for textile + products have expanded ever wider , from *PRO* being simply coverings for the human body to *PRO* finding their way up + into space and down into the earth . + +Tree: +----- + (TOP (S (PP (IN With) + (NP (NP (DT the) + (NN rise)) + (PP (IN of) + (NP (NP (JJ new) + (NNS industries)) + (PP (JJ such) + (IN as) + (NP (NN electronics) + (, ,) + (NN aerospace) + (CC and) + (NN biotechnology))))))) + (, ,) + (NP-SBJ (NP (DT the) + (NNS areas)) + (PP (IN of) + (NP (NP (NN application)) + (PP (IN for) + (NP (NN textile) + (NNS products)))))) + (VP (VBP have) + (VP (VBN expanded) + (ADVP (RB ever) + (RBR wider)) + (, ,) + (PP (IN from) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG being) + (ADVP (RB simply)) + (NP-PRD (NP (NNS coverings)) + (PP (IN for) + (NP (DT the) + (JJ human) + (NN body))))))) + (PP (IN to) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG finding) + (NP (PRP$ their) + (NN way)) + (ADVP (ADVP (RB up) + (PP (IN into) + (NP (NN space)))) + (CC and) + (ADVP (RB down) + (PP (IN into) + (NP (DT the) + (NN earth)))))))))) + (. .))) + +Leaves: +------- + 0 With + 1 the + 2 rise + sense: rise-n.6 + prop: rise.01 + n * -> 2:0, rise + ARG1 * -> 3:1, of new industries such as electronics , aerospace and biotechnology + 3 of + 4 new + 5 industries + sense: industry-n.1 + 6 such + 7 as + 8 electronics + 9 , + 10 aerospace + 11 and + 12 biotechnology + 13 , + 14 the + 15 areas + sense: area-n.1 + 16 of + 17 application + sense: application-n.1 + prop: application.02 + n * -> 17:0, application + ARG1 * -> 18:1, for textile products + 18 for + 19 textile + coref: IDENT 25 19-20 textile products + 20 products + sense: product-n.1 + 21 have + prop: have.01 + v * -> 21:0, have + 22 expanded + sense: expand-v.1 + prop: expand.01 + v * -> 22:0, expanded + ARGM-ADV * -> 0:1, With the rise of new industries such as electronics , aerospace and biotechnology + ARG1 * -> 14:2, the areas of application for textile products + ARG2 * -> 23:1, ever wider + ARG3 * -> 26:1, from *PRO* being simply coverings for the human body + ARG4 * -> 35:1, to *PRO* finding their way up into space and down into the earth + 23 ever + 24 wider + 25 , + 26 from + 27 *PRO* + 28 being + sense: be-v.1 + prop: be.01 + v * -> 28:0, being + ARG1 * -> 27:0, *PRO* + ARGM-ADV * -> 29:1, simply + ARG2 * -> 30:2, coverings for the human body + 29 simply + 30 coverings + 31 for + 32 the + 33 human + 34 body + sense: body-n.2 + 35 to + 36 *PRO* + 37 finding + sense: find-v.1 + prop: find.01 + v * -> 37:0, finding + ARG0 * -> 36:0, *PRO* + ARG1 * -> 38:1, their way + ARGM-DIR * -> 40:2, up into space and down into the earth + 38 their + coref: IDENT 25 38-38 their + 39 way + sense: way-n.4 + 40 up + 41 into + 42 space + sense: space-n.1 + 43 and + 44 down + 45 into + 46 the + 47 earth + 48 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " There are only sunset products, not sunset industries. " + +Treebanked sentence: +-------------------- + " There are only sunset products , not sunset industries . " + +Tree: +----- + (TOP (S (`` ") + (NP-SBJ (EX There)) + (VP (VBP are) + (ADVP (RB only)) + (NP-PRD (NP (NN sunset) + (NNS products)) + (, ,) + (RB not) + (NP (NN sunset) + (NNS industries)))) + (. .) + ('' "))) + +Leaves: +------- + 0 " + 1 There + 2 are + sense: be-v.3 + prop: be.02 + v * -> 2:0, are + ARGM-ADV * -> 3:1, only + ARG1 * -> 4:2, sunset products , not sunset industries + 3 only + 4 sunset + 5 products + sense: product-n.1 + 6 , + 7 not + 8 sunset + 9 industries + sense: industry-n.1 + 10 . + 11 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These words from competitiveness guru Michael Porter hit the nail on the head when it comes to Taiwan's textile + industry's current efforts to transform itself into a high-tech, capital-and information-intensive sector. + +Treebanked sentence: +-------------------- + These words from competitiveness guru Michael Porter hit the nail on the head when it comes to Taiwan 's textile + industry 's current efforts *PRO* to transform itself into a high - tech , capital - and information - intensive sector + *T*-9 . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT These) + (NNS words)) + (PP (IN from) + (NP (NML (NN competitiveness) + (NN guru)) + (NNP Michael) + (NNP Porter)))) + (VP (VBP hit) + (NP (DT the) + (NN nail)) + (PP-LOC (IN on) + (NP (DT the) + (NN head))) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (PRP it)) + (VP (VBZ comes) + (PP (IN to) + (NP (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry) + (POS 's)) + (JJ current) + (NNS efforts) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB transform) + (NP (PRP itself)) + (PP-CLR (IN into) + (NP (DT a) + (ADJP (JJ high) + (HYPH -) + (NN tech)) + (, ,) + (ADJP (NP (NN capital) + (HYPH -) + (CC and) + (NN information)) + (HYPH -) + (JJ intensive)) + (NN sector)))))))) + (ADVP-TMP (-NONE- *T*-9)))))) + (. .))) + +Leaves: +------- + 0 These + 1 words + sense: word-n.2 + 2 from + 3 competitiveness + 4 guru + sense: guru-n.2 + 5 Michael + ! name: PERSON 5-6 Michael Porter + 6 Porter + 7 hit + sense: hit-v.2 + prop: hit.01 + v * -> 7:0, hit + ARG0 * -> 0:2, These words from competitiveness guru Michael Porter + ARG1 * -> 8:1, the nail + ARGM-LOC * -> 10:1, on the head + ARGM-TMP * -> 13:2, when it comes to Taiwan 's textile industry 's current efforts *PRO* to transform + itself into a high - tech , capital - and information - intensive sector *T*-9 + 8 the + 9 nail + 10 on + 11 the + 12 head + 13 when + 14 it + 15 comes + sense: come-v.3 + prop: come.12 + v * -> 15:0, comes + ARG1 * -> 16:1, to Taiwan 's textile industry 's current efforts *PRO* to transform itself into a high + - tech , capital - and information - intensive sector + ARGM-TMP * -> 41:0, *T*-9 -> 13:1, when + 16 to + 17 Taiwan + coref: IDENT 46 17-18 Taiwan 's + coref: IDENT 15 17-21 Taiwan 's textile industry 's + name: GPE 17-17 Taiwan + 18 's + 19 textile + 20 industry + 21 's + 22 current + 23 efforts + sense: effort-n.1 + 24 *PRO* + 25 to + 26 transform + sense: transform-v.1 + prop: transform.01 + v * -> 26:0, transform + ARG0 * -> 24:0, *PRO* + ARG1 * -> 27:1, itself + ARG2 * -> 28:1, into a high - tech , capital - and information - intensive sector + LINK-PCR * -> 17:2, Taiwan 's textile industry 's + * -> 24:0, *PRO* + 27 itself + coref: IDENT 15 27-27 itself + 28 into + 29 a + 30 high + 31 - + 32 tech + 33 , + 34 capital + sense: capital-n.1 + 35 - + 36 and + 37 information + sense: information-n.1 + 38 - + 39 intensive + 40 sector + sense: sector-n.2 + 41 *T*-9 + 42 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " Twenty years ago, the polyester uniforms worn by schoolchildren in Taiwan turned dreadfully stiff when you tried to + wash them ; cotton clothes shrank ; nylon made your skin red and itchy ; stockings would ladder if you so much as looked + at them ; and decent clothes had to be expensively dry cleaned, " recalls CTI president Yao Hsing-chuan. + +Treebanked sentence: +-------------------- + " Twenty years ago , the polyester uniforms worn * by schoolchildren in Taiwan turned *-4 dreadfully stiff when you + tried *PRO*-1 to wash them *T*-9 ; cotton clothes shrank ; nylon made your skin red and itchy ; stockings would ladder + if you so much as looked at them ; and decent clothes had *-2 to be expensively dry cleaned *-2 , " recalls *T*-3 CTI + president Yao Hsing - chuan . + +Tree: +----- + (TOP (SINV (`` ") + (S-TPC-3 (S (ADVP-TMP (NP (CD Twenty) + (NNS years)) + (RB ago)) + (, ,) + (NP-SBJ-4 (NP (DT the) + (NN polyester) + (NNS uniforms)) + (VP (VBN worn) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (NNS schoolchildren))) + (PP-LOC (IN in) + (NP (NNP Taiwan))))) + (VP (VBD turned) + (S (NP-SBJ (-NONE- *-4)) + (ADJP-PRD (RB dreadfully) + (JJ stiff))) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ-1 (PRP you)) + (VP (VBD tried) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB wash) + (NP (PRP them))))) + (ADVP-TMP (-NONE- *T*-9))))))) + (, ;) + (S (NP-SBJ (NN cotton) + (NNS clothes)) + (VP (VBD shrank))) + (, ;) + (S (NP-SBJ (NN nylon)) + (VP (VBD made) + (S (NP-SBJ (PRP$ your) + (NN skin)) + (ADJP-PRD (JJ red) + (CC and) + (JJ itchy))))) + (, ;) + (S (S (NP-SBJ (NNS stockings)) + (VP (MD would) + (VP (VB ladder) + (SBAR-ADV (IN if) + (S (NP-SBJ (PRP you)) + (ADVP (RB so) + (RB much) + (RB as)) + (VP (VBD looked) + (PP (IN at) + (NP (PRP them))))))))) + (, ;) + (CC and) + (S (NP-SBJ-2 (JJ decent) + (NNS clothes)) + (VP (VBD had) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VB be) + (ADVP (RB expensively) + (RB dry)) + (VP (VBN cleaned) + (NP (-NONE- *-2)))))))))) + (, ,) + ('' ") + (VP (VBZ recalls) + (S (-NONE- *T*-3))) + (NP-SBJ (NML (NNP CTI) + (NN president)) + (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan)) + (. .))) + +Leaves: +------- + 0 " + 1 Twenty + name: DATE 1-3 Twenty years ago + 2 years + 3 ago + 4 , + 5 the + coref: IDENT 52 5-13 the polyester uniforms worn * by schoolchildren in Taiwan + 6 polyester + 7 uniforms + 8 worn + sense: wear-v.1 + prop: wear.01 + v * -> 8:0, worn + ARG1 * -> 9:0, * + ARG0 * -> 10:1, by schoolchildren + ARGM-LOC * -> 12:1, in Taiwan + LINK-PCR * -> 5:1, the polyester uniforms + * -> 9:0, * + 9 * + 10 by + 11 schoolchildren + 12 in + 13 Taiwan + coref: IDENT 46 13-13 Taiwan + name: GPE 13-13 Taiwan + 14 turned + sense: turn-v.2 + prop: turn.02 + v * -> 14:0, turned + ARGM-TMP * -> 1:2, Twenty years ago + ARG1 * -> 15:0, *-4 -> 5:2, the polyester uniforms worn * by schoolchildren in Taiwan + ARG2 * -> 15:2, *-4 dreadfully stiff + ARGM-TMP * -> 18:2, when you tried *PRO*-1 to wash them *T*-9 + 15 *-4 + 16 dreadfully + 17 stiff + 18 when + 19 you + 20 tried + sense: try-v.1 + prop: try.01 + v * -> 20:0, tried + ARG0 * -> 21:0, *PRO*-1 -> 19:1, you + ARG1 * -> 21:2, *PRO*-1 to wash them + ARGM-TMP * -> 25:0, *T*-9 -> 18:1, when + 21 *PRO*-1 + 22 to + 23 wash + sense: wash-v.1 + prop: wash.01 + v * -> 23:0, wash + ARG0 * -> 21:0, *PRO*-1 -> 19:1, you + ARG1 * -> 24:1, them + 24 them + coref: IDENT 52 24-24 them + 25 *T*-9 + 26 ; + 27 cotton + 28 clothes + 29 shrank + sense: shrink-v.1 + prop: shrink.01 + v * -> 29:0, shrank + ARG1 * -> 27:1, cotton clothes + 30 ; + 31 nylon + 32 made + sense: make-v.3 + prop: make.02 + v * -> 32:0, made + ARG0 * -> 31:1, nylon + ARG1 * -> 33:2, your skin red and itchy + 33 your + 34 skin + 35 red + 36 and + 37 itchy + 38 ; + 39 stockings + coref: IDENT 63 39-39 stockings + 40 would + 41 ladder + prop: ladder.01 + v * -> 41:0, ladder + ARG1 * -> 39:1, stockings + ARGM-MOD * -> 40:0, would + ARGM-ADV * -> 42:1, if you so much as looked at them + 42 if + 43 you + 44 so + 45 much + 46 as + 47 looked + sense: look-v.1 + prop: look.01 + v * -> 47:0, looked + ARG0 * -> 43:1, you + ARGM-ADV * -> 44:1, so much as + ARG1 * -> 48:1, at them + 48 at + 49 them + coref: IDENT 63 49-49 them + 50 ; + 51 and + 52 decent + 53 clothes + 54 had + sense: have-v.12 + prop: have.02 + v * -> 54:0, had + 55 *-2 + 56 to + 57 be + prop: be.03 + v * -> 57:0, be + 58 expensively + 59 dry + 60 cleaned + prop: clean.01 + v * -> 60:0, cleaned + ARGM-MNR * -> 58:1, expensively dry + ARG1 * -> 61:0, *-2 -> 52:1, decent clothes + LINK-PCR * -> 61:0, *-2 -> 52:1, decent clothes + * -> 61:0, *-2 -> 52:1, decent clothes + * -> 61:0, *-2 -> 52:1, decent clothes + 61 *-2 + 62 , + 63 " + 64 recalls + sense: recall-v.1 + prop: recall.02 + v * -> 64:0, recalls + ARG1 * -> 65:0, *T*-3 -> 1:4, Twenty years ago , the polyester uniforms worn * by schoolchildren in + Taiwan turned *-4 dreadfully stiff when you tried *PRO*-1 to wash them + *T*-9 ; cotton clothes shrank ; nylon made your skin red and itchy ; + stockings would ladder if you so much as looked at them ; and decent + clothes had *-2 to be expensively dry cleaned *-2 + ARG0 * -> 66:2, CTI president Yao Hsing - chuan + 65 *T*-3 + 66 CTI + coref: IDENT 69 66-71 CTI president Yao Hsing - chuan + 67 president + sense: president-n.1 + 68 Yao + ! name: PERSON 68-71 Yao Hsing - chuan + 69 Hsing + 70 - + 71 chuan + 72 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + If clothes in Taiwan today are getting ever lighter, softer, warmer, more wrinkle-free and easier to keep clean, and if + their colors are bright, fresh and stain-resistant, this is not thanks to the magic wand wielded by Cinderella's fairy + godmother, but is the result of the unceasing efforts towards research, development and upgrading put in by the textile + industry over the years. + +Treebanked sentence: +-------------------- + If clothes in Taiwan today are getting ever lighter , softer , warmer , more wrinkle - free and easier *PRO* to keep * + clean , and if their colors are bright , fresh and stain - resistant , this is not thanks to the magic wand wielded * by + Cinderella 's fairy godmother , but is the result of the unceasing efforts towards research , development and upgrading + put * in by the textile industry over the years . + +Tree: +----- + (TOP (S (SBAR-ADV (SBAR (IN If) + (S (NP-SBJ (NP (NNS clothes)) + (PP (IN in) + (NP (NNP Taiwan))) + (NP-TMP (NN today))) + (VP (VBP are) + (VP (VBG getting) + (ADJP-PRD (ADJP (RB ever) + (JJR lighter)) + (, ,) + (ADJP (JJR softer)) + (, ,) + (ADJP (JJR warmer)) + (, ,) + (ADJP (RBR more) + (NN wrinkle) + (HYPH -) + (JJ free)) + (CC and) + (ADJP (JJR easier) + (S (NP-SBJ-1 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB keep) + (S-CLR (NP-SBJ-1 (-NONE- *)) + (ADJP-PRD (JJ clean)))))))))))) + (, ,) + (CC and) + (SBAR-ADV (IN if) + (S (NP-SBJ (PRP$ their) + (NNS colors)) + (VP (VBP are) + (ADJP-PRD (ADJP (JJ bright)) + (, ,) + (ADJP (JJ fresh)) + (CC and) + (ADJP (NN stain) + (HYPH -) + (JJ resistant))))))) + (, ,) + (NP-SBJ (DT this)) + (VP (VP (VBZ is) + (RB not) + (NP-PRD (NP (NNS thanks)) + (PP (IN to) + (NP (NP (DT the) + (NN magic) + (NN wand)) + (VP (VBN wielded) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (NP (NNP Cinderella) + (POS 's)) + (NN fairy) + (NN godmother)))))))) + (, ,) + (CC but) + (VP (VBZ is) + (NP-PRD (NP (DT the) + (NN result)) + (PP (IN of) + (NP (NP (NP (DT the) + (JJ unceasing) + (NNS efforts)) + (PP (IN towards) + (NP (NN research) + (, ,) + (NN development) + (CC and) + (NN upgrading)))) + (VP (VBN put) + (NP (-NONE- *)) + (ADVP (RB in)) + (PP (IN by) + (NP-LGS (DT the) + (NN textile) + (NN industry))) + (PP-TMP (IN over) + (NP (DT the) + (NNS years))))))))) + (. .))) + +Leaves: +------- + 0 If + 1 clothes + coref: IDENT 70 1-4 clothes in Taiwan today + 2 in + 3 Taiwan + coref: IDENT 46 3-3 Taiwan + name: GPE 3-3 Taiwan + 4 today + sense: today-n.1 + coref: IDENT 73 4-4 today + name: TIME 4-4 today + 5 are + prop: be.03 + v * -> 5:0, are + 6 getting + prop: get.03 + v * -> 6:0, getting + ARG1 * -> 1:2, clothes in Taiwan today + ARG2 * -> 7:2, ever lighter , softer , warmer , more wrinkle - free and easier *PRO* to keep * clean + 7 ever + 8 lighter + 9 , + 10 softer + 11 , + 12 warmer + 13 , + 14 more + 15 wrinkle + 16 - + 17 free + 18 and + 19 easier + 20 *PRO* + 21 to + 22 keep + sense: keep-v.1 + prop: keep.02 + v * -> 22:0, keep + ARG0 * -> 20:0, *PRO* + ARG1 * -> 23:2, * clean + 23 * + 24 clean + 25 , + 26 and + 27 if + 28 their + coref: IDENT 70 28-28 their + 29 colors + 30 are + sense: be-v.1 + prop: be.01 + v * -> 30:0, are + ARG1 * -> 28:1, their colors + ARG2 * -> 31:2, bright , fresh and stain - resistant + 31 bright + 32 , + 33 fresh + 34 and + 35 stain + 36 - + 37 resistant + 38 , + 39 this + 40 is + sense: be-v.1 + prop: be.01 + v * -> 40:0, is + ARGM-ADV * -> 0:2, If clothes in Taiwan today are getting ever lighter , softer , warmer , more wrinkle - + free and easier *PRO* to keep * clean , and if their colors are bright , fresh and + stain - resistant + ARG1 * -> 39:1, this + ARGM-NEG * -> 41:0, not + ARG2 * -> 42:2, thanks to the magic wand wielded * by Cinderella 's fairy godmother + 41 not + 42 thanks + sense: thanks-n.3 + 43 to + 44 the + 45 magic + 46 wand + 47 wielded + sense: wield-v.1 + prop: wield.01 + v * -> 47:0, wielded + ARG1 * -> 48:0, * + ARG0 * -> 49:1, by Cinderella 's fairy godmother + LINK-PCR * -> 44:1, the magic wand + * -> 48:0, * + 48 * + 49 by + 50 Cinderella + name: PERSON 50-50 Cinderella + 51 's + 52 fairy + 53 godmother + 54 , + 55 but + 56 is + sense: be-v.2 + prop: be.01 + v * -> 56:0, is + ARGM-ADV * -> 0:2, If clothes in Taiwan today are getting ever lighter , softer , warmer , more wrinkle - + free and easier *PRO* to keep * clean , and if their colors are bright , fresh and + stain - resistant + ARG1 * -> 39:1, this + ARG2 * -> 57:2, the result of the unceasing efforts towards research , development and upgrading put * + in by the textile industry over the years + 57 the + 58 result + sense: result-n.1 + 59 of + 60 the + 61 unceasing + 62 efforts + sense: effort-n.1 + 63 towards + 64 research + sense: research-n.1 + 65 , + 66 development + 67 and + 68 upgrading + 69 put + sense: put-v.4 + prop: put.05 + v * -> 69:0, put + -> 71:1, in + ARG1 * -> 70:0, * + ARG0 * -> 72:1, by the textile industry + ARGM-TMP * -> 76:1, over the years + LINK-PCR * -> 60:2, the unceasing efforts towards research , development and upgrading + * -> 70:0, * + 70 * + 71 in + 72 by + 73 the + coref: IDENT 15 73-75 the textile industry + 74 textile + 75 industry + sense: industry-n.1 + 76 over + 77 the + 78 years + name: DATE 78-78 years + 79 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " Upgrading " has been a word on the lips of everyone in the textile industry in recent years. + +Treebanked sentence: +-------------------- + " Upgrading " has been a word on the lips of everyone in the textile industry in recent years . + +Tree: +----- + (TOP (S (NP-SBJ (`` ") + (NN Upgrading) + ('' ")) + (VP (VBZ has) + (VP (VBN been) + (NP-PRD (NP (DT a) + (NN word)) + (PP (IN on) + (NP (NP (DT the) + (NNS lips)) + (PP (IN of) + (NP (NP (NN everyone)) + (PP (IN in) + (NP (DT the) + (NN textile) + (NN industry)))))))) + (PP-TMP (IN in) + (NP (JJ recent) + (NNS years))))) + (. .))) + +Leaves: +------- + 0 " + coref: IDENT 94 0-2 " Upgrading " + 1 Upgrading + 2 " + 3 has + prop: have.01 + v * -> 3:0, has + 4 been + sense: be-v.1 + prop: be.01 + v * -> 4:0, been + ARG1 * -> 0:1, " Upgrading " + ARG2 * -> 5:2, a word on the lips of everyone in the textile industry + ARGM-TMP * -> 16:1, in recent years + 5 a + 6 word + sense: word-n.1 + 7 on + 8 the + 9 lips + 10 of + 11 everyone + 12 in + 13 the + coref: IDENT 15 13-15 the textile industry + 14 textile + 15 industry + 16 in + 17 recent + name: DATE 17-18 recent years + 18 years + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But the adverse environment in which the industry has had to operate has made the pace of that upgrading halting and + hesitant. + +Treebanked sentence: +-------------------- + But the adverse environment in which the industry has had *-9 to operate *T*-1 has made the pace of that upgrading + halting and hesitant . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (NP (DT the) + (JJ adverse) + (NN environment)) + (SBAR (WHPP-1 (IN in) + (WHNP (WDT which))) + (S (NP-SBJ-9 (DT the) + (NN industry)) + (VP (VBZ has) + (VP (VBN had) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB operate) + (PP (-NONE- *T*-1)))))))))) + (VP (VBZ has) + (VP (VBN made) + (S (NP-SBJ (NP (DT the) + (NN pace)) + (PP (IN of) + (NP (DT that) + (NN upgrading)))) + (ADJP-PRD (JJ halting) + (CC and) + (JJ hesitant))))) + (. .))) + +Leaves: +------- + 0 But + 1 the + 2 adverse + 3 environment + sense: environment-n.1 + 4 in + 5 which + 6 the + coref: IDENT 15 6-7 the industry + 7 industry + sense: industry-n.1 + 8 has + prop: have.01 + v * -> 8:0, has + 9 had + sense: have-v.12 + prop: have.02 + v * -> 9:0, had + 10 *-9 + 11 to + 12 operate + sense: operate-v.1 + prop: operate.01 + v * -> 12:0, operate + ARG0 * -> 10:0, *-9 -> 6:1, the industry + ARGM-LOC * -> 13:0, *T*-1 -> 4:1, in which + 13 *T*-1 + 14 has + prop: have.01 + v * -> 14:0, has + 15 made + sense: make-v.3 + prop: make.02 + v * -> 15:0, made + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:2, the adverse environment in which the industry has had *-9 to operate *T*-1 + ARG1 * -> 16:3, the pace of that upgrading halting and hesitant + 16 the + 17 pace + sense: pace-n.1 + 18 of + 19 that + coref: IDENT 94 19-20 that upgrading + 20 upgrading + 21 halting + 22 and + 23 hesitant + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " In the early 1980s, making ready-to-wear garments for export was pretty much a sure-fire money-spinner. + +Treebanked sentence: +-------------------- + " In the early 1980s , *PRO* making ready - *PRO* to - wear garments for export was pretty much a sure - fire money - + spinner . + +Tree: +----- + (TOP (S (`` ") + (PP-TMP (IN In) + (NP (DT the) + (JJ early) + (NNS 1980s))) + (, ,) + (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG making) + (NP (ADJP (JJ ready) + (HYPH -) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (HYPH -) + (VP (VB wear))))) + (NNS garments)) + (PP (IN for) + (NP (NN export))))) + (VP (VBD was) + (ADVP (RB pretty) + (RB much)) + (NP-PRD (DT a) + (ADJP (RB sure) + (HYPH -) + (VB fire)) + (NN money) + (HYPH -) + (NN spinner))) + (. .))) + +Leaves: +------- + 0 " + 1 In + 2 the + name: DATE 2-4 the early 1980s + 3 early + 4 1980s + 5 , + 6 *PRO* + 7 making + prop: make.01 + v * -> 7:0, making + ARG0 * -> 6:0, *PRO* + ARG1 * -> 8:2, ready - *PRO* to - wear garments + ARGM-PRP * -> 15:1, for export + 8 ready + 9 - + 10 *PRO* + 11 to + 12 - + 13 wear + prop: wear.01 + v * -> 13:0, wear + ARG0 * -> 10:0, *PRO* + 14 garments + 15 for + 16 export + sense: export-n.2 + 17 was + sense: be-v.1 + prop: be.01 + v * -> 17:0, was + ARGM-TMP * -> 1:1, In the early 1980s + ARG1 * -> 6:2, *PRO* making ready - *PRO* to - wear garments for export + ARGM-ADV * -> 18:1, pretty much + ARG2 * -> 20:1, a sure - fire money - spinner + 18 pretty + 19 much + 20 a + 21 sure + 22 - + 23 fire + prop: fire.01 + v * -> 23:0, fire + ARGM-MNR * -> 21:0, sure + ARG1 * -> 24:0, money + -> 26:0, spinner + 24 money + sense: money-n.2 + 25 - + 26 spinner + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Everything sold like hot cakes, just like electronics today, " says Yao Hsing-chuan. + +Treebanked sentence: +-------------------- + Everything sold like hot cakes , just like electronics today , " says *T*-1 Yao Hsing - chuan . + +Tree: +----- + (TOP (SINV (S-TPC-1 (NP-SBJ (NN Everything)) + (VP (VBD sold) + (PP (IN like) + (NP (JJ hot) + (NNS cakes))) + (, ,) + (PP (ADVP (RB just)) + (IN like) + (NP (NP (NN electronics)) + (NP-TMP (NN today)))))) + (, ,) + ('' ") + (VP (VBZ says) + (S (-NONE- *T*-1))) + (NP-SBJ (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan)) + (. .))) + +Leaves: +------- + 0 Everything + 1 sold + sense: sell-v.1 + prop: sell.01 + v * -> 1:0, sold + ARG1 * -> 0:1, Everything + ARGM-MNR * -> 2:1, like hot cakes + ARGM-ADV * -> 6:2, just like electronics today + 2 like + 3 hot + 4 cakes + sense: cake-n.3 + 5 , + 6 just + 7 like + 8 electronics + 9 today + sense: today-n.2 + coref: IDENT 73 9-9 today + 10 , + 11 " + 12 says + sense: say-v.1 + prop: say.01 + v * -> 12:0, says + ARG1 * -> 13:0, *T*-1 -> 0:2, Everything sold like hot cakes , just like electronics today + ARG0 * -> 14:1, Yao Hsing - chuan + 13 *T*-1 + 14 Yao + coref: IDENT 69 14-17 Yao Hsing - chuan + name: PERSON 14-17 Yao Hsing - chuan + 15 Hsing + 16 - + 17 chuan + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But around 1987, under strong US pressure, the NT dollar appreciated, and exporters lost their competitive price + advantage. + +Treebanked sentence: +-------------------- + But around 1987 , under strong US pressure , the NT dollar appreciated , and exporters lost their competitive price + advantage . + +Tree: +----- + (TOP (S (S (CC But) + (PP-TMP (IN around) + (NP (CD 1987))) + (, ,) + (PP (IN under) + (NP (JJ strong) + (NNP US) + (NN pressure))) + (, ,) + (NP-SBJ (DT the) + (NNP NT) + (NN dollar)) + (VP (VBD appreciated))) + (, ,) + (CC and) + (S (NP-SBJ (NNS exporters)) + (VP (VBD lost) + (NP (PRP$ their) + (JJ competitive) + (NN price) + (NN advantage)))) + (. .))) + +Leaves: +------- + 0 But + 1 around + 2 1987 + name: DATE 2-2 1987 + 3 , + 4 under + 5 strong + 6 US + name: GPE 6-6 US + 7 pressure + 8 , + 9 the + name: DATE 9-11 the NT dollar + 10 NT + 11 dollar + 12 appreciated + sense: appreciate-v.3 + prop: appreciate.01 + v * -> 12:0, appreciated + ARGM-DIS * -> 0:0, But + ARGM-TMP * -> 1:1, around 1987 + ARGM-ADV * -> 4:1, under strong US pressure + ARG1 * -> 9:1, the NT dollar + 13 , + 14 and + 15 exporters + coref: IDENT 125 15-15 exporters + 16 lost + sense: lose-v.2 + prop: lose.02 + v * -> 16:0, lost + ARG0 * -> 15:1, exporters + ARG1 * -> 17:1, their competitive price advantage + 17 their + coref: IDENT 125 17-17 their + 18 competitive + 19 price + 20 advantage + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Next, there was a series of rises in land and labor costs. + +Treebanked sentence: +-------------------- + Next , there was a series of rises in land and labor costs . + +Tree: +----- + (TOP (S (ADVP (RB Next)) + (, ,) + (NP-SBJ (EX there)) + (VP (VBD was) + (NP-PRD (NP (DT a) + (NN series)) + (PP (IN of) + (NP (NP (NNS rises)) + (PP (IN in) + (NP (NML (NN land) + (CC and) + (NN labor)) + (NNS costs))))))) + (. .))) + +Leaves: +------- + 0 Next + 1 , + 2 there + 3 was + sense: be-v.3 + prop: be.02 + v * -> 3:0, was + ARGM-ADV * -> 0:1, Next + ARG1 * -> 4:2, a series of rises in land and labor costs + 4 a + 5 series + sense: series-n.1 + 6 of + 7 rises + sense: rise-n.1 + prop: rise.01 + n * -> 7:0, rises + ARG1 * -> 8:1, in land and labor costs + 8 in + 9 land + sense: land-n.1 + 10 and + 11 labor + sense: labor-n.4 + 12 costs + sense: cost-n.1 + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Garment making is labor-intensive, and the combination of internal and external pressures led to wholesale factory + closures. + +Treebanked sentence: +-------------------- + Garment making is labor - intensive , and the combination of internal and external pressures led to wholesale factory + closures . + +Tree: +----- + (TOP (S (S (NP-SBJ (NN Garment) + (NN making)) + (VP (VBZ is) + (ADJP-PRD (NN labor) + (HYPH -) + (JJ intensive)))) + (, ,) + (CC and) + (S (NP-SBJ (NP (DT the) + (NN combination)) + (PP (IN of) + (NP (ADJP (JJ internal) + (CC and) + (JJ external)) + (NNS pressures)))) + (VP (VBD led) + (PP-CLR (IN to) + (NP (JJ wholesale) + (NN factory) + (NNS closures))))) + (. .))) + +Leaves: +------- + 0 Garment + 1 making + sense: making-n.1 + prop: making.01 + n * -> 1:0, making + ARG1 * -> 0:0, Garment + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 0:1, Garment making + ARG2 * -> 3:1, labor - intensive + 3 labor + sense: labor-n.1 + 4 - + 5 intensive + 6 , + 7 and + 8 the + 9 combination + sense: combination-n.1 + 10 of + 11 internal + 12 and + 13 external + 14 pressures + sense: pressure-n.1 + 15 led + sense: lead-v.1 + prop: lead.03 + v * -> 15:0, led + ARG0 * -> 8:2, the combination of internal and external pressures + ARG2 * -> 16:1, to wholesale factory closures + 16 to + 17 wholesale + 18 factory + 19 closures + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Many firms moved production to mainland China or Southeast Asia, and Taiwan's remaining domestic textile industry was + dramatically reshuffled. + +Treebanked sentence: +-------------------- + Many firms moved production to mainland China or Southeast Asia , and Taiwan 's remaining domestic textile industry was + dramatically reshuffled *-9 . + +Tree: +----- + (TOP (S (S (NP-SBJ (JJ Many) + (NNS firms)) + (VP (VBD moved) + (NP (NN production)) + (PP-DIR (IN to) + (NP (NP (NN mainland) + (NNP China)) + (CC or) + (NP (NNP Southeast) + (NNP Asia)))))) + (, ,) + (CC and) + (S (NP-SBJ-9 (NP (NNP Taiwan) + (POS 's)) + (VBG remaining) + (JJ domestic) + (NN textile) + (NN industry)) + (VP (VBD was) + (ADVP (RB dramatically)) + (VP (VBN reshuffled) + (NP (-NONE- *-9))))) + (. .))) + +Leaves: +------- + 0 Many + 1 firms + 2 moved + sense: move-v.4 + prop: move.01 + v * -> 2:0, moved + ARG0 * -> 0:1, Many firms + ARG1 * -> 3:1, production + ARG2 * -> 4:1, to mainland China or Southeast Asia + 3 production + sense: production-n.6 + prop: production.01 + n * -> 3:0, production + 4 to + 5 mainland + coref: IDENT 141 5-6 mainland China + 6 China + name: GPE 6-6 China + 7 or + 8 Southeast + coref: IDENT 142 8-9 Southeast Asia + name: LOC 8-9 Southeast Asia + 9 Asia + 10 , + 11 and + 12 Taiwan + coref: IDENT 46 12-13 Taiwan 's + name: GPE 12-12 Taiwan + 13 's + 14 remaining + prop: remain.01 + v * -> 14:0, remaining + ARG1 * -> 15:0, domestic + -> 16:0, textile + -> 17:0, industry + 15 domestic + 16 textile + 17 industry + 18 was + prop: be.03 + v * -> 18:0, was + 19 dramatically + 20 reshuffled + prop: reshuffle.01 + v * -> 20:0, reshuffled + ARGM-ADV * -> 19:1, dramatically + ARG1 * -> 21:0, *-9 -> 12:2, Taiwan 's remaining domestic textile industry + 21 *-9 + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With the departure of the ready-to-wear industry, Taiwan lost its " garment kingdom " status. + +Treebanked sentence: +-------------------- + With the departure of the ready - *PRO* to - wear industry , Taiwan lost its " garment kingdom " status . + +Tree: +----- + (TOP (S (PP (IN With) + (NP (NP (DT the) + (NN departure)) + (PP (IN of) + (NP (DT the) + (ADJP (JJ ready) + (HYPH -) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (HYPH -) + (VP (VB wear))))) + (NN industry))))) + (, ,) + (NP-SBJ (NNP Taiwan)) + (VP (VBD lost) + (NP (PRP$ its) + (NML (`` ") + (NN garment) + (NN kingdom) + ('' ")) + (NN status))) + (. .))) + +Leaves: +------- + 0 With + 1 the + 2 departure + sense: departure-n.1 + prop: departure.01 + n * -> 2:0, departure + ARG0 * -> 3:1, of the ready - *PRO* to - wear industry + 3 of + 4 the + 5 ready + 6 - + 7 *PRO* + 8 to + 9 - + 10 wear + prop: wear.01 + v * -> 10:0, wear + ARG0 * -> 7:0, *PRO* + 11 industry + sense: industry-n.1 + 12 , + 13 Taiwan + coref: IDENT 46 13-13 Taiwan + name: GPE 13-13 Taiwan + 14 lost + sense: lose-v.2 + prop: lose.02 + v * -> 14:0, lost + ARGM-ADV * -> 0:1, With the departure of the ready - *PRO* to - wear industry + ARG0 * -> 13:1, Taiwan + ARG1 * -> 15:1, its " garment kingdom " status + 15 its + coref: IDENT 46 15-15 its + 16 " + 17 garment + 18 kingdom + 19 " + 20 status + sense: status-n.1 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But looking from another perspective, the Taiwanese manufacturers who spread all over Southeast Asia, mainland China and + Latin America were still very much a force to be reckoned with, and in their new locations they continued to source raw + materials and semi-finished goods from Taiwan. + +Treebanked sentence: +-------------------- + But *PRO* looking from another perspective , the Taiwanese manufacturers who *T*-9 spread all over Southeast Asia , + mainland China and Latin America were still very much a force 0 *PRO*-1 to be reckoned with *-1 , and in their new + locations they continued *-2 to source raw materials and semi-finished goods from Taiwan . + +Tree: +----- + (TOP (S (S (CC But) + (S-ADV (NP-SBJ (-NONE- *PRO*)) + (VP (VBG looking) + (PP (IN from) + (NP (DT another) + (NN perspective))))) + (, ,) + (NP-SBJ (NP (DT the) + (JJ Taiwanese) + (NNS manufacturers)) + (SBAR (WHNP-9 (WP who)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBD spread) + (PP (RB all) + (IN over) + (NP (NP (NNP Southeast) + (NNP Asia)) + (, ,) + (NP (NN mainland) + (NNP China)) + (CC and) + (NP (NNP Latin) + (NNP America)))))))) + (VP (VBD were) + (ADVP (RB still)) + (ADVP (RB very) + (JJ much)) + (NP-PRD (NP (DT a) + (NN force)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB be) + (VP (VBN reckoned) + (PP-CLR (IN with) + (NP (-NONE- *-1))))))))))) + (, ,) + (CC and) + (S (PP-TMP (IN in) + (NP (PRP$ their) + (JJ new) + (NNS locations))) + (NP-SBJ-2 (PRP they)) + (VP (VBD continued) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VB source) + (NP (NP (JJ raw) + (NNS materials)) + (CC and) + (NP (JJ semi-finished) + (NNS goods))) + (PP (IN from) + (NP (NNP Taiwan)))))))) + (. .))) + +Leaves: +------- + 0 But + 1 *PRO* + 2 looking + sense: look-v.1 + prop: look.01 + v * -> 2:0, looking + ARG0 * -> 1:0, *PRO* + ARGM-MNR * -> 3:1, from another perspective + 3 from + 4 another + 5 perspective + sense: perspective-n.1 + 6 , + 7 the + coref: IDENT 154 7-22 the Taiwanese manufacturers who *T*-9 spread all over Southeast Asia , + mainland China and Latin America + 8 Taiwanese + name: NORP 8-8 Taiwanese + 9 manufacturers + sense: manufacturer-n.1 + 10 who + 11 *T*-9 + 12 spread + sense: spread-v.2 + prop: spread.02 + v * -> 12:0, spread + ARG1 * -> 11:0, *T*-9 -> 10:1, who + ARGM-LOC * -> 13:1, all over Southeast Asia , mainland China and Latin America + LINK-SLC * -> 7:1, the Taiwanese manufacturers + * -> 11:0, *T*-9 -> 10:1, who + 13 all + 14 over + 15 Southeast + coref: IDENT 142 15-16 Southeast Asia + name: LOC 15-16 Southeast Asia + 16 Asia + 17 , + 18 mainland + coref: IDENT 141 18-19 mainland China + 19 China + name: GPE 19-19 China + 20 and + 21 Latin + name: LOC 21-22 Latin America + 22 America + 23 were + sense: be-v.1 + prop: be.01 + v * -> 23:0, were + ARGM-DIS * -> 0:0, But + ARGM-ADV * -> 1:2, *PRO* looking from another perspective + ARG1 * -> 7:2, the Taiwanese manufacturers who *T*-9 spread all over Southeast Asia , mainland China + and Latin America + ARGM-TMP * -> 24:1, still + ARGM-EXT * -> 25:1, very much + ARG2 * -> 27:2, a force 0 *PRO*-1 to be reckoned with *-1 + 24 still + 25 very + 26 much + 27 a + 28 force + sense: force-n.7 + 29 0 + 30 *PRO*-1 + 31 to + 32 be + prop: be.03 + v * -> 32:0, be + 33 reckoned + sense: reckon-v.5 + prop: reckon.02 + v * -> 33:0, reckoned + ARG1 * -> 34:1, with *-1 + 34 with + 35 *-1 + 36 , + 37 and + 38 in + 39 their + coref: IDENT 154 39-39 their + 40 new + 41 locations + sense: location-n.1 + 42 they + coref: IDENT 154 42-42 they + 43 continued + sense: continue-v.1 + prop: continue.01 + v * -> 43:0, continued + ARGM-LOC * -> 38:1, in their new locations + ARG0 * -> 44:0, *-2 -> 42:1, they + ARG1 * -> 44:2, *-2 to source raw materials and semi-finished goods from Taiwan + 44 *-2 + 45 to + 46 source + prop: source.01 + v * -> 46:0, source + ARG0 * -> 44:0, *-2 -> 42:1, they + ARG1 * -> 47:2, raw materials and semi-finished goods + ARG2 * -> 52:1, from Taiwan + 47 raw + 48 materials + sense: material-n.2 + 49 and + 50 semi-finished + 51 goods + 52 from + 53 Taiwan + coref: IDENT 46 53-53 Taiwan + name: GPE 53-53 Taiwan + 54 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With their support, the upstream portions of the industry-fiber making, yarn spinning, weaving, dyeing, finishing and + garment design-were able to stay in Taiwan and prosper. + +Treebanked sentence: +-------------------- + With their support , the upstream portions of the industry - fiber making , yarn spinning , weaving , dyeing , finishing + and garment design - were able *PRO*-1 to stay in Taiwan and prosper . + +Tree: +----- + (TOP (S (PP (IN With) + (NP (PRP$ their) + (NN support))) + (, ,) + (NP-SBJ-1 (NP (NP (DT the) + (JJ upstream) + (NNS portions)) + (PP (IN of) + (NP (DT the) + (NN industry)))) + (: -) + (NP (NP (NN fiber) + (NN making)) + (, ,) + (NP (NN yarn) + (NN spinning)) + (, ,) + (NP (NN weaving)) + (, ,) + (NP (NN dyeing)) + (, ,) + (NP (NN finishing)) + (CC and) + (NP (NN garment) + (NN design)))) + (, -) + (VP (VBD were) + (ADJP-PRD (JJ able) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VP (VB stay) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (CC and) + (VP (VB prosper))))))) + (. .))) + +Leaves: +------- + 0 With + 1 their + coref: IDENT 154 1-1 their + 2 support + sense: support-n.7 + prop: support.01 + n * -> 2:0, support + ARG0 * -> 1:0, their + 3 , + 4 the + coref: APPOS ATTRIB 174 4-9 the upstream portions of the industry + 5 upstream + 6 portions + sense: portion-n.1 + 7 of + 8 the + coref: IDENT 15 8-9 the industry + 9 industry + sense: industry-n.1 + 10 - + 11 fiber + coref: APPOS HEAD 174 11-24 fiber making , yarn spinning , weaving , dyeing , finishing and garment + design + 12 making + sense: making-n.1 + prop: making.01 + n * -> 12:0, making + ARG1 * -> 11:0, fiber + 13 , + 14 yarn + 15 spinning + 16 , + 17 weaving + 18 , + 19 dyeing + 20 , + 21 finishing + 22 and + 23 garment + 24 design + sense: design-n.1 + prop: design.01 + n * -> 24:0, design + ARG1 * -> 23:0, garment + 25 - + 26 were + sense: be-v.1 + prop: be.01 + v * -> 26:0, were + ARGM-MNR * -> 0:1, With their support + ARG1 * -> 28:0, *PRO*-1 -> 4:3, the upstream portions of the industry - fiber making , yarn spinning , + weaving , dyeing , finishing and garment design + ARG2 * -> 27:1, able *PRO*-1 to stay in Taiwan and prosper + 27 able + 28 *PRO*-1 + 29 to + 30 stay + sense: stay-v.1 + prop: stay.01 + v * -> 30:0, stay + ARG1 * -> 28:0, *PRO*-1 -> 4:3, the upstream portions of the industry - fiber making , yarn spinning , + weaving , dyeing , finishing and garment design + ARGM-LOC * -> 31:1, in Taiwan + 31 in + 32 Taiwan + coref: IDENT 46 32-32 Taiwan + name: GPE 32-32 Taiwan + 33 and + 34 prosper + prop: prosper.01 + v * -> 34:0, prosper + ARG0 * -> 28:0, *PRO*-1 -> 4:3, the upstream portions of the industry - fiber making , yarn spinning , + weaving , dyeing , finishing and garment design + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In September 1998, while the industry was still reeling from the effects of the Asian financial crisis, construction + began of the long-planned specialist industrial parks in Yunlin and Changhua Counties. + +Treebanked sentence: +-------------------- + In September 1998 , while the industry was still reeling from the effects of the Asian financial crisis , construction + *ICH*-1 began of the long - planned specialist industrial parks in Yunlin and Changhua Counties . + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (NNP September) + (CD 1998))) + (, ,) + (SBAR-TMP (IN while) + (S (NP-SBJ (DT the) + (NN industry)) + (VP (VBD was) + (ADVP-TMP (RB still)) + (VP (VBG reeling) + (PP (IN from) + (NP (NP (DT the) + (NNS effects)) + (PP (IN of) + (NP (DT the) + (JJ Asian) + (JJ financial) + (NN crisis))))))))) + (, ,) + (NP-SBJ (NP (NN construction)) + (PP (-NONE- *ICH*-1))) + (VP (VBD began) + (PP-1 (IN of) + (NP (NP (DT the) + (ADJP (RB long) + (HYPH -) + (VBN planned)) + (JJ specialist) + (JJ industrial) + (NNS parks)) + (PP-LOC (IN in) + (NP (NML (NNP Yunlin) + (CC and) + (NNP Changhua)) + (NNPS Counties)))))) + (. .))) + +Leaves: +------- + 0 In + 1 September + name: DATE 1-2 September 1998 + 2 1998 + 3 , + 4 while + 5 the + coref: IDENT 15 5-6 the industry + 6 industry + sense: industry-n.1 + 7 was + prop: be.03 + v * -> 7:0, was + 8 still + 9 reeling + sense: reel-v.1 + prop: reel.01 + v * -> 9:0, reeling + ARG1 * -> 5:1, the industry + ARGM-TMP * -> 8:1, still + ARG2 * -> 10:1, from the effects of the Asian financial crisis + 10 from + 11 the + 12 effects + sense: effect-n.1 + 13 of + 14 the + coref: IDENT 190 14-17 the Asian financial crisis + 15 Asian + name: NORP 15-15 Asian + 16 financial + 17 crisis + 18 , + 19 construction + sense: construction-n.1 + 20 *ICH*-1 + 21 began + sense: begin-v.2 + prop: begin.01 + v * -> 21:0, began + ARGM-TMP * -> 0:1, In September 1998 + ARGM-TMP * -> 4:1, while the industry was still reeling from the effects of the Asian financial crisis + ARG1 * -> 19:2, construction *ICH*-1 + 22 of + 23 the + coref: IDENT 193 23-34 the long - planned specialist industrial parks in Yunlin and Changhua + Counties + 24 long + 25 - + 26 planned + prop: plan.01 + v * -> 26:0, planned + ARGM-TMP * -> 24:0, long + ARG1 * -> 27:0, specialist + -> 28:0, industrial + -> 29:0, parks + 27 specialist + 28 industrial + 29 parks + sense: park-n.6 + 30 in + 31 Yunlin + name: GPE 31-31 Yunlin + 32 and + 33 Changhua + name: GPE 33-33 Changhua + 34 Counties + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These were the peak of the large investments made in Taiwan's textile industry over recent years. + +Treebanked sentence: +-------------------- + These were the peak of the large investments made * in Taiwan 's textile industry over recent years . + +Tree: +----- + (TOP (S (NP-SBJ (DT These)) + (VP (VBD were) + (NP-PRD (NP (DT the) + (NN peak)) + (PP (IN of) + (NP (NP (DT the) + (JJ large) + (NNS investments)) + (VP (VBN made) + (NP (-NONE- *)) + (PP (IN in) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry))) + (PP-TMP (IN over) + (NP (JJ recent) + (NNS years)))))))) + (. .))) + +Leaves: +------- + 0 These + coref: IDENT 193 0-0 These + 1 were + sense: be-v.1 + prop: be.01 + v * -> 1:0, were + ARG1 * -> 0:1, These + ARG2 * -> 2:2, the peak of the large investments made * in Taiwan 's textile industry over recent + years + 2 the + 3 peak + sense: peak-n.2 + 4 of + 5 the + 6 large + 7 investments + sense: investment-n.3 + prop: investment.01 + n * -> 7:0, investments + ARGM-EXT * -> 6:0, large + ARGM-LVB * -> 8:0, made + ARGM-GOL * -> 10:1, in Taiwan 's textile industry + ARGM-TMP * -> 15:1, over recent years + 8 made + 9 * + 10 in + 11 Taiwan + coref: IDENT 46 11-12 Taiwan 's + coref: IDENT 15 11-14 Taiwan 's textile industry + name: GPE 11-11 Taiwan + 12 's + 13 textile + 14 industry + 15 over + 16 recent + 17 years + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But overcapacity and shrinking demand caused by the crisis had hit the industry hard. + +Treebanked sentence: +-------------------- + But overcapacity and shrinking demand caused * by the crisis had hit the industry hard . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (NP (NP (NN overcapacity)) + (CC and) + (NP (VBG shrinking) + (NN demand))) + (VP (VBN caused) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (DT the) + (NN crisis))))) + (VP (VBD had) + (VP (VBN hit) + (NP (DT the) + (NN industry)) + (ADVP (RB hard)))) + (. .))) + +Leaves: +------- + 0 But + 1 overcapacity + 2 and + 3 shrinking + prop: shrink.01 + v * -> 3:0, shrinking + ARG1 * -> 4:0, demand + 4 demand + sense: demand-n.3 + 5 caused + sense: cause-v.1 + prop: cause.01 + v * -> 5:0, caused + ARGM-DIS * -> 0:0, But + ARG1 * -> 6:0, * + ARG0 * -> 7:1, by the crisis + LINK-PCR * -> 1:2, overcapacity and shrinking demand + * -> 6:0, * + 6 * + 7 by + 8 the + coref: IDENT 190 8-9 the crisis + 9 crisis + 10 had + prop: have.01 + v * -> 10:0, had + 11 hit + sense: hit-v.2 + prop: hit.01 + v * -> 11:0, hit + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:3, overcapacity and shrinking demand caused * by the crisis + ARG1 * -> 12:1, the industry + ARGM-MNR * -> 14:1, hard + 12 the + coref: IDENT 15 12-13 the industry + 13 industry + sense: industry-n.1 + 14 hard + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + By mid-1999 things were looking up again, but then massive power failures in the wake of the 21 September earthquake + wiped out nearly NT$ 10 billion worth of textile orders. + +Treebanked sentence: +-------------------- + By mid-1999 things were looking up again , but then massive power failures in the wake of the 21 September earthquake + wiped out nearly NT$ 10 billion *U* worth of textile orders . + +Tree: +----- + (TOP (S (S (PP-TMP (IN By) + (NP (NN mid-1999))) + (NP-SBJ (NNS things)) + (VP (VBD were) + (VP (VBG looking) + (ADJP-PRD (JJ up)) + (ADVP (RB again))))) + (, ,) + (CC but) + (S (ADVP-TMP (RB then)) + (NP-SBJ (NP (JJ massive) + (NN power) + (NNS failures)) + (PP (IN in) + (NP (NP (DT the) + (NN wake)) + (PP (IN of) + (NP (DT the) + (NML (CD 21) + (NNP September)) + (NN earthquake)))))) + (VP (VBD wiped) + (PRT (RP out)) + (NP (NP (NML (QP (RB nearly) + ($ NT$) + (CD 10) + (CD billion)) + (-NONE- *U*)) + (NN worth)) + (PP (IN of) + (NP (NN textile) + (NNS orders)))))) + (. .))) + +Leaves: +------- + 0 By + 1 mid-1999 + name: DATE 1-1 mid-1999 + 2 things + sense: thing-n.1 + 3 were + prop: be.03 + v * -> 3:0, were + 4 looking + sense: look-v.2 + prop: look.01 + v * -> 4:0, looking + ARGM-TMP * -> 0:1, By mid-1999 + ARG0 * -> 2:1, things + ARG1 * -> 5:1, up + ARGM-ADV * -> 6:1, again + 5 up + 6 again + 7 , + 8 but + 9 then + 10 massive + 11 power + sense: power-n.3 + 12 failures + sense: failure-n.1 + 13 in + 14 the + 15 wake + sense: wake-n.1 + 16 of + 17 the + name: EVENT 17-20 the 21 September earthquake + 18 21 + 19 September + 20 earthquake + sense: earthquake-n.1 + 21 wiped + sense: wipe-v.2 + prop: wipe.02 + v * -> 21:0, wiped + -> 22:1, out + ARGM-TMP * -> 9:1, then + ARG0 * -> 10:2, massive power failures in the wake of the 21 September earthquake + ARG1 * -> 23:4, nearly NT$ 10 billion *U* worth of textile orders + 22 out + 23 nearly + 24 NT$ + ! name: MONEY 24-26 $ 10 billion + 25 10 + 26 billion + 27 *U* + 28 worth + 29 of + 30 textile + 31 orders + sense: order-n.6 + prop: order.02 + n * -> 31:0, orders + ARG1 * -> 30:0, textile + 32 . + + +======================================================================================================================== +Coreference chains for section 1: +--------------------------------- + + Chain 0 (IDENT) + 15.0-7 Ceramic fibers , stainless steel , shrimp shells + 16.3-3 these + + Chain 15 (IDENT) + 16.15-17 the textile industry + 19.17-21 Taiwan 's textile industry 's + 19.27-27 itself + 21.73-75 the textile industry + 22.13-15 the textile industry + 23.6-7 the industry + 32.8-9 the industry + 33.5-6 the industry + 34.11-14 Taiwan 's textile industry + 35.12-13 the industry + + Chain 25 (IDENT) + 17.19-20 textile products + 17.38-38 their + + Chain 46 (IDENT) + 19.17-18 Taiwan 's + 20.13-13 Taiwan + 21.3-3 Taiwan + 29.12-13 Taiwan 's + 30.13-13 Taiwan + 30.15-15 its + 31.53-53 Taiwan + 32.32-32 Taiwan + 34.11-12 Taiwan 's + + Chain 52 (IDENT) + 20.5-13 the polyester uniforms worn * by schoolchildren in Taiwan + 20.24-24 them + + Chain 63 (IDENT) + 20.39-39 stockings + 20.49-49 them + + Chain 69 (IDENT) + 20.66-71 CTI president Yao Hsing - chuan + 25.14-17 Yao Hsing - chuan + + Chain 70 (IDENT) + 21.1-4 clothes in Taiwan today + 21.28-28 their + + Chain 73 (IDENT) + 21.4-4 today + 25.9-9 today + + Chain 94 (IDENT) + 22.0-2 " Upgrading " + 23.19-20 that upgrading + + Chain 125 (IDENT) + 26.15-15 exporters + 26.17-17 their + + Chain 141 (IDENT) + 29.5-6 mainland China + 31.18-19 mainland China + + Chain 142 (IDENT) + 29.8-9 Southeast Asia + 31.15-16 Southeast Asia + + Chain 154 (IDENT) + 31.7-22 the Taiwanese manufacturers who *T*-9 spread all over Southeast Asia , mainland China and + Latin America + 31.39-39 their + 31.42-42 they + 32.1-1 their + + Chain 174 (APPOS) + ATTRIB 32.4-9 the upstream portions of the industry + HEAD 32.11-24 fiber making , yarn spinning , weaving , dyeing , finishing and garment design + + Chain 190 (IDENT) + 33.14-17 the Asian financial crisis + 35.8-9 the crisis + + Chain 193 (IDENT) + 33.23-34 the long - planned specialist industrial parks in Yunlin and Changhua Counties + 34.0-0 These + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Taiwan's biggest currency earner + +Treebanked sentence: +-------------------- + Taiwan 's biggest currency earner + +Tree: +----- + (TOP (NP (NP (NNP Taiwan) + (POS 's)) + (JJS biggest) + (NN currency) + (NN earner))) + +Leaves: +------- + 0 Taiwan + coref: IDENT 1 0-1 Taiwan 's + name: GPE 0-0 Taiwan + 1 's + 2 biggest + 3 currency + 4 earner + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Nevertheless, thanks to its solid foundations built up over 40 years, the textile industry is still a pillar of Taiwan's + economy. + +Treebanked sentence: +-------------------- + Nevertheless , thanks to its solid foundations built * up over 40 years , the textile industry is still a pillar of + Taiwan 's economy . + +Tree: +----- + (TOP (S (ADVP (RB Nevertheless)) + (, ,) + (NP-ADV (NP (NNS thanks)) + (PP (IN to) + (NP (NP (PRP$ its) + (JJ solid) + (NNS foundations)) + (VP (VBN built) + (NP (-NONE- *)) + (PRT (RP up)) + (PP-TMP (IN over) + (NP (CD 40) + (NNS years))))))) + (, ,) + (NP-SBJ (DT the) + (NN textile) + (NN industry)) + (VP (VBZ is) + (ADVP-TMP (RB still)) + (NP-PRD (NP (DT a) + (NN pillar)) + (PP (IN of) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN economy))))) + (. .))) + +Leaves: +------- + 0 Nevertheless + 1 , + 2 thanks + sense: thanks-n.3 + 3 to + 4 its + coref: IDENT 8 4-4 its + 5 solid + 6 foundations + sense: foundation-n.1 + 7 built + sense: build-v.6 + prop: build.05 + v * -> 7:0, built + -> 9:1, up + ARG1 * -> 8:0, * + ARGM-TMP * -> 10:1, over 40 years + LINK-PCR * -> 4:1, its solid foundations + * -> 8:0, * + 8 * + 9 up + 10 over + 11 40 + name: DATE 11-12 40 years + 12 years + 13 , + 14 the + coref: IDENT 8 14-16 the textile industry + 15 textile + 16 industry + 17 is + sense: be-v.1 + prop: be.01 + v * -> 17:0, is + ARGM-DIS * -> 0:1, Nevertheless + ARGM-ADV * -> 2:2, thanks to its solid foundations built * up over 40 years + ARG1 * -> 14:1, the textile industry + ARGM-TMP * -> 18:1, still + ARG2 * -> 19:2, a pillar of Taiwan 's economy + 18 still + 19 a + 20 pillar + sense: pillar-n.3 + 21 of + 22 Taiwan + coref: IDENT 1 22-23 Taiwan 's + name: GPE 22-22 Taiwan + 23 's + 24 economy + sense: economy-n.2 + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In 1999, Taiwan's textile exports are expected to be worth US$ 14.5 billion or 12 % of the island's total exports, + behind only electronics-LRB-17.6 %-RRB-and IT/telecom products-LRB-12.3 %-RRB-. + +Treebanked sentence: +-------------------- + In 1999 , Taiwan 's textile exports are expected *-9 to be worth US$ 14.5 billion *U* or 12 % of the island 's total + exports , behind only electronics -LRB- 17.6 % -RRB- and IT / telecom products -LRB- 12.3 % -RRB- . + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (CD 1999))) + (, ,) + (NP-SBJ-9 (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NNS exports)) + (VP (VBP are) + (VP (VBN expected) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB be) + (ADJP-PRD (JJ worth) + (NP (NP (QP (NNP US$) + (CD 14.5) + (CD billion)) + (-NONE- *U*)) + (CC or) + (NP (NP (CD 12) + (NN %)) + (PP (IN of) + (NP (NP (DT the) + (NN island) + (POS 's)) + (JJ total) + (NNS exports)))))) + (, ,) + (PP (IN behind) + (NP (RB only) + (NML (NML (NN electronics) + (PRN (-LRB- -LRB-) + (NP (CD 17.6) + (NN %)) + (-RRB- -RRB-))) + (CC and)) + (NML (NN IT) + (HYPH /) + (NN telecom)) + (NNS products) + (PRN (-LRB- -LRB-) + (NP (CD 12.3) + (NN %)) + (-RRB- -RRB-))))))))) + (. .))) + +Leaves: +------- + 0 In + 1 1999 + name: DATE 1-1 1999 + 2 , + 3 Taiwan + coref: IDENT 1 3-4 Taiwan 's + name: GPE 3-3 Taiwan + 4 's + 5 textile + 6 exports + sense: export-n.1 + 7 are + prop: be.03 + v * -> 7:0, are + 8 expected + prop: expect.01 + v * -> 8:0, expected + ARGM-TMP * -> 0:1, In 1999 + ARG1 * -> 3:2, Taiwan 's textile exports + -> 9:2, *-9 to be worth US$ 14.5 billion *U* or 12 % of the island 's total exports , behind + only electronics -LRB- 17.6 % -RRB- and IT / telecom products -LRB- 12.3 % -RRB- + 9 *-9 + 10 to + 11 be + sense: be-v.1 + prop: be.01 + v * -> 11:0, be + ARG1 * -> 9:0, *-9 -> 3:2, Taiwan 's textile exports + ARG2 * -> 12:1, worth US$ 14.5 billion *U* or 12 % of the island 's total exports + ARGM-ADV * -> 27:1, behind only electronics -LRB- 17.6 % -RRB- and IT / telecom products -LRB- 12.3 % + -RRB- + 12 worth + 13 US$ + name: MONEY 13-15 US$ 14.5 billion + 14 14.5 + 15 billion + 16 *U* + 17 or + 18 12 + name: PERCENT 18-19 12 % + 19 % + 20 of + 21 the + coref: IDENT 1 21-23 the island 's + 22 island + 23 's + 24 total + 25 exports + sense: export-n.1 + 26 , + 27 behind + 28 only + 29 electronics + 30 -LRB- + 31 17.6 + name: PERCENT 31-32 17.6 % + 32 % + 33 -RRB- + 34 and + 35 IT + 36 / + 37 telecom + 38 products + sense: product-n.1 + 39 -LRB- + 40 12.3 + name: PERCENT 40-41 12.3 % + 41 % + 42 -RRB- + 43 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Moreover, after deducting the cost of imported raw materials etc., the textile industry is Taiwan's biggest foreign + currency earner, bringing in over US$ 10 billion each year. + +Treebanked sentence: +-------------------- + Moreover , after *PRO* deducting the cost of imported raw materials etc. , the textile industry is Taiwan 's biggest + foreign currency earner , *PRO*-1 bringing in over US$ 10 billion each year . + +Tree: +----- + (TOP (S (ADVP (RB Moreover)) + (, ,) + (PP-TMP (IN after) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG deducting) + (NP (NP (NP (DT the) + (NN cost)) + (PP (IN of) + (NP (VBN imported) + (JJ raw) + (NNS materials)))) + (ADVP-ETC (FW etc.)))))) + (, ,) + (NP-SBJ-1 (DT the) + (NN textile) + (NN industry)) + (VP (VBZ is) + (NP-PRD (NP (NNP Taiwan) + (POS 's)) + (JJS biggest) + (JJ foreign) + (NN currency) + (NN earner)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG bringing) + (PP-CLR (IN in) + (NP (NP (PP (IN over) + (NP (QP (NNP US$) + (CD 10) + (CD billion))))) + (NP-TMP (DT each) + (NN year))))))) + (. .))) + +Leaves: +------- + 0 Moreover + 1 , + 2 after + 3 *PRO* + 4 deducting + sense: deduct-v.1 + prop: deduct.01 + v * -> 4:0, deducting + ARG0 * -> 3:0, *PRO* + ARG1 * -> 5:3, the cost of imported raw materials etc. + LINK-PCR * -> 3:0, *PRO* + * -> 13:1, the textile industry + 5 the + 6 cost + sense: cost-n.1 + 7 of + 8 imported + prop: import.01 + v * -> 8:0, imported + ARG1 * -> 9:0, raw + -> 10:0, materials + 9 raw + 10 materials + sense: material-n.2 + 11 etc. + 12 , + 13 the + coref: IDENT 8 13-15 the textile industry + 14 textile + 15 industry + 16 is + sense: be-v.2 + prop: be.01 + v * -> 16:0, is + ARGM-DIS * -> 0:1, Moreover + ARGM-TMP * -> 2:1, after *PRO* deducting the cost of imported raw materials etc. + ARG1 * -> 24:0, *PRO*-1 -> 13:1, the textile industry + ARG2 * -> 17:2, Taiwan 's biggest foreign currency earner + ARGM-ADV * -> 24:2, *PRO*-1 bringing in over US$ 10 billion each year + 17 Taiwan + coref: IDENT 1 17-18 Taiwan 's + name: GPE 17-17 Taiwan + 18 's + 19 biggest + 20 foreign + 21 currency + sense: currency-n.5 + 22 earner + 23 , + 24 *PRO*-1 + 25 bringing + sense: bring-v.1 + prop: bring.01 + v * -> 25:0, bringing + ARG0 * -> 24:0, *PRO*-1 -> 13:1, the textile industry + ARG1 * -> 26:1, in over US$ 10 billion each year + 26 in + 27 over + 28 US$ + name: MONEY 28-30 US$ 10 billion + 29 10 + 30 billion + 31 each + 32 year + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For instance, polyester is the most widely used man-made fiber, and little Taiwan produces no less than 17 % of the + total worldwide supply, making it the largest supplier. + +Treebanked sentence: +-------------------- + For instance , polyester is the most widely used man - made fiber , and little Taiwan produces no less than 17 % of the + total worldwide supply , *PRO*-1 making it the largest supplier . + +Tree: +----- + (TOP (S (S (PP (IN For) + (NP (NN instance))) + (, ,) + (NP-SBJ (NN polyester)) + (VP (VBZ is) + (NP-PRD (DT the) + (ADJP (RBS most) + (RB widely) + (VBN used)) + (ADJP (NN man) + (HYPH -) + (VBN made)) + (NN fiber)))) + (, ,) + (CC and) + (S (NP-SBJ-1 (JJ little) + (NNP Taiwan)) + (VP (VBZ produces) + (NP (NP (QP (DT no) + (JJR less) + (IN than) + (CD 17)) + (NN %)) + (PP (IN of) + (NP (DT the) + (JJ total) + (JJ worldwide) + (NN supply)))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG making) + (S (NP-SBJ (PRP it)) + (NP-PRD (DT the) + (JJS largest) + (NN supplier))))))) + (. .))) + +Leaves: +------- + 0 For + 1 instance + 2 , + 3 polyester + 4 is + sense: be-v.2 + prop: be.01 + v * -> 4:0, is + ARGM-DIS * -> 0:1, For instance + ARG1 * -> 3:1, polyester + ARG2 * -> 5:1, the most widely used man - made fiber + 5 the + 6 most + 7 widely + 8 used + prop: use.01 + v * -> 8:0, used + ARGM-EXT * -> 7:0, widely + ARG1 * -> 12:0, fiber + 9 man + sense: man-n.10 + 10 - + 11 made + prop: make.01 + v * -> 11:0, made + ARG0 * -> 9:0, man + ARG1 * -> 12:0, fiber + 12 fiber + 13 , + 14 and + 15 little + coref: IDENT 1 15-16 little Taiwan + 16 Taiwan + name: GPE 16-16 Taiwan + 17 produces + sense: produce-v.1 + prop: produce.01 + v * -> 17:0, produces + ARG0 * -> 29:0, *PRO*-1 -> 15:1, little Taiwan + ARG1 * -> 18:3, no less than 17 % of the total worldwide supply + ARGM-ADV * -> 29:2, *PRO*-1 making it the largest supplier + 18 no + 19 less + 20 than + 21 17 + ! name: PERCENT 21-22 17 % + 22 % + 23 of + 24 the + 25 total + 26 worldwide + 27 supply + sense: supply-n.2 + prop: supply.01 + n * -> 27:0, supply + ARGM-EXT * -> 25:0, total + ARGM-LOC * -> 26:0, worldwide + 28 , + 29 *PRO*-1 + 30 making + sense: make-v.3 + prop: make.02 + v * -> 30:0, making + ARG0 * -> 29:0, *PRO*-1 -> 15:1, little Taiwan + ARG1 * -> 31:2, it the largest supplier + 31 it + coref: IDENT 1 31-31 it + 32 the + 33 largest + 34 supplier + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The island's total production of man-made fibers ranks third globally, behind the USA and mainland China. + +Treebanked sentence: +-------------------- + The island 's total production of man - made fibers ranks third globally , behind the USA and mainland China . + +Tree: +----- + (TOP (S (NP-SBJ (NP (NP (DT The) + (NN island) + (POS 's)) + (JJ total) + (NN production)) + (PP (IN of) + (NP (ADJP (NN man) + (HYPH -) + (VBN made)) + (NNS fibers)))) + (VP (VBZ ranks) + (ADVP-CLR (RB third)) + (ADVP-LOC (RB globally)) + (, ,) + (PP (IN behind) + (NP (NP (DT the) + (NNP USA)) + (CC and) + (NP (NN mainland) + (NNP China))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 1 0-2 The island 's + 1 island + 2 's + 3 total + 4 production + sense: production-n.1 + 5 of + 6 man + sense: man-n.10 + 7 - + 8 made + prop: make.01 + v * -> 8:0, made + ARGM-MNR * -> 6:0, man + ARG1 * -> 9:0, fibers + 9 fibers + 10 ranks + sense: rank-v.1 + prop: rank.01 + v * -> 10:0, ranks + ARG1 * -> 0:3, The island 's total production of man - made fibers + ARG2 * -> 11:1, third + ARGM-LOC * -> 12:1, globally + ARG2 * -> 14:1, behind the USA and mainland China + 11 third + 12 globally + 13 , + 14 behind + 15 the + 16 USA + name: GPE 16-16 USA + 17 and + 18 mainland + coref: IDENT 55 18-19 mainland China + 19 China + name: GPE 19-19 China + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At present, the largest category among Taiwan's textile exports is finished cloth, which accounts for more than 60 % of + Taiwan's textile exports by value. + +Treebanked sentence: +-------------------- + At present , the largest category among Taiwan 's textile exports is finished cloth , which *T*-9 accounts for more than + 60 % of Taiwan 's textile exports by value . + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (NN present))) + (, ,) + (NP-SBJ (NP (DT the) + (JJS largest) + (NN category)) + (PP (IN among) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NNS exports)))) + (VP (VBZ is) + (NP-PRD (NP (JJ finished) + (NN cloth)) + (, ,) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ accounts) + (PP-CLR (IN for) + (NP (NP (QP (JJR more) + (IN than) + (CD 60)) + (NN %)) + (PP (IN of) + (NP (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NNS exports)) + (PP (IN by) + (NP (NN value)))))))))))) + (. .))) + +Leaves: +------- + 0 At + 1 present + sense: present-n.1 + 2 , + 3 the + 4 largest + 5 category + 6 among + 7 Taiwan + coref: IDENT 1 7-8 Taiwan 's + coref: IDENT 59 7-10 Taiwan 's textile exports + name: GPE 7-7 Taiwan + 8 's + 9 textile + 10 exports + sense: export-n.1 + 11 is + sense: be-v.2 + prop: be.01 + v * -> 11:0, is + ARGM-TMP * -> 0:1, At present + ARG1 * -> 3:2, the largest category among Taiwan 's textile exports + ARG2 * -> 12:2, finished cloth , which *T*-9 accounts for more than 60 % of Taiwan 's textile exports + by value + 12 finished + 13 cloth + 14 , + 15 which + 16 *T*-9 + 17 accounts + sense: account-v.2 + prop: account.01 + v * -> 17:0, accounts + ARG0 * -> 16:0, *T*-9 -> 15:1, which + ARG1 * -> 18:1, for more than 60 % of Taiwan 's textile exports by value + LINK-SLC * -> 12:1, finished cloth + * -> 16:0, *T*-9 -> 15:1, which + 18 for + 19 more + 20 than + 21 60 + ! name: PERCENT 21-22 60 % + 22 % + 23 of + 24 Taiwan + coref: IDENT 1 24-25 Taiwan 's + coref: IDENT 59 24-27 Taiwan 's textile exports + name: GPE 24-24 Taiwan + 25 's + 26 textile + 27 exports + sense: export-n.1 + 28 by + 29 value + sense: value-n.2 + 30 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " The textile industry has deep roots in Taiwan, and there are many processes to be gone through from the fiber to the + finished garment. + +Treebanked sentence: +-------------------- + " The textile industry has deep roots in Taiwan , and there are many processes 0 *T*-9 to be gone through *-9 from the + fiber to the finished garment . + +Tree: +----- + (TOP (S (`` ") + (S (NP-SBJ (DT The) + (NN textile) + (NN industry)) + (VP (VBZ has) + (NP (NP (JJ deep) + (NNS roots)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))))) + (, ,) + (CC and) + (S (NP-SBJ (EX there)) + (VP (VBP are) + (NP-PRD (NP (JJ many) + (NNS processes)) + (SBAR (WHNP-9 (-NONE- 0)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (TO to) + (VP (VB be) + (VP (VBN gone) + (PP (IN through) + (NP (-NONE- *-9))) + (PP (IN from) + (NP (DT the) + (NN fiber))) + (PP (IN to) + (NP (DT the) + (JJ finished) + (NN garment))))))))))) + (. .))) + +Leaves: +------- + 0 " + 1 The + coref: IDENT 8 1-3 The textile industry + 2 textile + 3 industry + 4 has + sense: have-v.2 + prop: have.03 + v * -> 4:0, has + ARG0 * -> 1:1, The textile industry + ARG1 * -> 5:2, deep roots in Taiwan + 5 deep + 6 roots + 7 in + 8 Taiwan + coref: IDENT 1 8-8 Taiwan + name: GPE 8-8 Taiwan + 9 , + 10 and + 11 there + 12 are + sense: be-v.3 + prop: be.02 + v * -> 12:0, are + ARG1 * -> 13:2, many processes 0 *T*-9 to be gone through *-9 from the fiber to the finished garment + 13 many + 14 processes + sense: process-n.1 + prop: process.01 + n * -> 14:0, processes + ARGM-ADJ * -> 13:0, many + ARGM-ADJ * -> 15:2, 0 *T*-9 to be gone through *-9 from the fiber to the finished garment + 15 0 + 16 *T*-9 + 17 to + 18 be + prop: be.03 + v * -> 18:0, be + 19 gone + prop: go.12 + v * -> 19:0, gone + ARG1 * -> 21:0, *-9 -> 15:0, 0 + ARG2 * -> 20:1, through *-9 + ARGM-DIR * -> 22:1, from the fiber + ARGM-DIR * -> 25:1, to the finished garment + LINK-SLC * -> 13:1, many processes + * -> 21:0, *-9 -> 15:0, 0 + 20 through + 21 *-9 + 22 from + 23 the + 24 fiber + 25 to + 26 the + 27 finished + 28 garment + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Thus there are many key technologies which can be developed, and the industry can sustain a large workforce. " + +Treebanked sentence: +-------------------- + Thus there are many key technologies which *T*-9 can be developed *-9 , and the industry can sustain a large workforce . + " + +Tree: +----- + (TOP (S (S (ADVP (RB Thus)) + (NP-SBJ (EX there)) + (VP (VBP are) + (NP-PRD (NP (JJ many) + (JJ key) + (NNS technologies)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (MD can) + (VP (VB be) + (VP (VBN developed) + (NP (-NONE- *-9)))))))))) + (, ,) + (CC and) + (S (NP-SBJ (DT the) + (NN industry)) + (VP (MD can) + (VP (VB sustain) + (NP (DT a) + (JJ large) + (NN workforce))))) + (. .) + ('' "))) + +Leaves: +------- + 0 Thus + 1 there + 2 are + sense: be-v.3 + prop: be.02 + v * -> 2:0, are + ARGM-DIS * -> 0:1, Thus + ARG1 * -> 3:2, many key technologies which *T*-9 can be developed *-9 + 3 many + 4 key + 5 technologies + sense: technology-n.1 + 6 which + 7 *T*-9 + 8 can + 9 be + prop: be.03 + v * -> 9:0, be + 10 developed + prop: develop.02 + v * -> 10:0, developed + ARGM-MOD * -> 8:0, can + ARG1 * -> 11:0, *-9 -> 6:1, which + LINK-SLC * -> 3:1, many key technologies + * -> 11:0, *-9 -> 6:1, which + LINK-PCR * -> 11:0, *-9 -> 6:1, which + * -> 11:0, *-9 -> 6:1, which + * -> 11:0, *-9 -> 6:1, which + 11 *-9 + 12 , + 13 and + 14 the + coref: IDENT 8 14-15 the industry + 15 industry + sense: industry-n.1 + 16 can + 17 sustain + sense: sustain-v.1 + prop: sustain.01 + v * -> 17:0, sustain + ARG0 * -> 14:1, the industry + ARGM-MOD * -> 16:0, can + ARG1 * -> 18:1, a large workforce + 18 a + 19 large + 20 workforce + 21 . + 22 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + CTI acting vice-president Wu Chung-fu observes that the advanced countries still devote substantial efforts to + developing textile technologies, and naturally this is something Taiwan should not lightly give up. + +Treebanked sentence: +-------------------- + CTI acting vice-president Wu Chung - fu observes that the advanced countries still devote substantial efforts to *PRO* + developing textile technologies , and naturally this is something 0 Taiwan should not lightly give *T*-9 up . + +Tree: +----- + (TOP (S (S (NP-SBJ (NML (NNP CTI) + (VBG acting) + (NN vice-president)) + (NNP Wu) + (NNP Chung) + (HYPH -) + (NNP fu)) + (VP (VBZ observes) + (SBAR (IN that) + (S (NP-SBJ (DT the) + (JJ advanced) + (NNS countries)) + (ADVP (RB still)) + (VP (VBP devote) + (NP (JJ substantial) + (NNS efforts)) + (PP-CLR (IN to) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG developing) + (NP (NN textile) + (NNS technologies)))))))))) + (, ,) + (CC and) + (S (ADVP (RB naturally)) + (NP-SBJ (DT this)) + (VP (VBZ is) + (NP-PRD (NP (NN something)) + (SBAR (WHNP-9 (-NONE- 0)) + (S (NP-SBJ (NNP Taiwan)) + (VP (MD should) + (RB not) + (ADVP (RB lightly)) + (VP (VB give) + (NP (-NONE- *T*-9)) + (PRT (RP up))))))))) + (. .))) + +Leaves: +------- + 0 CTI + coref: IDENT 111 0-0 CTI + name: ORG 0-0 CTI + 1 acting + prop: act.01 + v * -> 1:0, acting + ARG1 * -> 2:0, vice-president + ARG0 * -> 3:0, Wu + -> 4:0, Chung + -> 6:0, fu + 2 vice-president + 3 Wu + ! name: PERSON 3-6 Wu Chung - fu + 4 Chung + 5 - + 6 fu + 7 observes + sense: observe-v.4 + prop: observe.02 + v * -> 7:0, observes + ARG0 * -> 0:2, CTI acting vice-president Wu Chung - fu + ARG1 * -> 8:1, that the advanced countries still devote substantial efforts to *PRO* developing + textile technologies + 8 that + 9 the + 10 advanced + 11 countries + sense: country-n.3 + 12 still + 13 devote + sense: devote-v.2 + prop: devote.01 + v * -> 13:0, devote + ARG0 * -> 9:1, the advanced countries + ARGM-TMP * -> 12:1, still + ARG1 * -> 14:1, substantial efforts + ARG2 * -> 16:1, to *PRO* developing textile technologies + 14 substantial + 15 efforts + sense: effort-n.1 + 16 to + 17 *PRO* + 18 developing + prop: develop.02 + v * -> 18:0, developing + ARG0 * -> 17:0, *PRO* + ARG1 * -> 19:1, textile technologies + LINK-PCR * -> 9:1, the advanced countries + * -> 17:0, *PRO* + coref: IDENT 93 18-18 developing + 19 textile + 20 technologies + sense: technology-n.1 + 21 , + 22 and + 23 naturally + 24 this + coref: IDENT 93 24-24 this + 25 is + sense: be-v.1 + prop: be.01 + v * -> 25:0, is + ARGM-ADV * -> 23:1, naturally + ARG1 * -> 24:1, this + ARG2 * -> 26:2, something 0 Taiwan should not lightly give *T*-9 up + 26 something + 27 0 + 28 Taiwan + coref: IDENT 1 28-28 Taiwan + name: GPE 28-28 Taiwan + 29 should + 30 not + 31 lightly + 32 give + sense: give-v.5 + prop: give.08 + v * -> 32:0, give + -> 34:1, up + ARG0 * -> 28:1, Taiwan + ARGM-MOD * -> 29:0, should + ARGM-NEG * -> 30:0, not + ARGM-MNR * -> 31:1, lightly + ARG1 * -> 33:0, *T*-9 -> 27:0, 0 + LINK-SLC * -> 26:1, something + * -> 33:0, *T*-9 -> 27:0, 0 + 33 *T*-9 + 34 up + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + We ca n't give it up, but neither can we rest on our laurels. + +Treebanked sentence: +-------------------- + We ca n't give it up , but neither can we rest on our laurels . + +Tree: +----- + (TOP (S (S (NP-SBJ (PRP We)) + (VP (MD ca) + (RB n't) + (VP (VB give) + (NP (PRP it)) + (PRT (RP up))))) + (, ,) + (CC but) + (CC neither) + (SINV (MD can) + (NP-SBJ (PRP we)) + (VP (VB rest) + (PP (IN on) + (NP (PRP$ our) + (NNS laurels))))) + (. .))) + +Leaves: +------- + 0 We + coref: IDENT 1 0-0 We + 1 ca + 2 n't + 3 give + sense: give-v.5 + prop: give.07 + v * -> 3:0, give + -> 5:1, up + ARG0 * -> 0:1, We + ARGM-MOD * -> 1:0, ca + ARGM-NEG * -> 2:0, n't + ARG1 * -> 4:1, it + 4 it + coref: IDENT 93 4-4 it + 5 up + 6 , + 7 but + 8 neither + 9 can + 10 we + coref: IDENT 1 10-10 we + 11 rest + sense: rest-v.1 + prop: rest.01 + v * -> 11:0, rest + ARGM-MOD * -> 9:0, can + ARG1 * -> 10:1, we + ARGM-LOC * -> 12:1, on our laurels + 12 on + 13 our + coref: IDENT 1 13-13 our + 14 laurels + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With Southeast Asia and mainland China catching up fast, Taiwan's textile industry will only have a future if it can + quickly transform itself and develop towards high-tech products. + +Treebanked sentence: +-------------------- + With Southeast Asia and mainland China catching up fast , Taiwan 's textile industry will only have a future if it can + quickly transform itself and develop towards high - tech products . + +Tree: +----- + (TOP (S (PP (IN With) + (S-NOM (NP-SBJ (NP (NNP Southeast) + (NNP Asia)) + (CC and) + (NP (NN mainland) + (NNP China))) + (VP (VBG catching) + (PRT (RP up)) + (ADVP (RB fast))))) + (, ,) + (NP-SBJ (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry)) + (VP (MD will) + (ADVP (RB only)) + (VP (VB have) + (NP (DT a) + (NN future)) + (SBAR-ADV (IN if) + (S (NP-SBJ (PRP it)) + (VP (MD can) + (ADVP (RB quickly)) + (VP (VP (VB transform) + (NP (PRP itself))) + (CC and) + (VP (VB develop) + (PP (IN towards) + (NP (ADJP (JJ high) + (HYPH -) + (NN tech)) + (NNS products)))))))))) + (. .))) + +Leaves: +------- + 0 With + 1 Southeast + name: LOC 1-2 Southeast Asia + 2 Asia + 3 and + 4 mainland + coref: IDENT 55 4-5 mainland China + 5 China + name: GPE 5-5 China + 6 catching + sense: catch-v.4 + prop: catch.04 + v * -> 6:0, catching + -> 7:1, up + ARG1 * -> 1:2, Southeast Asia and mainland China + ARGM-MNR * -> 8:1, fast + 7 up + 8 fast + 9 , + 10 Taiwan + coref: IDENT 1 10-11 Taiwan 's + coref: IDENT 8 10-13 Taiwan 's textile industry + name: GPE 10-10 Taiwan + 11 's + 12 textile + 13 industry + 14 will + 15 only + 16 have + sense: have-v.2 + prop: have.03 + v * -> 16:0, have + ARGM-ADV * -> 0:1, With Southeast Asia and mainland China catching up fast + ARG0 * -> 10:2, Taiwan 's textile industry + ARGM-MOD * -> 14:0, will + ARGM-ADV * -> 15:1, only + ARG1 * -> 17:1, a future + ARGM-ADV * -> 19:1, if it can quickly transform itself and develop towards high - tech products + 17 a + 18 future + sense: future-n.1 + 19 if + 20 it + coref: IDENT 8 20-20 it + 21 can + 22 quickly + 23 transform + sense: transform-v.1 + prop: transform.01 + v * -> 23:0, transform + ARG0 * -> 20:1, it + ARGM-MOD * -> 21:0, can + ARGM-ADV * -> 22:1, quickly + ARG1 * -> 24:1, itself + 24 itself + coref: IDENT 8 24-24 itself + 25 and + 26 develop + sense: develop-v.2 + prop: develop.02 + v * -> 26:0, develop + ARG1 * -> 20:1, it + ARGM-MOD * -> 21:0, can + ARGM-DIR * -> 27:1, towards high - tech products + 27 towards + 28 high + 29 - + 30 tech + 31 products + sense: product-n.1 + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The CTI, which a decade ago began a timely change in its role to one of a specialist R&D center working in partnership + with firms, has become the leading R&D center for Taiwan's several thousand textile industry companies. + +Treebanked sentence: +-------------------- + The CTI , which *T*-1 a decade ago began a timely change in its role to one of a specialist R&D center working in + partnership with firms , has become the leading R&D center for Taiwan 's several thousand textile industry companies . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NNP CTI)) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (ADVP-TMP (NP (DT a) + (NN decade)) + (RB ago)) + (VP (VBD began) + (NP (NP (DT a) + (JJ timely) + (NN change)) + (PP (IN in) + (NP (PRP$ its) + (NN role))) + (PP (IN to) + (NP (NP (CD one)) + (PP (IN of) + (NP (NP (DT a) + (NN specialist) + (NNP R&D) + (NN center)) + (VP (VBG working) + (PP (IN in) + (NP (NP (NN partnership)) + (PP (IN with) + (NP (NNS firms))))))))))))))) + (, ,) + (VP (VBZ has) + (VP (VBN become) + (NP-PRD (NP (DT the) + (VBG leading) + (NNP R&D) + (NN center)) + (PP (IN for) + (NP (NP (NNP Taiwan) + (POS 's)) + (QP (JJ several) + (CD thousand)) + (NN textile) + (NN industry) + (NNS companies)))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 111 0-26 The CTI , which *T*-1 a decade ago began a timely change in its role to + one of a specialist R&D center working in partnership with firms + 1 CTI + name: ORG 1-1 CTI + 2 , + 3 which + 4 *T*-1 + 5 a + name: DATE 5-7 a decade ago + 6 decade + sense: decade-n.1 + 7 ago + 8 began + sense: begin-v.1 + prop: begin.01 + v * -> 8:0, began + ARG0 * -> 4:0, *T*-1 -> 3:1, which + ARGM-TMP * -> 5:2, a decade ago + ARG1 * -> 9:2, a timely change in its role to one of a specialist R&D center working in partnership + with firms + LINK-SLC * -> 0:1, The CTI + * -> 4:0, *T*-1 -> 3:1, which + 9 a + 10 timely + 11 change + sense: change-n.1 + 12 in + 13 its + coref: IDENT 111 13-13 its + 14 role + sense: role-n.1 + 15 to + 16 one + name: CARDINAL 16-16 one + 17 of + 18 a + 19 specialist + sense: specialist-n.2 + 20 R&D + 21 center + sense: center-n.2 + 22 working + sense: work-v.1 + prop: work.01 + v * -> 22:0, working + ARG0 * -> 18:1, a specialist R&D center + ARGM-MNR * -> 23:1, in partnership with firms + 23 in + 24 partnership + sense: partnership-n.1 + 25 with + 26 firms + 27 , + 28 has + prop: have.01 + v * -> 28:0, has + 29 become + sense: become-v.1 + prop: become.01 + v * -> 29:0, become + ARG1 * -> 0:2, The CTI , which *T*-1 a decade ago began a timely change in its role to one of a + specialist R&D center working in partnership with firms + ARG2 * -> 30:2, the leading R&D center for Taiwan 's several thousand textile industry companies + 30 the + 31 leading + prop: lead.02 + v * -> 31:0, leading + ARG0 * -> 32:0, R&D + -> 33:0, center + 32 R&D + 33 center + sense: center-n.2 + 34 for + 35 Taiwan + coref: IDENT 1 35-36 Taiwan 's + name: GPE 35-35 Taiwan + 36 's + 37 several + name: CARDINAL 37-38 several thousand + 38 thousand + 39 textile + 40 industry + 41 companies + 42 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The development of new " nylon 66 " fibers is a case in point. + +Treebanked sentence: +-------------------- + The development of new " nylon 66 " fibers is a case in point . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN development)) + (PP (IN of) + (NP (JJ new) + (NML (`` ") + (NN nylon) + (CD 66) + ('' ")) + (NNS fibers)))) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (NN case)) + (PP (IN in) + (NP (NN point))))) + (. .))) + +Leaves: +------- + 0 The + 1 development + 2 of + 3 new + 4 " + 5 nylon + 6 66 + name: CARDINAL 6-6 66 + 7 " + 8 fibers + 9 is + sense: be-v.1 + prop: be.01 + v * -> 9:0, is + ARG1 * -> 0:2, The development of new " nylon 66 " fibers + ARG2 * -> 10:2, a case in point + 10 a + 11 case + sense: case-n.4 + 12 in + 13 point + sense: point-n.4 + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Grace Kuo, a vice-president at Ta Ching Hwa Enterprise Co. + +Treebanked sentence: +-------------------- + Grace Kuo , a vice-president at Ta Ching Hwa Enterprise Co . + +Tree: +----- + (TOP (FRAG (NP (NNP Grace) + (NNP Kuo)) + (, ,) + (NP (NP (DT a) + (NN vice-president)) + (PP (IN at) + (NP (NNP Ta) + (NNP Ching) + (NNP Hwa) + (NNP Enterprise) + (NNP Co)))) + (. .))) + +Leaves: +------- + 0 Grace + coref: APPOS HEAD 135 0-1 Grace Kuo + coref: IDENT ectb_1003-part-002-E1 0-11 Grace Kuo , a vice-president at Ta Ching Hwa Enterprise Co + . + name: PERSON 0-1 Grace Kuo + 1 Kuo + 2 , + 3 a + coref: APPOS ATTRIB 135 3-10 a vice-president at Ta Ching Hwa Enterprise Co + 4 vice-president + 5 at + 6 Ta + coref: APPOS HEAD 138 6-10 Ta Ching Hwa Enterprise Co + name: ORG 6-10 Ta Ching Hwa Enterprise Co + 7 Ching + 8 Hwa + 9 Enterprise + 10 Co + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + -LRB-TCH-RRB-, as yet the only company in Taiwan to manufacture nylon 66 filament, recounts that ten years ago her + husband and a group of friends who had worked many years at Formosa Chemicals and Fiber Corporation wanted to set up in + business for themselves. + +Treebanked sentence: +-------------------- + -LRB- TCH -RRB- , as yet the only company in Taiwan 0 *T*-9 to manufacture nylon 66 filament , recounts that ten years + ago her husband and a group of friends who *T*-3 had worked many years at Formosa Chemicals and Fiber Corporation wanted + *PRO*-2 to set up in business for themselves . + +Tree: +----- + (TOP (S (-LRB- -LRB-) + (NP-SBJ (NP (NNP TCH)) + (-RRB- -RRB-) + (, ,) + (NP (NP (ADVP-TMP (RB as) + (RB yet)) + (NP (DT the) + (JJ only) + (NN company)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (SBAR (WHNP-9 (-NONE- 0)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (TO to) + (VP (VB manufacture) + (NP (NML (NN nylon) + (CD 66)) + (NN filament)))))))) + (, ,) + (VP (VBZ recounts) + (SBAR (IN that) + (S (ADVP-TMP (NP (CD ten) + (NNS years)) + (RB ago)) + (NP-SBJ-2 (NP (PRP$ her) + (NN husband)) + (CC and) + (NP (NP (DT a) + (NN group)) + (PP (IN of) + (NP (NP (NNS friends)) + (SBAR (WHNP-3 (WP who)) + (S (NP-SBJ (-NONE- *T*-3)) + (VP (VBD had) + (VP (VBN worked) + (NP-TMP (JJ many) + (NNS years)) + (PP (IN at) + (NP (NNP Formosa) + (NML (NNPS Chemicals) + (CC and) + (NNP Fiber)) + (NNP Corporation))))))))))) + (VP (VBD wanted) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB set) + (PRT (RP up)) + (PP (IN in) + (NP (NP (NN business)) + (PP (IN for) + (NP (PRP themselves)))))))))))) + (. .))) + +Leaves: +------- + 0 -LRB- + 1 TCH + coref: APPOS ATTRIB 138 1-1 TCH + 2 -RRB- + 3 , + 4 as + 5 yet + 6 the + 7 only + 8 company + sense: company-n.1 + 9 in + 10 Taiwan + coref: IDENT 1 10-10 Taiwan + name: GPE 10-10 Taiwan + 11 0 + 12 *T*-9 + 13 to + 14 manufacture + sense: manufacture-v.1 + prop: manufacture.01 + v * -> 14:0, manufacture + ARG0 * -> 12:0, *T*-9 -> 11:0, 0 + ARG1 * -> 15:2, nylon 66 filament + LINK-SLC * -> 4:2, as yet the only company in Taiwan + * -> 12:0, *T*-9 -> 11:0, 0 + 15 nylon + 16 66 + 17 filament + 18 , + 19 recounts + sense: recount-v.1 + prop: recount.01 + v * -> 19:0, recounts + ARG0 * -> 1:2, TCH -RRB- , as yet the only company in Taiwan 0 *T*-9 to manufacture nylon 66 filament + ARG1 * -> 21:3, ten years ago her husband and a group of friends who *T*-3 had worked many years at + Formosa Chemicals and Fiber Corporation wanted *PRO*-2 to set up in business for + themselves + 20 that + 21 ten + name: DATE 21-23 ten years ago + 22 years + 23 ago + 24 her + coref: IDENT 146 24-42 her husband and a group of friends who *T*-3 had worked many years at + Formosa Chemicals and Fiber Corporation + coref: IDENT ectb_1003-part-002-E1 24-24 her + 25 husband + 26 and + 27 a + 28 group + sense: group-n.1 + 29 of + 30 friends + 31 who + 32 *T*-3 + 33 had + prop: have.01 + v * -> 33:0, had + 34 worked + sense: work-v.1 + prop: work.01 + v * -> 34:0, worked + ARG0 * -> 32:0, *T*-3 -> 31:1, who + ARGM-TMP * -> 35:1, many years + ARG2 * -> 37:1, at Formosa Chemicals and Fiber Corporation + LINK-SLC * -> 30:1, friends + * -> 32:0, *T*-3 -> 31:1, who + 35 many + 36 years + name: DATE 36-36 years + 37 at + 38 Formosa + ! name: ORG 38-39 Formosa Chemicals + 39 Chemicals + 40 and + 41 Fiber + ! name: ORG 41-42 Fiber Corporation + 42 Corporation + 43 wanted + sense: want-v.1 + prop: want.01 + v * -> 43:0, wanted + ARGM-TMP * -> 21:2, ten years ago + ARG0 * -> 44:0, *PRO*-2 -> 24:2, her husband and a group of friends who *T*-3 had worked many years at + Formosa Chemicals and Fiber Corporation + ARG1 * -> 44:2, *PRO*-2 to set up in business for themselves + 44 *PRO*-2 + 45 to + 46 set + sense: set-v.4 + prop: set.03 + v * -> 46:0, set + -> 47:1, up + ARG0 * -> 44:0, *PRO*-2 -> 24:2, her husband and a group of friends who *T*-3 had worked many years at + Formosa Chemicals and Fiber Corporation + ARG1 * -> 48:1, in business for themselves + 47 up + 48 in + 49 business + sense: business-n.1 + 50 for + 51 themselves + coref: IDENT 146 51-51 themselves + 52 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At that time, a huge amount of nylon 66 fiber-600 tonnes per month-was used by the local textile industry in the + manufacture of specialty apparel such as women's tights, swimwear and underwear. + +Treebanked sentence: +-------------------- + At that time , a huge amount of nylon 66 fiber - 600 tonnes per month - was used *-9 by the local textile industry in + the manufacture of specialty apparel such as women 's tights , swimwear and underwear . + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (DT that) + (NN time))) + (, ,) + (NP-SBJ-9 (NP (NP (DT a) + (JJ huge) + (NN amount)) + (PP (IN of) + (NP (NML (NN nylon) + (CD 66)) + (NN fiber)))) + (: -) + (NP (NP (CD 600) + (NNS tonnes)) + (PP (IN per) + (NP (NN month))))) + (, -) + (VP (VBD was) + (VP (VBN used) + (NP (-NONE- *-9)) + (PP (IN by) + (NP-LGS (DT the) + (JJ local) + (NN textile) + (NN industry))) + (PP (IN in) + (NP (NP (DT the) + (NN manufacture)) + (PP (IN of) + (NP (NP (NN specialty) + (NN apparel)) + (PP (JJ such) + (IN as) + (NP (NP (NP (NNS women) + (POS 's)) + (NNS tights)) + (, ,) + (NP (JJ swimwear) + (CC and) + (NN underwear)))))))))) + (. .))) + +Leaves: +------- + 0 At + 1 that + 2 time + sense: time-n.2 + 3 , + 4 a + 5 huge + 6 amount + sense: amount-n.1 + 7 of + 8 nylon + coref: IDENT 163 8-10 nylon 66 fiber + 9 66 + name: CARDINAL 9-9 66 + 10 fiber + 11 - + 12 600 + name: CARDINAL 12-12 600 + 13 tonnes + 14 per + 15 month + sense: month-n.1 + 16 - + 17 was + prop: be.03 + v * -> 17:0, was + 18 used + sense: use-v.1 + prop: use.01 + v * -> 18:0, used + ARGM-TMP * -> 0:1, At that time + ARG1 * -> 19:0, *-9 -> 4:3, a huge amount of nylon 66 fiber - 600 tonnes per month + ARG0 * -> 20:1, by the local textile industry + ARG2 * -> 25:1, in the manufacture of specialty apparel such as women 's tights , swimwear and + underwear + 19 *-9 + 20 by + 21 the + 22 local + 23 textile + 24 industry + 25 in + 26 the + 27 manufacture + sense: manufacture-n.1 + 28 of + 29 specialty + 30 apparel + 31 such + 32 as + 33 women + sense: woman-n.2 + 34 's + 35 tights + 36 , + 37 swimwear + 38 and + 39 underwear + 40 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But Taiwan had no manufacturing capability in the fiber, and relied entirely on imports. + +Treebanked sentence: +-------------------- + But Taiwan had no manufacturing capability in the fiber , and relied entirely on imports . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (NNP Taiwan)) + (VP (VP (VBD had) + (NP (DT no) + (NN manufacturing) + (NN capability)) + (PP (IN in) + (NP (DT the) + (NN fiber)))) + (, ,) + (CC and) + (VP (VBD relied) + (ADVP (RB entirely)) + (PP (IN on) + (NP (NNS imports))))) + (. .))) + +Leaves: +------- + 0 But + 1 Taiwan + coref: IDENT 1 1-1 Taiwan + name: GPE 1-1 Taiwan + 2 had + sense: have-v.2 + prop: have.03 + v * -> 2:0, had + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:1, Taiwan + ARG1 * -> 3:1, no manufacturing capability + ARGM-ADV * -> 6:1, in the fiber + 3 no + 4 manufacturing + 5 capability + 6 in + 7 the + coref: IDENT 163 7-8 the fiber + 8 fiber + 9 , + 10 and + 11 relied + sense: rely-v.1 + prop: rely.01 + v * -> 11:0, relied + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:1, Taiwan + ARGM-EXT * -> 12:1, entirely + ARG1 * -> 13:1, on imports + 12 entirely + 13 on + 14 imports + sense: import-n.1 + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This aroused their interest in entering the field. + +Treebanked sentence: +-------------------- + This aroused their interest in *PRO* entering the field . + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBD aroused) + (NP (NP (PRP$ their) + (NN interest)) + (PP (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG entering) + (NP (DT the) + (NN field))))))) + (. .))) + +Leaves: +------- + 0 This + 1 aroused + sense: arouse-v.1 + prop: arouse.01 + v * -> 1:0, aroused + ARG0 * -> 0:1, This + ARG1 * -> 2:2, their interest in *PRO* entering the field + 2 their + coref: IDENT 146 2-2 their + 3 interest + sense: interest-n.1 + 4 in + 5 *PRO* + 6 entering + prop: enter.01 + v * -> 6:0, entering + ARG0 * -> 5:0, *PRO* + ARG1 * -> 7:1, the field + LINK-PCR * -> 2:1, their interest + * -> 5:0, *PRO* + 7 the + 8 field + sense: field-n.3 + 9 . + + +======================================================================================================================== +Coreference chains for section 2: +--------------------------------- + + Chain 1 (IDENT) + 37.0-1 Taiwan 's + 38.22-23 Taiwan 's + 39.3-4 Taiwan 's + 39.21-23 the island 's + 40.17-18 Taiwan 's + 41.15-16 little Taiwan + 41.31-31 it + 42.0-2 The island 's + 43.7-8 Taiwan 's + 43.24-25 Taiwan 's + 44.8-8 Taiwan + 46.28-28 Taiwan + 47.0-0 We + 47.10-10 we + 47.13-13 our + 48.10-11 Taiwan 's + 49.35-36 Taiwan 's + 52.10-10 Taiwan + 54.1-1 Taiwan + + Chain 8 (IDENT) + 38.4-4 its + 38.14-16 the textile industry + 40.13-15 the textile industry + 44.1-3 The textile industry + 45.14-15 the industry + 48.10-13 Taiwan 's textile industry + 48.20-20 it + 48.24-24 itself + + Chain 55 (IDENT) + 42.18-19 mainland China + 48.4-5 mainland China + + Chain 59 (IDENT) + 43.7-10 Taiwan 's textile exports + 43.24-27 Taiwan 's textile exports + + Chain 111 (IDENT) + 46.0-0 CTI + 49.13-13 its + 49.0-26 The CTI , which *T*-1 a decade ago began a timely change in its role to one of a specialist + R&D center working in partnership with firms + + Chain 93 (IDENT) + 46.18-18 developing + 46.24-24 this + 47.4-4 it + + Chain 135 (APPOS) + HEAD 51.0-1 Grace Kuo + ATTRIB 51.3-10 a vice-president at Ta Ching Hwa Enterprise Co + + Chain ectb_1003-part-002-E1 (IDENT) + 51.0-11 Grace Kuo , a vice-president at Ta Ching Hwa Enterprise Co . + 52.24-24 her + + Chain 138 (APPOS) + HEAD 51.6-10 Ta Ching Hwa Enterprise Co + ATTRIB 52.1-1 TCH + + Chain 146 (IDENT) + 52.24-42 her husband and a group of friends who *T*-3 had worked many years at Formosa Chemicals and + Fiber Corporation + 52.51-51 themselves + 55.2-2 their + + Chain 163 (IDENT) + 53.8-10 nylon 66 fiber + 54.7-8 the fiber + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + David and Goliath + +Treebanked sentence: +-------------------- + David and Goliath + +Tree: +----- + (TOP (NP (NNP David) + (CC and) + (NNP Goliath))) + +Leaves: +------- + 0 David + name: PERSON 0-0 David + 1 and + 2 Goliath + name: PERSON 2-2 Goliath + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Grace Kuo comments that nylon 66 was a new fiber with good elasticity, high strength and a soft, bulky feel, along with + good resistance to ultraviolet light. + +Treebanked sentence: +-------------------- + Grace Kuo comments that nylon 66 was a new fiber with good elasticity , high strength and a soft , bulky feel , along + with good resistance to ultraviolet light . + +Tree: +----- + (TOP (S (NP-SBJ (NNP Grace) + (NNP Kuo)) + (VP (VBZ comments) + (SBAR (IN that) + (S (NP-SBJ (NN nylon) + (CD 66)) + (VP (VBD was) + (NP-PRD (NP (DT a) + (JJ new) + (NN fiber)) + (PP (IN with) + (NP (NP (JJ good) + (NN elasticity)) + (, ,) + (NP (JJ high) + (NN strength)) + (CC and) + (NP (DT a) + (JJ soft) + (, ,) + (JJ bulky) + (NN feel)))) + (, ,) + (PP (IN along) + (PP (IN with) + (NP (NP (JJ good) + (NN resistance)) + (PP (IN to) + (NP (JJ ultraviolet) + (NN light))))))))))) + (. .))) + +Leaves: +------- + 0 Grace + coref: IDENT 1 0-1 Grace Kuo + name: PERSON 0-1 Grace Kuo + 1 Kuo + 2 comments + sense: comment-v.1 + prop: comment.02 + v * -> 2:0, comments + ARG0 * -> 0:1, Grace Kuo + ARG1 * -> 3:1, that nylon 66 was a new fiber with good elasticity , high strength and a soft , bulky + feel , along with good resistance to ultraviolet light + 3 that + 4 nylon + 5 66 + name: CARDINAL 5-5 66 + 6 was + sense: be-v.1 + prop: be.01 + v * -> 6:0, was + ARG1 * -> 4:1, nylon 66 + ARG2 * -> 7:2, a new fiber with good elasticity , high strength and a soft , bulky feel , along with + good resistance to ultraviolet light + 7 a + 8 new + 9 fiber + 10 with + 11 good + 12 elasticity + 13 , + 14 high + 15 strength + sense: strength-n.1 + 16 and + 17 a + 18 soft + 19 , + 20 bulky + 21 feel + sense: feel-n.3 + 22 , + 23 along + 24 with + 25 good + 26 resistance + sense: resistance-n.2 + 27 to + 28 ultraviolet + 29 light + sense: light-n.1 + 30 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Adding just 15 to 20 % of nylon 66 to a fabric transforms it, making it thoroughly suited to modern-day demands for " + healthy, comfortable " clothing. + +Treebanked sentence: +-------------------- + *PRO* Adding just 15 to 20 % of nylon 66 to a fabric transforms it , *PRO*-1 making it thoroughly suited to modern - day + demands for " healthy , comfortable " clothing . + +Tree: +----- + (TOP (S (S-NOM-SBJ-1 (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Adding) + (NP (NP (QP (RB just) + (CD 15) + (IN to) + (CD 20)) + (NN %)) + (PP (IN of) + (NP (NN nylon) + (CD 66)))) + (PP-CLR (IN to) + (NP (DT a) + (NN fabric))))) + (VP (VBZ transforms) + (NP (PRP it)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG making) + (S (NP-SBJ (PRP it)) + (ADJP-PRD (RB thoroughly) + (JJ suited) + (PP (IN to) + (NP (NP (ADJP (JJ modern) + (HYPH -) + (NN day)) + (NNS demands)) + (PP (IN for) + (`` ") + (NP (JJ healthy) + (, ,) + (JJ comfortable) + ('' ") + (NN clothing)))))))))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Adding + prop: add.02 + v * -> 1:0, Adding + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:3, just 15 to 20 % of nylon 66 + ARG2 * -> 10:1, to a fabric + 2 just + 3 15 + ! name: PERCENT 3-6 15 to 20 % + 4 to + 5 20 + 6 % + 7 of + 8 nylon + 9 66 + name: CARDINAL 9-9 66 + 10 to + 11 a + coref: IDENT 16 11-12 a fabric + 12 fabric + 13 transforms + sense: transform-v.1 + prop: transform.01 + v * -> 13:0, transforms + ARG0 * -> 16:0, *PRO*-1 -> 0:2, *PRO* Adding just 15 to 20 % of nylon 66 to a fabric + ARG1 * -> 14:1, it + ARGM-ADV * -> 16:2, *PRO*-1 making it thoroughly suited to modern - day demands for " healthy , + comfortable " clothing + coref: IDENT 24 13-13 transforms + 14 it + coref: IDENT 16 14-14 it + 15 , + 16 *PRO*-1 + 17 making + sense: make-v.3 + prop: make.02 + v * -> 17:0, making + ARG0 * -> 16:0, *PRO*-1 -> 0:2, *PRO* Adding just 15 to 20 % of nylon 66 to a fabric + ARG1 * -> 18:2, it thoroughly suited to modern - day demands for " healthy , comfortable " clothing + 18 it + coref: IDENT 16 18-18 it + 19 thoroughly + 20 suited + 21 to + 22 modern + 23 - + 24 day + 25 demands + sense: demand-n.3 + 26 for + 27 " + 28 healthy + 29 , + 30 comfortable + 31 " + 32 clothing + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The big international manufacturers had realized this and adopted an oligarchic strategy : as well as making it + difficult for others to obtain the raw materials, they were very careful not to reveal any of their manufacturing + know-how. + +Treebanked sentence: +-------------------- + The big international manufacturers had realized this and adopted an oligarchic strategy : *PRO* as well as making it + *EXP*-2 difficult for others *PRO* to obtain the raw materials , they were very careful *PRO*-1 not to reveal any of + their manufacturing know - how . + +Tree: +----- + (TOP (S (S (NP-SBJ (DT The) + (JJ big) + (JJ international) + (NNS manufacturers)) + (VP (VP (VBD had) + (VP (VBN realized) + (NP (DT this)))) + (CC and) + (VP (VBD adopted) + (NP (DT an) + (JJ oligarchic) + (NN strategy))))) + (: :) + (S (S-ADV (NP-SBJ (-NONE- *PRO*)) + (CONJP (RB as) + (RB well) + (IN as)) + (VP (VBG making) + (S (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-2))) + (ADJP-PRD (JJ difficult)) + (PP (IN for) + (NP (NNS others))) + (S-2 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB obtain) + (NP (DT the) + (JJ raw) + (NNS materials)))))))) + (, ,) + (NP-SBJ-1 (PRP they)) + (VP (VBD were) + (ADJP-PRD (RB very) + (JJ careful) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (RB not) + (TO to) + (VP (VB reveal) + (NP (NP (DT any)) + (PP (IN of) + (NP (PRP$ their) + (NN manufacturing) + (NN know) + (HYPH -) + (NN how)))))))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 23 0-3 The big international manufacturers + 1 big + 2 international + 3 manufacturers + sense: manufacturer-n.1 + 4 had + prop: have.01 + v * -> 4:0, had + 5 realized + sense: realize-v.1 + prop: realize.01 + v * -> 5:0, realized + ARG0 * -> 0:1, The big international manufacturers + ARG1 * -> 6:1, this + 6 this + coref: IDENT 24 6-6 this + 7 and + 8 adopted + sense: adopt-v.1 + prop: adopt.01 + v * -> 8:0, adopted + ARG0 * -> 0:1, The big international manufacturers + ARG1 * -> 9:1, an oligarchic strategy + 9 an + 10 oligarchic + 11 strategy + sense: strategy-n.1 + 12 : + 13 *PRO* + 14 as + 15 well + 16 as + 17 making + sense: make-v.3 + prop: make.02 + v * -> 17:0, making + ARG0 * -> 13:0, *PRO* + ARG1 * -> 18:3, it *EXP*-2 difficult for others *PRO* to obtain the raw materials + LINK-PCR * -> 0:1, The big international manufacturers + * -> 13:0, *PRO* + 18 it + 19 *EXP*-2 + 20 difficult + 21 for + 22 others + 23 *PRO* + 24 to + 25 obtain + sense: obtain-v.1 + prop: obtain.01 + v * -> 25:0, obtain + ARG0 * -> 23:0, *PRO* + ARG1 * -> 26:1, the raw materials + 26 the + 27 raw + 28 materials + sense: material-n.2 + 29 , + 30 they + coref: IDENT 23 30-30 they + 31 were + sense: be-v.1 + prop: be.01 + v * -> 31:0, were + ARGM-PRD * -> 13:2, *PRO* as well as making it *EXP*-2 difficult for others *PRO* to obtain the raw + materials + ARG1 * -> 34:0, *PRO*-1 -> 30:1, they + ARG2 * -> 32:1, very careful *PRO*-1 not to reveal any of their manufacturing know - how + 32 very + 33 careful + 34 *PRO*-1 + 35 not + 36 to + 37 reveal + sense: reveal-v.2 + prop: reveal.01 + v * -> 37:0, reveal + ARG0 * -> 34:0, *PRO*-1 -> 30:1, they + ARGM-NEG * -> 35:0, not + ARG1 * -> 38:2, any of their manufacturing know - how + 38 any + 39 of + 40 their + coref: IDENT 23 40-40 their + 41 manufacturing + 42 know + 43 - + 44 how + 45 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But thanks to the expertise the TCH team had built up over many years in the textile fibers field, within the first year + after the company was set up they succeeded in drawing filaments from nylon 66 granules. + +Treebanked sentence: +-------------------- + But thanks to the expertise 0 the TCH team had built *T*-2 up over many years in the textile fibers field , within the + first year after the company was set *-9 up they succeeded in *PRO* drawing filaments from nylon 66 granules . + +Tree: +----- + (TOP (S (CC But) + (NP-ADV (NP (NNS thanks)) + (PP (IN to) + (NP (NP (DT the) + (NN expertise)) + (SBAR (WHNP-2 (-NONE- 0)) + (S (NP-SBJ (DT the) + (NNP TCH) + (NN team)) + (VP (VBD had) + (VP (VBN built) + (NP (-NONE- *T*-2)) + (PRT (RP up)) + (PP-TMP (IN over) + (NP (NP (JJ many) + (NNS years)) + (PP (IN in) + (NP (DT the) + (NML (NN textile) + (NNS fibers)) + (NN field)))))))))))) + (, ,) + (PP-TMP (IN within) + (NP (NP (DT the) + (JJ first) + (NN year)) + (SBAR-TMP (IN after) + (S (NP-SBJ-9 (DT the) + (NN company)) + (VP (VBD was) + (VP (VBN set) + (NP (-NONE- *-9)) + (PRT (RP up)))))))) + (NP-SBJ (PRP they)) + (VP (VBD succeeded) + (PP-CLR (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG drawing) + (NP (NNS filaments)) + (PP (IN from) + (NP (NML (NN nylon) + (CD 66)) + (NNS granules))))))) + (. .))) + +Leaves: +------- + 0 But + 1 thanks + sense: thanks-n.3 + 2 to + 3 the + 4 expertise + 5 0 + 6 the + 7 TCH + coref: IDENT 48 7-7 TCH + name: ORG 7-7 TCH + 8 team + sense: team-n.1 + 9 had + prop: have.01 + v * -> 9:0, had + 10 built + sense: build-v.6 + prop: build.05 + v * -> 10:0, built + -> 12:1, up + ARG0 * -> 6:1, the TCH team + ARG1 * -> 11:0, *T*-2 -> 5:0, 0 + ARGM-TMP * -> 13:1, over many years in the textile fibers field + LINK-SLC * -> 3:1, the expertise + * -> 11:0, *T*-2 -> 5:0, 0 + 11 *T*-2 + 12 up + 13 over + 14 many + 15 years + 16 in + 17 the + 18 textile + 19 fibers + 20 field + sense: field-n.3 + 21 , + 22 within + 23 the + name: DATE 23-25 the first year + 24 first + 25 year + 26 after + 27 the + coref: IDENT 48 27-28 the company + 28 company + sense: company-n.1 + 29 was + prop: be.03 + v * -> 29:0, was + 30 set + prop: set.03 + v * -> 30:0, set + -> 32:1, up + ARG1 * -> 31:0, *-9 -> 27:1, the company + LINK-PCR * -> 31:0, *-9 -> 27:1, the company + * -> 31:0, *-9 -> 27:1, the company + 31 *-9 + 32 up + 33 they + coref: IDENT 48 33-33 they + 34 succeeded + sense: succeed-v.1 + prop: succeed.01 + v * -> 34:0, succeeded + ARGM-DIS * -> 0:0, But + ARGM-CAU * -> 1:2, thanks to the expertise 0 the TCH team had built *T*-2 up over many years in the + textile fibers field + ARGM-TMP * -> 22:1, within the first year after the company was set *-9 up + ARG0 * -> 33:1, they + ARG1 * -> 35:1, in *PRO* drawing filaments from nylon 66 granules + coref: IDENT 55 34-34 succeeded + 35 in + 36 *PRO* + 37 drawing + sense: draw-v.3 + prop: draw.02 + v * -> 37:0, drawing + ARG0 * -> 36:0, *PRO* + ARG1 * -> 38:1, filaments + ARG2 * -> 39:1, from nylon 66 granules + 38 filaments + 39 from + 40 nylon + 41 66 + name: CARDINAL 41-41 66 + 42 granules + 43 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " As soon as we did that, Dupont cut their prices, hoping to squeeze us right out of the market, " says Grace Kuo with a + smile. + +Treebanked sentence: +-------------------- + " As soon as we did that , Dupont cut their prices , *PRO*-9 hoping *PRO*-9 to squeeze us right out of the market , " + says *T*-1 Grace Kuo with a smile . + +Tree: +----- + (TOP (SINV (`` ") + (S-TPC-1 (ADVP-TMP (ADVP (RB As) + (RB soon)) + (SBAR (IN as) + (S (NP-SBJ (PRP we)) + (VP (VBD did) + (NP (DT that)))))) + (, ,) + (NP-SBJ-9 (NNP Dupont)) + (VP (VBD cut) + (NP (PRP$ their) + (NNS prices)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-9)) + (VP (VBG hoping) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB squeeze) + (NP (PRP us)) + (PP (RB right) + (IN out) + (PP (IN of) + (NP (DT the) + (NN market))))))))))) + (, ,) + ('' ") + (VP (VBZ says) + (S (-NONE- *T*-1))) + (NP-SBJ (NNP Grace) + (NNP Kuo)) + (PP (IN with) + (NP (DT a) + (NN smile))) + (. .))) + +Leaves: +------- + 0 " + 1 As + 2 soon + 3 as + 4 we + coref: IDENT 48 4-4 we + 5 did + sense: do-v.1 + prop: do.02 + v * -> 5:0, did + ARG0 * -> 4:1, we + ARG1 * -> 6:1, that + 6 that + coref: IDENT 55 6-6 that + 7 , + 8 Dupont + coref: IDENT 56 8-8 Dupont + name: ORG 8-8 Dupont + 9 cut + sense: cut-v.2 + prop: cut.02 + v * -> 9:0, cut + ARGM-TMP * -> 1:2, As soon as we did that + ARG0 * -> 13:0, *PRO*-9 -> 8:1, Dupont + ARG1 * -> 10:1, their prices + ARGM-PRP * -> 13:2, *PRO*-9 hoping *PRO*-9 to squeeze us right out of the market + 10 their + coref: IDENT 56 10-10 their + 11 prices + sense: price-n.1 + 12 , + 13 *PRO*-9 + 14 hoping + sense: hope-v.1 + prop: hope.01 + v * -> 14:0, hoping + ARG0 * -> 13:0, *PRO*-9 -> 8:1, Dupont + ARG1 * -> 15:2, *PRO*-9 to squeeze us right out of the market + 15 *PRO*-9 + 16 to + 17 squeeze + sense: squeeze-v.5 + prop: squeeze.02 + v * -> 17:0, squeeze + ARG0 * -> 15:0, *PRO*-9 -> 8:1, Dupont + ARG1 * -> 18:1, us + ARG2 * -> 19:1, right out of the market + 18 us + coref: IDENT 48 18-18 us + 19 right + 20 out + 21 of + 22 the + 23 market + sense: market-n.1 + 24 , + 25 " + 26 says + sense: say-v.1 + prop: say.01 + v * -> 26:0, says + ARG1 * -> 27:0, *T*-1 -> 1:3, As soon as we did that , Dupont cut their prices , *PRO*-9 hoping + *PRO*-9 to squeeze us right out of the market + ARG0 * -> 28:1, Grace Kuo + ARGM-MNR * -> 30:1, with a smile + 27 *T*-1 + 28 Grace + coref: IDENT 1 28-29 Grace Kuo + name: PERSON 28-29 Grace Kuo + 29 Kuo + 30 with + 31 a + 32 smile + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But after going head-to-head with TCH for several years, Dupont realized how resilient the company was, and since then + the two firms have begun to cooperate. + +Treebanked sentence: +-------------------- + But after *PRO* going head - to - head with TCH for several years , Dupont realized how resilient the company was *T*-2 + , and since then the two firms have begun *-1 to cooperate . + +Tree: +----- + (TOP (S (S (CC But) + (PP-TMP (IN after) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG going) + (NP-ADV (NP (NN head)) + (HYPH -) + (PP (IN to) + (HYPH -) + (NP (NN head)))) + (PP (IN with) + (NP (NNP TCH))) + (PP-TMP (IN for) + (NP (JJ several) + (NNS years)))))) + (, ,) + (NP-SBJ (NNP Dupont)) + (VP (VBD realized) + (SBAR (WHADJP-2 (WRB how) + (JJ resilient)) + (S (NP-SBJ (DT the) + (NN company)) + (VP (VBD was) + (ADJP-PRD (-NONE- *T*-2))))))) + (, ,) + (CC and) + (S (PP-TMP (IN since) + (ADVP (RB then))) + (NP-SBJ-1 (DT the) + (CD two) + (NNS firms)) + (VP (VBP have) + (VP (VBN begun) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB cooperate))))))) + (. .))) + +Leaves: +------- + 0 But + 1 after + 2 *PRO* + 3 going + sense: go-v.15 + prop: go.06 + v * -> 3:0, going + ARG0 * -> 2:0, *PRO* + ARG2 * -> 4:2, head - to - head + ARGM-COM * -> 9:1, with TCH + ARGM-TMP * -> 11:1, for several years + 4 head + 5 - + 6 to + 7 - + 8 head + 9 with + 10 TCH + coref: IDENT 48 10-10 TCH + name: ORG 10-10 TCH + 11 for + 12 several + name: DATE 12-13 several years + 13 years + 14 , + 15 Dupont + coref: IDENT 56 15-15 Dupont + name: ORG 15-15 Dupont + 16 realized + sense: realize-v.1 + prop: realize.01 + v * -> 16:0, realized + ARGM-DIS * -> 0:0, But + ARGM-TMP * -> 1:1, after *PRO* going head - to - head with TCH for several years + ARG0 * -> 15:1, Dupont + ARG1 * -> 17:2, how resilient the company was *T*-2 + 17 how + 18 resilient + 19 the + coref: IDENT 48 19-20 the company + 20 company + sense: company-n.1 + 21 was + sense: be-v.1 + prop: be.01 + v * -> 21:0, was + ARG1 * -> 19:1, the company + ARG2 * -> 22:0, *T*-2 -> 17:1, how resilient + 22 *T*-2 + 23 , + 24 and + 25 since + 26 then + 27 the + 28 two + name: CARDINAL 28-28 two + 29 firms + 30 have + prop: have.01 + v * -> 30:0, have + 31 begun + sense: begin-v.2 + prop: begin.01 + v * -> 31:0, begun + ARGM-TMP * -> 25:1, since then + ARG0 * -> 32:0, *-1 -> 27:1, the two firms + ARG1 * -> 32:2, *-1 to cooperate + 32 *-1 + 33 to + 34 cooperate + sense: cooperate-v.1 + prop: cooperate.01 + v * -> 34:0, cooperate + ARG0 * -> 32:0, *-1 -> 27:1, the two firms + LINK-PCR * -> 32:0, *-1 -> 27:1, the two firms + * -> 32:0, *-1 -> 27:1, the two firms + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Currently, TCH is the world's fifth-largest manufacturer of nylon 66 filament, supplying 8 % of the global market. + +Treebanked sentence: +-------------------- + Currently , TCH is the world 's fifth - largest manufacturer of nylon 66 filament , *PRO*-1 supplying 8 % of the global + market . + +Tree: +----- + (TOP (S (ADVP-TMP (RB Currently)) + (, ,) + (NP-SBJ-1 (NNP TCH)) + (VP (VBZ is) + (NP-PRD (NP (NP (DT the) + (NN world) + (POS 's)) + (ADJP (JJ fifth) + (HYPH -) + (JJS largest)) + (NN manufacturer)) + (PP (IN of) + (NP (NML (NN nylon) + (CD 66)) + (NN filament)))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG supplying) + (NP (NP (CD 8) + (NN %)) + (PP (IN of) + (NP (DT the) + (JJ global) + (NN market))))))) + (. .))) + +Leaves: +------- + 0 Currently + 1 , + 2 TCH + coref: IDENT 48 2-2 TCH + name: ORG 2-2 TCH + 3 is + sense: be-v.2 + prop: be.01 + v * -> 3:0, is + ARGM-TMP * -> 0:1, Currently + ARG1 * -> 16:0, *PRO*-1 -> 2:1, TCH + ARG2 * -> 4:3, the world 's fifth - largest manufacturer of nylon 66 filament + ARGM-ADV * -> 16:2, *PRO*-1 supplying 8 % of the global market + 4 the + coref: IDENT 77 4-6 the world 's + 5 world + sense: world-n.1 + 6 's + 7 fifth + 8 - + 9 largest + 10 manufacturer + sense: manufacturer-n.1 + 11 of + 12 nylon + 13 66 + name: CARDINAL 13-13 66 + 14 filament + 15 , + 16 *PRO*-1 + 17 supplying + sense: supply-v.1 + prop: supply.01 + v * -> 17:0, supplying + ARG0 * -> 16:0, *PRO*-1 -> 2:1, TCH + ARG1 * -> 18:2, 8 % of the global market + 18 8 + name: PERCENT 18-19 8 % + 19 % + 20 of + 21 the + 22 global + 23 market + sense: market-n.1 + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It stands as another example of a Taiwanese company successfully taking on the big boys in international markets. + +Treebanked sentence: +-------------------- + It stands as another example of a Taiwanese company successfully taking on the big boys in international markets . + +Tree: +----- + (TOP (S (NP-SBJ (PRP It)) + (VP (VBZ stands) + (PP (IN as) + (NP (NP (DT another) + (NN example)) + (PP (IN of) + (S-NOM (NP-SBJ (DT a) + (JJ Taiwanese) + (NN company)) + (ADVP (RB successfully)) + (VP (VBG taking) + (PP-CLR (IN on) + (NP (DT the) + (JJ big) + (NNS boys))) + (PP-LOC (IN in) + (NP (JJ international) + (NNS markets))))))))) + (. .))) + +Leaves: +------- + 0 It + coref: IDENT 48 0-0 It + 1 stands + sense: stand-v.3 + prop: stand.04 + v * -> 1:0, stands + ARG1 * -> 0:1, It + ARG2 * -> 2:1, as another example of a Taiwanese company successfully taking on the big boys in + international markets + 2 as + 3 another + 4 example + sense: example-n.2 + 5 of + 6 a + 7 Taiwanese + name: NORP 7-7 Taiwanese + 8 company + sense: company-n.1 + 9 successfully + 10 taking + sense: take-v.6 + prop: take.21 + v * -> 10:0, taking + -> 11:0, on + ARG0 * -> 6:1, a Taiwanese company + ARGM-MNR * -> 9:1, successfully + ARG1 * -> 12:1, the big boys + ARGM-LOC * -> 15:1, in international markets + 11 on + 12 the + 13 big + 14 boys + 15 in + 16 international + 17 markets + sense: market-n.1 + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The original use of nylon 66 was in tights and swimwear, but these are far from being the only applications for such a + superior new fiber. + +Treebanked sentence: +-------------------- + The original use of nylon 66 was in tights and swimwear , but these are far from *PRO* being the only applications for + such a superior new fiber . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (DT The) + (JJ original) + (NN use)) + (PP (IN of) + (NP (NN nylon) + (CD 66)))) + (VP (VBD was) + (PP-PRD (IN in) + (NP (NNS tights) + (CC and) + (NN swimwear))))) + (, ,) + (CC but) + (S (NP-SBJ (DT these)) + (VP (VBP are) + (ADVP-PRD (RB far) + (PP (IN from) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG being) + (NP-PRD (NP (DT the) + (JJ only) + (NNS applications)) + (PP (IN for) + (NP (PDT such) + (DT a) + (JJ superior) + (JJ new) + (NN fiber)))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 original + 2 use + sense: use-n.3 + 3 of + 4 nylon + coref: IDENT 91 4-5 nylon 66 + 5 66 + name: CARDINAL 5-5 66 + 6 was + sense: be-v.1 + prop: be.01 + v * -> 6:0, was + ARG1 * -> 0:2, The original use of nylon 66 + ARG2 * -> 7:1, in tights and swimwear + 7 in + 8 tights + coref: IDENT 92 8-10 tights and swimwear + 9 and + 10 swimwear + 11 , + 12 but + 13 these + coref: IDENT 92 13-13 these + 14 are + sense: be-v.1 + prop: be.01 + v * -> 14:0, are + ARG1 * -> 13:1, these + ARG2 * -> 15:1, far from *PRO* being the only applications for such a superior new fiber + 15 far + 16 from + 17 *PRO* + 18 being + sense: be-v.1 + prop: be.01 + v * -> 18:0, being + ARG1 * -> 17:0, *PRO* + ARG2 * -> 19:2, the only applications for such a superior new fiber + LINK-PCR * -> 13:1, these + * -> 17:0, *PRO* + 19 the + 20 only + 21 applications + 22 for + 23 such + 24 a + 25 superior + 26 new + 27 fiber + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But because the filaments are so thin-LRB-only half the thickness of a human hair-RRB-, they can easily break at the + yarn spinning stage, and at the dyeing stage the yarn absorbs only the smallest dye molecules. + +Treebanked sentence: +-------------------- + But because the filaments are so thin -LRB- only half the thickness of a human hair -RRB- , they can easily break at the + yarn spinning stage , and at the dyeing stage the yarn absorbs only the smallest dye molecules . + +Tree: +----- + (TOP (S (CC But) + (S (SBAR-PRP (IN because) + (S (NP-SBJ (DT the) + (NNS filaments)) + (VP (VBP are) + (UCP-PRD (ADJP (RB so) + (JJ thin)) + (-LRB- -LRB-) + (NP (NP (RB only) + (PDT half) + (DT the) + (NN thickness)) + (PP (IN of) + (NP (DT a) + (JJ human) + (NN hair)))))))) + (-RRB- -RRB-) + (, ,) + (NP-SBJ (PRP they)) + (VP (MD can) + (ADVP (RB easily)) + (VP (VB break) + (PP (IN at) + (NP (DT the) + (NML (NN yarn) + (NN spinning)) + (NN stage)))))) + (, ,) + (CC and) + (S (PP-TMP (IN at) + (NP (DT the) + (NN dyeing) + (NN stage))) + (NP-SBJ (DT the) + (NN yarn)) + (VP (VBZ absorbs) + (ADVP (RB only)) + (NP (DT the) + (JJS smallest) + (NN dye) + (NNS molecules)))) + (. .))) + +Leaves: +------- + 0 But + 1 because + 2 the + coref: IDENT 98 2-3 the filaments + 3 filaments + 4 are + sense: be-v.1 + prop: be.01 + v * -> 4:0, are + ARG1 * -> 2:1, the filaments + ARG2 * -> 5:2, so thin -LRB- only half the thickness of a human hair + 5 so + 6 thin + 7 -LRB- + 8 only + 9 half + 10 the + 11 thickness + sense: thickness-n.1 + 12 of + 13 a + 14 human + 15 hair + 16 -RRB- + 17 , + 18 they + coref: IDENT 98 18-18 they + 19 can + 20 easily + 21 break + sense: break-v.1 + prop: break.01 + v * -> 21:0, break + ARGM-CAU * -> 1:1, because the filaments are so thin -LRB- only half the thickness of a human hair + ARG1 * -> 18:1, they + ARGM-MOD * -> 19:0, can + ARGM-MNR * -> 20:1, easily + ARGM-TMP * -> 22:1, at the yarn spinning stage + 22 at + 23 the + 24 yarn + 25 spinning + 26 stage + sense: stage-n.2 + 27 , + 28 and + 29 at + 30 the + 31 dyeing + 32 stage + sense: stage-n.2 + 33 the + 34 yarn + 35 absorbs + sense: absorb-v.1 + prop: absorb.01 + v * -> 35:0, absorbs + ARGM-TMP * -> 29:1, at the dyeing stage + ARG0 * -> 33:1, the yarn + ARGM-ADV * -> 36:1, only + ARG1 * -> 37:1, the smallest dye molecules + 36 only + 37 the + 38 smallest + 39 dye + 40 molecules + 41 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hence firms around the world are still feeling their way forward on how to use this fiber. + +Treebanked sentence: +-------------------- + Hence firms around the world are still feeling their way forward on how *PRO* to use this fiber *T*-9 . + +Tree: +----- + (TOP (S (ADVP (RB Hence)) + (NP-SBJ (NP (NNS firms)) + (PP-LOC (IN around) + (NP (DT the) + (NN world)))) + (VP (VBP are) + (ADVP-TMP (RB still)) + (VP (VBG feeling) + (NP (PRP$ their) + (NN way)) + (ADVP (RB forward)) + (PP (IN on) + (SBAR-NOM (WHADVP-9 (WRB how)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB use) + (NP (DT this) + (NN fiber)) + (ADVP-MNR (-NONE- *T*-9))))))))) + (. .))) + +Leaves: +------- + 0 Hence + 1 firms + coref: IDENT 107 1-4 firms around the world + 2 around + 3 the + coref: IDENT 77 3-4 the world + 4 world + sense: world-n.1 + 5 are + prop: be.03 + v * -> 5:0, are + 6 still + 7 feeling + sense: feel-v.2 + prop: feel.03 + v * -> 7:0, feeling + ARGM-DIS * -> 0:1, Hence + ARG0 * -> 1:2, firms around the world + ARGM-TMP * -> 6:1, still + ARG1 * -> 8:1, their way + ARGM-PRD * -> 10:1, forward + ARGM-ADV * -> 11:1, on how *PRO* to use this fiber *T*-9 + coref: IDENT 113 7-7 feeling + 8 their + coref: IDENT 107 8-8 their + 9 way + sense: way-n.4 + 10 forward + 11 on + 12 how + 13 *PRO* + 14 to + 15 use + sense: use-v.1 + prop: use.01 + v * -> 15:0, use + ARG0 * -> 1:2, firms around the world + ARG0 * -> 13:0, *PRO* + ARG1 * -> 16:1, this fiber + ARG2 * -> 18:0, *T*-9 -> 12:1, how + 16 this + coref: IDENT 91 16-17 this fiber + 17 fiber + 18 *T*-9 + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For this reason, TCH approached the CTI to conduct a series of cooperative development projects. + +Treebanked sentence: +-------------------- + For this reason , TCH approached the CTI *PRO* to conduct a series of cooperative development projects . + +Tree: +----- + (TOP (S (PP-PRP (IN For) + (NP (DT this) + (NN reason))) + (, ,) + (NP-SBJ (NNP TCH)) + (VP (VBD approached) + (NP (DT the) + (NNP CTI)) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB conduct) + (NP (NP (DT a) + (NN series)) + (PP (IN of) + (NP (JJ cooperative) + (NN development) + (NNS projects)))))))) + (. .))) + +Leaves: +------- + 0 For + 1 this + coref: IDENT 113 1-2 this reason + 2 reason + sense: reason-n.1 + 3 , + 4 TCH + coref: IDENT 48 4-4 TCH + name: ORG 4-4 TCH + 5 approached + sense: approach-v.2 + prop: approach.02 + v * -> 5:0, approached + ARGM-CAU * -> 0:1, For this reason + ARG0 * -> 4:1, TCH + ARG1 * -> 6:1, the CTI + ARGM-PRP * -> 8:2, *PRO* to conduct a series of cooperative development projects + 6 the + coref: IDENT 115 6-7 the CTI + 7 CTI + name: ORG 7-7 CTI + 8 *PRO* + 9 to + 10 conduct + sense: conduct-v.2 + prop: conduct.01 + v * -> 10:0, conduct + ARG0 * -> 8:0, *PRO* + ARG1 * -> 11:2, a series of cooperative development projects + 11 a + 12 series + sense: series-n.1 + 13 of + 14 cooperative + 15 development + 16 projects + sense: project-n.1 + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + To date they have successfully developed various new yarns blended from nylon 66 and other fibers such as acrylic or + polyester, and have staged numerous seminars and visited many firms to teach users how to weave and dye the new fabrics + and how to design for them. + +Treebanked sentence: +-------------------- + To date they have successfully developed various new yarns blended * from nylon 66 and other fibers such as acrylic or + polyester , and have staged numerous seminars and visited many firms *PRO*-9 to teach users how *PRO* to weave and dye + the new fabrics *T*-1 and how *PRO* to design for them *T*-2 . + +Tree: +----- + (TOP (S (PP-TMP (IN To) + (NP (NN date))) + (NP-SBJ-9 (PRP they)) + (VP (VP (VBP have) + (ADVP (RB successfully)) + (VP (VBN developed) + (NP (NP (JJ various) + (JJ new) + (NNS yarns)) + (VP (VBN blended) + (NP (-NONE- *)) + (PP (IN from) + (NP (NP (NN nylon) + (CD 66)) + (CC and) + (NP (NP (JJ other) + (NNS fibers)) + (PP (JJ such) + (IN as) + (NP (NN acrylic) + (CC or) + (NN polyester)))))))))) + (, ,) + (CC and) + (VP (VBP have) + (VP (VP (VBN staged) + (NP (JJ numerous) + (NNS seminars))) + (CC and) + (VP (VBD visited) + (NP (JJ many) + (NNS firms)) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB teach) + (NP (NNS users)) + (SBAR (SBAR (WHADVP-1 (WRB how)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB weave) + (CC and) + (VB dye) + (NP (DT the) + (JJ new) + (NNS fabrics)) + (ADVP-MNR (-NONE- *T*-1)))))) + (CC and) + (SBAR (WHADVP-2 (WRB how)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB design) + (PP (IN for) + (NP (PRP them))) + (ADVP-MNR (-NONE- *T*-2)))))))))))))) + (. .))) + +Leaves: +------- + 0 To + 1 date + sense: date-n.5 + 2 they + coref: IDENT 48 2-2 they + 3 have + prop: have.01 + v * -> 3:0, have + 4 successfully + 5 developed + sense: develop-v.1 + prop: develop.02 + v * -> 5:0, developed + ARGM-TMP * -> 0:1, To date + ARG0 * -> 32:0, *PRO*-9 -> 2:1, they + ARGM-MNR * -> 4:1, successfully + ARG1 * -> 6:2, various new yarns blended * from nylon 66 and other fibers such as acrylic or + polyester + 6 various + 7 new + 8 yarns + 9 blended + sense: blend-v.1 + prop: blend.01 + v * -> 9:0, blended + ARG3 * -> 10:0, * + ARG1 * -> 11:1, from nylon 66 and other fibers such as acrylic or polyester + LINK-PCR * -> 6:1, various new yarns + * -> 10:0, * + 10 * + 11 from + 12 nylon + 13 66 + name: CARDINAL 13-13 66 + 14 and + 15 other + 16 fibers + 17 such + 18 as + 19 acrylic + 20 or + 21 polyester + 22 , + 23 and + 24 have + prop: have.01 + v * -> 24:0, have + 25 staged + sense: stage-v.2 + prop: stage.01 + v * -> 25:0, staged + ARGM-TMP * -> 0:1, To date + ARG0 * -> 32:0, *PRO*-9 -> 2:1, they + ARG1 * -> 26:1, numerous seminars + 26 numerous + 27 seminars + 28 and + 29 visited + sense: visit-v.1 + prop: visit.01 + v * -> 29:0, visited + ARGM-TMP * -> 0:1, To date + ARG0 * -> 32:0, *PRO*-9 -> 2:1, they + ARG1 * -> 30:1, many firms + ARGM-PRP * -> 32:2, *PRO*-9 to teach users how *PRO* to weave and dye the new fabrics *T*-1 and how *PRO* + to design for them *T*-2 + 30 many + 31 firms + 32 *PRO*-9 + 33 to + 34 teach + sense: teach-v.1 + prop: teach.01 + v * -> 34:0, teach + ARG0 * -> 32:0, *PRO*-9 -> 2:1, they + ARG2 * -> 35:1, users + ARG1 * -> 36:3, how *PRO* to weave and dye the new fabrics *T*-1 and how *PRO* to design for them + *T*-2 + 35 users + 36 how + 37 *PRO* + 38 to + 39 weave + sense: weave-v.2 + prop: weave.01 + v * -> 39:0, weave + ARG0 * -> 37:0, *PRO* + ARG1 * -> 42:1, the new fabrics + ARGM-MNR * -> 45:0, *T*-1 -> 36:1, how + 40 and + 41 dye + prop: dye.01 + v * -> 41:0, dye + ARG0 * -> 37:0, *PRO* + ARG1 * -> 42:1, the new fabrics + ARGM-MNR * -> 45:0, *T*-1 -> 36:1, how + LINK-PCR * -> 35:1, users + * -> 37:0, *PRO* + 42 the + coref: IDENT 135 42-44 the new fabrics + 43 new + 44 fabrics + 45 *T*-1 + 46 and + 47 how + 48 *PRO* + 49 to + 50 design + prop: design.01 + v * -> 50:0, design + ARG0 * -> 48:0, *PRO* + ARG2 * -> 51:1, for them + ARGM-MNR * -> 53:0, *T*-2 -> 47:1, how + LINK-PCR * -> 35:1, users + * -> 48:0, *PRO* + 51 for + 52 them + coref: IDENT 135 52-52 them + 53 *T*-2 + 54 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Why go to such lengths to popularize new fibers ? + +Treebanked sentence: +-------------------- + Why *PRO* go to such lengths *PRO* to popularize new fibers *T*-9 ? + +Tree: +----- + (TOP (SBARQ (WHADVP-9 (WRB Why)) + (S (NP-SBJ-1 (-NONE- *PRO*)) + (VP (VB go) + (PP-DIR (IN to) + (NP (JJ such) + (NNS lengths))) + (S-PRP (NP-SBJ-1 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB popularize) + (NP (JJ new) + (NNS fibers))))) + (ADVP (-NONE- *T*-9)))) + (. ?))) + +Leaves: +------- + 0 Why + 1 *PRO* + 2 go + sense: go-v.1 + prop: go.01 + v * -> 2:0, go + ARG1 * -> 1:0, *PRO* + ARG2 * -> 3:1, to such lengths + ARGM-PRP * -> 6:2, *PRO* to popularize new fibers + ARGM-PRP * -> 11:0, *T*-9 -> 0:1, Why + 3 to + 4 such + 5 lengths + 6 *PRO* + 7 to + 8 popularize + prop: popularize.01 + v * -> 8:0, popularize + ARG0 * -> 6:0, *PRO* + ARG1 * -> 9:1, new fibers + 9 new + 10 fibers + 11 *T*-9 + 12 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Grace Kuo says the textile industry today needs to take a lead from the electronics industry, and constantly strive for + innovation : " What consumer today does n't already have a wardrobe full of clothes ? + +Treebanked sentence: +-------------------- + Grace Kuo says 0 the textile industry today needs *-2 to take a lead from the electronics industry , and constantly + strive for innovation : " What consumer *T*-1 today does n't already have a wardrobe full of clothes ? + +Tree: +----- + (TOP (S (S (NP-SBJ (NNP Grace) + (NNP Kuo)) + (VP (VBZ says) + (SBAR (-NONE- 0) + (S (NP-SBJ-2 (NP (DT the) + (NN textile) + (NN industry)) + (NP-TMP (NN today))) + (VP (VBZ needs) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VP (VB take) + (NP (DT a) + (NN lead)) + (PP (IN from) + (NP (DT the) + (NN electronics) + (NN industry)))) + (, ,) + (CC and) + (VP (ADVP (RB constantly)) + (VB strive) + (PP-CLR (IN for) + (NP (NN innovation)))))))))))) + (: :) + (`` ") + (SBARQ (WHNP-1 (WDT What) + (NN consumer)) + (SQ (NP-SBJ (-NONE- *T*-1)) + (NP-TMP (NN today)) + (VP (VBZ does) + (RB n't) + (ADVP (RB already)) + (VP (VB have) + (NP (NP (DT a) + (NN wardrobe)) + (ADJP (JJ full) + (PP (IN of) + (NP (NNS clothes))))))))) + (. ?))) + +Leaves: +------- + 0 Grace + coref: IDENT 1 0-1 Grace Kuo + name: PERSON 0-1 Grace Kuo + 1 Kuo + 2 says + sense: say-v.1 + prop: say.01 + v * -> 2:0, says + ARG0 * -> 0:1, Grace Kuo + ARG1 * -> 3:1, 0 the textile industry today needs *-2 to take a lead from the electronics industry , + and constantly strive for innovation + 3 0 + 4 the + 5 textile + 6 industry + 7 today + coref: IDENT 145 7-7 today + name: TIME 7-7 today + 8 needs + sense: need-v.2 + prop: need.01 + v * -> 8:0, needs + ARG0 * -> 4:2, the textile industry today + ARG1 * -> 9:2, *-2 to take a lead from the electronics industry , and constantly strive for + innovation + 9 *-2 + 10 to + 11 take + sense: take-v.6 + prop: take.01 + v * -> 11:0, take + ARG0 * -> 9:0, *-2 -> 4:2, the textile industry today + ARG1 * -> 12:1, a lead + ARG2 * -> 14:1, from the electronics industry + 12 a + 13 lead + sense: lead-n.3 + 14 from + 15 the + 16 electronics + 17 industry + sense: industry-n.1 + 18 , + 19 and + 20 constantly + 21 strive + sense: strive-v.1 + prop: strive.01 + v * -> 21:0, strive + ARG0 * -> 9:0, *-2 -> 4:2, the textile industry today + ARGM-ADV * -> 20:1, constantly + ARG1 * -> 22:1, for innovation + 22 for + 23 innovation + sense: innovation-n.2 + prop: innovation.01 + n * -> 23:0, innovation + 24 : + 25 " + 26 What + 27 consumer + 28 *T*-1 + 29 today + sense: today-n.2 + coref: IDENT 145 29-29 today + 30 does + prop: do.01 + v * -> 30:0, does + 31 n't + 32 already + 33 have + sense: have-v.1 + prop: have.03 + v * -> 33:0, have + ARG0 * -> 28:0, *T*-1 -> 26:1, What consumer + ARGM-TMP * -> 29:1, today + ARGM-NEG * -> 31:0, n't + ARGM-ADV * -> 32:1, already + ARG1 * -> 34:2, a wardrobe full of clothes + 34 a + 35 wardrobe + 36 full + 37 of + 38 clothes + 39 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + If you want to persuade her to spend, you have to keep putting out products which look novel at the first glance and + feel great at the first touch. + +Treebanked sentence: +-------------------- + If you want *PRO*-9 to persuade her *PRO*-3 to spend , you have *-1 to keep *-1 putting out products which *T*-2 look + novel at the first glance and feel great at the first touch . + +Tree: +----- + (TOP (S (SBAR-ADV (IN If) + (S (NP-SBJ-9 (PRP you)) + (VP (VBP want) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB persuade) + (NP-3 (PRP her)) + (S (NP-SBJ (-NONE- *PRO*-3)) + (VP (TO to) + (VP (VB spend)))))))))) + (, ,) + (NP-SBJ-1 (PRP you)) + (VP (VBP have) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB keep) + (S (NP-SBJ (-NONE- *-1)) + (VP (VBG putting) + (PRT (RP out)) + (NP (NP (NNS products)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VP (VBP look) + (ADJP-PRD (JJ novel)) + (PP (IN at) + (NP (DT the) + (JJ first) + (NN glance)))) + (CC and) + (VP (VBP feel) + (ADJP-PRD (JJ great)) + (PP (IN at) + (NP (DT the) + (JJ first) + (NN touch)))))))))))))) + (. .))) + +Leaves: +------- + 0 If + 1 you + 2 want + sense: want-v.1 + prop: want.01 + v * -> 2:0, want + ARG0 * -> 3:0, *PRO*-9 -> 1:1, you + ARG1 * -> 3:2, *PRO*-9 to persuade her *PRO*-3 to spend + 3 *PRO*-9 + 4 to + 5 persuade + sense: persuade-v.1 + prop: persuade.01 + v * -> 5:0, persuade + ARG0 * -> 3:0, *PRO*-9 -> 1:1, you + ARG1 * -> 7:0, *PRO*-3 -> 6:1, her + ARG2 * -> 7:2, *PRO*-3 to spend + 6 her + 7 *PRO*-3 + 8 to + 9 spend + sense: spend-v.2 + prop: spend.01 + v * -> 9:0, spend + ARG0 * -> 7:0, *PRO*-3 -> 6:1, her + 10 , + 11 you + 12 have + sense: have-v.12 + prop: have.02 + v * -> 12:0, have + ARGM-ADV * -> 0:1, If you want *PRO*-9 to persuade her *PRO*-3 to spend + 13 *-1 + 14 to + 15 keep + sense: keep-v.1 + prop: keep.02 + v * -> 15:0, keep + ARG0 * -> 16:0, *-1 -> 11:1, you + ARG1 * -> 16:2, *-1 putting out products which *T*-2 look novel at the first glance and feel great at + the first touch + 16 *-1 + 17 putting + prop: put.10 + v * -> 17:0, putting + -> 18:1, out + ARG0 * -> 16:0, *-1 -> 11:1, you + ARG1 * -> 19:2, products which *T*-2 look novel at the first glance and feel great at the first touch + 18 out + 19 products + sense: product-n.1 + 20 which + 21 *T*-2 + 22 look + sense: look-v.2 + prop: look.02 + v * -> 22:0, look + ARG0 * -> 21:0, *T*-2 -> 20:1, which + ARG1 * -> 23:1, novel + ARGM-TMP * -> 24:1, at the first glance + LINK-SLC * -> 19:1, products + * -> 21:0, *T*-2 -> 20:1, which + 23 novel + 24 at + 25 the + 26 first + name: ORDINAL 26-26 first + 27 glance + 28 and + 29 feel + sense: feel-v.2 + prop: feel.05 + v * -> 29:0, feel + ARG1 * -> 21:0, *T*-2 -> 20:1, which + ARG2 * -> 30:1, great + ARGM-TMP * -> 31:1, at the first touch + LINK-SLC * -> 19:1, products + * -> 21:0, *T*-2 -> 20:1, which + 30 great + 31 at + 32 the + 33 first + 34 touch + sense: touch-n.8 + prop: touch.01 + n * -> 34:0, touch + ARGM-TMP * -> 33:0, first + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Only then can you create demand and stimulate consumption, " she avers. + +Treebanked sentence: +-------------------- + Only then can you create demand and stimulate consumption , " she avers *T*-1 . + +Tree: +----- + (TOP (S (SINV-TPC-1 (ADVP (RB Only) + (RB then)) + (MD can) + (NP-SBJ (PRP you)) + (VP (VP (VB create) + (NP (NN demand))) + (CC and) + (VP (VB stimulate) + (NP (NN consumption))))) + (, ,) + ('' ") + (NP-SBJ (PRP she)) + (VP (VBZ avers) + (SINV (-NONE- *T*-1))) + (. .))) + +Leaves: +------- + 0 Only + 1 then + 2 can + 3 you + 4 create + sense: create-v.1 + prop: create.01 + v * -> 4:0, create + ARGM-ADV * -> 0:1, Only then + ARGM-MOD * -> 2:0, can + ARG0 * -> 3:1, you + ARG1 * -> 5:1, demand + 5 demand + sense: demand-n.3 + 6 and + 7 stimulate + sense: stimulate-v.1 + prop: stimulate.01 + v * -> 7:0, stimulate + ARGM-ADV * -> 0:1, Only then + ARGM-MOD * -> 2:0, can + ARG0 * -> 3:1, you + ARG1 * -> 8:1, consumption + 8 consumption + sense: consumption-n.1 + prop: consumption.01 + n * -> 8:0, consumption + 9 , + 10 " + 11 she + coref: IDENT 1 11-11 she + 12 avers + prop: aver.01 + v * -> 12:0, avers + ARG0 * -> 11:1, she + ARG1 * -> 13:0, *T*-1 -> 0:2, Only then can you create demand and stimulate consumption + 13 *T*-1 + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Behind the quest for innovation and change, there needs to be a great deal of R&D work, along with a keen nose for the + market. + +Treebanked sentence: +-------------------- + Behind the quest for innovation and change , there needs *-1 to be a great deal of R&D work , along with a keen nose for + the market . + +Tree: +----- + (TOP (S (PP (IN Behind) + (NP (NP (DT the) + (NN quest)) + (PP (IN for) + (NP (NN innovation) + (CC and) + (NN change))))) + (, ,) + (NP-SBJ-1 (EX there)) + (VP (VBZ needs) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB be) + (NP-PRD (NP (NP (DT a) + (JJ great) + (NN deal)) + (PP (IN of) + (NP (NN R&D) + (NN work)))) + (, ,) + (PP (IN along) + (PP (IN with) + (NP (NP (DT a) + (JJ keen) + (NN nose)) + (PP (IN for) + (NP (DT the) + (NN market))))))))))) + (. .))) + +Leaves: +------- + 0 Behind + 1 the + 2 quest + 3 for + 4 innovation + sense: innovation-n.2 + prop: innovation.01 + n * -> 4:0, innovation + 5 and + 6 change + sense: change-n.3 + 7 , + 8 there + 9 needs + sense: need-v.2 + prop: need.01 + v * -> 9:0, needs + ARGM-LOC * -> 0:1, Behind the quest for innovation and change + ARG1 * -> 10:2, *-1 to be a great deal of R&D work , along with a keen nose for the market + 10 *-1 + 11 to + 12 be + sense: be-v.3 + prop: be.02 + v * -> 12:0, be + ARG1 * -> 13:3, a great deal of R&D work , along with a keen nose for the market + 13 a + 14 great + 15 deal + sense: deal-n.2 + 16 of + 17 R&D + 18 work + sense: work-n.4 + 19 , + 20 along + 21 with + 22 a + 23 keen + 24 nose + 25 for + 26 the + 27 market + sense: market-n.1 + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But 95 % of Taiwan's textile firms are small or medium-sized enterprises. + +Treebanked sentence: +-------------------- + But 95 % of Taiwan 's textile firms are small or medium - sized enterprises . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (NP (CD 95) + (NN %)) + (PP (IN of) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NNS firms)))) + (VP (VBP are) + (NP-PRD (ADJP (ADJP (JJ small) + (CC or) + (JJ medium)) + (HYPH -) + (JJ sized)) + (NNS enterprises))) + (. .))) + +Leaves: +------- + 0 But + 1 95 + coref: IDENT 183 1-7 95 % of Taiwan 's textile firms + name: PERCENT 1-2 95 % + 2 % + 3 of + 4 Taiwan + name: GPE 4-4 Taiwan + 5 's + 6 textile + 7 firms + 8 are + sense: be-v.1 + prop: be.01 + v * -> 8:0, are + ARGM-DIS * -> 0:0, But + ARG1 * -> 1:2, 95 % of Taiwan 's textile firms + ARG2 * -> 9:3, small or medium - sized enterprises + 9 small + 10 or + 11 medium + 12 - + 13 sized + 14 enterprises + 15 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They do not have the facilities or staff to carry on R&D, and they lack the perspective to take a broad view of + worldwide trends. + +Treebanked sentence: +-------------------- + They do not have the facilities or staff 0 *T*-1 to carry on R&D , and they lack the perspective 0 *PRO* to take a broad + view of worldwide trends *T*-2 . + +Tree: +----- + (TOP (S (S (NP-SBJ (PRP They)) + (VP (VBP do) + (RB not) + (VP (VB have) + (NP (NP (DT the) + (NNS facilities) + (CC or) + (NN staff)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (TO to) + (VP (VB carry) + (PRT (RP on)) + (NP (NN R&D)))))))))) + (, ,) + (CC and) + (S (NP-SBJ (PRP they)) + (VP (VBP lack) + (NP (NP (DT the) + (NN perspective)) + (SBAR (WHADVP-2 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB take) + (NP (NP (DT a) + (JJ broad) + (NN view)) + (PP (IN of) + (NP (JJ worldwide) + (NNS trends)))) + (ADVP (-NONE- *T*-2))))))))) + (. .))) + +Leaves: +------- + 0 They + coref: IDENT 183 0-0 They + 1 do + prop: do.01 + v * -> 1:0, do + 2 not + 3 have + sense: have-v.1 + prop: have.03 + v * -> 3:0, have + ARG0 * -> 0:1, They + ARGM-NEG * -> 2:0, not + ARG1 * -> 4:2, the facilities or staff 0 *T*-1 to carry on R&D + 4 the + 5 facilities + sense: facility-n.1 + 6 or + 7 staff + sense: staff-n.1 + 8 0 + 9 *T*-1 + 10 to + 11 carry + sense: carry-v.8 + prop: carry.02 + v * -> 11:0, carry + -> 12:1, on + ARG0 * -> 9:0, *T*-1 -> 8:0, 0 + ARG1 * -> 13:1, R&D + LINK-SLC * -> 4:1, the facilities or staff + * -> 9:0, *T*-1 -> 8:0, 0 + 12 on + 13 R&D + 14 , + 15 and + 16 they + coref: IDENT 183 16-16 they + 17 lack + sense: lack-v.1 + prop: lack.01 + v * -> 17:0, lack + ARG0 * -> 16:1, they + ARG1 * -> 18:2, the perspective 0 *PRO* to take a broad view of worldwide trends *T*-2 + 18 the + 19 perspective + sense: perspective-n.1 + 20 0 + 21 *PRO* + 22 to + 23 take + sense: take-v.6 + prop: take.01 + v * -> 23:0, take + ARG0 * -> 21:0, *PRO* + ARG1 * -> 24:2, a broad view of worldwide trends + ARGM-ADV * -> 20:0, 0 + LINK-SLC * -> 18:1, the perspective + * -> 20:0, 0 + 24 a + 25 broad + 26 view + sense: view-n.1 + 27 of + 28 worldwide + 29 trends + sense: trend-n.1 + 30 *T*-2 + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hence in the upgrading process, organizations like the CTI will play an increasingly important role. + +Treebanked sentence: +-------------------- + Hence in the upgrading process , organizations like the CTI will play an increasingly important role . + +Tree: +----- + (TOP (S (ADVP (RB Hence)) + (PP (IN in) + (NP (DT the) + (NN upgrading) + (NN process))) + (, ,) + (NP-SBJ (NP (NNS organizations)) + (PP (IN like) + (NP (DT the) + (NNP CTI)))) + (VP (MD will) + (VP (VB play) + (NP (DT an) + (ADJP (RB increasingly) + (JJ important)) + (NN role)))) + (. .))) + +Leaves: +------- + 0 Hence + 1 in + 2 the + 3 upgrading + 4 process + sense: process-n.1 + prop: process.01 + n * -> 4:0, process + ARG1 * -> 3:0, upgrading + 5 , + 6 organizations + sense: organization-n.1 + 7 like + 8 the + coref: IDENT 115 8-9 the CTI + 9 CTI + name: ORG 9-9 CTI + 10 will + 11 play + sense: play-v.3 + prop: play.02 + v * -> 11:0, play + ARGM-DIS * -> 0:1, Hence + ARGM-LOC * -> 1:1, in the upgrading process + ARG0 * -> 6:2, organizations like the CTI + ARGM-MOD * -> 10:0, will + ARG1 * -> 12:1, an increasingly important role + 12 an + 13 increasingly + 14 important + 15 role + sense: role-n.1 + 16 . + + +======================================================================================================================== +Coreference chains for section 3: +--------------------------------- + + Chain 1 (IDENT) + 57.0-1 Grace Kuo + 61.28-29 Grace Kuo + 71.0-1 Grace Kuo + 73.11-11 she + + Chain 16 (IDENT) + 58.11-12 a fabric + 58.14-14 it + 58.18-18 it + + Chain 24 (IDENT) + 58.13-13 transforms + 59.6-6 this + + Chain 23 (IDENT) + 59.0-3 The big international manufacturers + 59.30-30 they + 59.40-40 their + + Chain 48 (IDENT) + 60.7-7 TCH + 60.27-28 the company + 60.33-33 they + 61.4-4 we + 61.18-18 us + 62.10-10 TCH + 62.19-20 the company + 63.2-2 TCH + 64.0-0 It + 68.4-4 TCH + 69.2-2 they + + Chain 55 (IDENT) + 60.34-34 succeeded + 61.6-6 that + + Chain 56 (IDENT) + 61.8-8 Dupont + 61.10-10 their + 62.15-15 Dupont + + Chain 77 (IDENT) + 63.4-6 the world 's + 67.3-4 the world + + Chain 91 (IDENT) + 65.4-5 nylon 66 + 67.16-17 this fiber + + Chain 92 (IDENT) + 65.8-10 tights and swimwear + 65.13-13 these + + Chain 98 (IDENT) + 66.2-3 the filaments + 66.18-18 they + + Chain 107 (IDENT) + 67.1-4 firms around the world + 67.8-8 their + + Chain 113 (IDENT) + 67.7-7 feeling + 68.1-2 this reason + + Chain 115 (IDENT) + 68.6-7 the CTI + 77.8-9 the CTI + + Chain 135 (IDENT) + 69.42-44 the new fabrics + 69.52-52 them + + Chain 145 (IDENT) + 71.7-7 today + 71.29-29 today + + Chain 183 (IDENT) + 75.1-7 95 % of Taiwan 's textile firms + 76.0-0 They + 76.16-16 they + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Flexibility v. perfectionism + +Treebanked sentence: +-------------------- + Flexibility v. perfectionism + +Tree: +----- + (TOP (NP (NP (NN Flexibility)) + (PP (IN v.) + (NP (NN perfectionism))))) + +Leaves: +------- + 0 Flexibility + 1 v. + 2 perfectionism + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, G-Fun Industrial Corporation general manager Tsai Chiu-hsiung, who worked at the CTI for many years before + setting up in business for himself in late 1998, has had a different experience. + +Treebanked sentence: +-------------------- + However , G - Fun Industrial Corporation general manager Tsai Chiu - hsiung , who *T*-9 worked at the CTI for many years + before *PRO* setting up in business for himself in late 1998 , has had a different experience . + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (NP-SBJ (NP (NML (NML (NML (NNP G) + (HYPH -) + (NNP Fun)) + (NNP Industrial) + (NNP Corporation)) + (JJ general) + (NN manager)) + (NNP Tsai) + (NNP Chiu) + (HYPH -) + (NNP hsiung)) + (, ,) + (SBAR (WHNP-9 (WP who)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBD worked) + (PP-LOC (IN at) + (NP (DT the) + (NNP CTI))) + (PP-TMP (IN for) + (NP (JJ many) + (NNS years))) + (PP-TMP (IN before) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG setting) + (PRT (RP up)) + (PP (IN in) + (NP (NP (NN business)) + (PP (IN for) + (NP (PRP himself))))) + (PP-TMP (IN in) + (NP (JJ late) + (CD 1998)))))))))) + (, ,) + (VP (VBZ has) + (VP (VBN had) + (NP (DT a) + (JJ different) + (NN experience)))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 G + coref: IDENT 3 2-33 G - Fun Industrial Corporation general manager Tsai Chiu - hsiung , who + *T*-9 worked at the CTI for many years before *PRO* setting up in business + for himself in late 1998 + coref: IDENT 125 2-6 G - Fun Industrial Corporation + name: ORG 2-6 G - Fun Industrial Corporation + 3 - + 4 Fun + 5 Industrial + 6 Corporation + 7 general + 8 manager + sense: manager-n.1 + 9 Tsai + ! name: PERSON 9-12 Tsai Chiu - hsiung + 10 Chiu + 11 - + 12 hsiung + 13 , + 14 who + 15 *T*-9 + 16 worked + sense: work-v.1 + prop: work.01 + v * -> 16:0, worked + ARG0 * -> 15:0, *T*-9 -> 14:1, who + ARG2 * -> 17:1, at the CTI + ARGM-TMP * -> 20:1, for many years + ARGM-TMP * -> 23:1, before *PRO* setting up in business for himself in late 1998 + LINK-SLC * -> 2:4, G - Fun Industrial Corporation general manager Tsai Chiu - hsiung + * -> 15:0, *T*-9 -> 14:1, who + 17 at + 18 the + coref: IDENT 6 18-19 the CTI + 19 CTI + name: ORG 19-19 CTI + 20 for + 21 many + 22 years + 23 before + 24 *PRO* + 25 setting + sense: set-v.4 + prop: set.03 + v * -> 25:0, setting + -> 26:1, up + ARG0 * -> 24:0, *PRO* + ARG1 * -> 27:1, in business for himself + ARGM-TMP * -> 31:1, in late 1998 + LINK-PCR * -> 2:4, G - Fun Industrial Corporation general manager Tsai Chiu - hsiung + * -> 24:0, *PRO* + 26 up + 27 in + 28 business + sense: business-n.1 + 29 for + 30 himself + coref: IDENT 3 30-30 himself + 31 in + 32 late + name: DATE 32-33 late 1998 + 33 1998 + 34 , + 35 has + prop: have.01 + v * -> 35:0, has + 36 had + sense: have-v.4 + 37 a + 38 different + 39 experience + sense: experience-n.2 + prop: experience.01 + n * -> 39:0, experience + ARGM-DIS * -> 0:1, However + ARG0 * -> 2:5, G - Fun Industrial Corporation general manager Tsai Chiu - hsiung , who *T*-9 worked + at the CTI for many years before *PRO* setting up in business for himself in late 1998 + ARGM-LVB * -> 36:0, had + ARGM-ADJ * -> 38:0, different + 40 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + While at the CTI, Tsai headed a project to develop the technology for making breathable waterproof fabrics. + +Treebanked sentence: +-------------------- + While at the CTI , Tsai headed a project 0 *T*-9 to develop the technology for *PRO* making breathable waterproof + fabrics . + +Tree: +----- + (TOP (S (SBAR-TMP (IN While) + (FRAG (PP-LOC-PRD (IN at) + (NP (DT the) + (NNP CTI))))) + (, ,) + (NP-SBJ (NNP Tsai)) + (VP (VBD headed) + (NP (NP (DT a) + (NN project)) + (SBAR (WHNP-9 (-NONE- 0)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (TO to) + (VP (VB develop) + (NP (NP (DT the) + (NN technology)) + (PP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG making) + (NP (JJ breathable) + (JJ waterproof) + (NNS fabrics)))))))))))) + (. .))) + +Leaves: +------- + 0 While + 1 at + 2 the + coref: IDENT 6 2-3 the CTI + 3 CTI + name: ORG 3-3 CTI + 4 , + 5 Tsai + coref: IDENT 3 5-5 Tsai + name: PERSON 5-5 Tsai + 6 headed + sense: head-v.2 + prop: head.01 + v * -> 6:0, headed + ARGM-TMP * -> 0:1, While at the CTI + ARG0 * -> 5:1, Tsai + ARG1 * -> 7:2, a project 0 *T*-9 to develop the technology for *PRO* making breathable waterproof + fabrics + 7 a + 8 project + sense: project-n.1 + 9 0 + 10 *T*-9 + 11 to + 12 develop + sense: develop-v.2 + prop: develop.02 + v * -> 12:0, develop + ARG0 * -> 10:0, *T*-9 -> 9:0, 0 + ARG1 * -> 13:2, the technology for *PRO* making breathable waterproof fabrics + LINK-SLC * -> 7:1, a project + * -> 10:0, *T*-9 -> 9:0, 0 + 13 the + coref: IDENT 28 13-20 the technology for *PRO* making breathable waterproof fabrics + 14 technology + sense: technology-n.1 + 15 for + 16 *PRO* + 17 making + prop: make.01 + v * -> 17:0, making + ARG0 * -> 16:0, *PRO* + ARG1 * -> 18:1, breathable waterproof fabrics + 18 breathable + 19 waterproof + 20 fabrics + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At that time, he says, few manufacturers in Taiwan were both interested in the technology and competent to apply it. + +Treebanked sentence: +-------------------- + At that time , he says , few manufacturers in Taiwan were both interested in the technology and competent *PRO*-9 to + apply it . + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (DT that) + (NN time))) + (PRN (, ,) + (S (NP-SBJ (PRP he)) + (VP (VBZ says))) + (, ,)) + (NP-SBJ-9 (NP (JJ few) + (NNS manufacturers)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (VP (VBD were) + (ADJP-PRD (CC both) + (ADJP (JJ interested) + (PP (IN in) + (NP (DT the) + (NN technology)))) + (CC and) + (ADJP (JJ competent) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB apply) + (NP (PRP it)))))))) + (. .))) + +Leaves: +------- + 0 At + 1 that + 2 time + sense: time-n.2 + 3 , + 4 he + coref: IDENT 3 4-4 he + 5 says + sense: say-v.1 + prop: say.01 + v * -> 5:0, says + ARG0 * -> 4:1, he + 6 , + 7 few + 8 manufacturers + sense: manufacturer-n.1 + 9 in + 10 Taiwan + coref: IDENT 27 10-10 Taiwan + name: GPE 10-10 Taiwan + 11 were + sense: be-v.1 + prop: be.01 + v * -> 11:0, were + ARGM-TMP * -> 0:1, At that time + ARG1 * -> 19:0, *PRO*-9 -> 7:2, few manufacturers in Taiwan + ARG2 * -> 12:1, both interested in the technology and competent *PRO*-9 to apply it + 12 both + 13 interested + 14 in + 15 the + coref: IDENT 28 15-16 the technology + 16 technology + sense: technology-n.1 + 17 and + 18 competent + 19 *PRO*-9 + 20 to + 21 apply + sense: apply-v.1 + prop: apply.02 + v * -> 21:0, apply + ARG0 * -> 19:0, *PRO*-9 -> 7:2, few manufacturers in Taiwan + ARG1 * -> 22:1, it + 22 it + coref: IDENT 28 22-22 it + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Later, when his team had developed the process, many firms expressed an interest. + +Treebanked sentence: +-------------------- + Later , when his team had developed the process *T*-9 , many firms expressed an interest . + +Tree: +----- + (TOP (S (ADVP-TMP (RB Later)) + (, ,) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (PRP$ his) + (NN team)) + (VP (VBD had) + (VP (VBN developed) + (NP (DT the) + (NN process)) + (ADVP-TMP (-NONE- *T*-9)))))) + (, ,) + (NP-SBJ (JJ many) + (NNS firms)) + (VP (VBD expressed) + (NP (DT an) + (NN interest))) + (. .))) + +Leaves: +------- + 0 Later + 1 , + 2 when + 3 his + coref: IDENT 3 3-3 his + 4 team + sense: team-n.1 + 5 had + prop: have.01 + v * -> 5:0, had + 6 developed + sense: develop-v.1 + prop: develop.02 + v * -> 6:0, developed + ARG0 * -> 3:1, his team + ARG1 * -> 7:1, the process + ARGM-TMP * -> 9:0, *T*-9 -> 2:1, when + 7 the + coref: IDENT ectb_1003.part-004-E1 7-8 the process + 8 process + sense: process-n.1 + prop: process.01 + n * -> 8:0, process + 9 *T*-9 + 10 , + 11 many + 12 firms + 13 expressed + sense: express-v.1 + prop: express.01 + v * -> 13:0, expressed + ARGM-TMP * -> 0:1, Later + ARGM-TMP * -> 2:2, when his team had developed the process *T*-9 + ARG0 * -> 11:1, many firms + ARG1 * -> 14:1, an interest + 14 an + 15 interest + sense: interest-n.1 + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But once they had acquired the technology, many lost money or even went out of business-the results were far from ideal. + +Treebanked sentence: +-------------------- + But once they had acquired the technology , many lost money or even went out of business - the results were far from + ideal . + +Tree: +----- + (TOP (S (S (CC But) + (SBAR-TMP (IN once) + (S (NP-SBJ (PRP they)) + (VP (VBD had) + (VP (VBN acquired) + (NP (DT the) + (NN technology)))))) + (, ,) + (NP-SBJ (JJ many)) + (VP (VP (VBD lost) + (NP (NN money))) + (CC or) + (VP (ADVP (RB even)) + (VBD went) + (ADVP-PRD (RB out) + (PP (IN of) + (NP (NN business))))))) + (: -) + (S (NP-SBJ (DT the) + (NNS results)) + (VP (VBD were) + (PP-PRD (RB far) + (IN from) + (NP (JJ ideal))))) + (. .))) + +Leaves: +------- + 0 But + 1 once + 2 they + coref: IDENT 37 2-2 they + 3 had + prop: have.01 + v * -> 3:0, had + 4 acquired + sense: acquire-v.3 + prop: acquire.01 + v * -> 4:0, acquired + ARG0 * -> 2:1, they + ARG1 * -> 5:1, the technology + 5 the + coref: IDENT 28 5-6 the technology + 6 technology + sense: technology-n.1 + 7 , + 8 many + coref: IDENT 37 8-8 many + 9 lost + sense: lose-v.1 + prop: lose.02 + v * -> 9:0, lost + ARGM-DIS * -> 0:0, But + ARGM-TMP * -> 1:1, once they had acquired the technology + ARG0 * -> 8:1, many + ARG1 * -> 10:1, money + 10 money + sense: money-n.2 + 11 or + 12 even + 13 went + sense: go-v.4 + prop: go.01 + v * -> 13:0, went + ARGM-DIS * -> 0:0, But + ARGM-TMP * -> 1:1, once they had acquired the technology + ARG1 * -> 8:1, many + ARGM-ADV * -> 12:1, even + ARG2 * -> 14:1, out of business + 14 out + 15 of + 16 business + sense: business-n.1 + 17 - + 18 the + 19 results + sense: result-n.1 + 20 were + sense: be-v.1 + prop: be.01 + v * -> 20:0, were + ARG1 * -> 18:1, the results + ARG2 * -> 21:1, far from ideal + 21 far + 22 from + 23 ideal + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " At that time I felt very frustrated. + +Treebanked sentence: +-------------------- + " At that time I felt very frustrated . + +Tree: +----- + (TOP (S (`` ") + (NP-TMP (NP (NNP At)) + (NP (DT that) + (NN time))) + (NP-SBJ (PRP I)) + (VP (VBD felt) + (ADJP-PRD (RB very) + (JJ frustrated))) + (. .))) + +Leaves: +------- + 0 " + 1 At + 2 that + 3 time + sense: time-n.2 + 4 I + coref: IDENT 3 4-4 I + 5 felt + sense: feel-v.1 + prop: feel.01 + v * -> 5:0, felt + ARGM-TMP * -> 1:2, At that time + ARG0 * -> 4:1, I + ARG1 * -> 6:1, very frustrated + 6 very + 7 frustrated + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It was clearly a good process, but after buying the technology for a nominal sum, many companies did n't value it, " + says Tsai Chiu-hsiung. + +Treebanked sentence: +-------------------- + It was clearly a good process , but after *PRO* buying the technology for a nominal sum , many companies did n't value + it , " says *T*-1 Tsai Chiu - hsiung . + +Tree: +----- + (TOP (SINV (S-TPC-1 (S (NP-SBJ (PRP It)) + (VP (VBD was) + (ADVP (RB clearly)) + (NP-PRD (DT a) + (JJ good) + (NN process)))) + (, ,) + (CC but) + (S (PP-TMP (IN after) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG buying) + (NP (DT the) + (NN technology)) + (PP (IN for) + (NP (DT a) + (JJ nominal) + (NN sum)))))) + (, ,) + (NP-SBJ (JJ many) + (NNS companies)) + (VP (VBD did) + (RB n't) + (VP (VB value) + (NP (PRP it)))))) + (, ,) + ('' ") + (VP (VBZ says) + (S (-NONE- *T*-1))) + (NP-SBJ (NNP Tsai) + (NNP Chiu) + (HYPH -) + (NNP hsiung)) + (. .))) + +Leaves: +------- + 0 It + coref: IDENT ectb_1003.part-004-E1 0-0 It + 1 was + sense: be-v.1 + prop: be.01 + v * -> 1:0, was + ARG1 * -> 0:1, It + ARGM-ADV * -> 2:1, clearly + ARG2 * -> 3:1, a good process + 2 clearly + 3 a + 4 good + 5 process + sense: process-n.1 + prop: process.01 + n * -> 5:0, process + ARGM-ADJ * -> 4:0, good + 6 , + 7 but + 8 after + 9 *PRO* + 10 buying + sense: buy-v.1 + prop: buy.01 + v * -> 10:0, buying + ARG0 * -> 9:0, *PRO* + ARG1 * -> 11:1, the technology + ARG3 * -> 13:1, for a nominal sum + 11 the + coref: IDENT 28 11-12 the technology + 12 technology + sense: technology-n.1 + 13 for + 14 a + 15 nominal + 16 sum + sense: sum-n.1 + 17 , + 18 many + 19 companies + sense: company-n.1 + 20 did + prop: do.01 + v * -> 20:0, did + 21 n't + 22 value + sense: value-v.2 + prop: value.01 + v * -> 22:0, value + ARGM-TMP * -> 8:1, after *PRO* buying the technology for a nominal sum + ARG0 * -> 18:1, many companies + ARGM-NEG * -> 21:0, n't + ARG1 * -> 23:1, it + 23 it + coref: IDENT 28 23-23 it + 24 , + 25 " + 26 says + sense: say-v.1 + prop: say.01 + v * -> 26:0, says + ARG1 * -> 27:0, *T*-1 -> 0:3, It was clearly a good process , but after *PRO* buying the technology + for a nominal sum , many companies did n't value it + ARG0 * -> 28:1, Tsai Chiu - hsiung + 27 *T*-1 + 28 Tsai + coref: IDENT 3 28-31 Tsai Chiu - hsiung + name: PERSON 28-31 Tsai Chiu - hsiung + 29 Chiu + 30 - + 31 hsiung + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + On the one hand, the market for breathable waterproof fabrics was not yet mature, and too many companies entering all at + once knocked the bottom out of the market ; on the other, manufacturers in Taiwan still lack the concept of dedicating + production equipment to one product. + +Treebanked sentence: +-------------------- + On the one hand , the market for breathable waterproof fabrics was not yet mature , and too many companies entering all + at once knocked the bottom out of the market ; on the other , manufacturers in Taiwan still lack the concept of *PRO* + dedicating production equipment to one product . + +Tree: +----- + (TOP (S (S (S (PP (IN On) + (NP (DT the) + (CD one) + (NN hand))) + (, ,) + (NP-SBJ (NP (DT the) + (NN market)) + (PP (IN for) + (NP (JJ breathable) + (JJ waterproof) + (NNS fabrics)))) + (VP (VBD was) + (RB not) + (ADVP-TMP (RB yet)) + (ADJP-PRD (JJ mature)))) + (, ,) + (CC and) + (S (NP-SBJ (NP (RB too) + (JJ many) + (NNS companies)) + (VP (VBG entering) + (PP (RB all) + (IN at) + (ADVP (RB once))))) + (VP (VBD knocked) + (NP (DT the) + (NN bottom)) + (PP (IN out) + (PP (IN of) + (NP (DT the) + (NN market))))))) + (, ;) + (S (PP (IN on) + (NP (DT the) + (JJ other))) + (, ,) + (NP-SBJ (NP (NNS manufacturers)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (ADVP (RB still)) + (VP (VBP lack) + (NP (NP (DT the) + (NN concept)) + (PP (IN of) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG dedicating) + (NP (NN production) + (NN equipment)) + (PP-CLR (IN to) + (NP (CD one) + (NN product))))))))) + (. .))) + +Leaves: +------- + 0 On + 1 the + 2 one + name: CARDINAL 2-2 one + 3 hand + sense: hand-n.7 + 4 , + 5 the + 6 market + sense: market-n.1 + 7 for + 8 breathable + 9 waterproof + 10 fabrics + 11 was + sense: be-v.1 + prop: be.01 + v * -> 11:0, was + ARGM-LOC * -> 0:1, On the one hand + ARG1 * -> 5:2, the market for breathable waterproof fabrics + ARGM-NEG * -> 12:0, not + ARGM-TMP * -> 13:1, yet + ARG2 * -> 14:1, mature + 12 not + 13 yet + 14 mature + 15 , + 16 and + 17 too + 18 many + 19 companies + sense: company-n.1 + 20 entering + prop: enter.01 + v * -> 20:0, entering + ARG0 * -> 17:1, too many companies + ARGM-MNR * -> 21:1, all at once + 21 all + 22 at + 23 once + name: ORDINAL 23-23 once + 24 knocked + sense: knock-v.1 + prop: knock.04 + v * -> 24:0, knocked + ARG0 * -> 17:2, too many companies entering all at once + ARG1 * -> 25:1, the bottom + ARGM-DIR * -> 27:1, out of the market + 25 the + 26 bottom + 27 out + 28 of + 29 the + 30 market + sense: market-n.1 + 31 ; + 32 on + 33 the + 34 other + 35 , + 36 manufacturers + sense: manufacturer-n.1 + 37 in + 38 Taiwan + coref: IDENT 27 38-38 Taiwan + name: GPE 38-38 Taiwan + 39 still + 40 lack + sense: lack-v.1 + prop: lack.01 + v * -> 40:0, lack + ARGM-DIS * -> 32:1, on the other + ARG0 * -> 36:2, manufacturers in Taiwan + ARGM-TMP * -> 39:1, still + ARG1 * -> 41:2, the concept of *PRO* dedicating production equipment to one product + 41 the + 42 concept + 43 of + 44 *PRO* + 45 dedicating + prop: dedicate.01 + v * -> 45:0, dedicating + ARG0 * -> 44:0, *PRO* + ARG1 * -> 46:1, production equipment + ARG2 * -> 48:1, to one product + LINK-PCR * -> 36:2, manufacturers in Taiwan + * -> 44:0, *PRO* + 46 production + sense: production-n.7 + 47 equipment + 48 to + 49 one + name: CARDINAL 49-49 one + 50 product + sense: product-n.1 + 51 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For fear of putting all their eggs in one basket, many firms are in the habit of producing whatever they can get orders + for : today it may be waterproof fabric, tomorrow cloth for tarpaulins, and next month purses. + +Treebanked sentence: +-------------------- + For fear of *PRO* putting all their eggs in one basket , many firms are in the habit of producing whatever they can get + orders for *T*-1 : today it may be waterproof fabric , tomorrow cloth for tarpaulins , and next month purses . + +Tree: +----- + (TOP (S (S (PP-PRP (IN For) + (NP (NP (NN fear)) + (PP (IN of) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG putting) + (NP (PDT all) + (PRP$ their) + (NNS eggs)) + (PP-LOC-CLR (IN in) + (NP (CD one) + (NN basket)))))))) + (, ,) + (NP-SBJ (JJ many) + (NNS firms)) + (VP (VBP are) + (PP-PRD (IN in) + (NP (NP (DT the) + (NN habit)) + (PP (IN of) + (NP (NP (VBG producing)) + (SBAR (WHNP-1 (WP whatever)) + (S (NP-SBJ (PRP they)) + (VP (MD can) + (VP (VB get) + (NP (NP (NNS orders)) + (PP (IN for) + (NP (-NONE- *T*-1)))))))))))))) + (: :) + (S (S (NP-TMP-2 (NN today)) + (NP-SBJ (PRP it)) + (VP (MD may) + (VP (VB be) + (NP-PRD-3 (JJ waterproof) + (NN fabric))))) + (, ,) + (S (NP-TMP=2 (NN tomorrow)) + (NP-PRD=3 (NP (NN cloth)) + (PP (IN for) + (NP (NNS tarpaulins))))) + (, ,) + (CC and) + (S (NP-TMP=2 (JJ next) + (NN month)) + (NP-PRD=3 (NNS purses)))) + (. .))) + +Leaves: +------- + 0 For + 1 fear + sense: fear-n.2 + prop: fear.01 + n * -> 1:0, fear + ARG1 * -> 2:1, of *PRO* putting all their eggs in one basket + 2 of + 3 *PRO* + 4 putting + sense: put-v.1 + prop: put.01 + v * -> 4:0, putting + ARG0 * -> 3:0, *PRO* + ARG1 * -> 5:1, all their eggs + ARG2 * -> 8:1, in one basket + 5 all + 6 their + 7 eggs + 8 in + 9 one + 10 basket + 11 , + 12 many + coref: IDENT 76 12-13 many firms + 13 firms + 14 are + sense: be-v.1 + prop: be.01 + v * -> 14:0, are + ARGM-CAU * -> 0:1, For fear of *PRO* putting all their eggs in one basket + ARG1 * -> 12:1, many firms + ARG2 * -> 15:1, in the habit of producing whatever they can get orders for *T*-1 + 15 in + 16 the + 17 habit + sense: habit-n.1 + 18 of + 19 producing + prop: produce.01 + v * -> 19:0, producing + ARG1 * -> 20:2, whatever they can get orders for *T*-1 + 20 whatever + 21 they + coref: IDENT 76 21-21 they + 22 can + 23 get + sense: get-v.1 + prop: get.01 + v * -> 23:0, get + ARG0 * -> 21:1, they + ARGM-MOD * -> 22:0, can + ARG1 * -> 24:2, orders for *T*-1 + 24 orders + sense: order-n.6 + prop: order.02 + n * -> 24:0, orders + ARG1 * -> 25:1, for *T*-1 + 25 for + 26 *T*-1 + 27 : + 28 today + sense: today-n.2 + name: TIME 28-28 today + 29 it + 30 may + 31 be + sense: be-v.1 + prop: be.01 + v * -> 31:0, be + ARGM-TMP * -> 28:1, today + ARG1 * -> 29:1, it + ARGM-MOD * -> 30:0, may + ARG2 * -> 32:1, waterproof fabric + 32 waterproof + 33 fabric + 34 , + 35 tomorrow + name: DATE 35-35 tomorrow + 36 cloth + 37 for + 38 tarpaulins + 39 , + 40 and + 41 next + name: DATE 41-42 next month + 42 month + sense: month-n.2 + 43 purses + 44 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Their product mix is very varied, with frequent switching. + +Treebanked sentence: +-------------------- + Their product mix is very varied , with frequent switching . + +Tree: +----- + (TOP (S (NP-SBJ (PRP$ Their) + (NN product) + (NN mix)) + (VP (VBZ is) + (ADJP-PRD (RB very) + (JJ varied)) + (, ,) + (PP (IN with) + (NP (JJ frequent) + (NN switching)))) + (. .))) + +Leaves: +------- + 0 Their + coref: IDENT 76 0-0 Their + 1 product + 2 mix + 3 is + sense: be-v.1 + prop: be.01 + v * -> 3:0, is + ARG1 * -> 0:1, Their product mix + ARG2 * -> 4:1, very varied + ARGM-ADV * -> 7:1, with frequent switching + coref: IDENT 96 3-3 is + 4 very + 5 varied + 6 , + 7 with + 8 frequent + 9 switching + 10 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This makes quality control difficult, so that when firms are faced with a technically demanding product, defects may + easily arise. + +Treebanked sentence: +-------------------- + This makes quality control difficult , so that when firms are faced *-1 with a technically demanding product *T*-9 , + defects may easily arise . + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBZ makes) + (S (NP-SBJ (NN quality) + (NN control)) + (ADJP-PRD (JJ difficult))) + (, ,) + (SBAR-PRP (IN so) + (IN that) + (S (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ-1 (NNS firms)) + (VP (VBP are) + (VP (VBN faced) + (NP (-NONE- *-1)) + (PP-CLR (IN with) + (NP (DT a) + (ADJP (RB technically) + (JJ demanding)) + (NN product))) + (ADVP-TMP (-NONE- *T*-9)))))) + (, ,) + (NP-SBJ (NNS defects)) + (VP (MD may) + (ADVP (RB easily)) + (VP (VB arise)))))) + (. .))) + +Leaves: +------- + 0 This + coref: IDENT 96 0-0 This + 1 makes + sense: make-v.3 + prop: make.02 + v * -> 1:0, makes + ARG0 * -> 0:1, This + ARG1 * -> 2:2, quality control difficult + ARGM-ADV * -> 6:1, so that when firms are faced *-1 with a technically demanding product *T*-9 , defects + may easily arise + 2 quality + sense: quality-n.1 + 3 control + sense: control-n.2 + 4 difficult + 5 , + 6 so + 7 that + 8 when + 9 firms + coref: IDENT 98 9-9 firms + 10 are + prop: be.03 + v * -> 10:0, are + 11 faced + sense: face-v.1 + prop: face.01 + v * -> 11:0, faced + ARG1 * -> 12:0, *-1 -> 9:1, firms + ARG0 * -> 13:1, with a technically demanding product + ARGM-TMP * -> 18:0, *T*-9 -> 8:1, when + 12 *-1 + 13 with + 14 a + 15 technically + 16 demanding + 17 product + sense: product-n.1 + 18 *T*-9 + 19 , + 20 defects + sense: defect-n.2 + 21 may + 22 easily + 23 arise + sense: arise-v.1 + prop: arise.01 + v * -> 23:0, arise + ARGM-TMP * -> 8:2, when firms are faced *-1 with a technically demanding product *T*-9 + ARG1 * -> 20:1, defects + ARGM-MOD * -> 21:0, may + ARGM-MNR * -> 22:1, easily + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Worse, they are often unable even to identify the cause. + +Treebanked sentence: +-------------------- + Worse , they are often unable *PRO*-9 even to identify the cause . + +Tree: +----- + (TOP (S (ADVP (RBR Worse)) + (, ,) + (NP-SBJ-9 (PRP they)) + (VP (VBP are) + (ADVP-TMP (RB often)) + (ADJP-PRD (JJ unable) + (S (NP-SBJ (-NONE- *PRO*-9)) + (ADVP (RB even)) + (VP (TO to) + (VP (VB identify) + (NP (DT the) + (NN cause))))))) + (. .))) + +Leaves: +------- + 0 Worse + 1 , + 2 they + coref: IDENT 98 2-2 they + 3 are + sense: be-v.1 + prop: be.01 + v * -> 3:0, are + ARGM-ADV * -> 0:1, Worse + ARG1 * -> 6:0, *PRO*-9 -> 2:1, they + ARGM-TMP * -> 4:1, often + ARG2 * -> 5:1, unable *PRO*-9 even to identify the cause + 4 often + 5 unable + 6 *PRO*-9 + 7 even + 8 to + 9 identify + sense: identify-v.1 + prop: identify.01 + v * -> 9:0, identify + ARG0 * -> 6:0, *PRO*-9 -> 2:1, they + ARGM-ADV * -> 7:1, even + ARG1 * -> 10:1, the cause + 10 the + 11 cause + sense: cause-n.1 + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " ' Flexibility ' helps SMEs survive in difficult times, but it is not conducive to the perfectionist attitudes needed + when upgrading. " + +Treebanked sentence: +-------------------- + " ' Flexibility ' helps SMEs survive in difficult times , but it is not conducive to the perfectionist attitudes needed + * when *PRO* upgrading *T*-9 . " + +Tree: +----- + (TOP (S (`` ") + (S (NP-SBJ (`` ') + (NN Flexibility) + ('' ')) + (VP (VBZ helps) + (S (NP-SBJ (NNS SMEs)) + (VP (VB survive) + (PP-TMP (IN in) + (NP (JJ difficult) + (NNS times))))))) + (, ,) + (CC but) + (S (NP-SBJ (PRP it)) + (VP (VBZ is) + (RB not) + (ADJP-PRD (JJ conducive) + (PP (IN to) + (NP (NP (DT the) + (JJ perfectionist) + (NNS attitudes)) + (VP (VBN needed) + (NP (-NONE- *)) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (VBG upgrading) + (ADVP (-NONE- *T*-9))))))))))) + (. .) + ('' "))) + +Leaves: +------- + 0 " + 1 ' + coref: IDENT 105 1-3 ' Flexibility ' + 2 Flexibility + 3 ' + 4 helps + sense: help-v.1 + prop: help.01 + v * -> 4:0, helps + ARG0 * -> 1:1, ' Flexibility ' + ARG1 * -> 5:2, SMEs survive in difficult times + 5 SMEs + 6 survive + sense: survive-v.1 + prop: survive.01 + v * -> 6:0, survive + ARG0 * -> 5:1, SMEs + ARG1 * -> 7:1, in difficult times + 7 in + 8 difficult + 9 times + sense: time-n.12 + 10 , + 11 but + 12 it + coref: IDENT 105 12-12 it + 13 is + sense: be-v.1 + prop: be.01 + v * -> 13:0, is + ARG1 * -> 12:1, it + ARGM-NEG * -> 14:0, not + ARG2 * -> 15:1, conducive to the perfectionist attitudes needed * when *PRO* upgrading *T*-9 + 14 not + 15 conducive + 16 to + 17 the + 18 perfectionist + 19 attitudes + sense: attitude-n.1 + 20 needed + prop: need.01 + v * -> 20:0, needed + ARG1 * -> 21:0, * + ARGM-TMP * -> 22:2, when *PRO* upgrading *T*-9 + LINK-PCR * -> 17:1, the perfectionist attitudes + * -> 21:0, * + 21 * + 22 when + 23 *PRO* + 24 upgrading + sense: upgrade-v.2 + prop: upgrade.02 + v * -> 24:0, upgrading + ARG0 * -> 23:0, *PRO* + ARGM-TMP * -> 25:0, *T*-9 -> 22:1, when + 25 *T*-9 + 26 . + 27 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Tsai Chiu-hsiung, who urges companies to " know when to give things up, " has now been in business for himself for a + year, and his is the only firm in Taiwan which specializes in applying breathable waterproof coatings to fabrics. + +Treebanked sentence: +-------------------- + Tsai Chiu - hsiung , who *T*-9 urges companies *PRO*-1 to " know when *PRO* to give things up *T*-2 , " has now been in + business for himself for a year , and his is the only firm in Taiwan which *T*-3 specializes in *PRO* applying + breathable waterproof coatings to fabrics . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (NNP Tsai) + (NNP Chiu) + (HYPH -) + (NNP hsiung)) + (, ,) + (SBAR (WHNP-9 (WP who)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ urges) + (NP-1 (NNS companies)) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (`` ") + (VP (VB know) + (SBAR (WHADVP-2 (WRB when)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB give) + (NP (NNS things)) + (PRT (RP up)) + (ADVP-TMP (-NONE- *T*-2))))))))))))) + (, ,) + ('' ") + (VP (VBZ has) + (ADVP-TMP (RB now)) + (VP (VBN been) + (PP-PRD (IN in) + (NP (NP (NN business)) + (PP (IN for) + (NP (PRP himself))))) + (PP-TMP (IN for) + (NP (DT a) + (NN year)))))) + (, ,) + (CC and) + (S (NP-SBJ (PRP$ his)) + (VP (VBZ is) + (NP-PRD (NP (NP (DT the) + (JJ only) + (NN firm)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (SBAR (WHNP-3 (WDT which)) + (S (NP-SBJ (-NONE- *T*-3)) + (VP (VBZ specializes) + (PP-CLR (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG applying) + (NP (JJ breathable) + (JJ waterproof) + (NNS coatings)) + (PP-CLR (IN to) + (NP (NNS fabrics)))))))))))) + (. .))) + +Leaves: +------- + 0 Tsai + coref: IDENT 3 0-19 Tsai Chiu - hsiung , who *T*-9 urges companies *PRO*-1 to " know when + *PRO* to give things up *T*-2 + name: PERSON 0-3 Tsai Chiu - hsiung + 1 Chiu + 2 - + 3 hsiung + 4 , + 5 who + 6 *T*-9 + 7 urges + sense: urge-v.1 + prop: urge.01 + v * -> 7:0, urges + ARG0 * -> 6:0, *T*-9 -> 5:1, who + ARG1 * -> 8:1, companies + ARG2 * -> 9:2, *PRO*-1 to " know when *PRO* to give things up *T*-2 + LINK-SLC * -> 0:1, Tsai Chiu - hsiung + * -> 6:0, *T*-9 -> 5:1, who + 8 companies + sense: company-n.1 + 9 *PRO*-1 + 10 to + 11 " + 12 know + prop: know.01 + v * -> 12:0, know + ARG0 * -> 9:0, *PRO*-1 -> 8:1, companies + ARG1 * -> 13:2, when *PRO* to give things up *T*-2 + 13 when + 14 *PRO* + 15 to + 16 give + sense: give-v.5 + prop: give.07 + v * -> 16:0, give + -> 18:1, up + ARG0 * -> 14:0, *PRO* + ARG1 * -> 17:1, things + ARGM-TMP * -> 19:0, *T*-2 -> 13:1, when + LINK-PCR * -> 8:1, companies + * -> 14:0, *PRO* + 17 things + sense: thing-n.1 + 18 up + 19 *T*-2 + 20 , + 21 " + 22 has + prop: have.01 + v * -> 22:0, has + 23 now + 24 been + sense: be-v.1 + prop: be.01 + v * -> 24:0, been + ARG1 * -> 0:2, Tsai Chiu - hsiung , who *T*-9 urges companies *PRO*-1 to " know when *PRO* to give + things up *T*-2 + ARGM-TMP * -> 23:1, now + ARG2 * -> 25:1, in business for himself + ARGM-TMP * -> 29:1, for a year + 25 in + 26 business + sense: business-n.1 + 27 for + 28 himself + coref: IDENT 3 28-28 himself + 29 for + 30 a + name: DATE 30-31 a year + 31 year + 32 , + 33 and + 34 his + coref: IDENT 3 34-34 his + 35 is + sense: be-v.2 + prop: be.01 + v * -> 35:0, is + ARG1 * -> 34:1, his + ARG2 * -> 36:3, the only firm in Taiwan which *T*-3 specializes in *PRO* applying breathable + waterproof coatings to fabrics + 36 the + coref: IDENT 125 36-51 the only firm in Taiwan which *T*-3 specializes in *PRO* applying + breathable waterproof coatings to fabrics + 37 only + 38 firm + 39 in + 40 Taiwan + coref: IDENT 27 40-40 Taiwan + name: GPE 40-40 Taiwan + 41 which + 42 *T*-3 + 43 specializes + sense: specialize-v.1 + prop: specialize.01 + v * -> 43:0, specializes + ARG0 * -> 42:0, *T*-3 -> 41:1, which + ARG1 * -> 44:1, in *PRO* applying breathable waterproof coatings to fabrics + LINK-SLC * -> 36:2, the only firm in Taiwan + * -> 42:0, *T*-3 -> 41:1, which + 44 in + 45 *PRO* + 46 applying + prop: apply.02 + v * -> 46:0, applying + ARG0 * -> 45:0, *PRO* + ARG1 * -> 47:1, breathable waterproof coatings + ARG2 * -> 50:1, to fabrics + 47 breathable + 48 waterproof + 49 coatings + 50 to + 51 fabrics + 52 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With more orders than he can handle, he is now preparing to build a new factory at Touliu in Yunlin County. + +Treebanked sentence: +-------------------- + With more orders than he can handle *?* , he is now preparing *PRO*-9 to build a new factory at Touliu in Yunlin County + . + +Tree: +----- + (TOP (S (PP (IN With) + (NP (NP (JJR more) + (NNS orders)) + (SBAR (IN than) + (S (NP-SBJ (PRP he)) + (VP (MD can) + (VP (VB handle) + (NP (-NONE- *?*)))))))) + (, ,) + (NP-SBJ-9 (PRP he)) + (VP (VBZ is) + (ADVP-TMP (RB now)) + (VP (VBG preparing) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB build) + (NP (NP (DT a) + (JJ new) + (NN factory)) + (PP-LOC (IN at) + (NP (NP (NNP Touliu)) + (PP-LOC (IN in) + (NP (NNP Yunlin) + (NNP County))))))))))) + (. .))) + +Leaves: +------- + 0 With + 1 more + 2 orders + sense: order-n.6 + prop: order.01 + n * -> 2:0, orders + ARGM-ADJ * -> 3:1, than he can handle *?* + 3 than + 4 he + coref: IDENT 3 4-4 he + 5 can + 6 handle + sense: handle-v.2 + prop: handle.01 + v * -> 6:0, handle + ARG0 * -> 4:1, he + ARGM-MOD * -> 5:0, can + ARG1 * -> 7:0, *?* + 7 *?* + 8 , + 9 he + coref: IDENT 3 9-9 he + 10 is + prop: be.03 + v * -> 10:0, is + 11 now + 12 preparing + sense: prepare-v.2 + prop: prepare.02 + v * -> 12:0, preparing + ARGM-ADV * -> 0:1, With more orders than he can handle *?* + ARG0 * -> 13:0, *PRO*-9 -> 9:1, he + ARGM-TMP * -> 11:1, now + ARG2 * -> 13:2, *PRO*-9 to build a new factory at Touliu in Yunlin County + 13 *PRO*-9 + 14 to + 15 build + sense: build-v.1 + prop: build.01 + v * -> 15:0, build + ARG0 * -> 13:0, *PRO*-9 -> 9:1, he + ARG1 * -> 16:2, a new factory at Touliu in Yunlin County + 16 a + 17 new + 18 factory + 19 at + 20 Touliu + name: GPE 20-20 Touliu + 21 in + 22 Yunlin + name: GPE 22-23 Yunlin County + 23 County + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + G-Fun's micropore breathable coating is a compound containing special water-soluble granules which create tiny pores in + the fabric surface. + +Treebanked sentence: +-------------------- + G - Fun 's micropore breathable coating is a compound containing special water - soluble granules which *T*-9 create + tiny pores in the fabric surface . + +Tree: +----- + (TOP (S (NP-SBJ (NP (NNP G) + (HYPH -) + (NNP Fun) + (POS 's)) + (NN micropore) + (JJ breathable) + (NN coating)) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (NN compound)) + (VP (VBG containing) + (NP (NP (JJ special) + (ADJP (NN water) + (HYPH -) + (JJ soluble)) + (NNS granules)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBP create) + (NP (NP (JJ tiny) + (NNS pores)) + (PP-LOC (IN in) + (NP (DT the) + (NN fabric) + (NN surface))))))))))) + (. .))) + +Leaves: +------- + 0 G + coref: IDENT 125 0-3 G - Fun 's + name: ORG 0-3 G - Fun 's + 1 - + 2 Fun + 3 's + 4 micropore + 5 breathable + 6 coating + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 0:2, G - Fun 's micropore breathable coating + ARG2 * -> 8:2, a compound containing special water - soluble granules which *T*-9 create tiny pores + in the fabric surface + 8 a + 9 compound + 10 containing + sense: contain-v.1 + prop: contain.01 + v * -> 10:0, containing + ARG0 * -> 8:1, a compound + ARG1 * -> 11:2, special water - soluble granules which *T*-9 create tiny pores in the fabric surface + 11 special + 12 water + sense: water-n.1 + 13 - + 14 soluble + 15 granules + 16 which + 17 *T*-9 + 18 create + sense: create-v.1 + prop: create.01 + v * -> 18:0, create + ARG0 * -> 17:0, *T*-9 -> 16:1, which + ARG1 * -> 19:2, tiny pores in the fabric surface + LINK-SLC * -> 11:1, special water - soluble granules + * -> 17:0, *T*-9 -> 16:1, which + 19 tiny + coref: IDENT 151 19-24 tiny pores in the fabric surface + 20 pores + 21 in + 22 the + 23 fabric + 24 surface + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Sweat can evaporate through these pores without being absorbed by the fabric, improving comfort compared with + traditional hydrophilic fabrics which when worn in the rain start sticking to the body after a time. + +Treebanked sentence: +-------------------- + Sweat can evaporate through these pores without *PRO* being absorbed * by the fabric , *PRO*-5 improving comfort + compared with traditional hydrophilic fabrics which *T*-2 when *PRO* worn * in the rain *T*-1 start *-2 sticking to the + body after a time . + +Tree: +----- + (TOP (S (NP-SBJ-5 (NN Sweat)) + (VP (MD can) + (VP (VB evaporate) + (PP (IN through) + (NP (DT these) + (NNS pores))) + (PP (IN without) + (S-NOM (NP-SBJ-4 (-NONE- *PRO*)) + (VP (VBG being) + (VP (VBN absorbed) + (NP-4 (-NONE- *)) + (PP (IN by) + (NP-LGS (DT the) + (NN fabric))))))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-5)) + (VP (VBG improving) + (NP (NN comfort)) + (PP (VBN compared) + (PP (IN with) + (NP (NP (JJ traditional) + (JJ hydrophilic) + (NNS fabrics)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (SBAR-TMP (WHADVP-1 (WRB when)) + (S (NP-SBJ-3 (-NONE- *PRO*)) + (VP (VBN worn) + (NP-3 (-NONE- *)) + (PP-LOC (IN in) + (NP (DT the) + (NN rain))) + (ADVP-TMP (-NONE- *T*-1))))) + (VP (VBP start) + (S (NP-SBJ (-NONE- *-2)) + (VP (VBG sticking) + (PP-CLR (IN to) + (NP (DT the) + (NN body))) + (PP-TMP (IN after) + (NP (DT a) + (NN time))))))))))))))) + (. .))) + +Leaves: +------- + 0 Sweat + 1 can + 2 evaporate + sense: evaporate-v.1 + prop: evaporate.01 + v * -> 2:0, evaporate + ARG1 * -> 15:0, *PRO*-5 -> 0:1, Sweat + ARGM-MOD * -> 1:0, can + ARGM-MNR * -> 3:1, through these pores + ARGM-MNR * -> 6:1, without *PRO* being absorbed * by the fabric + ARGM-ADV * -> 15:2, *PRO*-5 improving comfort compared with traditional hydrophilic fabrics which *T*-2 + when *PRO* worn * in the rain *T*-1 start *-2 sticking to the body after a time + 3 through + 4 these + coref: IDENT 151 4-5 these pores + 5 pores + 6 without + 7 *PRO* + 8 being + prop: be.03 + v * -> 8:0, being + 9 absorbed + sense: absorb-v.1 + prop: absorb.01 + v * -> 9:0, absorbed + ARG1 * -> 0:1, Sweat + * -> 10:0, * + * -> 15:0, *PRO*-5 -> 0:1, Sweat + ARG0 * -> 11:1, by the fabric + 10 * + 11 by + 12 the + 13 fabric + 14 , + 15 *PRO*-5 + 16 improving + sense: improve-v.1 + prop: improve.01 + v * -> 16:0, improving + ARG0 * -> 15:0, *PRO*-5 -> 0:1, Sweat + ARG1 * -> 17:1, comfort + ARGM-ADV * -> 18:1, compared with traditional hydrophilic fabrics which *T*-2 when *PRO* worn * in the + rain *T*-1 start *-2 sticking to the body after a time + 17 comfort + sense: comfort-n.1 + 18 compared + sense: compare-v.2 + prop: compare.01 + v * -> 18:0, compared + ARG2 * -> 19:1, with traditional hydrophilic fabrics which *T*-2 when *PRO* worn * in the rain *T*-1 + start *-2 sticking to the body after a time + 19 with + 20 traditional + 21 hydrophilic + 22 fabrics + 23 which + 24 *T*-2 + 25 when + 26 *PRO* + 27 worn + prop: wear.01 + v * -> 27:0, worn + ARG1 * -> 28:0, * + ARGM-LOC * -> 29:1, in the rain + ARGM-TMP * -> 32:0, *T*-1 -> 25:1, when + 28 * + 29 in + 30 the + 31 rain + 32 *T*-1 + 33 start + sense: start-v.2 + prop: start.01 + v * -> 33:0, start + ARGM-TMP * -> 25:2, when *PRO* worn * in the rain *T*-1 + ARG1 * -> 34:2, *-2 sticking to the body after a time + 34 *-2 + 35 sticking + sense: stick-v.1 + prop: stick.01 + v * -> 35:0, sticking + ARG1 * -> 34:0, *-2 -> 23:1, which + ARG2 * -> 36:1, to the body + ARGM-TMP * -> 39:1, after a time + 36 to + 37 the + 38 body + sense: body-n.2 + 39 after + 40 a + 41 time + sense: time-n.1 + 42 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + G-Fun is also co-operating with the CTI to develop waterproof fabrics with both micropore and hydrophilic + characteristics. + +Treebanked sentence: +-------------------- + G - Fun is also co-operating with the CTI *PRO*-9 to develop waterproof fabrics with both micropore and hydrophilic + characteristics . + +Tree: +----- + (TOP (S (NP-SBJ-9 (NNP G) + (HYPH -) + (NNP Fun)) + (VP (VBZ is) + (ADVP (RB also)) + (VP (VBG co-operating) + (PP-CLR (IN with) + (NP (DT the) + (NNP CTI))) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB develop) + (NP (NP (JJ waterproof) + (NNS fabrics)) + (PP (IN with) + (NP (UCP (CC both) + (NN micropore) + (CC and) + (JJ hydrophilic)) + (NNS characteristics))))))))) + (. .))) + +Leaves: +------- + 0 G + coref: IDENT 125 0-2 G - Fun + name: ORG 0-2 G - Fun + 1 - + 2 Fun + 3 is + prop: be.03 + v * -> 3:0, is + 4 also + 5 co-operating + sense: cooperate-v.1 + prop: cooperate.01 + v * -> 5:0, co-operating + ARG0 * -> 9:0, *PRO*-9 -> 0:1, G - Fun + ARGM-DIS * -> 4:1, also + ARG1 * -> 6:1, with the CTI + ARG2 * -> 9:2, *PRO*-9 to develop waterproof fabrics with both micropore and hydrophilic + characteristics + 6 with + 7 the + coref: IDENT 6 7-8 the CTI + 8 CTI + name: ORG 8-8 CTI + 9 *PRO*-9 + 10 to + 11 develop + sense: develop-v.1 + prop: develop.02 + v * -> 11:0, develop + ARG0 * -> 9:0, *PRO*-9 -> 0:1, G - Fun + ARG1 * -> 12:2, waterproof fabrics with both micropore and hydrophilic characteristics + 12 waterproof + 13 fabrics + 14 with + 15 both + 16 micropore + 17 and + 18 hydrophilic + 19 characteristics + sense: characteristic-n.1 + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At present, most of the company's orders come from Europe and the USA, and are made into upmarket leisurewear such as + climbing or golf apparel which sells for as much as NT$ 8,000 per garment. + +Treebanked sentence: +-------------------- + At present , most of the company 's orders come from Europe and the USA , and are made *-1 into upmarket leisurewear + such as climbing or golf apparel which *T*-9 sells for as much as NT$ 8,000 *U* per garment . + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (NN present))) + (, ,) + (NP-SBJ-1 (NP (JJS most)) + (PP (IN of) + (NP (NP (DT the) + (NN company) + (POS 's)) + (NNS orders)))) + (VP (VP (VBP come) + (PP (IN from) + (NP (NP (NNP Europe)) + (CC and) + (NP (DT the) + (NNP USA))))) + (, ,) + (CC and) + (VP (VBP are) + (VP (VBN made) + (NP (-NONE- *-1)) + (PP (IN into) + (NP (NP (JJ upmarket) + (NN leisurewear)) + (PP (JJ such) + (IN as) + (NP (NP (NML (NN climbing) + (CC or) + (NN golf)) + (NN apparel)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ sells) + (PP-CLR (IN for) + (NP (NP (QP (RB as) + (RB much) + (IN as) + ($ NT$) + (CD 8,000)) + (-NONE- *U*)) + (PP (IN per) + (NP (NN garment))))))))))))))) + (. .))) + +Leaves: +------- + 0 At + 1 present + sense: present-n.1 + 2 , + 3 most + 4 of + 5 the + coref: IDENT 125 5-7 the company 's + 6 company + sense: company-n.1 + 7 's + 8 orders + sense: order-n.6 + prop: order.02 + n * -> 8:0, orders + ARG3 * -> 5:1, the company 's + 9 come + sense: come-v.5 + prop: come.01 + v * -> 9:0, come + ARGM-TMP * -> 0:1, At present + ARG1 * -> 3:2, most of the company 's orders + ARG2 * -> 10:1, from Europe and the USA + 10 from + 11 Europe + name: LOC 11-11 Europe + 12 and + 13 the + 14 USA + name: GPE 14-14 USA + 15 , + 16 and + 17 are + prop: be.03 + v * -> 17:0, are + 18 made + prop: make.01 + v * -> 18:0, made + ARGM-TMP * -> 0:1, At present + ARG1 * -> 19:0, *-1 -> 3:2, most of the company 's orders + -> 20:1, into upmarket leisurewear such as climbing or golf apparel which *T*-9 sells for as + much as NT$ 8,000 *U* per garment + 19 *-1 + 20 into + 21 upmarket + 22 leisurewear + 23 such + 24 as + 25 climbing + 26 or + 27 golf + 28 apparel + 29 which + 30 *T*-9 + 31 sells + sense: sell-v.1 + prop: sell.01 + v * -> 31:0, sells + ARG1 * -> 30:0, *T*-9 -> 29:1, which + ARG3 * -> 32:1, for as much as NT$ 8,000 *U* per garment + LINK-SLC * -> 25:2, climbing or golf apparel + * -> 30:0, *T*-9 -> 29:1, which + 32 for + 33 as + 34 much + 35 as + 36 NT$ + 37 8,000 + name: MONEY 37-37 8,000 + 38 *U* + 39 per + 40 garment + 41 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Like TCH, G-Fun also hopes its products can help Taiwan's textile industry upgrade. + +Treebanked sentence: +-------------------- + Like TCH , G - Fun also hopes 0 its products can help Taiwan 's textile industry upgrade . + +Tree: +----- + (TOP (S (PP (IN Like) + (NP (NNP TCH))) + (, ,) + (NP-SBJ (NNP G) + (HYPH -) + (NNP Fun)) + (ADVP (RB also)) + (VP (VBZ hopes) + (SBAR (-NONE- 0) + (S (NP-SBJ (PRP$ its) + (NNS products)) + (VP (MD can) + (VP (VB help) + (S (NP-SBJ (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry)) + (VP (VB upgrade)))))))) + (. .))) + +Leaves: +------- + 0 Like + 1 TCH + name: ORG 1-1 TCH + 2 , + 3 G + coref: IDENT 125 3-5 G - Fun + name: ORG 3-5 G - Fun + 4 - + 5 Fun + 6 also + 7 hopes + sense: hope-v.1 + prop: hope.01 + v * -> 7:0, hopes + ARGM-ADV * -> 0:1, Like TCH + ARG0 * -> 3:1, G - Fun + ARGM-DIS * -> 6:1, also + ARG1 * -> 9:2, its products can help Taiwan 's textile industry upgrade + 8 0 + 9 its + coref: IDENT 125 9-9 its + 10 products + sense: product-n.1 + 11 can + 12 help + sense: help-v.1 + prop: help.01 + v * -> 12:0, help + ARG0 * -> 9:1, its products + ARGM-MOD * -> 11:0, can + ARG1 * -> 13:3, Taiwan 's textile industry upgrade + 13 Taiwan + coref: IDENT 27 13-14 Taiwan 's + name: GPE 13-13 Taiwan + 14 's + 15 textile + 16 industry + 17 upgrade + sense: upgrade-v.2 + prop: upgrade.02 + v * -> 17:0, upgrade + ARG0 * -> 13:2, Taiwan 's textile industry + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " The 21st century will be an age of leisure, and Taiwanese sport and leisurewear fabrics have long held first place + worldwide. + +Treebanked sentence: +-------------------- + " The 21st century will be an age of leisure , and Taiwanese sport and leisurewear fabrics have long held first place + worldwide . + +Tree: +----- + (TOP (S (`` ") + (S (NP-SBJ (DT The) + (JJ 21st) + (NN century)) + (VP (MD will) + (VP (VB be) + (NP-PRD (NP (DT an) + (NN age)) + (PP (IN of) + (NP (NN leisure))))))) + (, ,) + (CC and) + (S (NP-SBJ (JJ Taiwanese) + (NML (NN sport) + (CC and) + (NN leisurewear)) + (NNS fabrics)) + (VP (VBP have) + (ADVP (RB long)) + (VP (VBN held) + (NP (JJ first) + (NN place)) + (ADVP (RB worldwide))))) + (. .))) + +Leaves: +------- + 0 " + 1 The + name: DATE 1-3 The 21st century + 2 21st + 3 century + 4 will + 5 be + sense: be-v.1 + prop: be.01 + v * -> 5:0, be + ARG1 * -> 1:1, The 21st century + ARGM-MOD * -> 4:0, will + ARG2 * -> 6:2, an age of leisure + 6 an + 7 age + sense: age-n.2 + 8 of + 9 leisure + 10 , + 11 and + 12 Taiwanese + coref: IDENT 202 12-16 Taiwanese sport and leisurewear fabrics + name: NORP 12-12 Taiwanese + 13 sport + sense: sport-n.1 + 14 and + 15 leisurewear + 16 fabrics + 17 have + prop: have.01 + v * -> 17:0, have + 18 long + 19 held + sense: hold-v.5 + prop: hold.04 + v * -> 19:0, held + ARG0 * -> 12:1, Taiwanese sport and leisurewear fabrics + ARGM-ADV * -> 18:1, long + ARG1 * -> 20:1, first place + ARGM-ADV * -> 22:1, worldwide + 20 first + 21 place + sense: place-n.6 + 22 worldwide + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + If they can all be given better breathability and water resistance, this will greatly increase their added value, " says + Tsai Chiu-hsiung. + +Treebanked sentence: +-------------------- + If they can all be given *-9 better breathability and water resistance , this will greatly increase their added value , + " says *T*-1 Tsai Chiu - hsiung . + +Tree: +----- + (TOP (SINV (S-TPC-1 (SBAR-ADV (IN If) + (S (NP-SBJ-9 (PRP they)) + (VP (MD can) + (DT all) + (VP (VB be) + (VP (VBN given) + (NP (-NONE- *-9)) + (NP (JJR better) + (NN breathability) + (CC and) + (NN water) + (NN resistance))))))) + (, ,) + (NP-SBJ (DT this)) + (VP (MD will) + (ADVP (RB greatly)) + (VP (VB increase) + (NP (PRP$ their) + (JJ added) + (NN value))))) + (, ,) + ('' ") + (VP (VBZ says) + (S (-NONE- *T*-1))) + (NP-SBJ (NNP Tsai) + (NNP Chiu) + (HYPH -) + (NNP hsiung)) + (. .))) + +Leaves: +------- + 0 If + 1 they + coref: IDENT 202 1-1 they + 2 can + 3 all + 4 be + prop: be.03 + v * -> 4:0, be + 5 given + prop: give.01 + v * -> 5:0, given + ARGM-MOD * -> 2:0, can + ARGM-ADV * -> 3:0, all + ARG2 * -> 6:0, *-9 -> 1:1, they + ARG1 * -> 7:1, better breathability and water resistance + 6 *-9 + 7 better + coref: IDENT 207 7-11 better breathability and water resistance + 8 breathability + 9 and + 10 water + sense: water-n.1 + 11 resistance + sense: resistance-n.2 + 12 , + 13 this + coref: IDENT 207 13-13 this + 14 will + 15 greatly + 16 increase + sense: increase-v.1 + prop: increase.01 + v * -> 16:0, increase + ARGM-ADV * -> 0:1, If they can all be given *-9 better breathability and water resistance + ARG0 * -> 13:1, this + ARG1 * -> 14:0, will + ARG2 * -> 15:1, greatly + ARG1 * -> 17:1, their added value + 17 their + coref: IDENT 202 17-17 their + 18 added + 19 value + sense: value-n.1 + 20 , + 21 " + 22 says + sense: say-v.1 + prop: say.01 + v * -> 22:0, says + ARG1 * -> 23:0, *T*-1 -> 0:2, If they can all be given *-9 better breathability and water resistance , + this will greatly increase their added value + ARG0 * -> 24:1, Tsai Chiu - hsiung + 23 *T*-1 + 24 Tsai + coref: IDENT 3 24-27 Tsai Chiu - hsiung + name: PERSON 24-27 Tsai Chiu - hsiung + 25 Chiu + 26 - + 27 hsiung + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Fabrics treated by G-Fun are currently a third cheaper than the same grades of fabric from Japan, and Tsai hopes he can + attract Taiwanese firms to make greater use of them. + +Treebanked sentence: +-------------------- + Fabrics treated * by G - Fun are currently a third cheaper than the same grades of fabric from Japan , and Tsai hopes 0 + he can attract Taiwanese firms to make greater use of them . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (NNS Fabrics)) + (VP (VBN treated) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (NNP G) + (HYPH -) + (NNP Fun))))) + (VP (VBP are) + (ADVP-TMP (RB currently)) + (ADJP-PRD (ADJP (NP (DT a) + (NN third)) + (JJR cheaper)) + (PP (IN than) + (NP (NP (DT the) + (JJ same) + (NNS grades)) + (PP (IN of) + (NP (NN fabric))) + (PP (IN from) + (NP (NNP Japan)))))))) + (, ,) + (CC and) + (S (NP-SBJ (NNP Tsai)) + (VP (VBZ hopes) + (SBAR (-NONE- 0) + (S (NP-SBJ (PRP he)) + (VP (MD can) + (VP (VB attract) + (S (NP-SBJ (JJ Taiwanese) + (NNS firms)) + (VP (TO to) + (VP (VB make) + (NP-CLR (JJR greater) + (NN use)) + (PP-CLR (IN of) + (NP (PRP them)))))))))))) + (. .))) + +Leaves: +------- + 0 Fabrics + coref: IDENT 210 0-6 Fabrics treated * by G - Fun + 1 treated + prop: treat.04 + v * -> 1:0, treated + ARG1 * -> 0:1, Fabrics + * -> 2:0, * + ARG0 * -> 3:1, by G - Fun + 2 * + 3 by + 4 G + coref: IDENT 125 4-6 G - Fun + name: ORG 4-6 G - Fun + 5 - + 6 Fun + 7 are + sense: be-v.1 + prop: be.01 + v * -> 7:0, are + ARG1 * -> 0:2, Fabrics treated * by G - Fun + ARGM-TMP * -> 8:1, currently + ARG2 * -> 9:3, a third cheaper than the same grades of fabric from Japan + 8 currently + 9 a + name: CARDINAL 9-10 a third + 10 third + 11 cheaper + 12 than + 13 the + 14 same + 15 grades + sense: grade-n.2 + 16 of + 17 fabric + 18 from + 19 Japan + name: GPE 19-19 Japan + 20 , + 21 and + 22 Tsai + coref: IDENT 3 22-22 Tsai + name: PERSON 22-22 Tsai + 23 hopes + sense: hope-v.1 + prop: hope.01 + v * -> 23:0, hopes + ARG0 * -> 22:1, Tsai + ARG1 * -> 25:2, he can attract Taiwanese firms to make greater use of them + 24 0 + 25 he + coref: IDENT 3 25-25 he + 26 can + 27 attract + sense: attract-v.1 + prop: attract.01 + v * -> 27:0, attract + ARG0 * -> 25:1, he + ARGM-MOD * -> 26:0, can + ARG1 * -> 28:2, Taiwanese firms to make greater use of them + 28 Taiwanese + name: NORP 28-28 Taiwanese + 29 firms + 30 to + 31 make + sense: make-v.1 + 32 greater + 33 use + sense: use-n.1 + prop: use.01 + n * -> 33:0, use + ARG0 * -> 28:1, Taiwanese firms + ARGM-LVB * -> 31:0, make + ARGM-ADJ * -> 32:0, greater + ARG1 * -> 34:1, of them + 34 of + 35 them + coref: IDENT 210 35-35 them + 36 . + + +======================================================================================================================== +Coreference chains for section 4: +--------------------------------- + + Chain 3 (IDENT) + 79.30-30 himself + 79.2-33 G - Fun Industrial Corporation general manager Tsai Chiu - hsiung , who *T*-9 worked at the + CTI for many years before *PRO* setting up in business for himself in late 1998 + 80.5-5 Tsai + 81.4-4 he + 82.3-3 his + 84.4-4 I + 85.28-31 Tsai Chiu - hsiung + 92.0-19 Tsai Chiu - hsiung , who *T*-9 urges companies *PRO*-1 to " know when *PRO* to give things up + *T*-2 + 92.28-28 himself + 92.34-34 his + 93.4-4 he + 93.9-9 he + 100.24-27 Tsai Chiu - hsiung + 101.22-22 Tsai + 101.25-25 he + + Chain 125 (IDENT) + 79.2-6 G - Fun Industrial Corporation + 92.36-51 the only firm in Taiwan which *T*-3 specializes in *PRO* applying breathable waterproof + coatings to fabrics + 94.0-3 G - Fun 's + 96.0-2 G - Fun + 97.5-7 the company 's + 98.3-5 G - Fun + 98.9-9 its + 101.4-6 G - Fun + + Chain 6 (IDENT) + 79.18-19 the CTI + 80.2-3 the CTI + 96.7-8 the CTI + + Chain 28 (IDENT) + 80.13-20 the technology for *PRO* making breathable waterproof fabrics + 81.15-16 the technology + 81.22-22 it + 83.5-6 the technology + 85.11-12 the technology + 85.23-23 it + + Chain 27 (IDENT) + 81.10-10 Taiwan + 86.38-38 Taiwan + 92.40-40 Taiwan + 98.13-14 Taiwan 's + + Chain ectb_1003.part-004-E1 (IDENT) + 82.7-8 the process + 85.0-0 It + + Chain 37 (IDENT) + 83.2-2 they + 83.8-8 many + + Chain 76 (IDENT) + 87.12-13 many firms + 87.21-21 they + 88.0-0 Their + + Chain 96 (IDENT) + 88.3-3 is + 89.0-0 This + + Chain 98 (IDENT) + 89.9-9 firms + 90.2-2 they + + Chain 105 (IDENT) + 91.1-3 ' Flexibility ' + 91.12-12 it + + Chain 151 (IDENT) + 94.19-24 tiny pores in the fabric surface + 95.4-5 these pores + + Chain 202 (IDENT) + 99.12-16 Taiwanese sport and leisurewear fabrics + 100.1-1 they + 100.17-17 their + + Chain 207 (IDENT) + 100.7-11 better breathability and water resistance + 100.13-13 this + + Chain 210 (IDENT) + 101.0-6 Fabrics treated * by G - Fun + 101.35-35 them + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A short-term view + +Treebanked sentence: +-------------------- + A short - term view + +Tree: +----- + (TOP (NP (DT A) + (ADJP (JJ short) + (HYPH -) + (NN term)) + (NN view))) + +Leaves: +------- + 0 A + 1 short + 2 - + 3 term + 4 view + sense: view-n.1 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Another type of new fabric which is in great demand is wicking fabric, based on fibers with a special cross-section. + +Treebanked sentence: +-------------------- + Another type of new fabric which *T*-9 is in great demand is wicking fabric , based * on fibers with a special + cross-section . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT Another) + (NN type)) + (PP (IN of) + (NP (NP (JJ new) + (NN fabric)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ is) + (PP-PRD (IN in) + (NP (JJ great) + (NN demand))))))))) + (VP (VBZ is) + (NP-PRD (NP (VBG wicking) + (NN fabric)) + (, ,) + (VP (VBN based) + (NP (-NONE- *)) + (PP-CLR (IN on) + (NP (NP (NNS fibers)) + (PP (IN with) + (NP (DT a) + (JJ special) + (NN cross-section)))))))) + (. .))) + +Leaves: +------- + 0 Another + 1 type + sense: type-n.1 + 2 of + 3 new + 4 fabric + 5 which + 6 *T*-9 + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 6:0, *T*-9 -> 5:1, which + ARG2 * -> 8:1, in great demand + LINK-SLC * -> 3:1, new fabric + * -> 6:0, *T*-9 -> 5:1, which + 8 in + 9 great + 10 demand + sense: demand-n.3 + 11 is + prop: be.01 + v * -> 11:0, is + ARG1 * -> 0:2, Another type of new fabric which *T*-9 is in great demand + ARG2 * -> 12:2, wicking fabric , based * on fibers with a special cross-section + 12 wicking + prop: wick.01 + v * -> 12:0, wicking + ARG0 * -> 13:0, fabric + 13 fabric + 14 , + 15 based + prop: base.02 + v * -> 15:0, based + ARG1 * -> 16:0, * + ARG2 * -> 17:1, on fibers with a special cross-section + LINK-PCR * -> 12:1, wicking fabric + * -> 16:0, * + 16 * + 17 on + 18 fibers + 19 with + 20 a + 21 special + 22 cross-section + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The leading volume producer of wicking fibers in Taiwan is Chung Shing Textile Company. + +Treebanked sentence: +-------------------- + The leading volume producer of wicking fibers in Taiwan is Chung Shing Textile Company . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (VBG leading) + (NN volume) + (NN producer)) + (PP (IN of) + (NP (VBG wicking) + (NNS fibers))) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (VP (VBZ is) + (NP-PRD (NML (NNP Chung) + (NNP Shing)) + (NNP Textile) + (NNP Company))) + (. .))) + +Leaves: +------- + 0 The + 1 leading + prop: lead.02 + v * -> 1:0, leading + ARG0 * -> 2:0, volume + -> 3:0, producer + 2 volume + sense: volume-n.2 + 3 producer + sense: producer-n.1 + 4 of + 5 wicking + prop: wick.01 + v * -> 5:0, wicking + ARG0 * -> 6:0, fibers + 6 fibers + 7 in + 8 Taiwan + coref: IDENT 16 8-8 Taiwan + name: GPE 8-8 Taiwan + 9 is + sense: be-v.2 + prop: be.01 + v * -> 9:0, is + ARG1 * -> 0:2, The leading volume producer of wicking fibers in Taiwan + ARG2 * -> 10:2, Chung Shing Textile Company + 10 Chung + coref: IDENT 17 10-13 Chung Shing Textile Company + name: ORG 10-13 Chung Shing Textile Company + 11 Shing + 12 Textile + 13 Company + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Its president, William Shang, explains that conventional fibers have a round cross-section, but by changing the fibers ' + physical properties it is possible to produce them with various cross-sectional profiles such as X or Y shapes, which + create capillaries along the fibers. + +Treebanked sentence: +-------------------- + Its president , William Shang , explains that conventional fibers have a round cross-section , but by *PRO* changing the + fibers ' physical properties it *EXP*-2 is possible *PRO* to produce them with various cross-sectional profiles such as + X or Y shapes , which *T*-1 create capillaries along the fibers . + +Tree: +----- + (TOP (S (NP-SBJ (NP (PRP$ Its) + (NN president)) + (, ,) + (NP (NNP William) + (NNP Shang))) + (, ,) + (VP (VBZ explains) + (SBAR (IN that) + (S (S (NP-SBJ (JJ conventional) + (NNS fibers)) + (VP (VBP have) + (NP (DT a) + (NN round) + (NN cross-section)))) + (, ,) + (CC but) + (S (PP (IN by) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG changing) + (NP (NP (DT the) + (NNS fibers) + (POS ')) + (JJ physical) + (NNS properties))))) + (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-2))) + (VP (VBZ is) + (ADJP-PRD (JJ possible)) + (S-2 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB produce) + (NP (PRP them)) + (PP (IN with) + (NP (NP (NP (JJ various) + (JJ cross-sectional) + (NNS profiles)) + (PP (JJ such) + (IN as) + (NP (NML (NNP X) + (CC or) + (NNP Y)) + (NNS shapes)))) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBP create) + (NP (NP (NNS capillaries)) + (PP-LOC (IN along) + (NP (DT the) + (NNS fibers))))))))))))))))) + (. .))) + +Leaves: +------- + 0 Its + coref: IDENT 18 0-4 Its president , William Shang + coref: APPOS ATTRIB 20 0-1 Its president + coref: IDENT 17 0-0 Its + 1 president + sense: president-n.1 + 2 , + 3 William + coref: APPOS HEAD 20 3-4 William Shang + name: PERSON 3-4 William Shang + 4 Shang + 5 , + 6 explains + sense: explain-v.1 + prop: explain.01 + v * -> 6:0, explains + ARG0 * -> 0:2, Its president , William Shang + ARG1 * -> 7:1, that conventional fibers have a round cross-section , but by *PRO* changing the fibers + ' physical properties it *EXP*-2 is possible *PRO* to produce them with various + cross-sectional profiles such as X or Y shapes , which *T*-1 create capillaries along + the fibers + 7 that + 8 conventional + coref: IDENT 21 8-9 conventional fibers + 9 fibers + 10 have + sense: have-v.2 + prop: have.03 + v * -> 10:0, have + ARG0 * -> 8:1, conventional fibers + ARG1 * -> 11:1, a round cross-section + 11 a + 12 round + sense: round-n.9 + 13 cross-section + 14 , + 15 but + 16 by + 17 *PRO* + 18 changing + sense: change-v.1 + prop: change.01 + v * -> 18:0, changing + ARG0 * -> 17:0, *PRO* + ARG1 * -> 19:2, the fibers ' physical properties + 19 the + coref: IDENT 21 19-21 the fibers ' + 20 fibers + 21 ' + 22 physical + 23 properties + sense: property-n.3 + 24 it + 25 *EXP*-2 + 26 is + sense: be-v.1 + prop: be.01 + v * -> 26:0, is + ARGM-MNR * -> 16:1, by *PRO* changing the fibers ' physical properties + ARG2 * -> 27:1, possible + ARG1 * -> 25:0, *EXP*-2 -> 28:2, *PRO* to produce them with various cross-sectional profiles such as X + or Y shapes , which *T*-1 create capillaries along the fibers + 27 possible + 28 *PRO* + 29 to + 30 produce + sense: produce-v.1 + prop: produce.01 + v * -> 30:0, produce + ARG0 * -> 28:0, *PRO* + ARG1 * -> 31:1, them + ARGM-MNR * -> 32:1, with various cross-sectional profiles such as X or Y shapes , which *T*-1 create + capillaries along the fibers + 31 them + coref: IDENT 21 31-31 them + 32 with + 33 various + 34 cross-sectional + 35 profiles + 36 such + 37 as + 38 X + 39 or + 40 Y + 41 shapes + sense: shape-n.1 + 42 , + 43 which + 44 *T*-1 + 45 create + sense: create-v.1 + prop: create.01 + v * -> 45:0, create + ARG0 * -> 44:0, *T*-1 -> 43:1, which + ARG1 * -> 46:2, capillaries along the fibers + LINK-SLC * -> 33:2, various cross-sectional profiles such as X or Y shapes + * -> 44:0, *T*-1 -> 43:1, which + 46 capillaries + coref: IDENT 35 46-49 capillaries along the fibers + 47 along + 48 the + coref: IDENT 21 48-49 the fibers + 49 fibers + 50 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These not only quickly wick sweat away from the skin, but also regulate body temperature and allow garments to dry + quickly after washing. + +Treebanked sentence: +-------------------- + These not only quickly wick sweat away from the skin , but also regulate body temperature and allow garments to dry + quickly after washing . + +Tree: +----- + (TOP (S (NP-SBJ (DT These)) + (VP (CONJP (RB not) + (RB only)) + (VP (ADVP (RB quickly)) + (VBP wick) + (NP (NN sweat)) + (ADVP (RB away) + (PP (IN from) + (NP (DT the) + (NN skin))))) + (, ,) + (CONJP (CC but) + (RB also)) + (VP (VP (VBP regulate) + (NP (NN body) + (NN temperature))) + (CC and) + (VP (VBP allow) + (S (NP-SBJ (NNS garments)) + (VP (TO to) + (VP (VB dry) + (ADVP (RB quickly)) + (PP-TMP (IN after) + (NP (NN washing))))))))) + (. .))) + +Leaves: +------- + 0 These + coref: IDENT 35 0-0 These + 1 not + 2 only + 3 quickly + 4 wick + prop: wick.01 + v * -> 4:0, wick + ARG0 * -> 0:1, These + ARGM-ADV * -> 1:1, not only + ARGM-MNR * -> 3:1, quickly + ARG1 * -> 5:1, sweat + ARGM-DIR * -> 6:1, away from the skin + 5 sweat + 6 away + 7 from + 8 the + 9 skin + 10 , + 11 but + 12 also + 13 regulate + sense: regulate-v.1 + prop: regulate.01 + v * -> 13:0, regulate + ARG0 * -> 0:1, These + ARG1 * -> 14:1, body temperature + 14 body + sense: body-n.2 + 15 temperature + 16 and + 17 allow + sense: allow-v.1 + prop: allow.01 + v * -> 17:0, allow + ARG0 * -> 0:1, These + ARG1 * -> 18:2, garments to dry quickly after washing + 18 garments + 19 to + 20 dry + sense: dry-v.1 + prop: dry.02 + v * -> 20:0, dry + ARG1 * -> 18:1, garments + ARGM-MNR * -> 21:1, quickly + ARGM-TMP * -> 22:1, after washing + 21 quickly + 22 after + 23 washing + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, the fibers ' special properties can easily be destroyed in the various processes they go through such as yarn + spinning, weaving, dyeing and finishing, so that making finished garments requires a high degree of technical + sophistication. + +Treebanked sentence: +-------------------- + However , the fibers ' special properties can easily be destroyed *-9 in the various processes 0 they go through *T*-1 + such as yarn spinning , weaving , dyeing and finishing , so that *PRO* making finished garments requires a high degree + of technical sophistication . + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (NP-SBJ-9 (NP (DT the) + (NNS fibers) + (POS ')) + (JJ special) + (NNS properties)) + (VP (MD can) + (ADVP (RB easily)) + (VP (VB be) + (VP (VBN destroyed) + (NP (-NONE- *-9)) + (PP (IN in) + (NP (NP (NP (DT the) + (JJ various) + (NNS processes)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (PRP they)) + (VP (VBP go) + (PP (IN through) + (NP (-NONE- *T*-1))))))) + (PP (JJ such) + (IN as) + (NP (NP (NN yarn) + (NN spinning)) + (, ,) + (NP (NN weaving)) + (, ,) + (NP (NN dyeing)) + (CC and) + (NP (NN finishing)))))) + (, ,) + (SBAR-PRP (IN so) + (IN that) + (S (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG making) + (NP (JJ finished) + (NNS garments)))) + (VP (VBZ requires) + (NP (NP (DT a) + (JJ high) + (NN degree)) + (PP (IN of) + (NP (JJ technical) + (NN sophistication)))))))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 the + coref: IDENT 21 2-4 the fibers ' + 3 fibers + 4 ' + 5 special + 6 properties + sense: property-n.3 + 7 can + 8 easily + 9 be + prop: be.03 + v * -> 9:0, be + 10 destroyed + sense: destroy-v.1 + prop: destroy.01 + v * -> 10:0, destroyed + ARGM-DIS * -> 0:1, However + ARGM-MOD * -> 7:0, can + ARGM-MNR * -> 8:1, easily + ARG1 * -> 11:0, *-9 -> 2:2, the fibers ' special properties + ARG2 * -> 12:1, in the various processes 0 they go through *T*-1 such as yarn spinning , weaving , + dyeing and finishing + ARGM-ADV * -> 32:1, so that *PRO* making finished garments requires a high degree of technical + sophistication + 11 *-9 + 12 in + 13 the + 14 various + 15 processes + sense: process-n.1 + prop: process.01 + n * -> 15:0, processes + ARGM-ADJ * -> 14:0, various + ARGM-ADJ * -> 16:2, 0 they go through *T*-1 + 16 0 + 17 they + coref: IDENT 21 17-17 they + 18 go + sense: go-v.1 + prop: go.12 + v * -> 18:0, go + ARG1 * -> 17:1, they + ARG2 * -> 19:1, through *T*-1 + 19 through + 20 *T*-1 + 21 such + 22 as + 23 yarn + 24 spinning + 25 , + 26 weaving + 27 , + 28 dyeing + 29 and + 30 finishing + 31 , + 32 so + 33 that + 34 *PRO* + 35 making + prop: make.01 + v * -> 35:0, making + ARG0 * -> 34:0, *PRO* + ARG1 * -> 36:1, finished garments + 36 finished + 37 garments + 38 requires + sense: require-v.1 + prop: require.01 + v * -> 38:0, requires + ARG0 * -> 34:2, *PRO* making finished garments + ARG1 * -> 39:2, a high degree of technical sophistication + 39 a + 40 high + 41 degree + sense: degree-n.7 + 42 of + 43 technical + 44 sophistication + 45 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Chung Shing has launched a fabric named Coolplus to compete with Dupont's equivalent product, Coolmax. + +Treebanked sentence: +-------------------- + Chung Shing has launched a fabric named * *PRO* Coolplus *PRO* to compete with Dupont 's equivalent product , Coolmax . + +Tree: +----- + (TOP (S (NP-SBJ (NNP Chung) + (NNP Shing)) + (VP (VBZ has) + (VP (VBN launched) + (NP (NP (DT a) + (NN fabric)) + (VP (VBN named) + (NP-1 (-NONE- *)) + (S-CLR (NP-SBJ-1 (-NONE- *PRO*)) + (NP-PRD (NNP Coolplus))))) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB compete) + (PP-CLR (IN with) + (NP (NP (NP (NNP Dupont) + (POS 's)) + (JJ equivalent) + (NN product)) + (, ,) + (NP (NNP Coolmax))))))))) + (. .))) + +Leaves: +------- + 0 Chung + coref: IDENT 17 0-1 Chung Shing + name: PERSON 0-1 Chung Shing + 1 Shing + 2 has + prop: have.01 + v * -> 2:0, has + 3 launched + sense: launch-v.2 + prop: launch.01 + v * -> 3:0, launched + ARG0 * -> 0:1, Chung Shing + ARG1 * -> 4:2, a fabric named * *PRO* Coolplus + ARGM-PRP * -> 10:2, *PRO* to compete with Dupont 's equivalent product , Coolmax + 4 a + 5 fabric + 6 named + prop: name.01 + v * -> 6:0, named + ARG1 * -> 7:0, * + ARG2 * -> 8:2, *PRO* Coolplus + LINK-PCR * -> 4:1, a fabric + * -> 7:0, * + 7 * + 8 *PRO* + 9 Coolplus + name: PRODUCT 9-9 Coolplus + 10 *PRO* + 11 to + 12 compete + sense: compete-v.1 + prop: compete.01 + v * -> 12:0, compete + ARG0 * -> 10:0, *PRO* + ARG1 * -> 13:1, with Dupont 's equivalent product , Coolmax + 13 with + 14 Dupont + coref: APPOS ATTRIB 71 14-17 Dupont 's equivalent product + name: ORG 14-14 Dupont + 15 's + 16 equivalent + 17 product + sense: product-n.1 + 18 , + 19 Coolmax + coref: APPOS HEAD 71 19-19 Coolmax + name: PRODUCT 19-19 Coolmax + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " Developing new fibers is the most important element in upgrading the textile industry, " says Shang. + +Treebanked sentence: +-------------------- + " *PRO* Developing new fibers is the most important element in *PRO* upgrading the textile industry , " says *T*-1 Shang + . + +Tree: +----- + (TOP (SINV (`` ") + (S-TPC-1 (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Developing) + (NP (JJ new) + (NNS fibers)))) + (VP (VBZ is) + (NP-PRD (NP (DT the) + (ADJP (RBS most) + (JJ important)) + (NN element)) + (PP (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG upgrading) + (NP (DT the) + (NN textile) + (NN industry)))))))) + (, ,) + ('' ") + (VP (VBZ says) + (S (-NONE- *T*-1))) + (NP-SBJ (NNP Shang)) + (. .))) + +Leaves: +------- + 0 " + 1 *PRO* + 2 Developing + prop: develop.02 + v * -> 2:0, Developing + ARG0 * -> 1:0, *PRO* + ARG1 * -> 3:1, new fibers + 3 new + 4 fibers + 5 is + sense: be-v.2 + prop: be.01 + v * -> 5:0, is + ARG1 * -> 1:2, *PRO* Developing new fibers + ARG2 * -> 6:2, the most important element in *PRO* upgrading the textile industry + 6 the + 7 most + 8 important + 9 element + sense: element-n.1 + 10 in + 11 *PRO* + 12 upgrading + prop: upgrade.02 + v * -> 12:0, upgrading + ARG0 * -> 11:0, *PRO* + ARG1 * -> 13:1, the textile industry + 13 the + 14 textile + 15 industry + sense: industry-n.1 + 16 , + 17 " + 18 says + sense: say-v.1 + prop: say.01 + v * -> 18:0, says + ARG1 * -> 19:0, *T*-1 -> 1:3, *PRO* Developing new fibers is the most important element in *PRO* + upgrading the textile industry + ARG0 * -> 20:1, Shang + 19 *T*-1 + 20 Shang + coref: IDENT 18 20-20 Shang + name: PERSON 20-20 Shang + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, he acknowledges that although many new products are being developed in Taiwan, on closer inspection they are + all copies of products first developed elsewhere, and so fall some way short of real innovation. + +Treebanked sentence: +-------------------- + However , he acknowledges that although many new products are being developed *-9 in Taiwan , on closer inspection they + are all copies of products first developed * elsewhere , and so fall some way short of real innovation . + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (NP-SBJ (PRP he)) + (VP (VBZ acknowledges) + (SBAR (IN that) + (S (SBAR-ADV (IN although) + (S (NP-SBJ-9 (JJ many) + (JJ new) + (NNS products)) + (VP (VBP are) + (VP (VBG being) + (VP (VBN developed) + (NP (-NONE- *-9)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))))))) + (, ,) + (PP (IN on) + (NP (JJR closer) + (NN inspection))) + (NP-SBJ (PRP they)) + (VP (VP (VBP are) + (RB all) + (NP-PRD (NP (NNS copies)) + (PP (IN of) + (NP (NP (NNS products)) + (VP (ADVP (RB first)) + (VBN developed) + (NP (-NONE- *)) + (ADVP-LOC (RB elsewhere))))))) + (, ,) + (CC and) + (VP (ADVP (RB so)) + (VBP fall) + (ADVP (NP (DT some) + (NN way)) + (RB short) + (PP (IN of) + (NP (JJ real) + (NN innovation))))))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 he + coref: IDENT 18 2-2 he + 3 acknowledges + sense: acknowledge-v.1 + prop: acknowledge.01 + v * -> 3:0, acknowledges + ARGM-DIS * -> 0:1, However + ARG0 * -> 2:1, he + ARG1 * -> 4:1, that although many new products are being developed *-9 in Taiwan , on closer + inspection they are all copies of products first developed * elsewhere , and so fall + some way short of real innovation + 4 that + 5 although + 6 many + coref: IDENT 80 6-8 many new products + 7 new + 8 products + sense: product-n.1 + 9 are + prop: be.03 + v * -> 9:0, are + 10 being + prop: be.03 + v * -> 10:0, being + 11 developed + sense: develop-v.1 + prop: develop.02 + v * -> 11:0, developed + ARG1 * -> 12:0, *-9 -> 6:1, many new products + ARGM-LOC * -> 13:1, in Taiwan + 12 *-9 + 13 in + 14 Taiwan + coref: IDENT 16 14-14 Taiwan + name: GPE 14-14 Taiwan + 15 , + 16 on + 17 closer + 18 inspection + 19 they + coref: IDENT 80 19-19 they + 20 are + sense: be-v.1 + prop: be.01 + v * -> 20:0, are + ARGM-ADV * -> 5:1, although many new products are being developed *-9 in Taiwan + ARGM-TMP * -> 16:1, on closer inspection + ARG1 * -> 19:1, they + ARGM-ADV * -> 21:0, all + ARG2 * -> 22:2, copies of products first developed * elsewhere + 21 all + 22 copies + sense: copy-n.2 + 23 of + 24 products + sense: product-n.1 + 25 first + name: ORDINAL 25-25 first + 26 developed + prop: develop.02 + v * -> 26:0, developed + ARG1 * -> 27:0, * + ARGM-ADV * -> 25:1, first + ARGM-LOC * -> 28:1, elsewhere + LINK-PCR * -> 24:1, products + * -> 27:0, * + 27 * + 28 elsewhere + 29 , + 30 and + 31 so + 32 fall + sense: fall-v.3 + prop: fall.01 + v * -> 32:0, fall + ARG1 * -> 6:1, many new products + ARG2 * -> 33:2, some way short of real innovation + 33 some + 34 way + sense: way-n.4 + 35 short + 36 of + 37 real + 38 innovation + sense: innovation-n.2 + prop: innovation.01 + n * -> 38:0, innovation + ARGM-ADJ * -> 37:0, real + 39 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But whereas it used to take Taiwanese companies several years of trial and error to figure out how to make such + products, the gap between them and their European and American competitors is growing ever smaller. + +Treebanked sentence: +-------------------- + But whereas it used *-9 to take Taiwanese companies several years of trial and error *PRO* to figure out how *PRO* to + make such products *T*-1 , the gap between them and their European and American competitors is growing ever smaller . + +Tree: +----- + (TOP (S (CC But) + (SBAR-TMP (IN whereas) + (S (NP-SBJ-9 (PRP it)) + (VP (VBD used) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB take) + (NP (JJ Taiwanese) + (NNS companies)) + (NP (NP (JJ several) + (NNS years)) + (PP (IN of) + (NP (NN trial) + (CC and) + (NN error)))) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB figure) + (PRT (RP out)) + (SBAR (WHADVP-1 (WRB how)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB make) + (NP (JJ such) + (NNS products)) + (ADVP (-NONE- *T*-1))))))))))))))) + (, ,) + (NP-SBJ (NP (NP (DT the) + (NN gap)) + (PP (IN between) + (NP (PRP them)))) + (CC and) + (NP (PRP$ their) + (ADJP (JJ European) + (CC and) + (JJ American)) + (NNS competitors))) + (VP (VBZ is) + (VP (VBG growing) + (ADJP-PRD (RB ever) + (JJR smaller)))) + (. .))) + +Leaves: +------- + 0 But + 1 whereas + 2 it + 3 used + sense: use-v.4 + prop: use.03 + v * -> 3:0, used + 4 *-9 + 5 to + 6 take + sense: take-v.3 + prop: take.10 + v * -> 6:0, take + ARG2 * -> 7:1, Taiwanese companies + ARG1 * -> 9:2, several years of trial and error + ARG0 * -> 15:2, *PRO* to figure out how *PRO* to make such products *T*-1 + 7 Taiwanese + coref: IDENT 94 7-8 Taiwanese companies + name: NORP 7-7 Taiwanese + 8 companies + sense: company-n.1 + 9 several + name: DATE 9-10 several years + 10 years + 11 of + 12 trial + sense: trial-n.1 + prop: trial.01 + n * -> 12:0, trial + 13 and + 14 error + sense: error-n.1 + 15 *PRO* + 16 to + 17 figure + sense: figure-v.2 + prop: figure.05 + v * -> 17:0, figure + -> 18:1, out + ARG0 * -> 15:0, *PRO* + ARG1 * -> 19:2, how *PRO* to make such products *T*-1 + LINK-PCR * -> 7:1, Taiwanese companies + * -> 15:0, *PRO* + 18 out + 19 how + 20 *PRO* + 21 to + 22 make + sense: make-v.2 + prop: make.01 + v * -> 22:0, make + ARG0 * -> 20:0, *PRO* + ARG1 * -> 23:1, such products + ARGM-MNR * -> 25:0, *T*-1 -> 19:1, how + 23 such + 24 products + sense: product-n.1 + 25 *T*-1 + 26 , + 27 the + 28 gap + sense: gap-n.1 + 29 between + 30 them + coref: IDENT 94 30-30 them + 31 and + 32 their + coref: IDENT 94 32-32 their + 33 European + name: NORP 33-33 European + 34 and + 35 American + name: NORP 35-35 American + 36 competitors + 37 is + prop: be.03 + v * -> 37:0, is + 38 growing + sense: grow-v.1 + prop: grow.02 + v * -> 38:0, growing + ARGM-DIS * -> 0:0, But + ARGM-ADV * -> 1:1, whereas it used *-9 to take Taiwanese companies several years of trial and error *PRO* + to figure out how *PRO* to make such products *T*-1 + ARG1 * -> 27:3, the gap between them and their European and American competitors + ARG2 * -> 39:1, ever smaller + 39 ever + 40 smaller + 41 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + When new products appear overseas it now only takes Taiwan two to three years to bring out an equivalent. + +Treebanked sentence: +-------------------- + When new products appear overseas *T*-9 it now only takes Taiwan two to three years *PRO*-1 to bring out an equivalent . + +Tree: +----- + (TOP (S (SBAR-TMP (WHADVP-9 (WRB When)) + (S (NP-SBJ (JJ new) + (NNS products)) + (VP (VBP appear) + (ADVP-DIR (RB overseas)) + (ADVP (-NONE- *T*-9))))) + (NP-SBJ (PRP it)) + (ADVP-TMP (RB now) + (RB only)) + (VP (VBZ takes) + (NP-1 (NNP Taiwan)) + (NP (QP (CD two) + (IN to) + (CD three)) + (NNS years)) + (S-CLR (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB bring) + (PRT (RP out)) + (NP (DT an) + (NN equivalent)))))) + (. .))) + +Leaves: +------- + 0 When + 1 new + 2 products + sense: product-n.1 + 3 appear + sense: appear-v.2 + prop: appear.01 + v * -> 3:0, appear + ARG1 * -> 1:1, new products + ARGM-LOC * -> 4:1, overseas + ARGM-TMP * -> 5:0, *T*-9 -> 0:1, When + 4 overseas + 5 *T*-9 + 6 it + 7 now + 8 only + 9 takes + sense: take-v.3 + prop: take.10 + v * -> 9:0, takes + ARGM-TMP * -> 0:2, When new products appear overseas *T*-9 + ARGM-TMP * -> 7:1, now only + ARG2 * -> 15:0, *PRO*-1 -> 10:1, Taiwan + ARG1 * -> 11:2, two to three years + ARG0 * -> 15:2, *PRO*-1 to bring out an equivalent + 10 Taiwan + coref: IDENT 16 10-10 Taiwan + name: GPE 10-10 Taiwan + 11 two + name: DATE 11-14 two to three years + 12 to + 13 three + 14 years + 15 *PRO*-1 + 16 to + 17 bring + sense: bring-v.3 + prop: bring.01 + v * -> 17:0, bring + ARG0 * -> 15:0, *PRO*-1 -> 10:1, Taiwan + ARGM-DIR * -> 18:1, out + ARG1 * -> 19:1, an equivalent + 18 out + 19 an + 20 equivalent + sense: equivalent-n.1 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + William Shang observes that when most Taiwanese firms see something new at an overseas exhibition they will bring back a + sample, inspect it under a high-powered microscope to determine the weaving method and have it chemically analyzed to + find out the composition of the fibers and finishing chemicals. + +Treebanked sentence: +-------------------- + William Shang observes that when most Taiwanese firms see something new at an overseas exhibition *T*-9 they will bring + back a sample , inspect it under a high - powered microscope *PRO*-1 to determine the weaving method and have it + chemically analyzed *-3 *PRO*-1 to find out the composition of the fibers and finishing chemicals . + +Tree: +----- + (TOP (S (NP-SBJ (NNP William) + (NNP Shang)) + (VP (VBZ observes) + (SBAR (IN that) + (S (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (JJS most) + (JJ Taiwanese) + (NNS firms)) + (VP (VBP see) + (NP (NP (NN something)) + (ADJP (JJ new))) + (PP-LOC (IN at) + (NP (DT an) + (JJ overseas) + (NN exhibition))) + (ADVP-TMP (-NONE- *T*-9))))) + (NP-SBJ-1 (PRP they)) + (VP (MD will) + (VP (VP (VB bring) + (ADVP (RB back)) + (NP (DT a) + (NN sample))) + (, ,) + (VP (VB inspect) + (NP (PRP it)) + (PP (IN under) + (NP (DT a) + (ADJP (JJ high) + (HYPH -) + (JJ powered)) + (NN microscope))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB determine) + (NP (DT the) + (NN weaving) + (NN method)))))) + (CC and) + (VP (VB have) + (S (NP-SBJ-3 (PRP it)) + (ADVP (RB chemically)) + (VP (VBN analyzed) + (NP (-NONE- *-3)))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB find) + (PRT (RP out)) + (NP (NP (DT the) + (NN composition)) + (PP (IN of) + (NP (DT the) + (NNS fibers) + (CC and) + (NN finishing) + (NNS chemicals))))))))))))) + (. .))) + +Leaves: +------- + 0 William + coref: IDENT 18 0-1 William Shang + name: PERSON 0-1 William Shang + 1 Shang + 2 observes + sense: observe-v.4 + prop: observe.02 + v * -> 2:0, observes + ARG0 * -> 0:1, William Shang + ARG1 * -> 3:1, that when most Taiwanese firms see something new at an overseas exhibition *T*-9 they + will bring back a sample , inspect it under a high - powered microscope *PRO*-1 to + determine the weaving method and have it chemically analyzed *-3 *PRO*-1 to find out + the composition of the fibers and finishing chemicals + 3 that + 4 when + 5 most + coref: IDENT 113 5-7 most Taiwanese firms + 6 Taiwanese + name: NORP 6-6 Taiwanese + 7 firms + 8 see + sense: see-v.1 + prop: see.01 + v * -> 8:0, see + ARG0 * -> 5:1, most Taiwanese firms + ARG1 * -> 9:2, something new + ARGM-LOC * -> 11:1, at an overseas exhibition + ARGM-TMP * -> 15:0, *T*-9 -> 4:1, when + 9 something + coref: IDENT 114 9-10 something new + 10 new + 11 at + 12 an + 13 overseas + 14 exhibition + sense: exhibition-n.2 + prop: exhibition.01 + n * -> 14:0, exhibition + ARGM-LOC * -> 13:0, overseas + 15 *T*-9 + 16 they + coref: IDENT 113 16-16 they + 17 will + 18 bring + sense: bring-v.1 + prop: bring.01 + v * -> 18:0, bring + ARGM-TMP * -> 4:2, when most Taiwanese firms see something new at an overseas exhibition *T*-9 + ARG0 * -> 31:0, *PRO*-1 -> 16:1, they + ARGM-MOD * -> 17:0, will + ARGM-DIR * -> 19:1, back + ARG1 * -> 20:1, a sample + 19 back + 20 a + coref: IDENT 118 20-21 a sample + 21 sample + sense: sample-n.2 + 22 , + 23 inspect + sense: inspect-v.1 + prop: inspect.01 + v * -> 23:0, inspect + ARGM-TMP * -> 4:2, when most Taiwanese firms see something new at an overseas exhibition *T*-9 + ARG0 * -> 31:0, *PRO*-1 -> 16:1, they + ARGM-MOD * -> 17:0, will + ARG1 * -> 24:1, it + ARGM-MNR * -> 25:1, under a high - powered microscope + ARG2 * -> 31:2, *PRO*-1 to determine the weaving method + 24 it + coref: IDENT 118 24-24 it + 25 under + 26 a + 27 high + 28 - + 29 powered + 30 microscope + 31 *PRO*-1 + 32 to + 33 determine + sense: determine-v.1 + prop: determine.01 + v * -> 33:0, determine + ARG0 * -> 31:0, *PRO*-1 -> 16:1, they + ARG1 * -> 34:1, the weaving method + 34 the + 35 weaving + 36 method + 37 and + 38 have + sense: have-v.6 + prop: have.04 + v * -> 38:0, have + ARGM-TMP * -> 4:2, when most Taiwanese firms see something new at an overseas exhibition *T*-9 + ARG0 * -> 43:0, *PRO*-1 -> 16:1, they + ARGM-MOD * -> 17:0, will + ARG1 * -> 39:2, it chemically analyzed *-3 + ARGM-PRP * -> 43:2, *PRO*-1 to find out the composition of the fibers and finishing chemicals + 39 it + coref: IDENT 118 39-39 it + 40 chemically + 41 analyzed + prop: analyze.01 + v * -> 41:0, analyzed + ARGM-MNR * -> 40:1, chemically + ARG1 * -> 42:0, *-3 -> 39:1, it + LINK-PCR * -> 42:0, *-3 -> 39:1, it + * -> 42:0, *-3 -> 39:1, it + 42 *-3 + 43 *PRO*-1 + 44 to + 45 find + sense: find-v.2 + prop: find.03 + v * -> 45:0, find + -> 46:1, out + ARG0 * -> 43:0, *PRO*-1 -> 16:1, they + ARG1 * -> 47:2, the composition of the fibers and finishing chemicals + 46 out + 47 the + 48 composition + sense: composition-n.2 + 49 of + 50 the + 51 fibers + 52 and + 53 finishing + 54 chemicals + 55 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With Taiwan's long years of manufacturing experience, it is then not difficult to reproduce the product with 70-80 % + accuracy. + +Treebanked sentence: +-------------------- + With Taiwan 's long years of manufacturing experience , it *EXP*-1 is then not difficult *PRO* to reproduce the product + with 70 - 80 % accuracy . + +Tree: +----- + (TOP (S (PP (IN With) + (NP (NP (NP (NNP Taiwan) + (POS 's)) + (JJ long) + (NNS years)) + (PP (IN of) + (NP (VBG manufacturing) + (NN experience))))) + (, ,) + (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-1))) + (VP (VBZ is) + (ADVP (RB then)) + (RB not) + (ADJP-PRD (JJ difficult)) + (S-1 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB reproduce) + (NP (DT the) + (NN product)) + (PP-TMP (IN with) + (NP (NML (QP (CD 70) + (SYM -) + (CD 80)) + (NN %)) + (NN accuracy))))))) + (. .))) + +Leaves: +------- + 0 With + 1 Taiwan + coref: IDENT 16 1-2 Taiwan 's + name: GPE 1-1 Taiwan + 2 's + 3 long + 4 years + name: DATE 4-4 years + 5 of + 6 manufacturing + 7 experience + sense: experience-n.1 + 8 , + 9 it + 10 *EXP*-1 + 11 is + sense: be-v.1 + prop: be.01 + v * -> 11:0, is + ARGM-CAU * -> 0:1, With Taiwan 's long years of manufacturing experience + ARGM-TMP * -> 12:1, then + ARGM-NEG * -> 13:0, not + ARG2 * -> 14:1, difficult + ARG1 * -> 10:0, *EXP*-1 -> 15:2, *PRO* to reproduce the product with 70 - 80 % accuracy + 12 then + 13 not + 14 difficult + 15 *PRO* + 16 to + 17 reproduce + sense: reproduce-v.2 + prop: reproduce.01 + v * -> 17:0, reproduce + ARG0 * -> 15:0, *PRO* + ARG1 * -> 18:1, the product + ARGM-MNR * -> 20:1, with 70 - 80 % accuracy + 18 the + coref: IDENT 114 18-19 the product + 19 product + sense: product-n.1 + 20 with + 21 70 + name: PERCENT 21-24 70 - 80 % + 22 - + 23 80 + 24 % + 25 accuracy + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + However, Shang does not see this as a viable long-term strategy. + +Treebanked sentence: +-------------------- + However , Shang does not see this as a viable long - term strategy . + +Tree: +----- + (TOP (S (ADVP (RB However)) + (, ,) + (NP-SBJ (NNP Shang)) + (VP (VBZ does) + (RB not) + (VP (VB see) + (NP (DT this)) + (PP-CLR (IN as) + (NP (DT a) + (JJ viable) + (ADJP (JJ long) + (HYPH -) + (NN term)) + (NN strategy))))) + (. .))) + +Leaves: +------- + 0 However + 1 , + 2 Shang + coref: IDENT 18 2-2 Shang + name: PERSON 2-2 Shang + 3 does + prop: do.01 + v * -> 3:0, does + 4 not + 5 see + sense: see-v.2 + prop: see.01 + v * -> 5:0, see + ARGM-DIS * -> 0:1, However + ARG0 * -> 2:1, Shang + ARGM-NEG * -> 4:0, not + ARG1 * -> 6:1, this + -> 8:1, a viable long - term strategy + 6 this + 7 as + 8 a + 9 viable + 10 long + 11 - + 12 term + 13 strategy + sense: strategy-n.1 + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + " The best strategy for the long-term is still to put more effort into basic scientific research, " he says. + +Treebanked sentence: +-------------------- + " The best strategy for the long - term is still *PRO* to put more effort into basic scientific research , " he says + *T*-2 . + +Tree: +----- + (TOP (S (`` ") + (S-TPC-2 (NP-SBJ (DT The) + (JJS best) + (NN strategy)) + (PP (IN for) + (NP (DT the) + (JJ long) + (HYPH -) + (NN term))) + (VP (VBZ is) + (ADVP-TMP (RB still)) + (S-PRD (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB put) + (NP (JJR more) + (NN effort)) + (PP-LOC-CLR (IN into) + (NP (JJ basic) + (JJ scientific) + (NN research)))))))) + (, ,) + ('' ") + (NP-SBJ (PRP he)) + (VP (VBZ says) + (NP (-NONE- *T*-2))) + (. .))) + +Leaves: +------- + 0 " + 1 The + 2 best + 3 strategy + sense: strategy-n.1 + 4 for + 5 the + 6 long + 7 - + 8 term + 9 is + sense: be-v.1 + prop: be.01 + v * -> 9:0, is + ARG1 * -> 1:1, The best strategy + ARGM-ADV * -> 4:1, for the long - term + ARGM-TMP * -> 10:1, still + ARG2 * -> 11:2, *PRO* to put more effort into basic scientific research + 10 still + 11 *PRO* + 12 to + 13 put + sense: put-v.4 + prop: put.01 + v * -> 13:0, put + ARG0 * -> 11:0, *PRO* + ARG1 * -> 14:1, more effort + ARG2 * -> 16:1, into basic scientific research + 14 more + 15 effort + sense: effort-n.1 + 16 into + 17 basic + 18 scientific + 19 research + sense: research-n.1 + 20 , + 21 " + 22 he + coref: IDENT 18 22-22 he + 23 says + sense: say-v.1 + prop: say.01 + v * -> 23:0, says + ARG0 * -> 22:1, he + ARG1 * -> 24:0, *T*-2 -> 1:2, The best strategy for the long - term is still *PRO* to put more effort + into basic scientific research + 24 *T*-2 + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For example, he read in Time magazine that because spiders produce the best natural fibers in the world, being both + lustrous and resilient, US scientists transferred spider genes into silkworms to produce " super silkworms. " + +Treebanked sentence: +-------------------- + For example , he read in Time magazine that because spiders produce the best natural fibers in the world , being both + lustrous and resilient , US scientists transferred spider genes into silkworms *PRO*-1 to produce " super silkworms . " + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NN example))) + (, ,) + (NP-SBJ (PRP he)) + (VP (VBD read) + (PP (IN in) + (NP (NNP Time) + (NN magazine))) + (SBAR (IN that) + (S (SBAR-PRP (IN because) + (S (NP-SBJ (NNS spiders)) + (VP (VBP produce) + (NP (NP (NP (DT the) + (JJS best) + (JJ natural) + (NNS fibers)) + (PP-LOC (IN in) + (NP (DT the) + (NN world)))) + (, ,) + (VP (VBG being) + (ADJP-PRD (CC both) + (JJ lustrous) + (CC and) + (JJ resilient))))))) + (, ,) + (NP-SBJ-1 (NNP US) + (NNS scientists)) + (VP (VBD transferred) + (NP (NN spider) + (NNS genes)) + (PP (IN into) + (NP (NNS silkworms))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB produce) + (`` ") + (NP (JJ super) + (NNS silkworms))))))))) + (. .) + ('' "))) + +Leaves: +------- + 0 For + 1 example + sense: example-n.1 + 2 , + 3 he + coref: IDENT 18 3-3 he + 4 read + sense: read-v.1 + prop: read.01 + v * -> 4:0, read + ARGM-DIS * -> 0:1, For example + ARG0 * -> 3:1, he + ARG1 * -> 5:1, in Time magazine + ARG3 * -> 8:1, that because spiders produce the best natural fibers in the world , being both + lustrous and resilient , US scientists transferred spider genes into silkworms *PRO*-1 + to produce " super silkworms + 5 in + 6 Time + name: ORG 6-7 Time magazine + 7 magazine + 8 that + 9 because + 10 spiders + 11 produce + sense: produce-v.1 + prop: produce.01 + v * -> 11:0, produce + ARG0 * -> 10:1, spiders + ARG1 * -> 12:3, the best natural fibers in the world , being both lustrous and resilient + 12 the + 13 best + 14 natural + 15 fibers + 16 in + 17 the + 18 world + sense: world-n.1 + 19 , + 20 being + sense: be-v.1 + prop: be.01 + v * -> 20:0, being + ARG1 * -> 12:2, the best natural fibers in the world + ARG2 * -> 21:1, both lustrous and resilient + 21 both + 22 lustrous + 23 and + 24 resilient + 25 , + 26 US + name: GPE 26-26 US + 27 scientists + 28 transferred + sense: transfer-v.1 + prop: transfer.01 + v * -> 28:0, transferred + ARGM-CAU * -> 9:1, because spiders produce the best natural fibers in the world , being both lustrous and + resilient + ARG0 * -> 33:0, *PRO*-1 -> 26:1, US scientists + ARG1 * -> 29:1, spider genes + ARG2 * -> 31:1, into silkworms + ARGM-PRP * -> 33:2, *PRO*-1 to produce " super silkworms + 29 spider + 30 genes + 31 into + 32 silkworms + 33 *PRO*-1 + 34 to + 35 produce + sense: produce-v.1 + prop: produce.01 + v * -> 35:0, produce + ARG0 * -> 33:0, *PRO*-1 -> 26:1, US scientists + ARG1 * -> 37:1, super silkworms + 36 " + 37 super + 38 silkworms + 39 . + 40 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The technique succeeded, but because the Americans were not very interested in producing clothing textiles, they did not + commercialize it. + +Treebanked sentence: +-------------------- + The technique succeeded , but because the Americans were not very interested in *PRO* producing clothing textiles , they + did not commercialize it . + +Tree: +----- + (TOP (S (S (NP-SBJ (DT The) + (NN technique)) + (VP (VBD succeeded))) + (, ,) + (CC but) + (S (SBAR-PRP (IN because) + (S (NP-SBJ (DT the) + (NNPS Americans)) + (VP (VBD were) + (RB not) + (ADJP-PRD (RB very) + (JJ interested) + (PP (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG producing) + (NP (NN clothing) + (NNS textiles))))))))) + (, ,) + (NP-SBJ (PRP they)) + (VP (VBD did) + (RB not) + (VP (VB commercialize) + (NP (PRP it))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 161 0-1 The technique + 1 technique + sense: technique-n.3 + 2 succeeded + sense: succeed-v.1 + prop: succeed.01 + v * -> 2:0, succeeded + ARG0 * -> 0:1, The technique + 3 , + 4 but + 5 because + 6 the + coref: IDENT 162 6-7 the Americans + 7 Americans + name: NORP 7-7 Americans + 8 were + sense: be-v.1 + prop: be.01 + v * -> 8:0, were + ARG1 * -> 6:1, the Americans + ARGM-NEG * -> 9:0, not + ARG2 * -> 10:1, very interested in *PRO* producing clothing textiles + 9 not + 10 very + 11 interested + 12 in + 13 *PRO* + 14 producing + prop: produce.01 + v * -> 14:0, producing + ARG0 * -> 13:0, *PRO* + ARG1 * -> 15:1, clothing textiles + 15 clothing + 16 textiles + 17 , + 18 they + coref: IDENT 162 18-18 they + 19 did + prop: do.01 + v * -> 19:0, did + 20 not + 21 commercialize + prop: commercialize.01 + v * -> 21:0, commercialize + ARGM-CAU * -> 5:1, because the Americans were not very interested in *PRO* producing clothing textiles + ARG0 * -> 18:1, they + ARGM-NEG * -> 20:0, not + ARG1 * -> 22:1, it + 22 it + coref: IDENT 161 22-22 it + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + When it comes to this kind of combination of lateral thinking and advanced technology, Taiwan still has some way to go. + +Treebanked sentence: +-------------------- + When it comes to this kind of combination of lateral thinking and advanced technology *T*-9 , Taiwan still has some way + 0 *PRO* to go *T*-1 . + +Tree: +----- + (TOP (S (SBAR-TMP (WHADVP-9 (WRB When)) + (S (NP-SBJ (PRP it)) + (VP (VBZ comes) + (PP (IN to) + (NP (NP (DT this) + (NN kind)) + (PP (IN of) + (NP (NP (NN combination)) + (PP (IN of) + (NP (NP (JJ lateral) + (NN thinking)) + (CC and) + (NP (JJ advanced) + (NN technology)))))))) + (ADVP (-NONE- *T*-9))))) + (, ,) + (NP-SBJ (NNP Taiwan)) + (ADVP (RB still)) + (VP (VBZ has) + (NP (NP (DT some) + (NN way)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB go) + (NP (-NONE- *T*-1)))))))) + (. .))) + +Leaves: +------- + 0 When + 1 it + 2 comes + sense: come-v.2 + prop: come.12 + v * -> 2:0, comes + ARG1 * -> 3:1, to this kind of combination of lateral thinking and advanced technology + ARGM-TMP * -> 14:0, *T*-9 -> 0:1, When + 3 to + 4 this + 5 kind + 6 of + 7 combination + sense: combination-n.1 + 8 of + 9 lateral + 10 thinking + 11 and + 12 advanced + 13 technology + sense: technology-n.1 + 14 *T*-9 + 15 , + 16 Taiwan + coref: IDENT 16 16-16 Taiwan + name: GPE 16-16 Taiwan + 17 still + 18 has + sense: have-v.2 + prop: have.03 + v * -> 18:0, has + ARGM-TMP * -> 0:2, When it comes to this kind of combination of lateral thinking and advanced technology + *T*-9 + ARG0 * -> 16:1, Taiwan + ARGM-ADV * -> 17:1, still + ARG1 * -> 19:2, some way 0 *PRO* to go *T*-1 + 19 some + 20 way + sense: way-n.4 + 21 0 + 22 *PRO* + 23 to + 24 go + sense: go-v.1 + prop: go.01 + v * -> 24:0, go + ARG1 * -> 22:0, *PRO* + ARG2 * -> 25:0, *T*-1 -> 21:0, 0 + LINK-SLC * -> 19:1, some way + * -> 25:0, *T*-1 -> 21:0, 0 + 25 *T*-1 + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Shang, currently chairman of the CTI's technology committee, is well aware of where the obstacle to R&D lies : " + Innovative ideas take time to mature, and you have to accept a high degree of uncertainty. + +Treebanked sentence: +-------------------- + Shang , currently chairman of the CTI 's technology committee , is well aware of where the obstacle to R&D lies *T*-3 : + " Innovative ideas take time *PRO*-4 to mature , and you have *-2 to accept a high degree of uncertainty . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (NNP Shang)) + (, ,) + (NP (NP (RB currently) + (NN chairman)) + (PP (IN of) + (NP (NP (DT the) + (NNP CTI) + (POS 's)) + (NN technology) + (NN committee))))) + (, ,) + (VP (VBZ is) + (ADJP-PRD (RB well) + (JJ aware) + (PP (IN of) + (SBAR-NOM (WHADVP-3 (WRB where)) + (S (NP-SBJ (NP (DT the) + (NN obstacle)) + (PP (IN to) + (NP (NN R&D)))) + (VP (VBZ lies) + (ADVP-LOC (-NONE- *T*-3))))))))) + (: :) + (`` ") + (S (S (NP-SBJ-4 (JJ Innovative) + (NNS ideas)) + (VP (VBP take) + (NP (NN time)) + (S-CLR (NP-SBJ (-NONE- *PRO*-4)) + (VP (TO to) + (VP (VB mature)))))) + (, ,) + (CC and) + (S (NP-SBJ-2 (PRP you)) + (VP (VBP have) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VB accept) + (NP (NP (DT a) + (JJ high) + (NN degree)) + (PP (IN of) + (NP (NN uncertainty)))))))))) + (. .))) + +Leaves: +------- + 0 Shang + coref: IDENT 18 0-9 Shang , currently chairman of the CTI 's technology committee + name: PERSON 0-0 Shang + 1 , + 2 currently + 3 chairman + 4 of + 5 the + coref: IDENT 185 5-7 the CTI 's + 6 CTI + name: ORG 6-6 CTI + 7 's + 8 technology + sense: technology-n.1 + 9 committee + 10 , + 11 is + sense: be-v.1 + prop: be.01 + v * -> 11:0, is + ARG1 * -> 0:2, Shang , currently chairman of the CTI 's technology committee + ARG2 * -> 12:1, well aware of where the obstacle to R&D lies *T*-3 + 12 well + 13 aware + 14 of + 15 where + 16 the + 17 obstacle + 18 to + 19 R&D + 20 lies + prop: lie.01 + v * -> 20:0, lies + ARG1 * -> 16:2, the obstacle to R&D + ARG2 * -> 21:0, *T*-3 -> 15:1, where + 21 *T*-3 + 22 : + 23 " + 24 Innovative + 25 ideas + sense: idea-n.1 + 26 take + sense: take-v.3 + prop: take.10 + v * -> 26:0, take + ARG1 * -> 27:1, time + ARG0 * -> 28:2, *PRO*-4 to mature + 27 time + sense: time-n.3 + 28 *PRO*-4 + 29 to + 30 mature + sense: mature-v.2 + prop: mature.01 + v * -> 30:0, mature + ARG1 * -> 28:0, *PRO*-4 -> 24:1, Innovative ideas + 31 , + 32 and + 33 you + 34 have + sense: have-v.12 + prop: have.02 + v * -> 34:0, have + 35 *-2 + 36 to + 37 accept + sense: accept-v.2 + prop: accept.01 + v * -> 37:0, accept + ARG0 * -> 35:0, *-2 -> 33:1, you + ARG1 * -> 38:2, a high degree of uncertainty + coref: IDENT 198 37-37 accept + 38 a + 39 high + 40 degree + sense: degree-n.7 + 41 of + 42 uncertainty + 43 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But our environment does not allow this. " + +Treebanked sentence: +-------------------- + But our environment does not allow this . " + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (PRP$ our) + (NN environment)) + (VP (VBZ does) + (RB not) + (VP (VB allow) + (NP (DT this)))) + (. .) + ('' "))) + +Leaves: +------- + 0 But + 1 our + 2 environment + sense: environment-n.1 + 3 does + prop: do.01 + v * -> 3:0, does + 4 not + 5 allow + sense: allow-v.1 + prop: allow.01 + v * -> 5:0, allow + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:1, our environment + ARGM-NEG * -> 4:0, not + ARG1 * -> 6:1, this + 6 this + coref: IDENT 198 6-6 this + 7 . + 8 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + He notes that industries in Taiwan always pursue short-term profits, so there is never much interest in technologies + which are too forward-looking and can not immediately produce saleable products. + +Treebanked sentence: +-------------------- + He notes that industries in Taiwan always pursue short - term profits , so there is never much interest in technologies + which *T*-9 are too forward - looking and can not immediately produce saleable products . + +Tree: +----- + (TOP (S (NP-SBJ (PRP He)) + (VP (VBZ notes) + (SBAR (IN that) + (S (NP-SBJ (NP (NNS industries)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (ADVP-TMP (RB always)) + (VP (VBP pursue) + (NP (ADJP (JJ short) + (HYPH -) + (NN term)) + (NNS profits)) + (, ,) + (SBAR-PRP (IN so) + (S (NP-SBJ (EX there)) + (VP (VBZ is) + (ADVP (RB never)) + (NP-PRD (NP (JJ much) + (NN interest)) + (PP (IN in) + (NP (NP (NNS technologies)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VP (VBP are) + (ADJP-PRD (RB too) + (RB forward) + (HYPH -) + (VBG looking))) + (CC and) + (VP (MD can) + (RB not) + (ADVP (RB immediately)) + (VP (VB produce) + (NP (JJ saleable) + (NNS products))))))))))))))))) + (. .))) + +Leaves: +------- + 0 He + coref: IDENT 18 0-0 He + 1 notes + sense: note-v.1 + prop: note.01 + v * -> 1:0, notes + ARG0 * -> 0:1, He + ARG1 * -> 2:1, that industries in Taiwan always pursue short - term profits , so there is never much + interest in technologies which *T*-9 are too forward - looking and can not immediately + produce saleable products + 2 that + 3 industries + sense: industry-n.1 + 4 in + 5 Taiwan + coref: IDENT 16 5-5 Taiwan + name: GPE 5-5 Taiwan + 6 always + 7 pursue + sense: pursue-v.1 + prop: pursue.01 + v * -> 7:0, pursue + ARG0 * -> 3:2, industries in Taiwan + ARGM-TMP * -> 6:1, always + ARG1 * -> 8:2, short - term profits + ARGM-ADV * -> 13:1, so there is never much interest in technologies which *T*-9 are too forward - looking + and can not immediately produce saleable products + 8 short + 9 - + 10 term + 11 profits + sense: profit-n.1 + 12 , + 13 so + 14 there + 15 is + sense: be-v.3 + prop: be.02 + v * -> 15:0, is + ARGM-NEG * -> 16:1, never + ARG1 * -> 17:2, much interest in technologies which *T*-9 are too forward - looking and can not + immediately produce saleable products + 16 never + 17 much + 18 interest + sense: interest-n.1 + 19 in + 20 technologies + sense: technology-n.1 + 21 which + 22 *T*-9 + 23 are + sense: be-v.1 + prop: be.01 + v * -> 23:0, are + ARG1 * -> 22:0, *T*-9 -> 21:1, which + ARG2 * -> 24:1, too forward - looking + LINK-SLC * -> 20:1, technologies + * -> 22:0, *T*-9 -> 21:1, which + 24 too + 25 forward + 26 - + 27 looking + prop: look.01 + v * -> 27:0, looking + ARGM-DIR * -> 25:0, forward + 28 and + 29 can + 30 not + 31 immediately + 32 produce + sense: produce-v.1 + prop: produce.01 + v * -> 32:0, produce + ARG0 * -> 22:0, *T*-9 -> 21:1, which + ARGM-MOD * -> 29:0, can + ARGM-NEG * -> 30:0, not + ARGM-TMP * -> 31:1, immediately + ARG1 * -> 33:1, saleable products + LINK-SLC * -> 20:1, technologies + * -> 22:0, *T*-9 -> 21:1, which + 33 saleable + 34 products + sense: product-n.1 + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As one of 18 industrial institutes under the Ministry of Economic Affairs, the CTI has some state funding. + +Treebanked sentence: +-------------------- + As one of 18 industrial institutes under the Ministry of Economic Affairs , the CTI has some state funding . + +Tree: +----- + (TOP (S (PP (IN As) + (NP (NP (CD one)) + (PP (IN of) + (NP (NP (CD 18) + (JJ industrial) + (NNS institutes)) + (PP (IN under) + (NP (NP (DT the) + (NNP Ministry)) + (PP (IN of) + (NP (NNP Economic) + (NNPS Affairs))))))))) + (, ,) + (NP-SBJ (DT the) + (NNP CTI)) + (VP (VBZ has) + (NP (DT some) + (NN state) + (NN funding))) + (. .))) + +Leaves: +------- + 0 As + 1 one + 2 of + 3 18 + name: CARDINAL 3-3 18 + 4 industrial + 5 institutes + 6 under + 7 the + name: ORG 7-11 the Ministry of Economic Affairs + 8 Ministry + 9 of + 10 Economic + 11 Affairs + 12 , + 13 the + coref: IDENT 185 13-14 the CTI + 14 CTI + name: ORG 14-14 CTI + 15 has + sense: have-v.1 + prop: have.03 + v * -> 15:0, has + ARGM-PRD * -> 0:1, As one of 18 industrial institutes under the Ministry of Economic Affairs + ARG0 * -> 13:1, the CTI + ARG1 * -> 16:1, some state funding + 16 some + 17 state + 18 funding + sense: fund-n.1 + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But with ever greater budgetary constraints and pressure to cover its own costs, development projects mostly concentrate + on firms ' current needs, and stress the sales and profit they generate. + +Treebanked sentence: +-------------------- + But with ever greater budgetary constraints and pressure *PRO* to cover its own costs , development projects mostly + concentrate on firms ' current needs , and stress the sales and profit 0 they generate *T*-1 . + +Tree: +----- + (TOP (S (CC But) + (PP (IN with) + (NP (NP (ADJP (RB ever) + (JJR greater)) + (JJ budgetary) + (NNS constraints)) + (CC and) + (NP (NN pressure) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB cover) + (NP (PRP$ its) + (JJ own) + (NNS costs)))))))) + (, ,) + (NP-SBJ (NN development) + (NNS projects)) + (ADVP (RB mostly)) + (VP (VP (VBP concentrate) + (PP-CLR (IN on) + (NP (NP (NNS firms) + (POS ')) + (JJ current) + (NNS needs)))) + (, ,) + (CC and) + (VP (VBP stress) + (NP (NP (DT the) + (NNS sales) + (CC and) + (NN profit)) + (SBAR (WHNP-1 (-NONE- 0)) + (S (NP-SBJ (PRP they)) + (VP (VBP generate) + (NP (-NONE- *T*-1)))))))) + (. .))) + +Leaves: +------- + 0 But + 1 with + 2 ever + 3 greater + 4 budgetary + 5 constraints + 6 and + 7 pressure + sense: pressure-n.2 + 8 *PRO* + 9 to + 10 cover + sense: cover-v.2 + prop: cover.01 + v * -> 10:0, cover + ARG0 * -> 8:0, *PRO* + ARG1 * -> 11:1, its own costs + LINK-PCR * -> 8:0, *PRO* + * -> 15:1, development projects + 11 its + coref: IDENT 185 11-11 its + 12 own + 13 costs + sense: cost-n.1 + 14 , + 15 development + 16 projects + sense: project-n.1 + 17 mostly + 18 concentrate + sense: concentrate-v.1 + prop: concentrate.01 + v * -> 18:0, concentrate + ARGM-DIS * -> 0:0, But + ARGM-MNR * -> 1:1, with ever greater budgetary constraints and pressure *PRO* to cover its own costs + ARG0 * -> 15:1, development projects + ARGM-EXT * -> 17:1, mostly + ARG1 * -> 19:1, on firms ' current needs + 19 on + 20 firms + coref: IDENT 227 20-21 firms ' + 21 ' + 22 current + 23 needs + sense: need-n.1 + prop: need.01 + n * -> 23:0, needs + ARG0 * -> 20:1, firms ' + ARGM-TMP * -> 22:0, current + 24 , + 25 and + 26 stress + sense: stress-v.1 + prop: stress.01 + v * -> 26:0, stress + ARGM-DIS * -> 0:0, But + ARGM-ADV * -> 1:1, with ever greater budgetary constraints and pressure *PRO* to cover its own costs + ARG0 * -> 15:1, development projects + ARGM-ADV * -> 17:1, mostly + ARG1 * -> 27:2, the sales and profit 0 they generate *T*-1 + 27 the + 28 sales + sense: sale-n.1 + prop: sale.01 + n * -> 28:0, sales + ARGM-ADJ * -> 31:2, 0 they generate *T*-1 + 29 and + 30 profit + sense: profit-n.1 + 31 0 + 32 they + coref: IDENT 227 32-32 they + 33 generate + sense: generate-v.1 + prop: generate.01 + v * -> 33:0, generate + ARG0 * -> 32:1, they + ARG1 * -> 34:0, *T*-1 -> 31:0, 0 + LINK-SLC * -> 27:1, the sales and profit + * -> 34:0, *T*-1 -> 31:0, 0 + 34 *T*-1 + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Under such circumstances, epoch-making innovations are unlikely to emerge. + +Treebanked sentence: +-------------------- + Under such circumstances , epoch - making innovations are unlikely *-9 to emerge . + +Tree: +----- + (TOP (S (PP (IN Under) + (NP (JJ such) + (NNS circumstances))) + (, ,) + (NP-SBJ-9 (ADJP (NN epoch) + (HYPH -) + (VBG making)) + (NNS innovations)) + (VP (VBP are) + (ADJP-PRD (JJ unlikely) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB emerge)))))) + (. .))) + +Leaves: +------- + 0 Under + 1 such + 2 circumstances + 3 , + 4 epoch + 5 - + 6 making + prop: make.01 + v * -> 6:0, making + ARG1 * -> 4:0, epoch + ARG0 * -> 7:0, innovations + 7 innovations + sense: innovation-n.1 + 8 are + sense: be-v.1 + prop: be.01 + v * -> 8:0, are + ARGM-LOC * -> 0:1, Under such circumstances + ARG1 * -> 10:0, *-9 -> 4:2, epoch - making innovations + ARG2 * -> 9:1, unlikely *-9 to emerge + 9 unlikely + 10 *-9 + 11 to + 12 emerge + sense: emerge-v.2 + prop: emerge.01 + v * -> 12:0, emerge + ARG0 * -> 10:0, *-9 -> 4:2, epoch - making innovations + 13 . + + +======================================================================================================================== +Coreference chains for section 5: +--------------------------------- + + Chain 16 (IDENT) + 104.8-8 Taiwan + 110.14-14 Taiwan + 112.10-10 Taiwan + 114.1-2 Taiwan 's + 119.16-16 Taiwan + 122.5-5 Taiwan + + Chain 17 (IDENT) + 104.10-13 Chung Shing Textile Company + 105.0-0 Its + 108.0-1 Chung Shing + + Chain 18 (IDENT) + 105.0-4 Its president , William Shang + 109.20-20 Shang + 110.2-2 he + 113.0-1 William Shang + 115.2-2 Shang + 116.22-22 he + 117.3-3 he + 120.0-9 Shang , currently chairman of the CTI 's technology committee + 122.0-0 He + + Chain 20 (APPOS) + ATTRIB 105.0-1 Its president + HEAD 105.3-4 William Shang + + Chain 21 (IDENT) + 105.8-9 conventional fibers + 105.19-21 the fibers ' + 105.31-31 them + 105.48-49 the fibers + 107.2-4 the fibers ' + 107.17-17 they + + Chain 35 (IDENT) + 105.46-49 capillaries along the fibers + 106.0-0 These + + Chain 71 (APPOS) + ATTRIB 108.14-17 Dupont 's equivalent product + HEAD 108.19-19 Coolmax + + Chain 80 (IDENT) + 110.6-8 many new products + 110.19-19 they + + Chain 94 (IDENT) + 111.7-8 Taiwanese companies + 111.30-30 them + 111.32-32 their + + Chain 113 (IDENT) + 113.5-7 most Taiwanese firms + 113.16-16 they + + Chain 114 (IDENT) + 113.9-10 something new + 114.18-19 the product + + Chain 118 (IDENT) + 113.20-21 a sample + 113.24-24 it + 113.39-39 it + + Chain 161 (IDENT) + 118.0-1 The technique + 118.22-22 it + + Chain 162 (IDENT) + 118.6-7 the Americans + 118.18-18 they + + Chain 185 (IDENT) + 120.5-7 the CTI 's + 123.13-14 the CTI + 124.11-11 its + + Chain 198 (IDENT) + 120.37-37 accept + 121.6-6 this + + Chain 227 (IDENT) + 124.20-21 firms ' + 124.32-32 they + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Standardizing colors + +Treebanked sentence: +-------------------- + *PRO* Standardizing colors + +Tree: +----- + (TOP (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Standardizing) + (NP (NNS colors))))) + +Leaves: +------- + 0 *PRO* + 1 Standardizing + prop: standardize.01 + v * -> 1:0, Standardizing + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:1, colors + 2 colors + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Because innovation is so hard to achieve, the highly innovative Sinocolor Book color reference system, which was + launched at the CTI's 40th anniversary celebration, has been greeted with great admiration by many. + +Treebanked sentence: +-------------------- + Because innovation is so hard 0 *PRO* to achieve *T*-2 , the highly innovative Sinocolor Book color reference system , + which *T*-1 was launched *-1 at the CTI 's 40th anniversary celebration , has been greeted *-9 with great admiration by + many . + +Tree: +----- + (TOP (S (SBAR-ADV (IN Because) + (S (NP-SBJ (NN innovation)) + (VP (VBZ is) + (ADJP-PRD (RB so) + (JJ hard) + (SBAR (WHNP-2 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB achieve) + (NP (-NONE- *T*-2)))))))))) + (, ,) + (NP-SBJ-9 (NP (DT the) + (ADJP (RB highly) + (JJ innovative)) + (NML (NNP Sinocolor) + (NNP Book)) + (NML (NN color) + (NN reference)) + (NN system)) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD was) + (VP (VBN launched) + (NP (-NONE- *-1)) + (PP-LOC (IN at) + (NP (NP (DT the) + (NNP CTI) + (POS 's)) + (JJ 40th) + (NN anniversary) + (NN celebration)))))))) + (, ,) + (VP (VBZ has) + (VP (VBN been) + (VP (VBN greeted) + (NP (-NONE- *-9)) + (PP (IN with) + (NP (JJ great) + (NN admiration))) + (PP (IN by) + (NP-LGS (JJ many)))))) + (. .))) + +Leaves: +------- + 0 Because + 1 innovation + sense: innovation-n.2 + prop: innovation.01 + n * -> 1:0, innovation + 2 is + sense: be-v.1 + prop: be.01 + v * -> 2:0, is + ARG1 * -> 1:1, innovation + ARG2 * -> 3:1, so hard 0 *PRO* to achieve *T*-2 + 3 so + 4 hard + 5 0 + 6 *PRO* + 7 to + 8 achieve + sense: achieve-v.1 + prop: achieve.01 + v * -> 8:0, achieve + ARG0 * -> 6:0, *PRO* + ARG1 * -> 9:0, *T*-2 -> 5:0, 0 + LINK-SLC * -> 1:1, innovation + * -> 9:0, *T*-2 -> 5:0, 0 + 9 *T*-2 + 10 , + 11 the + coref: IDENT 5 11-31 the highly innovative Sinocolor Book color reference system , which *T*-1 + was launched *-1 at the CTI 's 40th anniversary celebration + 12 highly + 13 innovative + 14 Sinocolor + ! name: WORK_OF_ART 14-18 Sinocolor Book color reference system + 15 Book + 16 color + 17 reference + 18 system + sense: system-n.1 + 19 , + 20 which + 21 *T*-1 + 22 was + prop: be.03 + v * -> 22:0, was + 23 launched + prop: launch.01 + v * -> 23:0, launched + ARG1 * -> 24:0, *-1 -> 20:1, which + ARGM-LOC * -> 25:1, at the CTI 's 40th anniversary celebration + LINK-SLC * -> 11:1, the highly innovative Sinocolor Book color reference system + * -> 24:0, *-1 -> 20:1, which + LINK-PCR * -> 24:0, *-1 -> 20:1, which + * -> 24:0, *-1 -> 20:1, which + 24 *-1 + 25 at + 26 the + coref: IDENT 10 26-28 the CTI 's + 27 CTI + name: ORG 27-27 CTI + 28 's + 29 40th + ! name: DATE 29-30 40th anniversary + 30 anniversary + 31 celebration + sense: celebration-n.1 + prop: celebration.01 + n * -> 31:0, celebration + ARG0 * -> 26:1, the CTI 's + ARGM-TMP * -> 29:0, 40th + ARG1 * -> 30:0, anniversary + 32 , + 33 has + prop: have.01 + v * -> 33:0, has + 34 been + prop: be.03 + v * -> 34:0, been + 35 greeted + prop: greet.01 + v * -> 35:0, greeted + ARGM-CAU * -> 0:1, Because innovation is so hard 0 *PRO* to achieve *T*-2 + ARG1 * -> 36:0, *-9 -> 11:2, the highly innovative Sinocolor Book color reference system , which *T*-1 + was launched *-1 at the CTI 's 40th anniversary celebration + ARG3 * -> 37:1, with great admiration + ARG0 * -> 40:1, by many + 36 *-9 + 37 with + 38 great + 39 admiration + 40 by + 41 many + 42 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The system's inventor, Hsu Yun-peng, only had a junior high school education, but had researched color matching for 18 + years in a dyeing factory. + +Treebanked sentence: +-------------------- + The system 's inventor , Hsu Yun - peng , only had a junior high school education , but had researched color matching + for 18 years in a dyeing factory . + +Tree: +----- + (TOP (S (NP-SBJ (NP (NP (DT The) + (NN system) + (POS 's)) + (NN inventor)) + (, ,) + (NP (NNP Hsu) + (NNP Yun) + (HYPH -) + (NNP peng))) + (, ,) + (ADVP (RB only)) + (VP (VP (VBD had) + (NP (DT a) + (NML (JJ junior) + (JJ high) + (NN school)) + (NN education))) + (, ,) + (CC but) + (VP (VBD had) + (VP (VBN researched) + (NP (NN color) + (NN matching)) + (PP-TMP (IN for) + (NP (CD 18) + (NNS years))) + (PP-LOC (IN in) + (NP (DT a) + (NN dyeing) + (NN factory)))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 5 0-2 The system 's + coref: IDENT 14 0-8 The system 's inventor , Hsu Yun - peng + coref: APPOS ATTRIB 17 0-3 The system 's inventor + 1 system + sense: system-n.1 + 2 's + 3 inventor + 4 , + 5 Hsu + coref: APPOS HEAD 17 5-8 Hsu Yun - peng + name: PERSON 5-8 Hsu Yun - peng + 6 Yun + 7 - + 8 peng + 9 , + 10 only + 11 had + sense: have-v.2 + prop: have.03 + v * -> 11:0, had + ARG0 * -> 0:3, The system 's inventor , Hsu Yun - peng + ARGM-ADV * -> 10:1, only + ARG1 * -> 12:1, a junior high school education + 12 a + 13 junior + 14 high + 15 school + 16 education + 17 , + 18 but + 19 had + prop: have.01 + v * -> 19:0, had + 20 researched + sense: research-v.1 + prop: research.01 + v * -> 20:0, researched + ARG0 * -> 0:3, The system 's inventor , Hsu Yun - peng + ARG1 * -> 21:1, color matching + ARGM-TMP * -> 23:1, for 18 years + ARGM-LOC * -> 26:1, in a dyeing factory + 21 color + 22 matching + 23 for + 24 18 + name: DATE 24-25 18 years + 25 years + 26 in + 27 a + 28 dyeing + 29 factory + 30 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Discovering that imported color matching software was of little practical use, Hsu, who did n't know a word of English, + taught himself to program and wrote an improved version of the software. + +Treebanked sentence: +-------------------- + *PRO*-9 Discovering that imported color matching software was of little practical use , Hsu , who *T*-1 did n't know a + word of English , taught himself *PRO*-2 to program and wrote an improved version of the software . + +Tree: +----- + (TOP (S (S-ADV (NP-SBJ (-NONE- *PRO*-9)) + (VP (VBG Discovering) + (SBAR (IN that) + (S (NP-SBJ (JJ imported) + (NML (NN color) + (NN matching)) + (NN software)) + (VP (VBD was) + (PP-PRD (IN of) + (NP (JJ little) + (JJ practical) + (NN use)))))))) + (, ,) + (NP-SBJ-9 (NP (NNP Hsu)) + (, ,) + (SBAR (WHNP-1 (WP who)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD did) + (RB n't) + (VP (VB know) + (NP (NP (DT a) + (NN word)) + (PP (IN of) + (NP (NNP English))))))))) + (, ,) + (VP (VP (VBD taught) + (NP-2 (PRP himself)) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB program))))) + (CC and) + (VP (VBD wrote) + (NP (NP (DT an) + (JJ improved) + (NN version)) + (PP (IN of) + (NP (DT the) + (NN software)))))) + (. .))) + +Leaves: +------- + 0 *PRO*-9 + 1 Discovering + prop: discover.01 + v * -> 1:0, Discovering + ARG0 * -> 0:0, *PRO*-9 -> 13:2, Hsu , who *T*-1 did n't know a word of English + ARG1 * -> 2:1, that imported color matching software was of little practical use + 2 that + 3 imported + coref: IDENT 23 3-6 imported color matching software + 4 color + 5 matching + 6 software + 7 was + sense: be-v.1 + prop: be.01 + v * -> 7:0, was + ARG1 * -> 3:1, imported color matching software + ARG2 * -> 8:1, of little practical use + 8 of + 9 little + 10 practical + 11 use + sense: use-n.1 + prop: use.01 + n * -> 11:0, use + ARGM-ADJ * -> 9:0, little + ARGM-MNR * -> 10:0, practical + 12 , + 13 Hsu + coref: IDENT 14 13-23 Hsu , who *T*-1 did n't know a word of English + name: PERSON 13-13 Hsu + 14 , + 15 who + 16 *T*-1 + 17 did + prop: do.01 + v * -> 17:0, did + 18 n't + 19 know + prop: know.01 + v * -> 19:0, know + ARG0 * -> 16:0, *T*-1 -> 15:1, who + ARGM-NEG * -> 18:0, n't + ARG1 * -> 20:2, a word of English + LINK-SLC * -> 13:1, Hsu + * -> 16:0, *T*-1 -> 15:1, who + 20 a + 21 word + sense: word-n.1 + 22 of + 23 English + name: LANGUAGE 23-23 English + 24 , + 25 taught + sense: teach-v.1 + prop: teach.01 + v * -> 25:0, taught + ARGM-CAU * -> 0:2, *PRO*-9 Discovering that imported color matching software was of little practical use + ARG0 * -> 0:0, *PRO*-9 -> 13:2, Hsu , who *T*-1 did n't know a word of English + ARG2 * -> 27:0, *PRO*-2 -> 26:1, himself + ARG1 * -> 27:2, *PRO*-2 to program + 26 himself + coref: IDENT 14 26-26 himself + 27 *PRO*-2 + 28 to + 29 program + sense: programme-v.2 + prop: program.01 + v * -> 29:0, program + ARG0 * -> 27:0, *PRO*-2 -> 26:1, himself + 30 and + 31 wrote + sense: write-v.4 + prop: write.01 + v * -> 31:0, wrote + ARGM-PRD * -> 0:2, *PRO*-9 Discovering that imported color matching software was of little practical use + ARG0 * -> 0:0, *PRO*-9 -> 13:2, Hsu , who *T*-1 did n't know a word of English + ARG1 * -> 32:2, an improved version of the software + 32 an + 33 improved + 34 version + sense: version-n.2 + 35 of + 36 the + coref: IDENT 23 36-37 the software + 37 software + 38 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Writing color matching software earned Hsu Yun-peng a lot of money, but this was not his main purpose. + +Treebanked sentence: +-------------------- + *PRO* Writing color matching software earned Hsu Yun - peng a lot of money , but this was not his main purpose . + +Tree: +----- + (TOP (S (S (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Writing) + (NP (NML (NN color) + (NN matching)) + (NN software)))) + (VP (VBD earned) + (NP (NNP Hsu) + (NNP Yun) + (HYPH -) + (NNP peng)) + (NP (NP (DT a) + (NN lot)) + (PP (IN of) + (NP (NN money)))))) + (, ,) + (CC but) + (S (NP-SBJ (DT this)) + (VP (VBD was) + (RB not) + (NP-PRD (PRP$ his) + (JJ main) + (NN purpose)))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Writing + prop: write.01 + v * -> 1:0, Writing + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:2, color matching software + LINK-PCR * -> 0:0, *PRO* + * -> 6:1, Hsu Yun - peng + 2 color + 3 matching + 4 software + 5 earned + sense: earn-v.2 + prop: earn.01 + v * -> 5:0, earned + ARG0 * -> 0:2, *PRO* Writing color matching software + ARG2 * -> 6:1, Hsu Yun - peng + ARG1 * -> 10:2, a lot of money + coref: IDENT 41 5-5 earned + 6 Hsu + coref: IDENT 14 6-9 Hsu Yun - peng + name: PERSON 6-9 Hsu Yun - peng + 7 Yun + 8 - + 9 peng + 10 a + 11 lot + sense: lot-n.1 + 12 of + 13 money + sense: money-n.2 + 14 , + 15 but + 16 this + coref: IDENT 41 16-16 this + 17 was + sense: be-v.1 + prop: be.01 + v * -> 17:0, was + ARG1 * -> 16:1, this + ARGM-NEG * -> 18:0, not + ARG2 * -> 19:1, his main purpose + 18 not + 19 his + coref: IDENT 14 19-19 his + coref: IDENT 42 19-21 his main purpose + 20 main + 21 purpose + sense: purpose-n.1 + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + His real aim was to produce a color reference system that was genuinely easy to use, to overcome the lack of color + standardization which had long plagued the dyeing industry. + +Treebanked sentence: +-------------------- + His real aim was *PRO* to produce a color reference system that *T*-1 was genuinely easy 0 *PRO* to use *T*-3 , *PRO* to + overcome the lack of color standardization which *T*-2 had long plagued the dyeing industry . + +Tree: +----- + (TOP (S (NP-SBJ (PRP$ His) + (JJ real) + (NN aim)) + (VP (VBD was) + (S-PRD (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB produce) + (NP (NP (DT a) + (NN color) + (NN reference) + (NN system)) + (SBAR (WHNP-1 (WDT that)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBD was) + (ADJP-PRD (RB genuinely) + (JJ easy) + (SBAR (WHNP-3 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB use) + (NP (-NONE- *T*-3))))))))))) + (, ,) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB overcome) + (NP (NP (DT the) + (NN lack)) + (PP (IN of) + (NP (NP (NN color) + (NN standardization)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VBD had) + (ADVP-TMP (RB long)) + (VP (VBN plagued) + (NP (DT the) + (NN dyeing) + (NN industry)))))))))))))))) + (. .))) + +Leaves: +------- + 0 His + coref: IDENT 14 0-0 His + coref: IDENT 42 0-2 His real aim + 1 real + 2 aim + sense: aim-n.1 + prop: aim.01 + n * -> 2:0, aim + ARG0 * -> 0:0, His + ARGM-ADJ * -> 1:0, real + 3 was + sense: be-v.1 + prop: be.01 + v * -> 3:0, was + ARG1 * -> 0:1, His real aim + ARG2 * -> 4:2, *PRO* to produce a color reference system that *T*-1 was genuinely easy 0 *PRO* to use + *T*-3 , *PRO* to overcome the lack of color standardization which *T*-2 had long + plagued the dyeing industry + 4 *PRO* + 5 to + 6 produce + sense: produce-v.1 + prop: produce.01 + v * -> 6:0, produce + ARG0 * -> 4:0, *PRO* + ARG1 * -> 7:2, a color reference system that *T*-1 was genuinely easy 0 *PRO* to use *T*-3 + ARGM-PRP * -> 22:2, *PRO* to overcome the lack of color standardization which *T*-2 had long plagued the + dyeing industry + 7 a + 8 color + 9 reference + 10 system + sense: system-n.1 + 11 that + 12 *T*-1 + 13 was + sense: be-v.1 + prop: be.01 + v * -> 13:0, was + ARG1 * -> 12:0, *T*-1 -> 11:1, that + ARG2 * -> 14:1, genuinely easy 0 *PRO* to use *T*-3 + LINK-SLC * -> 7:1, a color reference system + * -> 12:0, *T*-1 -> 11:1, that + 14 genuinely + 15 easy + 16 0 + 17 *PRO* + 18 to + 19 use + sense: use-v.1 + prop: use.01 + v * -> 19:0, use + ARG0 * -> 17:0, *PRO* + ARG1 * -> 20:0, *T*-3 -> 16:0, 0 + LINK-SLC * -> 7:1, a color reference system + * -> 20:0, *T*-3 -> 16:0, 0 + 20 *T*-3 + 21 , + 22 *PRO* + 23 to + 24 overcome + sense: overcome-v.1 + prop: overcome.01 + v * -> 24:0, overcome + ARG0 * -> 22:0, *PRO* + ARG1 * -> 25:2, the lack of color standardization which *T*-2 had long plagued the dyeing industry + 25 the + 26 lack + 27 of + 28 color + 29 standardization + 30 which + 31 *T*-2 + 32 had + prop: have.01 + v * -> 32:0, had + 33 long + 34 plagued + sense: plague-v.1 + prop: plague.01 + v * -> 34:0, plagued + ARG0 * -> 31:0, *T*-2 -> 30:1, which + ARGM-TMP * -> 33:1, long + ARG1 * -> 35:1, the dyeing industry + LINK-SLC * -> 25:1, the lack + * -> 31:0, *T*-2 -> 30:1, which + 35 the + 36 dyeing + 37 industry + sense: industry-n.1 + 38 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + To pursue this goal he quit his job, moved to the suburbs of Kuishan in Taoyuan County, and began to spend 18 hours a + day studying the problem. + +Treebanked sentence: +-------------------- + *PRO*-1 To pursue this goal he quit his job , moved to the suburbs of Kuishan in Taoyuan County , and began *-1 to spend + 18 hours a day *PRO*-1 studying the problem . + +Tree: +----- + (TOP (S (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO To) + (VP (VB pursue) + (NP (DT this) + (NN goal))))) + (NP-SBJ-1 (PRP he)) + (VP (VP (VP (VBD quit) + (NP (PRP$ his) + (NN job))) + (, ,) + (VP (VBD moved) + (PP-DIR (IN to) + (NP (NP (DT the) + (NNS suburbs)) + (PP (IN of) + (NP (NP (NNP Kuishan)) + (PP-LOC (IN in) + (NP (NNP Taoyuan) + (NNP County))))))))) + (, ,) + (CC and) + (VP (VBD began) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB spend) + (NP (NP (CD 18) + (NNS hours)) + (NP-ADV (DT a) + (NN day))) + (S-CLR (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG studying) + (NP (DT the) + (NN problem))))))))) + (. .))) + +Leaves: +------- + 0 *PRO*-1 + 1 To + 2 pursue + sense: pursue-v.1 + prop: pursue.01 + v * -> 2:0, pursue + ARG0 * -> 0:0, *PRO*-1 -> 5:1, he + ARG1 * -> 3:1, this goal + 3 this + coref: IDENT 42 3-4 this goal + 4 goal + sense: goal-n.1 + 5 he + coref: IDENT 14 5-5 he + 6 quit + sense: quit-v.2 + prop: quit.01 + v * -> 6:0, quit + ARGM-PRP * -> 0:2, *PRO*-1 To pursue this goal + ARG0 * -> 0:0, *PRO*-1 -> 5:1, he + ARG1 * -> 7:1, his job + 7 his + coref: IDENT 14 7-7 his + 8 job + sense: job-n.1 + 9 , + 10 moved + sense: move-v.4 + prop: move.01 + v * -> 10:0, moved + ARGM-PRP * -> 0:2, *PRO*-1 To pursue this goal + ARG1 * -> 0:0, *PRO*-1 -> 5:1, he + ARG2 * -> 11:1, to the suburbs of Kuishan in Taoyuan County + 11 to + 12 the + 13 suburbs + 14 of + 15 Kuishan + name: GPE 15-15 Kuishan + 16 in + 17 Taoyuan + name: GPE 17-18 Taoyuan County + 18 County + 19 , + 20 and + 21 began + sense: begin-v.1 + prop: begin.01 + v * -> 21:0, began + ARGM-PRP * -> 0:2, *PRO*-1 To pursue this goal + ARG0 * -> 22:0, *-1 -> 5:1, he + ARG1 * -> 22:2, *-1 to spend 18 hours a day *PRO*-1 studying the problem + 22 *-1 + 23 to + 24 spend + sense: spend-v.1 + prop: spend.02 + v * -> 24:0, spend + ARG0 * -> 22:0, *-1 -> 5:1, he + ARG1 * -> 25:2, 18 hours a day + ARG2 * -> 29:2, *PRO*-1 studying the problem + 25 18 + name: TIME 25-26 18 hours + 26 hours + sense: hour-n.1 + 27 a + 28 day + sense: day-n.2 + 29 *PRO*-1 + 30 studying + sense: study-v.1 + prop: study.01 + v * -> 30:0, studying + ARG0 * -> 29:0, *PRO*-1 -> 5:1, he + ARG1 * -> 31:1, the problem + 31 the + 32 problem + sense: problem-n.2 + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Quite apart from the difficulties of keeping his family fed, he often was n't even sure how old his three children were + and what year of school they were in. + +Treebanked sentence: +-------------------- + Quite apart from the difficulties of *PRO* keeping his family *PRO*-3 fed , he often was n't even sure how old his three + children were *T*-1 and what year of school they were in *T*-2 . + +Tree: +----- + (TOP (S (ADVP (RB Quite) + (RB apart) + (PP (IN from) + (NP (NP (DT the) + (NNS difficulties)) + (PP (IN of) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG keeping) + (NP-3 (PRP$ his) + (NN family)) + (S-CLR (NP-SBJ (-NONE- *PRO*-3)) + (ADJP-PRD (JJ fed))))))))) + (, ,) + (NP-SBJ (PRP he)) + (ADVP (RB often)) + (VP (VBD was) + (RB n't) + (ADVP (RB even)) + (ADJP-PRD (JJ sure) + (SBAR (SBAR (WHADJP-1 (WRB how) + (JJ old)) + (S (NP-SBJ (PRP$ his) + (CD three) + (NNS children)) + (VP (VBD were) + (ADJP-PRD (-NONE- *T*-1))))) + (CC and) + (SBAR (WHNP-2 (WHNP (WDT what) + (NN year)) + (PP (IN of) + (NP (NN school)))) + (S (NP-SBJ (PRP they)) + (VP (VBD were) + (PP-PRD (IN in) + (NP (-NONE- *T*-2))))))))) + (. .))) + +Leaves: +------- + 0 Quite + 1 apart + 2 from + 3 the + 4 difficulties + sense: difficulty-n.1 + 5 of + 6 *PRO* + 7 keeping + prop: keep.02 + v * -> 7:0, keeping + ARG0 * -> 6:0, *PRO* + ARG1 * -> 10:2, *PRO*-3 fed + 8 his + coref: IDENT 14 8-8 his + 9 family + sense: family-n.1 + 10 *PRO*-3 + 11 fed + 12 , + 13 he + coref: IDENT 14 13-13 he + 14 often + 15 was + sense: be-v.1 + prop: be.01 + v * -> 15:0, was + ARGM-ADV * -> 0:1, Quite apart from the difficulties of *PRO* keeping his family *PRO*-3 fed + ARG1 * -> 13:1, he + ARGM-TMP * -> 14:1, often + ARGM-NEG * -> 16:0, n't + ARGM-ADV * -> 17:1, even + ARG2 * -> 18:1, sure how old his three children were *T*-1 and what year of school they were in *T*-2 + 16 n't + 17 even + 18 sure + 19 how + 20 old + 21 his + coref: IDENT 14 21-21 his + coref: IDENT 77 21-23 his three children + 22 three + name: CARDINAL 22-22 three + 23 children + sense: child-n.2 + 24 were + sense: be-v.1 + prop: be.01 + v * -> 24:0, were + ARG1 * -> 21:1, his three children + ARG2 * -> 25:0, *T*-1 -> 19:1, how old + 25 *T*-1 + 26 and + 27 what + 28 year + 29 of + 30 school + sense: school-n.4 + 31 they + coref: IDENT 77 31-31 they + 32 were + sense: be-v.4 + prop: be.01 + v * -> 32:0, were + ARG1 * -> 31:1, they + ARG2 * -> 33:1, in *T*-2 + 33 in + 34 *T*-2 + 35 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Finally he used a three-dimensional model to create a regularly graded, finely differentiated color reference system + covering 20,000 colors, each with clear " color coordinates. " + +Treebanked sentence: +-------------------- + Finally he used a three - dimensional model *PRO* to create a regularly graded , finely differentiated color reference + system covering 20,000 colors , each with clear " color coordinates . " + +Tree: +----- + (TOP (S (ADVP (RB Finally)) + (NP-SBJ (PRP he)) + (VP (VBD used) + (NP (DT a) + (ADJP (CD three) + (HYPH -) + (JJ dimensional)) + (NN model)) + (S-CLR (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB create) + (NP (NP (DT a) + (ADJP (RB regularly) + (VBN graded)) + (, ,) + (ADJP (RB finely) + (VBN differentiated)) + (NML (NN color) + (NN reference)) + (NN system)) + (VP (VBG covering) + (NP (NP (CD 20,000) + (NNS colors)) + (, ,) + (NP (NP (DT each)) + (PP (IN with) + (NP (JJ clear) + (`` ") + (NN color) + (NNS coordinates))))))))))) + (. .) + ('' "))) + +Leaves: +------- + 0 Finally + 1 he + coref: IDENT 14 1-1 he + 2 used + sense: use-v.1 + prop: use.01 + v * -> 2:0, used + ARGM-DIS * -> 0:1, Finally + ARG0 * -> 1:1, he + ARG1 * -> 3:1, a three - dimensional model + ARG2 * -> 8:2, *PRO* to create a regularly graded , finely differentiated color reference system + covering 20,000 colors , each with clear " color coordinates + 3 a + 4 three + name: CARDINAL 4-4 three + 5 - + 6 dimensional + 7 model + sense: model-n.1 + prop: model.01 + n * -> 7:0, model + ARGM-ADJ * -> 4:1, three - dimensional + 8 *PRO* + 9 to + 10 create + sense: create-v.1 + prop: create.01 + v * -> 10:0, create + ARG0 * -> 8:0, *PRO* + ARG1 * -> 11:2, a regularly graded , finely differentiated color reference system covering 20,000 + colors , each with clear " color coordinates + LINK-PCR * -> 1:1, he + * -> 8:0, *PRO* + 11 a + 12 regularly + 13 graded + prop: grade.02 + v * -> 13:0, graded + ARGM-MNR * -> 12:0, regularly + ARG1 * -> 17:1, color reference + -> 19:0, system + 14 , + 15 finely + 16 differentiated + prop: differentiate.01 + v * -> 16:0, differentiated + ARGM-MNR * -> 15:0, finely + ARG1 * -> 17:1, color reference + -> 19:0, system + 17 color + 18 reference + 19 system + sense: system-n.1 + 20 covering + sense: cover-v.2 + prop: cover.01 + v * -> 20:0, covering + ARG2 * -> 11:1, a regularly graded , finely differentiated color reference system + ARG1 * -> 21:2, 20,000 colors , each with clear " color coordinates + 21 20,000 + name: CARDINAL 21-21 20,000 + 22 colors + 23 , + 24 each + 25 with + 26 clear + 27 " + 28 color + 29 coordinates + 30 . + 31 " + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + These features are unmatched by any of the systems currently in common use worldwide, which only define up to 3,000 + colors. + +Treebanked sentence: +-------------------- + These features are unmatched by any of the systems currently in common use worldwide , which *T*-1 only define up to + 3,000 colors . + +Tree: +----- + (TOP (S (NP-SBJ (DT These) + (NNS features)) + (VP (VBP are) + (ADJP-PRD (JJ unmatched) + (PP (IN by) + (NP (NP (DT any)) + (PP (IN of) + (NP (NP (NP (DT the) + (NNS systems)) + (RRC (ADVP-TMP (RB currently)) + (PP-PRD (IN in) + (NP (NP (JJ common) + (NN use)) + (ADVP (RB worldwide)))))) + (, ,) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (ADVP (RB only)) + (VP (VBP define) + (NP (QP (IN up) + (IN to) + (CD 3,000)) + (NNS colors))))))))))) + (. .))) + +Leaves: +------- + 0 These + 1 features + sense: feature-n.1 + 2 are + sense: be-v.1 + prop: be.01 + v * -> 2:0, are + ARG1 * -> 0:1, These features + ARG2 * -> 3:1, unmatched by any of the systems currently in common use worldwide , which *T*-1 only + define up to 3,000 colors + 3 unmatched + 4 by + 5 any + 6 of + 7 the + 8 systems + sense: system-n.1 + 9 currently + 10 in + 11 common + 12 use + sense: use-n.1 + prop: use.01 + n * -> 12:0, use + ARGM-ADJ * -> 11:0, common + ARGM-LOC * -> 13:1, worldwide + 13 worldwide + 14 , + 15 which + 16 *T*-1 + 17 only + 18 define + sense: define-v.2 + prop: define.01 + v * -> 18:0, define + ARG0 * -> 16:0, *T*-1 -> 15:1, which + ARGM-ADV * -> 17:1, only + ARG1 * -> 19:2, up to 3,000 colors + LINK-SLC * -> 7:2, the systems currently in common use worldwide + * -> 16:0, *T*-1 -> 15:1, which + 19 up + 20 to + 21 3,000 + name: CARDINAL 21-21 3,000 + 22 colors + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The textile industry's efforts to upgrade are gradually showing some results, but looking at the situation overall, CTI + president Yao Hsing-chuan is still somewhat worried. + +Treebanked sentence: +-------------------- + The textile industry 's efforts *PRO* to upgrade are gradually showing some results , but *PRO*-1 looking at the + situation overall , CTI president Yao Hsing - chuan is still somewhat worried . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (DT The) + (NN textile) + (NN industry) + (POS 's)) + (NNS efforts) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB upgrade))))) + (VP (VBP are) + (ADVP (RB gradually)) + (VP (VBG showing) + (NP (DT some) + (NNS results))))) + (, ,) + (CC but) + (S (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG looking) + (PP-CLR (IN at) + (NP (NP (DT the) + (NN situation)) + (ADJP (JJ overall)))))) + (, ,) + (NP-SBJ-1 (NML (NNP CTI) + (NN president)) + (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan)) + (VP (VBZ is) + (ADVP-TMP (RB still)) + (ADJP-PRD (RB somewhat) + (JJ worried)))) + (. .))) + +Leaves: +------- + 0 The + 1 textile + 2 industry + 3 's + 4 efforts + sense: effort-n.1 + 5 *PRO* + 6 to + 7 upgrade + sense: upgrade-v.2 + prop: upgrade.02 + v * -> 7:0, upgrade + ARG0 * -> 5:0, *PRO* + 8 are + prop: be.03 + v * -> 8:0, are + 9 gradually + 10 showing + sense: show-v.1 + prop: show.01 + v * -> 10:0, showing + ARG0 * -> 0:2, The textile industry 's efforts *PRO* to upgrade + ARGM-MNR * -> 9:1, gradually + ARG1 * -> 11:1, some results + 11 some + 12 results + sense: result-n.1 + 13 , + 14 but + 15 *PRO*-1 + 16 looking + sense: look-v.1 + prop: look.01 + v * -> 16:0, looking + ARG0 * -> 15:0, *PRO*-1 -> 22:2, CTI president Yao Hsing - chuan + ARG1 * -> 17:1, at the situation overall + 17 at + 18 the + 19 situation + sense: situation-n.1 + 20 overall + 21 , + 22 CTI + coref: IDENT 10 22-22 CTI + coref: IDENT 108 22-27 CTI president Yao Hsing - chuan + name: ORG 22-22 CTI + 23 president + sense: president-n.1 + 24 Yao + ! name: PERSON 24-27 Yao Hsing - chuan + 25 Hsing + 26 - + 27 chuan + 28 is + sense: be-v.1 + prop: be.01 + v * -> 28:0, is + ARGM-ADV * -> 15:2, *PRO*-1 looking at the situation overall + ARG1 * -> 15:0, *PRO*-1 -> 22:2, CTI president Yao Hsing - chuan + ARGM-TMP * -> 29:1, still + ARG2 * -> 30:1, somewhat worried + 29 still + 30 somewhat + 31 worried + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + He comments that the majority of companies still have the traditional mindset of pursuing low-cost, high-volume + production. + +Treebanked sentence: +-------------------- + He comments that the majority of companies still have the traditional mindset of *PRO* pursuing low - cost , high - + volume production . + +Tree: +----- + (TOP (S (NP-SBJ (PRP He)) + (VP (VBZ comments) + (SBAR (IN that) + (S (NP-SBJ (NP (DT the) + (NN majority)) + (PP (IN of) + (NP (NNS companies)))) + (ADVP (RB still)) + (VP (VBP have) + (NP (NP (DT the) + (JJ traditional) + (NN mindset)) + (PP (IN of) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG pursuing) + (NP (NML (JJ low) + (HYPH -) + (NN cost)) + (, ,) + (NML (JJ high) + (HYPH -) + (NN volume)) + (NN production)))))))))) + (. .))) + +Leaves: +------- + 0 He + coref: IDENT 108 0-0 He + 1 comments + sense: comment-v.1 + prop: comment.02 + v * -> 1:0, comments + ARG0 * -> 0:1, He + ARG1 * -> 2:1, that the majority of companies still have the traditional mindset of *PRO* pursuing + low - cost , high - volume production + 2 that + 3 the + 4 majority + sense: majority-n.1 + 5 of + 6 companies + sense: company-n.1 + 7 still + 8 have + sense: have-v.2 + prop: have.03 + v * -> 8:0, have + ARG0 * -> 3:2, the majority of companies + ARGM-TMP * -> 7:1, still + ARG1 * -> 9:2, the traditional mindset of *PRO* pursuing low - cost , high - volume production + 9 the + 10 traditional + 11 mindset + 12 of + 13 *PRO* + 14 pursuing + prop: pursue.01 + v * -> 14:0, pursuing + ARG0 * -> 13:0, *PRO* + ARG1 * -> 15:2, low - cost , high - volume production + LINK-PCR * -> 3:2, the majority of companies + * -> 13:0, *PRO* + 15 low + 16 - + 17 cost + 18 , + 19 high + 20 - + 21 volume + 22 production + sense: production-n.6 + prop: production.01 + n * -> 22:0, production + ARGM-MNR * -> 15:1, low - cost + ARGM-MNR * -> 19:1, high - volume + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Taiwan is the world's third biggest producer of man-made fibers, but it only produces a small range of mass-market + fibers for apparel fabrics, to the almost total neglect of the hundred or so other high-added-value, special fibers on + the market such as high-strength fibers for bullet-proof fabrics, elastic fibers or superalloy aerospace fibers. + +Treebanked sentence: +-------------------- + Taiwan is the world 's third biggest producer of man - made fibers , but it only produces a small range of mass - market + fibers for apparel fabrics , to the almost total neglect of the hundred or so other high - added - value , special + fibers on the market such as high - strength fibers for bullet - proof fabrics , elastic fibers or superalloy aerospace + fibers . + +Tree: +----- + (TOP (S (S (NP-SBJ (NNP Taiwan)) + (VP (VBZ is) + (NP-PRD (NP (NP (DT the) + (NN world) + (POS 's)) + (ADJP (RB third) + (JJS biggest)) + (NN producer)) + (PP (IN of) + (NP (ADJP (NN man) + (HYPH -) + (VBN made)) + (NNS fibers)))))) + (, ,) + (CC but) + (S (NP-SBJ (PRP it)) + (ADVP (RB only)) + (VP (VBZ produces) + (NP (NP (DT a) + (JJ small) + (NN range)) + (PP (IN of) + (NP (NML (JJ mass) + (HYPH -) + (NN market)) + (NNS fibers)))) + (PP (IN for) + (NP (NN apparel) + (NNS fabrics))) + (, ,) + (PP (IN to) + (NP (NP (DT the) + (ADJP (RB almost) + (JJ total)) + (NN neglect)) + (PP (IN of) + (NP (NP (DT the) + (QP (CD hundred) + (CC or) + (RB so)) + (JJ other) + (NML (JJ high) + (HYPH -) + (VBN added) + (HYPH -) + (NN value)) + (, ,) + (JJ special) + (NNS fibers)) + (PP (IN on) + (NP (DT the) + (NN market))) + (PP (JJ such) + (IN as) + (NP (NP (NP (NML (JJ high) + (HYPH -) + (NN strength)) + (NNS fibers)) + (PP (IN for) + (NP (ADJP (NN bullet) + (HYPH -) + (JJ proof)) + (NN fabrics)))) + (, ,) + (NP (JJ elastic) + (NNS fibers)) + (CC or) + (NP (NN superalloy) + (NN aerospace) + (NNS fibers)))))))))) + (. .))) + +Leaves: +------- + 0 Taiwan + coref: IDENT 117 0-0 Taiwan + name: GPE 0-0 Taiwan + 1 is + sense: be-v.2 + prop: be.01 + v * -> 1:0, is + ARG1 * -> 0:1, Taiwan + ARG2 * -> 2:3, the world 's third biggest producer of man - made fibers + 2 the + 3 world + sense: world-n.1 + 4 's + 5 third + name: ORDINAL 5-5 third + 6 biggest + 7 producer + sense: producer-n.1 + 8 of + 9 man + sense: man-n.10 + 10 - + 11 made + prop: make.01 + v * -> 11:0, made + ARGM-MNR * -> 9:0, man + ARG1 * -> 12:0, fibers + 12 fibers + 13 , + 14 but + 15 it + coref: IDENT 117 15-15 it + 16 only + 17 produces + sense: produce-v.1 + prop: produce.01 + v * -> 17:0, produces + ARG0 * -> 15:1, it + ARGM-ADV * -> 16:1, only + ARG1 * -> 18:2, a small range of mass - market fibers + ARG3 * -> 26:1, for apparel fabrics + ARGM-ADV * -> 30:1, to the almost total neglect of the hundred or so other high - added - value , special + fibers on the market such as high - strength fibers for bullet - proof fabrics , + elastic fibers or superalloy aerospace fibers + 18 a + 19 small + 20 range + sense: range-n.6 + 21 of + 22 mass + 23 - + 24 market + 25 fibers + 26 for + 27 apparel + 28 fabrics + 29 , + 30 to + 31 the + 32 almost + 33 total + 34 neglect + 35 of + 36 the + 37 hundred + name: CARDINAL 37-37 hundred + 38 or + 39 so + 40 other + 41 high + 42 - + 43 added + prop: add.02 + v * -> 43:0, added + ARG1 * -> 45:0, value + 44 - + 45 value + sense: value-n.1 + 46 , + 47 special + 48 fibers + 49 on + 50 the + 51 market + sense: market-n.1 + 52 such + 53 as + 54 high + 55 - + 56 strength + 57 fibers + 58 for + 59 bullet + 60 - + 61 proof + 62 fabrics + 63 , + 64 elastic + 65 fibers + 66 or + 67 superalloy + 68 aerospace + 69 fibers + 70 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Again, when it comes Taiwan's biggest export item, finished fabrics, these too are largely limited to apparel fabrics, + with few companies getting involved in other areas despite their potential. + +Treebanked sentence: +-------------------- + Again , when it comes Taiwan 's biggest export item , finished fabrics , *T*-9 these too are largely limited *-1 to + apparel fabrics , with few companies getting involved *-2 in other areas despite their potential . + +Tree: +----- + (TOP (S (ADVP (RB Again)) + (, ,) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (PRP it)) + (VP (VBZ comes) + (NP (NP (NP (NNP Taiwan) + (POS 's)) + (JJS biggest) + (NN export) + (NN item)) + (, ,) + (NP (JJ finished) + (NNS fabrics)) + (, ,)) + (ADVP-TMP (-NONE- *T*-9))))) + (NP-SBJ-1 (NP (DT these)) + (ADVP (RB too))) + (VP (VBP are) + (ADVP (RB largely)) + (VP (VBN limited) + (NP (-NONE- *-1)) + (PP-CLR (IN to) + (NP (NN apparel) + (NNS fabrics))) + (, ,) + (PP (IN with) + (S-NOM (NP-SBJ-2 (JJ few) + (NNS companies)) + (VP (VBG getting) + (VP (VBN involved) + (NP (-NONE- *-2)) + (PP (IN in) + (NP (JJ other) + (NNS areas))) + (PP (IN despite) + (NP (PRP$ their) + (NN potential))))))))) + (. .))) + +Leaves: +------- + 0 Again + 1 , + 2 when + 3 it + 4 comes + sense: come-v.2 + prop: come.01 + v * -> 4:0, comes + ARG1 * -> 5:3, Taiwan 's biggest export item , finished fabrics , + ARGM-TMP * -> 14:0, *T*-9 -> 2:1, when + 5 Taiwan + coref: IDENT 117 5-6 Taiwan 's + coref: IDENT 139 5-13 Taiwan 's biggest export item , finished fabrics , + coref: APPOS ATTRIB 142 5-9 Taiwan 's biggest export item + name: GPE 5-5 Taiwan + 6 's + 7 biggest + 8 export + 9 item + 10 , + 11 finished + coref: APPOS HEAD 142 11-12 finished fabrics + 12 fabrics + 13 , + 14 *T*-9 + 15 these + coref: IDENT 139 15-15 these + 16 too + 17 are + prop: be.03 + v * -> 17:0, are + 18 largely + 19 limited + sense: limit-v.1 + prop: limit.01 + v * -> 19:0, limited + ARGM-DIS * -> 0:1, Again + ARGM-TMP * -> 2:2, when it comes Taiwan 's biggest export item , finished fabrics , *T*-9 + ARG1 * -> 20:0, *-1 -> 15:2, these too + ARG2 * -> 21:1, to apparel fabrics + ARGM-ADV * -> 25:1, with few companies getting involved *-2 in other areas despite their potential + 20 *-1 + 21 to + 22 apparel + 23 fabrics + 24 , + 25 with + 26 few + 27 companies + sense: company-n.1 + 28 getting + sense: get-v.3 + prop: get.03 + v * -> 28:0, getting + ARG1 * -> 26:1, few companies + ARG2 * -> 29:1, involved *-2 in other areas despite their potential + 29 involved + prop: involve.01 + v * -> 29:0, involved + ARG1 * -> 30:0, *-2 -> 26:1, few companies + ARG2 * -> 31:1, in other areas + ARGM-ADV * -> 34:1, despite their potential + 30 *-2 + 31 in + 32 other + coref: IDENT 149 32-33 other areas + 33 areas + sense: area-n.1 + 34 despite + 35 their + coref: IDENT 149 35-35 their + 36 potential + sense: potential-n.1 + 37 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For instance, Taiwan has been struck by many landslides in recent years, and requires large quantities of + geotextiles-heavy-grade textiles laid under or around civil engineering structures to prevent erosion by groundwater + movement. + +Treebanked sentence: +-------------------- + For instance , Taiwan has been struck *-1 by many landslides in recent years , and requires large quantities of + geotextiles - heavy - grade textiles laid * under or around civil engineering structures *PRO* to prevent erosion by + groundwater movement . + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NN instance))) + (, ,) + (NP-SBJ-1 (NNP Taiwan)) + (VP (VP (VBZ has) + (VP (VBN been) + (VP (VBN struck) + (NP (-NONE- *-1)) + (PP (IN by) + (NP-LGS (JJ many) + (NNS landslides))) + (PP-TMP (IN in) + (NP (JJ recent) + (NNS years)))))) + (, ,) + (CC and) + (VP (VBZ requires) + (NP (NP (JJ large) + (NNS quantities)) + (PP (IN of) + (NP (NP (NP (NNS geotextiles)) + (: -) + (NP (ADJP (JJ heavy) + (HYPH -) + (NN grade)) + (NNS textiles))) + (VP (VBN laid) + (NP (-NONE- *)) + (PP-LOC (IN under) + (CC or) + (IN around) + (NP (NP (JJ civil) + (NN engineering)) + (NNS structures))))))) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB prevent) + (NP (NP (NN erosion)) + (PP (IN by) + (NP (NN groundwater) + (NN movement))))))))) + (. .))) + +Leaves: +------- + 0 For + 1 instance + 2 , + 3 Taiwan + coref: IDENT 117 3-3 Taiwan + name: GPE 3-3 Taiwan + 4 has + prop: have.01 + v * -> 4:0, has + 5 been + prop: be.03 + v * -> 5:0, been + 6 struck + sense: strike-v.1 + prop: strike.01 + v * -> 6:0, struck + ARGM-DIS * -> 0:1, For instance + ARG1 * -> 7:0, *-1 -> 3:1, Taiwan + ARG2 * -> 8:1, by many landslides + ARGM-TMP * -> 11:1, in recent years + 7 *-1 + 8 by + 9 many + 10 landslides + 11 in + 12 recent + 13 years + 14 , + 15 and + 16 requires + sense: require-v.1 + prop: require.01 + v * -> 16:0, requires + ARGM-DIS * -> 0:1, For instance + ARG0 * -> 7:0, *-1 -> 3:1, Taiwan + ARG1 * -> 17:2, large quantities of geotextiles - heavy - grade textiles laid * under or around civil + engineering structures + ARGM-PRP * -> 34:2, *PRO* to prevent erosion by groundwater movement + 17 large + 18 quantities + 19 of + 20 geotextiles + coref: APPOS HEAD 160 20-20 geotextiles + 21 - + 22 heavy + coref: APPOS ATTRIB 160 22-25 heavy - grade textiles + 23 - + 24 grade + 25 textiles + 26 laid + prop: lay.01 + v * -> 26:0, laid + ARG1 * -> 27:0, * + ARG2 * -> 28:1, under or around civil engineering structures + LINK-PCR * -> 20:2, geotextiles - heavy - grade textiles + * -> 27:0, * + 27 * + 28 under + 29 or + 30 around + 31 civil + 32 engineering + sense: engineering-n.1 + 33 structures + sense: structure-n.1 + 34 *PRO* + 35 to + 36 prevent + sense: prevent-v.1 + prop: prevent.01 + v * -> 36:0, prevent + ARG0 * -> 34:0, *PRO* + ARG1 * -> 37:2, erosion by groundwater movement + LINK-PCR * -> 17:2, large quantities of geotextiles - heavy - grade textiles laid * under or around civil + engineering structures + * -> 34:0, *PRO* + 37 erosion + sense: erosion-n.1 + 38 by + 39 groundwater + 40 movement + sense: movement-n.1 + prop: movement.01 + n * -> 40:0, movement + ARG0 * -> 39:0, groundwater + 41 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The currently planned high-speed rail system alone is expected to require several million yards of geotextiles. + +Treebanked sentence: +-------------------- + The currently planned high - speed rail system alone is expected *-9 to require several million yards of geotextiles . + +Tree: +----- + (TOP (S (NP-SBJ-9 (NP (DT The) + (ADJP (RB currently) + (VBN planned)) + (NML (JJ high) + (HYPH -) + (NN speed)) + (NN rail) + (NN system)) + (ADVP (RB alone))) + (VP (VBZ is) + (VP (VBN expected) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB require) + (NP (NP (QP (JJ several) + (CD million)) + (NNS yards)) + (PP (IN of) + (NP (NNS geotextiles))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 currently + 2 planned + prop: plan.01 + v * -> 2:0, planned + ARGM-TMP * -> 1:0, currently + ARG1 * -> 3:1, high - speed + -> 6:0, rail + -> 7:0, system + 3 high + 4 - + 5 speed + 6 rail + 7 system + 8 alone + 9 is + prop: be.03 + v * -> 9:0, is + 10 expected + prop: expect.01 + v * -> 10:0, expected + ARG1 * -> 11:0, *-9 -> 0:2, The currently planned high - speed rail system alone + * -> 0:2, The currently planned high - speed rail system alone + -> 11:2, *-9 to require several million yards of geotextiles + 11 *-9 + 12 to + 13 require + sense: require-v.1 + prop: require.01 + v * -> 13:0, require + ARG0 * -> 11:0, *-9 -> 0:2, The currently planned high - speed rail system alone + ARG1 * -> 14:3, several million yards of geotextiles + 14 several + name: QUANTITY 14-16 several million yards + 15 million + 16 yards + sense: yard-n.1 + 17 of + 18 geotextiles + 19 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But Taiwanese companies are inexperienced in this area, and sending products overseas for quality certification tests is + time consuming and complicated, so local companies can only stand and watch as the entire market goes to imported + products. + +Treebanked sentence: +-------------------- + But Taiwanese companies are inexperienced in this area , and *PRO* sending products overseas for quality certification + tests is time consuming and complicated , so local companies can only stand and watch as the entire market goes to + imported products . + +Tree: +----- + (TOP (S (S (S (CC But) + (NP-SBJ (JJ Taiwanese) + (NNS companies)) + (VP (VBP are) + (ADJP-PRD (JJ inexperienced) + (PP (IN in) + (NP (DT this) + (NN area)))))) + (, ,) + (CC and) + (S (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG sending) + (NP (NNS products)) + (ADVP-DIR (RB overseas)) + (PP (IN for) + (NP (NN quality) + (NN certification) + (NNS tests))))) + (VP (VBZ is) + (ADJP-PRD (ADJP (NN time) + (VBG consuming)) + (CC and) + (ADJP (JJ complicated)))))) + (, ,) + (S (ADVP-PRP (RB so)) + (NP-SBJ (JJ local) + (NNS companies)) + (VP (MD can) + (ADVP (RB only)) + (VP (VP (VB stand)) + (CC and) + (VP (VB watch) + (SBAR-TMP (IN as) + (S (NP-SBJ (DT the) + (JJ entire) + (NN market)) + (VP (VBZ goes) + (PP (IN to) + (NP (VBN imported) + (NNS products)))))))))) + (. .))) + +Leaves: +------- + 0 But + 1 Taiwanese + name: NORP 1-1 Taiwanese + 2 companies + sense: company-n.1 + 3 are + sense: be-v.1 + prop: be.01 + v * -> 3:0, are + ARGM-DIS * -> 0:0, But + ARG1 * -> 1:1, Taiwanese companies + ARG2 * -> 4:1, inexperienced in this area + 4 inexperienced + 5 in + 6 this + 7 area + sense: area-n.1 + 8 , + 9 and + 10 *PRO* + 11 sending + prop: send.02 + v * -> 11:0, sending + ARG0 * -> 10:0, *PRO* + ARG1 * -> 12:1, products + ARGM-DIR * -> 13:1, overseas + ARG2 * -> 14:1, for quality certification tests + LINK-PCR * -> 1:1, Taiwanese companies + * -> 10:0, *PRO* + 12 products + sense: product-n.1 + 13 overseas + 14 for + 15 quality + sense: quality-n.1 + 16 certification + sense: certification-n.4 + 17 tests + sense: test-n.3 + 18 is + sense: be-v.1 + prop: be.01 + v * -> 18:0, is + ARG1 * -> 10:2, *PRO* sending products overseas for quality certification tests + ARG2 * -> 19:2, time consuming and complicated + 19 time + sense: time-n.3 + 20 consuming + prop: consume.01 + v * -> 20:0, consuming + ARG1 * -> 19:0, time + 21 and + 22 complicated + 23 , + 24 so + 25 local + 26 companies + sense: company-n.1 + 27 can + 28 only + 29 stand + sense: stand-v.1 + prop: stand.01 + v * -> 29:0, stand + ARGM-DIS * -> 24:1, so + ARG0 * -> 25:1, local companies + ARGM-MOD * -> 27:0, can + ARGM-ADV * -> 28:1, only + 30 and + 31 watch + sense: watch-v.1 + prop: watch.01 + v * -> 31:0, watch + ARGM-DIS * -> 24:1, so + ARG0 * -> 25:1, local companies + ARGM-MOD * -> 27:0, can + ARGM-ADV * -> 28:1, only + ARG1 * -> 32:1, as the entire market goes to imported products + 32 as + 33 the + 34 entire + 35 market + sense: market-n.1 + 36 goes + sense: go-v.4 + prop: go.10 + v * -> 36:0, goes + ARG1 * -> 33:1, the entire market + ARG2 * -> 37:1, to imported products + 37 to + 38 imported + prop: import.01 + v * -> 38:0, imported + ARG1 * -> 39:0, products + 39 products + sense: product-n.1 + 40 . + + +======================================================================================================================== +Coreference chains for section 6: +--------------------------------- + + Chain 5 (IDENT) + 127.11-31 the highly innovative Sinocolor Book color reference system , which *T*-1 was launched *-1 at + the CTI 's 40th anniversary celebration + 128.0-2 The system 's + + Chain 10 (IDENT) + 127.26-28 the CTI 's + 136.22-22 CTI + + Chain 14 (IDENT) + 128.0-8 The system 's inventor , Hsu Yun - peng + 129.13-23 Hsu , who *T*-1 did n't know a word of English + 129.26-26 himself + 130.6-9 Hsu Yun - peng + 130.19-19 his + 131.0-0 His + 132.5-5 he + 132.7-7 his + 133.8-8 his + 133.13-13 he + 133.21-21 his + 134.1-1 he + + Chain 17 (APPOS) + ATTRIB 128.0-3 The system 's inventor + HEAD 128.5-8 Hsu Yun - peng + + Chain 23 (IDENT) + 129.3-6 imported color matching software + 129.36-37 the software + + Chain 41 (IDENT) + 130.5-5 earned + 130.16-16 this + + Chain 42 (IDENT) + 130.19-21 his main purpose + 131.0-2 His real aim + 132.3-4 this goal + + Chain 77 (IDENT) + 133.21-23 his three children + 133.31-31 they + + Chain 108 (IDENT) + 136.22-27 CTI president Yao Hsing - chuan + 137.0-0 He + + Chain 117 (IDENT) + 138.0-0 Taiwan + 138.15-15 it + 139.5-6 Taiwan 's + 140.3-3 Taiwan + + Chain 139 (IDENT) + 139.5-13 Taiwan 's biggest export item , finished fabrics , + 139.15-15 these + + Chain 142 (APPOS) + ATTRIB 139.5-9 Taiwan 's biggest export item + HEAD 139.11-12 finished fabrics + + Chain 149 (IDENT) + 139.32-33 other areas + 139.35-35 their + + Chain 160 (APPOS) + HEAD 140.20-20 geotextiles + ATTRIB 140.22-25 heavy - grade textiles + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Bullet-proof fabrics ? + +Treebanked sentence: +-------------------- + Bullet - proof fabrics ? + +Tree: +----- + (TOP (NP (ADJP (NN Bullet) + (HYPH -) + (JJ proof)) + (NNS fabrics) + (. ?))) + +Leaves: +------- + 0 Bullet + 1 - + 2 proof + 3 fabrics + 4 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Geotextiles ? + +Treebanked sentence: +-------------------- + Geotextiles ? + +Tree: +----- + (TOP (FRAG (NP (NNS Geotextiles)) + (. ?))) + +Leaves: +------- + 0 Geotextiles + coref: IDENT 0 0-0 Geotextiles + 1 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Are these part of the textile industry ? + +Treebanked sentence: +-------------------- + Are these part of the textile industry ? + +Tree: +----- + (TOP (SQ (VBP Are) + (NP-SBJ (DT these)) + (NP-PRD (NP (NN part)) + (PP (IN of) + (NP (DT the) + (NN textile) + (NN industry)))) + (. ?))) + +Leaves: +------- + 0 Are + sense: be-v.1 + prop: be.01 + v * -> 0:0, Are + ARG1 * -> 1:1, these + ARG2 * -> 2:2, part of the textile industry + 1 these + coref: IDENT 0 1-1 these + 2 part + sense: part-n.1 + 3 of + 4 the + 5 textile + 6 industry + 7 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Indeed they are. + +Treebanked sentence: +-------------------- + Indeed they are *?* . + +Tree: +----- + (TOP (S (ADVP (RB Indeed)) + (NP-SBJ (PRP they)) + (VP (VBP are) + (NP-PRD (-NONE- *?*))) + (. .))) + +Leaves: +------- + 0 Indeed + 1 they + coref: IDENT 0 1-1 they + 2 are + sense: be-v.1 + prop: be.01 + v * -> 2:0, are + ARGM-DIS * -> 0:1, Indeed + ARG1 * -> 1:1, they + ARG2 * -> 3:0, *?* + 3 *?* + 4 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Yao Hsing-chuan says that textile industry products have three main fields of application : apparel, furnishings and + industrial. + +Treebanked sentence: +-------------------- + Yao Hsing - chuan says that textile industry products have three main fields of application : apparel , furnishings and + industrial . + +Tree: +----- + (TOP (S (NP-SBJ (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan)) + (VP (VBZ says) + (SBAR (IN that) + (S (NP-SBJ (NN textile) + (NN industry) + (NNS products)) + (VP (VBP have) + (NP (NP (NP (CD three) + (JJ main) + (NNS fields)) + (PP (IN of) + (NP (NN application)))) + (: :) + (NP (NN apparel) + (, ,) + (NNS furnishings) + (CC and) + (JJ industrial))))))) + (. .))) + +Leaves: +------- + 0 Yao + name: PERSON 0-3 Yao Hsing - chuan + 1 Hsing + 2 - + 3 chuan + 4 says + sense: say-v.1 + prop: say.01 + v * -> 4:0, says + ARG0 * -> 0:1, Yao Hsing - chuan + ARG1 * -> 5:1, that textile industry products have three main fields of application : apparel , + furnishings and industrial + 5 that + 6 textile + 7 industry + 8 products + sense: product-n.1 + 9 have + sense: have-v.2 + prop: have.03 + v * -> 9:0, have + ARG0 * -> 6:1, textile industry products + ARG1 * -> 10:3, three main fields of application : apparel , furnishings and industrial + 10 three + coref: APPOS ATTRIB 10 10-14 three main fields of application + 11 main + 12 fields + sense: field-n.3 + 13 of + 14 application + sense: application-n.1 + prop: application.02 + n * -> 14:0, application + 15 : + 16 apparel + coref: APPOS HEAD 10 16-20 apparel , furnishings and industrial + 17 , + 18 furnishings + 19 and + 20 industrial + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At present, over 95 % by value of ROC textile industry output is accounted for by apparel products with low added value. + +Treebanked sentence: +-------------------- + At present , over 95 % by value of ROC textile industry output is accounted for *-1 by apparel products with low added + value . + +Tree: +----- + (TOP (S (PP-TMP (IN At) + (NP (NN present))) + (, ,) + (NP-SBJ-1 (NP (QP (IN over) + (CD 95)) + (NN %)) + (PP (IN by) + (NP (NN value))) + (PP (IN of) + (NP (NNP ROC) + (NML (NN textile) + (NN industry)) + (NN output)))) + (VP (VBZ is) + (VP (VBN accounted) + (PP-CLR (IN for) + (NP (-NONE- *-1))) + (PP (IN by) + (NP-LGS (NP (NN apparel) + (NNS products)) + (PP (IN with) + (NP (JJ low) + (JJ added) + (NN value))))))) + (. .))) + +Leaves: +------- + 0 At + 1 present + sense: present-n.1 + 2 , + 3 over + 4 95 + ! name: PERCENT 4-5 95 % + 5 % + 6 by + 7 value + sense: value-n.2 + 8 of + 9 ROC + 10 textile + 11 industry + 12 output + sense: output-n.1 + 13 is + prop: be.03 + v * -> 13:0, is + 14 accounted + sense: account-v.1 + prop: account.01 + v * -> 14:0, accounted + ARGM-TMP * -> 0:1, At present + ARG1 * -> 15:1, for *-1 + ARG2 * -> 17:1, by apparel products with low added value + 15 for + 16 *-1 + 17 by + 18 apparel + 19 products + sense: product-n.1 + 20 with + 21 low + 22 added + 23 value + sense: value-n.2 + 24 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + By contrast, in the USA textiles for clothing and industrial applications are produced in equal quantities, and + industrial textiles include a wide variety of different products, many of which are technically demanding and command + profit margins with which most apparel products can not compare. + +Treebanked sentence: +-------------------- + By contrast , in the USA textiles for clothing and industrial applications are produced *-9 in equal quantities , and + industrial textiles include a wide variety of different products , many of which *T*-1 are technically demanding and + command profit margins with which most apparel products can not compare *T*-2 . + +Tree: +----- + (TOP (S (S (PP (IN By) + (NP (NN contrast))) + (, ,) + (PP-LOC (IN in) + (NP (DT the) + (NNP USA))) + (NP-SBJ-9 (NP (NNS textiles)) + (PP (IN for) + (NP (UCP (NN clothing) + (CC and) + (JJ industrial)) + (NNS applications)))) + (VP (VBP are) + (VP (VBN produced) + (NP (-NONE- *-9)) + (PP (IN in) + (NP (JJ equal) + (NNS quantities)))))) + (, ,) + (CC and) + (S (NP-SBJ (JJ industrial) + (NNS textiles)) + (VP (VBP include) + (NP (NP (DT a) + (JJ wide) + (NN variety)) + (PP (IN of) + (NP (NP (JJ different) + (NNS products)) + (, ,) + (SBAR (WHNP-1 (NP (JJ many)) + (WHPP (IN of) + (WHNP (WDT which)))) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VP (VBP are) + (ADJP-PRD (RB technically) + (JJ demanding))) + (CC and) + (VP (VBP command) + (NP (NP (NN profit) + (NNS margins)) + (SBAR (WHPP-2 (IN with) + (WHNP (WDT which))) + (S (NP-SBJ (JJS most) + (NN apparel) + (NNS products)) + (VP (MD can) + (RB not) + (VP (VB compare) + (PP-CLR (-NONE- *T*-2)))))))))))))))) + (. .))) + +Leaves: +------- + 0 By + 1 contrast + sense: contrast-n.1 + prop: contrast.01 + n * -> 1:0, contrast + 2 , + 3 in + 4 the + 5 USA + name: GPE 5-5 USA + 6 textiles + 7 for + 8 clothing + 9 and + 10 industrial + 11 applications + 12 are + prop: be.03 + v * -> 12:0, are + 13 produced + prop: produce.01 + v * -> 13:0, produced + ARGM-DIS * -> 0:1, By contrast + ARGM-LOC * -> 3:1, in the USA + ARG1 * -> 14:0, *-9 -> 6:2, textiles for clothing and industrial applications + ARGM-MNR * -> 15:1, in equal quantities + LINK-PCR * -> 14:0, *-9 -> 6:2, textiles for clothing and industrial applications + * -> 14:0, *-9 -> 6:2, textiles for clothing and industrial applications + 14 *-9 + 15 in + 16 equal + 17 quantities + 18 , + 19 and + 20 industrial + 21 textiles + 22 include + sense: include-v.1 + prop: include.01 + v * -> 22:0, include + ARG2 * -> 20:1, industrial textiles + ARG1 * -> 23:2, a wide variety of different products , many of which *T*-1 are technically demanding + and command profit margins with which most apparel products can not compare *T*-2 + 23 a + 24 wide + 25 variety + sense: variety-n.1 + 26 of + 27 different + 28 products + sense: product-n.1 + 29 , + 30 many + 31 of + 32 which + 33 *T*-1 + 34 are + sense: be-v.1 + prop: be.01 + v * -> 34:0, are + ARG1 * -> 33:0, *T*-1 -> 30:2, many of which + ARG2 * -> 35:1, technically demanding + LINK-SLC * -> 27:1, different products + * -> 33:0, *T*-1 -> 30:2, many of which + 35 technically + 36 demanding + 37 and + 38 command + sense: command-v.3 + prop: command.01 + v * -> 38:0, command + ARG0 * -> 33:0, *T*-1 -> 30:2, many of which + ARG1 * -> 39:2, profit margins with which most apparel products can not compare *T*-2 + LINK-SLC * -> 27:1, different products + * -> 33:0, *T*-1 -> 30:2, many of which + 39 profit + sense: profit-n.1 + 40 margins + sense: margin-n.2 + 41 with + 42 which + 43 most + 44 apparel + 45 products + sense: product-n.1 + 46 can + 47 not + 48 compare + sense: compare-v.1 + prop: compare.01 + v * -> 48:0, compare + ARG1 * -> 43:1, most apparel products + ARGM-MOD * -> 46:0, can + ARGM-NEG * -> 47:0, not + ARG2 * -> 49:0, *T*-2 -> 41:1, with which + LINK-SLC * -> 39:1, profit margins + * -> 49:0, *T*-2 -> 41:1, with which + 49 *T*-2 + 50 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hence the CTI has already made it one of its major goals to encourage firms to shift their orientation towards + industrial textiles. + +Treebanked sentence: +-------------------- + Hence the CTI has already made it *EXP*-1 one of its major goals *PRO* to encourage firms *PRO*-2 to shift their + orientation towards industrial textiles . + +Tree: +----- + (TOP (S (ADVP (RB Hence)) + (NP-SBJ (DT the) + (NNP CTI)) + (VP (VBZ has) + (ADVP-TMP (RB already)) + (VP (VBN made) + (S (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-1))) + (NP-PRD (NP (CD one)) + (PP (IN of) + (NP (PRP$ its) + (JJ major) + (NNS goals)))) + (S-1 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB encourage) + (NP-2 (NNS firms)) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB shift) + (NP (PRP$ their) + (NN orientation)) + (PP (IN towards) + (NP (JJ industrial) + (NNS textiles)))))))))))) + (. .))) + +Leaves: +------- + 0 Hence + 1 the + coref: IDENT 40 1-2 the CTI + 2 CTI + name: ORG 2-2 CTI + 3 has + prop: have.01 + v * -> 3:0, has + 4 already + 5 made + sense: make-v.3 + prop: make.01 + v * -> 5:0, made + ARGM-DIS * -> 0:1, Hence + ARG0 * -> 1:1, the CTI + ARGM-TMP * -> 4:1, already + ARG1 * -> 6:3, it *EXP*-1 one of its major goals *PRO* to encourage firms *PRO*-2 to shift their + orientation towards industrial textiles + 6 it + 7 *EXP*-1 + 8 one + 9 of + 10 its + coref: IDENT 40 10-10 its + 11 major + 12 goals + sense: goal-n.1 + 13 *PRO* + 14 to + 15 encourage + sense: encourage-v.1 + prop: encourage.01 + v * -> 15:0, encourage + ARG0 * -> 13:0, *PRO* + ARG1 * -> 17:0, *PRO*-2 -> 16:1, firms + ARG2 * -> 17:2, *PRO*-2 to shift their orientation towards industrial textiles + LINK-PCR * -> 1:1, the CTI + * -> 13:0, *PRO* + 16 firms + coref: IDENT 47 16-16 firms + 17 *PRO*-2 + 18 to + 19 shift + sense: shift-v.1 + prop: shift.01 + v * -> 19:0, shift + ARG0 * -> 17:0, *PRO*-2 -> 16:1, firms + ARG1 * -> 20:1, their orientation + ARG2 * -> 22:1, towards industrial textiles + 20 their + coref: IDENT 47 20-20 their + 21 orientation + 22 towards + 23 industrial + coref: IDENT 49 23-24 industrial textiles + 24 textiles + 25 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The development of stainless-steel fibers is one success story in this area. + +Treebanked sentence: +-------------------- + The development of stainless - steel fibers is one success story in this area . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN development)) + (PP (IN of) + (NP (NML (JJ stainless) + (HYPH -) + (NN steel)) + (NNS fibers)))) + (VP (VBZ is) + (NP-PRD (NP (CD one) + (NN success) + (NN story)) + (PP (IN in) + (NP (DT this) + (NN area))))) + (. .))) + +Leaves: +------- + 0 The + 1 development + 2 of + 3 stainless + 4 - + 5 steel + 6 fibers + 7 is + sense: be-v.1 + prop: be.01 + v * -> 7:0, is + ARG1 * -> 0:2, The development of stainless - steel fibers + ARG2 * -> 8:2, one success story in this area + 8 one + 9 success + sense: success-n.2 + 10 story + sense: story-n.1 + 11 in + 12 this + coref: IDENT 49 12-13 this area + 13 area + sense: area-n.1 + 14 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + From false teeth to space suits + +Treebanked sentence: +-------------------- + From false teeth to space suits + +Tree: +----- + (TOP (FRAG (PP (IN From) + (NP (JJ false) + (NN teeth))) + (PP (IN to) + (NP (NN space) + (NNS suits))))) + +Leaves: +------- + 0 From + 1 false + 2 teeth + 3 to + 4 space + sense: space-n.1 + 5 suits + sense: suit-n.3 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Dotted among the paddy fields of Taichung County's Houli Rural Township are many metal-clad buildings which house a + variety of factories producing such products as plastics, furniture and electronic components. + +Treebanked sentence: +-------------------- + Dotted *-2 among the paddy fields of Taichung County 's Houli Rural Township are *T*-1 many metal - clad buildings which + *T*-9 house a variety of factories producing such products as plastics , furniture and electronic components . + +Tree: +----- + (TOP (SINV (VP-TPC-1 (VBN Dotted) + (NP (-NONE- *-2)) + (PP-LOC (IN among) + (NP (NP (DT the) + (NN paddy) + (NNS fields)) + (PP (IN of) + (NP (NP (NNP Taichung) + (NNP County) + (POS 's)) + (NNP Houli) + (NNP Rural) + (NNP Township)))))) + (VP (VBP are) + (VP (-NONE- *T*-1))) + (NP-SBJ-2 (NP (JJ many) + (ADJP (NN metal) + (HYPH -) + (VBN clad)) + (NNS buildings)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBP house) + (NP (NP (DT a) + (NN variety)) + (PP (IN of) + (NP (NP (NNS factories)) + (VP (VBG producing) + (NP (NP (JJ such) + (NNS products)) + (PP (IN as) + (NP (NP (NNS plastics)) + (, ,) + (NP (NN furniture)) + (CC and) + (NP (JJ electronic) + (NNS components))))))))))))) + (. .))) + +Leaves: +------- + 0 Dotted + sense: dot-v.1 + prop: dot.01 + v * -> 0:0, Dotted + ARG1 * -> 2:1, among the paddy fields of Taichung County 's Houli Rural Township + ARG2 * -> 1:0, *-2 -> 15:2, many metal - clad buildings which *T*-9 house a variety of factories + producing such products as plastics , furniture and electronic components + 1 *-2 + 2 among + 3 the + 4 paddy + 5 fields + sense: field-n.1 + 6 of + 7 Taichung + name: GPE 7-9 Taichung County 's + 8 County + 9 's + 10 Houli + ! name: LOC 10-12 Houli Rural Township + 11 Rural + 12 Township + 13 are + sense: be-v.4 + prop: be.01 + v * -> 13:0, are + ARG2 * -> 14:0, *T*-1 -> 0:1, Dotted *-2 among the paddy fields of Taichung County 's Houli Rural + Township + ARG1 * -> 1:0, *-2 -> 15:2, many metal - clad buildings which *T*-9 house a variety of factories + producing such products as plastics , furniture and electronic components + 14 *T*-1 + 15 many + coref: IDENT 63 15-36 many metal - clad buildings which *T*-9 house a variety of factories + producing such products as plastics , furniture and electronic components + 16 metal + sense: metal-n.1 + 17 - + 18 clad + prop: clothe.01 + v * -> 18:0, clad + ARG2 * -> 16:0, metal + ARG2 * -> 19:0, buildings + 19 buildings + sense: building-n.1 + 20 which + 21 *T*-9 + 22 house + sense: house-v.1 + prop: house.01 + v * -> 22:0, house + ARG2 * -> 21:0, *T*-9 -> 20:1, which + ARG1 * -> 23:2, a variety of factories producing such products as plastics , furniture and electronic + components + LINK-SLC * -> 15:1, many metal - clad buildings + * -> 21:0, *T*-9 -> 20:1, which + 23 a + 24 variety + sense: variety-n.1 + 25 of + 26 factories + 27 producing + sense: produce-v.1 + prop: produce.01 + v * -> 27:0, producing + ARG0 * -> 26:1, factories + ARG1 * -> 28:2, such products as plastics , furniture and electronic components + 28 such + 29 products + sense: product-n.1 + 30 as + 31 plastics + 32 , + 33 furniture + 34 and + 35 electronic + 36 components + sense: component-n.1 + 37 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Among them is King's Metal Fiber Technologies Company, the only firm in Taiwan which draws fibers from stainless steel. + +Treebanked sentence: +-------------------- + Among them is *T*-1 King 's Metal Fiber Technologies Company , the only firm in Taiwan which *T*-9 draws fibers from + stainless steel . + +Tree: +----- + (TOP (SINV (PP-TPC-1 (IN Among) + (NP (PRP them))) + (VP (VBZ is) + (PP-PRD (-NONE- *T*-1))) + (NP-SBJ (NP (NP (NNP King) + (POS 's)) + (NNP Metal) + (NNP Fiber) + (NNPS Technologies) + (NNP Company)) + (, ,) + (NP (NP (NP (DT the) + (JJ only) + (NN firm)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ draws) + (NP (NNS fibers)) + (PP (IN from) + (NP (JJ stainless) + (NN steel)))))))) + (. .))) + +Leaves: +------- + 0 Among + 1 them + coref: IDENT 63 1-1 them + 2 is + sense: be-v.4 + prop: be.01 + v * -> 2:0, is + ARG2 * -> 3:0, *T*-1 -> 0:1, Among them + ARG1 * -> 4:3, King 's Metal Fiber Technologies Company , the only firm in Taiwan which *T*-9 draws + fibers from stainless steel + 3 *T*-1 + 4 King + coref: APPOS HEAD 78 4-9 King 's Metal Fiber Technologies Company + coref: IDENT 77 4-22 King 's Metal Fiber Technologies Company , the only firm in Taiwan which + *T*-9 draws fibers from stainless steel + name: ORG 4-9 King 's Metal Fiber Technologies Company + 5 's + 6 Metal + 7 Fiber + 8 Technologies + 9 Company + 10 , + 11 the + coref: APPOS ATTRIB 78 11-22 the only firm in Taiwan which *T*-9 draws fibers from stainless steel + 12 only + 13 firm + 14 in + 15 Taiwan + coref: IDENT 121 15-15 Taiwan + name: GPE 15-15 Taiwan + 16 which + 17 *T*-9 + 18 draws + sense: draw-v.3 + prop: draw.02 + v * -> 18:0, draws + ARG0 * -> 17:0, *T*-9 -> 16:1, which + ARG1 * -> 19:1, fibers + ARG2 * -> 20:1, from stainless steel + LINK-SLC * -> 11:2, the only firm in Taiwan + * -> 17:0, *T*-9 -> 16:1, which + 19 fibers + 20 from + 21 stainless + 22 steel + sense: steel-n.1 + 23 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + King's president Rocky Chang is known to all as Dr. Chang, and is indeed still a practicing dentist. + +Treebanked sentence: +-------------------- + King 's president Rocky Chang is known *-1 to all as Dr. Chang , and is indeed still a practicing dentist . + +Tree: +----- + (TOP (S (NP-SBJ-1 (NP (NP (NNP King) + (POS 's)) + (NN president)) + (NP (NNP Rocky) + (NNP Chang))) + (VP (VP (VBZ is) + (VP (VBN known) + (NP (-NONE- *-1)) + (PP (IN to) + (NP (DT all))) + (PP (IN as) + (NP (NNP Dr.) + (NNP Chang))))) + (, ,) + (CC and) + (VP (VBZ is) + (ADVP (RB indeed)) + (ADVP (RB still)) + (NP-PRD (DT a) + (VBG practicing) + (NN dentist)))) + (. .))) + +Leaves: +------- + 0 King + coref: IDENT 87 0-4 King 's president Rocky Chang + coref: APPOS ATTRIB 90 0-2 King 's president + coref: IDENT 77 0-1 King 's + name: ORG 0-1 King 's + 1 's + 2 president + sense: president-n.1 + 3 Rocky + coref: APPOS HEAD 90 3-4 Rocky Chang + name: PERSON 3-4 Rocky Chang + 4 Chang + 5 is + prop: be.03 + v * -> 5:0, is + 6 known + sense: know-v.2 + prop: know.01 + v * -> 6:0, known + ARG1 * -> 7:0, *-1 -> 0:3, King 's president Rocky Chang + ARG0 * -> 8:1, to all + ARG2 * -> 10:1, as Dr. Chang + 7 *-1 + 8 to + 9 all + 10 as + 11 Dr. + 12 Chang + name: PERSON 12-12 Chang + 13 , + 14 and + 15 is + sense: be-v.1 + prop: be.01 + v * -> 15:0, is + ARG1 * -> 0:3, King 's president Rocky Chang + ARGM-ADV * -> 16:1, indeed + ARGM-ADV * -> 17:1, still + ARG2 * -> 18:1, a practicing dentist + 16 indeed + 17 still + 18 a + 19 practicing + prop: practice.01 + v * -> 19:0, practicing + ARG0 * -> 20:0, dentist + 20 dentist + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + A decade or so ago, while he was studying in Australia, he developed an interest in metallurgy, and hoped to develop the + use of metals in tooth implants. + +Treebanked sentence: +-------------------- + A decade or so ago , while he was studying in Australia , he developed an interest in metallurgy , and hoped *PRO*-9 to + develop the use of metals in tooth implants . + +Tree: +----- + (TOP (S (ADVP-TMP (NP (DT A) + (NN decade) + (QP (CC or) + (RB so))) + (RB ago)) + (, ,) + (SBAR-TMP (IN while) + (S (NP-SBJ (PRP he)) + (VP (VBD was) + (VP (VBG studying) + (PP-LOC (IN in) + (NP (NNP Australia))))))) + (, ,) + (NP-SBJ-9 (PRP he)) + (VP (VP (VBD developed) + (NP (NP (DT an) + (NN interest)) + (PP (IN in) + (NP (NN metallurgy))))) + (, ,) + (CC and) + (VP (VBD hoped) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB develop) + (NP (NP (DT the) + (NN use)) + (PP (IN of) + (NP (NNS metals))) + (PP (IN in) + (NP (NN tooth) + (NNS implants))))))))) + (. .))) + +Leaves: +------- + 0 A + 1 decade + sense: decade-n.1 + name: DATE 1-1 decade + 2 or + 3 so + 4 ago + 5 , + 6 while + 7 he + coref: IDENT 87 7-7 he + 8 was + prop: be.03 + v * -> 8:0, was + 9 studying + sense: study-v.2 + prop: study.01 + v * -> 9:0, studying + ARG0 * -> 7:1, he + ARGM-LOC * -> 10:1, in Australia + 10 in + 11 Australia + coref: IDENT 97 11-11 Australia + name: GPE 11-11 Australia + 12 , + 13 he + coref: IDENT 87 13-13 he + 14 developed + sense: develop-v.1 + prop: develop.01 + v * -> 14:0, developed + ARGM-TMP * -> 0:2, A decade or so ago + ARGM-TMP * -> 6:1, while he was studying in Australia + ARG1 * -> 22:0, *PRO*-9 -> 13:1, he + ARG2 * -> 15:2, an interest in metallurgy + 15 an + 16 interest + sense: interest-n.1 + 17 in + 18 metallurgy + 19 , + 20 and + 21 hoped + sense: hope-v.1 + prop: hope.01 + v * -> 21:0, hoped + ARGM-TMP * -> 0:2, A decade or so ago + ARGM-TMP * -> 6:1, while he was studying in Australia + ARG0 * -> 22:0, *PRO*-9 -> 13:1, he + ARG1 * -> 22:2, *PRO*-9 to develop the use of metals in tooth implants + 22 *PRO*-9 + 23 to + 24 develop + sense: develop-v.2 + prop: develop.02 + v * -> 24:0, develop + ARG0 * -> 22:0, *PRO*-9 -> 13:1, he + ARG1 * -> 25:2, the use of metals in tooth implants + 25 the + 26 use + sense: use-n.1 + prop: use.01 + n * -> 26:0, use + ARG1 * -> 27:1, of metals + ARG2 * -> 29:1, in tooth implants + 27 of + 28 metals + sense: metal-n.1 + 29 in + 30 tooth + 31 implants + 32 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Later he learned that stainless steels have an enormously wide range of applications in the textiles, industrial and + military fields. + +Treebanked sentence: +-------------------- + Later he learned that stainless steels have an enormously wide range of applications in the textiles , industrial and + military fields . + +Tree: +----- + (TOP (S (ADVP-TMP (RB Later)) + (NP-SBJ (PRP he)) + (VP (VBD learned) + (SBAR (IN that) + (S (NP-SBJ (JJ stainless) + (NNS steels)) + (VP (VBP have) + (NP (NP (DT an) + (RB enormously) + (JJ wide) + (NN range)) + (PP (IN of) + (NP (NP (NNS applications)) + (PP (IN in) + (NP (DT the) + (UCP (NNS textiles) + (, ,) + (JJ industrial) + (CC and) + (JJ military)) + (NNS fields)))))))))) + (. .))) + +Leaves: +------- + 0 Later + 1 he + coref: IDENT 87 1-1 he + 2 learned + sense: learn-v.2 + prop: learn.01 + v * -> 2:0, learned + ARGM-TMP * -> 0:1, Later + ARG0 * -> 1:1, he + ARG1 * -> 4:2, stainless steels have an enormously wide range of applications in the textiles , + industrial and military fields + 3 that + 4 stainless + 5 steels + sense: steel-n.1 + 6 have + sense: have-v.2 + prop: have.03 + v * -> 6:0, have + ARG0 * -> 4:1, stainless steels + ARG1 * -> 7:2, an enormously wide range of applications in the textiles , industrial and military + fields + 7 an + 8 enormously + 9 wide + 10 range + sense: range-n.6 + 11 of + 12 applications + 13 in + 14 the + 15 textiles + 16 , + 17 industrial + 18 and + 19 military + 20 fields + sense: field-n.3 + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But he could not find a partner to work with in Australia, so he returned to Taiwan and began collaborating with the + CTI. + +Treebanked sentence: +-------------------- + But he could not find a partner 0 *PRO* to work with *T*-2 in Australia , so he returned to Taiwan and began *-1 + collaborating with the CTI . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (PRP he)) + (VP (MD could) + (RB not) + (VP (VB find) + (NP (NP (DT a) + (NN partner)) + (SBAR (WHNP-2 (-NONE- 0)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB work) + (PP-CLR (IN with) + (NP (-NONE- *T*-2)))))))) + (PP-LOC (IN in) + (NP (NNP Australia))) + (, ,) + (SBAR-PRP (IN so) + (S (NP-SBJ-1 (PRP he)) + (VP (VP (VBD returned) + (PP-DIR (IN to) + (NP (NNP Taiwan)))) + (CC and) + (VP (VBD began) + (S (NP-SBJ (-NONE- *-1)) + (VP (VBG collaborating) + (PP-CLR (IN with) + (NP (DT the) + (NNP CTI))))))))))) + (. .))) + +Leaves: +------- + 0 But + 1 he + coref: IDENT 87 1-1 he + 2 could + 3 not + 4 find + sense: find-v.1 + prop: find.01 + v * -> 4:0, find + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:1, he + ARGM-MOD * -> 2:0, could + ARGM-NEG * -> 3:0, not + ARG1 * -> 5:2, a partner 0 *PRO* to work with *T*-2 + ARGM-LOC * -> 13:1, in Australia + ARGM-ADV * -> 16:1, so he returned to Taiwan and began *-1 collaborating with the CTI + 5 a + 6 partner + sense: partner-n.3 + 7 0 + 8 *PRO* + 9 to + 10 work + sense: work-v.1 + prop: work.01 + v * -> 10:0, work + ARG0 * -> 8:0, *PRO* + ARG3 * -> 11:1, with *T*-2 + LINK-PCR * -> 1:1, he + * -> 8:0, *PRO* + 11 with + 12 *T*-2 + 13 in + 14 Australia + coref: IDENT 97 14-14 Australia + name: GPE 14-14 Australia + 15 , + 16 so + 17 he + coref: IDENT 87 17-17 he + 18 returned + sense: return-v.1 + prop: return.01 + v * -> 18:0, returned + ARG1 * -> 23:0, *-1 -> 17:1, he + ARG4 * -> 19:1, to Taiwan + 19 to + 20 Taiwan + coref: IDENT 121 20-20 Taiwan + name: GPE 20-20 Taiwan + 21 and + 22 began + sense: begin-v.2 + prop: begin.01 + v * -> 22:0, began + ARG0 * -> 23:0, *-1 -> 17:1, he + ARG1 * -> 23:2, *-1 collaborating with the CTI + 23 *-1 + 24 collaborating + sense: collaborate-v.1 + prop: collaborate.01 + v * -> 24:0, collaborating + ARG0 * -> 23:0, *-1 -> 17:1, he + ARG1 * -> 25:1, with the CTI + 25 with + 26 the + coref: IDENT 40 26-27 the CTI + 27 CTI + name: ORG 27-27 CTI + 28 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Today, not only is King's on a par with the large overseas manufacturers in terms of filament drawing technology, but to + assist local downstream manufacturers in using its products, it has also set up metal fiber yarn spinning and fabric + weaving plants, and is making efforts in the area of nonwoven fabrics. + +Treebanked sentence: +-------------------- + Today , not only is King 's on a par with the large overseas manufacturers in terms of filament drawing technology , but + *PRO*-9 to assist local downstream manufacturers in *PRO* using its products , it has also set up metal fiber yarn + spinning and fabric weaving plants , and is making efforts in the area of nonwoven fabrics . + +Tree: +----- + (TOP (S (NP-TMP (NN Today)) + (, ,) + (CONJP (RB not) + (RB only)) + (SINV (VBZ is) + (NP-SBJ (NNP King) + (POS 's)) + (PP-PRD (IN on) + (NP (NP (DT a) + (NN par)) + (PP (IN with) + (NP (DT the) + (JJ large) + (JJ overseas) + (NNS manufacturers))) + (PP (IN in) + (NP (NP (NNS terms)) + (PP (IN of) + (NP (NML (NN filament) + (NN drawing)) + (NN technology)))))))) + (, ,) + (CC but) + (S (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB assist) + (NP (JJ local) + (JJ downstream) + (NNS manufacturers)) + (PP (IN in) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG using) + (NP (PRP$ its) + (NNS products)))))))) + (, ,) + (NP-SBJ-9 (PRP it)) + (VP (VP (VBZ has) + (ADVP (RB also)) + (VP (VBN set) + (PRT (RP up)) + (NP (NML (NML (NML (NN metal) + (NN fiber)) + (NN yarn) + (NN spinning)) + (CC and) + (NML (NN fabric) + (NN weaving))) + (NNS plants)))) + (, ,) + (CC and) + (VP (VBZ is) + (VP (VBG making) + (NP (NP (NNS efforts)) + (PP (IN in) + (NP (NP (DT the) + (NN area)) + (PP (IN of) + (NP (JJ nonwoven) + (NNS fabrics)))))))))) + (. .))) + +Leaves: +------- + 0 Today + sense: today-n.1 + name: TIME 0-0 Today + 1 , + 2 not + 3 only + 4 is + sense: be-v.1 + prop: be.01 + v * -> 4:0, is + ARG1 * -> 5:1, King 's + ARG2 * -> 7:1, on a par with the large overseas manufacturers in terms of filament drawing technology + 5 King + coref: IDENT 77 5-6 King 's + name: ORG 5-6 King 's + 6 's + 7 on + 8 a + 9 par + 10 with + 11 the + 12 large + 13 overseas + 14 manufacturers + sense: manufacturer-n.1 + 15 in + 16 terms + sense: term-n.9 + 17 of + 18 filament + 19 drawing + sense: drawing-n.4 + prop: drawing.01 + n * -> 19:0, drawing + ARG1 * -> 18:0, filament + 20 technology + sense: technology-n.1 + 21 , + 22 but + 23 *PRO*-9 + 24 to + 25 assist + sense: assist-v.1 + prop: assist.01 + v * -> 25:0, assist + ARG0 * -> 23:0, *PRO*-9 -> 35:1, it + ARG1 * -> 26:1, local downstream manufacturers + ARG2 * -> 29:1, in *PRO* using its products + 26 local + 27 downstream + 28 manufacturers + sense: manufacturer-n.1 + 29 in + 30 *PRO* + 31 using + prop: use.01 + v * -> 31:0, using + ARG0 * -> 30:0, *PRO* + ARG1 * -> 32:1, its products + 32 its + coref: IDENT 77 32-32 its + 33 products + sense: product-n.1 + 34 , + 35 it + coref: IDENT 77 35-35 it + 36 has + prop: have.01 + v * -> 36:0, has + 37 also + 38 set + sense: set-v.4 + prop: set.03 + v * -> 38:0, set + -> 39:1, up + ARGM-PRP * -> 23:2, *PRO*-9 to assist local downstream manufacturers in *PRO* using its products + ARG0 * -> 23:0, *PRO*-9 -> 35:1, it + ARGM-DIS * -> 37:1, also + ARG1 * -> 40:4, metal fiber yarn spinning and fabric weaving plants + 39 up + 40 metal + sense: metal-n.1 + 41 fiber + 42 yarn + 43 spinning + 44 and + 45 fabric + 46 weaving + 47 plants + sense: plant-n.1 + 48 , + 49 and + 50 is + prop: be.03 + v * -> 50:0, is + 51 making + sense: make-v.1 + prop: make.01 + v * -> 51:0, making + ARGM-PRP * -> 23:2, *PRO*-9 to assist local downstream manufacturers in *PRO* using its products + ARG0 * -> 23:0, *PRO*-9 -> 35:1, it + ARG1 * -> 52:2, efforts in the area of nonwoven fabrics + 52 efforts + sense: effort-n.1 + 53 in + 54 the + 55 area + sense: area-n.1 + 56 of + 57 nonwoven + 58 fabrics + 59 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Stroking the silver-gray ringlets which are twice as fine as human hair, Chang says that these soft, flexible fibers of + high-grade steel can not only make fashion fabrics glisten with a mysterious modern sheen suitable for a millennium + party, but-thanks to metals ' outstanding capacity to shield and conduct electromagnetic waves, and their ability to + withstand high temperatures and acid or caustic environments-they also have a wide range of applications in many + industries. + +Treebanked sentence: +-------------------- + *PRO*-9 Stroking the silver - gray ringlets which *T*-1 are twice as fine as human hair , Chang says that these soft , + flexible fibers of high - grade steel can not only make fashion fabrics glisten with a mysterious modern sheen suitable + for a millennium party , but - thanks to metals ' outstanding capacity *PRO* to shield and conduct electromagnetic waves + , and their ability *PRO* to withstand high temperatures and acid or caustic environments - they also have a wide range + of applications in many industries . + +Tree: +----- + (TOP (S (S-ADV (NP-SBJ (-NONE- *PRO*-9)) + (VP (VBG Stroking) + (NP (NP (DT the) + (ADJP (JJ silver) + (HYPH -) + (JJ gray)) + (NNS ringlets)) + (SBAR (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (VP (VBP are) + (ADJP-PRD (ADJP (RB twice) + (RB as) + (JJ fine)) + (PP (IN as) + (NP (JJ human) + (NN hair)))))))))) + (, ,) + (NP-SBJ-9 (NNP Chang)) + (VP (VBZ says) + (SBAR (IN that) + (S (S (NP-SBJ (NP (DT these) + (JJ soft) + (, ,) + (JJ flexible) + (NNS fibers)) + (PP (IN of) + (NP (ADJP (JJ high) + (HYPH -) + (NN grade)) + (NN steel)))) + (VP (MD can) + (CONJP (RB not) + (RB only)) + (VP (VBP make) + (S (NP-SBJ (NN fashion) + (NNS fabrics)) + (VP (VB glisten) + (PP-CLR (IN with) + (NP (NP (DT a) + (JJ mysterious) + (JJ modern) + (NN sheen)) + (ADJP (JJ suitable) + (PP (IN for) + (NP (DT a) + (NN millennium) + (NN party))))))))))) + (, ,) + (CC but) + (, -) + (S (NP-ADV (NP (NNS thanks)) + (PP (IN to) + (NP (NP (NP (NNS metals) + (POS ')) + (JJ outstanding) + (NN capacity) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB shield) + (CC and) + (VB conduct) + (NP (JJ electromagnetic) + (NNS waves)))))) + (, ,) + (CC and) + (NP (PRP$ their) + (NN ability) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB withstand) + (NP (NP (JJ high) + (NNS temperatures)) + (CC and) + (NP (UCP (NN acid) + (CC or) + (JJ caustic)) + (NNS environments)))))))))) + (, -) + (NP-SBJ (PRP they)) + (ADVP (RB also)) + (VP (VBP have) + (NP (NP (DT a) + (JJ wide) + (NN range)) + (PP (IN of) + (NP (NP (NNS applications)) + (PP (IN in) + (NP (JJ many) + (NNS industries))))))))))) + (. .))) + +Leaves: +------- + 0 *PRO*-9 + 1 Stroking + sense: stroke-v.1 + prop: stroke.01 + v * -> 1:0, Stroking + ARG0 * -> 0:0, *PRO*-9 -> 17:1, Chang + ARG1 * -> 2:2, the silver - gray ringlets which *T*-1 are twice as fine as human hair + 2 the + coref: IDENT 144 2-15 the silver - gray ringlets which *T*-1 are twice as fine as human hair + 3 silver + 4 - + 5 gray + 6 ringlets + 7 which + 8 *T*-1 + 9 are + sense: be-v.1 + prop: be.01 + v * -> 9:0, are + ARG1 * -> 8:0, *T*-1 -> 7:1, which + ARG2 * -> 10:2, twice as fine as human hair + LINK-SLC * -> 2:1, the silver - gray ringlets + * -> 8:0, *T*-1 -> 7:1, which + 10 twice + name: ORDINAL 10-10 twice + 11 as + 12 fine + 13 as + 14 human + 15 hair + 16 , + 17 Chang + coref: IDENT 87 17-17 Chang + name: PERSON 17-17 Chang + 18 says + sense: say-v.1 + prop: say.01 + v * -> 18:0, says + ARGM-PRD * -> 0:2, *PRO*-9 Stroking the silver - gray ringlets which *T*-1 are twice as fine as human + hair + ARG0 * -> 0:0, *PRO*-9 -> 17:1, Chang + ARG1 * -> 19:1, that these soft , flexible fibers of high - grade steel can not only make fashion + fabrics glisten with a mysterious modern sheen suitable for a millennium party , but - + thanks to metals ' outstanding capacity *PRO* to shield and conduct electromagnetic + waves , and their ability *PRO* to withstand high temperatures and acid or caustic + environments - they also have a wide range of applications in many industries + 19 that + 20 these + coref: IDENT 144 20-29 these soft , flexible fibers of high - grade steel + 21 soft + 22 , + 23 flexible + 24 fibers + 25 of + 26 high + 27 - + 28 grade + 29 steel + sense: steel-n.1 + 30 can + 31 not + 32 only + 33 make + sense: make-v.3 + prop: make.01 + v * -> 33:0, make + ARG0 * -> 20:2, these soft , flexible fibers of high - grade steel + ARGM-MOD * -> 30:0, can + ARG1 * -> 34:2, fashion fabrics glisten with a mysterious modern sheen suitable for a millennium party + 34 fashion + sense: fashion-n.2 + 35 fabrics + 36 glisten + prop: glisten.01 + v * -> 36:0, glisten + ARG0 * -> 34:1, fashion fabrics + ARGM-MNR * -> 37:1, with a mysterious modern sheen suitable for a millennium party + 37 with + 38 a + 39 mysterious + 40 modern + 41 sheen + 42 suitable + 43 for + 44 a + 45 millennium + 46 party + 47 , + 48 but + 49 - + 50 thanks + sense: thanks-n.3 + 51 to + 52 metals + sense: metal-n.1 + coref: IDENT 160 52-53 metals ' + 53 ' + 54 outstanding + 55 capacity + sense: capacity-n.1 + 56 *PRO* + 57 to + 58 shield + sense: shield-v.1 + prop: shield.01 + v * -> 58:0, shield + ARG0 * -> 56:0, *PRO* + ARG1 * -> 61:1, electromagnetic waves + LINK-PCR * -> 52:1, metals ' + * -> 56:0, *PRO* + 59 and + 60 conduct + sense: conduct-v.4 + prop: conduct.01 + v * -> 60:0, conduct + ARG0 * -> 56:0, *PRO* + ARG1 * -> 61:1, electromagnetic waves + LINK-PCR * -> 52:1, metals ' + * -> 56:0, *PRO* + 61 electromagnetic + 62 waves + 63 , + 64 and + 65 their + coref: IDENT 160 65-65 their + 66 ability + sense: ability-n.2 + 67 *PRO* + 68 to + 69 withstand + sense: withstand-v.1 + prop: withstand.01 + v * -> 69:0, withstand + ARG0 * -> 67:0, *PRO* + ARG1 * -> 70:2, high temperatures and acid or caustic environments + 70 high + 71 temperatures + 72 and + 73 acid + 74 or + 75 caustic + 76 environments + sense: environment-n.1 + 77 - + 78 they + coref: IDENT 160 78-78 they + 79 also + 80 have + sense: have-v.2 + prop: have.03 + v * -> 80:0, have + ARGM-CAU * -> 50:2, thanks to metals ' outstanding capacity *PRO* to shield and conduct electromagnetic + waves , and their ability *PRO* to withstand high temperatures and acid or caustic + environments + ARG0 * -> 78:1, they + ARGM-DIS * -> 79:1, also + ARG1 * -> 81:2, a wide range of applications in many industries + 81 a + 82 wide + 83 range + sense: range-n.6 + 84 of + 85 applications + 86 in + 87 many + 88 industries + sense: industry-n.1 + 89 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For instance, at a recent international furniture show in Taipei, King's exhibited sound insulating panels containing + metal fibers, which hi-fi buffs can install to produce an excellent sound studio effect. + +Treebanked sentence: +-------------------- + For instance , at a recent international furniture show in Taipei , King 's exhibited sound insulating panels containing + metal fibers , which hi - fi buffs can install *T*-9 *PRO*-1 to produce an excellent sound studio effect . + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NN instance))) + (, ,) + (PP-LOC (IN at) + (NP (NP (DT a) + (JJ recent) + (JJ international) + (NN furniture) + (NN show)) + (PP-LOC (IN in) + (NP (NNP Taipei))))) + (, ,) + (NP-SBJ (NNP King) + (POS 's)) + (VP (VBD exhibited) + (NP (NP (NML (NN sound) + (VBG insulating)) + (NNS panels)) + (VP (VBG containing) + (NP (NP (NN metal) + (NNS fibers)) + (, ,) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ-1 (NML (NN hi) + (HYPH -) + (NN fi)) + (NN buffs)) + (VP (MD can) + (VP (VB install) + (NP (-NONE- *T*-9)) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB produce) + (NP (DT an) + (JJ excellent) + (NML (NN sound) + (NN studio)) + (NN effect))))))))))))) + (. .))) + +Leaves: +------- + 0 For + 1 instance + 2 , + 3 at + 4 a + 5 recent + 6 international + 7 furniture + 8 show + sense: show-n.4 + 9 in + 10 Taipei + name: GPE 10-10 Taipei + 11 , + 12 King + coref: IDENT 77 12-13 King 's + name: ORG 12-13 King 's + 13 's + 14 exhibited + sense: exhibit-v.2 + prop: exhibit.01 + v * -> 14:0, exhibited + ARGM-DIS * -> 0:1, For instance + ARGM-LOC * -> 3:1, at a recent international furniture show in Taipei + ARG0 * -> 12:1, King 's + ARG1 * -> 15:3, sound insulating panels containing metal fibers , which hi - fi buffs can install + *T*-9 *PRO*-1 to produce an excellent sound studio effect + 15 sound + sense: sound-n.1 + 16 insulating + sense: insulate-v.1 + prop: insulate.01 + v * -> 16:0, insulating + ARG2 * -> 15:0, sound + ARG3 * -> 17:0, panels + 17 panels + sense: panel-n.4 + 18 containing + sense: contain-v.1 + prop: contain.01 + v * -> 18:0, containing + ARG0 * -> 15:2, sound insulating panels + ARG1 * -> 19:2, metal fibers , which hi - fi buffs can install *T*-9 *PRO*-1 to produce an excellent + sound studio effect + 19 metal + sense: metal-n.1 + 20 fibers + 21 , + 22 which + 23 hi + 24 - + 25 fi + 26 buffs + 27 can + 28 install + prop: install.01 + v * -> 28:0, install + ARG0 * -> 30:0, *PRO*-1 -> 23:2, hi - fi buffs + ARGM-MOD * -> 27:0, can + ARG1 * -> 29:0, *T*-9 -> 22:1, which + ARGM-PRP * -> 30:2, *PRO*-1 to produce an excellent sound studio effect + LINK-SLC * -> 15:2, sound insulating panels + * -> 29:0, *T*-9 -> 22:1, which + 29 *T*-9 + 30 *PRO*-1 + 31 to + 32 produce + sense: produce-v.1 + prop: produce.01 + v * -> 32:0, produce + ARG0 * -> 30:0, *PRO*-1 -> 23:2, hi - fi buffs + ARG1 * -> 33:1, an excellent sound studio effect + 33 an + 34 excellent + 35 sound + sense: sound-n.2 + 36 studio + 37 effect + sense: effect-n.2 + 38 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Cellphone cases of metal fabric can shield users from the electromagnetic radiation the phones produce ; and in the + clean rooms of silicon wafer fabs, where dust particles attracted by static electricity on clothing are the biggest + bugbear, there is a host of applications for anti-static fabrics, from workers ' clothing and footwear to trolleys, + conveyor belts and wall coverings. + +Treebanked sentence: +-------------------- + Cellphone cases of metal fabric can shield users from the electromagnetic radiation 0 the phones produce *T*-9 ; and in + the clean rooms of silicon wafer fabs , where dust particles attracted * by static electricity on clothing are the + biggest bugbear *T*-1 , there is a host of applications for anti-static fabrics , from workers ' clothing and footwear + to trolleys , conveyor belts and wall coverings . + +Tree: +----- + (TOP (S (S (NP-SBJ (NP (NN Cellphone) + (NNS cases)) + (PP (IN of) + (NP (NN metal) + (NN fabric)))) + (VP (MD can) + (VP (VB shield) + (NP (NNS users)) + (PP-CLR (IN from) + (NP (NP (DT the) + (JJ electromagnetic) + (NN radiation)) + (SBAR (WHNP-9 (-NONE- 0)) + (S (NP-SBJ (DT the) + (NNS phones)) + (VP (VBP produce) + (NP (-NONE- *T*-9)))))))))) + (, ;) + (CC and) + (S (PP-LOC (IN in) + (NP (NP (NP (DT the) + (JJ clean) + (NNS rooms)) + (PP (IN of) + (NP (NN silicon) + (NN wafer) + (NNS fabs)))) + (, ,) + (SBAR (WHADVP-1 (WRB where)) + (S (NP-SBJ (NP (NN dust) + (NNS particles)) + (VP (VBN attracted) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (NP (JJ static) + (NN electricity)) + (PP (IN on) + (NP (NN clothing))))))) + (VP (VBP are) + (NP-PRD (DT the) + (JJS biggest) + (NN bugbear)) + (ADVP-LOC (-NONE- *T*-1))))))) + (, ,) + (NP-SBJ (EX there)) + (VP (VBZ is) + (NP-PRD (NP (DT a) + (NN host)) + (PP (IN of) + (NP (NP (NNS applications)) + (PP (IN for) + (NP (JJ anti-static) + (NNS fabrics))))) + (, ,) + (PP (IN from) + (NP (NP (NNS workers) + (POS ')) + (NN clothing) + (CC and) + (NN footwear))) + (PP (IN to) + (NP (NP (NNS trolleys)) + (, ,) + (NP (NN conveyor) + (NNS belts)) + (CC and) + (NP (NN wall) + (NNS coverings))))))) + (. .))) + +Leaves: +------- + 0 Cellphone + 1 cases + sense: case-n.3 + 2 of + 3 metal + sense: metal-n.1 + 4 fabric + 5 can + 6 shield + sense: shield-v.1 + prop: shield.01 + v * -> 6:0, shield + ARG0 * -> 0:2, Cellphone cases of metal fabric + ARGM-MOD * -> 5:0, can + ARG1 * -> 7:1, users + ARG2 * -> 8:1, from the electromagnetic radiation 0 the phones produce *T*-9 + 7 users + 8 from + 9 the + 10 electromagnetic + 11 radiation + 12 0 + 13 the + 14 phones + sense: phone-n.2 + 15 produce + sense: produce-v.1 + prop: produce.01 + v * -> 15:0, produce + ARG0 * -> 13:1, the phones + ARG1 * -> 16:0, *T*-9 -> 12:0, 0 + LINK-SLC * -> 9:1, the electromagnetic radiation + * -> 16:0, *T*-9 -> 12:0, 0 + 16 *T*-9 + 17 ; + 18 and + 19 in + 20 the + 21 clean + 22 rooms + sense: room-n.1 + 23 of + 24 silicon + 25 wafer + 26 fabs + 27 , + 28 where + 29 dust + 30 particles + 31 attracted + sense: attract-v.2 + prop: attract.01 + v * -> 31:0, attracted + ARG1 * -> 32:0, * + ARG0 * -> 33:1, by static electricity on clothing + LINK-PCR * -> 29:1, dust particles + * -> 32:0, * + 32 * + 33 by + 34 static + 35 electricity + 36 on + 37 clothing + 38 are + sense: be-v.2 + prop: be.01 + v * -> 38:0, are + ARG1 * -> 29:2, dust particles attracted * by static electricity on clothing + ARG2 * -> 39:1, the biggest bugbear + ARGM-LOC * -> 42:0, *T*-1 -> 28:1, where + 39 the + 40 biggest + 41 bugbear + 42 *T*-1 + 43 , + 44 there + 45 is + sense: be-v.3 + prop: be.02 + v * -> 45:0, is + ARGM-LOC * -> 19:1, in the clean rooms of silicon wafer fabs , where dust particles attracted * by static + electricity on clothing are the biggest bugbear *T*-1 + ARG1 * -> 46:2, a host of applications for anti-static fabrics , from workers ' clothing and footwear + to trolleys , conveyor belts and wall coverings + 46 a + 47 host + sense: host-n.2 + 48 of + 49 applications + 50 for + 51 anti-static + 52 fabrics + 53 , + 54 from + 55 workers + sense: worker-n.2 + 56 ' + 57 clothing + 58 and + 59 footwear + 60 to + 61 trolleys + 62 , + 63 conveyor + sense: conveyor-n.2 + 64 belts + 65 and + 66 wall + 67 coverings + 68 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Rocky Chang says that before King's started producing metal fibers, the market was divided up between a few foreign + companies which charged high prices and produced only small quantities of products. + +Treebanked sentence: +-------------------- + Rocky Chang says that before King 's started *-9 producing metal fibers , the market was divided *-1 up between a few + foreign companies which *T*-2 charged high prices and produced only small quantities of products . + +Tree: +----- + (TOP (S (NP-SBJ (NNP Rocky) + (NNP Chang)) + (VP (VBZ says) + (SBAR (IN that) + (S (SBAR-TMP (IN before) + (S (NP-SBJ-9 (NNP King) + (POS 's)) + (VP (VBD started) + (S (NP-SBJ (-NONE- *-9)) + (VP (VBG producing) + (NP (NN metal) + (NNS fibers))))))) + (, ,) + (NP-SBJ-1 (DT the) + (NN market)) + (VP (VBD was) + (VP (VBN divided) + (NP (-NONE- *-1)) + (PRT (RP up)) + (PP (IN between) + (NP (NP (DT a) + (JJ few) + (JJ foreign) + (NNS companies)) + (SBAR (WHNP-2 (WDT which)) + (S (NP-SBJ (-NONE- *T*-2)) + (VP (VP (VBD charged) + (NP (JJ high) + (NNS prices))) + (CC and) + (VP (VBD produced) + (NP (NP (RB only) + (JJ small) + (NNS quantities)) + (PP (IN of) + (NP (NNS products))))))))))))))) + (. .))) + +Leaves: +------- + 0 Rocky + coref: IDENT 87 0-1 Rocky Chang + name: PERSON 0-1 Rocky Chang + 1 Chang + 2 says + sense: say-v.1 + prop: say.01 + v * -> 2:0, says + ARG0 * -> 0:1, Rocky Chang + ARG1 * -> 3:1, that before King 's started *-9 producing metal fibers , the market was divided *-1 up + between a few foreign companies which *T*-2 charged high prices and produced only + small quantities of products + 3 that + 4 before + 5 King + coref: IDENT 77 5-6 King 's + name: ORG 5-6 King 's + 6 's + 7 started + sense: start-v.2 + prop: start.01 + v * -> 7:0, started + ARG0 * -> 5:1, King 's + ARG1 * -> 8:2, *-9 producing metal fibers + 8 *-9 + 9 producing + sense: produce-v.1 + prop: produce.01 + v * -> 9:0, producing + ARG0 * -> 8:0, *-9 -> 5:1, King 's + ARG1 * -> 10:1, metal fibers + 10 metal + sense: metal-n.1 + 11 fibers + 12 , + 13 the + 14 market + sense: market-n.1 + 15 was + prop: be.03 + v * -> 15:0, was + 16 divided + sense: divide-v.1 + prop: divide.02 + v * -> 16:0, divided + -> 18:1, up + ARGM-TMP * -> 4:1, before King 's started *-9 producing metal fibers + ARG1 * -> 17:0, *-1 -> 13:1, the market + ARG2 * -> 19:1, between a few foreign companies which *T*-2 charged high prices and produced only + small quantities of products + 17 *-1 + 18 up + 19 between + 20 a + 21 few + 22 foreign + 23 companies + sense: company-n.1 + 24 which + 25 *T*-2 + 26 charged + sense: charge-v.1 + prop: charge.01 + v * -> 26:0, charged + ARG0 * -> 25:0, *T*-2 -> 24:1, which + ARG1 * -> 27:1, high prices + LINK-SLC * -> 20:1, a few foreign companies + * -> 25:0, *T*-2 -> 24:1, which + 27 high + 28 prices + sense: price-n.1 + 29 and + 30 produced + sense: produce-v.1 + prop: produce.01 + v * -> 30:0, produced + ARG0 * -> 25:0, *T*-2 -> 24:1, which + ARG1 * -> 31:2, only small quantities of products + LINK-SLC * -> 20:1, a few foreign companies + * -> 25:0, *T*-2 -> 24:1, which + 31 only + 32 small + 33 quantities + 34 of + 35 products + sense: product-n.1 + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Furthermore, when Taiwanese users had difficulties with production they did not know who to turn to for help. + +Treebanked sentence: +-------------------- + Furthermore , when Taiwanese users had difficulties with production *T*-9 they did not know who *PRO* to turn to *T*-1 + for help . + +Tree: +----- + (TOP (S (ADVP (RB Furthermore)) + (, ,) + (SBAR-TMP (WHADVP-9 (WRB when)) + (S (NP-SBJ (JJ Taiwanese) + (NNS users)) + (VP (VBD had) + (NP (NP (NNS difficulties)) + (PP (IN with) + (NP (NN production)))) + (ADVP-TMP (-NONE- *T*-9))))) + (NP-SBJ (PRP they)) + (VP (VBD did) + (RB not) + (VP (VB know) + (SBAR (WHNP-1 (WP who)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB turn) + (PP-CLR (IN to) + (NP (-NONE- *T*-1))) + (PP-PRP (IN for) + (NP (NN help))))))))) + (. .))) + +Leaves: +------- + 0 Furthermore + 1 , + 2 when + 3 Taiwanese + coref: IDENT 231 3-4 Taiwanese users + name: NORP 3-3 Taiwanese + 4 users + 5 had + sense: have-v.4 + prop: have.03 + v * -> 5:0, had + ARG0 * -> 3:1, Taiwanese users + ARG1 * -> 6:2, difficulties with production + ARGM-TMP * -> 9:0, *T*-9 -> 2:1, when + 6 difficulties + sense: difficulty-n.2 + 7 with + 8 production + sense: production-n.6 + prop: production.01 + n * -> 8:0, production + 9 *T*-9 + 10 they + coref: IDENT 231 10-10 they + 11 did + prop: do.01 + v * -> 11:0, did + 12 not + 13 know + sense: know-v.1 + prop: know.01 + v * -> 13:0, know + ARGM-DIS * -> 0:1, Furthermore + ARGM-TMP * -> 2:2, when Taiwanese users had difficulties with production *T*-9 + ARG0 * -> 10:1, they + ARGM-NEG * -> 12:0, not + ARG1 * -> 14:2, who *PRO* to turn to *T*-1 for help + 14 who + 15 *PRO* + 16 to + 17 turn + sense: turn-v.1 + prop: turn.01 + v * -> 17:0, turn + ARG0 * -> 15:0, *PRO* + ARGM-DIR * -> 18:1, to *T*-1 + ARGM-PRP * -> 20:1, for help + 18 to + 19 *T*-1 + 20 for + 21 help + sense: help-n.1 + prop: help.01 + n * -> 21:0, help + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Looking into the future, Chang hopes that as a key material, stainless steel fiber can have a " locomotive " effect, + encouraging various industries in Taiwan to develop a range of different products. + +Treebanked sentence: +-------------------- + *PRO*-9 Looking into the future , Chang hopes that as a key material , stainless steel fiber can have a " locomotive " + effect , *PRO* encouraging various industries in Taiwan *PRO*-1 to develop a range of different products . + +Tree: +----- + (TOP (S (S-ADV (NP-SBJ (-NONE- *PRO*-9)) + (VP (VBG Looking) + (PP (IN into) + (NP (DT the) + (NN future))))) + (, ,) + (NP-SBJ-9 (NNP Chang)) + (VP (VBZ hopes) + (SBAR (IN that) + (S (PP (IN as) + (NP (DT a) + (NN key) + (NN material))) + (, ,) + (NP-SBJ (NML (JJ stainless) + (NN steel)) + (NN fiber)) + (VP (MD can) + (VP (VB have) + (NP (DT a) + (`` ") + (JJ locomotive) + ('' ") + (NN effect)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*)) + (VP (VBG encouraging) + (NP-1 (NP (JJ various) + (NNS industries)) + (PP-LOC (IN in) + (NP (NNP Taiwan)))) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB develop) + (NP (NP (DT a) + (NN range)) + (PP (IN of) + (NP (JJ different) + (NNS products)))))))))))))) + (. .))) + +Leaves: +------- + 0 *PRO*-9 + 1 Looking + sense: look-v.1 + prop: look.01 + v * -> 1:0, Looking + ARG0 * -> 0:0, *PRO*-9 -> 6:1, Chang + ARG1 * -> 2:1, into the future + 2 into + 3 the + 4 future + sense: future-n.1 + 5 , + 6 Chang + coref: IDENT 87 6-6 Chang + name: PERSON 6-6 Chang + 7 hopes + sense: hope-v.1 + prop: hope.01 + v * -> 7:0, hopes + ARGM-PRD * -> 0:2, *PRO*-9 Looking into the future + ARG0 * -> 0:0, *PRO*-9 -> 6:1, Chang + ARG1 * -> 8:1, that as a key material , stainless steel fiber can have a " locomotive " effect , + *PRO* encouraging various industries in Taiwan *PRO*-1 to develop a range of different + products + 8 that + 9 as + 10 a + 11 key + 12 material + sense: material-n.2 + 13 , + 14 stainless + 15 steel + sense: steel-n.1 + 16 fiber + 17 can + 18 have + sense: have-v.6 + 19 a + 20 " + 21 locomotive + 22 " + 23 effect + sense: effect-n.1 + 24 , + 25 *PRO* + 26 encouraging + sense: encourage-v.1 + prop: encourage.01 + v * -> 26:0, encouraging + ARG0 * -> 25:0, *PRO* + ARG1 * -> 31:0, *PRO*-1 -> 27:2, various industries in Taiwan + ARG2 * -> 31:2, *PRO*-1 to develop a range of different products + LINK-PCR * -> 14:2, stainless steel fiber + * -> 25:0, *PRO* + 27 various + 28 industries + sense: industry-n.1 + 29 in + 30 Taiwan + coref: IDENT 121 30-30 Taiwan + name: GPE 30-30 Taiwan + 31 *PRO*-1 + 32 to + 33 develop + sense: develop-v.1 + prop: develop.02 + v * -> 33:0, develop + ARG0 * -> 31:0, *PRO*-1 -> 27:2, various industries in Taiwan + ARG1 * -> 34:2, a range of different products + 34 a + 35 range + sense: range-n.6 + 36 of + 37 different + 38 products + sense: product-n.1 + 39 . + + +======================================================================================================================== +Coreference chains for section 7: +--------------------------------- + + Chain 0 (IDENT) + 144.0-0 Geotextiles + 145.1-1 these + 146.1-1 they + + Chain 10 (APPOS) + ATTRIB 147.10-14 three main fields of application + HEAD 147.16-20 apparel , furnishings and industrial + + Chain 40 (IDENT) + 150.1-2 the CTI + 150.10-10 its + 158.26-27 the CTI + + Chain 47 (IDENT) + 150.16-16 firms + 150.20-20 their + + Chain 49 (IDENT) + 150.23-24 industrial textiles + 151.12-13 this area + + Chain 63 (IDENT) + 153.15-36 many metal - clad buildings which *T*-9 house a variety of factories producing such products + as plastics , furniture and electronic components + 154.1-1 them + + Chain 78 (APPOS) + HEAD 154.4-9 King 's Metal Fiber Technologies Company + ATTRIB 154.11-22 the only firm in Taiwan which *T*-9 draws fibers from stainless steel + + Chain 77 (IDENT) + 154.4-22 King 's Metal Fiber Technologies Company , the only firm in Taiwan which *T*-9 draws fibers + from stainless steel + 155.0-1 King 's + 159.5-6 King 's + 159.32-32 its + 159.35-35 it + 161.12-13 King 's + 163.5-6 King 's + + Chain 121 (IDENT) + 154.15-15 Taiwan + 158.20-20 Taiwan + 165.30-30 Taiwan + + Chain 87 (IDENT) + 155.0-4 King 's president Rocky Chang + 156.7-7 he + 156.13-13 he + 157.1-1 he + 158.1-1 he + 158.17-17 he + 160.17-17 Chang + 163.0-1 Rocky Chang + 165.6-6 Chang + + Chain 90 (APPOS) + ATTRIB 155.0-2 King 's president + HEAD 155.3-4 Rocky Chang + + Chain 97 (IDENT) + 156.11-11 Australia + 158.14-14 Australia + + Chain 144 (IDENT) + 160.2-15 the silver - gray ringlets which *T*-1 are twice as fine as human hair + 160.20-29 these soft , flexible fibers of high - grade steel + + Chain 160 (IDENT) + 160.52-53 metals ' + 160.65-65 their + 160.78-78 they + + Chain 231 (IDENT) + 164.3-4 Taiwanese users + 164.10-10 they + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Time to get weaving + +Treebanked sentence: +-------------------- + Time 0 *PRO* to get *PRO* weaving *T*-1 + +Tree: +----- + (TOP (NP (NP (NN Time)) + (SBAR (WHADVP-1 (-NONE- 0)) + (S (NP-SBJ-9 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB get) + (S (NP-SBJ-9 (-NONE- *PRO*)) + (VP (VBG weaving))) + (ADVP-TMP (-NONE- *T*-1)))))))) + +Leaves: +------- + 0 Time + sense: time-n.3 + 1 0 + 2 *PRO* + 3 to + 4 get + sense: get-v.3 + prop: get.04 + v * -> 4:0, get + ARG0 * -> 2:0, *PRO* + ARG1 * -> 5:2, *PRO* weaving + ARGM-TMP * -> 1:0, 0 + LINK-SLC * -> 0:1, Time + * -> 1:0, 0 + 5 *PRO* + 6 weaving + sense: weave-v.2 + prop: weave.01 + v * -> 6:0, weaving + ARG0 * -> 5:0, *PRO* + 7 *T*-1 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Developing industrial textiles requires an understanding of different industries ' needs, and also requires new channels + of distribution. + +Treebanked sentence: +-------------------- + *PRO* Developing industrial textiles requires an understanding of different industries ' needs , and also requires new + channels of distribution . + +Tree: +----- + (TOP (S (S-NOM-SBJ (NP-SBJ (-NONE- *PRO*)) + (VP (VBG Developing) + (NP (JJ industrial) + (NNS textiles)))) + (VP (VP (VBZ requires) + (NP (NP (DT an) + (NN understanding)) + (PP (IN of) + (NP (NP (JJ different) + (NNS industries) + (POS ')) + (NNS needs))))) + (, ,) + (CC and) + (VP (ADVP (RB also)) + (VBZ requires) + (NP (NP (JJ new) + (NNS channels)) + (PP (IN of) + (NP (NN distribution)))))) + (. .))) + +Leaves: +------- + 0 *PRO* + 1 Developing + prop: develop.02 + v * -> 1:0, Developing + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:1, industrial textiles + 2 industrial + 3 textiles + 4 requires + sense: require-v.1 + prop: require.01 + v * -> 4:0, requires + ARG0 * -> 0:2, *PRO* Developing industrial textiles + ARG1 * -> 5:2, an understanding of different industries ' needs + 5 an + 6 understanding + sense: understanding-n.1 + 7 of + 8 different + 9 industries + sense: industry-n.1 + 10 ' + 11 needs + sense: need-n.1 + prop: need.01 + n * -> 11:0, needs + ARG0 * -> 8:1, different industries ' + 12 , + 13 and + 14 also + 15 requires + sense: require-v.1 + prop: require.01 + v * -> 15:0, requires + ARG0 * -> 0:2, *PRO* Developing industrial textiles + ARGM-ADV * -> 14:1, also + ARG1 * -> 16:2, new channels of distribution + 16 new + 17 channels + sense: channel-n.1 + 18 of + 19 distribution + sense: distribution-n.1 + prop: distribution.01 + n * -> 19:0, distribution + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For instance, cellphone cases have to be sold through electronic goods shops, while car airbags have to be sold into + automotive distribution channels. + +Treebanked sentence: +-------------------- + For instance , cellphone cases have *-9 to be sold *-9 through electronic goods shops , while car airbags have *-1 to be + sold *-1 into automotive distribution channels . + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NN instance))) + (, ,) + (NP-SBJ-9 (NN cellphone) + (NNS cases)) + (VP (VBP have) + (S (NP-SBJ (-NONE- *-9)) + (VP (TO to) + (VP (VB be) + (VP (VBN sold) + (NP (-NONE- *-9)) + (PP (IN through) + (NP (NML (JJ electronic) + (NNS goods)) + (NNS shops))))))) + (, ,) + (SBAR-ADV (IN while) + (S (NP-SBJ-1 (NN car) + (NNS airbags)) + (VP (VBP have) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB be) + (VP (VBN sold) + (NP (-NONE- *-1)) + (PP (IN into) + (NP (JJ automotive) + (NN distribution) + (NNS channels))))))))))) + (. .))) + +Leaves: +------- + 0 For + 1 instance + 2 , + 3 cellphone + 4 cases + sense: case-n.3 + 5 have + sense: have-v.12 + prop: have.02 + v * -> 5:0, have + 6 *-9 + 7 to + 8 be + prop: be.03 + v * -> 8:0, be + 9 sold + prop: sell.01 + v * -> 9:0, sold + ARG1 * -> 10:0, *-9 -> 3:1, cellphone cases + ARGM-MNR * -> 11:1, through electronic goods shops + LINK-PCR * -> 10:0, *-9 -> 3:1, cellphone cases + * -> 10:0, *-9 -> 3:1, cellphone cases + 10 *-9 + 11 through + 12 electronic + 13 goods + 14 shops + sense: shop-n.1 + 15 , + 16 while + 17 car + sense: car-n.2 + 18 airbags + 19 have + sense: have-v.12 + prop: have.02 + v * -> 19:0, have + 20 *-1 + 21 to + 22 be + prop: be.03 + v * -> 22:0, be + 23 sold + prop: sell.01 + v * -> 23:0, sold + ARG1 * -> 24:0, *-1 -> 17:1, car airbags + ARG2 * -> 25:1, into automotive distribution channels + 24 *-1 + 25 into + 26 automotive + 27 distribution + sense: distribution-n.1 + 28 channels + sense: channel-n.1 + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + For entrepreneurs who have previously only sold into the clothing trade, this is a challenge. + +Treebanked sentence: +-------------------- + For entrepreneurs who *T*-9 have previously only sold into the clothing trade , this is a challenge . + +Tree: +----- + (TOP (S (PP (IN For) + (NP (NP (NNS entrepreneurs)) + (SBAR (WHNP-9 (WP who)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBP have) + (ADVP (RB previously)) + (ADVP (RB only)) + (VP (VBN sold) + (PP (IN into) + (NP (DT the) + (JJ clothing) + (NN trade))))))))) + (, ,) + (NP-SBJ (DT this)) + (VP (VBZ is) + (NP-PRD (DT a) + (NN challenge))) + (. .))) + +Leaves: +------- + 0 For + 1 entrepreneurs + 2 who + 3 *T*-9 + 4 have + prop: have.01 + v * -> 4:0, have + 5 previously + 6 only + 7 sold + sense: sell-v.1 + prop: sell.01 + v * -> 7:0, sold + ARG0 * -> 3:0, *T*-9 -> 2:1, who + ARGM-ADV * -> 5:1, previously + ARGM-ADV * -> 6:1, only + ARG2 * -> 8:1, into the clothing trade + LINK-SLC * -> 1:1, entrepreneurs + * -> 3:0, *T*-9 -> 2:1, who + 8 into + 9 the + 10 clothing + 11 trade + sense: trade-n.1 + prop: trade.01 + n * -> 11:0, trade + ARG1 * -> 10:0, clothing + 12 , + 13 this + 14 is + sense: be-v.1 + prop: be.01 + v * -> 14:0, is + ARGM-ADV * -> 0:1, For entrepreneurs who *T*-9 have previously only sold into the clothing trade + ARG1 * -> 13:1, this + ARG2 * -> 15:1, a challenge + 15 a + 16 challenge + sense: challenge-n.1 + prop: challenge.01 + n * -> 16:0, challenge + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + How to promote " cross-industry cooperation, " and get people in the textile industry to look beyond their own + industry's boundaries and become effective partners for the electronics, construction, medical supplies and other + industries is the next task for the CTI to tackle. + +Treebanked sentence: +-------------------- + How *PRO* to promote " cross-industry cooperation , " and get people in the textile industry to look beyond their own + industry 's boundaries and become effective partners for the electronics , construction , medical supplies and other + industries *T*-2 is the next task 0 for the CTI to tackle *T*-1 . + +Tree: +----- + (TOP (S (SBAR-NOM-SBJ (WHADVP-2 (WRB How)) + (S (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VP (VB promote) + (`` ") + (NP (JJ cross-industry) + (NN cooperation))) + (, ,) + ('' ") + (CC and) + (VP (VB get) + (S (NP-SBJ (NP (NNS people)) + (PP (IN in) + (NP (DT the) + (NN textile) + (NN industry)))) + (VP (TO to) + (VP (VP (VB look) + (PP (IN beyond) + (NP (NP (PRP$ their) + (JJ own) + (NN industry) + (POS 's)) + (NNS boundaries)))) + (CC and) + (VP (VB become) + (NP-PRD (NP (JJ effective) + (NNS partners)) + (PP (IN for) + (NP (DT the) + (UCP (NML (NNS electronics)) + (, ,) + (NML (NN construction)) + (, ,) + (NML (JJ medical) + (NNS supplies)) + (CC and) + (ADJP (JJ other))) + (NNS industries))))))))) + (ADVP (-NONE- *T*-2)))))) + (VP (VBZ is) + (NP-PRD (NP (DT the) + (JJ next) + (NN task)) + (SBAR (WHNP-1 (-NONE- 0)) + (IN for) + (S (NP-SBJ (DT the) + (NNP CTI)) + (VP (TO to) + (VP (VB tackle) + (NP (-NONE- *T*-1)))))))) + (. .))) + +Leaves: +------- + 0 How + 1 *PRO* + 2 to + 3 promote + sense: promote-v.1 + prop: promote.02 + v * -> 3:0, promote + ARG0 * -> 1:0, *PRO* + ARG1 * -> 5:1, cross-industry cooperation + ARGM-MNR * -> 39:0, *T*-2 -> 0:1, How + 4 " + 5 cross-industry + 6 cooperation + sense: cooperation-n.2 + 7 , + 8 " + 9 and + 10 get + sense: get-v.1 + prop: get.04 + v * -> 10:0, get + ARG0 * -> 1:0, *PRO* + ARG1 * -> 11:3, people in the textile industry to look beyond their own industry 's boundaries and + become effective partners for the electronics , construction , medical supplies and + other industries + ARGM-MNR * -> 39:0, *T*-2 -> 0:1, How + 11 people + sense: people-n.1 + coref: IDENT 30 11-15 people in the textile industry + 12 in + 13 the + coref: IDENT ectb_1003.part-008-E1 13-15 the textile industry + 14 textile + 15 industry + 16 to + 17 look + sense: look-v.1 + prop: look.01 + v * -> 17:0, look + ARG0 * -> 11:2, people in the textile industry + ARGM-DIR * -> 18:1, beyond their own industry 's boundaries + 18 beyond + 19 their + coref: IDENT 30 19-19 their + coref: IDENT ectb_1003.part-008-E1 19-22 their own industry 's + 20 own + 21 industry + sense: industry-n.1 + 22 's + 23 boundaries + sense: boundary-n.1 + 24 and + 25 become + sense: become-v.1 + prop: become.01 + v * -> 25:0, become + ARG1 * -> 11:2, people in the textile industry + ARG2 * -> 26:2, effective partners for the electronics , construction , medical supplies and other + industries + 26 effective + 27 partners + sense: partner-n.3 + 28 for + 29 the + 30 electronics + 31 , + 32 construction + sense: construction-n.2 + 33 , + 34 medical + 35 supplies + 36 and + 37 other + 38 industries + sense: industry-n.1 + 39 *T*-2 + 40 is + sense: be-v.2 + prop: be.01 + v * -> 40:0, is + ARG1 * -> 0:2, How *PRO* to promote " cross-industry cooperation , " and get people in the textile + industry to look beyond their own industry 's boundaries and become effective partners + for the electronics , construction , medical supplies and other industries *T*-2 + ARG2 * -> 41:2, the next task 0 for the CTI to tackle *T*-1 + 41 the + 42 next + 43 task + sense: task-n.1 + 44 0 + 45 for + 46 the + coref: IDENT 40 46-47 the CTI + 47 CTI + name: ORG 47-47 CTI + 48 to + 49 tackle + sense: tackle-v.1 + prop: tackle.01 + v * -> 49:0, tackle + ARG0 * -> 46:1, the CTI + ARG1 * -> 50:0, *T*-1 -> 44:0, 0 + LINK-SLC * -> 41:1, the next task + * -> 50:0, *T*-1 -> 44:0, 0 + 50 *T*-1 + 51 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + As CTI president Yao Hsing-chuan observes, what has enabled Taiwan's textile industry to survive through the ups and + downs of its history is the highly motivated attitude of its entrepreneurs. + +Treebanked sentence: +-------------------- + As CTI president Yao Hsing - chuan observes , what *T*-9 has enabled Taiwan 's textile industry *PRO*-1 to survive + through the ups and downs of its history is the highly motivated attitude of its entrepreneurs . + +Tree: +----- + (TOP (S (SBAR-ADV (IN As) + (S (NP-SBJ (NML (NNP CTI) + (NN president)) + (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan)) + (VP (VBZ observes)))) + (, ,) + (SBAR-NOM-SBJ (WHNP-9 (WP what)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ has) + (VP (VBN enabled) + (NP-1 (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry)) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB survive) + (PP (IN through) + (NP (NP (DT the) + (NNS ups) + (CC and) + (NNS downs)) + (PP (IN of) + (NP (PRP$ its) + (NN history)))))))))))) + (VP (VBZ is) + (NP-PRD (NP (DT the) + (ADJP (RB highly) + (JJ motivated)) + (NN attitude)) + (PP (IN of) + (NP (PRP$ its) + (NNS entrepreneurs))))) + (. .))) + +Leaves: +------- + 0 As + 1 CTI + coref: IDENT 40 1-1 CTI + name: ORG 1-1 CTI + 2 president + sense: president-n.1 + 3 Yao + ! name: PERSON 3-6 Yao Hsing - chuan + 4 Hsing + 5 - + 6 chuan + 7 observes + sense: observe-v.4 + prop: observe.02 + v * -> 7:0, observes + ARG0 * -> 1:2, CTI president Yao Hsing - chuan + 8 , + 9 what + 10 *T*-9 + 11 has + prop: have.01 + v * -> 11:0, has + 12 enabled + sense: enable-v.1 + prop: enable.01 + v * -> 12:0, enabled + ARG0 * -> 10:0, *T*-9 -> 9:1, what + ARG2 * -> 13:2, Taiwan 's textile industry + ARG1 * -> 17:2, *PRO*-1 to survive through the ups and downs of its history + 13 Taiwan + coref: IDENT 32 13-16 Taiwan 's textile industry + name: GPE 13-13 Taiwan + 14 's + 15 textile + 16 industry + 17 *PRO*-1 + 18 to + 19 survive + sense: survive-v.1 + prop: survive.01 + v * -> 19:0, survive + ARG0 * -> 17:0, *PRO*-1 -> 13:2, Taiwan 's textile industry + ARG1 * -> 20:1, through the ups and downs of its history + 20 through + 21 the + 22 ups + 23 and + 24 downs + 25 of + 26 its + coref: IDENT 32 26-26 its + 27 history + sense: history-n.1 + 28 is + sense: be-v.2 + prop: be.01 + v * -> 28:0, is + ARGM-ADV * -> 0:1, As CTI president Yao Hsing - chuan observes + ARG1 * -> 9:2, what *T*-9 has enabled Taiwan 's textile industry *PRO*-1 to survive through the ups + and downs of its history + ARG2 * -> 29:2, the highly motivated attitude of its entrepreneurs + 29 the + coref: IDENT 49 29-35 the highly motivated attitude of its entrepreneurs + 30 highly + 31 motivated + 32 attitude + sense: attitude-n.1 + 33 of + 34 its + coref: IDENT 32 34-34 its + 35 entrepreneurs + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It is this ambition which is the best guarantee of the industry creating a second spring. + +Treebanked sentence: +-------------------- + It is this ambition which *T*-9 is the best guarantee of the industry creating a second spring . + +Tree: +----- + (TOP (S-CLF (NP-SBJ (PRP It)) + (VP (VBZ is) + (NP-PRD (DT this) + (NN ambition)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ is) + (NP-PRD (NP (DT the) + (JJS best) + (NN guarantee)) + (PP (IN of) + (S-NOM (NP-SBJ (DT the) + (NN industry)) + (VP (VBG creating) + (NP (DT a) + (JJ second) + (NN spring)))))))))) + (. .))) + +Leaves: +------- + 0 It + 1 is + sense: be-v.1 + prop: be.01 + v * -> 1:0, is + ARG2 * -> 2:1, this ambition + ARG1 * -> 4:2, which *T*-9 is the best guarantee of the industry creating a second spring + 2 this + coref: IDENT 49 2-3 this ambition + 3 ambition + sense: ambition-n.2 + 4 which + 5 *T*-9 + 6 is + sense: be-v.2 + prop: be.01 + v * -> 6:0, is + ARG1 * -> 5:0, *T*-9 -> 4:1, which + ARG2 * -> 7:2, the best guarantee of the industry creating a second spring + LINK-SLC * -> 2:1, this ambition + * -> 5:0, *T*-9 -> 4:1, which + 7 the + 8 best + 9 guarantee + sense: guarantee-n.4 + prop: guarantee.01 + n * -> 9:0, guarantee + ARGM-ADJ * -> 8:0, best + ARG1 * -> 10:1, of the industry creating a second spring + 10 of + 11 the + coref: IDENT 32 11-12 the industry + 12 industry + sense: industry-n.1 + 13 creating + sense: create-v.1 + prop: create.01 + v * -> 13:0, creating + ARG0 * -> 11:1, the industry + ARG1 * -> 14:1, a second spring + 14 a + 15 second + name: ORDINAL 15-15 second + 16 spring + sense: spring-n.4 + prop: spring.01 + n * -> 16:0, spring + ARGM-TMP * -> 15:0, second + name: DATE 16-16 spring + 17 . + + +======================================================================================================================== +Coreference chains for section 8: +--------------------------------- + + Chain 30 (IDENT) + 170.11-15 people in the textile industry + 170.19-19 their + + Chain ectb_1003.part-008-E1 (IDENT) + 170.13-15 the textile industry + 170.19-22 their own industry 's + + Chain 40 (IDENT) + 170.46-47 the CTI + 171.1-1 CTI + + Chain 32 (IDENT) + 171.13-16 Taiwan 's textile industry + 171.26-26 its + 171.34-34 its + 172.11-12 the industry + + Chain 49 (IDENT) + 171.29-35 the highly motivated attitude of its entrepreneurs + 172.2-3 this ambition + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 30 + +Treebanked sentence: +-------------------- + p. 30 + +Tree: +----- + (TOP (NP (NN p.) + (CD 30))) + +Leaves: +------- + 0 p. + 1 30 + name: CARDINAL 1-1 30 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + An unusual fashion show at the China Textile Institute's 40th anniversary celebration : the focus is not on showing + fashionable new styles, but on introducing the latest fruits of textile product development in the ROC. + +Treebanked sentence: +-------------------- + An unusual fashion show at the China Textile Institute 's 40th anniversary celebration : the focus is not on *PRO* + showing fashionable new styles , but *NOT* on *PRO* introducing the latest fruits of textile product development in the + ROC . + +Tree: +----- + (TOP (FRAG (NP (NP (DT An) + (JJ unusual) + (NN fashion) + (NN show)) + (PP-LOC (IN at) + (NP (NP (DT the) + (NNP China) + (NNP Textile) + (NNP Institute) + (POS 's)) + (JJ 40th) + (NN anniversary) + (NN celebration)))) + (: :) + (S (NP-SBJ (DT the) + (NN focus)) + (VP (VP (VBZ is) + (ADVP-3 (RB not)) + (PP-PRD-2 (IN on) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG showing) + (NP (JJ fashionable) + (JJ new) + (NNS styles)))))) + (, ,) + (CC but) + (VP (ADVP=3 (-NONE- *NOT*)) + (PP-PRD=2 (IN on) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG introducing) + (NP (NP (DT the) + (JJS latest) + (NNS fruits)) + (PP (IN of) + (NP (NP (NN textile) + (NN product) + (NN development)) + (PP-LOC (IN in) + (NP (DT the) + (NNP ROC)))))))))))) + (. .))) + +Leaves: +------- + 0 An + 1 unusual + 2 fashion + 3 show + 4 at + 5 the + coref: IDENT 40 5-9 the China Textile Institute 's + name: ORG 5-9 the China Textile Institute 's + 6 China + 7 Textile + 8 Institute + 9 's + 10 40th + ! name: DATE 10-11 40th anniversary + 11 anniversary + 12 celebration + sense: celebration-n.1 + prop: celebration.01 + n * -> 12:0, celebration + ARG0 * -> 5:1, the China Textile Institute 's + ARGM-TMP * -> 10:0, 40th + ARG1 * -> 11:0, anniversary + 13 : + 14 the + 15 focus + sense: focus-n.1 + 16 is + sense: be-v.1 + prop: be.01 + v * -> 16:0, is + ARG1 * -> 14:1, the focus + ARGM-NEG * -> 17:1, not + ARG2 * -> 18:1, on *PRO* showing fashionable new styles + 17 not + 18 on + 19 *PRO* + 20 showing + sense: show-v.1 + prop: show.01 + v * -> 20:0, showing + ARG0 * -> 19:0, *PRO* + ARG1 * -> 21:1, fashionable new styles + 21 fashionable + 22 new + 23 styles + sense: style-n.4 + 24 , + 25 but + 26 *NOT* + 27 on + 28 *PRO* + 29 introducing + sense: introduce-v.2 + prop: introduce.02 + v * -> 29:0, introducing + ARG0 * -> 28:0, *PRO* + ARG1 * -> 30:2, the latest fruits of textile product development in the ROC + 30 the + 31 latest + 32 fruits + 33 of + 34 textile + 35 product + sense: product-n.1 + 36 development + 37 in + 38 the + coref: IDENT 13 38-39 the ROC + 39 ROC + 40 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The stainless steel fibers in the fabrics worn by these models have potential applications not only in avant-garde + fashions, but also in industrial conveyor belts and even space suits. + +Treebanked sentence: +-------------------- + The stainless steel fibers in the fabrics worn * by these models have potential applications not only in avant - garde + fashions , but also in industrial conveyor belts and even space suits . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NML (JJ stainless) + (NN steel)) + (NNS fibers)) + (PP-LOC (IN in) + (NP (NP (DT the) + (NNS fabrics)) + (VP (VBN worn) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (DT these) + (NNS models))))))) + (VP (VBP have) + (NP (NP (JJ potential) + (NNS applications)) + (PP (CONJP (RB not) + (RB only)) + (PP (IN in) + (NP (ADJP (JJ avant) + (HYPH -) + (JJ garde)) + (NNS fashions))) + (, ,) + (CONJP (CC but) + (RB also)) + (PP (IN in) + (NP (NP (JJ industrial) + (NN conveyor) + (NNS belts)) + (CC and) + (NP (RB even) + (NN space) + (NNS suits))))))) + (. .))) + +Leaves: +------- + 0 The + 1 stainless + 2 steel + sense: steel-n.1 + 3 fibers + 4 in + 5 the + 6 fabrics + 7 worn + sense: wear-v.1 + prop: wear.01 + v * -> 7:0, worn + ARG1 * -> 8:0, * + ARG0 * -> 9:1, by these models + LINK-PCR * -> 5:1, the fabrics + * -> 8:0, * + 8 * + 9 by + 10 these + 11 models + sense: model-n.3 + 12 have + sense: have-v.2 + prop: have.03 + v * -> 12:0, have + ARG0 * -> 0:2, The stainless steel fibers in the fabrics worn * by these models + ARG1 * -> 13:2, potential applications not only in avant - garde fashions , but also in industrial + conveyor belts and even space suits + 13 potential + 14 applications + 15 not + 16 only + 17 in + 18 avant + 19 - + 20 garde + 21 fashions + sense: fashion-n.2 + 22 , + 23 but + 24 also + 25 in + 26 industrial + 27 conveyor + sense: conveyor-n.2 + 28 belts + 29 and + 30 even + 31 space + sense: space-n.1 + 32 suits + sense: suit-n.3 + 33 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 32 + +Treebanked sentence: +-------------------- + p. 32 + +Tree: +----- + (TOP (NP (NN p.) + (CD 32))) + +Leaves: +------- + 0 p. + 1 32 + name: CARDINAL 1-1 32 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Eight years ago, this was just a textile testing center with a handful of single-storey buildings and a staff of less + than 20. + +Treebanked sentence: +-------------------- + Eight years ago , this was just a textile testing center with a handful of single - storey buildings and a staff of less + than 20 . + +Tree: +----- + (TOP (S (ADVP-TMP (NP (CD Eight) + (NNS years)) + (RB ago)) + (, ,) + (NP-SBJ (DT this)) + (VP (VBD was) + (NP-PRD (NP (RB just) + (DT a) + (NN textile) + (NN testing) + (NN center)) + (PP (IN with) + (NP (NP (DT a) + (NN handful)) + (PP (IN of) + (NP (NP (NML (JJ single) + (HYPH -) + (NN storey)) + (NNS buildings)) + (CC and) + (NP (NP (DT a) + (NN staff)) + (PP (IN of) + (NP (QP (JJR less) + (IN than) + (CD 20))))))))))) + (. .))) + +Leaves: +------- + 0 Eight + name: DATE 0-2 Eight years ago + 1 years + 2 ago + 3 , + 4 this + coref: IDENT 28 4-4 this + 5 was + sense: be-v.1 + prop: be.01 + v * -> 5:0, was + ARGM-TMP * -> 0:2, Eight years ago + ARG1 * -> 4:1, this + ARG2 * -> 6:2, just a textile testing center with a handful of single - storey buildings and a staff + of less than 20 + 6 just + 7 a + 8 textile + 9 testing + 10 center + 11 with + 12 a + 13 handful + 14 of + 15 single + 16 - + 17 storey + 18 buildings + sense: building-n.1 + 19 and + 20 a + 21 staff + sense: staff-n.1 + 22 of + 23 less + 24 than + 25 20 + name: CARDINAL 25-25 20 + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + But president Yao Hsing-chuan-LRB-left-RRB-, has single-handedly transformed it into today's China Textiles Institute, + with a staff of nearly 300. + +Treebanked sentence: +-------------------- + But president Yao Hsing - chuan -LRB- left -RRB- , has single - handedly transformed it into today 's China Textiles + Institute , with a staff of nearly 300 . + +Tree: +----- + (TOP (S (CC But) + (NP-SBJ (NN president) + (NNP Yao) + (NNP Hsing) + (HYPH -) + (NNP chuan) + (PRN (-LRB- -LRB-) + (ADVP (RB left)) + (-RRB- -RRB-))) + (, ,) + (VP (VBZ has) + (ADVP (RB single) + (HYPH -) + (RB handedly)) + (VP (VBN transformed) + (NP (PRP it)) + (PP-CLR (IN into) + (NP (NP (NP (NN today) + (POS 's)) + (NNP China) + (NNPS Textiles) + (NNP Institute)) + (, ,) + (PP (IN with) + (NP (NP (DT a) + (NN staff)) + (PP (IN of) + (NP (RB nearly) + (CD 300))))))))) + (. .))) + +Leaves: +------- + 0 But + 1 president + sense: president-n.1 + coref: IDENT 38 1-8 president Yao Hsing - chuan -LRB- left -RRB- + 2 Yao + ! name: PERSON 2-5 Yao Hsing - chuan + 3 Hsing + 4 - + 5 chuan + 6 -LRB- + 7 left + 8 -RRB- + 9 , + 10 has + prop: have.01 + v * -> 10:0, has + 11 single + 12 - + 13 handedly + 14 transformed + sense: transform-v.1 + prop: transform.01 + v * -> 14:0, transformed + ARGM-DIS * -> 0:0, But + ARG0 * -> 1:1, president Yao Hsing - chuan -LRB- left -RRB- + ARGM-ADV * -> 11:1, single - handedly + ARG1 * -> 15:1, it + ARG2 * -> 16:1, into today 's China Textiles Institute , with a staff of nearly 300 + 15 it + coref: IDENT 28 15-15 it + 16 into + 17 today + sense: today-n.1 + coref: IDENT 40 17-28 today 's China Textiles Institute , with a staff of nearly 300 + name: TIME 17-17 today + 18 's + 19 China + ! name: ORG 19-21 China Textiles Institute + 20 Textiles + 21 Institute + 22 , + 23 with + 24 a + 25 staff + sense: staff-n.1 + 26 of + 27 nearly + 28 300 + name: CARDINAL 28-28 300 + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + With him is Ho Yu-lan, formerly director of the Taiwan Textile Federation and now consultant to the CTI. + +Treebanked sentence: +-------------------- + With him is *T*-1 Ho Yu - lan , formerly director of the Taiwan Textile Federation and now consultant to the CTI . + +Tree: +----- + (TOP (SINV (PP-TPC-1 (IN With) + (NP (PRP him))) + (VP (VBZ is) + (PP-PRD (-NONE- *T*-1))) + (NP-SBJ (NP (NNP Ho) + (NNP Yu) + (HYPH -) + (NNP lan)) + (, ,) + (RRC (RRC (ADVP-TMP (RB formerly)) + (NP (NP (NN director)) + (PP (IN of) + (NP (DT the) + (NNP Taiwan) + (NNP Textile) + (NNP Federation))))) + (CC and) + (RRC (ADVP-TMP (RB now)) + (NP (NP (NN consultant)) + (PP (IN to) + (NP (DT the) + (NNP CTI))))))) + (. .))) + +Leaves: +------- + 0 With + 1 him + coref: IDENT 38 1-1 him + 2 is + sense: be-v.4 + prop: be.01 + v * -> 2:0, is + ARG2 * -> 3:0, *T*-1 -> 0:1, With him + ARG1 * -> 4:2, Ho Yu - lan , formerly director of the Taiwan Textile Federation and now consultant to + the CTI + 3 *T*-1 + 4 Ho + name: PERSON 4-7 Ho Yu - lan + 5 Yu + 6 - + 7 lan + 8 , + 9 formerly + 10 director + sense: director-n.1 + 11 of + 12 the + name: ORG 12-15 the Taiwan Textile Federation + 13 Taiwan + 14 Textile + 15 Federation + 16 and + 17 now + 18 consultant + 19 to + 20 the + coref: IDENT 40 20-21 the CTI + 21 CTI + name: ORG 21-21 CTI + 22 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 34 + +Treebanked sentence: +-------------------- + p. 34 + +Tree: +----- + (TOP (NP (NN p.) + (CD 34))) + +Leaves: +------- + 0 p. + 1 34 + name: CARDINAL 1-1 34 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The CTI has an artificial climate chamber which can simulate all kinds of weather conditions such as frost and rain. + +Treebanked sentence: +-------------------- + The CTI has an artificial climate chamber which *T*-9 can simulate all kinds of weather conditions such as frost and + rain . + +Tree: +----- + (TOP (S (NP-SBJ (DT The) + (NNP CTI)) + (VP (VBZ has) + (NP (NP (DT an) + (JJ artificial) + (NN climate) + (NN chamber)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (MD can) + (VP (VB simulate) + (NP (NP (DT all) + (NNS kinds)) + (PP (IN of) + (NP (NN weather) + (NNS conditions))) + (PP (JJ such) + (IN as) + (NP (NN frost) + (CC and) + (NN rain)))))))))) + (. .))) + +Leaves: +------- + 0 The + coref: IDENT 40 0-1 The CTI + 1 CTI + name: ORG 1-1 CTI + 2 has + sense: have-v.1 + prop: have.03 + v * -> 2:0, has + ARG0 * -> 0:1, The CTI + ARG1 * -> 3:2, an artificial climate chamber which *T*-9 can simulate all kinds of weather conditions + such as frost and rain + 3 an + 4 artificial + 5 climate + 6 chamber + sense: chamber-n.1 + 7 which + 8 *T*-9 + 9 can + 10 simulate + sense: simulate-v.1 + prop: simulate.01 + v * -> 10:0, simulate + ARG0 * -> 8:0, *T*-9 -> 7:1, which + ARGM-MOD * -> 9:0, can + ARG1 * -> 11:2, all kinds of weather conditions such as frost and rain + LINK-SLC * -> 3:1, an artificial climate chamber + * -> 8:0, *T*-9 -> 7:1, which + 11 all + 12 kinds + 13 of + 14 weather + 15 conditions + sense: condition-n.1 + 16 such + 17 as + 18 frost + 19 and + 20 rain + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Our picture shows members of an ROC mountaineering team testing the warmth and anti-condensation qualities of their + clothing before setting out to tackle Mt. Everest. + +Treebanked sentence: +-------------------- + Our picture shows members of an ROC mountaineering team testing the warmth and anti-condensation qualities of their + clothing before *PRO* setting out *PRO* to tackle Mt. Everest . + +Tree: +----- + (TOP (S (NP-SBJ (PRP$ Our) + (NN picture)) + (VP (VBZ shows) + (S (NP-SBJ (NP (NNS members)) + (PP (IN of) + (NP (DT an) + (NNP ROC) + (NN mountaineering) + (NN team)))) + (VP (VBG testing) + (NP (NP (DT the) + (NML (NML (NN warmth)) + (CC and) + (NML (NN anti-condensation) + (NNS qualities)))) + (PP (IN of) + (NP (PRP$ their) + (NN clothing)))) + (PP-TMP (IN before) + (S-NOM (NP-SBJ-9 (-NONE- *PRO*)) + (VP (VBG setting) + (PRT (RP out)) + (S-PRP (NP-SBJ-9 (-NONE- *PRO*)) + (VP (TO to) + (VP (VB tackle) + (NP (NNP Mt.) + (NNP Everest))))))))))) + (. .))) + +Leaves: +------- + 0 Our + 1 picture + sense: picture-n.2 + 2 shows + sense: show-v.1 + prop: show.01 + v * -> 2:0, shows + ARG0 * -> 0:1, Our picture + ARG1 * -> 3:3, members of an ROC mountaineering team testing the warmth and anti-condensation + qualities of their clothing before *PRO* setting out *PRO* to tackle Mt. Everest + 3 members + sense: member-n.1 + coref: IDENT 65 3-8 members of an ROC mountaineering team + 4 of + 5 an + 6 ROC + coref: IDENT 13 6-6 ROC + 7 mountaineering + 8 team + sense: team-n.1 + 9 testing + sense: test-v.1 + prop: test.01 + v * -> 9:0, testing + ARG0 * -> 3:2, members of an ROC mountaineering team + ARG1 * -> 10:2, the warmth and anti-condensation qualities of their clothing + ARGM-TMP * -> 18:1, before *PRO* setting out *PRO* to tackle Mt. Everest + 10 the + 11 warmth + 12 and + 13 anti-condensation + 14 qualities + sense: quality-n.2 + 15 of + 16 their + coref: IDENT 65 16-16 their + 17 clothing + 18 before + 19 *PRO* + 20 setting + sense: set-v.6 + prop: set.07 + v * -> 20:0, setting + -> 21:1, out + ARG0 * -> 19:0, *PRO* + ARG1 * -> 22:2, *PRO* to tackle Mt. Everest + LINK-PCR * -> 3:2, members of an ROC mountaineering team + * -> 19:0, *PRO* + 21 out + 22 *PRO* + 23 to + 24 tackle + sense: tackle-v.1 + prop: tackle.01 + v * -> 24:0, tackle + ARG0 * -> 22:0, *PRO* + ARG1 * -> 25:1, Mt. Everest + 25 Mt. + name: LOC 25-26 Mt. Everest + 26 Everest + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + -LRB-courtesy of CTI-RRB- + +Treebanked sentence: +-------------------- + -LRB- courtesy of CTI -RRB- + +Tree: +----- + (TOP (NP (-LRB- -LRB-) + (NP (NN courtesy)) + (PP (IN of) + (NP (NNP CTI))) + (-RRB- -RRB-))) + +Leaves: +------- + 0 -LRB- + 1 courtesy + 2 of + 3 CTI + coref: IDENT 40 3-3 CTI + name: ORG 3-3 CTI + 4 -RRB- + + +======================================================================================================================== +Coreference chains for section 9: +--------------------------------- + + Chain 40 (IDENT) + 174.5-9 the China Textile Institute 's + 178.17-28 today 's China Textiles Institute , with a staff of nearly 300 + 179.20-21 the CTI + 181.0-1 The CTI + 183.3-3 CTI + + Chain 13 (IDENT) + 174.38-39 the ROC + 182.6-6 ROC + + Chain 28 (IDENT) + 177.4-4 this + 178.15-15 it + + Chain 38 (IDENT) + 178.1-8 president Yao Hsing - chuan -LRB- left -RRB- + 179.1-1 him + + Chain 65 (IDENT) + 182.3-8 members of an ROC mountaineering team + 182.16-16 their + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 35 + +Treebanked sentence: +-------------------- + p. 35 + +Tree: +----- + (TOP (NP (NN p.) + (CD 35))) + +Leaves: +------- + 0 p. + 1 35 + name: CARDINAL 1-1 35 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Guess what these lads are doing ? + +Treebanked sentence: +-------------------- + *PRO* Guess what these lads are doing *T*-9 ? + +Tree: +----- + (TOP (S-IMP (NP-SBJ (-NONE- *PRO*)) + (VP (VB Guess) + (SBAR (WHNP-9 (WP what)) + (S (NP-SBJ (DT these) + (NNS lads)) + (VP (VBP are) + (VP (VBG doing) + (NP (-NONE- *T*-9))))))) + (. ?))) + +Leaves: +------- + 0 *PRO* + 1 Guess + sense: guess-v.1 + prop: guess.01 + v * -> 1:0, Guess + ARG0 * -> 0:0, *PRO* + ARG1 * -> 2:2, what these lads are doing *T*-9 + 2 what + 3 these + coref: IDENT 2 3-4 these lads + 4 lads + 5 are + prop: be.03 + v * -> 5:0, are + 6 doing + prop: do.02 + v * -> 6:0, doing + ARG0 * -> 3:1, these lads + ARG1 * -> 7:0, *T*-9 -> 2:1, what + 7 *T*-9 + 8 ? + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They are playing a " computer handle test " game : after carefully feeling a numbered cloth sample they score it for + handle-LRB-crispness, drape, pliability, etc.-RRB- + +Treebanked sentence: +-------------------- + They are playing a " computer handle test " game : after *PRO* carefully feeling a numbered cloth sample they score it + for handle -LRB- crispness , drape , pliability , etc . -RRB- + +Tree: +----- + (TOP (S (S (NP-SBJ (PRP They)) + (VP (VBP are) + (VP (VBG playing) + (NP (DT a) + (NML (`` ") + (NN computer) + (NN handle) + (NN test) + ('' ")) + (NN game))))) + (: :) + (S (PP-TMP (IN after) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (ADVP (RB carefully)) + (VP (VBG feeling) + (NP (DT a) + (JJ numbered) + (NN cloth) + (NN sample))))) + (NP-SBJ (PRP they)) + (VP (VBP score) + (NP (PRP it)) + (PP (IN for) + (NP (NP (NN handle)) + (-LRB- -LRB-) + (NP (NP (NN crispness)) + (, ,) + (NP (NN drape)) + (, ,) + (NP (NN pliability)) + (, ,) + (ADVP-ETC (FW etc))))))) + (. .) + (-RRB- -RRB-))) + +Leaves: +------- + 0 They + coref: IDENT 2 0-0 They + 1 are + prop: be.03 + v * -> 1:0, are + 2 playing + sense: play-v.2 + prop: play.01 + v * -> 2:0, playing + ARG0 * -> 0:1, They + ARG1 * -> 3:1, a " computer handle test " game + 3 a + 4 " + 5 computer + sense: computer-n.1 + 6 handle + sense: handle-n.3 + 7 test + sense: test-n.1 + 8 " + 9 game + sense: game-n.2 + 10 : + 11 after + 12 *PRO* + 13 carefully + 14 feeling + sense: feel-v.2 + prop: feel.03 + v * -> 14:0, feeling + ARG0 * -> 12:0, *PRO* + ARGM-MNR * -> 13:1, carefully + ARG1 * -> 15:1, a numbered cloth sample + LINK-PCR * -> 12:0, *PRO* + * -> 19:1, they + 15 a + coref: IDENT 7 15-18 a numbered cloth sample + 16 numbered + 17 cloth + 18 sample + sense: sample-n.2 + 19 they + coref: IDENT 2 19-19 they + 20 score + sense: score-v.1 + prop: score.01 + v * -> 20:0, score + ARGM-TMP * -> 11:1, after *PRO* carefully feeling a numbered cloth sample + ARGA * -> 19:1, they + ARG0 * -> 21:1, it + ARGM-ADV * -> 22:1, for handle -LRB- crispness , drape , pliability , etc + 21 it + coref: IDENT 7 21-21 it + 22 for + 23 handle + sense: handle-n.3 + 24 -LRB- + 25 crispness + 26 , + 27 drape + 28 , + 29 pliability + 30 , + 31 etc + 32 . + 33 -RRB- + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + and then compare their scores with those given by the computer. + +Treebanked sentence: +-------------------- + and then compare their scores with those given * by the computer . + +Tree: +----- + (TOP (FRAG (CC and) + (ADVP-TMP (RB then)) + (VP (VBP compare) + (NP (PRP$ their) + (NNS scores)) + (PP-CLR (IN with) + (NP (NP (DT those)) + (VP (VBN given) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (DT the) + (NN computer))))))) + (. .))) + +Leaves: +------- + 0 and + 1 then + 2 compare + sense: compare-v.1 + prop: compare.01 + v * -> 2:0, compare + ARGM-TMP * -> 1:1, then + ARG1 * -> 3:1, their scores + ARG2 * -> 5:1, with those given * by the computer + 3 their + coref: IDENT 2 3-3 their + 4 scores + sense: score-n.1 + prop: score.01 + n * -> 4:0, scores + ARG0 * -> 3:0, their + 5 with + 6 those + 7 given + sense: give-v.3 + prop: give.01 + v * -> 7:0, given + ARG1 * -> 8:0, * + ARG0 * -> 9:1, by the computer + LINK-PCR * -> 6:1, those + * -> 8:0, * + 8 * + 9 by + 10 the + 11 computer + sense: computer-n.1 + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Many are surprised to find how different the results are ! + +Treebanked sentence: +-------------------- + Many are surprised *PRO*-9 to find how different the results are *T*-1 ! + +Tree: +----- + (TOP (S (NP-SBJ-9 (JJ Many)) + (VP (VBP are) + (ADJP-PRD (JJ surprised) + (S (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB find) + (SBAR (WHADJP-1 (WRB how) + (JJ different)) + (S (NP-SBJ (DT the) + (NNS results)) + (VP (VBP are) + (ADJP-PRD (-NONE- *T*-1)))))))))) + (. !))) + +Leaves: +------- + 0 Many + 1 are + sense: be-v.1 + prop: be.01 + v * -> 1:0, are + ARG1 * -> 3:0, *PRO*-9 -> 0:1, Many + ARG2 * -> 2:1, surprised *PRO*-9 to find how different the results are *T*-1 + 2 surprised + 3 *PRO*-9 + 4 to + 5 find + sense: find-v.1 + prop: find.01 + v * -> 5:0, find + ARG0 * -> 3:0, *PRO*-9 -> 0:1, Many + ARG1 * -> 6:2, how different the results are *T*-1 + 6 how + 7 different + 8 the + 9 results + sense: result-n.1 + 10 are + sense: be-v.1 + prop: be.01 + v * -> 10:0, are + ARG1 * -> 8:1, the results + ARG2 * -> 11:0, *T*-1 -> 6:1, how different + 11 *T*-1 + 12 ! + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 36 + +Treebanked sentence: +-------------------- + p. 36 + +Tree: +----- + (TOP (NP (NN p.) + (CD 36))) + +Leaves: +------- + 0 p. + 1 36 + name: CARDINAL 1-1 36 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This high-grade fabric is completely waterproof, yet breathes to allow sweat to evaporate. + +Treebanked sentence: +-------------------- + This high - grade fabric is completely waterproof , yet breathes *PRO*-9 to allow sweat to evaporate . + +Tree: +----- + (TOP (S (NP-SBJ-9 (DT This) + (ADJP (JJ high) + (HYPH -) + (NN grade)) + (NN fabric)) + (VP (VP (VBZ is) + (ADJP-PRD (RB completely) + (JJ waterproof))) + (, ,) + (VP (ADVP (RB yet)) + (VBZ breathes) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB allow) + (S (NP-SBJ (NN sweat)) + (VP (TO to) + (VP (VB evaporate))))))))) + (. .))) + +Leaves: +------- + 0 This + coref: IDENT 24 0-4 This high - grade fabric + 1 high + 2 - + 3 grade + 4 fabric + 5 is + sense: be-v.1 + prop: be.01 + v * -> 5:0, is + ARG1 * -> 11:0, *PRO*-9 -> 0:1, This high - grade fabric + ARG2 * -> 6:1, completely waterproof + ARGM-ADV * -> 9:2, yet breathes *PRO*-9 to allow sweat to evaporate + 6 completely + 7 waterproof + 8 , + 9 yet + 10 breathes + sense: breathe-v.3 + prop: breathe.01 + v * -> 10:0, breathes + ARG0 * -> 11:0, *PRO*-9 -> 0:1, This high - grade fabric + ARGM-ADV * -> 9:1, yet + ARGM-PRP * -> 11:2, *PRO*-9 to allow sweat to evaporate + 11 *PRO*-9 + 12 to + 13 allow + sense: allow-v.1 + prop: allow.01 + v * -> 13:0, allow + ARG0 * -> 11:0, *PRO*-9 -> 0:1, This high - grade fabric + ARG1 * -> 14:2, sweat to evaporate + 14 sweat + 15 to + 16 evaporate + sense: evaporate-v.1 + prop: evaporate.01 + v * -> 16:0, evaporate + ARG1 * -> 14:1, sweat + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + It can be made into military or police rainwear and horse blankets, and is also in great demand in advanced countries + for leisure wear. + +Treebanked sentence: +-------------------- + It can be made *-9 into military or police rainwear and horse blankets , and is also in great demand in advanced + countries for leisure wear . + +Tree: +----- + (TOP (S (NP-SBJ-9 (PRP It)) + (VP (VP (MD can) + (VP (VB be) + (VP (VBN made) + (NP (-NONE- *-9)) + (PP-CLR (IN into) + (NP (NP (UCP (JJ military) + (CC or) + (NN police)) + (NN rainwear)) + (CC and) + (NP (NN horse) + (NNS blankets))))))) + (, ,) + (CC and) + (VP (VBZ is) + (ADVP (RB also)) + (PP-PRD (IN in) + (NP (JJ great) + (NN demand))) + (PP-LOC (IN in) + (NP (JJ advanced) + (NNS countries))) + (PP (IN for) + (NP (NN leisure) + (NN wear))))) + (. .))) + +Leaves: +------- + 0 It + coref: IDENT 24 0-0 It + 1 can + 2 be + prop: be.03 + v * -> 2:0, be + 3 made + prop: make.01 + v * -> 3:0, made + ARGM-MOD * -> 1:0, can + ARG1 * -> 4:0, *-9 -> 0:1, It + -> 5:1, into military or police rainwear and horse blankets + 4 *-9 + 5 into + 6 military + 7 or + 8 police + 9 rainwear + 10 and + 11 horse + 12 blankets + 13 , + 14 and + 15 is + sense: be-v.1 + prop: be.01 + v * -> 15:0, is + ARG1 * -> 4:0, *-9 -> 0:1, It + ARGM-DIS * -> 16:1, also + ARG2 * -> 17:1, in great demand + ARGM-LOC * -> 20:1, in advanced countries + ARGM-PRP * -> 23:1, for leisure wear + 16 also + 17 in + 18 great + 19 demand + sense: demand-n.3 + 20 in + 21 advanced + 22 countries + sense: country-n.3 + 23 for + 24 leisure + 25 wear + 26 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The picture at left shows high-value leisure apparel ; above, the fabric coating process. + +Treebanked sentence: +-------------------- + The picture at left shows high - value leisure apparel ; above , the fabric coating process . + +Tree: +----- + (TOP (FRAG (S (NP-SBJ (NP (DT The) + (NN picture)) + (PP-LOC (IN at) + (ADVP (RB left)))) + (VP (VBZ shows) + (NP (NML (JJ high) + (HYPH -) + (NN value)) + (NN leisure) + (NN apparel)))) + (, ;) + (FRAG (ADVP (RB above)) + (, ,) + (NP (DT the) + (NML (NN fabric) + (NN coating)) + (NN process))) + (. .))) + +Leaves: +------- + 0 The + 1 picture + sense: picture-n.2 + 2 at + 3 left + 4 shows + sense: show-v.1 + prop: show.01 + v * -> 4:0, shows + ARG0 * -> 0:2, The picture at left + ARG1 * -> 5:2, high - value leisure apparel + 5 high + 6 - + 7 value + 8 leisure + 9 apparel + 10 ; + 11 above + 12 , + 13 the + 14 fabric + 15 coating + 16 process + sense: process-n.1 + prop: process.01 + n * -> 16:0, process + ARG1 * -> 14:1, fabric coating + 17 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 37 + +Treebanked sentence: +-------------------- + p. 37 + +Tree: +----- + (TOP (NP (NN p.) + (CD 37))) + +Leaves: +------- + 0 p. + 1 37 + name: CARDINAL 1-1 37 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Various kinds of protective fabrics find a wide range of applications in industry. + +Treebanked sentence: +-------------------- + Various kinds of protective fabrics find a wide range of applications in industry . + +Tree: +----- + (TOP (S (NP-SBJ (NP (JJ Various) + (NNS kinds)) + (PP (IN of) + (NP (JJ protective) + (NNS fabrics)))) + (VP (VBP find) + (NP (NP (DT a) + (JJ wide) + (NN range)) + (PP (IN of) + (NP (NP (NNS applications)) + (PP (IN in) + (NP (NN industry))))))) + (. .))) + +Leaves: +------- + 0 Various + 1 kinds + 2 of + 3 protective + 4 fabrics + 5 find + sense: find-v.1 + prop: find.01 + v * -> 5:0, find + ARG0 * -> 0:2, Various kinds of protective fabrics + ARG1 * -> 6:2, a wide range of applications in industry + 6 a + 7 wide + 8 range + sense: range-n.6 + 9 of + 10 applications + 11 in + 12 industry + sense: industry-n.1 + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The picture above shows articles made by the " fully fashioned " knitting method, which vastly increases their strength + and resilience, making them suitable for crash helmet liners, protective lagging for water pipes, climbing ropes and + more. + +Treebanked sentence: +-------------------- + The picture above shows articles made * by the " fully fashioned " knitting method , which *T*-1 vastly increases their + strength and resilience , *PRO*-1 making them suitable for crash helmet liners , protective lagging for water pipes , + climbing ropes and more . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN picture)) + (ADVP-LOC (RB above))) + (VP (VBZ shows) + (NP (NP (NNS articles)) + (VP (VBN made) + (NP (-NONE- *)) + (PP (IN by) + (NP-LGS (DT the) + (ADJP (`` ") + (RB fully) + (VBN fashioned) + ('' ")) + (NN knitting) + (NN method))) + (, ,) + (SBAR-ADV (WHNP-1 (WDT which)) + (S (NP-SBJ (-NONE- *T*-1)) + (ADVP (RB vastly)) + (VP (VBZ increases) + (NP (PRP$ their) + (NN strength) + (CC and) + (NN resilience)) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-1)) + (VP (VBG making) + (S (NP-SBJ (PRP them)) + (ADJP-PRD (JJ suitable) + (PP (IN for) + (NP (NP (NML (NN crash) + (NN helmet)) + (NNS liners)) + (, ,) + (NP (NP (JJ protective) + (NN lagging)) + (PP (IN for) + (NP (NN water) + (NNS pipes)))) + (, ,) + (NP (NN climbing) + (NNS ropes)) + (CC and) + (NP (RBR more)))))))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 picture + sense: picture-n.2 + 2 above + 3 shows + sense: show-v.1 + prop: show.01 + v * -> 3:0, shows + ARG0 * -> 0:2, The picture above + ARG1 * -> 4:2, articles made * by the " fully fashioned " knitting method , which *T*-1 vastly + increases their strength and resilience , *PRO*-1 making them suitable for crash + helmet liners , protective lagging for water pipes , climbing ropes and more + 4 articles + sense: article-n.2 + coref: IDENT 50 4-43 articles made * by the " fully fashioned " knitting method , which *T*-1 + vastly increases their strength and resilience , *PRO*-1 making them + suitable for crash helmet liners , protective lagging for water pipes , + climbing ropes and more + 5 made + sense: make-v.2 + prop: make.01 + v * -> 5:0, made + ARG1 * -> 6:0, * + ARGM-MNR * -> 7:1, by the " fully fashioned " knitting method + ARGM-ADV * -> 16:2, which *T*-1 vastly increases their strength and resilience , *PRO*-1 making them + suitable for crash helmet liners , protective lagging for water pipes , climbing ropes + and more + LINK-PCR * -> 4:1, articles + * -> 6:0, * + 6 * + 7 by + 8 the + 9 " + 10 fully + 11 fashioned + sense: fashion-v.1 + prop: fashion.01 + v * -> 11:0, fashioned + ARGM-EXT * -> 10:0, fully + ARG1 * -> 13:0, knitting + -> 14:0, method + 12 " + 13 knitting + 14 method + 15 , + 16 which + 17 *T*-1 + 18 vastly + 19 increases + sense: increase-v.1 + prop: increase.01 + v * -> 19:0, increases + ARG0 * -> 17:0, *T*-1 -> 16:1, which + ARGM-EXT * -> 18:1, vastly + ARG1 * -> 20:1, their strength and resilience + ARGM-ADV * -> 25:2, *PRO*-1 making them suitable for crash helmet liners , protective lagging for water + pipes , climbing ropes and more + LINK-SLC * -> 8:1, the " fully fashioned " knitting method + * -> 17:0, *T*-1 -> 16:1, which + 20 their + coref: IDENT 50 20-20 their + 21 strength + sense: strength-n.1 + 22 and + 23 resilience + 24 , + 25 *PRO*-1 + 26 making + sense: make-v.3 + prop: make.02 + v * -> 26:0, making + ARG0 * -> 25:0, *PRO*-1 -> 16:1, which + ARG1 * -> 27:2, them suitable for crash helmet liners , protective lagging for water pipes , climbing + ropes and more + 27 them + coref: IDENT 50 27-27 them + 28 suitable + 29 for + 30 crash + sense: crash-n.1 + 31 helmet + 32 liners + 33 , + 34 protective + 35 lagging + 36 for + 37 water + sense: water-n.2 + 38 pipes + sense: pipe-n.2 + 39 , + 40 climbing + 41 ropes + 42 and + 43 more + 44 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At right, cut-resistant gloves containing stainless steel fibers. + +Treebanked sentence: +-------------------- + At right , cut - resistant gloves containing stainless steel fibers . + +Tree: +----- + (TOP (FRAG (PP-LOC (IN At) + (ADVP (RB right))) + (, ,) + (NP (NP (ADJP (NN cut) + (HYPH -) + (JJ resistant)) + (NNS gloves)) + (VP (VBG containing) + (NP (NML (JJ stainless) + (NN steel)) + (NNS fibers)))) + (. .))) + +Leaves: +------- + 0 At + 1 right + 2 , + 3 cut + sense: cut-n.15 + prop: cut.01 + n * -> 3:0, cut + coref: IDENT 65 3-10 cut - resistant gloves containing stainless steel fibers + 4 - + 5 resistant + 6 gloves + 7 containing + sense: contain-v.1 + prop: contain.01 + v * -> 7:0, containing + ARG0 * -> 3:2, cut - resistant gloves + ARG1 * -> 8:2, stainless steel fibers + 8 stainless + 9 steel + sense: steel-n.1 + 10 fibers + 11 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + They cost much less than imported products, but are just as effective. + +Treebanked sentence: +-------------------- + They cost much less than imported products , but are just as effective . + +Tree: +----- + (TOP (S (NP-SBJ (PRP They)) + (VP (VP (VBP cost) + (NP (NP (RB much) + (JJ less)) + (PP (IN than) + (NP (JJ imported) + (NNS products))))) + (, ,) + (CC but) + (VP (VBP are) + (ADJP-PRD (RB just) + (RB as) + (JJ effective)))) + (. .))) + +Leaves: +------- + 0 They + coref: IDENT 65 0-0 They + 1 cost + sense: cost-v.1 + prop: cost.01 + v * -> 1:0, cost + ARG1 * -> 0:1, They + ARG2 * -> 2:2, much less than imported products + 2 much + 3 less + 4 than + 5 imported + 6 products + sense: product-n.1 + 7 , + 8 but + 9 are + sense: be-v.1 + prop: be.01 + v * -> 9:0, are + ARG1 * -> 0:1, They + ARG2 * -> 10:1, just as effective + 10 just + 11 as + 12 effective + 13 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 37 + +Treebanked sentence: +-------------------- + p. 37 + +Tree: +----- + (TOP (NP (NN p.) + (CD 37))) + +Leaves: +------- + 0 p. + 1 37 + name: CARDINAL 1-1 37 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The development of new fibers with various properties or special feel can help the industry upgrade. + +Treebanked sentence: +-------------------- + The development of new fibers with various properties or special feel can help the industry upgrade . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NN development)) + (PP (IN of) + (NP (NP (JJ new) + (NNS fibers)) + (PP (IN with) + (NP (NP (JJ various) + (NNS properties)) + (CC or) + (NP (JJ special) + (NN feel))))))) + (VP (MD can) + (VP (VB help) + (S (NP-SBJ (DT the) + (NN industry)) + (VP (VB upgrade))))) + (. .))) + +Leaves: +------- + 0 The + 1 development + 2 of + 3 new + 4 fibers + 5 with + 6 various + 7 properties + sense: property-n.3 + 8 or + 9 special + 10 feel + sense: feel-n.3 + 11 can + 12 help + sense: help-v.1 + prop: help.01 + v * -> 12:0, help + ARG0 * -> 0:2, The development of new fibers with various properties or special feel + ARGM-MOD * -> 11:0, can + ARG1 * -> 13:2, the industry upgrade + 13 the + coref: IDENT 110 13-14 the industry + 14 industry + sense: industry-n.1 + 15 upgrade + sense: upgrade-v.2 + prop: upgrade.02 + v * -> 15:0, upgrade + ARG1 * -> 13:1, the industry + 16 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + At left we see soft, flexible yarns spun from high-grade stainless steel ; below, chitin, which can be drawn into thread + or ground into powder to make health food. + +Treebanked sentence: +-------------------- + At left we see soft , flexible yarns spun * from high - grade stainless steel ; below , chitin , which *T*-9 can be + drawn *-9 into thread or ground *-9 into powder *PRO* to make health food . + +Tree: +----- + (TOP (FRAG (S (PP-LOC (IN At) + (ADVP (RB left))) + (NP-SBJ (PRP we)) + (VP (VBP see) + (NP (NP (JJ soft) + (, ,) + (JJ flexible) + (NNS yarns)) + (VP (VBN spun) + (NP (-NONE- *)) + (PP (IN from) + (NP (NML (JJ high) + (HYPH -) + (NN grade)) + (JJ stainless) + (NN steel))))))) + (, ;) + (FRAG (ADVP-LOC (RB below)) + (, ,) + (NP (NP (NN chitin)) + (, ,) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (MD can) + (VP (VB be) + (VP (VP (VBN drawn) + (NP (-NONE- *-9)) + (PP-CLR (IN into) + (NP (NN thread)))) + (CC or) + (VP (VBN ground) + (NP (-NONE- *-9)) + (PP-CLR (IN into) + (NP (NN powder))) + (S-PRP (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB make) + (NP (NN health) + (NN food))))))))))))) + (. .))) + +Leaves: +------- + 0 At + 1 left + 2 we + 3 see + sense: see-v.3 + prop: see.01 + v * -> 3:0, see + ARGM-LOC * -> 0:1, At left + ARG0 * -> 2:1, we + ARG1 * -> 4:2, soft , flexible yarns spun * from high - grade stainless steel + 4 soft + 5 , + 6 flexible + 7 yarns + 8 spun + prop: spin.04 + v * -> 8:0, spun + ARG1 * -> 9:0, * + ARG2 * -> 10:1, from high - grade stainless steel + LINK-PCR * -> 4:1, soft , flexible yarns + * -> 9:0, * + 9 * + 10 from + 11 high + 12 - + 13 grade + 14 stainless + 15 steel + sense: steel-n.1 + 16 ; + 17 below + 18 , + 19 chitin + 20 , + 21 which + 22 *T*-9 + 23 can + 24 be + prop: be.03 + v * -> 24:0, be + 25 drawn + sense: draw-v.3 + prop: draw.02 + v * -> 25:0, drawn + ARGM-MOD * -> 23:0, can + ARG1 * -> 26:0, *-9 -> 21:1, which + ARGM-GOL * -> 27:1, into thread + LINK-SLC * -> 19:1, chitin + * -> 26:0, *-9 -> 21:1, which + LINK-PCR * -> 26:0, *-9 -> 21:1, which + * -> 26:0, *-9 -> 21:1, which + 26 *-9 + 27 into + 28 thread + 29 or + 30 ground + prop: grind.01 + v * -> 30:0, ground + ARGM-MOD * -> 23:0, can + ARG1 * -> 31:0, *-9 -> 21:1, which + ARG2 * -> 32:1, into powder + ARGM-PRP * -> 34:2, *PRO* to make health food + LINK-SLC * -> 19:1, chitin + * -> 31:0, *-9 -> 21:1, which + 31 *-9 + 32 into + 33 powder + 34 *PRO* + 35 to + 36 make + sense: make-v.2 + prop: make.01 + v * -> 36:0, make + ARG0 * -> 34:0, *PRO* + ARG1 * -> 37:1, health food + 37 health + sense: health-n.1 + 38 food + sense: food-n.1 + 39 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 38 + +Treebanked sentence: +-------------------- + p. 38 + +Tree: +----- + (TOP (NP (NN p.) + (CD 38))) + +Leaves: +------- + 0 p. + 1 38 + name: CARDINAL 1-1 38 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Hsu Yun-peng built on his solid practical grounding to not only develop color matching software which is widely used in + Taiwan, but also compile the Sinocolor Book color reference system covering 20,000 colors. + +Treebanked sentence: +-------------------- + Hsu Yun - peng built on his solid practical grounding *PRO*-1 to not only develop color matching software which *T*-9 is + widely used *-9 in Taiwan , but also compile the Sinocolor Book color reference system covering 20,000 colors . + +Tree: +----- + (TOP (S (NP-SBJ-1 (NNP Hsu) + (NNP Yun) + (HYPH -) + (NNP peng)) + (VP (VBD built) + (PP (IN on) + (NP (PRP$ his) + (JJ solid) + (JJ practical) + (NN grounding))) + (S-PRP (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (CONJP (RB not) + (RB only)) + (VP (VB develop) + (NP (NP (NML (NN color) + (NN matching)) + (NN software)) + (SBAR (WHNP-9 (WDT which)) + (S (NP-SBJ (-NONE- *T*-9)) + (VP (VBZ is) + (ADVP (RB widely)) + (VP (VBN used) + (NP (-NONE- *-9)) + (PP-LOC (IN in) + (NP (NNP Taiwan))))))))) + (, ,) + (CONJP (CC but) + (RB also)) + (VP (VB compile) + (NP (NP (DT the) + (NML (NNP Sinocolor) + (NNP Book)) + (NML (NN color) + (NN reference)) + (NN system)) + (VP (VBG covering) + (NP (CD 20,000) + (NNS colors))))))))) + (. .))) + +Leaves: +------- + 0 Hsu + coref: IDENT 96 0-3 Hsu Yun - peng + name: PERSON 0-3 Hsu Yun - peng + 1 Yun + 2 - + 3 peng + 4 built + sense: build-v.3 + prop: build.01 + v * -> 4:0, built + ARG0 * -> 10:0, *PRO*-1 -> 0:1, Hsu Yun - peng + ARG2 * -> 5:1, on his solid practical grounding + ARGM-PRP * -> 10:2, *PRO*-1 to not only develop color matching software which *T*-9 is widely used *-9 in + Taiwan , but also compile the Sinocolor Book color reference system covering 20,000 + colors + 5 on + 6 his + coref: IDENT 96 6-6 his + 7 solid + 8 practical + 9 grounding + 10 *PRO*-1 + 11 to + 12 not + 13 only + 14 develop + sense: develop-v.2 + prop: develop.02 + v * -> 14:0, develop + ARG0 * -> 10:0, *PRO*-1 -> 0:1, Hsu Yun - peng + ARG1 * -> 15:3, color matching software which *T*-9 is widely used *-9 in Taiwan + LINK-PCR * -> 10:0, *PRO*-1 -> 0:1, Hsu Yun - peng + * -> 10:0, *PRO*-1 -> 0:1, Hsu Yun - peng + 15 color + 16 matching + 17 software + 18 which + 19 *T*-9 + 20 is + prop: be.03 + v * -> 20:0, is + 21 widely + 22 used + sense: use-v.1 + prop: use.01 + v * -> 22:0, used + ARGM-MNR * -> 21:1, widely + ARG1 * -> 23:0, *-9 -> 18:1, which + ARGM-LOC * -> 24:1, in Taiwan + LINK-SLC * -> 15:2, color matching software + * -> 23:0, *-9 -> 18:1, which + LINK-PCR * -> 23:0, *-9 -> 18:1, which + * -> 23:0, *-9 -> 18:1, which + 23 *-9 + 24 in + 25 Taiwan + coref: IDENT 103 25-25 Taiwan + name: GPE 25-25 Taiwan + 26 , + 27 but + 28 also + 29 compile + sense: compile-v.1 + prop: compile.01 + v * -> 29:0, compile + ARG0 * -> 10:0, *PRO*-1 -> 0:1, Hsu Yun - peng + ARG1 * -> 30:2, the Sinocolor Book color reference system covering 20,000 colors + 30 the + coref: IDENT 104 30-38 the Sinocolor Book color reference system covering 20,000 colors + name: WORK_OF_ART 30-35 the Sinocolor Book color reference system + 31 Sinocolor + 32 Book + 33 color + 34 reference + 35 system + sense: system-n.1 + 36 covering + sense: cover-v.2 + prop: cover.01 + v * -> 36:0, covering + ARG2 * -> 30:1, the Sinocolor Book color reference system + ARG1 * -> 37:1, 20,000 colors + 37 20,000 + name: CARDINAL 37-37 20,000 + 38 colors + 39 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Its recent launch was a big event for Taiwan's textile industry. + +Treebanked sentence: +-------------------- + Its recent launch was a big event for Taiwan 's textile industry . + +Tree: +----- + (TOP (S (NP-SBJ (PRP$ Its) + (JJ recent) + (NN launch)) + (VP (VBD was) + (NP-PRD (NP (DT a) + (JJ big) + (NN event)) + (PP (IN for) + (NP (NP (NNP Taiwan) + (POS 's)) + (NN textile) + (NN industry))))) + (. .))) + +Leaves: +------- + 0 Its + coref: IDENT 104 0-0 Its + 1 recent + 2 launch + sense: launch-n.3 + prop: launch.01 + n * -> 2:0, launch + ARG1 * -> 0:0, Its + ARGM-TMP * -> 1:0, recent + 3 was + sense: be-v.1 + prop: be.01 + v * -> 3:0, was + ARG1 * -> 0:1, Its recent launch + ARG2 * -> 4:2, a big event for Taiwan 's textile industry + 4 a + 5 big + 6 event + sense: event-n.2 + 7 for + 8 Taiwan + coref: IDENT 110 8-11 Taiwan 's textile industry + coref: IDENT 103 8-9 Taiwan 's + name: GPE 8-8 Taiwan + 9 's + 10 textile + 11 industry + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + p. 39 + +Treebanked sentence: +-------------------- + p. 39 + +Tree: +----- + (TOP (NP (NN p.) + (CD 39))) + +Leaves: +------- + 0 p. + 1 39 + name: CARDINAL 1-1 39 + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Practicing dentist Rocky Chang, known to all as " Dr. Chang, " has collaborated with the CTI to develop yarn spinning + and fabric weaving technologies for metal fibers, thus opening up a new field for the ROC textile industry. + +Treebanked sentence: +-------------------- + Practicing dentist Rocky Chang , known * to all as " Dr. Chang , " has collaborated with the CTI *PRO*-9 to develop yarn + spinning and fabric weaving technologies for metal fibers , *PRO*-9 thus opening up a new field for the ROC textile + industry . + +Tree: +----- + (TOP (S (NP-SBJ-9 (NP (NML (VBG Practicing) + (NN dentist)) + (NNP Rocky) + (NNP Chang)) + (, ,) + (VP (VBN known) + (NP (-NONE- *)) + (PP (IN to) + (NP (DT all))) + (PP-CLR (IN as) + (`` ") + (NP (NNP Dr.) + (NNP Chang))))) + (, ,) + ('' ") + (VP (VBZ has) + (VP (VBN collaborated) + (PP-CLR (IN with) + (NP (DT the) + (NNP CTI))) + (S-PRP (NP-SBJ (-NONE- *PRO*-9)) + (VP (TO to) + (VP (VB develop) + (NP (NP (NML (NML (NN yarn) + (NN spinning)) + (CC and) + (NML (NN fabric) + (NN weaving))) + (NNS technologies)) + (PP (IN for) + (NP (NN metal) + (NNS fibers))))))) + (, ,) + (S-ADV (NP-SBJ (-NONE- *PRO*-9)) + (ADVP (RB thus)) + (VP (VBG opening) + (PRT (RP up)) + (NP (DT a) + (JJ new) + (NN field)) + (PP (IN for) + (NP (DT the) + (NNP ROC) + (NN textile) + (NN industry))))))) + (. .))) + +Leaves: +------- + 0 Practicing + prop: practice.01 + v * -> 0:0, Practicing + ARG0 * -> 1:0, dentist + -> 2:0, Rocky + -> 3:0, Chang + 1 dentist + 2 Rocky + ! name: PERSON 2-3 Rocky Chang + 3 Chang + 4 , + 5 known + sense: know-v.2 + prop: know.01 + v * -> 5:0, known + ARG1 * -> 6:0, * + ARG0 * -> 7:1, to all + ARG2 * -> 9:1, as " Dr. Chang + LINK-PCR * -> 0:2, Practicing dentist Rocky Chang + * -> 6:0, * + 6 * + 7 to + 8 all + 9 as + 10 " + 11 Dr. + 12 Chang + name: PERSON 12-12 Chang + 13 , + 14 " + 15 has + prop: have.01 + v * -> 15:0, has + 16 collaborated + sense: collaborate-v.1 + prop: collaborate.01 + v * -> 16:0, collaborated + ARG0 * -> 20:0, *PRO*-9 -> 0:3, Practicing dentist Rocky Chang , known * to all as " Dr. Chang + ARG1 * -> 17:1, with the CTI + ARG2 * -> 20:2, *PRO*-9 to develop yarn spinning and fabric weaving technologies for metal fibers + ARGM-ADV * -> 33:2, *PRO*-9 thus opening up a new field for the ROC textile industry + 17 with + 18 the + 19 CTI + name: ORG 19-19 CTI + 20 *PRO*-9 + 21 to + 22 develop + sense: develop-v.2 + prop: develop.02 + v * -> 22:0, develop + ARG0 * -> 20:0, *PRO*-9 -> 0:3, Practicing dentist Rocky Chang , known * to all as " Dr. Chang + ARG1 * -> 23:4, yarn spinning and fabric weaving technologies for metal fibers + 23 yarn + 24 spinning + 25 and + 26 fabric + 27 weaving + 28 technologies + sense: technology-n.1 + 29 for + 30 metal + sense: metal-n.1 + 31 fibers + 32 , + 33 *PRO*-9 + 34 thus + 35 opening + sense: open-v.1 + prop: open.03 + v * -> 35:0, opening + -> 36:1, up + ARG0 * -> 33:0, *PRO*-9 -> 0:3, Practicing dentist Rocky Chang , known * to all as " Dr. Chang + ARGM-DIS * -> 34:1, thus + ARG1 * -> 37:1, a new field + ARG3 * -> 40:1, for the ROC textile industry + 36 up + 37 a + 38 new + 39 field + sense: field-n.3 + 40 for + 41 the + coref: IDENT 110 41-44 the ROC textile industry + 42 ROC + 43 textile + 44 industry + sense: industry-n.1 + 45 . + + +======================================================================================================================== +Coreference chains for section 10: +---------------------------------- + + Chain 2 (IDENT) + 185.3-4 these lads + 186.0-0 They + 186.19-19 they + 187.3-3 their + + Chain 7 (IDENT) + 186.15-18 a numbered cloth sample + 186.21-21 it + + Chain 24 (IDENT) + 190.0-4 This high - grade fabric + 191.0-0 It + + Chain 50 (IDENT) + 195.20-20 their + 195.27-27 them + 195.4-43 articles made * by the " fully fashioned " knitting method , which *T*-1 vastly increases + their strength and resilience , *PRO*-1 making them suitable for crash helmet liners , + protective lagging for water pipes , climbing ropes and more + + Chain 65 (IDENT) + 196.3-10 cut - resistant gloves containing stainless steel fibers + 197.0-0 They + + Chain 110 (IDENT) + 199.13-14 the industry + 203.8-11 Taiwan 's textile industry + 205.41-44 the ROC textile industry + + Chain 96 (IDENT) + 202.0-3 Hsu Yun - peng + 202.6-6 his + + Chain 103 (IDENT) + 202.25-25 Taiwan + 203.8-9 Taiwan 's + + Chain 104 (IDENT) + 202.30-38 the Sinocolor Book color reference system covering 20,000 colors + 203.0-0 Its diff --git a/demo/onto_train/ectb_1003.txt b/demo/onto_train/ectb_1003.txt new file mode 100644 index 00000000..76acd2ee --- /dev/null +++ b/demo/onto_train/ectb_1003.txt @@ -0,0 +1,22 @@ + A Second Spring for Textiles in Taiwan?-LRB-Laura Li/photos by Pu Hua-chih/tr. by Robert Taylor-RRB- Early in December the China Textile In-stitute, located at Tucheng in Taipei County, celebrated its 40th anniversary with a dynamic multimedia show. The CTI's 40-year history has borne witness to the rise and decline of Taiwan's textile industry. Forty years ago, Taiwan was just crossing the threshold of industrialization. The textile industry was the darling of the nation, just like the electronics industry today. Although it has lost its former kudos, the textile industry is still an indispensable part of Taiwan's industrial landscape. For the last decade, the CTI has been working hand in hand with the industry, quietly sowing the seeds of research and development in many places. Can those seeds germinate to create a second spring for Taiwan's textile industry? As the latest bout of winter weather hits Taiwan, do you want to go up Mt. Hehuan to see the snow? You could put on a jacket containing highly insulating melt-spun ceramic fibers. When the wind sends a fine driving rain slanting across the water, are you still unwilling to forgo the pleasure of sea angling? Why not wear some micropore breathable rainwear, with an outer layer which is completely waterproof, but an inner layer which is dry and comfortable on the skin? Tencel, made from wood cellulose, has given the lie to the notion that man-made fibers never degrade, and is set to become one of the most important fibers of the coming environmental century; and the shrimp and crab shells which were once tossed away are now being processed to extract chitin, which when used to treat clothing can inhibit bacteria and mold and prevent unwanted odors, and which can also be used as a dressing for burns which both reduces inflammation and encourages new tissue growth.... + + What sunset industry? Ceramic fibers, stainless steel, shrimp shells-at first glance there seems to be no connection with spinning and weaving. But in fact these are among the latest products and trends quietly taking shape in the textile industry. With the rise of new industries such as electronics, aerospace and biotechnology, the areas of application for textile products have expanded ever wider, from being simply coverings for the human body to finding their way up into space and down into the earth." There are only sunset products, not sunset industries." These words from competitiveness guru Michael Porter hit the nail on the head when it comes to Taiwan's textile industry's current efforts to transform itself into a high-tech, capital-and information-intensive sector." Twenty years ago, the polyester uniforms worn by schoolchildren in Taiwan turned dreadfully stiff when you tried to wash them; cotton clothes shrank; nylon made your skin red and itchy; stockings would ladder if you so much as looked at them; and decent clothes had to be expensively dry cleaned," recalls CTI president Yao Hsing-chuan. If clothes in Taiwan today are getting ever lighter, softer, warmer, more wrinkle-free and easier to keep clean, and if their colors are bright, fresh and stain-resistant, this is not thanks to the magic wand wielded by Cinderella's fairy godmother, but is the result of the unceasing efforts towards research, development and upgrading put in by the textile industry over the years." Upgrading" has been a word on the lips of everyone in the textile industry in recent years. But the adverse environment in which the industry has had to operate has made the pace of that upgrading halting and hesitant." In the early 1980s, making ready-to-wear garments for export was pretty much a sure-fire money-spinner. Everything sold like hot cakes, just like electronics today," says Yao Hsing-chuan. But around 1987, under strong US pressure, the NT dollar appreciated, and exporters lost their competitive price advantage. Next, there was a series of rises in land and labor costs. Garment making is labor-intensive, and the combination of internal and external pressures led to wholesale factory closures. Many firms moved production to mainland China or Southeast Asia, and Taiwan's remaining domestic textile industry was dramatically reshuffled. With the departure of the ready-to-wear industry, Taiwan lost its" garment kingdom" status. But looking from another perspective, the Taiwanese manufacturers who spread all over Southeast Asia, mainland China and Latin America were still very much a force to be reckoned with, and in their new locations they continued to source raw materials and semi-finished goods from Taiwan. With their support, the upstream portions of the industry-fiber making, yarn spinning, weaving, dyeing, finishing and garment design-were able to stay in Taiwan and prosper. In September 1998, while the industry was still reeling from the effects of the Asian financial crisis, construction began of the long-planned specialist industrial parks in Yunlin and Changhua Counties. These were the peak of the large investments made in Taiwan's textile industry over recent years. But overcapacity and shrinking demand caused by the crisis had hit the industry hard. By mid-1999 things were looking up again, but then massive power failures in the wake of the 21 September earthquake wiped out nearly NT$ 10 billion worth of textile orders. + + Taiwan's biggest currency earner Nevertheless, thanks to its solid foundations built up over 40 years, the textile industry is still a pillar of Taiwan's economy. In 1999, Taiwan's textile exports are expected to be worth US$ 14.5 billion or 12 % of the island's total exports, behind only electronics-LRB-17.6 %-RRB-and IT/telecom products-LRB-12.3 %-RRB-. Moreover, after deducting the cost of imported raw materials etc., the textile industry is Taiwan's biggest foreign currency earner, bringing in over US$ 10 billion each year. For instance, polyester is the most widely used man-made fiber, and little Taiwan produces no less than 17 % of the total worldwide supply, making it the largest supplier. The island's total production of man-made fibers ranks third globally, behind the USA and mainland China. At present, the largest category among Taiwan's textile exports is finished cloth, which accounts for more than 60 % of Taiwan's textile exports by value." The textile industry has deep roots in Taiwan, and there are many processes to be gone through from the fiber to the finished garment. Thus there are many key technologies which can be developed, and the industry can sustain a large workforce." CTI acting vice-president Wu Chung-fu observes that the advanced countries still devote substantial efforts to developing textile technologies, and naturally this is something Taiwan should not lightly give up. We ca n't give it up, but neither can we rest on our laurels. With Southeast Asia and mainland China catching up fast, Taiwan's textile industry will only have a future if it can quickly transform itself and develop towards high-tech products. The CTI, which a decade ago began a timely change in its role to one of a specialist R&D center working in partnership with firms, has become the leading R&D center for Taiwan's several thousand textile industry companies. The development of new" nylon 66" fibers is a case in point. Grace Kuo, a vice-president at Ta Ching Hwa Enterprise Co.-LRB-TCH-RRB-, as yet the only company in Taiwan to manufacture nylon 66 filament, recounts that ten years ago her husband and a group of friends who had worked many years at Formosa Chemicals and Fiber Corporation wanted to set up in business for themselves. At that time, a huge amount of nylon 66 fiber-600 tonnes per month-was used by the local textile industry in the manufacture of specialty apparel such as women's tights, swimwear and underwear. But Taiwan had no manufacturing capability in the fiber, and relied entirely on imports. This aroused their interest in entering the field. + + David and Goliath Grace Kuo comments that nylon 66 was a new fiber with good elasticity, high strength and a soft, bulky feel, along with good resistance to ultraviolet light. Adding just 15 to 20 % of nylon 66 to a fabric transforms it, making it thoroughly suited to modern-day demands for" healthy, comfortable" clothing. The big international manufacturers had realized this and adopted an oligarchic strategy: as well as making it difficult for others to obtain the raw materials, they were very careful not to reveal any of their manufacturing know-how. But thanks to the expertise the TCH team had built up over many years in the textile fibers field, within the first year after the company was set up they succeeded in drawing filaments from nylon 66 granules." As soon as we did that, Dupont cut their prices, hoping to squeeze us right out of the market," says Grace Kuo with a smile. But after going head-to-head with TCH for several years, Dupont realized how resilient the company was, and since then the two firms have begun to cooperate. Currently, TCH is the world's fifth-largest manufacturer of nylon 66 filament, supplying 8 % of the global market. It stands as another example of a Taiwanese company successfully taking on the big boys in international markets. The original use of nylon 66 was in tights and swimwear, but these are far from being the only applications for such a superior new fiber. But because the filaments are so thin-LRB-only half the thickness of a human hair-RRB-, they can easily break at the yarn spinning stage, and at the dyeing stage the yarn absorbs only the smallest dye molecules. Hence firms around the world are still feeling their way forward on how to use this fiber. For this reason, TCH approached the CTI to conduct a series of cooperative development projects. To date they have successfully developed various new yarns blended from nylon 66 and other fibers such as acrylic or polyester, and have staged numerous seminars and visited many firms to teach users how to weave and dye the new fabrics and how to design for them. Why go to such lengths to popularize new fibers? Grace Kuo says the textile industry today needs to take a lead from the electronics industry, and constantly strive for innovation:" What consumer today does n't already have a wardrobe full of clothes? If you want to persuade her to spend, you have to keep putting out products which look novel at the first glance and feel great at the first touch. Only then can you create demand and stimulate consumption," she avers. Behind the quest for innovation and change, there needs to be a great deal of R&D work, along with a keen nose for the market. But 95 % of Taiwan's textile firms are small or medium-sized enterprises. They do not have the facilities or staff to carry on R&D, and they lack the perspective to take a broad view of worldwide trends. Hence in the upgrading process, organizations like the CTI will play an increasingly important role. + + Flexibility v. perfectionism However, G-Fun Industrial Corporation general manager Tsai Chiu-hsiung, who worked at the CTI for many years before setting up in business for himself in late 1998, has had a different experience. While at the CTI, Tsai headed a project to develop the technology for making breathable waterproof fabrics. At that time, he says, few manufacturers in Taiwan were both interested in the technology and competent to apply it. Later, when his team had developed the process, many firms expressed an interest. But once they had acquired the technology, many lost money or even went out of business-the results were far from ideal." At that time I felt very frustrated. It was clearly a good process, but after buying the technology for a nominal sum, many companies did n't value it," says Tsai Chiu-hsiung. On the one hand, the market for breathable waterproof fabrics was not yet mature, and too many companies entering all at once knocked the bottom out of the market; on the other, manufacturers in Taiwan still lack the concept of dedicating production equipment to one product. For fear of putting all their eggs in one basket, many firms are in the habit of producing whatever they can get orders for: today it may be waterproof fabric, tomorrow cloth for tarpaulins, and next month purses. Their product mix is very varied, with frequent switching. This makes quality control difficult, so that when firms are faced with a technically demanding product, defects may easily arise. Worse, they are often unable even to identify the cause."' Flexibility' helps SMEs survive in difficult times, but it is not conducive to the perfectionist attitudes needed when upgrading." Tsai Chiu-hsiung, who urges companies to" know when to give things up," has now been in business for himself for a year, and his is the only firm in Taiwan which specializes in applying breathable waterproof coatings to fabrics. With more orders than he can handle, he is now preparing to build a new factory at Touliu in Yunlin County. G-Fun's micropore breathable coating is a compound containing special water-soluble granules which create tiny pores in the fabric surface. Sweat can evaporate through these pores without being absorbed by the fabric, improving comfort compared with traditional hydrophilic fabrics which when worn in the rain start sticking to the body after a time. G-Fun is also co-operating with the CTI to develop waterproof fabrics with both micropore and hydrophilic characteristics. At present, most of the company's orders come from Europe and the USA, and are made into upmarket leisurewear such as climbing or golf apparel which sells for as much as NT$ 8,000 per garment. Like TCH, G-Fun also hopes its products can help Taiwan's textile industry upgrade." The 21st century will be an age of leisure, and Taiwanese sport and leisurewear fabrics have long held first place worldwide. If they can all be given better breathability and water resistance, this will greatly increase their added value," says Tsai Chiu-hsiung. Fabrics treated by G-Fun are currently a third cheaper than the same grades of fabric from Japan, and Tsai hopes he can attract Taiwanese firms to make greater use of them. + + A short-term view Another type of new fabric which is in great demand is wicking fabric, based on fibers with a special cross-section. The leading volume producer of wicking fibers in Taiwan is Chung Shing Textile Company. Its president, William Shang, explains that conventional fibers have a round cross-section, but by changing the fibers' physical properties it is possible to produce them with various cross-sectional profiles such as X or Y shapes, which create capillaries along the fibers. These not only quickly wick sweat away from the skin, but also regulate body temperature and allow garments to dry quickly after washing. However, the fibers' special properties can easily be destroyed in the various processes they go through such as yarn spinning, weaving, dyeing and finishing, so that making finished garments requires a high degree of technical sophistication. Chung Shing has launched a fabric named Coolplus to compete with Dupont's equivalent product, Coolmax." Developing new fibers is the most important element in upgrading the textile industry," says Shang. However, he acknowledges that although many new products are being developed in Taiwan, on closer inspection they are all copies of products first developed elsewhere, and so fall some way short of real innovation. But whereas it used to take Taiwanese companies several years of trial and error to figure out how to make such products, the gap between them and their European and American competitors is growing ever smaller. When new products appear overseas it now only takes Taiwan two to three years to bring out an equivalent. William Shang observes that when most Taiwanese firms see something new at an overseas exhibition they will bring back a sample, inspect it under a high-powered microscope to determine the weaving method and have it chemically analyzed to find out the composition of the fibers and finishing chemicals. With Taiwan's long years of manufacturing experience, it is then not difficult to reproduce the product with 70-80 % accuracy. However, Shang does not see this as a viable long-term strategy." The best strategy for the long-term is still to put more effort into basic scientific research," he says. For example, he read in Time magazine that because spiders produce the best natural fibers in the world, being both lustrous and resilient, US scientists transferred spider genes into silkworms to produce" super silkworms." The technique succeeded, but because the Americans were not very interested in producing clothing textiles, they did not commercialize it. When it comes to this kind of combination of lateral thinking and advanced technology, Taiwan still has some way to go. Shang, currently chairman of the CTI's technology committee, is well aware of where the obstacle to R&D lies:" Innovative ideas take time to mature, and you have to accept a high degree of uncertainty. But our environment does not allow this." He notes that industries in Taiwan always pursue short-term profits, so there is never much interest in technologies which are too forward-looking and can not immediately produce saleable products. As one of 18 industrial institutes under the Ministry of Economic Affairs, the CTI has some state funding. But with ever greater budgetary constraints and pressure to cover its own costs, development projects mostly concentrate on firms' current needs, and stress the sales and profit they generate. Under such circumstances, epoch-making innovations are unlikely to emerge. + + Standardizing colors Because innovation is so hard to achieve, the highly innovative Sinocolor Book color reference system, which was launched at the CTI's 40th anniversary celebration, has been greeted with great admiration by many. The system's inventor, Hsu Yun-peng, only had a junior high school education, but had researched color matching for 18 years in a dyeing factory. Discovering that imported color matching software was of little practical use, Hsu, who did n't know a word of English, taught himself to program and wrote an improved version of the software. Writing color matching software earned Hsu Yun-peng a lot of money, but this was not his main purpose. His real aim was to produce a color reference system that was genuinely easy to use, to overcome the lack of color standardization which had long plagued the dyeing industry. To pursue this goal he quit his job, moved to the suburbs of Kuishan in Taoyuan County, and began to spend 18 hours a day studying the problem. Quite apart from the difficulties of keeping his family fed, he often was n't even sure how old his three children were and what year of school they were in. Finally he used a three-dimensional model to create a regularly graded, finely differentiated color reference system covering 20,000 colors, each with clear" color coordinates." These features are unmatched by any of the systems currently in common use worldwide, which only define up to 3,000 colors. The textile industry's efforts to upgrade are gradually showing some results, but looking at the situation overall, CTI president Yao Hsing-chuan is still somewhat worried. He comments that the majority of companies still have the traditional mindset of pursuing low-cost, high-volume production. Taiwan is the world's third biggest producer of man-made fibers, but it only produces a small range of mass-market fibers for apparel fabrics, to the almost total neglect of the hundred or so other high-added-value, special fibers on the market such as high-strength fibers for bullet-proof fabrics, elastic fibers or superalloy aerospace fibers. Again, when it comes Taiwan's biggest export item, finished fabrics, these too are largely limited to apparel fabrics, with few companies getting involved in other areas despite their potential. For instance, Taiwan has been struck by many landslides in recent years, and requires large quantities of geotextiles-heavy-grade textiles laid under or around civil engineering structures to prevent erosion by groundwater movement. The currently planned high-speed rail system alone is expected to require several million yards of geotextiles. But Taiwanese companies are inexperienced in this area, and sending products overseas for quality certification tests is time consuming and complicated, so local companies can only stand and watch as the entire market goes to imported products. + + Bullet-proof fabrics? Geotextiles? Are these part of the textile industry? Indeed they are. Yao Hsing-chuan says that textile industry products have three main fields of application: apparel, furnishings and industrial. At present, over 95 % by value of ROC textile industry output is accounted for by apparel products with low added value. By contrast, in the USA textiles for clothing and industrial applications are produced in equal quantities, and industrial textiles include a wide variety of different products, many of which are technically demanding and command profit margins with which most apparel products can not compare. Hence the CTI has already made it one of its major goals to encourage firms to shift their orientation towards industrial textiles. The development of stainless-steel fibers is one success story in this area. From false teeth to space suits Dotted among the paddy fields of Taichung County's Houli Rural Township are many metal-clad buildings which house a variety of factories producing such products as plastics, furniture and electronic components. Among them is King's Metal Fiber Technologies Company, the only firm in Taiwan which draws fibers from stainless steel. King's president Rocky Chang is known to all as Dr. Chang, and is indeed still a practicing dentist. A decade or so ago, while he was studying in Australia, he developed an interest in metallurgy, and hoped to develop the use of metals in tooth implants. Later he learned that stainless steels have an enormously wide range of applications in the textiles, industrial and military fields. But he could not find a partner to work with in Australia, so he returned to Taiwan and began collaborating with the CTI. Today, not only is King's on a par with the large overseas manufacturers in terms of filament drawing technology, but to assist local downstream manufacturers in using its products, it has also set up metal fiber yarn spinning and fabric weaving plants, and is making efforts in the area of nonwoven fabrics. Stroking the silver-gray ringlets which are twice as fine as human hair, Chang says that these soft, flexible fibers of high-grade steel can not only make fashion fabrics glisten with a mysterious modern sheen suitable for a millennium party, but-thanks to metals' outstanding capacity to shield and conduct electromagnetic waves, and their ability to withstand high temperatures and acid or caustic environments-they also have a wide range of applications in many industries. For instance, at a recent international furniture show in Taipei, King's exhibited sound insulating panels containing metal fibers, which hi-fi buffs can install to produce an excellent sound studio effect. Cellphone cases of metal fabric can shield users from the electromagnetic radiation the phones produce; and in the clean rooms of silicon wafer fabs, where dust particles attracted by static electricity on clothing are the biggest bugbear, there is a host of applications for anti-static fabrics, from workers' clothing and footwear to trolleys, conveyor belts and wall coverings. Rocky Chang says that before King's started producing metal fibers, the market was divided up between a few foreign companies which charged high prices and produced only small quantities of products. Furthermore, when Taiwanese users had difficulties with production they did not know who to turn to for help. Looking into the future, Chang hopes that as a key material, stainless steel fiber can have a" locomotive" effect, encouraging various industries in Taiwan to develop a range of different products. + + Time to get weaving Developing industrial textiles requires an understanding of different industries' needs, and also requires new channels of distribution. For instance, cellphone cases have to be sold through electronic goods shops, while car airbags have to be sold into automotive distribution channels. For entrepreneurs who have previously only sold into the clothing trade, this is a challenge. How to promote" cross-industry cooperation," and get people in the textile industry to look beyond their own industry's boundaries and become effective partners for the electronics, construction, medical supplies and other industries is the next task for the CTI to tackle. As CTI president Yao Hsing-chuan observes, what has enabled Taiwan's textile industry to survive through the ups and downs of its history is the highly motivated attitude of its entrepreneurs. It is this ambition which is the best guarantee of the industry creating a second spring. + + p. 30 An unusual fashion show at the China Textile Institute's 40th anniversary celebration: the focus is not on showing fashionable new styles, but on introducing the latest fruits of textile product development in the ROC. The stainless steel fibers in the fabrics worn by these models have potential applications not only in avant-garde fashions, but also in industrial conveyor belts and even space suits. p. 32 Eight years ago, this was just a textile testing center with a handful of single-storey buildings and a staff of less than 20. But president Yao Hsing-chuan-LRB-left-RRB-, has single-handedly transformed it into today's China Textiles Institute, with a staff of nearly 300. With him is Ho Yu-lan, formerly director of the Taiwan Textile Federation and now consultant to the CTI. p. 34 The CTI has an artificial climate chamber which can simulate all kinds of weather conditions such as frost and rain. Our picture shows members of an ROC mountaineering team testing the warmth and anti-condensation qualities of their clothing before setting out to tackle Mt. Everest.-LRB-courtesy of CTI-RRB- + + p. 35 Guess what these lads are doing? They are playing a" computer handle test" game: after carefully feeling a numbered cloth sample they score it for handle-LRB-crispness, drape, pliability, etc.-RRB- and then compare their scores with those given by the computer. Many are surprised to find how different the results are! p. 36 This high-grade fabric is completely waterproof, yet breathes to allow sweat to evaporate. It can be made into military or police rainwear and horse blankets, and is also in great demand in advanced countries for leisure wear. The picture at left shows high-value leisure apparel; above, the fabric coating process. p. 37 Various kinds of protective fabrics find a wide range of applications in industry. The picture above shows articles made by the" fully fashioned" knitting method, which vastly increases their strength and resilience, making them suitable for crash helmet liners, protective lagging for water pipes, climbing ropes and more. At right, cut-resistant gloves containing stainless steel fibers. They cost much less than imported products, but are just as effective. p. 37 The development of new fibers with various properties or special feel can help the industry upgrade. At left we see soft, flexible yarns spun from high-grade stainless steel; below, chitin, which can be drawn into thread or ground into powder to make health food. p. 38 Hsu Yun-peng built on his solid practical grounding to not only develop color matching software which is widely used in Taiwan, but also compile the Sinocolor Book color reference system covering 20,000 colors. Its recent launch was a big event for Taiwan's textile industry. p. 39 Practicing dentist Rocky Chang, known to all as" Dr. Chang," has collaborated with the CTI to develop yarn spinning and fabric weaving technologies for metal fibers, thus opening up a new field for the ROC textile industry. + diff --git a/demo/p2.5_c2e_0001.onf b/demo/p2.5_c2e_0001.onf new file mode 100644 index 00000000..8ccaa885 --- /dev/null +++ b/demo/p2.5_c2e_0001.onf @@ -0,0 +1,1197 @@ +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + The changes in our business model on this occasion are that we want to promote our commercial edition CRM System--* Easy + Client CRM *, and continue to retain and develop our open source CRM system--C3CRM. + +Treebanked sentence: +-------------------- + The changes in our business model on this occasion are that we want *PRO*-1 to promote our commercial edition CRM System + -- * Easy Client CRM * , and continue *-2 to retain and develop our open source CRM system -- C3CRM . + +Tree: +----- + (TOP (S (NP-SBJ (NP (DT The) + (NNS changes)) + (PP (IN in) + (NP (PRP$ our) + (NN business) + (NN model))) + (PP-TMP (IN on) + (NP (DT this) + (NN occasion)))) + (VP (VBP are) + (SBAR-PRD (IN that) + (S (NP-SBJ-1 (PRP we)) + (VP (VBP want) + (S (NP-SBJ-2 (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VP (VB promote) + (NP (NP (PRP$ our) + (NML (JJ commercial) + (NN edition)) + (NNP CRM) + (NNP System)) + (: --) + (NP (NFP *) + (NML (NNP Easy) + (NNP Client)) + (NNP CRM) + (NFP *)))) + (, ,) + (CC and) + (VP (VB continue) + (S (NP-SBJ (-NONE- *-2)) + (VP (TO to) + (VP (VB retain) + (CC and) + (VB develop) + (NP (NP (PRP$ our) + (NML (JJ open) + (NN source)) + (NN CRM) + (NN system)) + (: --) + (NP (NNP C3CRM)))))))))))))) + (. .))) + +Leaves: +------- + 0 The + 1 changes + 2 in + 3 our + 4 business + 5 model + 6 on + 7 this + 8 occasion + 9 are + sense: be-v.1 + prop: be.01 + v * -> 9:0, are + ARG1 * -> 0:2, The changes in our business model on this occasion + ARG2 * -> 10:1, that we want *PRO*-1 to promote our commercial edition CRM System -- * Easy Client CRM + * , and continue *-2 to retain and develop our open source CRM system -- C3CRM + 10 that + 11 we + 12 want + sense: want-v.1 + prop: want.01 + v * -> 12:0, want + ARG0 * -> 11:1, we + ARG1 * -> 13:2, *PRO*-1 to promote our commercial edition CRM System -- * Easy Client CRM * , and + continue *-2 to retain and develop our open source CRM system -- C3CRM + 13 *PRO*-1 + 14 to + 15 promote + sense: promote-v.1 + prop: promote.02 + v * -> 15:0, promote + ARG0 * -> 13:0, *PRO*-1 -> 11:1, we + ARG1 * -> 16:2, our commercial edition CRM System -- * Easy Client CRM * + 16 our + 17 commercial + 18 edition + 19 CRM + ! name: PRODUCT 19-25 CRM System -- * Easy Client CRM + 20 System + 21 -- + 22 * + 23 Easy + 24 Client + 25 CRM + 26 * + 27 , + 28 and + 29 continue + sense: continue-v.1 + prop: continue.01 + v * -> 29:0, continue + ARG0 * -> 13:0, *PRO*-1 -> 11:1, we + ARG1 * -> 30:2, *-2 to retain and develop our open source CRM system -- C3CRM + 30 *-2 + 31 to + 32 retain + sense: retain-v.2 + prop: retain.01 + v * -> 32:0, retain + ARG0 * -> 30:0, *-2 -> 13:0, *PRO*-1 -> 11:1, we + ARG1 * -> 35:2, our open source CRM system -- C3CRM + 33 and + 34 develop + sense: develop-v.2 + prop: develop.02 + v * -> 34:0, develop + ARG0 * -> 30:0, *-2 -> 13:0, *PRO*-1 -> 11:1, we + ARG1 * -> 35:2, our open source CRM system -- C3CRM + 35 our + 36 open + 37 source + 38 CRM + 39 system + 40 -- + 41 C3CRM + 42 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + We 're certainly compelled to make this choice, + +Treebanked sentence: +-------------------- + We 're certainly compelled *-1 *PRO*-2 to make this choice , + +Tree: +----- + (TOP (S (NP-SBJ-1 (PRP We)) + (VP (VBP 're) + (ADVP (RB certainly)) + (VP (VBN compelled) + (NP-2 (-NONE- *-1)) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB make) + (NP (DT this) + (NN choice))))))) + (, ,))) + +Leaves: +------- + 0 We + 1 're + 2 certainly + 3 compelled + prop: compel.01 + v * -> 3:0, compelled + ARGM-ADV * -> 2:1, certainly + ARG1 * -> 4:0, *-1 -> 0:1, We + ARG2 * -> 5:2, *PRO*-2 to make this choice + 4 *-1 + 5 *PRO*-2 + 6 to + 7 make + sense: make-v.1 + 8 this + 9 choice + 10 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Before we fully undertook C3CRM, we had always felt that we would be able to survive in China by offering technical + support and services. + +Treebanked sentence: +-------------------- + Before we fully undertook C3CRM , we had always felt that we would be able *PRO*-1 to survive in China by *PRO*-2 + offering technical support and services . + +Tree: +----- + (TOP (S (SBAR-TMP (IN Before) + (S (NP-SBJ (PRP we)) + (ADVP-MNR (RB fully)) + (VP (VBD undertook) + (NP (NNP C3CRM))))) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBD had) + (ADVP-TMP (RB always)) + (VP (VBN felt) + (SBAR (IN that) + (S (NP-SBJ-1 (PRP we)) + (VP (MD would) + (VP (VB be) + (ADJP-PRD (JJ able) + (S (NP-SBJ-2 (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB survive) + (PP-LOC (IN in) + (NP (NNP China))) + (PP-MNR (IN by) + (S-NOM (NP-SBJ (-NONE- *PRO*-2)) + (VP (VBG offering) + (NP (JJ technical) + (NN support) + (CC and) + (NNS services))))))))))))))) + (. .))) + +Leaves: +------- + 0 Before + 1 we + 2 fully + 3 undertook + sense: undertake-v.1 + prop: undertake.01 + v * -> 3:0, undertook + ARG0 * -> 1:1, we + ARGM-EXT * -> 2:1, fully + ARG1 * -> 4:1, C3CRM + 4 C3CRM + name: PRODUCT 4-4 C3CRM + 5 , + 6 we + 7 had + 8 always + 9 felt + sense: feel-v.3 + prop: feel.02 + v * -> 9:0, felt + ARGM-TMP * -> 0:1, Before we fully undertook C3CRM + ARG0 * -> 6:1, we + ARGM-TMP * -> 8:1, always + ARG1 * -> 10:1, that we would be able *PRO*-1 to survive in China by *PRO*-2 offering technical + support and services + 10 that + 11 we + 12 would + 13 be + sense: be-v.1 + prop: be.01 + v * -> 13:0, be + ARG1 * -> 11:1, we + ARGM-MOD * -> 12:0, would + ARG2 * -> 14:1, able *PRO*-1 to survive in China by *PRO*-2 offering technical support and services + 14 able + 15 *PRO*-1 + 16 to + 17 survive + sense: survive-v.1 + prop: survive.01 + v * -> 17:0, survive + ARG0 * -> 15:0, *PRO*-1 -> 11:1, we + ARGM-LOC * -> 18:1, in China + ARGM-MNR * -> 20:1, by *PRO*-2 offering technical support and services + 18 in + 19 China + name: GPE 19-19 China + 20 by + 21 *PRO*-2 + 22 offering + sense: offer-v.1 + prop: offer.01 + v * -> 22:0, offering + ARG0 * -> 21:0, *PRO*-2 -> 15:0, *PRO*-1 -> 11:1, we + ARG1 * -> 23:1, technical support and services + 23 technical + 24 support + 25 and + 26 services + 27 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + More than four months after we had established the company and officially gone into operation, we discovered that we + thought wrong, + +Treebanked sentence: +-------------------- + More than four months after we had established the company and officially gone into operation , we discovered that we + thought wrong , + +Tree: +----- + (TOP (S (SBAR-TMP (NP (QP (JJR More) + (IN than) + (CD four)) + (NNS months)) + (IN after) + (S (NP-SBJ (PRP we)) + (VP (VBD had) + (VP (VP (VBN established) + (NP (DT the) + (NN company))) + (CC and) + (ADVP-MNR (RB officially)) + (VP (VBN gone) + (PP-CLR (IN into) + (NP (NN operation)))))))) + (, ,) + (NP-SBJ (PRP we)) + (VP (VBD discovered) + (SBAR (IN that) + (S (NP-SBJ (PRP we)) + (VP (VBD thought) + (ADVP-MNR (RB wrong)))))) + (. ,))) + +Leaves: +------- + 0 More + 1 than + 2 four + ! name: DATE 2-3 four months + 3 months + 4 after + 5 we + 6 had + 7 established + sense: establish-v.1 + prop: establish.01 + v * -> 7:0, established + ARG0 * -> 5:1, we + ARG1 * -> 8:1, the company + 8 the + 9 company + 10 and + 11 officially + 12 gone + sense: go-v.1 + prop: go.02 + v * -> 12:0, gone + ARG0 * -> 5:1, we + ARGM-MNR * -> 11:1, officially + ARG4 * -> 13:1, into operation + 13 into + 14 operation + 15 , + 16 we + 17 discovered + sense: discover-v.1 + prop: discover.01 + v * -> 17:0, discovered + ARGM-TMP * -> 0:3, More than four months after we had established the company and officially gone into + operation + ARG0 * -> 16:1, we + ARG1 * -> 18:1, that we thought wrong + 18 that + 19 we + 20 thought + sense: think-v.1 + prop: think.01 + v * -> 20:0, thought + ARG0 * -> 19:1, we + ARGM-MNR * -> 21:1, wrong + 21 wrong + 22 , + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Domestic enterprises are not all very willing to pay for services. + +Treebanked sentence: +-------------------- + Domestic enterprises are not all very willing *PRO*-1 to pay for services . + +Tree: +----- + (TOP (S (NP-SBJ-1 (JJ Domestic) + (NNS enterprises)) + (VP (VBP are) + (RB not) + (DT all) + (ADJP-PRD (RB very) + (JJ willing) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB pay) + (PP-CLR (IN for) + (NP (NNS services)))))))) + (. .))) + +Leaves: +------- + 0 Domestic + 1 enterprises + 2 are + sense: be-v.1 + prop: be.01 + v * -> 2:0, are + ARG1 * -> 0:1, Domestic enterprises + ARGM-NEG * -> 3:0, not + ARG2 * -> 5:1, very willing *PRO*-1 to pay for services + 3 not + 4 all + 5 very + 6 willing + 7 *PRO*-1 + 8 to + 9 pay + sense: pay-v.1 + prop: pay.01 + v * -> 9:0, pay + ARG0 * -> 7:0, *PRO*-1 -> 0:1, Domestic enterprises + ARG3 * -> 10:1, for services + 10 for + 11 services + 12 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Even if we had some service-paying customers, they would pay for a while and then no more. + +Treebanked sentence: +-------------------- + Even if we had some service - paying customers , they would pay for a while and then no more . + +Tree: +----- + (TOP (S (SBAR-ADV (ADVP (RB Even)) + (IN if) + (S (NP-SBJ (PRP we)) + (VP (VBD had) + (NP (DT some) + (ADJP (NN service) + (HYPH -) + (VBG paying)) + (NNS customers))))) + (, ,) + (NP-SBJ (PRP they)) + (VP (MD would) + (VP (VB pay) + (UCP-TMP (PP (IN for) + (NP (DT a) + (NN while))) + (CC and) + (ADVP-TMP (RB then)) + (ADVP (RB no) + (RBR more))))) + (. .))) + +Leaves: +------- + 0 Even + 1 if + 2 we + 3 had + sense: have-v.1 + 4 some + 5 service + 6 - + 7 paying + prop: pay.01 + v * -> 7:0, paying + ARG3 * -> 5:0, service + ARG0 * -> 8:0, customers + 8 customers + 9 , + 10 they + 11 would + 12 pay + sense: pay-v.1 + prop: pay.01 + v * -> 12:0, pay + ARGM-ADV * -> 0:2, Even if we had some service - paying customers + ARG0 * -> 10:1, they + ARGM-MOD * -> 11:0, would + ARGM-TMP * -> 13:2, for a while and then no more + 13 for + 14 a + 15 while + 16 and + 17 then + 18 no + 19 more + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + This was because they felt that they simply did not need our services and that by paying services fees every year they + felt they would lose. + +Treebanked sentence: +-------------------- + This was because they felt that they simply did not need our services and that by *PRO* paying services fees every year + they felt 0 they would lose *T*-1 . + +Tree: +----- + (TOP (S (NP-SBJ (DT This)) + (VP (VBD was) + (SBAR-PRP-PRD (IN because) + (S (NP-SBJ (PRP they)) + (VP (VBD felt) + (SBAR (SBAR (IN that) + (S (NP-SBJ (PRP they)) + (ADVP (RB simply)) + (VP (VBD did) + (RB not) + (VP (VB need) + (NP (PRP$ our) + (NNS services)))))) + (CC and) + (SBAR (IN that) + (S (PP-PRP-TPC-1 (IN by) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG paying) + (NP (NNS services) + (NNS fees)) + (NP-TMP (DT every) + (NN year))))) + (NP-SBJ (PRP they)) + (VP (VBD felt) + (SBAR (-NONE- 0) + (S (NP-SBJ (PRP they)) + (VP (MD would) + (VP (VB lose) + (PP-PRP (-NONE- *T*-1)))))))))))))) + (. .))) + +Leaves: +------- + 0 This + 1 was + sense: be-v.2 + prop: be.01 + v * -> 1:0, was + ARG1 * -> 0:1, This + ARG2 * -> 2:1, because they felt that they simply did not need our services and that by *PRO* paying + services fees every year they felt 0 they would lose *T*-1 + 2 because + 3 they + 4 felt + sense: feel-v.3 + prop: feel.02 + v * -> 4:0, felt + ARG0 * -> 3:1, they + ARG1 * -> 5:2, that they simply did not need our services and that by *PRO* paying services fees + every year they felt 0 they would lose *T*-1 + 5 that + 6 they + 7 simply + 8 did + 9 not + 10 need + sense: need-v.1 + prop: need.01 + v * -> 10:0, need + ARG0 * -> 6:1, they + ARGM-ADV * -> 7:1, simply + ARGM-NEG * -> 9:0, not + ARG1 * -> 11:1, our services + 11 our + 12 services + 13 and + 14 that + 15 by + 16 *PRO* + 17 paying + sense: pay-v.1 + prop: pay.01 + v * -> 17:0, paying + ARG0 * -> 16:0, *PRO* + ARG1 * -> 18:1, services fees + ARGM-TMP * -> 20:1, every year + 18 services + 19 fees + 20 every + 21 year + 22 they + 23 felt + sense: feel-v.3 + prop: feel.02 + v * -> 23:0, felt + ARG0 * -> 22:1, they + ARG1 * -> 24:1, 0 they would lose *T*-1 + 24 0 + 25 they + 26 would + 27 lose + sense: lose-v.2 + prop: lose.03 + v * -> 27:0, lose + ARG0 * -> 25:1, they + ARGM-MOD * -> 26:0, would + ARGM-MNR * -> 28:0, *T*-1 -> 15:1, by *PRO* paying services fees every year + 28 *T*-1 + 29 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + So it is currently very difficult to rely on collecting fees for services in China. + +Treebanked sentence: +-------------------- + So it *EXP*-1 is currently very difficult *PRO* to rely on *PRO* collecting fees for services in China . + +Tree: +----- + (TOP (S (CC So) + (NP-SBJ (NP (PRP it)) + (S (-NONE- *EXP*-1))) + (VP (VBZ is) + (ADVP-TMP (RB currently)) + (ADJP-PRD (RB very) + (JJ difficult)) + (S-1 (NP-SBJ (-NONE- *PRO*)) + (VP (TO to) + (VP (VB rely) + (PP-CLR (IN on) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG collecting) + (NP (NP (NNS fees)) + (PP (IN for) + (NP (NNS services)))) + (PP-LOC (IN in) + (NP (NNP China)))))))))) + (. .))) + +Leaves: +------- + 0 So + 1 it + 2 *EXP*-1 + 3 is + sense: be-v.1 + prop: be.01 + v * -> 3:0, is + ARGM-TMP * -> 4:1, currently + ARG2 * -> 5:1, very difficult + ARG1 * -> 7:2, *PRO* to rely on *PRO* collecting fees for services in China + 4 currently + 5 very + 6 difficult + 7 *PRO* + 8 to + 9 rely + prop: rely.01 + v * -> 9:0, rely + ARG0 * -> 7:0, *PRO* + ARG1 * -> 10:1, on *PRO* collecting fees for services in China + 10 on + 11 *PRO* + 12 collecting + sense: collect-v.2 + prop: collect.01 + v * -> 12:0, collecting + ARG0 * -> 11:0, *PRO* + ARG1 * -> 13:2, fees for services + ARGM-LOC * -> 16:1, in China + 13 fees + 14 for + 15 services + 16 in + 17 China + name: GPE 17-17 China + 18 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Chairman Pei of shopex feels the same way. + +Treebanked sentence: +-------------------- + Chairman Pei of shopex feels the same way . + +Tree: +----- + (TOP (S (NP-SBJ (NP (NNP Chairman) + (NNP Pei)) + (PP (IN of) + (NP (NNP shopex)))) + (VP (VBZ feels) + (NP-PRD (DT the) + (JJ same) + (NN way))) + (. .))) + +Leaves: +------- + 0 Chairman + 1 Pei + name: PERSON 1-1 Pei + 2 of + 3 shopex + name: ORG 3-3 shopex + 4 feels + sense: feel-v.1 + prop: feel.01 + v * -> 4:0, feels + ARG0 * -> 0:2, Chairman Pei of shopex + ARG1 * -> 5:1, the same way + 5 the + 6 same + 7 way + 8 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Previously, we wanted to collect fees for the vtiger Chinese language packs, but faced opposition from some friends. + +Treebanked sentence: +-------------------- + Previously , we wanted *PRO*-1 to collect fees for the vtiger Chinese language packs , but faced opposition from some + friends . + +Tree: +----- + (TOP (S (ADVP-TMP (RB Previously)) + (, ,) + (NP-SBJ-1 (PRP we)) + (VP (VP (VBD wanted) + (S (NP-SBJ (-NONE- *PRO*-1)) + (VP (TO to) + (VP (VB collect) + (NP (NP (NNS fees)) + (PP (IN for) + (NP (DT the) + (NNP vtiger) + (NML (JJ Chinese) + (NN language)) + (NNS packs)))))))) + (, ,) + (CC but) + (VP (VBD faced) + (NP (NP (NN opposition)) + (PP (IN from) + (NP (DT some) + (NNS friends)))))) + (. .))) + +Leaves: +------- + 0 Previously + 1 , + 2 we + 3 wanted + sense: want-v.1 + prop: want.01 + v * -> 3:0, wanted + ARGM-TMP * -> 0:1, Previously + ARG0 * -> 2:1, we + ARG1 * -> 4:2, *PRO*-1 to collect fees for the vtiger Chinese language packs + 4 *PRO*-1 + 5 to + 6 collect + sense: collect-v.2 + prop: collect.01 + v * -> 6:0, collect + ARG0 * -> 4:0, *PRO*-1 -> 2:1, we + ARG1 * -> 7:2, fees for the vtiger Chinese language packs + 7 fees + 8 for + 9 the + 10 vtiger + name: PRODUCT 10-10 vtiger + 11 Chinese + name: NORP 11-11 Chinese + 12 language + 13 packs + 14 , + 15 but + 16 faced + sense: face-v.1 + prop: face.01 + v * -> 16:0, faced + ARGM-TMP * -> 0:1, Previously + ARG0 * -> 2:1, we + ARG1 * -> 17:2, opposition from some friends + 17 opposition + 18 from + 19 some + 20 friends + 21 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In particular, those friends who had planned to use vtiger Chinese Edition to earn money or gain profit were strongly + opposing and carried out a trashy commentary attack against C3CRM's blog. + +Treebanked sentence: +-------------------- + In particular , those friends who *T*-1 had planned *PRO*-2 to use vtiger Chinese Edition *PRO*-3 to earn money or gain + profit were strongly opposing and carried out a trashy commentary attack against C3CRM 's blog . + +Tree: +----- + (TOP (S (PP (IN In) + (ADJP (JJ particular))) + (, ,) + (NP-SBJ (NP (DT those) + (NNS friends)) + (SBAR (WHNP-1 (WP who)) + (S (NP-SBJ-2 (-NONE- *T*-1)) + (VP (VBD had) + (VP (VBN planned) + (S (NP-SBJ-3 (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB use) + (NP (NNP vtiger) + (NNP Chinese) + (NNP Edition)) + (S-CLR (NP-SBJ (-NONE- *PRO*-3)) + (VP (TO to) + (VP (VP (VB earn) + (NP (NN money))) + (CC or) + (VP (VB gain) + (NP (NN profit)))))))))))))) + (VP (VP (VBD were) + (ADJP-PRD (RB strongly) + (JJ opposing))) + (CC and) + (VP (VBD carried) + (PRT (RP out)) + (NP (NP (DT a) + (NML (JJ trashy) + (NN commentary)) + (NN attack)) + (PP (IN against) + (NP (NP (NNP C3CRM) + (POS 's)) + (NN blog)))))) + (. .))) + +Leaves: +------- + 0 In + 1 particular + 2 , + 3 those + 4 friends + 5 who + 6 *T*-1 + 7 had + 8 planned + sense: plan-v.1 + prop: plan.01 + v * -> 8:0, planned + ARG0 * -> 6:0, *T*-1 -> 5:1, who + ARG1 * -> 9:2, *PRO*-2 to use vtiger Chinese Edition *PRO*-3 to earn money or gain profit + LINK-SLC * -> 3:1, those friends + * -> 6:0, *T*-1 -> 5:1, who + 9 *PRO*-2 + 10 to + 11 use + sense: use-v.1 + prop: use.01 + v * -> 11:0, use + ARG0 * -> 9:0, *PRO*-2 -> 6:0, *T*-1 -> 5:1, who + ARG1 * -> 12:1, vtiger Chinese Edition + ARG2 * -> 15:2, *PRO*-3 to earn money or gain profit + 12 vtiger + name: PRODUCT 12-12 vtiger + 13 Chinese + name: NORP 13-13 Chinese + 14 Edition + 15 *PRO*-3 + 16 to + 17 earn + sense: earn-v.1 + prop: earn.01 + v * -> 17:0, earn + ARG0 * -> 15:0, *PRO*-3 -> 9:0, *PRO*-2 -> 6:0, *T*-1 -> 5:1, who + ARG1 * -> 18:1, money + 18 money + 19 or + 20 gain + sense: gain-v.1 + prop: gain.02 + v * -> 20:0, gain + ARG0 * -> 15:0, *PRO*-3 -> 9:0, *PRO*-2 -> 6:0, *T*-1 -> 5:1, who + ARG1 * -> 21:1, profit + 21 profit + 22 were + sense: be-v.1 + prop: be.01 + v * -> 22:0, were + ARGM-DIS * -> 0:1, In particular + ARG1 * -> 3:2, those friends who *T*-1 had planned *PRO*-2 to use vtiger Chinese Edition *PRO*-3 to + earn money or gain profit + ARG2 * -> 23:1, strongly opposing + 23 strongly + 24 opposing + 25 and + 26 carried + sense: carry-v.8 + prop: carry.03 + v * -> 26:0, carried + -> 27:1, out + ARGM-DIS * -> 0:1, In particular + ARG0 * -> 3:2, those friends who *T*-1 had planned *PRO*-2 to use vtiger Chinese Edition *PRO*-3 to + earn money or gain profit + ARG1 * -> 28:2, a trashy commentary attack against C3CRM 's blog + 27 out + 28 a + 29 trashy + 30 commentary + 31 attack + 32 against + 33 C3CRM + name: PRODUCT 33-33 C3CRM + 34 's + 35 blog + 36 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Some friends said that there was no notification at all prior to the translation and that they felt a bit cheated for + collecting fees after the translation was done. + +Treebanked sentence: +-------------------- + Some friends said that there was no notification at all prior to the translation and that they felt a bit cheated for + *PRO* collecting fees after the translation was done *-1 . + +Tree: +----- + (TOP (S (NP-SBJ (DT Some) + (NNS friends)) + (VP (VBD said) + (SBAR (SBAR (IN that) + (S (NP-SBJ (EX there)) + (VP (VBD was) + (NP-PRD (NP (DT no) + (NN notification)) + (ADVP (RB at) + (RB all))) + (ADVP-TMP (RB prior) + (PP (IN to) + (NP (DT the) + (NN translation))))))) + (CC and) + (SBAR (IN that) + (S (NP-SBJ (PRP they)) + (VP (VBD felt) + (ADJP-PRD (NML (DT a) + (NN bit)) + (JJ cheated)) + (PP-PRP (IN for) + (S-NOM (NP-SBJ (-NONE- *PRO*)) + (VP (VBG collecting) + (NP (NNS fees)) + (SBAR-TMP (IN after) + (S (NP-SBJ-1 (DT the) + (NN translation)) + (VP (VBD was) + (VP (VBN done) + (NP (-NONE- *-1)))))))))))))) + (. .))) + +Leaves: +------- + 0 Some + 1 friends + 2 said + sense: say-v.1 + prop: say.01 + v * -> 2:0, said + ARG0 * -> 0:1, Some friends + ARG1 * -> 3:2, that there was no notification at all prior to the translation and that they felt a + bit cheated for *PRO* collecting fees after the translation was done *-1 + 3 that + 4 there + 5 was + sense: be-v.5 + prop: be.02 + v * -> 5:0, was + ARG1 * -> 6:2, no notification at all + ARGM-TMP * -> 10:1, prior to the translation + 6 no + 7 notification + 8 at + 9 all + 10 prior + 11 to + 12 the + 13 translation + 14 and + 15 that + 16 they + 17 felt + sense: feel-v.1 + prop: feel.01 + v * -> 17:0, felt + ARG0 * -> 16:1, they + ARG1 * -> 18:2, a bit cheated + ARGM-CAU * -> 21:1, for *PRO* collecting fees after the translation was done *-1 + 18 a + 19 bit + 20 cheated + 21 for + 22 *PRO* + 23 collecting + sense: collect-v.2 + prop: collect.01 + v * -> 23:0, collecting + ARG0 * -> 22:0, *PRO* + ARG1 * -> 24:1, fees + ARGM-TMP * -> 25:1, after the translation was done *-1 + 24 fees + 25 after + 26 the + 27 translation + 28 was + 29 done + 30 *-1 + 31 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + Later on, we were compelled by pressure to renew the free distribution of the Chinese language packs. + +Treebanked sentence: +-------------------- + Later on , we were compelled *-1 by pressure *PRO*-2 to renew the free distribution of the Chinese language packs . + +Tree: +----- + (TOP (S (ADVP-TMP (RB Later) + (RB on)) + (, ,) + (NP-SBJ-1 (PRP we)) + (VP (VBD were) + (VP (VBN compelled) + (NP-2 (-NONE- *-1)) + (PP (IN by) + (NP-LGS (NN pressure))) + (S (NP-SBJ (-NONE- *PRO*-2)) + (VP (TO to) + (VP (VB renew) + (NP (NP (DT the) + (JJ free) + (NN distribution)) + (PP (IN of) + (NP (DT the) + (NML (JJ Chinese) + (NN language)) + (NNS packs))))))))) + (. .))) + +Leaves: +------- + 0 Later + 1 on + 2 , + 3 we + 4 were + 5 compelled + prop: compel.01 + v * -> 5:0, compelled + ARG1 * -> 6:0, *-1 -> 3:1, we + ARG0 * -> 7:1, by pressure + ARG2 * -> 9:2, *PRO*-2 to renew the free distribution of the Chinese language packs + 6 *-1 + 7 by + 8 pressure + 9 *PRO*-2 + 10 to + 11 renew + sense: renew-v.1 + prop: renew.01 + v * -> 11:0, renew + ARG0 * -> 9:0, *PRO*-2 -> 6:0, *-1 -> 3:1, we + ARG1 * -> 12:2, the free distribution of the Chinese language packs + 12 the + 13 free + 14 distribution + 15 of + 16 the + 17 Chinese + name: NORP 17-17 Chinese + 18 language + 19 packs + 20 . + + +------------------------------------------------------------------------------------------------------------------------ + +Plain sentence: +--------------- + In the future, we will continue to provide everybody free vtiger CRM Chinese language packs and translation tools + +Treebanked sentence: +-------------------- + In the future , we will continue *-1 to provide everybody free vtiger CRM Chinese language packs and translation tools + +Tree: +----- + (TOP (S (PP-TMP (IN In) + (NP (DT the) + (NN future))) + (, ,) + (NP-SBJ-1 (PRP we)) + (VP (MD will) + (VP (VB continue) + (S (NP-SBJ (-NONE- *-1)) + (VP (TO to) + (VP (VB provide) + (NP (NN everybody)) + (NP (JJ free) + (NML (NNP vtiger) + (NNP CRM)) + (NML (JJ Chinese) + (NN language)) + (NML (NML (NNS packs)) + (CC and) + (NML (NN translation) + (NNS tools))))))))))) + +Leaves: +------- + 0 In + 1 the + 2 future + 3 , + 4 we + 5 will + 6 continue + sense: continue-v.1 + prop: continue.01 + v * -> 6:0, continue + ARGM-TMP * -> 0:1, In the future + ARG0 * -> 4:1, we + ARGM-MOD * -> 5:0, will + ARG1 * -> 7:2, *-1 to provide everybody free vtiger CRM Chinese language packs and translation tools + 7 *-1 + 8 to + 9 provide + sense: provide-v.1 + prop: provide.01 + v * -> 9:0, provide + ARG0 * -> 7:0, *-1 -> 4:1, we + ARG2 * -> 10:1, everybody + ARG1 * -> 11:1, free vtiger CRM Chinese language packs and translation tools + 10 everybody + 11 free + 12 vtiger + name: PRODUCT 12-12 vtiger + 13 CRM + name: PRODUCT 13-13 CRM + 14 Chinese + name: NORP 14-14 Chinese + 15 language + 16 packs + 17 and + 18 translation + 19 tools + diff --git a/demo/p2.5_c2e_0001.txt b/demo/p2.5_c2e_0001.txt new file mode 100644 index 00000000..d6e1319f --- /dev/null +++ b/demo/p2.5_c2e_0001.txt @@ -0,0 +1 @@ + The changes in our business model on this occasion are that we want to promote our commercial edition CRM System--* Easy Client CRM *, and continue to retain and develop our open source CRM system--C3CRM. We're certainly compelled to make this choice, Before we fully undertook C3CRM, we had always felt that we would be able to survive in China by offering technical support and services. More than four months after we had established the company and officially gone into operation, we discovered that we thought wrong, Domestic enterprises are not all very willing to pay for services. Even if we had some service-paying customers, they would pay for a while and then no more. This was because they felt that they simply did not need our services and that by paying services fees every year they felt they would lose. So it is currently very difficult to rely on collecting fees for services in China. Chairman Pei of shopex feels the same way. Previously, we wanted to collect fees for the vtiger Chinese language packs, but faced opposition from some friends. In particular, those friends who had planned to use vtiger Chinese Edition to earn money or gain profit were strongly opposing and carried out a trashy commentary attack against C3CRM's blog. Some friends said that there was no notification at all prior to the translation and that they felt a bit cheated for collecting fees after the translation was done. Later on, we were compelled by pressure to renew the free distribution of the Chinese language packs. In the future, we will continue to provide everybody free vtiger CRM Chinese language packs and translation tools \ No newline at end of file diff --git a/demo/pdt_test/ln94204_7.in.conll b/demo/pdt_test/ln94204_7.in.conll new file mode 100644 index 00000000..e01cdd52 --- /dev/null +++ b/demo/pdt_test/ln94204_7.in.conll @@ -0,0 +1,626 @@ +# newdoc +# newpar +# sent_id = 1 +# text = Smlouvou o pronájmu služby nekončí +1 Smlouvou smlouva NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 3 nmod _ _ +5 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 2 +# text = Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. +1 Dana Dana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 Rybáková Rybáková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ +3 Firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 11 nsubj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 6 nsubj _ _ +6 podnikají podnikat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 mnohdy mnohdy ADV Db------------- _ 11 advmod _ _ +11 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 15 det _ _ +15 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 12 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 3 +# text = Movitější zahraniční studenti se nespokojí s bydlením na kolejích. +1 Movitější movitý ADJ AAMP1----2A---- Animacy=Anim|Case=Nom|Degree=Cmp|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 studenti student NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +5 nespokojí spokojit VERB VB-P---3P-NA--- Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 s s ADP RR--7---------- AdpType=Prep|Case=Ins 7 case _ _ +7 bydlením bydlení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 obj _ _ +8 na na ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 kolejích kolej NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. +1 Ti ten DET PDMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Dem 5 nsubj _ _ +2 a a CCONJ J^------------- _ 3 cc _ _ +3 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ _ +4 další další ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 amod _ _ +5 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +7 dlouhodobého dlouhodobý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. +1 A a CCONJ J^------------- _ 5 cc _ _ +2 právě právě ADV Db------------- _ 5 advmod:emph _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 dlouhodobé dlouhodobý ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 amod _ _ +5 pronájmy pronájem NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +6 bytů byt NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ _ +7 a a CCONJ J^------------- _ 9 cc _ _ +8 rodinných rodinný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 domů dům NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 conj _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl:pv _ _ +11 specializuje specializovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 11 nsubj _ _ +13 Ubytreal Ubytreal PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 6 +# text = V databance má pouze byty I. kategorie v Praze a jejím okolí. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 databance databanka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 pouze pouze ADV Db------------- _ 5 advmod:emph _ _ +5 byty byt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 3 obj _ _ +6 I I NUM C}------------- NumForm=Roman|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 kategorie kategorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ _ +11 a a CCONJ J^------------- _ 13 cc _ _ +12 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 okolí okolí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 10 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. +1 Výjimku výjimka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +2 tvoří tvořit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 centru centrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 nmod _ _ +6 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kde kde ADV Db------------- PronType=Int,Rel 12 advmod _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 12 expl:pass _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 nabídky nabídka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 12 obl _ _ +12 zařazují zařazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ _ +13 i i CCONJ J^------------- _ 14 advmod:emph _ _ +14 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 12 nsubj:pass _ _ +15 s s ADP RR--7---------- AdpType=Prep|Case=Ins 16 case _ _ +16 vytápěním vytápění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 14 nmod _ _ +17 wavkami wavky NOUN NNFP1-----A---- Case=Nom|Foreign=Yes|Gender=Fem|Number=Plur|Polarity=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. +1 Smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 2 obj _ _ +2 podepisujeme podepisovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 jak jak ADV Db------------- PronType=Int,Rel 5 cc _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pronajímateli pronajímatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 tak tak CCONJ J^------------- _ 9 cc _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +9 nájemci nájemce NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 databanka databanka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ _ +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 jakousi jakýsi DET PZFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Ind 5 det _ _ +5 křižovatkou křižovatka NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 8 ccomp _ _ +6 informací informace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 5 punct _ _ +8 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 spolumajitel spolumajitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +10 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 9 nmod _ _ +11 Michal Michal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 8 nsubj _ _ +12 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 11 flat _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 8 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 10 +# text = Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. +1 Smlouvy smlouva NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 5 nsubj:pass _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 podepisují podepisovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 minimálně minimálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod:emph _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 5 obl _ _ +9 a a CCONJ J^------------- _ 13 cc _ _ +10 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod:emph _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 tři tři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 13 nummod _ _ +13 roky rok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 8 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 2 case _ _ +2 smlouvě smlouva NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux:pass _ _ +4 uvedena uvedený ADJ VsQW---XX-AP--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +5 pevná pevný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 částka částka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj:pass _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kterou který DET P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 12 obj _ _ +9 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 12 nsubj _ _ +10 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ _ +12 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 12 punct _ _ +14 a a CCONJ J^------------- _ 17 cc _ _ +15 ta ten DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 17 nsubj:pass _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl:pass _ _ +17 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. +1 Smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 3 nsubj:pass _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl:pass _ _ +3 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 po po ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uplynutí uplynutí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 7 obl _ _ +6 lhůty lhůta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 prodloužit prodloužit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 ale ale CCONJ J^------------- _ 12 cc _ _ +10 pak pak ADV Db------------- _ 12 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +12 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 3 conj _ _ +13 upravit upravit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 12 csubj _ _ +14 právě právě ADV Db------------- _ 15 advmod:emph _ _ +15 sumu suma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +16 placenou placený ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 16 obj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ _ +20 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 13 conj _ _ +21 v v ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 iobj _ _ +23 například například ADV Db------------- _ 24 advmod:emph _ _ +24 inflaci inflace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 obj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 13 +# text = Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. +1 Nejlevnější levný ADJ AAFS1----3A---- Case=Nom|Degree=Sup|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +3 nezařízená zařízený ADJ AAFS1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Neg 4 amod _ _ +4 garsoniéra garsoniéra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 1 nsubj _ _ +5 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 telefonu telefon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 4 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 11 punct _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 pět pět NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +10 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 11 nummod:gov _ _ +11 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 1 obl _ _ +12 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 11 advmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 14 +# text = Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. +1 Nejdražší drahý ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 pronájem pronájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 10 nsubj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 který který DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 7 obj _ _ +5 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 zatím zatím ADV Db------------- _ 7 advmod _ _ +7 sjednala sjednat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 10 cop _ _ +10 vila vila NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 Klamovce Klamovka PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 16 case _ _ +14 sedm sedm NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 16 nummod:gov _ _ +15 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod:gov _ _ +16 dolarů dolar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +17 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 16 advmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 15 +# text = Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. +1 Dříve brzy ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 2 advmod _ _ +2 tvořili tvořit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 21 ccomp _ _ +3 přes přes ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 50 50 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +5 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 2 obj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ _ +7 klientely klientela NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 cizinci cizinec NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 17 punct _ _ +10 dnes dnes ADV Db------------- _ 17 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +12 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 poměr poměr NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 17 nsubj _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 16 case _ _ +15 domácím domácí ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 16 amod _ _ +16 zájemcům zájemce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 13 nmod _ _ +17 1 1 NUM C=------------- NumForm=Digit|NumType=Card 2 conj _ SpaceAfter=No +18 : : PUNCT Z:------------- _ 19 punct _ SpaceAfter=No +19 1 1 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ _ +21 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +22 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 21 nsubj _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 22 punct _ _ +24 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 22 flat _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 21 punct _ _ + +# sent_id = 16 +# text = Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. +1 Je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 nmod _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 kteří který DET P4MP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ _ +6 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +8 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ _ +9 mimopražské mimopražský ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 10 amod _ _ +10 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +11 ubytování ubytování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 17 +# text = Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. +1 Nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +4 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ _ +5 požadavků požadavek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ _ +6 dostat dostat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +7 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ _ +8 i i CCONJ J^------------- _ 10 advmod:emph _ _ +9 po po ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 telefonu telefon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 13 punct _ _ +12 popřípadě popřípadě ADV Db------------- _ 13 advmod _ _ +13 navštívit navštívit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 acl _ _ +14 kancelář kancelář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +15 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 14 nmod _ _ +16 a a CCONJ J^------------- _ 18 cc _ _ +17 nabídky nabídka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 18 obj _ _ +18 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +19 vytištěné vytištěný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 18 +# text = Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. +1 Klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 3 nsubj _ _ +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 3 obl _ _ +3 určí určit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 jak jak ADV Db------------- PronType=Int,Rel 6 advmod _ _ +6 velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 jaké jaký DET P4FS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Int,Rel 11 det _ _ +11 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 7 dep _ _ +12 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 kterém který DET P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 16 det _ _ +16 patře patro NOUN NNNS6-----A---1 Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +19 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 20 det _ _ +20 vybavením vybavení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ _ +21 a a CCONJ J^------------- _ 25 cc _ _ +22 za za ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 26 obj _ _ +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 expl:pv _ _ +25 chce chtít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +26 pronajmout pronajmout VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 25 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 19 +# text = Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +3 pak pak ADV Db------------- _ 4 advmod _ _ +4 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 buď buď CCONJ J^------------- _ 6 cc _ _ +6 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 která který DET P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 14 nsubj _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl:pv _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ _ +12 požadavky požadavek NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 14 obj _ _ +13 dokonale dokonale ADV Dg-------1A---- Degree=Pos|Polarity=Pos 14 advmod _ _ +14 kryje krýt VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 nebo nebo CCONJ J^------------- _ 17 cc _ _ +17 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 conj _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 21 case _ _ +19 jednou jeden NUM ClFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +20 libovolnou libovolný ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ _ +21 chybou chyba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 20 +# text = To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. +1 To ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ _ +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 že že SCONJ J,------------- _ 7 mark _ _ +5 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +7 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 2 ccomp _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +12 nebo nebo CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 dražší drahý ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 7 conj _ _ +15 apod apod ADV Db------------8 Abbr=Yes 14 advmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 21 +# text = Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ _ +5 i i CCONJ J^------------- _ 6 advmod:emph _ _ +6 telefonicky telefonicky ADV Dg-------1A---- Degree=Pos|Polarity=Pos 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 ale ale CCONJ J^------------- _ 13 cc _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 každém každý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 obl _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl:pv _ _ +13 musí muset VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 osobně osobně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 15 advmod _ _ +15 dostavit dostavit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 13 xcomp _ _ +16 do do ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 kanceláře kancelář NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 15 obl _ _ +18 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 podepsání podepsání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 15 obl _ _ +21 zprostředkovatelské zprostředkovatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 22 +# text = Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. +1 Neuzavíráme uzavírat VERB VB-P---1P-NA--- Mood=Ind|Number=Plur|Person=1|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +3 zprostředkovatelské zprostředkovatelský ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +4 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 1 obj _ _ +5 jako jako SCONJ J,------------- _ 8 mark _ _ +6 jiné jiný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +7 realitní realitní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +8 firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 1 advcl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 13 punct _ _ +10 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 13 nsubj _ _ +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 pronajímatele pronajímatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ _ +13 znamenají znamenat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 29 punct _ _ +15 že že SCONJ J,------------- _ 29 mark _ _ +16 pod pod ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 hrozbou hrozba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +18 pokuty pokuta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 20 case _ _ +20 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 18 nmod _ _ +21 až až PART TT------------- _ 24 advmod:emph _ _ +22 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 24 nummod _ _ +23 měsíčních měsíční ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 24 amod _ _ +24 nájmů nájem NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ _ +26 po po ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +27 určitou určitý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 28 amod _ _ +28 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +29 nesmí smět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 13 ccomp _ _ +30 sám sám DET PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Emp 31 xcomp _ _ +31 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 29 xcomp _ _ +32 klienta klient NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 31 iobj _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +3 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 obl _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +5 stejnou stejný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 pokutu pokuta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 obj _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 platit platit VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +9 i i CCONJ J^------------- _ 10 advmod:emph _ _ +10 kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 pokud pokud SCONJ J,------------- _ 17 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 dané daný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +15 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 17 obl _ _ +16 není být AUX VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +17 schopna schopný ADJ ACQW------A---- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short 7 advcl _ _ +18 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 17 xcomp _ _ +19 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 18 obj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 23 punct _ _ +21 nebo nebo CCONJ J^------------- _ 23 cc _ _ +22 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +23 neměla mít VERB VpQW---XR-NA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 7 conj _ _ +24 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 25 amod _ _ +25 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 26 obj _ _ +26 uzavírat uzavírat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 23 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 24 +# text = Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +2 zprostředkovatelská zprostředkovatelský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +4 pronajímatele pronajímatel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 8 obj _ _ +5 ani ani CCONJ J^------------- _ 6 cc _ _ +6 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 conj _ _ +7 nijak nijak ADV Db------------- PronType=Neg 8 advmod _ _ +8 nezavazuje zavazovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 25 +# text = Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +3 podpisu podpis NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 8 obl _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl:pv _ _ +5 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 6 det _ _ +6 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +7 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod _ _ +8 dostává dostávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 ccomp _ _ +9 do do ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 8 punct _ _ +12 vysvětlil vysvětlit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 12 nsubj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 13 flat _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 26 +# text = Za uzavření smlouvy a zařazení do databáze klient neplatí. +1 Za za ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 uzavření uzavření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +3 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 2 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 zařazení zařazení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 2 conj _ _ +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +9 neplatí platit VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 27 +# text = V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 díky díky ADP RR--3---------- AdpType=Prep|Case=Dat 6 case _ _ +6 Ubytrealu Ubytreal PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 9 obl _ _ +7 jako jako SCONJ J,------------- _ 8 mark _ _ +8 zprostředkovateli zprostředkovatel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 acl _ _ +10 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +11 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ _ +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 dlouhodobý dlouhodobý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 14 amod _ _ +14 pronájem pronájem NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +15 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +18 této tento DET PDFS3---------- Case=Dat|Gender=Fem|Number=Sing|PronType=Dem 19 det _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Number=Sing|Polarity=Pos 17 iobj _ _ +20 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 17 obj _ _ +21 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 22 case _ _ +22 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ _ +23 70 70 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod:gov _ _ +24 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 22 nmod _ _ +25 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 26 amod _ _ +26 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 24 nmod _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 17 punct _ _ + +# sent_id = 28 +# text = Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. +1 Pokud pokud SCONJ J,------------- _ 4 mark _ _ +2 přičiněním přičinění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Ubytrealu Ubytreal PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 advcl _ _ +5 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 nmod _ _ +9 pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +10 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +13 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 obj _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 15 case _ _ +15 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 nmod _ _ +16 100 100 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod:gov _ _ +17 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 15 nmod _ _ +18 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 19 amod _ _ +19 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 29 +# text = Pronajímatel platí víc, protože je to výdělečná činnost. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 víc hodně ADV Dg-------2A---1 Degree=Cmp|Polarity=Pos 2 obj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 9 punct _ _ +5 protože protože SCONJ J,------------- _ 9 mark _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +7 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 9 nsubj _ _ +8 výdělečná výdělečný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 9 amod _ _ +9 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 advcl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 30 +# text = Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. +1 Naše můj DET PSHP1-P1------- Case=Nom|Gender=Fem,Neut|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 4 nsubj _ _ +3 ovšem ovšem CCONJ J^------------- _ 4 cc _ _ +4 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 podpisem podpis NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +6 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +10 a a CCONJ J^------------- _ 11 cc _ _ +11 vyinkasováním vyinkasování NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 conj _ _ +12 odměny odměna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 31 +# text = Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. +1 Svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 2 det _ _ +2 klientům klient NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 3 iobj _ _ +3 poskytujeme poskytovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ _ +4 po po ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 celou celý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +7 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +8 právní právní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 servis servis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 3 punct _ _ +11 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +12 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 11 nsubj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 12 punct _ _ +14 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 12 flat _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 11 punct _ _ \ No newline at end of file diff --git a/demo/pdt_test/ln94204_7.out.conllu b/demo/pdt_test/ln94204_7.out.conllu new file mode 100644 index 00000000..04068472 --- /dev/null +++ b/demo/pdt_test/ln94204_7.out.conllu @@ -0,0 +1,627 @@ +# sent_id = 1 +# text = Smlouvou o pronájmu služby nekončí +# newdoc +# newpar +1 Smlouvou smlouva NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ Coref=7 +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ Coref=2 +4 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 3 nmod _ Coref=30 +5 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpacesAfter=\s\r\n\r\n + +# sent_id = 2 +# text = Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. +# newpar +1 Dana Dana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 Rybáková Rybáková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ +3 Firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 11 nsubj _ Coref=0|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=0 +6 podnikají podnikat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 6 obl _ Coref=5|SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 mnohdy mnohdy ADV Db------------- _ 11 advmod _ _ +11 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ Coref=3 +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 15 det _ Coref=0 +15 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 12 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 3 +# text = Movitější zahraniční studenti se nespokojí s bydlením na kolejích. +1 Movitější movitý ADJ AAMP1----2A---- Animacy=Anim|Case=Nom|Degree=Cmp|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 studenti student NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ Coref=1 +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +5 nespokojí spokojit VERB VB-P---3P-NA--- Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 s s ADP RR--7---------- AdpType=Prep|Case=Ins 7 case _ _ +7 bydlením bydlení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 obj _ _ +8 na na ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 kolejích kolej NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. +1 Ti ten DET PDMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Dem 5 nsubj _ Coref=1 +2 a a CCONJ J^------------- _ 3 cc _ _ +3 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ _ +4 další další ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 amod _ _ +5 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +7 dlouhodobého dlouhodobý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +9 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 8 nmod _ Coref=3|SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. +1 A a CCONJ J^------------- _ 5 cc _ _ +2 právě právě ADV Db------------- _ 5 advmod:emph _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 dlouhodobé dlouhodobý ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 amod _ _ +5 pronájmy pronájem NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ Coref=2 +6 bytů byt NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ Coref=3 +7 a a CCONJ J^------------- _ 9 cc _ _ +8 rodinných rodinný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 domů dům NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 conj _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl:pv _ _ +11 specializuje specializovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 11 nsubj _ Coref=4 +13 Ubytreal Ubytreal PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 6 +# text = V databance má pouze byty I. kategorie v Praze a jejím okolí. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 databance databanka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ Coref=8 +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=4 +4 pouze pouze ADV Db------------- _ 5 advmod:emph _ _ +5 byty byt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 3 obj _ _ +6 I I NUM C}------------- NumForm=Roman|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 kategorie kategorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ Coref=5 +11 a a CCONJ J^------------- _ 13 cc _ _ +12 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 13 det _ Coref=5 +13 okolí okolí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 10 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. +1 Výjimku výjimka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +2 tvoří tvořit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 centru centrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 nmod _ Coref=6 +6 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ Coref=5|SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kde kde ADV Db------------- PronType=Int,Rel 12 advmod _ Coref=6 +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 12 expl:pass _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 nabídky nabídka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 12 obl _ _ +12 zařazují zařazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ _ +13 i i CCONJ J^------------- _ 14 advmod:emph _ _ +14 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 12 nsubj:pass _ _ +15 s s ADP RR--7---------- AdpType=Prep|Case=Ins 16 case _ _ +16 vytápěním vytápění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 14 nmod _ _ +17 wavkami wavky NOUN NNFP1-----A---- Case=Nom|Foreign=Yes|Gender=Fem|Number=Plur|Polarity=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. +1 Smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 2 obj _ Coref=7 +2 podepisujeme podepisovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=4 +3 jak jak ADV Db------------- PronType=Int,Rel 5 cc _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pronajímateli pronajímatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ Coref=20|SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 tak tak CCONJ J^------------- _ 9 cc _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +9 nájemci nájemce NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ Coref=10|SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ Coref=4 +2 databanka databanka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ Coref=8 +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 jakousi jakýsi DET PZFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Ind 5 det _ _ +5 křižovatkou křižovatka NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 8 ccomp _ _ +6 informací informace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 5 punct _ _ +8 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 spolumajitel spolumajitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +10 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 9 nmod _ Coref=4 +11 Michal Michal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 8 nsubj _ _ +12 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 11 flat _ Coref=15|SpaceAfter=No +13 . . PUNCT Z:------------- _ 8 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 10 +# text = Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. +# newpar +1 Smlouvy smlouva NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 5 nsubj:pass _ Coref=7 +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ Coref=2 +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 podepisují podepisovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 minimálně minimálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod:emph _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 5 obl _ _ +9 a a CCONJ J^------------- _ 13 cc _ Coref=11 +10 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod:emph _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 tři tři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 13 nummod _ _ +13 roky rok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 8 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 2 case _ _ +2 smlouvě smlouva NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=7 +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux:pass _ _ +4 uvedena uvedený ADJ VsQW---XX-AP--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +5 pevná pevný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 částka částka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj:pass _ Coref=9|SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kterou který DET P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 12 obj _ Coref=9 +9 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 12 nsubj _ Coref=10 +10 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ Coref=3 +12 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 12 punct _ _ +14 a a CCONJ J^------------- _ 17 cc _ _ +15 ta ten DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 17 nsubj:pass _ Coref=9 +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl:pass _ _ +17 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. +1 Smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 3 nsubj:pass _ Coref=7 +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl:pass _ _ +3 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 po po ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uplynutí uplynutí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 7 obl _ _ +6 lhůty lhůta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=11 +7 prodloužit prodloužit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 ale ale CCONJ J^------------- _ 12 cc _ _ +10 pak pak ADV Db------------- _ 12 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +12 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 3 conj _ Drop_coref=12 +13 upravit upravit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 12 csubj _ _ +14 právě právě ADV Db------------- _ 15 advmod:emph _ _ +15 sumu suma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ Coref=9 +16 placenou placený ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 16 obj _ Coref=3|SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ Drop_coref=12 +20 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 13 conj _ _ +21 v v ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 iobj _ _ +23 například například ADV Db------------- _ 24 advmod:emph _ _ +24 inflaci inflace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 obj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 13 +# text = Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. +# newpar +1 Nejlevnější levný ADJ AAFS1----3A---- Case=Nom|Degree=Sup|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +3 nezařízená zařízený ADJ AAFS1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Neg 4 amod _ _ +4 garsoniéra garsoniéra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 1 nsubj _ _ +5 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 telefonu telefon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 4 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 11 punct _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 pět pět NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +10 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 11 nummod:gov _ _ +11 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 1 obl _ _ +12 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 11 advmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 14 +# text = Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. +1 Nejdražší drahý ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 pronájem pronájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 10 nsubj _ Coref=13|SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 který který DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 7 obj _ Coref=13 +5 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ Coref=4 +6 zatím zatím ADV Db------------- _ 7 advmod _ _ +7 sjednala sjednat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 10 cop _ _ +10 vila vila NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 Klamovce Klamovka PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 16 case _ _ +14 sedm sedm NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 16 nummod:gov _ _ +15 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod:gov _ _ +16 dolarů dolar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +17 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 16 advmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 15 +# text = Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. +# newpar +1 Dříve brzy ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 2 advmod _ _ +2 tvořili tvořit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 21 ccomp _ _ +3 přes přes ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 50 50 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +5 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 2 obj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ Coref=4 +7 klientely klientela NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 cizinci cizinec NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ Coref=14|SpaceAfter=No +9 , , PUNCT Z:------------- _ 17 punct _ _ +10 dnes dnes ADV Db------------- _ 17 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +12 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 13 det _ Coref=14 +13 poměr poměr NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 17 nsubj _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 16 case _ _ +15 domácím domácí ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 16 amod _ _ +16 zájemcům zájemce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 13 nmod _ _ +17 1 1 NUM C=------------- NumForm=Digit|NumType=Card 2 conj _ SpaceAfter=No +18 : : PUNCT Z:------------- _ 19 punct _ SpaceAfter=No +19 1 1 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ _ +21 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +22 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 21 nsubj _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 22 punct _ _ +24 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 22 flat _ Coref=15|SpaceAfter=No +25 . . PUNCT Z:------------- _ 21 punct _ _ + +# sent_id = 16 +# text = Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. +1 Je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 nmod _ Coref=0|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 kteří který DET P4MP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=0 +6 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +8 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ Coref=0 +9 mimopražské mimopražský ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 10 amod _ _ +10 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +11 ubytování ubytování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ Coref=5|SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 17 +# text = Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. +1 Nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=10 +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +4 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ Coref=10 +5 požadavků požadavek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ _ +6 dostat dostat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 2 xcomp _ Drop_coref=16 +7 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ Drop_coref=16 +8 i i CCONJ J^------------- _ 10 advmod:emph _ _ +9 po po ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 telefonu telefon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 13 punct _ _ +12 popřípadě popřípadě ADV Db------------- _ 13 advmod _ _ +13 navštívit navštívit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 acl _ _ +14 kancelář kancelář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ Coref=21 +15 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 14 nmod _ Coref=4 +16 a a CCONJ J^------------- _ 18 cc _ _ +17 nabídky nabídka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 18 obj _ Coref=16 +18 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +19 vytištěné vytištěný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 18 +# text = Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. +1 Klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 3 nsubj _ Coref=10 +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 3 obl _ Coref=10 +3 určí určit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 jak jak ADV Db------------- PronType=Int,Rel 6 advmod _ _ +6 velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=3|SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 jaké jaký DET P4FS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Int,Rel 11 det _ _ +11 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 7 dep _ _ +12 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ Coref=5|SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 kterém který DET P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 16 det _ _ +16 patře patro NOUN NNNS6-----A---1 Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +19 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 20 det _ _ +20 vybavením vybavení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ _ +21 a a CCONJ J^------------- _ 25 cc _ _ +22 za za ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 26 obj _ Coref=9 +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 expl:pv _ Coref=17 +25 chce chtít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +26 pronajmout pronajmout VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 25 xcomp _ Drop_coref=17|SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 19 +# text = Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=8 +3 pak pak ADV Db------------- _ 4 advmod _ _ +4 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=17 +5 buď buď CCONJ J^------------- _ 6 cc _ _ +6 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ Coref=18|SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 která který DET P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 14 nsubj _ Coref=18 +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl:pv _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ Coref=17 +12 požadavky požadavek NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 14 obj _ _ +13 dokonale dokonale ADV Dg-------1A---- Degree=Pos|Polarity=Pos 14 advmod _ _ +14 kryje krýt VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 nebo nebo CCONJ J^------------- _ 17 cc _ _ +17 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 conj _ Coref=19 +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 21 case _ _ +19 jednou jeden NUM ClFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +20 libovolnou libovolný ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ _ +21 chybou chyba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 20 +# text = To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. +1 To ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ Coref=19 +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 že že SCONJ J,------------- _ 7 mark _ _ +5 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 nsubj _ Coref=3 +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +7 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 2 ccomp _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ Coref=5 +12 nebo nebo CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 dražší drahý ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 7 conj _ _ +15 apod apod ADV Db------------8 Abbr=Yes 14 advmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 21 +# text = Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. +# newpar +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=20 +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=3 +5 i i CCONJ J^------------- _ 6 advmod:emph _ _ +6 telefonicky telefonicky ADV Dg-------1A---- Degree=Pos|Polarity=Pos 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 ale ale CCONJ J^------------- _ 13 cc _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 každém každý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 obl _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl:pv _ _ +13 musí muset VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 osobně osobně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 15 advmod _ _ +15 dostavit dostavit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 13 xcomp _ _ +16 do do ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 kanceláře kancelář NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 15 obl _ Coref=21 +18 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ Coref=4 +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 podepsání podepsání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 15 obl _ _ +21 zprostředkovatelské zprostředkovatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ Coref=25|SpaceAfter=No +23 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 22 +# text = Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. +1 Neuzavíráme uzavírat VERB VB-P---1P-NA--- Mood=Ind|Number=Plur|Person=1|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=22 +2 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +3 zprostředkovatelské zprostředkovatelský ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +4 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 1 obj _ Drop_coref=4 +5 jako jako SCONJ J,------------- _ 8 mark _ _ +6 jiné jiný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +7 realitní realitní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +8 firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 1 advcl _ Coref=22|SpaceAfter=No +9 , , PUNCT Z:------------- _ 13 punct _ _ +10 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 13 nsubj _ Coref=4 +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 pronajímatele pronajímatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ Coref=20 +13 znamenají znamenat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 29 punct _ _ +15 že že SCONJ J,------------- _ 29 mark _ _ +16 pod pod ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 hrozbou hrozba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +18 pokuty pokuta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ Coref=24 +19 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 20 case _ _ +20 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 18 nmod _ _ +21 až až PART TT------------- _ 24 advmod:emph _ _ +22 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 24 nummod _ _ +23 měsíčních měsíční ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 24 amod _ _ +24 nájmů nájem NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ Coref=23 +26 po po ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +27 určitou určitý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 28 amod _ _ +28 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +29 nesmí smět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 13 ccomp _ _ +30 sám sám DET PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Emp 31 xcomp _ _ +31 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 29 xcomp _ Drop_coref=23 +32 klienta klient NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 31 iobj _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 3 det _ Coref=15 +3 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 obl _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +5 stejnou stejný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 pokutu pokuta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 obj _ Coref=24 +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 platit platit VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +9 i i CCONJ J^------------- _ 10 advmod:emph _ _ +10 kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ Coref=22|SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 pokud pokud SCONJ J,------------- _ 17 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 dané daný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +15 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 17 obl _ _ +16 není být AUX VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ Drop_coref=22 +17 schopna schopný ADJ ACQW------A---- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short 7 advcl _ _ +18 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 17 xcomp _ Drop_coref=22 +19 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 18 obj _ Coref=17|SpaceAfter=No +20 , , PUNCT Z:------------- _ 23 punct _ _ +21 nebo nebo CCONJ J^------------- _ 23 cc _ _ +22 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +23 neměla mít VERB VpQW---XR-NA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 7 conj _ _ +24 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 25 amod _ _ +25 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 26 obj _ Coref=4 +26 uzavírat uzavírat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 23 xcomp _ Drop_coref=22|SpaceAfter=No +27 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 24 +# text = Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 3 det _ Coref=4 +2 zprostředkovatelská zprostředkovatelský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ Coref=25 +4 pronajímatele pronajímatel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 8 obj _ Coref=23 +5 ani ani CCONJ J^------------- _ 6 cc _ Coref=26 +6 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 conj _ Coref=17 +7 nijak nijak ADV Db------------- PronType=Neg 8 advmod _ _ +8 nezavazuje zavazovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 25 +# text = Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ Coref=25 +3 podpisu podpis NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 8 obl _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl:pv _ _ +5 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 6 det _ Coref=26 +6 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +7 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod _ _ +8 dostává dostávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 ccomp _ Coref=27 +9 do do ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 obl _ Coref=8|SpaceAfter=No +11 , , PUNCT Z:------------- _ 8 punct _ _ +12 vysvětlil vysvětlit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 12 nsubj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 13 flat _ Coref=15|SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 26 +# text = Za uzavření smlouvy a zařazení do databáze klient neplatí. +1 Za za ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 uzavření uzavření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +3 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 2 nmod _ Coref=25 +4 a a CCONJ J^------------- _ 5 cc _ _ +5 zařazení zařazení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 2 conj _ Coref=27 +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=8 +8 klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ Coref=26 +9 neplatí platit VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 27 +# text = V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 díky díky ADP RR--3---------- AdpType=Prep|Case=Dat 6 case _ _ +6 Ubytrealu Ubytreal PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 9 obl _ Coref=4 +7 jako jako SCONJ J,------------- _ 8 mark _ _ +8 zprostředkovateli zprostředkovatel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 acl _ _ +10 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ Coref=17 +11 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ Coref=7|Drop_coref=17 +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 dlouhodobý dlouhodobý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 14 amod _ _ +14 pronájem pronájem NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ Coref=2 +15 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 nmod _ Coref=3|SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=7 +18 této tento DET PDFS3---------- Case=Dat|Gender=Fem|Number=Sing|PronType=Dem 19 det _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Number=Sing|Polarity=Pos 17 iobj _ Coref=4 +20 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 17 obj _ _ +21 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 22 case _ _ +22 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ _ +23 70 70 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod:gov _ _ +24 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 22 nmod _ _ +25 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 26 amod _ _ +26 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 24 nmod _ Coref=29|SpaceAfter=No +27 . . PUNCT Z:------------- _ 17 punct _ _ + +# sent_id = 28 +# text = Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. +1 Pokud pokud SCONJ J,------------- _ 4 mark _ _ +2 přičiněním přičinění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Ubytrealu Ubytreal PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ Coref=4 +4 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 advcl _ _ +5 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ Coref=7|Drop_coref=28 +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 nmod _ Coref=2 +9 pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ Coref=28 +10 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ Coref=3|SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=28 +13 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 obj _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 15 case _ _ +15 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 nmod _ _ +16 100 100 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod:gov _ _ +17 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 15 nmod _ _ +18 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 19 amod _ _ +19 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 nmod _ Coref=29|SpaceAfter=No +20 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 29 +# text = Pronajímatel platí víc, protože je to výdělečná činnost. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=28 +2 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 víc hodně ADV Dg-------2A---1 Degree=Cmp|Polarity=Pos 2 obj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 9 punct _ _ +5 protože protože SCONJ J,------------- _ 9 mark _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +7 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 9 nsubj _ _ +8 výdělečná výdělečný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 9 amod _ _ +9 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 advcl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 30 +# text = Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. +1 Naše můj DET PSHP1-P1------- Case=Nom|Gender=Fem,Neut|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ Coref=4 +2 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 4 nsubj _ Coref=30 +3 ovšem ovšem CCONJ J^------------- _ 4 cc _ _ +4 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 podpisem podpis NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +6 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=7 +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +10 a a CCONJ J^------------- _ 11 cc _ _ +11 vyinkasováním vyinkasování NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 conj _ _ +12 odměny odměna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 31 +# text = Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. +1 Svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 2 det _ _ +2 klientům klient NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 3 iobj _ Coref=26 +3 poskytujeme poskytovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ Drop_coref=4 +4 po po ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 celou celý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +7 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +8 právní právní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 servis servis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 3 punct _ _ +11 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +12 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 11 nsubj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 12 punct _ _ +14 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 12 flat _ Coref=15|SpaceAfter=No +15 . . PUNCT Z:------------- _ 11 punct _ _ + diff --git a/demo/pdt_test/ln94204_7.t b/demo/pdt_test/ln94204_7.t new file mode 100644 index 00000000..35c5636c --- /dev/null +++ b/demo/pdt_test/ln94204_7.t @@ -0,0 +1,8585 @@ + + + + + + + + + + + + Manual annotation + + description + + + + a#a-ln94204-7-p1s1 + 0 + + + smlouva o pronájmu + lexeme + + t-ln94204-7-p1s1w1 + t-ln94204-7-p1s1w3 + + + + + + + a#a-ln94204-7-p1s1w5 + + complex + končit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + heading + v#v-w1480f1 + + + + a#a-ln94204-7-p1s1w1 + + complex + smlouva + MEANS + + n.denot + fem + sg + single + + c + 1 + + + + a#a-ln94204-7-p1s1w3 + + a#a-ln94204-7-p1s1w2 + + + complex + pronájem + PAT + + n.denot + inan + sg + single + + f + 2 + + + + + + a#a-ln94204-7-p1s1w4 + + complex + služba + ACT + + n.denot + fem + pl + single + + t + 3 + + + atom + 1 + #Neg + RHEM + f + 4 + + + + + + + a#a-ln94204-7-p2s1A + 0 + + + person + + t-ln94204-7-p2s1Aw1 + t-ln94204-7-p2s1Aw2 + + + + + + + a#a-ln94204-7-p2s1Aw2 + + complex + Rybáková + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 1 + + + + a#a-ln94204-7-p2s1Aw1 + + complex + Dana + RSTR + 1 + + n.denot + fem + sg + single + + f + 2 + + + + + + + a#a-ln94204-7-p2s1B + 0 + + + + a#a-ln94204-7-p2s1Bw9 + + complex + potřebovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w4096f1 + + + + a#a-ln94204-7-p2s1Bw1 + + complex + firma + ACT + + n.denot + fem + pl + single + + c + 1 + + + + a#a-ln94204-7-p2s1Bw4 + + complex + podnikat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w3601f1 + + + + a#a-ln94204-7-p2s1Bw3 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 2 + + t-ln94204-7-p2s1Bw1 + + + + + a#a-ln94204-7-p2s1Bw6 + + a#a-ln94204-7-p2s1Bw5 + + + complex + Praha + LOC + basic + + n.denot + fem + sg + single + + f + 4 + + + + + + + + a#a-ln94204-7-p2s1Bw8 + + complex + mnohdy + THO + + adv.denot.grad.nneg + pos + + t + 5 + + + + a#a-ln94204-7-p2s1Bw10 + + complex + byt + PAT + + n.denot + inan + pl + single + + f + 7 + + + + a#a-ln94204-7-p2s1Bw13 + + a#a-ln94204-7-p2s1Bw11 + + + complex + zaměstnanec + BEN + basic + + n.denot + anim + pl + single + + f + 9 + + + + a#a-ln94204-7-p2s1Bw12 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 8 + + t-ln94204-7-p2s1Bw1 + + + + + + + + + + a#a-ln94204-7-p2s2 + 0 + + + + a#a-ln94204-7-p2s2w5 + + a#a-ln94204-7-p2s2w4 + + + complex + spokojit_se + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 5 + v#v-w6374f1 + + + + a#a-ln94204-7-p2s2w3 + + complex + student + ACT + + n.denot + anim + pl + single + + c + 1 + + + t-ln94204-7-p2s1Bw12 + SUB_SET + + + + + + a#a-ln94204-7-p2s2w2 + + complex + zahraniční + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-ln94204-7-p2s2w1 + + complex + movitý + RSTR + + adj.denot + acomp + neg0 + + f + 3 + + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + a#a-ln94204-7-p2s2w7 + + a#a-ln94204-7-p2s2w6 + + + complex + bydlení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 7 + + + t-ln94204-7-p2s1Bw10 + CONTRAST + + + v#v-w238f1 + + + qcomplex + 1 + #Gen + ACT + t + 6 + + + + a#a-ln94204-7-p2s2w9 + + a#a-ln94204-7-p2s2w8 + + + complex + kolej + LOC + basic + + n.denot + fem + pl + single + + f + 8 + + + + + + + + + a#a-ln94204-7-p2s3 + 0 + + + pronájem bytu + lexeme + + t-ln94204-7-p2s3w8 + t-ln94204-7-p2s3w9 + + + + + + + a#a-ln94204-7-p2s3w5 + + complex + hledat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w1058f1 + + + + a#a-ln94204-7-p2s3w2 + + coap + a + CONJ + 2 + + + + a#a-ln94204-7-p2s3w1 + + complex + ten + ACT + 1 + + n.pron.def.demon + anim + pl + + t + 1 + + + t-ln94204-7-p2s2w3 + SPEC + + + + + + a#a-ln94204-7-p2s3w3 + + complex + mnohý + ACT + 1 + + n.denot + anim + pl + single + + t + 3 + + + + a#a-ln94204-7-p2s3w4 + + complex + další + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + + + a#a-ln94204-7-p2s3w6 + + complex + možnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 6 + + + + a#a-ln94204-7-p2s3w8 + + complex + pronájem + PAT + + n.denot + inan + sg + single + + f + 7 + + + t-ln94204-7-p1s1w3 + GEN + + + + + + a#a-ln94204-7-p2s3w9 + + complex + byt + PAT + + n.denot + inan + sg + single + + f + 8 + + + t-ln94204-7-p2s1Bw10 + GEN + + + + + + a#a-ln94204-7-p2s3w7 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + a#a-ln94204-7-p2s4 + 0 + + + pronájem bytu + lexeme + + t-ln94204-7-p2s4w5 + t-ln94204-7-p2s4w6 + + + + rodinný dům + lexeme + + t-ln94204-7-p2s4w8 + t-ln94204-7-p2s4w9 + + + + + + + a#a-ln94204-7-p2s4w11 + + a#a-ln94204-7-p2s4w10 + + + complex + specializovat_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + + + t-ln94204-7-p2s3w5 + discourse + 0 + 0 + conj + + t-ln94204-7-p2s4w1 + + + + v#v-w6322f1 + + + + a#a-ln94204-7-p2s4w1 + + atom + a + PREC + t + 1 + + + + a#a-ln94204-7-p2s4w2 + + atom + právě + RHEM + t + 2 + + + + a#a-ln94204-7-p2s4w5 + + a#a-ln94204-7-p2s4w3 + + + complex + pronájem + PAT + + n.denot + inan + pl + single + + c + 3 + + + t-ln94204-7-p2s3w8 + GEN + + + + + + a#a-ln94204-7-p2s4w4 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln94204-7-p2s4w7 + + coap + a + CONJ + 6 + + + + a#a-ln94204-7-p2s4w6 + + complex + byt + PAT + 1 + + n.denot + inan + pl + single + + f + 5 + + + t-ln94204-7-p2s3w9 + GEN + + + + + + a#a-ln94204-7-p2s4w9 + + complex + dům + PAT + 1 + + n.denot + inan + pl + single + + f + 7 + + + + a#a-ln94204-7-p2s4w8 + + complex + rodinný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + a#a-ln94204-7-p2s4w12 + + complex + firma + ACT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln94204-7-p2s4w13 + + complex + Ubytreal + ID + enunc + + n.denot + inan + sg + single + + f + 11 + + + + + + + + + a#a-ln94204-7-p3s1 + 0 + + + byt I. kategorie + lexeme + + t-ln94204-7-p3s1w5 + t-ln94204-7-p3s1w6 + t-ln94204-7-p3s1w8 + + + + + + + a#a-ln94204-7-p3s1w3 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w1855f3 + + + + a#a-ln94204-7-p3s1w2 + + a#a-ln94204-7-p3s1w1 + + + complex + databanka + LOC + basic + + n.denot + fem + sg + single + + c + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-ln94204-7-p2s4w12 + SPEC + + + + + + a#a-ln94204-7-p3s1w4 + + atom + pouze + RHEM + f + 4 + + + + a#a-ln94204-7-p3s1w5 + + complex + byt + PAT + + n.denot + inan + pl + single + + f + 5 + + + t-ln94204-7-p2s4w6 + SET_SUB + + + + + + a#a-ln94204-7-p3s1w8 + + complex + kategorie + RSTR + + n.denot + fem + sg + single + + f + 6 + + + + a#a-ln94204-7-p3s1w6 + + complex + I + RSTR + + adj.quant.def + ord + + f + 7 + + + + + + a#a-ln94204-7-p3s1w11 + + coap + a + CONJ + 9 + + + + a#a-ln94204-7-p3s1w10 + + a#a-ln94204-7-p3s1w9 + + + complex + Praha + LOC + basic + 1 + + n.denot + fem + sg + single + + f + 8 + + + t-ln94204-7-p2s1Bw6 + SPEC + + + + + + a#a-ln94204-7-p3s1w13 + + a#a-ln94204-7-p3s1w9 + + + complex + okolí + LOC + basic + 1 + + n.denot + neut + sg + single + + f + 11 + + + + a#a-ln94204-7-p3s1w12 + + complex + #PersPron + APP + + n.pron.def.pers + fem + sg + 3 + basic + + t + 10 + + + t-ln94204-7-p3s1w10 + SPEC + + + + + + + + + + + + + + + a#a-ln94204-7-p3s2 + 0 + + + + a#a-ln94204-7-p3s2w2 + + complex + tvořit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w6951f1 + + + + a#a-ln94204-7-p3s2w1 + + complex + výjimka + PAT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-ln94204-7-p3s2w3 + + complex + byt + ACT + + n.denot + inan + pl + single + + f + 3 + + + t-ln94204-7-p2s4w6 + SET_SUB + + + + + + a#a-ln94204-7-p3s2w5 + + a#a-ln94204-7-p3s2w4 + + + complex + centrum + LOC + basic + + n.denot + neut + sg + single + + f + 4 + + + + a#a-ln94204-7-p3s2w6 + + complex + Praha + APP + + n.denot + fem + sg + single + + f + 5 + + + t-ln94204-7-p3s1w12 + SPEC + + + + + + a#a-ln94204-7-p3s2w12 + + complex + zařazovat + RSTR + + v + decl + sim + proc + it0 + deagent + asserted + + f + 9 + v#v-w9102f1 + + + + a#a-ln94204-7-p3s2w8 + + complex + kde + LOC + basic + + adv.pron.indef + relat + + t + 6 + + t-ln94204-7-p3s2w5 + + + + + a#a-ln94204-7-p3s2w11 + + a#a-ln94204-7-p3s2w10 + + + complex + nabídka + DIR3 + basic + + n.denot + fem + sg + single + + t + 7 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-ln94204-7-p3s2w13 + + atom + i + RHEM + f + 10 + + + + a#a-ln94204-7-p3s2w14 + + complex + byt + PAT + + n.denot + inan + pl + single + + f + 11 + + + t-ln94204-7-p3s2w3 + SET_SUB + + + + + + a#a-ln94204-7-p3s2w16 + + a#a-ln94204-7-p3s2w15 + + + complex + vytápění + ACMP + basic + + n.denot.neg + neut + sg + single + neg0 + + f + 14 + v#v-w8460f1 + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + qcomplex + 1 + #Gen + PAT + t + 13 + + + + a#a-ln94204-7-p3s2w17 + + complex + wavky + MEANS + + n.denot + fem + pl + single + + f + 15 + + + + + + + + + + + + + + + + + a#a-ln94204-7-p3s3 + 0 + + + + a#a-ln94204-7-p3s3w2 + + complex + podepisovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w3554f1 + + + + a#a-ln94204-7-p3s3w1 + + complex + smlouva + PAT + + n.denot + fem + pl + single + + c + 1 + + + t-ln94204-7-p1s1w1 + GEN + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 2 + + + t-ln94204-7-p3s1a0 + SPEC + + + + + + a#a-ln94204-7-p3s3w7 + + a#a-ln94204-7-p3s3w3 + + + coap + jak_tak + CONJ + 5 + + + + a#a-ln94204-7-p3s3w5 + + a#a-ln94204-7-p3s3w4 + + + complex + pronajímatel + ACMP + basic + 1 + + n.denot + anim + pl + single + + f + 4 + + + + a#a-ln94204-7-p3s3w9 + + a#a-ln94204-7-p3s3w8 + + + complex + nájemce + ACMP + basic + 1 + + n.denot + anim + pl + single + + f + 6 + + + + + + + + + a#a-ln94204-7-p3s4 + 0 + + + Michal Vacek + person + + t-ln94204-7-p3s4w11 + t-ln94204-7-p3s4w12 + + + + + + + a#a-ln94204-7-p3s4w8 + + complex + říci + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 6 + v#v-w5874f1 + + + + a#a-ln94204-7-p3s4w12 + + complex + Vacek + ACT + 1 + + n.denot + anim + sg + single + + t + 1 + + + + a#a-ln94204-7-p3s4w11 + + complex + Michal + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-ln94204-7-p3s4w9 + + complex + spolumajitel + RSTR + + n.denot + anim + sg + single + + f + 4 + + + + a#a-ln94204-7-p3s4w10 + + complex + firma + PAT + + n.denot + fem + sg + single + + t + 3 + + + t-ln94204-7-p3s4w1 + SPEC + + + + + + + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-ln94204-7-p3s4w3 + + complex + být + EFF + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w243f1 + + + + a#a-ln94204-7-p3s4w2 + + complex + databanka + ACT + + n.denot + fem + sg + single + + t + 8 + + + t-ln94204-7-p3s1w2 + SPEC + + + + + + a#a-ln94204-7-p3s4w1 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 7 + + + t-ln94204-7-p3s3a0 + SPEC + + + + + + + + a#a-ln94204-7-p3s4w5 + + complex + křižovatka + PAT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln94204-7-p3s4w6 + + complex + informace + APP + + n.denot + fem + pl + single + + f + 11 + + + + a#a-ln94204-7-p3s4w4 + + complex + jaký + RSTR + + adj.pron.indef + indef2 + + f + 12 + + + + + + + + + + + a#a-ln94204-7-p4s1 + 0 + + + smlouva o pronájmu + lexeme + + t-ln94204-7-p4s1w1 + t-ln94204-7-p4s1w3 + + + + + + + a#a-ln94204-7-p4s1w5 + + complex + podepisovat + PRED + enunc + + v + decl + sim + proc + it0 + deagent + asserted + + f + 4 + v#v-w3554f1 + + + + a#a-ln94204-7-p4s1w1 + + complex + smlouva + PAT + + n.denot + fem + pl + single + + t + 2 + + + t-ln94204-7-p3s3w1 + GEN + + + + + + a#a-ln94204-7-p4s1w3 + + a#a-ln94204-7-p4s1w2 + + + complex + pronájem + PAT + + n.denot + inan + sg + single + + t + 1 + + + t-ln94204-7-p2s4w5 + GEN + + + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-ln94204-7-p4s1w9 + + coap + a + CONJ + 7 + + + + a#a-ln94204-7-p4s1w8 + + a#a-ln94204-7-p4s1w7 + + + complex + jeden + TFHL + 1 + + n.quant.def + inan + sg + basic + + f + 5 + + + + a#a-ln94204-7-p4s1w6 + + complex + minimální + EXT + basic + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-ln94204-7-p4s1w13 + + a#a-ln94204-7-p4s1w11 + + + complex + rok + TFHL + 1 + + n.denot + inan + pl + single + + f + 8 + + + + a#a-ln94204-7-p4s1w12 + + complex + tři + RSTR + + adj.quant.def + basic + + f + 9 + + + + a#a-ln94204-7-p4s1w10 + + complex + maximální + EXT + basic + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + + + + a#a-ln94204-7-p4s2 + 0 + + + pevná částka + lexeme + + t-ln94204-7-p4s2w5 + t-ln94204-7-p4s2w6 + + + + + + + a#a-ln94204-7-p4s2w14 + + coap + a + CONJ + 10 + + + + a#a-ln94204-7-p4s2w4 + + a#a-ln94204-7-p4s2w3 + + + complex + uvést + PRED + enunc + 1 + + v + decl + sim + cpl + it0 + res1 + asserted + + f + 3 + v#v-w7449f2 + + + + a#a-ln94204-7-p4s2w2 + + a#a-ln94204-7-p4s2w1 + + + complex + smlouva + LOC + basic + + n.denot + fem + sg + single + + t + 1 + + + t-ln94204-7-p4s1w1 + GEN + + + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-ln94204-7-p4s2w6 + + complex + částka + PAT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-ln94204-7-p4s2w5 + + complex + pevný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94204-7-p4s2w12 + + complex + platit + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w3468f1 + + + + a#a-ln94204-7-p4s2w8 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-ln94204-7-p4s2w6 + + + + + a#a-ln94204-7-p4s2w9 + + complex + nájemce + ACT + + n.denot + anim + sg + single + + t + 7 + + + t-ln94204-7-p3s3w9 + GEN + + + + + + a#a-ln94204-7-p4s2w11 + + a#a-ln94204-7-p4s2w10 + + + complex + byt + EFF + + n.denot + inan + sg + single + + t + 8 + + + t-ln94204-7-p2s4w6 + GEN + + + + + + + + + + + + a#a-ln94204-7-p4s2w17 + + a#a-ln94204-7-p4s2w16 + + + complex + měnit_se + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + + + t-ln94204-7-p4s2w4 + discourse + 0 + 0 + conj + + t-ln94204-7-p4s2w14 + + + + v#v-w1815f2 + + + + a#a-ln94204-7-p4s2w15 + + complex + ten + ACT + + n.pron.def.demon + fem + sg + + t + 11 + + + t-ln94204-7-p4s2w8 + SPEC + + + + + qcomplex + 1 + #Gen + PAT + t + 12 + + + atom + 1 + #Neg + RHEM + f + 13 + + + + + + + + + a#a-ln94204-7-p4s3 + 0 + + + + a#a-ln94204-7-p4s3w9 + + coap + ale + ADVS + 6 + + + + a#a-ln94204-7-p4s3w7 + + a#a-ln94204-7-p4s3w3 + + + complex + prodloužit + PRED + enunc + 1 + + v + poss + post + cpl + it0 + act + asserted + + f + 5 + v#v-w4326f1 + + + + a#a-ln94204-7-p4s3w1 + + complex + smlouva + PAT + + n.denot + fem + sg + single + + t + 1 + + + t-ln94204-7-p4s2w2 + GEN + + + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-ln94204-7-p4s3w5 + + a#a-ln94204-7-p4s3w4 + + + complex + uplynutí + TWHEN + after + + n.denot.neg + neut + sg + single + neg0 + + t + 4 + v#v-w7219f1 + + + + a#a-ln94204-7-p4s3w6 + + complex + lhůta + ACT + + n.denot + fem + sg + single + + t + 3 + + + t-ln94204-7-p4s1w9 + SPEC + + + + + + + + + + a#a-ln94204-7-p4s3w11 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + + + t-ln94204-7-p4s3w7 + discourse + 0 + 0 + opp + + t-ln94204-7-p4s3w9 + + + + v#v-w243f3 + + + + a#a-ln94204-7-p4s3w10 + + complex + potom + TWHEN + basic + + adv.pron.def + + t + 7 + + + + a#a-ln94204-7-p4s3w12 + + complex + třeba + CPHR + + n.denot + neut + sg + single + + f + 10 + + + qcomplex + 1 + #Gen + BEN + nr + t + 9 + + + + + + a#a-ln94204-7-p4s3w19 + + coap + #Comma + CONJ + 17 + + + qcomplex + 1 + #Cor + ACT + t + 11 + + t-ln94204-7-p4s3a1 + + + + + a#a-ln94204-7-p4s3w13 + + complex + upravit + ACT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 12 + v#v-w7234f2 + + + + a#a-ln94204-7-p4s3w14 + + atom + právě + RHEM + f + 13 + + + + a#a-ln94204-7-p4s3w15 + + complex + suma + PAT + + n.denot + fem + sg + single + + f + 14 + + + t-ln94204-7-p4s2w15 + GEN + + + + + + a#a-ln94204-7-p4s3w16 + + complex + placený + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-ln94204-7-p4s3w18 + + a#a-ln94204-7-p4s3w17 + + + complex + byt + EFF + + n.denot + inan + sg + single + + t + 15 + + + t-ln94204-7-p4s2w11 + GEN + + + + + + + + + + + + a#a-ln94204-7-p4s3w20 + + complex + vzít + ACT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 18 + v#v-w8657f1 + + + + a#a-ln94204-7-p4s3w22 + + a#a-ln94204-7-p4s3w21 + + + dphr + v_úvahu + DPHR + f + 19 + + + + a#a-ln94204-7-p4s3w23 + + atom + například + RHEM + f + 20 + + + + a#a-ln94204-7-p4s3w24 + + complex + inflace + PAT + + n.denot + fem + sg + single + + f + 21 + + + + + + + + + + + + + a#a-ln94204-7-p5s1 + 0 + + + number + + t-ln94204-7-p5s1w9 + t-ln94204-7-p5s1w10 + + + + + + + a#a-ln94204-7-p5s1w2 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w243f1 + + + + a#a-ln94204-7-p5s1w1 + + complex + levný + PAT + + adj.denot + sup + neg0 + + c + 1 + + + + a#a-ln94204-7-p5s1w4 + + complex + garsoniéra + ACT + + n.denot + fem + sg + single + + f + 3 + + + t-ln94204-7-p4s3w18 + SET_SUB + + + + + + a#a-ln94204-7-p5s1w3 + + complex + zařízený + RSTR + + adj.denot + pos + neg1 + + f + 4 + + + + a#a-ln94204-7-p5s1w6 + + a#a-ln94204-7-p5s1w5 + + + complex + telefon + ACMP + wout + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln94204-7-p5s1w10 + + complex + tisíc + RSTR + + n.quant.def + inan + sg + basic + + f + 6 + + + t-ln94204-7-p4s3w15 + SET_SUB + + + + + + a#a-ln94204-7-p5s1w11 + + complex + koruna + MAT + + n.denot + fem + pl + single + + f + 7 + + + + a#a-ln94204-7-p5s1w12 + + complex + měsíční + THO + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94204-7-p5s1w9 + + a#a-ln94204-7-p5s1w8 + + + complex + pět + RSTR + + adj.quant.def + basic + + f + 9 + + + + + + + + + + + a#a-ln94204-7-p5s2 + 0 + + + number + + t-ln94204-7-p5s2w14 + t-ln94204-7-p5s2w15 + + + + + + + a#a-ln94204-7-p5s2w9 + + complex + být + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 8 + v#v-w243f1 + + + + a#a-ln94204-7-p5s2w2 + + complex + pronájem + PAT + + n.denot + inan + sg + single + + c + 1 + + + t-ln94204-7-p4s1w3 + SET_SUB + + + + + + a#a-ln94204-7-p5s2w1 + + complex + drahý + RSTR + + adj.denot + sup + neg0 + + f + 2 + + + + a#a-ln94204-7-p5s2w7 + + complex + sjednat + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 7 + v#v-w6078f1 + + + + a#a-ln94204-7-p5s2w4 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 3 + + t-ln94204-7-p5s2w2 + + + + + a#a-ln94204-7-p5s2w5 + + complex + firma + ACT + + n.denot + fem + sg + single + + t + 4 + + + t-ln94204-7-p3s4w10 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-ln94204-7-p5s2w6 + + complex + zatím + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 6 + + + + + + + + a#a-ln94204-7-p5s2w10 + + complex + vila + ACT + + n.denot + fem + sg + single + + f + 9 + + + t-ln94204-7-p2s4w9 + SET_SUB + + + + + + a#a-ln94204-7-p5s2w12 + + a#a-ln94204-7-p5s2w11 + + + complex + Klamovka + LOC + basic + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln94204-7-p5s2w15 + + complex + tisíc + RSTR + + n.quant.def + inan + sg + basic + + f + 11 + + + t-ln94204-7-p4s3w15 + SET_SUB + + + + + + a#a-ln94204-7-p5s2w16 + + complex + dolar + MAT + + n.denot + inan + pl + single + + f + 12 + + + + a#a-ln94204-7-p5s2w17 + + complex + měsíční + THO + + adj.denot + pos + neg0 + + f + 13 + + + + + + a#a-ln94204-7-p5s2w14 + + a#a-ln94204-7-p5s2w13 + + + complex + sedm + RSTR + + adj.quant.def + basic + + f + 14 + + + + + + + + + + + a#a-ln94204-7-p6s1 + 0 + + + number + + t-ln94204-7-p6s1w4 + t-ln94204-7-p6s1w5 + + + + + + + a#a-ln94204-7-p6s1w21 + + complex + uvést + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w7449f1 + + + + a#a-ln94204-7-p6s1w24 + + complex + Vacek + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-ln94204-7-p3s4w12 + SPEC + + + + + + a#a-ln94204-7-p6s1w22 + + complex + M + RSTR + 1 + + n.denot + anim + nr + single + + t + 1 + + + + + + a#a-ln94204-7-p6s1w9 + + coap + #Comma + CONJ + 1 + 11 + + + + a#a-ln94204-7-p6s1w2 + + complex + tvořit + EFF + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 5 + v#v-w6951f1 + + + + a#a-ln94204-7-p6s1w1 + + complex + brzy + TWHEN + basic + + adv.denot.grad.nneg + comp + + c + 4 + + + + a#a-ln94204-7-p6s1w5 + + a#a-ln94204-7-p6s1w3 + + + complex + procento + PAT + + n.denot + neut + pl + single + + f + 6 + + + + a#a-ln94204-7-p6s1w7 + + complex + klientela + MAT + + n.denot + fem + sg + single + + f + 8 + + + + a#a-ln94204-7-p6s1w6 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 7 + + + t-ln94204-7-p5s2w5 + SPEC + + + + + + + + a#a-ln94204-7-p6s1w4 + + complex + 50 + RSTR + + adj.quant.def + basic + + f + 9 + + + + + + a#a-ln94204-7-p6s1w8 + + complex + cizinec + ACT + + n.denot + anim + pl + single + + f + 10 + + + + + + a#a-ln94204-7-p6s1w11 + + complex + být + EFF + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + v#v-w243f1 + + + + a#a-ln94204-7-p6s1w10 + + complex + dnes + TWHEN + basic + + adv.denot.ngrad.nneg + + c + 12 + + + + a#a-ln94204-7-p6s1w13 + + complex + poměr + ACT + + n.denot + inan + sg + single + + f + 15 + + + + a#a-ln94204-7-p6s1w12 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 14 + + + t-ln94204-7-p6s1w8 + GEN + + + + + + a#a-ln94204-7-p6s1w16 + + a#a-ln94204-7-p6s1w14 + + + complex + zájemce + PAT + + n.denot + anim + pl + single + + f + 16 + + + t-ln94204-7-p6s1w12 + CONTRAST + + + + + + a#a-ln94204-7-p6s1w15 + + complex + domácí + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + a#a-ln94204-7-p6s1w18 + + coap + #Colon + OPER + 19 + + + + a#a-ln94204-7-p6s1w17 + + complex + 1 + PAT + 1 + + adj.quant.def + basic + + f + 18 + + + + a#a-ln94204-7-p6s1w19 + + complex + 1 + PAT + 1 + + adj.quant.def + basic + + f + 20 + + + + + + + + + + + + + a#a-ln94204-7-p6s2 + 0 + + + + a#a-ln94204-7-p6s2w1 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 1 + v#v-w243f2 + + + + a#a-ln94204-7-p6s2w2 + + complex + spousta + ACT + + n.denot + fem + sg + single + + f + 2 + + + + a#a-ln94204-7-p6s2w3 + + complex + podnikatel + MAT + + n.denot + anim + pl + single + + f + 3 + + + t-ln94204-7-p2s1Bw3 + GEN + + + + + + a#a-ln94204-7-p6s2w6 + + complex + hledat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w1058f1 + + + + a#a-ln94204-7-p6s2w5 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 4 + + t-ln94204-7-p6s2w3 + + + + + a#a-ln94204-7-p6s2w10 + + a#a-ln94204-7-p6s2w7 + + + complex + zaměstnanec + BEN + basic + + n.denot + anim + pl + single + + f + 7 + + + t-ln94204-7-p2s1Bw13 + SET_SUB + + + + + + a#a-ln94204-7-p6s2w8 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-ln94204-7-p6s2w5 + + + + + a#a-ln94204-7-p6s2w9 + + complex + mimopražský + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94204-7-p6s2w11 + + complex + ubytování + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 11 + v#v-w6979f1 + + + qcomplex + 1 + #Gen + ACT + t + 9 + + + qcomplex + 1 + #Gen + PAT + t + 10 + + + + a#a-ln94204-7-p6s2w13 + + a#a-ln94204-7-p6s2w12 + + + complex + Praha + LOC + basic + + n.denot + fem + sg + single + + f + 12 + + + t-ln94204-7-p3s2w6 + SPEC + + + + + + + + + + + + + + + + + a#a-ln94204-7-p6s3 + 0 + + + + a#a-ln94204-7-p6s3w16 + + coap + a + CONJ + 17 + + + + a#a-ln94204-7-p6s3w1 + + complex + nájemce + ACT + + n.denot + anim + sg + single + + t + 1 + + + t-ln94204-7-p4s2w9 + GEN + + + + + + a#a-ln94204-7-p6s3w11 + + coap + #Comma + DISJ + 1 + 12 + + + + a#a-ln94204-7-p6s3w6 + + a#a-ln94204-7-p6s3w2 + + + complex + dostat + PRED + enunc + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 5 + v#v-w732f2 + + + + a#a-ln94204-7-p6s3w5 + + a#a-ln94204-7-p6s3w3 + + + complex + požadavek + CRIT + + n.denot + inan + pl + single + + t + 3 + + + + a#a-ln94204-7-p6s3w4 + + complex + #PersPron + ACT + + n.pron.def.pers + inher + inher + inher + inher + + t + 2 + + t-ln94204-7-p6s3w1 + + + + + + qcomplex + 1 + #Gen + ORIG + t + 4 + + + + a#a-ln94204-7-p6s3w7 + + complex + nabídka + CPHR + + n.denot + fem + sg + single + + f + 9 + + + t-ln94204-7-p3s2w11 + SET_SUB + + + v#v-w1939f1 + + + qcomplex + 1 + #QCor + ACT + t + 6 + + t-ln94204-7-p6s3a0 + + + + qcomplex + 1 + #Gen + PAT + t + 7 + + + qcomplex + 1 + #QCor + ADDR + t + 8 + + t-ln94204-7-p6s3w1 + + + + + a#a-ln94204-7-p6s3w8 + + atom + i + RHEM + f + 10 + + + + a#a-ln94204-7-p6s3w10 + + a#a-ln94204-7-p6s3w9 + + + complex + telefon + MEANS + + n.denot + inan + sg + single + + f + 11 + + + + + + + + a#a-ln94204-7-p6s3w12 + + atom + popřípadě + CM + 13 + + + + a#a-ln94204-7-p6s3w13 + + a#a-ln94204-7-p6s3w2 + + + complex + navštívit + PRED + enunc + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 14 + + + t-ln94204-7-p6s3w6 + discourse + 0 + 0 + conjalt + + t-ln94204-7-p6s3w12 + + + + v#v-w2319f1 + + + + a#a-ln94204-7-p6s3w14 + + complex + kancelář + PAT + + n.denot + fem + sg + single + + f + 15 + + + + a#a-ln94204-7-p6s3w15 + + complex + společnost + APP + + n.denot + fem + sg + single + + f + 16 + + + t-ln94204-7-p6s1w6 + SPEC + + + + + + + + + + + + a#a-ln94204-7-p6s3w18 + + complex + dostat + PRED + enunc + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 19 + + + t-ln94204-7-p6s3w11 + discourse + 0 + 0 + conj + + t-ln94204-7-p6s3w16 + + + + v#v-w732f1 + + + + a#a-ln94204-7-p6s3w17 + + complex + nabídka + PAT + + n.denot + fem + pl + single + + t + 18 + + + t-ln94204-7-p6s3w7 + GEN + + + + + + a#a-ln94204-7-p6s3w19 + + complex + vytištěný + COMPL + + adj.denot + pos + neg0 + + f + 20 + + t-ln94204-7-p6s3w17 + + + + + + + + + + a#a-ln94204-7-p6s4 + 0 + + + + a#a-ln94204-7-p6s4w3 + + complex + určit + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 3 + + + t-ln94204-7-p6s5w4 + discourse + 0 + 0 + preced + + t-ln94204-7-p6s5w3 + + + + v#v-w7255f2 + + + + a#a-ln94204-7-p6s4w1 + + complex + klient + ACT + + n.denot + anim + sg + single + + c + 1 + + + t-ln94204-7-p6s3w4 + GEN + + + + + + a#a-ln94204-7-p6s4w2 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 2 + + t-ln94204-7-p6s4w1 + + + + + a#a-ln94204-7-p6s4w26 + + a#a-ln94204-7-p6s4w25 + + + complex + pronajmout + PAT + + v + vol + sim + cpl + it0 + act + asserted + + f + 18 + v#v-w4454f1 + + + + a#a-ln94204-7-p6s4w7 + + complex + byt + PAT + + n.denot + inan + sg + single + + t + 4 + + + t-ln94204-7-p4s3w18 + GEN + + + + + + a#a-ln94204-7-p6s4w6 + + complex + velký + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94204-7-p6s4w5 + + complex + jak + EXT + basic + + adv.pron.indef + inter + + f + 6 + + + + + + a#a-ln94204-7-p6s4w21 + + coap + a + CONJ + 14 + + + + a#a-ln94204-7-p6s4w11 + + a#a-ln94204-7-p6s4w9 + + + complex + část + LOC + basic + 1 + + n.denot + fem + sg + single + + f + 7 + + + + a#a-ln94204-7-p6s4w10 + + complex + jaký + RSTR + + adj.pron.indef + inter + + f + 8 + + + + a#a-ln94204-7-p6s4w12 + + complex + Praha + MAT + + n.denot + fem + sg + single + + f + 9 + + + t-ln94204-7-p6s2w13 + SPEC + + + + + + + + a#a-ln94204-7-p6s4w16 + + a#a-ln94204-7-p6s4w14 + + + complex + patro + LOC + basic + 1 + + n.denot + neut + sg + single + + f + 10 + + + + a#a-ln94204-7-p6s4w15 + + complex + který + RSTR + + adj.pron.indef + inter + + f + 11 + + + + + + a#a-ln94204-7-p6s4w20 + + a#a-ln94204-7-p6s4w18 + + + complex + vybavení + ACMP + basic + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 12 + + + t-ln94204-7-p3s2w16 + PART_WHOLE + + + v#v-w7766f1 + + + + a#a-ln94204-7-p6s4w19 + + complex + jaký + RSTR + + adj.pron.indef + inter + + f + 13 + + + + + + a#a-ln94204-7-p6s4w23 + + a#a-ln94204-7-p6s4w22 + + + complex + kolik + EXT + nr + 1 + + adj.quant.indef + inter + basic + + f + 15 + + + t-ln94204-7-p4s3w15 + GEN + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 3 + basic + + t + 16 + + + t-ln94204-7-p6s4w2 + SPEC + + + + + + a#a-ln94204-7-p6s4w24 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 17 + + t-ln94204-7-p6s4a0 + + + + + + + + + + a#a-ln94204-7-p6s5 + 0 + + + + a#a-ln94204-7-p6s5w4 + + complex + dostat + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + v#v-w732f1 + + + + a#a-ln94204-7-p6s5w2 + + a#a-ln94204-7-p6s5w1 + + + complex + databáze + DIR1 + basic + + n.denot + fem + sg + single + + t + 1 + + + t-ln94204-7-p3s4w2 + SPEC + + + + + + a#a-ln94204-7-p6s5w3 + + complex + potom + TWHEN + basic + + adv.pron.def + + t + 2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 3 + basic + + t + 3 + + + t-ln94204-7-p6s4w24 + SPEC + + + + + + a#a-ln94204-7-p6s5w5 + + a#a-ln94204-7-p6s5w16 + + + coap + buď_nebo + DISJ + 11 + + + + a#a-ln94204-7-p6s5w6 + + complex + nabídka + PAT + 1 + + n.denot + fem + sg + single + + f + 5 + + + t-ln94204-7-p6s3w17 + SET_SUB + + + + + + a#a-ln94204-7-p6s5w14 + + a#a-ln94204-7-p6s5w9 + + + complex + krýt_se + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w1623f1 + + + + a#a-ln94204-7-p6s5w8 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-ln94204-7-p6s5w6 + + + + + a#a-ln94204-7-p6s5w12 + + a#a-ln94204-7-p6s5w10 + + + complex + požadavek + PAT + + n.denot + inan + pl + single + + t + 8 + + + + a#a-ln94204-7-p6s5w11 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 7 + + + t-ln94204-7-p6s5a0 + SPEC + + + + + + + + a#a-ln94204-7-p6s5w13 + + complex + dokonalý + EXT + basic + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-ln94204-7-p6s5w17 + + complex + nabídka + PAT + 1 + + n.denot + fem + sg + single + + t + 12 + + + t-ln94204-7-p6s3w17 + SET_SUB + + + t-ln94204-7-p6s5w8 + CONTRAST + + + + + + a#a-ln94204-7-p6s5w21 + + a#a-ln94204-7-p6s5w18 + + + complex + chyba + ACMP + basic + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln94204-7-p6s5w20 + + complex + libovolný + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-ln94204-7-p6s5w19 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 15 + + + + + + + + + + + + + a#a-ln94204-7-p6s6 + 0 + + + + a#a-ln94204-7-p6s6w2 + + complex + znamenat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w9661f1 + + + + a#a-ln94204-7-p6s6w1 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 1 + + + t-ln94204-7-p6s5w17 + SPEC + + + + + + a#a-ln94204-7-p6s6w12 + + coap + nebo + DISJ + 9 + + + + a#a-ln94204-7-p6s6w5 + + complex + byt + ACT + + n.denot + inan + sg + single + + t + 3 + + + t-ln94204-7-p6s4w7 + GEN + + + + + + a#a-ln94204-7-p6s6w6 + + a#a-ln94204-7-p6s6w4 + + + complex + být + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f2 + + + + a#a-ln94204-7-p6s6w7 + + atom + třeba + RHEM + f + 5 + + + + a#a-ln94204-7-p6s6w10 + + a#a-ln94204-7-p6s6w8 + + + complex + část + LOC + basic + + n.denot + fem + sg + single + + f + 6 + + + t-ln94204-7-p6s4w11 + CONTRAST + + + + + + a#a-ln94204-7-p6s6w11 + + complex + Praha + MAT + + n.denot + fem + sg + single + + f + 7 + + + t-ln94204-7-p6s4w12 + SPEC + + + + + + a#a-ln94204-7-p6s6w9 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + a#a-ln94204-7-p6s6w13 + + a#a-ln94204-7-p6s6w4 + + + complex + být + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + + + t-ln94204-7-p6s6w6 + discourse + 0 + 0 + disjalt + + t-ln94204-7-p6s6w12 + + + + v#v-w243f1 + + + + a#a-ln94204-7-p6s6w14 + + complex + drahý + PAT + + adj.denot + comp + neg0 + + f + 11 + + + + + + a#a-ln94204-7-p6s6w15 + + a#a-ln94204-7-p6s6w4 + + + complex + apod + PAT + 1 + + adv.denot.grad.neg + pos + neg0 + + f + 12 + + + + + + + + + a#a-ln94204-7-p7s1 + 0 + + + v každém případě + lexeme + + t-ln94204-7-p7s1w10 + t-ln94204-7-p7s1w11 + + + + + + + a#a-ln94204-7-p7s1w8 + + coap + ale + ADVS + 7 + + + + a#a-ln94204-7-p7s1w1 + + complex + pronajímatel + ACT + + n.denot + anim + sg + single + + t + 1 + + + t-ln94204-7-p3s3w5 + GEN + + + + + + a#a-ln94204-7-p7s1w3 + + a#a-ln94204-7-p7s1w2 + + + complex + nabídnout + PRED + enunc + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 3 + v#v-w1940f1 + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-ln94204-7-p7s1w5 + + atom + i + RHEM + f + 4 + + + + a#a-ln94204-7-p7s1w6 + + complex + telefonický + MANN + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94204-7-p7s1w4 + + complex + byt + PAT + + n.denot + inan + sg + single + + f + 6 + + + t-ln94204-7-p6s6w5 + GEN + + + + + + + + a#a-ln94204-7-p7s1w15 + + a#a-ln94204-7-p7s1w12 + a#a-ln94204-7-p7s1w13 + + + complex + dostavit_se + PRED + enunc + 1 + + v + deb + sim + cpl + it0 + act + asserted + + f + 10 + + + t-ln94204-7-p7s1w3 + discourse + 0 + 0 + opp + + t-ln94204-7-p7s1w8 + + + + v#v-w740f1 + + + + a#a-ln94204-7-p7s1w11 + + a#a-ln94204-7-p7s1w9 + + + atom + případ + ATT + t + 8 + + + + a#a-ln94204-7-p7s1w10 + + complex + který + RSTR + + adj.pron.indef + total2 + + f + 9 + + + + + + a#a-ln94204-7-p7s1w14 + + complex + osobní + MANN + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln94204-7-p7s1w17 + + a#a-ln94204-7-p7s1w16 + + + complex + kancelář + DIR3 + basic + + n.denot + fem + sg + single + + f + 12 + + + t-ln94204-7-p6s3w14 + GEN + + + + + + a#a-ln94204-7-p7s1w18 + + complex + společnost + APP + + n.denot + fem + sg + single + + f + 13 + + + t-ln94204-7-p6s3w15 + SPEC + + + + + + + + a#a-ln94204-7-p7s1w20 + + a#a-ln94204-7-p7s1w19 + + + complex + podepsání + AIM + + n.denot.neg + neut + sg + single + neg0 + + f + 15 + v#v-w3557f1 + + + qcomplex + 1 + #Gen + ACT + t + 14 + + + + a#a-ln94204-7-p7s1w22 + + complex + smlouva + PAT + + n.denot + fem + sg + single + + f + 16 + + + + a#a-ln94204-7-p7s1w21 + + complex + zprostředkovatelský + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + a#a-ln94204-7-p7s2 + 0 + + + + a#a-ln94204-7-p7s2w1 + + complex + uzavírat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w7472f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 1 + + + t-ln94204-7-p7s1w18 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 2 + + + + a#a-ln94204-7-p7s2w4 + + complex + smlouva + CPHR + + n.denot + fem + pl + single + + f + 7 + + + t-ln94204-7-p7s1w22 + CONTRAST + + + v#v-w6216f1 + + + qcomplex + 1 + #QCor + ACT + t + 4 + + t-ln94204-7-p7s2a0 + + + + qcomplex + 1 + #Gen + PAT + t + 5 + + + qcomplex + 1 + #Gen + ADDR + t + 6 + + + + a#a-ln94204-7-p7s2w3 + + complex + zprostředkovatelský + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln94204-7-p7s2w2 + + complex + exkluzivní + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-ln94204-7-p7s2w1 + + a#a-ln94204-7-p7s2w5 + + + complex + 1 + uzavírat + CPR + basic + + v + decl + sim + proc + it0 + act + asserted + + t + 14 + v#v-w7472f1 + + + + a#a-ln94204-7-p7s2w4 + + complex + 1 + smlouva + CPHR + + n.denot + fem + pl + single + + t + 13 + v#v-w6216f1 + + + qcomplex + 1 + #QCor + ACT + t + 10 + + t-ln94204-7-p7s2w8 + + + + qcomplex + 1 + #Gen + PAT + t + 11 + + + qcomplex + 1 + #Gen + ADDR + t + 12 + + + + + + a#a-ln94204-7-p7s2w8 + + complex + firma + ACT + + n.denot + fem + pl + single + + f + 15 + + + t-ln94204-7-p7s1w18 + CONTRAST + + + + + + a#a-ln94204-7-p7s2w7 + + complex + realitní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-ln94204-7-p7s2w6 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + a#a-ln94204-7-p7s2w13 + + complex + znamenat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w9661f1 + + + + a#a-ln94204-7-p7s2w10 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 18 + + t-ln94204-7-p7s2w4 + + + + + a#a-ln94204-7-p7s2w12 + + a#a-ln94204-7-p7s2w11 + + + complex + pronajímatel + BEN + basic + + n.denot + anim + pl + single + + t + 19 + + + t-ln94204-7-p7s1w1 + GEN + + + + + + a#a-ln94204-7-p7s2w31 + + a#a-ln94204-7-p7s2w15 + a#a-ln94204-7-p7s2w29 + + + complex + najít + PAT + + v + perm + sim + cpl + it0 + act + asserted + + f + 33 + v#v-w2042f1 + + + + a#a-ln94204-7-p7s2w17 + + a#a-ln94204-7-p7s2w16 + + + complex + hrozba + COND + + n.denot + fem + sg + single + + c + 21 + + + + a#a-ln94204-7-p7s2w18 + + complex + pokuta + ACT + + n.denot + fem + sg + single + + f + 22 + + + + a#a-ln94204-7-p7s2w20 + + a#a-ln94204-7-p7s2w19 + + + complex + výše + RSTR + + n.denot + fem + sg + single + + f + 23 + + + + a#a-ln94204-7-p7s2w21 + + atom + + RHEM + f + 24 + + + + a#a-ln94204-7-p7s2w24 + + complex + nájem + RSTR + + n.denot + inan + pl + single + + f + 25 + + + + a#a-ln94204-7-p7s2w23 + + complex + měsíční + RSTR + + adj.denot + pos + neg0 + + f + 26 + + + + a#a-ln94204-7-p7s2w22 + + complex + tři + RSTR + + adj.quant.def + basic + + f + 27 + + + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 28 + + + t-ln94204-7-p7s2w12 + GEN + + + + + + a#a-ln94204-7-p7s2w25 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 29 + + t-ln94204-7-p7s2a4 + + + + + a#a-ln94204-7-p7s2w28 + + a#a-ln94204-7-p7s2w26 + + + complex + doba + TFHL + + n.denot + fem + sg + single + + t + 30 + + + + a#a-ln94204-7-p7s2w27 + + complex + určitý + RSTR + + adj.denot + pos + neg0 + + f + 31 + + + + + atom + 1 + #Neg + RHEM + f + 32 + + + + a#a-ln94204-7-p7s2w30 + + complex + sám + COMPL + + adj.pron.def.demon + + f + 34 + + t-ln94204-7-p7s2a4 + + + + + a#a-ln94204-7-p7s2w32 + + complex + klient + PAT + + n.denot + anim + sg + single + + f + 35 + + + + + + + + + + + + + + + a#a-ln94204-7-p7s3 + 0 + + + podle mého názoru + lexeme + + t-ln94204-7-p7s3w2 + t-ln94204-7-p7s3w3 + + + + + + + a#a-ln94204-7-p7s3w21 + + coap + nebo + DISJ + 17 + + + + a#a-ln94204-7-p7s3w3 + + a#a-ln94204-7-p7s3w1 + + + complex + názor + CRIT + + n.denot + inan + sg + single + + t + 2 + + + + a#a-ln94204-7-p7s3w2 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 1 + basic + + t + 1 + + + t-ln94204-7-p6s1w24 + SPEC + + + + + + + + a#a-ln94204-7-p7s3w8 + + a#a-ln94204-7-p7s3w7 + a#a-ln94204-7-p7s3w4 + + + complex + platit + PRED + enunc + 1 + + v + hrt + nil + proc + it0 + act + potential + + f + 5 + v#v-w3468f1 + + + + a#a-ln94204-7-p7s3w6 + + complex + pokuta + PAT + + n.denot + fem + sg + single + + t + 3 + + + t-ln94204-7-p7s2w18 + GEN + + + + + + a#a-ln94204-7-p7s3w5 + + complex + stejný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-ln94204-7-p7s3w9 + + atom + i + RHEM + f + 6 + + + + a#a-ln94204-7-p7s3w10 + + complex + kancelář + ACT + + n.denot + fem + sg + single + + f + 7 + + + t-ln94204-7-p7s2w8 + GEN + + + + + + a#a-ln94204-7-p7s3w16 + + a#a-ln94204-7-p7s3w12 + + + complex + být + COND + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + + + t-ln94204-7-p7s3w8 + discourse + 0 + 0 + cond + + a#a-ln94204-7-p7s3w12 + + + + v#v-w243f1 + + + + a#a-ln94204-7-p7s3w15 + + a#a-ln94204-7-p7s3w13 + + + complex + doba + TWHEN + basic + + n.denot + fem + sg + single + + t + 9 + + + + a#a-ln94204-7-p7s3w14 + + complex + daný + RSTR + + adj.denot + pos + neg0 + + t + 8 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 10 + + + t-ln94204-7-p7s3w10 + GEN + + + + + atom + 1 + #Neg + RHEM + f + 11 + + + + a#a-ln94204-7-p7s3w17 + + complex + schopný + PAT + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-ln94204-7-p7s3w18 + + complex + najít + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 15 + v#v-w2042f1 + + + qcomplex + 1 + #Cor + ACT + t + 14 + + t-ln94204-7-p7s3a0 + + + + + a#a-ln94204-7-p7s3w19 + + complex + nájemce + PAT + + n.denot + anim + sg + single + + f + 16 + + + t-ln94204-7-p6s5w11 + GEN + + + + + + + + + + + + + + a#a-ln94204-7-p7s3w26 + + a#a-ln94204-7-p7s3w22 + a#a-ln94204-7-p7s3w23 + + + complex + uzavírat + PRED + enunc + 1 + + v + hrt + nil + proc + it0 + act + potential + + f + 25 + + + t-ln94204-7-p7s3w8 + discourse + 0 + 0 + disjalt + + t-ln94204-7-p7s3w21 + + + + v#v-w7472f1 + + + + a#a-ln94204-7-p7s3w25 + + complex + smlouva + CPHR + + n.denot + fem + pl + single + + t + 22 + + + t-ln94204-7-p7s2a9 + GEN + + + v#v-w6216f1 + + + + a#a-ln94204-7-p7s3w24 + + complex + exkluzivní + RSTR + + adj.denot + pos + neg0 + + t + 18 + + + qcomplex + 1 + #QCor + ACT + t + 19 + + t-ln94204-7-p7s3a4 + + + + qcomplex + 1 + #Gen + PAT + t + 20 + + + qcomplex + 1 + #Gen + ADDR + t + 21 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 23 + + + t-ln94204-7-p7s3a2 + GEN + + + + + atom + 1 + #Neg + RHEM + f + 24 + + + + + + + + + a#a-ln94204-7-p7s4 + 0 + + + + a#a-ln94204-7-p7s4w8 + + complex + zavazovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w9261f1 + + + + a#a-ln94204-7-p7s4w3 + + complex + smlouva + ACT + + n.denot + fem + sg + single + + c + 2 + + + t-ln94204-7-p7s1w22 + GEN + + + + + + a#a-ln94204-7-p7s4w2 + + complex + zprostředkovatelský + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + a#a-ln94204-7-p7s4w1 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + f + 3 + + + t-ln94204-7-p7s2a8 + SPEC + + + + + + + + a#a-ln94204-7-p7s4w5 + + coap + ani + CONJ + 5 + + + + a#a-ln94204-7-p7s4w4 + + complex + pronajímatel + ADDR + 1 + + n.denot + anim + sg + single + + t + 4 + + + t-ln94204-7-p7s2w25 + GEN + + + + + + a#a-ln94204-7-p7s4w6 + + complex + nájemce + ADDR + 1 + + n.denot + anim + sg + single + + t + 6 + + + t-ln94204-7-p7s3w19 + GEN + + + + + + + atom + 1 + #Neg + RHEM + f + 7 + + + + a#a-ln94204-7-p7s4w7 + + complex + jak + MANN + + adv.pron.indef + negat + + f + 9 + + + + + + + a#a-ln94204-7-p7s5 + 0 + + + + a#a-ln94204-7-p7s5w12 + + complex + vysvětlit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w8418f1 + + + + a#a-ln94204-7-p7s5w15 + + complex + Vacek + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-ln94204-7-p7s3w2 + SPEC + + + + + + a#a-ln94204-7-p7s5w13 + + complex + M + RSTR + 1 + + n.denot + anim + nr + single + + t + 1 + + + + + qcomplex + 1 + #Gen + ADDR + t + 3 + + + + a#a-ln94204-7-p7s5w8 + + a#a-ln94204-7-p7s5w4 + + + complex + dostávat_se + PAT + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w737f1 + + + + a#a-ln94204-7-p7s5w3 + + a#a-ln94204-7-p7s5w1 + + + complex + podpis + TWHEN + after + + n.denot + inan + sg + single + + t + 6 + + + + a#a-ln94204-7-p7s5w2 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 5 + + + t-ln94204-7-p7s4w3 + GEN + + + + + + + + a#a-ln94204-7-p7s5w6 + + complex + nabídka + ACT + + n.denot + fem + sg + single + + t + 8 + + + + a#a-ln94204-7-p7s5w5 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 7 + + + t-ln94204-7-p7s4w5 + GEN + + + + + + + + a#a-ln94204-7-p7s5w7 + + complex + okamžitý + TWHEN + basic + + adj.denot + pos + neg0 + + t + 9 + + + + a#a-ln94204-7-p7s5w10 + + a#a-ln94204-7-p7s5w9 + + + complex + databáze + DIR3 + basic + + n.denot + fem + sg + single + + f + 11 + + + t-ln94204-7-p6s5w2 + SPEC + + + + + + + + + + + a#a-ln94204-7-p7s6 + 0 + + + + a#a-ln94204-7-p7s6w9 + + complex + platit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w3468f1 + + + + a#a-ln94204-7-p7s6w4 + + coap + a + CONJ + 4 + + + + a#a-ln94204-7-p7s6w2 + + a#a-ln94204-7-p7s6w1 + + + complex + uzavření + CAUS + 1 + + n.denot.neg + neut + sg + single + neg0 + + c + 2 + v#v-w7474f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-ln94204-7-p7s6w3 + + complex + smlouva + PAT + + n.denot + fem + sg + single + + f + 3 + + + t-ln94204-7-p7s5w2 + GEN + + + + + + + + a#a-ln94204-7-p7s6w5 + + a#a-ln94204-7-p7s6w1 + + + complex + zařazení + CAUS + 1 + + n.denot.neg + neut + sg + single + neg0 + + c + 7 + + + t-ln94204-7-p7s5w8 + SPEC + + + v#v-w9099f1 + + + qcomplex + 1 + #Gen + ACT + t + 5 + + + qcomplex + 1 + #Gen + PAT + t + 6 + + + + a#a-ln94204-7-p7s6w7 + + a#a-ln94204-7-p7s6w6 + + + complex + databáze + DIR3 + basic + + n.denot + fem + sg + single + + f + 8 + + + t-ln94204-7-p7s5w10 + SPEC + + + + + + + + + + a#a-ln94204-7-p7s6w8 + + complex + klient + ACT + + n.denot + anim + sg + single + + t + 9 + + + t-ln94204-7-p7s5w5 + GEN + + + + + qcomplex + 1 + #Gen + PAT + t + 10 + + + atom + 1 + #Neg + RHEM + f + 11 + + + + + + + a#a-ln94204-7-p8s1 + 0 + + + smlouva o pronájmu + lexeme + + t-ln94204-7-p8s1w11 + t-ln94204-7-p8s1w14 + + + + + + + a#a-ln94204-7-p8s1w17 + + complex + zaplatit + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 13 + v#v-w9020f1 + + + + a#a-ln94204-7-p8s1w2 + + a#a-ln94204-7-p8s1w1 + + + complex + případ + TWHEN + basic + + n.denot + inan + sg + single + + t + 1 + + + + a#a-ln94204-7-p8s1w9 + + a#a-ln94204-7-p8s1w4 + + + complex + uzavřít + PAT + + v + decl + post + cpl + it0 + act + asserted + + f + 5 + v#v-w7476f1 + + + + a#a-ln94204-7-p8s1w6 + + a#a-ln94204-7-p8s1w5 + + + complex + Ubytreal + CAUS + + n.denot + inan + sg + single + + t + 2 + + + t-ln94204-7-p7s4w1 + SPEC + + + + + + a#a-ln94204-7-p8s1w8 + + a#a-ln94204-7-p8s1w7 + + + complex + zprostředkovatel + COMPL + + n.denot + anim + sg + single + + t + 3 + + t-ln94204-7-p8s1w6 + + + + + a#a-ln94204-7-p8s1w10 + + complex + nájemce + ACT + + n.denot + anim + sg + single + + t + 4 + + + t-ln94204-7-p7s4w6 + GEN + + + + + + a#a-ln94204-7-p8s1w11 + + complex + smlouva + CPHR + + n.denot + fem + sg + single + + f + 8 + + + t-ln94204-7-p4s3w1 + GEN + + + v#v-w6216f2 + + + qcomplex + 1 + #QCor + ACT + t + 6 + + t-ln94204-7-p8s1w10 + + + + qcomplex + 1 + #Gen + ADDR + t + 7 + + + + a#a-ln94204-7-p8s1w14 + + a#a-ln94204-7-p8s1w12 + + + complex + pronájem + PAT + + n.denot + inan + sg + single + + f + 9 + + + t-ln94204-7-p4s1w3 + GEN + + + + + + a#a-ln94204-7-p8s1w15 + + complex + byt + PAT + + n.denot + inan + sg + single + + f + 10 + + + t-ln94204-7-p7s1w4 + GEN + + + + + + a#a-ln94204-7-p8s1w13 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 12 + + + t-ln94204-7-p8s1a2 + SPEC + + + + + + a#a-ln94204-7-p8s1w19 + + complex + společnost + ADDR + + n.denot + fem + sg + single + + f + 15 + + + t-ln94204-7-p8s1w6 + SPEC + + + + + + a#a-ln94204-7-p8s1w18 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 14 + + + + + + a#a-ln94204-7-p8s1w20 + + complex + odměna + PAT + + n.denot + fem + sg + single + + f + 16 + + + + a#a-ln94204-7-p8s1w22 + + a#a-ln94204-7-p8s1w21 + + + complex + výše + RSTR + + n.denot + fem + sg + single + + f + 17 + + + + a#a-ln94204-7-p8s1w24 + + complex + procento + RSTR + + n.denot + neut + pl + single + + f + 18 + + + + a#a-ln94204-7-p8s1w26 + + complex + nájem + MAT + + n.denot + inan + sg + single + + f + 19 + + + + a#a-ln94204-7-p8s1w25 + + complex + měsíční + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + + + a#a-ln94204-7-p8s1w23 + + complex + 70 + RSTR + + adj.quant.def + basic + + f + 21 + + + + + + + + + + + + + a#a-ln94204-7-p8s2 + 0 + + + smlouva o pronájmu + lexeme + + t-ln94204-7-p8s2w5 + t-ln94204-7-p8s2w8 + + + + + + + a#a-ln94204-7-p8s2w12 + + complex + zaplatit + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 12 + v#v-w9020f1 + + + + a#a-ln94204-7-p8s2w4 + + a#a-ln94204-7-p8s2w1 + + + complex + uzavřít + COND + + v + decl + post + cpl + it0 + act + asserted + + t + 8 + + + t-ln94204-7-p8s2w12 + discourse + 0 + 0 + cond + + a#a-ln94204-7-p8s2w1 + + + + v#v-w7476f1 + + + + a#a-ln94204-7-p8s2w2 + + complex + přičinění + MEANS + + n.denot.neg + neut + sg + single + neg0 + + t + 2 + v#v-w5097f1 + + + + a#a-ln94204-7-p8s2w3 + + complex + Ubytreal + ACT + + n.denot + inan + sg + single + + t + 1 + + + t-ln94204-7-p8s1w19 + SPEC + + + + + + + + a#a-ln94204-7-p8s2w5 + + complex + smlouva + CPHR + + n.denot + fem + sg + single + + t + 7 + + + t-ln94204-7-p8s1w11 + GEN + + + v#v-w6216f1 + + + + a#a-ln94204-7-p8s2w8 + + a#a-ln94204-7-p8s2w6 + + + complex + pronájem + PAT + + n.denot + inan + sg + single + + t + 4 + + + t-ln94204-7-p8s1w14 + GEN + + + + + + a#a-ln94204-7-p8s2w7 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + t + 3 + + + + + qcomplex + 1 + #QCor + ACT + t + 5 + + t-ln94204-7-p8s2w9 + + + + qcomplex + 1 + #Gen + ADDR + t + 6 + + + + + + a#a-ln94204-7-p8s2w9 + + complex + pronajímatel + ACT + + n.denot + anim + sg + single + + f + 9 + + + t-ln94204-7-p7s4w4 + GEN + + + + + + a#a-ln94204-7-p8s2w10 + + complex + byt + PAT + + n.denot + inan + sg + single + + f + 10 + + + t-ln94204-7-p8s1w15 + GEN + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 11 + + + t-ln94204-7-p8s2w9 + SPEC + + + + + + a#a-ln94204-7-p8s2w13 + + complex + odměna + PAT + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln94204-7-p8s2w15 + + a#a-ln94204-7-p8s2w14 + + + complex + výše + RSTR + + n.denot + fem + sg + single + + f + 14 + + + + a#a-ln94204-7-p8s2w17 + + complex + procento + RSTR + + n.denot + neut + pl + single + + f + 15 + + + + a#a-ln94204-7-p8s2w19 + + complex + nájem + MAT + + n.denot + inan + sg + single + + f + 16 + + + t-ln94204-7-p8s1w26 + GEN + + + + + + a#a-ln94204-7-p8s2w18 + + complex + měsíční + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + a#a-ln94204-7-p8s2w16 + + complex + 100 + RSTR + + adj.quant.def + basic + + f + 18 + + + + + + + + + + + + + a#a-ln94204-7-p8s3 + 0 + + + + a#a-ln94204-7-p8s3w2 + + complex + platit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w3468f3 + + + + a#a-ln94204-7-p8s3w1 + + complex + pronajímatel + ACT + + n.denot + anim + sg + single + + t + 1 + + + t-ln94204-7-p8s2a0 + GEN + + + + + qcomplex + 1 + #Oblfm + EXT + nr + t + 3 + + + + a#a-ln94204-7-p8s3w3 + + complex + hodně + RSTR + + adj.quant.grad + comp + basic + + f + 4 + + + + + + a#a-ln94204-7-p8s3w6 + + a#a-ln94204-7-p8s3w5 + + + complex + být + CAUS + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + t-ln94204-7-p8s3w2 + discourse + 0 + 0 + reason + + a#a-ln94204-7-p8s3w5 + + + + v#v-w243f1 + + + + a#a-ln94204-7-p8s3w7 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 5 + segm + + + + a#a-ln94204-7-p8s3w9 + + complex + činnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 7 + + + + a#a-ln94204-7-p8s3w8 + + complex + výdělečný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + + a#a-ln94204-7-p8s4 + 0 + + + smlouva o pronájmu + lexeme + + t-ln94204-7-p8s4w6 + t-ln94204-7-p8s4w9 + + + + + + + a#a-ln94204-7-p8s4w4 + + complex + končit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + + + t-ln94204-7-p8s1w17 + discourse + 0 + 1 + opp + + t-ln94204-7-p8s4w3 + + + + v#v-w1480f1 + + + + a#a-ln94204-7-p8s4w3 + + atom + ovšem + PREC + t + 1 + + + + a#a-ln94204-7-p8s4w2 + + complex + služba + ACT + + n.denot + fem + pl + single + + t + 3 + + + t-ln94204-7-p1s1w4 + SPEC + + + + + + a#a-ln94204-7-p8s4w1 + + complex + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 2 + + + t-ln94204-7-p8s2w3 + SPEC + + + + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + a#a-ln94204-7-p8s4w10 + + coap + a + CONJ + 10 + + + + a#a-ln94204-7-p8s4w5 + + complex + podpis + MEANS + 1 + + n.denot + inan + sg + single + + f + 6 + + + + a#a-ln94204-7-p8s4w6 + + complex + smlouva + PAT + + n.denot + fem + sg + single + + f + 7 + + + t-ln94204-7-p8s2w5 + GEN + + + + + + a#a-ln94204-7-p8s4w9 + + a#a-ln94204-7-p8s4w7 + + + complex + pronájem + PAT + + n.denot + inan + sg + single + + f + 8 + + + t-ln94204-7-p8s2w8 + GEN + + + + + + a#a-ln94204-7-p8s4w8 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + a#a-ln94204-7-p8s4w11 + + complex + vyinkasování + MEANS + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 12 + v#v-w7966f1 + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-ln94204-7-p8s4w12 + + complex + odměna + PAT + + n.denot + fem + sg + single + + f + 13 + + + t-ln94204-7-p8s1w20 + SUB_SET + + + t-ln94204-7-p8s2w13 + SUB_SET + + + + + + + + + + + + + a#a-ln94204-7-p8s5 + 0 + + + po celou dobu + lexeme + + t-ln94204-7-p8s5w5 + t-ln94204-7-p8s5w6 + + + + + + + a#a-ln94204-7-p8s5w11 + + complex + uvést + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w7449f1 + + + + a#a-ln94204-7-p8s5w14 + + complex + Vacek + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-ln94204-7-p7s5w15 + SPEC + + + + + + a#a-ln94204-7-p8s5w12 + + complex + M + RSTR + 1 + + n.denot + anim + nr + single + + t + 1 + + + + + + a#a-ln94204-7-p8s5w3 + + complex + poskytovat + EFF + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w3978f1 + + + + a#a-ln94204-7-p8s5w2 + + complex + klient + ADDR + + n.denot + anim + pl + single + + t + 5 + + + t-ln94204-7-p7s6w8 + GEN + + + + + + a#a-ln94204-7-p8s5w1 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-ln94204-7-p8s5a0 + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 6 + + + t-ln94204-7-p8s4w1 + SPEC + + + + + + a#a-ln94204-7-p8s5w6 + + a#a-ln94204-7-p8s5w4 + + + complex + doba + THL + + n.denot + fem + sg + single + + f + 8 + + + + a#a-ln94204-7-p8s5w7 + + complex + nájem + RSTR + + n.denot + inan + sg + single + + f + 9 + + + t-ln94204-7-p8s4w9 + GEN + + + + + + a#a-ln94204-7-p8s5w5 + + complex + celý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-ln94204-7-p8s5w9 + + complex + servis + PAT + + n.denot + inan + sg + single + + f + 11 + + + + a#a-ln94204-7-p8s5w8 + + complex + právní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + diff --git a/demo/pdt_test/ln94204_7.txt b/demo/pdt_test/ln94204_7.txt new file mode 100644 index 00000000..3bdd454d --- /dev/null +++ b/demo/pdt_test/ln94204_7.txt @@ -0,0 +1,15 @@ +Smlouvou o pronájmu služby nekončí + +Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. Movitější zahraniční studenti se nespokojí s bydlením na kolejích. Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. + +V databance má pouze byty I. kategorie v Praze a jejím okolí. Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. + +Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. + +Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. + +Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. + +Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. Za uzavření smlouvy a zařazení do databáze klient neplatí. + +V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. Pronajímatel platí víc, protože je to výdělečná činnost. Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. \ No newline at end of file diff --git a/demo/pdt_test/ln94204_7.w b/demo/pdt_test/ln94204_7.w new file mode 100644 index 00000000..fc5d39ce --- /dev/null +++ b/demo/pdt_test/ln94204_7.w @@ -0,0 +1,1692 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1994 +<authname>y +<opus>ln94204 +<id>7 + + + + 1 + + Smlouvou + + + o + + + pronájmu + + + služby + + + nekončí + + + + 2 + + Dana + + + Rybáková + + + Firmy + 1 + + + , + + + které + + + podnikají + + + v + + + Praze + 1 + + + , + + + mnohdy + + + potřebují + + + byty + + + pro + + + své + + + zaměstnance + 1 + + + . + + + Movitější + + + zahraniční + + + studenti + + + se + + + nespokojí + + + s + + + bydlením + + + na + + + kolejích + 1 + + + . + + + Ti + + + a + + + mnozí + + + další + + + hledají + + + možnost + + + dlouhodobého + + + pronájmu + + + bytu + 1 + + + . + + + A + + + právě + + + na + + + dlouhodobé + + + pronájmy + + + bytů + + + a + + + rodinných + + + domů + + + se + + + specializuje + + + firma + + + Ubytreal + 1 + + + . + + + + 3 + + V + + + databance + + + + + + pouze + + + byty + + + I + 1 + + + . + + + kategorie + + + v + + + Praze + + + a + + + jejím + + + okolí + 1 + + + . + + + Výjimku + + + tvoří + + + byty + + + v + + + centru + + + Prahy + 1 + + + , + + + kde + + + se + + + do + + + nabídky + + + zařazují + + + i + + + byty + + + s + + + vytápěním + + + wavkami + 1 + + + . + + + Smlouvy + + + podepisujeme + + + jak + + + s + + + pronajímateli + 1 + + + , + + + tak + + + s + + + nájemci + 1 + + + . + + + Naše + + + databanka + + + je + + + jakousi + + + křižovatkou + + + informací + 1 + + + , + + + řekl + + + spolumajitel + + + firmy + + + Michal + + + Vacek + 1 + + + . + + + + 4 + + Smlouvy + + + o + + + pronájmu + + + se + + + podepisují + + + minimálně + + + na + + + jeden + + + a + + + maximálně + + + na + + + tři + + + roky + 1 + + + . + + + Ve + + + smlouvě + + + je + + + uvedena + + + pevná + + + částka + 1 + + + , + + + kterou + + + nájemce + + + za + + + byt + + + platí + 1 + + + , + + + a + + + ta + + + se + + + nemění + 1 + + + . + + + Smlouva + + + se + + + + + + po + + + uplynutí + + + lhůty + + + prodloužit + 1 + + + , + + + ale + + + pak + + + je + + + třeba + + + upravit + + + právě + + + sumu + + + placenou + + + za + + + byt + 1 + + + , + + + vzít + + + v + + + úvahu + + + například + + + inflaci + 1 + + + . + + + + 5 + + Nejlevnější + + + je + + + nezařízená + + + garsoniéra + + + bez + + + telefonu + 1 + + + , + + + za + + + pět + + + tisíc + + + korun + + + měsíčně + 1 + + + . + + + Nejdražší + + + pronájem + 1 + + + , + + + který + + + firma + + + zatím + + + sjednala + 1 + + + , + + + byla + + + vila + + + na + + + Klamovce + + + za + + + sedm + + + tisíc + + + dolarů + + + měsíčně + 1 + + + . + + + + 6 + + Dříve + + + tvořili + + + přes + + + 50 + + + procent + + + naší + + + klientely + + + cizinci + 1 + + + , + + + dnes + + + je + + + jejich + + + poměr + + + k + + + domácím + + + zájemcům + + + 1 + 1 + + + : + 1 + + + 1 + 1 + + + , + + + uvedl + + + M + 1 + + + . + + + Vacek + 1 + + + . + + + Je + + + spousta + + + podnikatelů + 1 + + + , + + + kteří + + + hledají + + + pro + + + své + + + mimopražské + + + zaměstnance + + + ubytování + + + v + + + Praze + 1 + + + . + + + Nájemce + + + může + + + podle + + + svých + + + požadavků + + + dostat + + + nabídku + + + i + + + po + + + telefonu + 1 + + + , + + + popřípadě + + + navštívit + + + kancelář + + + společnosti + + + a + + + nabídky + + + dostane + + + vytištěné + 1 + + + . + + + Klient + + + si + + + určí + 1 + + + , + + + jak + + + velký + + + byt + 1 + + + , + + + v + + + jaké + + + části + + + Prahy + 1 + + + , + + + v + + + kterém + + + patře + 1 + + + , + + + s + + + jakým + + + vybavením + + + a + + + za + + + kolik + + + si + + + chce + + + pronajmout + 1 + + + . + + + Z + + + databáze + + + pak + + + dostane + + + buď + + + nabídku + 1 + + + , + + + která + + + se + + + s + + + jeho + + + požadavky + + + dokonale + + + kryje + 1 + + + , + + + nebo + + + nabídku + + + s + + + jednou + + + libovolnou + + + chybou + 1 + + + . + + + To + + + znamená + 1 + + + , + + + že + + + byt + + + je + + + třeba + + + v + + + jiné + + + části + + + Prahy + + + nebo + + + je + + + dražší + + + apod + 1 + + + . + + + + 7 + + Pronajímatel + + + může + + + nabídnout + + + byt + + + i + + + telefonicky + 1 + + + , + + + ale + + + v + + + každém + + + případě + + + se + + + musí + + + osobně + + + dostavit + + + do + + + kanceláře + + + společnosti + + + k + + + podepsání + + + zprostředkovatelské + + + smlouvy + 1 + + + . + + + Neuzavíráme + + + exkluzivní + + + zprostředkovatelské + + + smlouvy + + + jako + + + jiné + + + realitní + + + firmy + 1 + + + , + + + které + + + pro + + + pronajímatele + + + znamenají + 1 + + + , + + + že + + + pod + + + hrozbou + + + pokuty + + + ve + + + výši + + + + + + tří + + + měsíčních + + + nájmů + + + si + + + po + + + určitou + + + dobu + + + nesmí + + + sám + + + najít + + + klienta + 1 + + + . + + + Podle + + + mého + + + názoru + + + by + + + stejnou + + + pokutu + + + měla + + + platit + + + i + + + kancelář + 1 + + + , + + + pokud + + + v + + + dané + + + době + + + není + + + schopna + + + najít + + + nájemce + 1 + + + , + + + nebo + + + by + + + neměla + + + exkluzivní + + + smlouvy + + + uzavírat + 1 + + + . + + + Naše + + + zprostředkovatelská + + + smlouva + + + pronajímatele + + + ani + + + nájemce + + + nijak + + + nezavazuje + 1 + + + . + + + Po + + + jejím + + + podpisu + + + se + + + jeho + + + nabídka + + + okamžitě + + + dostává + + + do + + + databáze + 1 + + + , + + + vysvětlil + + + M + 1 + + + . + + + Vacek + 1 + + + . + + + Za + + + uzavření + + + smlouvy + + + a + + + zařazení + + + do + + + databáze + + + klient + + + neplatí + 1 + + + . + + + + 8 + + V + + + případě + 1 + + + , + + + že + + + díky + + + Ubytrealu + + + jako + + + zprostředkovateli + + + uzavře + + + nájemce + + + smlouvu + + + na + + + dlouhodobý + + + pronájem + + + bytu + 1 + + + , + + + zaplatí + + + této + + + společnosti + + + odměnu + + + ve + + + výši + + + 70 + + + procent + + + měsíčního + + + nájmu + 1 + + + . + + + Pokud + + + přičiněním + + + Ubytrealu + + + uzavře + + + smlouvu + + + o + + + dlouhodobém + + + pronájmu + + + pronajímatel + + + bytu + 1 + + + , + + + zaplatí + + + odměnu + + + ve + + + výši + + + 100 + + + procent + + + měsíčního + + + nájmu + 1 + + + . + + + Pronajímatel + + + platí + + + víc + 1 + + + , + + + protože + + + je + + + to + + + výdělečná + + + činnost + 1 + + + . + + + Naše + + + služby + + + ovšem + + + nekončí + + + podpisem + + + smlouvy + + + o + + + dlouhodobém + + + pronájmu + + + a + + + vyinkasováním + + + odměny + 1 + + + . + + + Svým + + + klientům + + + poskytujeme + + + po + + + celou + + + dobu + + + nájmu + + + právní + + + servis + 1 + + + , + + + uvedl + + + M + 1 + + + . + + + Vacek + 1 + + + . + + + + diff --git a/demo/pdt_train/cmpr9410_001.in.conll b/demo/pdt_train/cmpr9410_001.in.conll new file mode 100644 index 00000000..68a373ce --- /dev/null +++ b/demo/pdt_train/cmpr9410_001.in.conll @@ -0,0 +1,686 @@ +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 ohrožení ohrožení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 2 nmod _ _ + +1 Nová nový ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +2 striktní striktní ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 omezení omezení NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ _ +4 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +5 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 4 nmod _ _ +6 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 8 case _ _ +7 česklým česklý ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 8 amod _ _ +8 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 3 dep _ _ + +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 téměř téměř ADV Db------------- _ 4 advmod:emph _ _ +3 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 4 nummod _ _ +4 desítek desítka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 15 nmod _ _ +5 smluv smlouva NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +6 upravujících upravující ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 5 amod _ _ +7 vztahy vztah NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ _ +8 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 10 case _ _ +9 oběma oba NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 10 nummod _ _ +10 subjekty subjekt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ _ +11 celního celní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 12 amod _ _ +12 soustátí soustátí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 10 nmod _ _ +13 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 cop _ _ +14 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 vypověditelné vypověditelný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 0 root _ _ +16 všechny všechen PRON PLFP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Tot 15 nsubj _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 15 punct _ _ + +1 Až až PART TT------------- _ 3 advmod:emph _ _ +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 jednu jeden NUM ClFS4---------- Case=Acc|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 0 root _ _ +4 jedinou jediný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 4 punct _ _ +6 tu ten PRON PDFS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Dem 4 dobj _ _ +7 hlavní hlavní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 11 nsubj _ _ +10 proklamativně proklamativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 11 advmod _ _ +11 zakotvuje zakotvovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ _ +12 existenci existence NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 dobj _ _ +13 Česko Český ADJ A2--------A---- Hyph=Yes|NameType=Oth|Negative=Pos 17 amod _ _ +14 - - PUNCT Z:------------- _ 13 punct _ _ +15 Slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ _ +16 celní celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +17 unie unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 11 punct _ _ +19 a a CONJ J^------------- _ 11 cc _ _ +20 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 21 nsubj _ _ +21 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +22 výpovědní výpovědní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 lhůtu lhůta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 21 dobj _ _ +24 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 25 nummod _ _ +25 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 3 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +3 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 4 nsubj _ _ +4 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 12 punct _ _ +6 že že SCONJ J,------------- _ 12 mark _ _ +7 i i CONJ J^------------- _ 12 cc _ _ +8-9 kdyby _ _ _ _ _ _ _ _ +8 když když SCONJ J,------------- _ 12 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 12 aux _ _ +10 hnedka hnedka ADV Db------------- _ 12 advmod _ _ +11 zítra zítra ADV Db------------- _ 12 advmod _ _ +12 řekla říci VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 4 ccomp _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 iobj _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 18 punct _ _ +15 že že SCONJ J,------------- _ 18 mark _ _ +16 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 18 nsubj _ _ +17 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 cop _ _ +18 pasé pasé ADJ AAXXX----1A---- Degree=Pos|Negative=Pos 12 ccomp _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 12 punct _ _ +20 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 12 cc _ _ +21 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 28 aux _ _ +22 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 30 expl _ _ +23 teprve teprve ADV Db------------- _ 25 advmod:emph _ _ +24 v v ADP RR--6---------- AdpType=Prep|Case=Loc 25 case _ _ +25 březnu březen NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +26 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 27 amod _ _ +27 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 25 nmod _ _ +28 mohla moci VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 12 conj _ _ +29 legislativně legislativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 30 advmod _ _ +30 zbavit zbavit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 28 xcomp _ _ +31 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 32 det _ _ +32 závazků závazek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 30 dobj _ _ +33 vůči vůči ADP RR--3---------- AdpType=Prep|Case=Dat 34 case _ _ +34 partnerovi partner NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 32 nmod _ _ +35 z z ADP RR--2---------- AdpType=Prep|Case=Gen 37 case _ _ +36 bývalé bývalý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 ČSFR ČSFR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 32 nmod _ SpaceAfter=No +38 . . PUNCT Z:------------- _ 12 punct _ _ + +1 Kazimír Kazimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 0 root _ _ +2 Jánoška Jánoška PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ + +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 pozadí pozadí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 11 nmod _ _ +3 vývoje vývoj NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 posledních poslední ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 dnech den NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ _ +7 a a CONJ J^------------- _ 6 cc _ _ +8 týdnech týden NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 6 conj _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl _ _ +10 však však CONJ J^------------- _ 11 cc _ _ +11 zdá zdát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 24 punct _ _ +13 že že SCONJ J,------------- _ 24 mark _ _ +14 litera litera NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 24 nsubj _ _ +15 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 16 advmod _ _ +16 uvedené uvedený ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 mezinárodní mezinárodní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ _ +19 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +20 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 18 nmod _ _ +21 a a CONJ J^------------- _ 20 cc _ _ +22 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 20 conj _ _ +23 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 24 aux _ _ +24 mít mít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 11 csubj _ _ +25 co co ADV Db------------- _ 26 advmod _ _ +26 nevidět vidět VERB Vf--------N---- Negative=Neg|VerbForm=Inf 24 ccomp _ _ +27 pouze pouze ADV Db------------- _ 28 advmod:emph _ _ +28 sílu síla NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ _ +29 psaného psaný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 30 amod _ _ +30 slova slovo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 28 nmod _ _ +31 a a CONJ J^------------- _ 28 cc _ _ +32 ničeho nic PRON PW--2---------- Case=Gen|Negative=Neg|PronType=Neg 28 conj _ _ +33 jiného jiný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 32 amod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 11 punct _ _ + +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +3 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 5 aux _ _ +4 sice sice ADV Db------------- _ 5 cc _ _ +5 existovat existovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 papíře papír NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +8 ještě ještě ADV Db------------- _ 10 advmod:emph _ _ +9 dalších další ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 dvanáct dvanáct NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +11 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 advmod _ _ +12 ( ( PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +13 a a CONJ J^------------- _ 5 cc _ _ +14 třeba třeba ADV Db------------- _ 16 advmod:emph _ _ +15 i i CONJ J^------------- _ 16 advmod:emph _ _ +16 déle dlouho ADV Dg-------2A---- Degree=Cmp|Negative=Pos 5 conj _ SpaceAfter=No +17 ) ) PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 5 punct _ _ +19 ale ale CONJ J^------------- _ 5 cc _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ _ +22 dostanou dostat VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ _ +23 vzájemné vzájemný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 vztahy vztah NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 22 nsubj _ _ +25 punc punc NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 22 dobj _ _ +26 tvrdosti tvrdost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 25 nmod _ _ +27 mezinárodního mezinárodní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Poroste růst VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 administrativa administrativa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 1 nsubj _ _ + +1 Jistotu jistota NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 det _ _ +4 směru směr NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +5 dávají dávat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 nejnovější nový ADJ AAIP1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 7 amod _ _ +7 kroky krok NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +8 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 13 nsubj _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 13 expl _ _ +13 rozhodla rozhodnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 8 acl _ _ +14 zavést zavést VERB Vf--------A---- Negative=Pos|VerbForm=Inf 13 xcomp _ _ +15 již již ADV Db------------- _ 17 advmod:emph _ _ +16 před před ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 časem čas NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 14 nmod _ _ +18 avizovanou avizovaný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +19 desetiprocentní desetiprocentní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +20 dovozní dovozní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 přirážku přirážka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 14 dobj _ _ +22 na na ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 21 nmod _ _ +24 zahraniční zahraniční_,a ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 25 amod _ _ +25 provinencie provinencie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Byť byť SCONJ J,------------- _ 2 mark _ _ +2 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 advcl _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 tento tento DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 5 det _ _ +5 krok krok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +6 určité určitý ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 právo právo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 2 dobj _ _ +8 ( ( PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +9 jako jako SCONJ J,------------- _ 10 mark _ _ +10 člen člen NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 xcomp _ _ +11 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 10 nmod _ SpaceAfter=No +12 ) ) PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 2 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 daném daný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 16 amod _ _ +16 okamžiku okamžik NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ _ +17 však však CONJ J^------------- _ 18 cc _ _ +18 vyznívá vyznívat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +19 jako jako SCONJ J,------------- _ 22 mark _ _ +20 tvrdé tvrdý ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +21 politické politický ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +22 rozhodnutí rozhodnutí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 18 advcl _ _ +23 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 27 punct _ _ +25 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 27 nsubj _ _ +26 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 27 expl _ _ +27 snaží snažit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 22 acl _ _ +28 velice velice ADV Db------------- _ 29 advmod _ _ +29 rezolutními rezolutní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +30 administrativními administrativní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +31 kroky krok NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 32 nmod _ _ +32 zredukovat zredukovat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 27 xcomp _ _ +33 mnohamilionové mnohomiliónový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 34 amod _ _ +34 pasívum pasívum_,x NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 32 dobj _ _ +35 v v ADP RR--6---------- AdpType=Prep|Case=Loc 37 case _ _ +36 obchodní obchodní ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 výměně výměna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 34 nmod _ _ +38 s s ADP RR--7---------- AdpType=Prep|Case=Ins 39 case _ _ +39 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 37 nmod _ SpaceAfter=No +40 . . PUNCT Z:------------- _ 18 punct _ _ + +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 regulí regule NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +3 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 2 nmod _ _ +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 6 det _ _ +6 opatření opatření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ _ +7 přijmout přijmout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 4 csubj _ _ +8 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod:emph _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 období období NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +11 šesti šest NUM Cn-P2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card 12 nummod _ _ +12 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 10 nmod _ _ +13 a a CONJ J^------------- _ 10 cc _ _ +14 pouze pouze ADV Db------------- _ 17 advmod:emph _ _ +15 u u ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +16 vybraných vybraný ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +17 položek položka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 skutečnost skutečnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +3 však však CONJ J^------------- _ 5 cc _ _ +4 nic nic PRON PW--4---------- Case=Acc|Negative=Neg|PronType=Neg 5 dobj _ _ +5 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 faktu fakt NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 15 punct _ _ +9 že že SCONJ J,------------- _ 15 mark _ _ +10 nadcházející nadcházející ADJ AGIP1-----A---- Animacy=Inan|Aspect=Imp|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 11 amod _ _ +11 týdny týden NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ _ +12 a a CONJ J^------------- _ 11 cc _ _ +13 měsíce měsíc NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 budou být AUX VB-P---3F-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 15 aux _ _ +15 znamenat znamenat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +16 neúměrně úměrně ADV Dg-------1N---- Degree=Pos|Negative=Neg 17 advmod _ _ +17 zvýšené zvýšený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +18 nároky nárok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +19 na na ADP RR--4---------- AdpType=Prep|Case=Acc 20 case _ _ +20 administrativu administrativa NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +21 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +22 při při ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +23 rozvíjení rozvíjení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +24 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 26 det _ _ +25 obchodních obchodní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 26 amod _ _ +26 aktivit aktivita NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 23 nmod _ _ +27 se s ADP RV--7---------- AdpType=Voc|Case=Ins 29 case _ _ +28 slovenskými slovenský ADJ AAMP7----1A---- Animacy=Anim|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 29 amod _ _ +29 partnery partner NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 26 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Pravidla pravidlo NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ _ +2 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +3 příští příští ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 amod _ _ +4 týdny týden NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ + +1 Již již ADV Db------------- _ 2 advmod:emph _ _ +2 několik několik DET Ca--4---------- Case=Acc|NumType=Card|PronType=Dem,Ind 3 det:numgov _ _ +3 dnů den NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 advmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +5 všeobecně všeobecně ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +6 známo známý ADJ ACNS------A---- Gender=Neut|Negative=Pos|Number=Sing|Variant=Short 0 root _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 17 punct _ _ +8 že že SCONJ J,------------- _ 17 mark _ _ +9 ochranářská ochranářský ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 10 amod _ _ +10 opatření opatření NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 17 nsubj _ _ +11 slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +14 českým český ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ _ +15 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 dotýkají dotýkat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 csubj _ _ +18 zejména zejména ADV Db------------- _ 19 advmod:emph _ _ +19 oblasti oblast NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 17 dobj _ _ +20 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 s s ADP RR--7---------- AdpType=Prep|Case=Ins 22 case _ _ +22 potravinami potravina NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 20 nmod _ _ +23 a a CONJ J^------------- _ 19 cc _ _ +24 zemědělskými zemědělský ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 produkty produkt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 19 conj _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Našemu můj DET PSZS3-P1------- Case=Dat|Gender=Masc,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 listu list NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 dobj _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 podařilo podařit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ _ +6 od od ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 představitelů představitel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 iobj _ _ +8 slovenského slovenský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 Úřadu úřad NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +10 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 normalizaci normalizace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 11 punct _ _ +13 metrologii metrologie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 conj _ _ +14 a a CONJ J^------------- _ 11 cc _ _ +15 zkušebnictví zkušebnictví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 11 conj _ _ +16 ( ( PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +17 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 9 dep _ _ +18 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 17 nmod _ SpaceAfter=No +19 ) ) PUNCT Z:------------- _ 9 punct _ _ +20 informaci informace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +21 o o ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +22 technickém technický ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 23 amod _ _ +23 zajištění zajištění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 20 nmod _ _ +24 propouštění propouštění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 23 nmod _ _ +25 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 nmod _ _ +27 do do ADP RR--2---------- AdpType=Prep|Case=Gen 28 case _ _ +28 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 24 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 rozhodujících rozhodující ADJ AGNP2-----A---- Aspect=Imp|Case=Gen|Gender=Neut|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 3 amod _ _ +3 opatření opatření NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 16 nmod _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 která který PRON P4NP1---------- Case=Nom|Gender=Neut|Number=Plur|PronType=Int,Rel 7 nsubj _ _ +6 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 3 acl _ _ +8 plně plně ADV Dg-------1A---- Degree=Pos|Negative=Pos 9 advmod _ _ +9 vstoupit vstoupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 7 xcomp _ _ +10 v v ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 platnost platnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ _ +12 po po ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +13 1 1 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 dubnu duben NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +16 vyjímáme vyjímat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +17 : : PUNCT Z:------------- _ 16 punct _ _ + +1 1 1 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 31 31 NUM C=------------- NumForm=Digit|NumType=Card 4 nummod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +5 platí platit VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 plném plný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 rozsahu rozsah NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +9 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +10 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 dohody dohoda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +12 ÚNMZ ÚNMZ PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 11 nmod _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 nmod _ _ +14 a a CONJ J^------------- _ 12 cc _ _ +15 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 12 conj _ _ +16 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 15 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 27 punct _ _ +18 na na ADP RR--6---------- AdpType=Prep|Case=Loc 20 case _ _ +19 jejímž jenž DET P1ZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Rel 20 det _ _ +20 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 27 nmod _ _ +21 český český ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 22 amod _ _ +22 výrobce výrobce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 27 nsubj _ _ +23 ( ( PUNCT Z:------------- _ 25 punct _ SpaceAfter=No +24 slovenský slovenský ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ _ +25 dovozce dovozce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 22 appos _ SpaceAfter=No +26 ) ) PUNCT Z:------------- _ 25 punct _ _ +27 získá získat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 acl _ _ +28 na na ADP RR--6---------- AdpType=Prep|Case=Loc 30 case _ _ +29 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 mwe _ _ +30 schválení schválení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +31 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 32 amod _ _ +32 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 30 nmod _ _ +33 a a CONJ J^------------- _ 30 cc _ _ +34 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 30 conj _ _ +35 Ministerstva ministerstvo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 34 nmod _ _ +36 zdravotnictví zdravotnictví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 35 nmod _ _ +37 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 35 nmod _ _ +38 na na ADP RR--6---------- AdpType=Prep|Case=Loc 39 case _ _ +39 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 35 nmod _ _ +40 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 39 nmod _ _ +41 potvrzení potvrzení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 27 dobj _ _ +42 o o ADP RR--6---------- AdpType=Prep|Case=Loc 43 case _ _ +43 platnosti platnost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 41 nmod _ _ +44 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 43 nmod _ _ +45 i i CONJ J^------------- _ 44 cc _ _ +46 na na ADP RR--6---------- AdpType=Prep|Case=Loc 47 case _ _ +47 území území NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 44 conj _ _ +48 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 47 nmod _ SpaceAfter=No +49 . . PUNCT Z:------------- _ 5 punct _ _ + +1 2 2 NUM C=------------- NumForm=Digit|NumType=Card 13 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 13 punct _ _ +3 Od od ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +4 1 1 NUM C=------------- NumForm=Digit|NumType=Card 6 nummod _ SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ +6 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +7 nebude být AUX VB-S---3F-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 13 aux _ _ +8 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 13 nsubj _ _ +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ _ +10 rozhodnutí rozhodnutí NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 13 dobj _ _ +11 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 potvrzovat potvrzovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ + +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 funkce funkce NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ _ +3 přejde přejít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +5 příslušnou příslušný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +6 slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 zkušebnu zkušebna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +8 ( ( PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +9 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 7 appos _ _ +10 - - PUNCT Z:------------- _ 9 punct _ _ +11 Slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +12 potravinářskou potravinářský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 zemědělskou zemědělský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 conj _ _ +15 inspekci inspekce NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 conj _ SpaceAfter=No +16 ) ) PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ _ +19 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +20 vydávat vydávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +21 na na ADP RR--6---------- AdpType=Prep|Case=Loc 24 case _ _ +22 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 21 mwe _ _ +23 dodaných dodaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 podkladů podklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +25 příslušné příslušný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 certifikáty certifikát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 20 dobj _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +1 3 3 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Dosud dosud ADV Db------------- _ 2 advmod _ _ +2 vydaná vydaný ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 rozhodnutí rozhodnutí NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 8 nsubj _ _ +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 doby doba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 trvání trvání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ _ +7 federace federace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +8 platí platit VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +9 a a CONJ J^------------- _ 8 cc _ _ +10 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 11 det _ _ +11 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 15 dobj _ _ +12 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 conj _ _ +13 do do ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +14 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 11 nmod _ _ +15 dodávat dodávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 12 csubj _ _ +16 i i CONJ J^------------- _ 17 advmod:emph _ _ +17 nadále nadále ADV Db------------- _ 12 advmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 12 punct _ _ +19 avšak avšak CONJ J^------------- _ 12 cc _ _ +20 po po ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 vydání vydání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 12 conj _ _ +22 příslušného příslušný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 23 amod _ _ +23 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 21 nmod _ _ +24 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 23 nmod _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 8 punct _ _ + +1 4 4 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Usnesením usnesení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +2 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ _ +3 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 2 nmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +5 koordinací koordinace NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 15 dobj _ _ +6 všech všechen PRON PLXP2---------- Case=Gen|Number=Plur|PronType=Tot 7 nmod _ _ +7 akcí akce NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ _ +8 souvisejících související ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 7 amod _ _ +9 se s ADP RV--7---------- AdpType=Voc|Case=Ins 10 case _ _ +10 zajištěním zajištění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 8 dobj _ _ +11 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +12 dovážených dovážený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +13 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 11 nmod _ _ +15 pověřen pověřit VERB VsYS---XX-AP--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 1 csubj _ _ +16 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 15 nsubjpass _ _ +17 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Jedná jednat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 expl _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 usnesení usnesení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ _ +5 číslo číslo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +6 64 64 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ _ +7 ze z ADP RV--2---------- AdpType=Voc|Case=Gen 8 case _ _ +8 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 února únor NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +12 1994 1994 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 3 det _ _ +3 úřadě úřad NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ _ +6 i i CONJ J^------------- _ 8 advmod:emph _ _ +7 potřebné potřebný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 informace informace NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 4 punct _ _ + +1 5 5 NUM C=------------- NumForm=Digit|NumType=Card 7 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 7 punct _ _ +3 Slovenská slovenský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +4 celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 správa správa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 7 nsubj _ _ +6 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 7 aux _ _ +7 vyžadovat vyžadovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +8 u u ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +9 každé každý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +10 jednotlivé jednotlivý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +11 dodávky dodávka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +12 originální originální ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 13 amod _ _ +13 rozhodnutí rozhodnutí NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ _ +14 či či CONJ J^------------- _ 13 cc _ _ +15 certifikátu certifikát NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 7 punct _ _ + +1 Tento tento DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 2 det _ _ +2 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ _ +3 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 vyžádá vyžádat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +6 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +7 zhotovování zhotovování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 dobj _ _ +8 ověřených ověřený ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 9 amod _ _ +9 kopií kopie NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 4 punct _ _ + +1 6 6 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +2 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ _ +3 těchto tento DET PDXP2---------- Case=Gen|Number=Plur|PronType=Dem 4 det _ _ +4 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +5 vznikla vzniknout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 6 mwe _ _ +8 novelizace novelizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +9 paragrafu paragraf NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +10 47 47 NUM C=------------- NumForm=Digit|NumType=Card 9 nummod _ _ +11 celního celní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +13 618 618 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +14 / / PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +15 1992 1992 NUM C=------------- NumForm=Digit|NumType=Card 13 compound _ _ +16 SB Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 12 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 16 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 19 punct _ _ +19 novelizovaného novelizovaný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 zákoně zákon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +22 325 325 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod _ _ +23 článek článek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 8 8 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ _ +25 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 26 case _ _ +26 znění znění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +27 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +28 číslo číslo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +29 165 165 NUM C=------------- NumForm=Digit|NumType=Card 28 nummod _ SpaceAfter=No +30 / / PUNCT Z:------------- _ 31 punct _ SpaceAfter=No +31 1993 1993 NUM C=------------- NumForm=Digit|NumType=Card 29 compound _ _ +32 Sb Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 27 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 5 punct _ _ + +1 7 7 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 3 case _ _ +2 všech všechen PRON PLXP6---------- Case=Loc|Number=Plur|PronType=Tot 3 nmod _ _ +3 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 4 nmod _ _ +4 vzniká vznikat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 od od ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +6 1 1 NUM C=------------- NumForm=Digit|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +9 povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 19 punct _ _ +11-12 aby _ _ _ _ _ _ _ _ +11 aby aby SCONJ J,------------- _ 19 mark _ _ +12 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 19 aux _ _ +13 při při ADP RR--6---------- AdpType=Prep|Case=Loc 14 case _ _ +14 přechodu přechod NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +15 slovenských slovenský ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 hranic hranice NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +17 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 19 auxpass _ _ +18 dodávka dodávka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 19 nsubjpass _ _ +19 vybavena vybavit VERB VsQW---XX-AP--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 9 acl _ _ +20 originálem originál NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 nebo nebo CONJ J^------------- _ 20 cc _ _ +22 ověřenou ověřený ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 kopií kopie NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 20 conj _ _ +24 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +25 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 24 nmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 4 punct _ _ + +1 8 8 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +1 Stejné stejný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 požadavky požadavek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ _ +3 jako jako SCONJ J,------------- _ 6 mark _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 dovážené dovážený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 výrobky výrobek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dep _ _ +7 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 9 aux _ _ +8 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 9 nsubj _ _ +9 uplatňovat uplatňovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +10 i i CONJ J^------------- _ 12 advmod:emph _ _ +11 u u ADP RR--2---------- AdpType=Prep|Case=Gen 12 case _ _ +12 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ _ +13 tuzemských tuzemský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 12 amod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 9 punct _ _ + +1 Text text NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +2 k k ADP RR--3---------- AdpType=Prep|Case=Dat 3 case _ _ +3 foto foto NOUN NNNXX-----A---- Gender=Neut|Negative=Pos 1 nmod _ _ + +1 ŽE že SCONJ J,------------- _ 2 mark _ _ +2 BY být VERB Vc------------- Mood=Cnd|VerbForm=Fin 0 root _ _ +3 NOVÁ nový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 CESTA cesta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 nsubj _ _ +5 JAK jak ADV Db------------- _ 6 advmod _ _ +6 ŘEŠIT řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 4 acl _ _ +7 PROBLÉMY problém NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ _ +8 CELNÍ celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 UNIE unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ SpaceAfter=No +10 ? ? PUNCT Z:------------- _ 2 punct _ _ + +1 Což což INTJ II------------- _ 0 root _ _ +2 o o ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dep _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 zkusit zkusit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +7 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 8 nsubj _ _ +8 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Ale ale CONJ J^------------- _ 5 cc _ _ +2 šance šance NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +5 minimální minimální ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/cmpr9410_001.out.conllu b/demo/pdt_train/cmpr9410_001.out.conllu new file mode 100644 index 00000000..75b50237 --- /dev/null +++ b/demo/pdt_train/cmpr9410_001.out.conllu @@ -0,0 +1,765 @@ +# sent_id = 1 +# text = Celní unie v ohrožení +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ Coref=1 +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 ohrožení ohrožení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 2 nmod _ _ + +# sent_id = 2 +# text = Nová striktní omezení vlády SR proti česklým exportérům +1 Nová nový ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +2 striktní striktní ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 omezení omezení NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ Coref=13 +4 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ Coref=8 +5 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 4 nmod _ Coref=4 +6 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 8 case _ _ +7 česklým česklý ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 8 amod _ _ +8 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 3 dep _ Coref=14 + +# sent_id = 3 +# text = Z téměř tří desítek smluv upravujících vztahy mezi oběma subjekty celního soustátí jsou okamžitě vypověditelné všechny... +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 téměř téměř ADV Db------------- _ 4 advmod:emph _ _ +3 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 4 nummod _ _ +4 desítek desítka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 15 nmod _ Coref=2 +5 smluv smlouva NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +6 upravujících upravující ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 5 amod _ _ +7 vztahy vztah NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ Drop_coref=0 +8 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 10 case _ _ +9 oběma oba NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 10 nummod _ _ +10 subjekty subjekt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ Coref=0 +11 celního celní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 12 amod _ _ +12 soustátí soustátí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 10 nmod _ Coref=1 +13 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 cop _ _ +14 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 vypověditelné vypověditelný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 0 root _ _ +16 všechny všechen PRON PLFP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Tot 15 nsubj _ Coref=2|SpaceAfter=No +17 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 15 punct _ _ + +# sent_id = 4 +# text = Až na jednu jedinou, tu hlavní, která proklamativně zakotvuje existenci Česko - Slovenské celní unie, a která má výpovědní lhůtu jeden rok. +1 Až až PART TT------------- _ 3 advmod:emph _ _ +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 jednu jeden NUM ClFS4---------- Case=Acc|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 0 root _ _ +4 jedinou jediný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 4 punct _ Drop_coref=3 +6 tu ten PRON PDFS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Dem 4 dobj _ _ +7 hlavní hlavní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 11 nsubj _ Coref=3 +10 proklamativně proklamativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 11 advmod _ _ +11 zakotvuje zakotvovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ _ +12 existenci existence NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 dobj _ _ +13 Česko Český ADJ A2--------A---- Hyph=Yes|NameType=Oth|Negative=Pos 17 amod _ Coref=5 +14 - - PUNCT Z:------------- _ 13 punct _ _ +15 Slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ Coref=4 +16 celní celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +17 unie unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ Coref=1|SpaceAfter=No +18 , , PUNCT Z:------------- _ 11 punct _ _ +19 a a CONJ J^------------- _ 11 cc _ _ +20 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 21 nsubj _ Coref=3 +21 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +22 výpovědní výpovědní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 lhůtu lhůta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 21 dobj _ _ +24 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 25 nummod _ _ +25 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ Coref=7|SpaceAfter=No +26 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 5 +# text = V praxi to znamená, že i kdyby hnedka zítra řekla ČR, že smlouva je pasé, přesto by se teprve v březnu příštího roku mohla legislativně zbavit svých závazků vůči partnerovi z bývalé ČSFR. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +3 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 4 nsubj _ _ +4 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 12 punct _ _ +6 že že SCONJ J,------------- _ 12 mark _ _ +7 i i CONJ J^------------- _ 12 cc _ _ +8-9 kdyby _ _ _ _ _ _ _ _ +8 když když SCONJ J,------------- _ 12 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 12 aux _ _ +10 hnedka hnedka ADV Db------------- _ 12 advmod _ _ +11 zítra zítra ADV Db------------- _ 12 advmod _ _ +12 řekla říci VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 4 ccomp _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 iobj _ Coref=5|SpaceAfter=No +14 , , PUNCT Z:------------- _ 18 punct _ _ +15 že že SCONJ J,------------- _ 18 mark _ _ +16 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 18 nsubj _ Coref=3 +17 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 cop _ _ +18 pasé pasé ADJ AAXXX----1A---- Degree=Pos|Negative=Pos 12 ccomp _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 12 punct _ _ +20 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 12 cc _ _ +21 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 28 aux _ _ +22 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 30 expl _ _ +23 teprve teprve ADV Db------------- _ 25 advmod:emph _ _ +24 v v ADP RR--6---------- AdpType=Prep|Case=Loc 25 case _ _ +25 březnu březen NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +26 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 27 amod _ _ +27 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 25 nmod _ _ +28 mohla moci VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 12 conj _ _ +29 legislativně legislativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 30 advmod _ _ +30 zbavit zbavit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 28 xcomp _ Drop_coref=5 +31 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 32 det _ Coref=5 +32 závazků závazek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 30 dobj _ _ +33 vůči vůči ADP RR--3---------- AdpType=Prep|Case=Dat 34 case _ _ +34 partnerovi partner NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 32 nmod _ Coref=4 +35 z z ADP RR--2---------- AdpType=Prep|Case=Gen 37 case _ _ +36 bývalé bývalý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 ČSFR ČSFR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 32 nmod _ SpaceAfter=No +38 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 6 +# text = Kazimír Jánoška +1 Kazimír Kazimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 0 root _ _ +2 Jánoška Jánoška PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ + +# sent_id = 7 +# text = Na pozadí vývoje v posledních dnech a týdnech se však zdá, že litera výše uvedené mezinárodní smlouvy mezi ČR a SR bude mít co nevidět pouze sílu psaného slova a ničeho jiného. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 pozadí pozadí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 11 nmod _ _ +3 vývoje vývoj NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 posledních poslední ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 dnech den NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ _ +7 a a CONJ J^------------- _ 6 cc _ _ +8 týdnech týden NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 6 conj _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl _ _ +10 však však CONJ J^------------- _ 11 cc _ _ +11 zdá zdát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 24 punct _ _ +13 že že SCONJ J,------------- _ 24 mark _ _ +14 litera litera NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 24 nsubj _ _ +15 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 16 advmod _ _ +16 uvedené uvedený ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 mezinárodní mezinárodní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ Coref=3|Drop_coref=6 +19 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +20 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 18 nmod _ Coref=5 +21 a a CONJ J^------------- _ 20 cc _ Coref=6 +22 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 20 conj _ Coref=4 +23 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 24 aux _ _ +24 mít mít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 11 csubj _ _ +25 co co ADV Db------------- _ 26 advmod _ _ +26 nevidět vidět VERB Vf--------N---- Negative=Neg|VerbForm=Inf 24 ccomp _ _ +27 pouze pouze ADV Db------------- _ 28 advmod:emph _ _ +28 sílu síla NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ _ +29 psaného psaný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 30 amod _ _ +30 slova slovo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 28 nmod _ _ +31 a a CONJ J^------------- _ 28 cc _ _ +32 ničeho nic PRON PW--2---------- Case=Gen|Negative=Neg|PronType=Neg 28 conj _ _ +33 jiného jiný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 32 amod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 8 +# text = Celní unie bude sice existovat na papíře ještě dalších dvanáct měsíců (a třeba i déle), ale v praxi dostanou vzájemné vztahy punc tvrdosti mezinárodního obchodu. +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ Coref=1 +3 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 5 aux _ _ +4 sice sice ADV Db------------- _ 5 cc _ _ +5 existovat existovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 papíře papír NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +8 ještě ještě ADV Db------------- _ 10 advmod:emph _ _ +9 dalších další ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 dvanáct dvanáct NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +11 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 advmod _ Coref=7 +12 ( ( PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +13 a a CONJ J^------------- _ 5 cc _ _ +14 třeba třeba ADV Db------------- _ 16 advmod:emph _ _ +15 i i CONJ J^------------- _ 16 advmod:emph _ _ +16 déle dlouho ADV Dg-------2A---- Degree=Cmp|Negative=Pos 5 conj _ SpaceAfter=No +17 ) ) PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 5 punct _ _ +19 ale ale CONJ J^------------- _ 5 cc _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ _ +22 dostanou dostat VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ _ +23 vzájemné vzájemný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 vztahy vztah NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 22 nsubj _ Coref=0 +25 punc punc NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 22 dobj _ _ +26 tvrdosti tvrdost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 25 nmod _ _ +27 mezinárodního mezinárodní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 9 +# text = Poroste administrativa +1 Poroste růst VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 administrativa administrativa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 1 nsubj _ _ + +# sent_id = 10 +# text = Jistotu v tomto směru dávají nejnovější kroky vlády SR, která se rozhodla zavést již před časem avizovanou desetiprocentní dovozní přirážku na zboží zahraniční provinencie. +1 Jistotu jistota NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 det _ _ +4 směru směr NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +5 dávají dávat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 nejnovější nový ADJ AAIP1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 7 amod _ _ +7 kroky krok NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +8 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ Coref=8 +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ Coref=4|SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 13 nsubj _ Coref=8 +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 13 expl _ _ +13 rozhodla rozhodnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 8 acl _ _ +14 zavést zavést VERB Vf--------A---- Negative=Pos|VerbForm=Inf 13 xcomp _ Drop_coref=8 +15 již již ADV Db------------- _ 17 advmod:emph _ _ +16 před před ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 časem čas NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 14 nmod _ _ +18 avizovanou avizovaný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +19 desetiprocentní desetiprocentní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +20 dovozní dovozní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 přirážku přirážka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 14 dobj _ _ +22 na na ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 21 nmod _ _ +24 zahraniční zahraniční_,a ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 25 amod _ _ +25 provinencie provinencie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Byť má na tento krok určité právo (jako člen GATT), v daném okamžiku však vyznívá jako tvrdé politické rozhodnutí vlády, která se snaží velice rezolutními administrativními kroky zredukovat mnohamilionové pasívum v obchodní výměně s ČR. +1 Byť byť SCONJ J,------------- _ 2 mark _ _ +2 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 advcl _ Drop_coref=8 +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 tento tento DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 5 det _ _ +5 krok krok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=8|Drop_coref=8 +6 určité určitý ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 právo právo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 2 dobj _ Drop_coref=8 +8 ( ( PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +9 jako jako SCONJ J,------------- _ 10 mark _ _ +10 člen člen NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 xcomp _ _ +11 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 10 nmod _ Coref=10|SpaceAfter=No +12 ) ) PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 2 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 daném daný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 16 amod _ _ +16 okamžiku okamžik NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ _ +17 však však CONJ J^------------- _ 18 cc _ _ +18 vyznívá vyznívat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=9 +19 jako jako SCONJ J,------------- _ 22 mark _ _ +20 tvrdé tvrdý ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +21 politické politický ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +22 rozhodnutí rozhodnutí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 18 advcl _ Coref=8 +23 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ Coref=8|SpaceAfter=No +24 , , PUNCT Z:------------- _ 27 punct _ _ +25 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 27 nsubj _ Coref=8 +26 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 27 expl _ _ +27 snaží snažit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 22 acl _ _ +28 velice velice ADV Db------------- _ 29 advmod _ _ +29 rezolutními rezolutní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +30 administrativními administrativní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +31 kroky krok NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 32 nmod _ _ +32 zredukovat zredukovat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 27 xcomp _ Drop_coref=8 +33 mnohamilionové mnohomiliónový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 34 amod _ _ +34 pasívum pasívum_,x NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 32 dobj _ _ +35 v v ADP RR--6---------- AdpType=Prep|Case=Loc 37 case _ _ +36 obchodní obchodní ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 výměně výměna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 34 nmod _ _ +38 s s ADP RR--7---------- AdpType=Prep|Case=Ins 39 case _ _ +39 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 37 nmod _ Coref=5|SpaceAfter=No +40 . . PUNCT Z:------------- _ 18 punct _ _ + +# sent_id = 12 +# text = Podle regulí GATT lze toto opatření přijmout maximálně na období šesti měsíců a pouze u vybraných položek. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 regulí regule NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +3 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 2 nmod _ Coref=10 +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=11 +5 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 6 det _ _ +6 opatření opatření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ Coref=9 +7 přijmout přijmout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 4 csubj _ _ +8 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod:emph _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 období období NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +11 šesti šest NUM Cn-P2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card 12 nummod _ _ +12 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 10 nmod _ _ +13 a a CONJ J^------------- _ 10 cc _ Drop_coref=11 +14 pouze pouze ADV Db------------- _ 17 advmod:emph _ _ +15 u u ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +16 vybraných vybraný ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +17 položek položka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 13 +# text = Tato skutečnost však nic nemění na faktu, že nadcházející týdny a měsíce budou znamenat neúměrně zvýšené nároky na administrativu podnikatelů při rozvíjení jejich obchodních aktivit se slovenskými partnery. +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 skutečnost skutečnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ Coref=11 +3 však však CONJ J^------------- _ 5 cc _ _ +4 nic nic PRON PW--4---------- Case=Acc|Negative=Neg|PronType=Neg 5 dobj _ _ +5 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 faktu fakt NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 15 punct _ _ +9 že že SCONJ J,------------- _ 15 mark _ _ +10 nadcházející nadcházející ADJ AGIP1-----A---- Animacy=Inan|Aspect=Imp|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 11 amod _ _ +11 týdny týden NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ _ +12 a a CONJ J^------------- _ 11 cc _ _ +13 měsíce měsíc NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 budou být AUX VB-P---3F-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 15 aux _ _ +15 znamenat znamenat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +16 neúměrně úměrně ADV Dg-------1N---- Degree=Pos|Negative=Neg 17 advmod _ _ +17 zvýšené zvýšený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +18 nároky nárok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +19 na na ADP RR--4---------- AdpType=Prep|Case=Acc 20 case _ _ +20 administrativu administrativa NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +21 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ Coref=12 +22 při při ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +23 rozvíjení rozvíjení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +24 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 26 det _ Coref=12 +25 obchodních obchodní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 26 amod _ _ +26 aktivit aktivita NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 23 nmod _ _ +27 se s ADP RV--7---------- AdpType=Voc|Case=Ins 29 case _ _ +28 slovenskými slovenský ADJ AAMP7----1A---- Animacy=Anim|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 29 amod _ Coref=4 +29 partnery partner NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 26 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 14 +# text = Pravidla pro příští týdny +1 Pravidla pravidlo NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ _ +2 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +3 příští příští ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 amod _ _ +4 týdny týden NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ + +# sent_id = 15 +# text = Již několik dnů je všeobecně známo, že ochranářská opatření slovenské vlády proti českým exportérům se dotýkají zejména oblasti obchodu s potravinami a zemědělskými produkty. +1 Již již ADV Db------------- _ 2 advmod:emph _ _ +2 několik několik DET Ca--4---------- Case=Acc|NumType=Card|PronType=Dem,Ind 3 det:numgov _ _ +3 dnů den NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 advmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +5 všeobecně všeobecně ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +6 známo známý ADJ ACNS------A---- Gender=Neut|Negative=Pos|Number=Sing|Variant=Short 0 root _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 17 punct _ _ +8 že že SCONJ J,------------- _ 17 mark _ _ +9 ochranářská ochranářský ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 10 amod _ _ +10 opatření opatření NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 17 nsubj _ Coref=13 +11 slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ Coref=4 +12 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=8 +13 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +14 českým český ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ Coref=5 +15 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ Coref=14 +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 dotýkají dotýkat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 csubj _ _ +18 zejména zejména ADV Db------------- _ 19 advmod:emph _ _ +19 oblasti oblast NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 17 dobj _ _ +20 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 s s ADP RR--7---------- AdpType=Prep|Case=Ins 22 case _ _ +22 potravinami potravina NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 20 nmod _ Coref=16 +23 a a CONJ J^------------- _ 19 cc _ _ +24 zemědělskými zemědělský ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 produkty produkt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 19 conj _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 16 +# text = Našemu listu se podařilo získat od představitelů slovenského Úřadu pro normalizaci, metrologii a zkušebnictví (ÚNMS SR) informaci o technickém zajištění propouštění potravinářských výrobků do SR. +1 Našemu můj DET PSZS3-P1------- Case=Dat|Gender=Masc,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 listu list NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 dobj _ Coref=15 +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 podařilo podařit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ Drop_coref=15 +6 od od ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 představitelů představitel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 iobj _ _ +8 slovenského slovenský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ Coref=4 +9 Úřadu úřad NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +10 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 normalizaci normalizace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 11 punct _ _ +13 metrologii metrologie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 conj _ _ +14 a a CONJ J^------------- _ 11 cc _ _ +15 zkušebnictví zkušebnictví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 11 conj _ _ +16 ( ( PUNCT Z:------------- _ 9 punct _ Coref=18|SpaceAfter=No +17 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 9 dep _ _ +18 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 17 nmod _ Coref=4|SpaceAfter=No +19 ) ) PUNCT Z:------------- _ 9 punct _ _ +20 informaci informace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +21 o o ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +22 technickém technický ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 23 amod _ _ +23 zajištění zajištění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 20 nmod _ _ +24 propouštění propouštění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 23 nmod _ _ +25 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 nmod _ Coref=16 +27 do do ADP RR--2---------- AdpType=Prep|Case=Gen 28 case _ _ +28 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 24 nmod _ Coref=4|SpaceAfter=No +29 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 17 +# text = Z rozhodujících opatření, která by měla plně vstoupit v platnost po 1. dubnu vyjímáme: +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 rozhodujících rozhodující ADJ AGNP2-----A---- Aspect=Imp|Case=Gen|Gender=Neut|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 3 amod _ _ +3 opatření opatření NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 16 nmod _ Coref=13|SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 která který PRON P4NP1---------- Case=Nom|Gender=Neut|Number=Plur|PronType=Int,Rel 7 nsubj _ Coref=13 +6 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 3 acl _ _ +8 plně plně ADV Dg-------1A---- Degree=Pos|Negative=Pos 9 advmod _ _ +9 vstoupit vstoupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 7 xcomp _ _ +10 v v ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 platnost platnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Drop_coref=13 +12 po po ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +13 1 1 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 dubnu duben NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=19 +16 vyjímáme vyjímat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=15|SpaceAfter=No +17 : : PUNCT Z:------------- _ 16 punct _ _ + +# sent_id = 18 +# text = 1) +1 1 1 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 19 +# text = Do 31. března platí v plném rozsahu postup podle dohody ÚNMZ ČR a ÚNMS SR, na jejímž základě český výrobce (slovenský dovozce) získá na základě schválení české zkušebny a rozhodnutí Ministerstva zdravotnictví SR na ÚNMS SR potvrzení o platnosti rozhodnutí i na území SR. +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 31 31 NUM C=------------- NumForm=Digit|NumType=Card 4 nummod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +5 platí platit VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 plném plný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 rozsahu rozsah NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +9 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +10 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 dohody dohoda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ Drop_coref=17 +12 ÚNMZ ÚNMZ PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 11 nmod _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 nmod _ Coref=5 +14 a a CONJ J^------------- _ 12 cc _ Coref=17 +15 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 12 conj _ Coref=18 +16 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 15 nmod _ Coref=4|SpaceAfter=No +17 , , PUNCT Z:------------- _ 27 punct _ _ +18 na na ADP RR--6---------- AdpType=Prep|Case=Loc 20 case _ _ +19 jejímž jenž DET P1ZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Rel 20 det _ Coref=17 +20 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 27 nmod _ _ +21 český český ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 22 amod _ Coref=5 +22 výrobce výrobce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 27 nsubj _ _ +23 ( ( PUNCT Z:------------- _ 25 punct _ SpaceAfter=No +24 slovenský slovenský ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ Coref=4 +25 dovozce dovozce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 22 appos _ SpaceAfter=No +26 ) ) PUNCT Z:------------- _ 25 punct _ _ +27 získá získat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 acl _ _ +28 na na ADP RR--6---------- AdpType=Prep|Case=Loc 30 case _ _ +29 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 mwe _ _ +30 schválení schválení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +31 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 32 amod _ Coref=5 +32 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 30 nmod _ Coref=20 +33 a a CONJ J^------------- _ 30 cc _ _ +34 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 30 conj _ _ +35 Ministerstva ministerstvo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 34 nmod _ _ +36 zdravotnictví zdravotnictví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 35 nmod _ _ +37 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 35 nmod _ Coref=4 +38 na na ADP RR--6---------- AdpType=Prep|Case=Loc 39 case _ _ +39 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 35 nmod _ Coref=18 +40 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 39 nmod _ Coref=4 +41 potvrzení potvrzení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 27 dobj _ _ +42 o o ADP RR--6---------- AdpType=Prep|Case=Loc 43 case _ _ +43 platnosti platnost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 41 nmod _ _ +44 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 43 nmod _ _ +45 i i CONJ J^------------- _ 44 cc _ _ +46 na na ADP RR--6---------- AdpType=Prep|Case=Loc 47 case _ _ +47 území území NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 44 conj _ _ +48 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 47 nmod _ Coref=4|SpaceAfter=No +49 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 20 +# text = 2) Od 1. dubna nebude ÚNMS SR rozhodnutí české zkušebny potvrzovat. +1 2 2 NUM C=------------- NumForm=Digit|NumType=Card 13 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 13 punct _ _ +3 Od od ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +4 1 1 NUM C=------------- NumForm=Digit|NumType=Card 6 nummod _ SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ +6 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ Coref=19 +7 nebude být AUX VB-S---3F-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 13 aux _ _ +8 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 13 nsubj _ Coref=18 +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ Coref=4 +10 rozhodnutí rozhodnutí NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 13 dobj _ _ +11 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ Coref=5 +12 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=20 +13 potvrzovat potvrzovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ Coref=21|SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ + +# sent_id = 21 +# text = Tato funkce přejde na příslušnou slovenskou zkušebnu (SPPI - Slovenskou potravinářskou a zemědělskou inspekci), která bude vydávat na základě dodaných podkladů příslušné certifikáty. +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 funkce funkce NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ Coref=21 +3 přejde přejít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +5 příslušnou příslušný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +6 slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ Coref=4 +7 zkušebnu zkušebna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +8 ( ( PUNCT Z:------------- _ 9 punct _ Coref=22|SpaceAfter=No +9 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 7 appos _ _ +10 - - PUNCT Z:------------- _ 9 punct _ _ +11 Slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ Coref=4 +12 potravinářskou potravinářský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 zemědělskou zemědělský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 conj _ _ +15 inspekci inspekce NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 conj _ SpaceAfter=No +16 ) ) PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ Coref=22 +19 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +20 vydávat vydávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +21 na na ADP RR--6---------- AdpType=Prep|Case=Loc 24 case _ _ +22 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 21 mwe _ _ +23 dodaných dodaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 podkladů podklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +25 příslušné příslušný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 certifikáty certifikát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 20 dobj _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 22 +# text = 3) +1 3 3 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Dosud vydaná rozhodnutí z doby trvání federace platí a toto zboží lze do SR dodávat i nadále, avšak po vydání příslušného certifikátu SPPI. +1 Dosud dosud ADV Db------------- _ 2 advmod _ _ +2 vydaná vydaný ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 rozhodnutí rozhodnutí NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 8 nsubj _ _ +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 doby doba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 trvání trvání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ _ +7 federace federace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +8 platí platit VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +9 a a CONJ J^------------- _ 8 cc _ _ +10 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 11 det _ _ +11 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 15 dobj _ _ +12 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 conj _ Drop_coref=23 +13 do do ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +14 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 11 nmod _ Coref=4 +15 dodávat dodávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 12 csubj _ _ +16 i i CONJ J^------------- _ 17 advmod:emph _ _ +17 nadále nadále ADV Db------------- _ 12 advmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 12 punct _ _ +19 avšak avšak CONJ J^------------- _ 12 cc _ Drop_coref=23 +20 po po ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 vydání vydání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 12 conj _ Coref=24 +22 příslušného příslušný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 23 amod _ _ +23 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 21 nmod _ _ +24 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 23 nmod _ Coref=22|SpaceAfter=No +25 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 24 +# text = 4) +1 4 4 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 25 +# text = Usnesením vlády SR je koordinací všech akcí souvisejících se zajištěním certifikace dovážených potravinářských výrobků pověřen ÚNMS SR. +1 Usnesením usnesení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 0 root _ Coref=25 +2 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ Coref=8 +3 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 2 nmod _ Coref=4 +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +5 koordinací koordinace NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 15 dobj _ _ +6 všech všechen PRON PLXP2---------- Case=Gen|Number=Plur|PronType=Tot 7 nmod _ _ +7 akcí akce NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ _ +8 souvisejících související ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 7 amod _ _ +9 se s ADP RV--7---------- AdpType=Voc|Case=Ins 10 case _ _ +10 zajištěním zajištění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 8 dobj _ _ +11 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=24 +12 dovážených dovážený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +13 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 11 nmod _ Coref=16 +15 pověřen pověřit VERB VsYS---XX-AP--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 1 csubj _ _ +16 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 15 nsubjpass _ Coref=18 +17 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 16 nmod _ Coref=4|SpaceAfter=No +18 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 26 +# text = Jedná se o usnesení číslo 64 ze dne 1. února 1994. +1 Jedná jednat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 expl _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 usnesení usnesení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ Coref=25 +5 číslo číslo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +6 64 64 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ _ +7 ze z ADP RV--2---------- AdpType=Voc|Case=Gen 8 case _ _ +8 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 února únor NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +12 1994 1994 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 27 +# text = Na tomto úřadě lze získat i potřebné informace. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 3 det _ _ +3 úřadě úřad NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=18 +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=26 +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ Drop_coref=26 +6 i i CONJ J^------------- _ 8 advmod:emph _ _ +7 potřebné potřebný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 informace informace NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 28 +# text = 5) Slovenská celní správa bude vyžadovat u každé jednotlivé dodávky originální rozhodnutí či certifikátu. +1 5 5 NUM C=------------- NumForm=Digit|NumType=Card 7 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 7 punct _ _ +3 Slovenská slovenský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ Coref=4 +4 celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 správa správa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 7 nsubj _ _ +6 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 7 aux _ _ +7 vyžadovat vyžadovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ Coref=27 +8 u u ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +9 každé každý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +10 jednotlivé jednotlivý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +11 dodávky dodávka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +12 originální originální ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 13 amod _ _ +13 rozhodnutí rozhodnutí NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ _ +14 či či CONJ J^------------- _ 13 cc _ _ +15 certifikátu certifikát NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 29 +# text = Tento postup si vyžádá v praxi zhotovování ověřených kopií. +1 Tento tento DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 2 det _ _ +2 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ Coref=27 +3 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 vyžádá vyžádat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +6 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +7 zhotovování zhotovování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 dobj _ _ +8 ověřených ověřený ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 9 amod _ _ +9 kopií kopie NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 30 +# text = 6) +1 6 6 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 31 +# text = Povinnost certifikace těchto výrobků vznikla na základě novelizace paragrafu 47 celního zákona 618/1992 SB., novelizovaného v zákoně 325 článek 8 ve znění zákona číslo 165/1993 Sb. +1 Povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +2 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ Coref=24 +3 těchto tento DET PDXP2---------- Case=Gen|Number=Plur|PronType=Dem 4 det _ _ +4 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ Coref=16 +5 vznikla vzniknout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 6 mwe _ _ +8 novelizace novelizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +9 paragrafu paragraf NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +10 47 47 NUM C=------------- NumForm=Digit|NumType=Card 9 nummod _ _ +11 celního celní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +13 618 618 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +14 / / PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +15 1992 1992 NUM C=------------- NumForm=Digit|NumType=Card 13 compound _ _ +16 SB Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 12 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 16 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 19 punct _ _ +19 novelizovaného novelizovaný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 zákoně zákon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +22 325 325 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod _ _ +23 článek článek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 8 8 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ _ +25 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 26 case _ _ +26 znění znění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +27 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +28 číslo číslo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +29 165 165 NUM C=------------- NumForm=Digit|NumType=Card 28 nummod _ SpaceAfter=No +30 / / PUNCT Z:------------- _ 31 punct _ SpaceAfter=No +31 1993 1993 NUM C=------------- NumForm=Digit|NumType=Card 29 compound _ _ +32 Sb Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 27 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 32 +# text = 7) +1 7 7 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 33 +# text = Ve všech případech vzniká od 1. dubna povinnost, aby při přechodu slovenských hranic byla dodávka vybavena originálem nebo ověřenou kopií certifikátu SPPI. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 3 case _ _ +2 všech všechen PRON PLXP6---------- Case=Loc|Number=Plur|PronType=Tot 3 nmod _ _ +3 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 4 nmod _ _ +4 vzniká vznikat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=28 +5 od od ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +6 1 1 NUM C=------------- NumForm=Digit|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=19 +9 povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ Drop_coref=28|SpaceAfter=No +10 , , PUNCT Z:------------- _ 19 punct _ _ +11-12 aby _ _ _ _ _ _ _ _ +11 aby aby SCONJ J,------------- _ 19 mark _ _ +12 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 19 aux _ _ +13 při při ADP RR--6---------- AdpType=Prep|Case=Loc 14 case _ _ +14 přechodu přechod NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +15 slovenských slovenský ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ Coref=4 +16 hranic hranice NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +17 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 19 auxpass _ _ +18 dodávka dodávka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 19 nsubjpass _ _ +19 vybavena vybavit VERB VsQW---XX-AP--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 9 acl _ Coref=31 +20 originálem originál NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 nebo nebo CONJ J^------------- _ 20 cc _ _ +22 ověřenou ověřený ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 kopií kopie NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 20 conj _ _ +24 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +25 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 24 nmod _ Coref=22|SpaceAfter=No +26 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 34 +# text = 8) +1 8 8 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 35 +# text = Stejné požadavky jako na dovážené výrobky bude SPPI uplatňovat i u výrobků tuzemských. +1 Stejné stejný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ Drop_coref=30 +2 požadavky požadavek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ Coref=31 +3 jako jako SCONJ J,------------- _ 6 mark _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 dovážené dovážený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 výrobky výrobek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dep _ _ +7 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 9 aux _ _ +8 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 9 nsubj _ Coref=29 +9 uplatňovat uplatňovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +10 i i CONJ J^------------- _ 12 advmod:emph _ _ +11 u u ADP RR--2---------- AdpType=Prep|Case=Gen 12 case _ _ +12 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ _ +13 tuzemských tuzemský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 12 amod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 36 +# text = Text k foto +1 Text text NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +2 k k ADP RR--3---------- AdpType=Prep|Case=Dat 3 case _ _ +3 foto foto NOUN NNNXX-----A---- Gender=Neut|Negative=Pos 1 nmod _ _ + +# sent_id = 37 +# text = ŽE BY NOVÁ CESTA JAK ŘEŠIT PROBLÉMY CELNÍ UNIE? +1 ŽE že SCONJ J,------------- _ 2 mark _ _ +2 BY být VERB Vc------------- Mood=Cnd|VerbForm=Fin 0 root _ _ +3 NOVÁ nový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 CESTA cesta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 nsubj _ Drop_coref=32 +5 JAK jak ADV Db------------- _ 6 advmod _ _ +6 ŘEŠIT řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 4 acl _ Drop_coref=32 +7 PROBLÉMY problém NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ _ +8 CELNÍ celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 UNIE unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ SpaceAfter=No +10 ? ? PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 38 +# text = Což o to, zkusit se to může. +1 Což což INTJ II------------- _ 0 root _ _ +2 o o ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dep _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 zkusit zkusit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +7 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 8 nsubj _ _ +8 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 39 +# text = Ale šance je přesto minimální. +1 Ale ale CONJ J^------------- _ 5 cc _ _ +2 šance šance NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +5 minimální minimální ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ + diff --git a/demo/pdt_train/cmpr9410_001.t b/demo/pdt_train/cmpr9410_001.t new file mode 100644 index 00000000..2dfd9626 --- /dev/null +++ b/demo/pdt_train/cmpr9410_001.t @@ -0,0 +1,10055 @@ + + + + + + + + + + + + Manual annotation + + comment + + + + a#a-cmpr9410-001-p2s1 + 0 + + + celní unie + lexeme + + t-cmpr9410-001-p2s1w1 + t-cmpr9410-001-p2s1w2 + + + + + + qcomplex + 1 + #EmpVerb + PRED + enunc + t + 3 + heading + + + + a#a-cmpr9410-001-p2s1w2 + + complex + unie + ACT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-cmpr9410-001-p2s1w1 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + a#a-cmpr9410-001-p2s1w4 + + a#a-cmpr9410-001-p2s1w3 + + + complex + ohrožení + LOC + basic + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 6 + v#v-w3017f1 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + qcomplex + 1 + #Gen + PAT + t + 5 + + + + + + + + + a#a-cmpr9410-001-p3s1 + 0 + + + + a#a-cmpr9410-001-p3s1w3 + + complex + omezení + DENOM + enunc + + n.denot.neg + neut + pl + single + neg0 + + f + 1 + heading + v#v-w3075f2 + + + + a#a-cmpr9410-001-p3s1w4 + + complex + vláda + APP + + n.denot + fem + sg + single + + f + 2 + v#v-w7638f1 + + + + a#a-cmpr9410-001-p3s1w5 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 3 + + + + + + a#a-cmpr9410-001-p3s1w2 + + complex + striktní + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-cmpr9410-001-p3s1w1 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-cmpr9410-001-p3s1w8 + + a#a-cmpr9410-001-p3s1w6 + + + complex + exportér + PAT + + n.denot + anim + pl + single + + f + 6 + + + + a#a-cmpr9410-001-p3s1w7 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + + a#a-cmpr9410-001-p4s1 + 0 + + + + a#a-cmpr9410-001-p4s1w13 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w243f1 + + + + a#a-cmpr9410-001-p4s1w4 + + a#a-cmpr9410-001-p4s1w1 + + + complex + desítka + DIR1 + basic + + n.denot + fem + pl + single + + c + 1 + + + + a#a-cmpr9410-001-p4s1w5 + + complex + smlouva + MAT + + n.denot + fem + pl + single + + f + 2 + + + + a#a-cmpr9410-001-p4s1w6 + + complex + upravující + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-cmpr9410-001-p4s1w7 + + complex + vztah + PAT + + n.denot + inan + pl + single + + f + 9 + + + + a#a-cmpr9410-001-p4s1w10 + + a#a-cmpr9410-001-p4s1w8 + + + complex + subjekt + ACT + + n.denot + inan + pl + single + + t + 5 + + + t-cmpr9410-001-p3s1w5 + SUB_SET + + + t-cmpr9410-001-p3s1w7 + SUB_SET + + + + + + a#a-cmpr9410-001-p4s1w9 + + complex + oba + RSTR + + adj.quant.def + basic + + t + 4 + + + + a#a-cmpr9410-001-p4s1w12 + + complex + soustátí + APP + + n.denot + neut + sg + single + + f + 6 + + + t-cmpr9410-001-p2s1w2 + SPEC + + + + + + a#a-cmpr9410-001-p4s1w11 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + qcomplex + 1 + #Rcp + PAT + t + 8 + + t-cmpr9410-001-p4s1w10 + + + + + + + + + + + a#a-cmpr9410-001-p4s1w3 + + complex + tři + RSTR + + adj.quant.def + basic + + f + 10 + + + + a#a-cmpr9410-001-p4s1w2 + + complex + téměř + EXT + basic + + adv.denot.ngrad.nneg + + f + 11 + + + + + + + + a#a-cmpr9410-001-p4s1w14 + + complex + okamžitý + TWHEN + basic + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-cmpr9410-001-p4s1w15 + + complex + vypověditelný + PAT + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-cmpr9410-001-p4s1w16 + + complex + kdo + ACT + + n.pron.indef + fem + pl + total1 + 3 + + f + 15 + + + t-cmpr9410-001-p4s1w4 + SPEC + + + + + + + + + a#a-cmpr9410-001-p4s2 + 0 + + + institution + + t-cmpr9410-001-p4s2w13 + t-cmpr9410-001-p4s2w14 + t-cmpr9410-001-p4s2w15 + t-cmpr9410-001-p4s2w16 + t-cmpr9410-001-p4s2w17 + + + + + + + a#a-cmpr9410-001-p4s2w5 + + coap + #Comma + APPS + 5 + + + t-cmpr9410-001-p4s1w13 + discourse + 0 + 0 + restr + + a#a-cmpr9410-001-p4s2w2 + + + t-cmpr9410-001-p4s2w1 + + + + + + + a#a-cmpr9410-001-p4s1w5 + + a#a-cmpr9410-001-p4s2w2 + + + complex + 1 + smlouva + DENOM + enunc + 1 + + n.denot + fem + pl + single + + t + 3 + + + t-cmpr9410-001-p4s1w5 + SUB_SET + + + + + + a#a-cmpr9410-001-p4s2w1 + + atom + + RHEM + t + 1 + + + + a#a-cmpr9410-001-p4s2w4 + + complex + jediný + RSTR + + adj.denot + pos + neg0 + + c + 2 + + + + a#a-cmpr9410-001-p4s2w3 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 4 + + + + + + a#a-cmpr9410-001-p4s1w5 + + a#a-cmpr9410-001-p4s2w2 + + + complex + 1 + smlouva + DENOM + enunc + 1 + + n.denot + fem + pl + single + + t + 8 + + + t-cmpr9410-001-p4s2a0 + SPEC + + + + + + a#a-cmpr9410-001-p4s2w7 + + complex + hlavní + RSTR + + adj.denot + pos + neg0 + + c + 6 + + + + a#a-cmpr9410-001-p4s2w6 + + complex + ten + RSTR + + adj.pron.def.demon + + t + 7 + + + + + + a#a-cmpr9410-001-p4s2w19 + + coap + a + CONJ + 19 + + + + a#a-cmpr9410-001-p4s2w11 + + complex + zakotvovat + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w8886f2 + + + + a#a-cmpr9410-001-p4s2w9 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 9 + + t-cmpr9410-001-p4s2w5 + + + + qcomplex + 1 + #Oblfm + DIR3 + nr + t + 10 + + + + a#a-cmpr9410-001-p4s2w10 + + complex + proklamativní + MANN + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-cmpr9410-001-p4s2w12 + + complex + existence + PAT + + n.denot + fem + sg + single + + f + 13 + + + + a#a-cmpr9410-001-p4s2w17 + + complex + unie + APP + + n.denot + fem + sg + single + + f + 17 + + + t-cmpr9410-001-p4s1w12 + SPEC + + + + + + a#a-cmpr9410-001-p4s2w14 + + coap + #Dash + CONJ + 15 + + + + a#a-cmpr9410-001-p4s2w13 + + complex + Český + RSTR + 1 + + adj.denot + pos + neg0 + + t + 14 + + + + a#a-cmpr9410-001-p4s2w15 + + complex + Slovenský + RSTR + 1 + + adj.denot + pos + neg0 + + t + 16 + + + t-cmpr9410-001-p3s1w5 + SPEC + + + + + + + + a#a-cmpr9410-001-p4s2w16 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + + + + + + + a#a-cmpr9410-001-p4s2w21 + + complex + mít + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 21 + + + t-cmpr9410-001-p4s2w11 + discourse + 0 + 0 + conj + + t-cmpr9410-001-p4s2w19 + + + + v#v-w1855f2 + + + + a#a-cmpr9410-001-p4s2w20 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 20 + + t-cmpr9410-001-p4s2w5 + + + + + a#a-cmpr9410-001-p4s2w23 + + complex + lhůta + PAT + + n.denot + fem + sg + single + + f + 22 + + + + a#a-cmpr9410-001-p4s2w22 + + complex + výpovědní + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + + a#a-cmpr9410-001-p4s2w25 + + complex + rok + THL + + n.denot + inan + sg + single + + f + 24 + + + + a#a-cmpr9410-001-p4s2w24 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 25 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p4s3 + 0 + + + time + + t-cmpr9410-001-p4s3w25 + t-cmpr9410-001-p4s3w26 + t-cmpr9410-001-p4s3w27 + + + + + + + a#a-cmpr9410-001-p4s3w4 + + complex + znamenat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w9661f1 + + + + a#a-cmpr9410-001-p4s3w2 + + a#a-cmpr9410-001-p4s3w1 + + + complex + praxe + LOC + basic + + n.denot + fem + sg + single + + c + 1 + + + + a#a-cmpr9410-001-p4s3w3 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 2 + segm + + + + a#a-cmpr9410-001-p4s3w30 + + a#a-cmpr9410-001-p4s3w21 + a#a-cmpr9410-001-p4s3w28 + a#a-cmpr9410-001-p4s3w6 + a#a-cmpr9410-001-p4s3w22 + + + complex + zbavit_se + PAT + + v + poss + nil + cpl + it0 + act + potential + + f + 18 + v#v-w9336f1 + + + + a#a-cmpr9410-001-p4s3w20 + + atom + přesto + PREC + t + 4 + + + + a#a-cmpr9410-001-p4s3w12 + + a#a-cmpr9410-001-p4s3w7 + a#a-cmpr9410-001-p4s3w8 + + + complex + říci + COND + + v + decl + nil + cpl + it0 + act + potential + + f + 8 + + + t-cmpr9410-001-p4s3w30 + discourse + 0 + 0 + cond + + a#a-cmpr9410-001-p4s3w7 + a#a-cmpr9410-001-p4s3w8 + + + + v#v-w5874f1 + + + + a#a-cmpr9410-001-p4s3w10 + + complex + hnedka + TWHEN + basic + + adv.denot.grad.neg + pos + neg0 + + t + 5 + + + + a#a-cmpr9410-001-p4s3w11 + + complex + zítra + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 6 + + + qcomplex + 1 + #Gen + ADDR + t + 7 + + + + a#a-cmpr9410-001-p4s3w13 + + complex + ČR + ACT + + n.denot + fem + sg + single + + f + 9 + + + t-cmpr9410-001-p4s2w13 + SPEC + + + + + + a#a-cmpr9410-001-p4s3w17 + + a#a-cmpr9410-001-p4s3w15 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w243f1 + + + + a#a-cmpr9410-001-p4s3w16 + + complex + smlouva + ACT + + n.denot + fem + sg + single + + t + 10 + + + t-cmpr9410-001-p4s2a1 + SPEC + + + + + + a#a-cmpr9410-001-p4s3w18 + + complex + pasé + PAT + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + a#a-cmpr9410-001-p4s3w23 + + atom + teprve + RHEM + t + 13 + + + + a#a-cmpr9410-001-p4s3w25 + + a#a-cmpr9410-001-p4s3w24 + + + complex + březen + TWHEN + basic + + n.denot + inan + sg + single + + c + 16 + + + + a#a-cmpr9410-001-p4s3w27 + + complex + rok + APP + + n.denot + inan + sg + single + + t + 14 + + + + a#a-cmpr9410-001-p4s3w26 + + complex + příští + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 17 + + + t-cmpr9410-001-p4s3w13 + SPEC + + + + + + a#a-cmpr9410-001-p4s3w29 + + complex + legislativní + MANN + + adj.denot + pos + neg0 + + f + 19 + + + + a#a-cmpr9410-001-p4s3w32 + + complex + závazek + PAT + + n.denot + inan + pl + single + + f + 21 + + + + a#a-cmpr9410-001-p4s3w31 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 20 + + t-cmpr9410-001-p4s3a0 + + + + + a#a-cmpr9410-001-p4s3w34 + + a#a-cmpr9410-001-p4s3w33 + + + complex + partner + REG + + n.denot + anim + sg + single + + f + 22 + + + t-cmpr9410-001-p4s2w15 + SPEC + + + + + + a#a-cmpr9410-001-p4s3w37 + + a#a-cmpr9410-001-p4s3w35 + + + complex + ČSFR + DIR1 + basic + + n.denot + fem + sg + single + + f + 23 + + + + a#a-cmpr9410-001-p4s3w36 + + complex + bývalý + RSTR + + adj.denot + pos + neg0 + + f + 24 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p6s1 + 0 + + + person + + t-cmpr9410-001-p6s1w1 + t-cmpr9410-001-p6s1w2 + + + + + + + a#a-cmpr9410-001-p6s1w2 + + complex + Jánoška + DENOM + enunc + 1 + + n.denot + anim + sg + single + + f + 1 + + + + a#a-cmpr9410-001-p6s1w1 + + complex + Kazimír + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + + + + a#a-cmpr9410-001-p8s1 + 0 + + + mezinárodní smlouva + lexeme + + t-cmpr9410-001-p8s1w17 + t-cmpr9410-001-p8s1w18 + + + + + + + a#a-cmpr9410-001-p8s1w11 + + a#a-cmpr9410-001-p8s1w9 + + + complex + zdát_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + + + t-cmpr9410-001-p4s2w5 + discourse + 0 + 1 + opp + + t-cmpr9410-001-p8s1w10 + + + + v#v-w9378f1 + + + + a#a-cmpr9410-001-p8s1w10 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-001-p8s1w2 + + a#a-cmpr9410-001-p8s1w1 + + + complex + pozadí + LOC + basic + + n.denot + neut + sg + single + + c + 2 + + + + a#a-cmpr9410-001-p8s1w3 + + complex + vývoj + APP + + n.denot + inan + sg + single + + f + 3 + + + + a#a-cmpr9410-001-p8s1w7 + + coap + a + CONJ + 6 + + + + a#a-cmpr9410-001-p8s1w6 + + a#a-cmpr9410-001-p8s1w4 + + + complex + den + TWHEN + basic + 1 + + n.denot + inan + pl + single + + f + 4 + + + + a#a-cmpr9410-001-p8s1w8 + + a#a-cmpr9410-001-p8s1w4 + + + complex + týden + TWHEN + basic + 1 + + n.denot + inan + pl + single + + f + 5 + + + + a#a-cmpr9410-001-p8s1w5 + + complex + poslední + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-cmpr9410-001-p8s1w24 + + a#a-cmpr9410-001-p8s1w13 + a#a-cmpr9410-001-p8s1w23 + + + complex + mít + PAT + + v + hrt + post + proc + it0 + act + asserted + + f + 19 + v#v-w1855f1 + + + + a#a-cmpr9410-001-p8s1w14 + + complex + litera + ACT + + n.denot + fem + sg + single + + t + 18 + + + + a#a-cmpr9410-001-p8s1w18 + + complex + smlouva + APP + + n.denot + fem + sg + single + + t + 17 + + + t-cmpr9410-001-p4s3w16 + SPEC + + + + + + a#a-cmpr9410-001-p8s1w16 + + complex + uvedený + RSTR + + adj.denot + pos + neg0 + + t + 10 + + + + a#a-cmpr9410-001-p8s1w15 + + complex + vysoký + MANN + + adj.denot + comp + neg0 + + f + 11 + + + + + + a#a-cmpr9410-001-p8s1w17 + + complex + mezinárodní + RSTR + + adj.denot + pos + neg0 + + t + 12 + + + + a#a-cmpr9410-001-p8s1w21 + + coap + a + CONJ + 14 + + + + a#a-cmpr9410-001-p8s1w20 + + a#a-cmpr9410-001-p8s1w19 + + + complex + ČR + ACT + 1 + + n.denot + fem + sg + single + + t + 13 + + + t-cmpr9410-001-p4s3w31 + SPEC + + + + + + a#a-cmpr9410-001-p8s1w22 + + a#a-cmpr9410-001-p8s1w19 + + + complex + SR + ACT + 1 + + n.denot + fem + sg + single + + t + 15 + + + t-cmpr9410-001-p4s3w34 + SPEC + + + + + + + qcomplex + 1 + #Rcp + ADDR + t + 16 + + t-cmpr9410-001-p8s1w21 + + + + + + + + + a#a-cmpr9410-001-p8s1w26 + + complex + nevidět + TWHEN + nr + 1 + + adv.denot.ngrad.nneg + + f + 21 + v#v-w2397f1 + + + + a#a-cmpr9410-001-p8s1w25 + + dphr + co + DPHR + 1 + t + 20 + + + + + + a#a-cmpr9410-001-p8s1w28 + + complex + síla + PAT + + n.denot + fem + sg + single + + f + 22 + + + + a#a-cmpr9410-001-p8s1w27 + + atom + pouze + RHEM + f + 23 + + + + a#a-cmpr9410-001-p8s1w31 + + coap + a + CONJ + 26 + + + + a#a-cmpr9410-001-p8s1w30 + + complex + slovo + APP + 1 + + n.denot + neut + sg + single + + f + 24 + + + + a#a-cmpr9410-001-p8s1w29 + + complex + psaný + RSTR + + adj.denot + pos + neg0 + + f + 25 + + + + + + a#a-cmpr9410-001-p8s1w32 + + complex + co + APP + 1 + + n.pron.indef + neut + sg + negat + 3 + + f + 27 + + + + a#a-cmpr9410-001-p8s1w33 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 28 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p8s2 + 0 + + + celní unie + lexeme + + t-cmpr9410-001-p8s2w1 + t-cmpr9410-001-p8s2w2 + + + + mezinárodní obchod + lexeme + + t-cmpr9410-001-p8s2w27 + t-cmpr9410-001-p8s2w28 + + + + + + + a#a-cmpr9410-001-p8s2w19 + + coap + ale + ADVS + 15 + + + + a#a-cmpr9410-001-p8s2w4 + + atom + sice + CM + 1 + + + + a#a-cmpr9410-001-p8s2w13 + + coap + a + CONJ + 1 + 1 + 10 + + + + a#a-cmpr9410-001-p8s2w2 + + complex + unie + ACT + + n.denot + fem + sg + single + + t + 3 + + + t-cmpr9410-001-p4s2w17 + SPEC + + + + + + a#a-cmpr9410-001-p8s2w1 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + + a#a-cmpr9410-001-p8s2w7 + + a#a-cmpr9410-001-p8s2w6 + + + complex + papír + LOC + basic + + n.denot + inan + sg + single + + t + 4 + + + + a#a-cmpr9410-001-p8s2w5 + + a#a-cmpr9410-001-p8s2w3 + + + complex + existovat + PRED + enunc + 1 + + v + decl + post + proc + it0 + act + asserted + + f + 5 + v#v-w902f1 + + + + a#a-cmpr9410-001-p8s2w11 + + complex + měsíc + THL + + n.denot + inan + pl + single + + f + 6 + + + t-cmpr9410-001-p4s2w25 + SPEC + + + + + + a#a-cmpr9410-001-p8s2w8 + + atom + ještě + RHEM + f + 7 + + + + a#a-cmpr9410-001-p8s2w10 + + complex + dvanáct + RSTR + + adj.quant.def + basic + + f + 8 + + + + a#a-cmpr9410-001-p8s2w9 + + complex + další + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + a#a-cmpr9410-001-p8s2w5 + + a#a-cmpr9410-001-p8s2w3 + + + complex + 1 + existovat + PRED + enunc + 1 + 1 + + v + decl + post + proc + it0 + act + asserted + + t + 11 + + + t-cmpr9410-001-p8s2w5 + discourse + 0 + 0 + restr + + t-cmpr9410-001-p8s2w13 + + + + v#v-w902f1 + + + + a#a-cmpr9410-001-p8s2w14 + + atom + třeba + MOD + 1 + f + 12 + + + + a#a-cmpr9410-001-p8s2w15 + + atom + i + RHEM + 1 + f + 13 + + + + a#a-cmpr9410-001-p8s2w16 + + complex + dlouhý + THL + 1 + + adj.denot + comp + neg0 + + f + 14 + + + + + + + + a#a-cmpr9410-001-p8s2w22 + + complex + dostat + PRED + enunc + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 17 + + + t-cmpr9410-001-p8s2w13 + discourse + 0 + 0 + confr + + t-cmpr9410-001-p8s2w4 + t-cmpr9410-001-p8s2w19 + + + + v#v-w732f4 + + + + a#a-cmpr9410-001-p8s2w21 + + a#a-cmpr9410-001-p8s2w20 + + + complex + praxe + LOC + basic + + n.denot + fem + sg + single + + c + 16 + + + + a#a-cmpr9410-001-p8s2w24 + + complex + vztah + ACT + + n.denot + inan + pl + single + + f + 19 + + + t-cmpr9410-001-p4s1w7 + SPEC + + + + + + a#a-cmpr9410-001-p8s2w23 + + complex + vzájemný + RSTR + + adj.denot + pos + neg0 + + t + 18 + + + + + + a#a-cmpr9410-001-p8s2w25 + + complex + punc + PAT + + n.denot + inan + sg + single + + f + 20 + + + + a#a-cmpr9410-001-p8s2w26 + + complex + tvrdost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 21 + + + + a#a-cmpr9410-001-p8s2w28 + + complex + obchod + APP + + n.denot + inan + sg + single + + f + 22 + + + + a#a-cmpr9410-001-p8s2w27 + + complex + mezinárodní + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p9s1 + 0 + + + + a#a-cmpr9410-001-p9s1w1 + + complex + růst + PRED + enunc + + v + decl + post + proc + it0 + act + asserted + + f + 1 + heading + v#v-w5841f1 + + + + a#a-cmpr9410-001-p9s1w2 + + complex + administrativa + ACT + + n.denot + fem + sg + single + + f + 2 + + + + + + + a#a-cmpr9410-001-p10s1 + 0 + + + dovozní přirážka + lexeme + + t-cmpr9410-001-p10s1w20 + t-cmpr9410-001-p10s1w21 + + + + + + + a#a-cmpr9410-001-p10s1w5 + + complex + dávat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w374f3 + + + + a#a-cmpr9410-001-p10s1w1 + + complex + jistota + PAT + + n.denot + fem + sg + single + + c + 3 + + + + a#a-cmpr9410-001-p10s1w4 + + a#a-cmpr9410-001-p10s1w2 + + + complex + směr + REG + + n.denot + inan + sg + single + + t + 2 + segm + + + + a#a-cmpr9410-001-p10s1w3 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + + + + a#a-cmpr9410-001-p10s1w7 + + complex + krok + ACT + + n.denot + inan + pl + single + + f + 5 + + + + a#a-cmpr9410-001-p10s1w8 + + complex + vláda + APP + + n.denot + fem + sg + single + + f + 6 + + + t-cmpr9410-001-p3s1w4 + SPEC + + + + + + a#a-cmpr9410-001-p10s1w9 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 7 + + + t-cmpr9410-001-p8s1w22 + SPEC + + + + + + a#a-cmpr9410-001-p10s1w13 + + a#a-cmpr9410-001-p10s1w12 + + + complex + rozhodnout_se + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 9 + v#v-w5635f1 + + + + a#a-cmpr9410-001-p10s1w11 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 8 + + t-cmpr9410-001-p10s1w8 + + + + + a#a-cmpr9410-001-p10s1w14 + + complex + zavést + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 11 + + + t-cmpr9410-001-p10s1w7 + SET_SUB + + + v#v-w9273f2 + + + qcomplex + 1 + #Cor + ACT + t + 10 + + t-cmpr9410-001-p10s1w11 + + + + + a#a-cmpr9410-001-p10s1w21 + + complex + přirážka + PAT + + n.denot + fem + sg + single + + f + 12 + + + t-cmpr9410-001-p3s1w3 + SET_SUB + + + + + + a#a-cmpr9410-001-p10s1w20 + + complex + dovozní + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-cmpr9410-001-p10s1w23 + + a#a-cmpr9410-001-p10s1w22 + + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 14 + + + + a#a-cmpr9410-001-p10s1w25 + + complex + provenience + APP + + n.denot + fem + sg + single + + f + 15 + + + + a#a-cmpr9410-001-p10s1w24 + + complex + zahraniční + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + a#a-cmpr9410-001-p10s1w18 + + complex + avizovaný + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + a#a-cmpr9410-001-p10s1w15 + + atom + již + RHEM + f + 18 + + + + a#a-cmpr9410-001-p10s1w17 + + a#a-cmpr9410-001-p10s1w16 + + + complex + čas + TWHEN + before + + n.denot + inan + sg + single + + f + 19 + + + + + + a#a-cmpr9410-001-p10s1w19 + + complex + desetiprocentní + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + + + + a#a-cmpr9410-001-p10s1w6 + + complex + nový + RSTR + + adj.denot + sup + neg0 + + f + 21 + + + + + + + + + a#a-cmpr9410-001-p10s2 + 0 + + + + a#a-cmpr9410-001-p10s2w18 + + complex + vyznívat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 15 + v#v-w8603f1 + + + + a#a-cmpr9410-001-p10s2w17 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-001-p10s2w2 + + a#a-cmpr9410-001-p10s2w1 + + + complex + mít + CNCS + + v + hrt + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-001-p10s2w18 + discourse + 0 + 0 + conc + + a#a-cmpr9410-001-p10s2w1 + + + + v#v-w1855f4 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-cmpr9410-001-p10s1a0 + SPEC + + + + + + a#a-cmpr9410-001-p10s2w7 + + complex + právo + CPHR + + n.denot + neut + sg + single + + f + 8 + v#v-w4261f1 + + + + a#a-cmpr9410-001-p10s2w5 + + a#a-cmpr9410-001-p10s2w3 + + + complex + krok + PAT + + n.denot + inan + sg + single + + t + 6 + + + t-cmpr9410-001-p10s1w14 + SPEC + + + + + + a#a-cmpr9410-001-p10s2w4 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 4 + + + qcomplex + 1 + #Cor + ACT + t + 5 + + t-cmpr9410-001-p10s2a0 + + + + + + qcomplex + 1 + #QCor + ACT + t + 7 + + t-cmpr9410-001-p10s2a0 + + + + + a#a-cmpr9410-001-p10s2w6 + + complex + určitý + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-cmpr9410-001-p10s2w10 + + a#a-cmpr9410-001-p10s2w9 + + + complex + člen + COMPL + 1 + + n.denot + anim + sg + single + + f + 10 + + t-cmpr9410-001-p10s2a0 + + + + + a#a-cmpr9410-001-p10s2w11 + + complex + GATT + APP + 1 + + n.denot + fem + nr + single + + f + 11 + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + neut + sg + 3 + basic + + t + 12 + + + t-cmpr9410-001-p11s1w6 + SPEC + + + + + + a#a-cmpr9410-001-p10s2w16 + + a#a-cmpr9410-001-p10s2w14 + + + complex + okamžik + TWHEN + basic + + n.denot + inan + sg + single + + t + 13 + + + + a#a-cmpr9410-001-p10s2w15 + + complex + daný + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + qcomplex + 1 + #Equal + MANN + t + 16 + + + + a#a-cmpr9410-001-p10s2w18 + + a#a-cmpr9410-001-p10s2w19 + + + complex + 1 + vyznívat + CPR + basic + + v + decl + sim + proc + it0 + act + asserted + + t + 18 + v#v-w8603f1 + + + qcomplex + 1 + #Oblfm + MANN + t + 17 + + + + a#a-cmpr9410-001-p10s2w22 + + complex + rozhodnutí + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 20 + + + t-cmpr9410-001-p10s2w5 + SPEC + + + v#v-w5636f1 + + + qcomplex + 1 + #Gen + PAT + t + 19 + + + + a#a-cmpr9410-001-p10s2w23 + + complex + vláda + ACT + + n.denot + fem + sg + single + + t + 21 + + + t-cmpr9410-001-p10s2a8 + SPEC + + + + + + a#a-cmpr9410-001-p10s2w27 + + a#a-cmpr9410-001-p10s2w26 + + + complex + snažit_se + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 23 + v#v-w6234f1 + + + + a#a-cmpr9410-001-p10s2w25 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 22 + + t-cmpr9410-001-p10s2w23 + + + + + a#a-cmpr9410-001-p10s2w32 + + complex + zredukovat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 25 + v#v-w9866f1 + + + qcomplex + 1 + #Cor + ACT + t + 24 + + t-cmpr9410-001-p10s2w25 + + + + + a#a-cmpr9410-001-p10s2w31 + + complex + krok + MEANS + + n.denot + inan + pl + single + + t + 26 + + + t-cmpr9410-001-p10s2w22 + SUB_SET + + + + + + a#a-cmpr9410-001-p10s2w30 + + complex + administrativní + RSTR + + adj.denot + pos + neg0 + + f + 27 + + + + a#a-cmpr9410-001-p10s2w29 + + complex + rezolutní + RSTR + + adj.denot + pos + neg0 + + f + 28 + + + + a#a-cmpr9410-001-p10s2w28 + + complex + velice + EXT + basic + + adv.denot.grad.neg + pos + neg0 + + f + 29 + + + + + + + + a#a-cmpr9410-001-p10s2w34 + + complex + pasívum + PAT + + n.denot + neut + sg + single + + f + 30 + + + + a#a-cmpr9410-001-p10s2w33 + + complex + mnohomiliónový + RSTR + + adj.denot + pos + neg0 + + f + 31 + + + + a#a-cmpr9410-001-p10s2w37 + + a#a-cmpr9410-001-p10s2w35 + + + complex + výměna + LOC + basic + + n.denot + fem + sg + single + + f + 32 + + + + a#a-cmpr9410-001-p10s2w39 + + a#a-cmpr9410-001-p10s2w38 + + + complex + ČR + ADDR + + n.denot + fem + sg + single + + f + 33 + + + t-cmpr9410-001-p8s1w20 + SPEC + + + + + + a#a-cmpr9410-001-p10s2w36 + + complex + obchodní + RSTR + + adj.denot + pos + neg0 + + f + 34 + + + + + + + + + + + + + + a#a-cmpr9410-001-p10s2w21 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 35 + + + + a#a-cmpr9410-001-p10s2w20 + + complex + tvrdý + RSTR + + adj.denot + pos + neg0 + + f + 36 + + + + + + + + + + + + + a#a-cmpr9410-001-p11s1 + 0 + + + + a#a-cmpr9410-001-p11s1w4 + + complex + lze + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w1757f1 + + + + a#a-cmpr9410-001-p11s1w2 + + a#a-cmpr9410-001-p11s1w1 + + + complex + regule + CRIT + + n.denot + fem + pl + single + + c + 2 + + + + a#a-cmpr9410-001-p11s1w3 + + complex + GATT + APP + + n.denot + fem + nr + single + + t + 1 + + + t-cmpr9410-001-p10s2w11 + SPEC + + + + + + + qcomplex + 1 + #Gen + BEN + nr + t + 3 + + + + a#a-cmpr9410-001-p11s1w13 + + coap + a + CONJ + 13 + + + + a#a-cmpr9410-001-p11s1w6 + + complex + opatření + CPHR + + n.denot.neg + neut + sg + single + neg0 + + t + 6 + + + t-cmpr9410-001-p10s2w22 + SPEC + + + v#v-w3111f1 + + + + a#a-cmpr9410-001-p11s1w5 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 5 + + + + + qcomplex + 1 + #Cor + ACT + t + 7 + + t-cmpr9410-001-p11s1a0 + + + + + a#a-cmpr9410-001-p11s1w7 + + complex + přijmout + ACT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 8 + v#v-w5161f4 + + + + a#a-cmpr9410-001-p11s1w10 + + a#a-cmpr9410-001-p11s1w9 + + + complex + období + TFHL + + n.denot + neut + sg + single + + f + 9 + + + + a#a-cmpr9410-001-p11s1w12 + + complex + měsíc + APP + + n.denot + inan + pl + single + + f + 10 + + + + a#a-cmpr9410-001-p11s1w11 + + complex + šest + RSTR + + adj.quant.def + basic + + f + 11 + + + + + + + + a#a-cmpr9410-001-p11s1w8 + + complex + maximální + EXT + basic + + adj.denot + pos + neg0 + + f + 12 + + + + + + a#a-cmpr9410-001-p11s1w7 + + complex + 1 + přijmout + ACT + 1 + + v + decl + nil + cpl + it0 + act + nil + + t + 14 + v#v-w5161f4 + + + + a#a-cmpr9410-001-p11s1w17 + + a#a-cmpr9410-001-p11s1w15 + + + complex + položka + REG + + n.denot + fem + pl + single + + f + 15 + + + + a#a-cmpr9410-001-p11s1w14 + + atom + pouze + RHEM + f + 16 + + + + a#a-cmpr9410-001-p11s1w16 + + complex + vybraný + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + a#a-cmpr9410-001-p11s2 + 0 + + + + a#a-cmpr9410-001-p11s2w5 + + complex + měnit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + t-cmpr9410-001-p11s1w4 + discourse + 0 + 0 + opp + + t-cmpr9410-001-p11s2w3 + + + + v#v-w1814f2 + + + + a#a-cmpr9410-001-p11s2w3 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-001-p11s2w2 + + complex + skutečnost + ACT + + n.denot.neg + fem + sg + single + neg0 + + t + 3 + + + t-cmpr9410-001-p11s1w4 + SPEC + + + + + + a#a-cmpr9410-001-p11s2w1 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 2 + + + + + + a#a-cmpr9410-001-p11s2w4 + + complex + co + PAT + + n.pron.indef + neut + sg + negat + 3 + + t + 4 + + + atom + 1 + #Neg + RHEM + f + 5 + + + + a#a-cmpr9410-001-p11s2w7 + + a#a-cmpr9410-001-p11s2w6 + + + complex + fakt + LOC + basic + + n.denot + inan + sg + single + + f + 7 + + + + a#a-cmpr9410-001-p11s2w15 + + a#a-cmpr9410-001-p11s2w14 + a#a-cmpr9410-001-p11s2w9 + + + complex + znamenat + PAT + + v + decl + post + proc + it0 + act + asserted + + f + 12 + v#v-w9661f1 + + + + a#a-cmpr9410-001-p11s2w12 + + coap + a + CONJ + 10 + + + + a#a-cmpr9410-001-p11s2w11 + + complex + týden + ACT + 1 + + n.denot + inan + pl + single + + t + 8 + + + + a#a-cmpr9410-001-p11s2w13 + + complex + měsíc + ACT + 1 + + n.denot + inan + pl + single + + t + 9 + + + + a#a-cmpr9410-001-p11s2w10 + + complex + nadcházející + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + a#a-cmpr9410-001-p11s2w18 + + complex + nárok + PAT + + n.denot + inan + pl + single + + f + 13 + + + + a#a-cmpr9410-001-p11s2w20 + + a#a-cmpr9410-001-p11s2w19 + + + complex + administrativa + PAT + + n.denot + fem + sg + single + + f + 14 + + + + a#a-cmpr9410-001-p11s2w21 + + complex + podnikatel + APP + + n.denot + anim + pl + single + + f + 15 + + + + + + a#a-cmpr9410-001-p11s2w17 + + complex + zvýšený + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-cmpr9410-001-p11s2w16 + + complex + úměrný + MANN + + adj.denot + pos + neg1 + + f + 17 + + + + + + + + a#a-cmpr9410-001-p11s2w23 + + a#a-cmpr9410-001-p11s2w22 + + + complex + rozvíjení + TWHEN + basic + + n.denot.neg + neut + sg + single + neg0 + + f + 19 + v#v-w5816f1 + + + qcomplex + 1 + #Gen + ACT + t + 18 + + + + a#a-cmpr9410-001-p11s2w26 + + complex + aktivita + PAT + + n.denot + fem + pl + single + + f + 21 + + + + a#a-cmpr9410-001-p11s2w24 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 20 + + + t-cmpr9410-001-p11s2w21 + SPEC + + + + + + a#a-cmpr9410-001-p11s2w29 + + a#a-cmpr9410-001-p11s2w27 + + + complex + partner + PAT + + n.denot + anim + pl + single + + f + 22 + + + + a#a-cmpr9410-001-p11s2w28 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + t-cmpr9410-001-p10s1w9 + SPEC + + + + + + + + a#a-cmpr9410-001-p11s2w25 + + complex + obchodní + RSTR + + adj.denot + pos + neg0 + + f + 24 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p12s1 + 0 + + + + a#a-cmpr9410-001-p12s1w1 + + complex + pravidlo + DENOM + enunc + + n.denot + neut + pl + single + + f + 1 + heading + + + + a#a-cmpr9410-001-p12s1w4 + + a#a-cmpr9410-001-p12s1w2 + + + complex + týden + BEN + basic + + n.denot + inan + pl + single + + f + 2 + + + + a#a-cmpr9410-001-p12s1w3 + + complex + příští + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + + + + a#a-cmpr9410-001-p13s1 + 0 + + + + a#a-cmpr9410-001-p13s1w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-cmpr9410-001-p13s1w3 + + complex + den + THL + + n.denot + inan + pl + single + + c + 1 + + + + a#a-cmpr9410-001-p13s1w1 + + atom + již + RHEM + f + 2 + + + + a#a-cmpr9410-001-p13s1w2 + + complex + kolik + RSTR + + adj.quant.indef + indef1 + basic + + f + 3 + + + + + + a#a-cmpr9410-001-p13s1w6 + + complex + známý + PAT + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-cmpr9410-001-p13s1w5 + + complex + všeobecný + MANN + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-cmpr9410-001-p13s1w17 + + a#a-cmpr9410-001-p13s1w8 + a#a-cmpr9410-001-p13s1w16 + + + complex + dotýkat_se + ACT + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + v#v-w772f1 + + + + a#a-cmpr9410-001-p13s1w10 + + complex + opatření + ACT + + n.denot.neg + neut + pl + single + neg0 + + t + 12 + + + t-cmpr9410-001-p3s1w3 + SPEC + + + v#v-w3111f1 + + + + a#a-cmpr9410-001-p13s1w15 + + a#a-cmpr9410-001-p13s1w13 + + + complex + exportér + PAT + + n.denot + anim + pl + single + + t + 8 + + + t-cmpr9410-001-p3s1w8 + GEN + + + + + + a#a-cmpr9410-001-p13s1w14 + + complex + český + RSTR + + adj.denot + pos + neg0 + + t + 7 + + + t-cmpr9410-001-p10s2w39 + SPEC + + + + + + + + a#a-cmpr9410-001-p13s1w9 + + complex + ochranářský + RSTR + + adj.denot + pos + neg0 + + t + 9 + + + + a#a-cmpr9410-001-p13s1w12 + + complex + vláda + APP + + n.denot + fem + sg + single + + t + 11 + + + t-cmpr9410-001-p10s2a5 + SPEC + + + + + + a#a-cmpr9410-001-p13s1w11 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + t + 10 + + + t-cmpr9410-001-p11s2w28 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p13s1w18 + + atom + zejména + RHEM + f + 14 + + + + a#a-cmpr9410-001-p13s1w19 + + complex + oblast + PAT + + n.denot + fem + sg + single + + f + 15 + + + + a#a-cmpr9410-001-p13s1w23 + + coap + a + CONJ + 18 + + + + a#a-cmpr9410-001-p13s1w20 + + complex + obchod + APP + 1 + + n.denot + inan + sg + single + + f + 16 + + + + a#a-cmpr9410-001-p13s1w22 + + a#a-cmpr9410-001-p13s1w21 + + + complex + potravina + PAT + + n.denot + fem + pl + single + + f + 17 + + + + + + a#a-cmpr9410-001-p13s1w20 + + complex + 1 + obchod + APP + 1 + + n.denot + inan + sg + single + + t + 19 + + + + a#a-cmpr9410-001-p13s1w25 + + a#a-cmpr9410-001-p13s1w21 + + + complex + produkt + PAT + + n.denot + inan + pl + single + + f + 20 + + + + a#a-cmpr9410-001-p13s1w24 + + complex + zemědělský + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + + + + + + + + + + a#a-cmpr9410-001-p14s1 + 0 + + + institution + + t-cmpr9410-001-p14s1w9 + t-cmpr9410-001-p14s1w11 + t-cmpr9410-001-p14s1w13 + t-cmpr9410-001-p14s1w14 + t-cmpr9410-001-p14s1w15 + + + + + + + a#a-cmpr9410-001-p14s1w4 + + a#a-cmpr9410-001-p14s1w3 + + + complex + podařit_se + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w3540f1 + + + + a#a-cmpr9410-001-p14s1w2 + + complex + list + ACT + + n.denot + inan + sg + single + + c + 2 + + + + a#a-cmpr9410-001-p14s1w1 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 1 + + + t-cmpr9410-001-p6s1w2 + SUB_SET + + + + + + + + a#a-cmpr9410-001-p14s1w5 + + complex + získat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 5 + v#v-w9501f1 + + + qcomplex + 1 + #Cor + ACT + t + 4 + + t-cmpr9410-001-p14s1w2 + + + + + a#a-cmpr9410-001-p14s1w7 + + a#a-cmpr9410-001-p14s1w6 + + + complex + představitel + ORIG + + n.denot + anim + pl + single + + f + 6 + + + + a#a-cmpr9410-001-p14s1w16 + + coap + #Bracket + APPS + 13 + + + + a#a-cmpr9410-001-p14s1w9 + + complex + Úřad + APP + 1 + + n.denot + inan + sg + single + + f + 7 + + + + a#a-cmpr9410-001-p14s1w14 + + coap + a + CONJ + 10 + + + + a#a-cmpr9410-001-p14s1w11 + + a#a-cmpr9410-001-p14s1w10 + + + complex + normalizace + BEN + basic + 1 + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-001-p14s1w13 + + a#a-cmpr9410-001-p14s1w10 + + + complex + metrologie + BEN + basic + 1 + + n.denot + fem + sg + single + + f + 9 + + + + a#a-cmpr9410-001-p14s1w15 + + a#a-cmpr9410-001-p14s1w10 + + + complex + zkušebnictví + BEN + basic + 1 + + n.denot + neut + sg + single + + f + 11 + + + + + + a#a-cmpr9410-001-p14s1w8 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + t-cmpr9410-001-p13s1w11 + SPEC + + + + + + + + a#a-cmpr9410-001-p14s1w17 + + complex + ÚNMS + APP + 1 + + n.denot + inan + nr + single + + f + 15 + + + + a#a-cmpr9410-001-p14s1w18 + + complex + SR + APP + + n.denot + fem + sg + single + + t + 14 + + + t-cmpr9410-001-p14s1w8 + SPEC + + + + + + + + + + + + a#a-cmpr9410-001-p14s1w20 + + complex + informace + PAT + + n.denot + fem + sg + single + + f + 16 + + + + a#a-cmpr9410-001-p14s1w23 + + a#a-cmpr9410-001-p14s1w21 + + + complex + zajištění + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 18 + v#v-w8846f1 + + + qcomplex + 1 + #Gen + ACT + t + 17 + + + + a#a-cmpr9410-001-p14s1w24 + + complex + propouštění + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 20 + v#v-w4497f1 + + + qcomplex + 1 + #Gen + ACT + t + 19 + + + + a#a-cmpr9410-001-p14s1w26 + + complex + výrobek + PAT + + n.denot + inan + pl + single + + f + 21 + + + t-cmpr9410-001-p13s1w22 + GEN + + + + + + a#a-cmpr9410-001-p14s1w25 + + complex + potravinářský + RSTR + + adj.denot + pos + neg0 + + f + 22 + + + + + + a#a-cmpr9410-001-p14s1w28 + + a#a-cmpr9410-001-p14s1w27 + + + complex + SR + DIR3 + basic + + n.denot + fem + sg + single + + f + 23 + + + t-cmpr9410-001-p14s1w18 + SPEC + + + + + + + + a#a-cmpr9410-001-p14s1w22 + + complex + technický + MANN + + adj.denot + pos + neg0 + + f + 24 + + + + + + + + + + + + + a#a-cmpr9410-001-p14s2 + 0 + + + 1 + time + + t-cmpr9410-001-p14s2w13 + + + + + + + a#a-cmpr9410-001-p14s2w16 + + complex + vyjímat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w7990f1 + + + + a#a-cmpr9410-001-p14s2w3 + + a#a-cmpr9410-001-p14s2w1 + + + complex + opatření + DIR1 + basic + + n.denot.neg + neut + pl + single + neg0 + + c + 1 + + + t-cmpr9410-001-p13s1w10 + SPEC + + + v#v-w3111f1 + + + + a#a-cmpr9410-001-p14s2w2 + + complex + rozhodující + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-cmpr9410-001-p14s2w9 + + a#a-cmpr9410-001-p14s2w6 + a#a-cmpr9410-001-p14s2w7 + + + complex + vstoupit + RSTR + + v + hrt + nil + cpl + it0 + act + potential + + f + 4 + v#v-w7734f2 + + + + a#a-cmpr9410-001-p14s2w5 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 3 + + t-cmpr9410-001-p14s2w3 + + + + + a#a-cmpr9410-001-p14s2w11 + + a#a-cmpr9410-001-p14s2w10 + + + complex + platnost + CPHR + + n.denot.neg + fem + sg + single + neg0 + + f + 6 + v#v-w3469f1 + + + qcomplex + 1 + #QCor + ACT + t + 5 + + t-cmpr9410-001-p14s2w5 + + + + + + + a#a-cmpr9410-001-p14s2w8 + + complex + plný + EXT + basic + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-001-p14s2w15 + + a#a-cmpr9410-001-p14s2w12 + + + complex + duben + TWHEN + after + + n.denot + inan + sg + single + + f + 8 + + + + a#a-cmpr9410-001-p14s2w13 + + complex + 1 + RSTR + + adj.quant.def + ord + + f + 9 + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 10 + + + t-cmpr9410-001-p14s1a0 + SPEC + + + + + qcomplex + 1 + #Gen + PAT + t + 11 + + + + + + + a#a-cmpr9410-001-p15s1 + 0 + + + time + + t-cmpr9410-001-p15s1w4 + + + + institution + + t-cmpr9410-001-p15s1w37 + t-cmpr9410-001-p15s1w38 + t-cmpr9410-001-p15s1w39 + + + + + + + a#a-cmpr9410-001-p15s1w7 + + complex + platit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + + + t-cmpr9410-001-p14s2w16 + discourse + 0 + 0 + spec + + a#a-cmpr9410-001-p14s2w17 + + + + list + 0 + + a#a-cmpr9410-001-p15s1w2 + + + t-cmpr9410-001-p15s1w1 + + + + v#v-w3468f2 + + + + a#a-cmpr9410-001-p15s1w1 + + atom + 1 + PREC + t + 1 + + + + a#a-cmpr9410-001-p15s1w6 + + a#a-cmpr9410-001-p15s1w3 + + + complex + březen + TTILL + + n.denot + inan + sg + single + + c + 2 + + + + a#a-cmpr9410-001-p15s1w4 + + complex + 31 + RSTR + + adj.quant.def + ord + + f + 3 + + + + + + a#a-cmpr9410-001-p15s1w10 + + a#a-cmpr9410-001-p15s1w8 + + + complex + rozsah + LOC + basic + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-001-p15s1w9 + + complex + plný + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-cmpr9410-001-p15s1w11 + + complex + postup + ACT + + n.denot + inan + sg + single + + f + 7 + + + + a#a-cmpr9410-001-p15s1w13 + + a#a-cmpr9410-001-p15s1w12 + + + complex + dohoda + CRIT + + n.denot + fem + sg + single + + f + 9 + + + qcomplex + 1 + #Rcp + ADDR + t + 8 + + t-cmpr9410-001-p15s1w16 + + + + + a#a-cmpr9410-001-p15s1w16 + + coap + a + CONJ + 12 + + + + a#a-cmpr9410-001-p15s1w17 + + complex + ÚNMS + ACT + 1 + + n.denot + inan + nr + single + + t + 11 + + + t-cmpr9410-001-p14s1w16 + SPEC + + + + + + a#a-cmpr9410-001-p15s1w18 + + complex + SR + APP + + n.denot + fem + sg + single + + t + 10 + + + t-cmpr9410-001-p14s1w28 + SPEC + + + + + + + + a#a-cmpr9410-001-p15s1w14 + + complex + ÚNMZ + ACT + 1 + + n.denot + inan + nr + single + + f + 13 + + + + a#a-cmpr9410-001-p15s1w15 + + complex + ČR + APP + + n.denot + fem + sg + single + + f + 14 + + + t-cmpr9410-001-p13s1w14 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p15s1w29 + + complex + získat + RSTR + + v + decl + post + cpl + it0 + act + asserted + + f + 22 + v#v-w9501f1 + + + + a#a-cmpr9410-001-p15s1w25 + + coap + #Bracket + DISJ + 17 + + + + a#a-cmpr9410-001-p15s1w24 + + complex + výrobce + ACT + 1 + + n.denot + anim + sg + single + + c + 15 + + + + a#a-cmpr9410-001-p15s1w23 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + t-cmpr9410-001-p15s1w15 + SPEC + + + + + + + + a#a-cmpr9410-001-p15s1w27 + + complex + dovozce + ACT + 1 + 1 + + n.denot + anim + sg + single + + c + 18 + + + + a#a-cmpr9410-001-p15s1w26 + + complex + slovenský + RSTR + 1 + + adj.denot + pos + neg0 + + f + 19 + + + t-cmpr9410-001-p15s1w18 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p15s1w22 + + a#a-cmpr9410-001-p15s1w20 + + + complex + základ + LOC + basic + + n.denot + inan + sg + single + + t + 21 + + + + a#a-cmpr9410-001-p15s1w21 + + complex + který + APP + + n.pron.indef + inher + inher + relat + inher + + t + 20 + + t-cmpr9410-001-p15s1w13 + + + + + + + a#a-cmpr9410-001-p15s1w35 + + coap + a + CONJ + 27 + + + + a#a-cmpr9410-001-p15s1w32 + + a#a-cmpr9410-001-p15s1w30 + a#a-cmpr9410-001-p15s1w31 + + + complex + schválení + CRIT + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 24 + v#v-w6052f1 + + + qcomplex + 1 + #Gen + PAT + t + 23 + + + + a#a-cmpr9410-001-p15s1w34 + + complex + zkušebna + ACT + + n.denot + fem + sg + single + + f + 25 + + + + a#a-cmpr9410-001-p15s1w33 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 26 + + + t-cmpr9410-001-p15s1w23 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p15s1w36 + + a#a-cmpr9410-001-p15s1w30 + a#a-cmpr9410-001-p15s1w31 + + + complex + rozhodnutí + CRIT + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 28 + v#v-w5636f2 + + + + a#a-cmpr9410-001-p15s1w37 + + complex + Ministerstvo + ACT + + n.denot + neut + sg + single + + f + 29 + + + + a#a-cmpr9410-001-p15s1w38 + + complex + zdravotnictví + APP + + n.denot + neut + sg + single + + f + 30 + + + + a#a-cmpr9410-001-p15s1w39 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 31 + + + t-cmpr9410-001-p15s1w26 + SPEC + + + + + + + + + + + + a#a-cmpr9410-001-p15s1w41 + + a#a-cmpr9410-001-p15s1w40 + + + complex + ÚNMS + LOC + basic + + n.denot + inan + nr + single + + f + 32 + + + t-cmpr9410-001-p15s1w17 + SPEC + + + + + + a#a-cmpr9410-001-p15s1w42 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 33 + + + t-cmpr9410-001-p15s1w39 + SPEC + + + + + + + + a#a-cmpr9410-001-p15s1w43 + + complex + potvrzení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 34 + v#v-w4101f1 + + + + a#a-cmpr9410-001-p15s1w45 + + a#a-cmpr9410-001-p15s1w44 + + + complex + platnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 35 + + + + a#a-cmpr9410-001-p15s1w46 + + complex + rozhodnutí + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 36 + v#v-w5636f2 + + + + a#a-cmpr9410-001-p15s1w47 + + atom + i + RHEM + f + 37 + + + + a#a-cmpr9410-001-p15s1w49 + + a#a-cmpr9410-001-p15s1w48 + + + complex + území + LOC + basic + + n.denot + neut + sg + single + + f + 38 + + + + a#a-cmpr9410-001-p15s1w50 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 39 + + + t-cmpr9410-001-p15s1w42 + SPEC + + + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-001-p16s1 + 0 + + + 1 + time + + t-cmpr9410-001-p16s1w4 + + + + + + + a#a-cmpr9410-001-p16s1w13 + + a#a-cmpr9410-001-p16s1w7 + + + complex + potvrzovat + PRED + enunc + + v + decl + post + proc + it0 + act + asserted + + f + 10 + + + t-cmpr9410-001-p15s1w7 + list + 1 + + a#a-cmpr9410-001-p16s1w2 + + + t-cmpr9410-001-p16s1w1 + + + + v#v-w4103f1 + + + + a#a-cmpr9410-001-p16s1w1 + + atom + 2 + PREC + t + 1 + + + + a#a-cmpr9410-001-p16s1w6 + + a#a-cmpr9410-001-p16s1w3 + + + complex + duben + TSIN + + n.denot + inan + sg + single + + c + 2 + + + t-cmpr9410-001-p14s2w15 + SPEC + + + + + + a#a-cmpr9410-001-p16s1w4 + + complex + 1 + RSTR + + adj.quant.def + ord + + f + 3 + + + + + + a#a-cmpr9410-001-p16s1w8 + + complex + ÚNMS + ACT + + n.denot + inan + sg + single + + t + 5 + + + t-cmpr9410-001-p15s1w41 + SPEC + + + + + + a#a-cmpr9410-001-p16s1w9 + + complex + SR + APP + + n.denot + fem + sg + single + + t + 4 + + + t-cmpr9410-001-p15s1w50 + SPEC + + + + + + + + a#a-cmpr9410-001-p16s1w10 + + complex + rozhodnutí + PAT + + n.denot.neg + neut + pl + single + neg0 + + t + 8 + v#v-w5636f2 + + + + a#a-cmpr9410-001-p16s1w12 + + complex + zkušebna + ACT + + n.denot + fem + sg + single + + t + 7 + + + t-cmpr9410-001-p15s1w34 + SPEC + + + + + + a#a-cmpr9410-001-p16s1w11 + + complex + český + RSTR + + adj.denot + pos + neg0 + + t + 6 + + + t-cmpr9410-001-p15s1w33 + SPEC + + + + + + + + + atom + 1 + #Neg + RHEM + f + 9 + + + + + + + a#a-cmpr9410-001-p16s2 + 0 + + + institution + + t-cmpr9410-001-p16s2w11 + t-cmpr9410-001-p16s2w12 + t-cmpr9410-001-p16s2w13 + t-cmpr9410-001-p16s2w14 + t-cmpr9410-001-p16s2w15 + + + + + + + a#a-cmpr9410-001-p16s2w3 + + complex + přejít + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + v#v-w4827f1 + + + + a#a-cmpr9410-001-p16s2w2 + + complex + funkce + ACT + + n.denot + fem + sg + single + + t + 2 + + + t-cmpr9410-001-p16s1w13 + SPEC + + + + + + a#a-cmpr9410-001-p16s2w1 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + qcomplex + 1 + #Oblfm + DIR1 + nr + t + 3 + + + + a#a-cmpr9410-001-p16s2w8 + + coap + #Bracket + APPS + 8 + + + + a#a-cmpr9410-001-p16s2w7 + + a#a-cmpr9410-001-p16s2w4 + + + complex + zkušebna + DIR3 + basic + 1 + + n.denot + fem + sg + single + + t + 5 + + + t-cmpr9410-001-p16s1w12 + CONTRAST + + + + + + a#a-cmpr9410-001-p16s2w6 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + t-cmpr9410-001-p16s1w9 + SPEC + + + + + + a#a-cmpr9410-001-p16s2w5 + + complex + příslušný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-cmpr9410-001-p16s2w10 + + coap + #Dash + APPS + 1 + 10 + + + + a#a-cmpr9410-001-p16s2w9 + + a#a-cmpr9410-001-p16s2w4 + + + complex + SPPI + DIR3 + basic + 1 + + n.denot + fem + nr + single + + f + 9 + + + + a#a-cmpr9410-001-p16s2w15 + + a#a-cmpr9410-001-p16s2w4 + + + complex + inspekce + DIR3 + basic + 1 + + n.denot + fem + sg + single + + f + 12 + + + + a#a-cmpr9410-001-p16s2w11 + + complex + Slovenský + RSTR + + adj.denot + pos + neg0 + + t + 11 + + + t-cmpr9410-001-p16s2w6 + SPEC + + + + + + a#a-cmpr9410-001-p16s2w13 + + coap + a + CONJ + 14 + + + + a#a-cmpr9410-001-p16s2w12 + + complex + potravinářský + RSTR + 1 + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-cmpr9410-001-p16s2w14 + + complex + zemědělský + RSTR + 1 + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + + a#a-cmpr9410-001-p16s2w20 + + a#a-cmpr9410-001-p16s2w19 + + + complex + vydávat + RSTR + + v + decl + post + proc + it0 + act + asserted + + f + 17 + v#v-w7846f1 + + + + a#a-cmpr9410-001-p16s2w18 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 16 + + t-cmpr9410-001-p16s2w8 + + + + + a#a-cmpr9410-001-p16s2w24 + + a#a-cmpr9410-001-p16s2w22 + a#a-cmpr9410-001-p16s2w21 + + + complex + podklad + CRIT + + n.denot + inan + pl + single + + f + 18 + + + + a#a-cmpr9410-001-p16s2w23 + + complex + dodaný + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + a#a-cmpr9410-001-p16s2w26 + + complex + certifikát + PAT + + n.denot + inan + pl + single + + f + 20 + + + + a#a-cmpr9410-001-p16s2w25 + + complex + příslušný + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + + + + + + a#a-cmpr9410-001-p17s1 + 0 + + + + a#a-cmpr9410-001-p17s1w11 + + coap + a + CONJ + 9 + + + t-cmpr9410-001-p16s1w13 + list + 0 + + a#a-cmpr9410-001-p17s1w2 + + + t-cmpr9410-001-p17s1w1 + + + + + + + a#a-cmpr9410-001-p17s1w10 + + complex + platit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w3468f2 + + + + a#a-cmpr9410-001-p17s1w1 + + atom + 3 + PREC + t + 1 + + + + a#a-cmpr9410-001-p17s1w5 + + complex + rozhodnutí + ACT + + n.denot.neg + neut + pl + single + neg0 + + c + 2 + v#v-w5636f2 + + + + a#a-cmpr9410-001-p17s1w4 + + complex + vydaný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-cmpr9410-001-p17s1w3 + + complex + dosud + TTILL + + adv.denot.ngrad.nneg + + t + 3 + + + + + + a#a-cmpr9410-001-p17s1w7 + + a#a-cmpr9410-001-p17s1w6 + + + complex + doba + TSIN + + n.denot + fem + sg + single + + f + 5 + + + + a#a-cmpr9410-001-p17s1w8 + + complex + trvání + APP + + n.denot.neg + neut + sg + single + neg0 + + f + 6 + v#v-w6922f1 + + + + a#a-cmpr9410-001-p17s1w9 + + complex + federace + ACT + + n.denot + fem + sg + single + + f + 7 + + + + + + + + + + + + a#a-cmpr9410-001-p17s1w14 + + complex + lze + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + + + t-cmpr9410-001-p17s1w10 + discourse + 0 + 0 + conj + + t-cmpr9410-001-p17s1w11 + + + + v#v-w1757f1 + + + qcomplex + 1 + #Gen + BEN + nr + t + 10 + + + + a#a-cmpr9410-001-p17s1w21 + + coap + avšak + ADVS + 19 + + + + a#a-cmpr9410-001-p17s1w13 + + complex + zboží + PAT + + n.denot + neut + sg + single + + t + 12 + + + + a#a-cmpr9410-001-p17s1w12 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 11 + + + + + qcomplex + 1 + #Cor + ACT + t + 14 + + t-cmpr9410-001-p17s1a0 + + + + + a#a-cmpr9410-001-p17s1w16 + + a#a-cmpr9410-001-p17s1w15 + + + complex + SR + DIR3 + basic + + n.denot + fem + sg + single + + t + 15 + + + t-cmpr9410-001-p16s2w11 + SPEC + + + + + + a#a-cmpr9410-001-p17s1w17 + + complex + dodávat + ACT + 1 + + v + decl + nil + proc + it0 + act + nil + + f + 16 + v#v-w536f2 + + + + a#a-cmpr9410-001-p17s1w18 + + atom + i + RHEM + f + 17 + + + + a#a-cmpr9410-001-p17s1w19 + + complex + nadále + THL + + adv.denot.ngrad.nneg + + f + 18 + + + + + + a#a-cmpr9410-001-p17s1w17 + + complex + 1 + dodávat + ACT + 1 + + v + decl + nil + proc + it0 + act + nil + + t + 20 + + + t-cmpr9410-001-p17s1w17 + discourse + 0 + 0 + restr + + t-cmpr9410-001-p17s1w21 + + + + v#v-w536f2 + + + + a#a-cmpr9410-001-p17s1w23 + + a#a-cmpr9410-001-p17s1w22 + + + complex + vydání + TWHEN + after + + n.denot.neg + neut + sg + single + neg0 + + f + 22 + v#v-w7839f2 + + + qcomplex + 1 + #Gen + ACT + t + 21 + + + + a#a-cmpr9410-001-p17s1w25 + + complex + certifikát + PAT + + n.denot + inan + sg + single + + t + 24 + + + + a#a-cmpr9410-001-p17s1w24 + + complex + příslušný + RSTR + + adj.denot + pos + neg0 + + t + 23 + + + + a#a-cmpr9410-001-p17s1w26 + + complex + SPPI + APP + + n.denot + fem + nr + single + + f + 25 + + + t-cmpr9410-001-p16s2w18 + SPEC + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-001-p18s1 + 0 + + + + a#a-cmpr9410-001-p18s1w17 + + a#a-cmpr9410-001-p18s1w6 + + + complex + pověřit + PRED + enunc + + v + decl + sim + cpl + it0 + pas + asserted + + f + 15 + + + t-cmpr9410-001-p17s1w11 + list + 2 + + a#a-cmpr9410-001-p18s1w2 + + + t-cmpr9410-001-p18s1w1 + + + + v#v-w4148f1 + + + + a#a-cmpr9410-001-p18s1w1 + + atom + 4 + PREC + t + 1 + + + + a#a-cmpr9410-001-p18s1w3 + + complex + usnesení + ACT + + n.denot.neg + neut + sg + single + neg0 + + c + 4 + v#v-w7313f1 + + + + a#a-cmpr9410-001-p18s1w4 + + complex + vláda + ACT + + n.denot + fem + sg + single + + t + 3 + + + t-cmpr9410-001-p13s1w12 + SPEC + + + + + + a#a-cmpr9410-001-p18s1w5 + + complex + SR + APP + + n.denot + fem + sg + single + + t + 2 + + + t-cmpr9410-001-p17s1w16 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p18s1w7 + + complex + koordinace + PAT + + n.denot + fem + sg + single + + c + 5 + + + + a#a-cmpr9410-001-p18s1w9 + + complex + akce + PAT + + n.denot + fem + pl + single + + f + 6 + + + + a#a-cmpr9410-001-p18s1w10 + + complex + související + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-001-p18s1w12 + + a#a-cmpr9410-001-p18s1w11 + + + complex + zajištění + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w8846f1 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-cmpr9410-001-p18s1w13 + + complex + certifikace + PAT + + n.denot + fem + sg + single + + t + 10 + + + t-cmpr9410-001-p17s1w23 + GEN + + + + + + a#a-cmpr9410-001-p18s1w16 + + complex + výrobek + PAT + + n.denot + inan + pl + single + + f + 12 + + + t-cmpr9410-001-p14s1w26 + GEN + + + + + + a#a-cmpr9410-001-p18s1w14 + + complex + dovážený + RSTR + + adj.denot + pos + neg0 + + t + 11 + + + + a#a-cmpr9410-001-p18s1w15 + + complex + potravinářský + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + + + + + a#a-cmpr9410-001-p18s1w8 + + complex + který + RSTR + + adj.pron.indef + total1 + + f + 14 + + + + + + + + a#a-cmpr9410-001-p18s1w18 + + complex + ÚNMS + ADDR + + n.denot + inan + sg + single + + f + 16 + + + t-cmpr9410-001-p16s1w8 + SPEC + + + + + + a#a-cmpr9410-001-p18s1w19 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 17 + + + t-cmpr9410-001-p18s1w5 + SPEC + + + + + + + + + + + a#a-cmpr9410-001-p18s2 + 0 + + + time + + t-cmpr9410-001-p18s2w9 + t-cmpr9410-001-p18s2w11 + t-cmpr9410-001-p18s2w12 + + + + + + + a#a-cmpr9410-001-p18s2w1 + + a#a-cmpr9410-001-p18s2w2 + + + complex + jednat_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 1 + v#v-w1324f1 + + + + a#a-cmpr9410-001-p18s2w4 + + a#a-cmpr9410-001-p18s2w3 + + + complex + usnesení + ACT + + n.denot.neg + neut + sg + single + neg0 + + t + 2 + + + t-cmpr9410-001-p18s1w3 + SPEC + + + v#v-w7313f1 + + + + a#a-cmpr9410-001-p18s2w5 + + complex + číslo + RSTR + + n.denot + neut + sg + single + + f + 3 + + + + a#a-cmpr9410-001-p18s2w6 + + complex + 64 + RSTR + + n.quant.def + nr + nr + basic + + f + 4 + + + + + + a#a-cmpr9410-001-p18s2w8 + + a#a-cmpr9410-001-p18s2w7 + + + complex + den + TFRWH + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-001-p18s2w11 + + complex + únor + RSTR + + n.denot + inan + sg + single + + f + 6 + + + + a#a-cmpr9410-001-p18s2w12 + + complex + 1994 + APP + + n.quant.def + nr + nr + basic + + f + 7 + + + + a#a-cmpr9410-001-p18s2w9 + + complex + 1 + RSTR + + adj.quant.def + ord + + f + 8 + + + + + + + + + + + + + a#a-cmpr9410-001-p18s3 + 0 + + + + a#a-cmpr9410-001-p18s3w4 + + complex + lze + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w1757f1 + + + + a#a-cmpr9410-001-p18s3w3 + + a#a-cmpr9410-001-p18s3w1 + + + complex + úřad + LOC + basic + + n.denot + inan + sg + single + + t + 2 + + + t-cmpr9410-001-p18s1w18 + SPEC + + + + + + a#a-cmpr9410-001-p18s3w2 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + qcomplex + 1 + #Gen + BEN + nr + t + 3 + + + + a#a-cmpr9410-001-p18s3w5 + + complex + získat + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 6 + v#v-w9501f2 + + + qcomplex + 1 + #Cor + ACT + t + 5 + + t-cmpr9410-001-p18s3a0 + + + + + a#a-cmpr9410-001-p18s3w6 + + atom + i + RHEM + f + 7 + + + + a#a-cmpr9410-001-p18s3w8 + + complex + informace + PAT + + n.denot + fem + pl + single + + f + 8 + + + + a#a-cmpr9410-001-p18s3w7 + + complex + potřebný + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + a#a-cmpr9410-001-p19s1 + 0 + + + + a#a-cmpr9410-001-p19s1w7 + + a#a-cmpr9410-001-p19s1w6 + + + complex + vyžadovat + PRED + enunc + + v + decl + post + proc + it0 + act + asserted + + f + 5 + + + t-cmpr9410-001-p18s1w17 + list + 1 + + a#a-cmpr9410-001-p19s1w2 + + + t-cmpr9410-001-p19s1w1 + + + + v#v-w8628f1 + + + + a#a-cmpr9410-001-p19s1w1 + + atom + 5 + PREC + t + 1 + + + + a#a-cmpr9410-001-p19s1w5 + + complex + správa + ACT + + n.denot + fem + sg + single + + c + 3 + + + + a#a-cmpr9410-001-p19s1w3 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + t-cmpr9410-001-p18s1w19 + SPEC + + + + + + a#a-cmpr9410-001-p19s1w4 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-cmpr9410-001-p19s1w11 + + a#a-cmpr9410-001-p19s1w8 + + + complex + dodávka + LOC + near + + n.denot + fem + sg + single + + f + 6 + + + + a#a-cmpr9410-001-p19s1w10 + + complex + jednotlivý + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-001-p19s1w9 + + complex + který + RSTR + + adj.pron.indef + total2 + + f + 8 + + + + + + a#a-cmpr9410-001-p19s1w14 + + coap + či + CONJ + 11 + + + + a#a-cmpr9410-001-p19s1w13 + + complex + rozhodnutí + PAT + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w5636f2 + + + + a#a-cmpr9410-001-p19s1w12 + + complex + originální + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-cmpr9410-001-p19s1w15 + + complex + certifikát + PAT + 1 + + n.denot + inan + sg + single + + f + 12 + + + + + + + + + a#a-cmpr9410-001-p19s2 + 0 + + + + a#a-cmpr9410-001-p19s2w4 + + a#a-cmpr9410-001-p19s2w3 + + + complex + vyžádat_si + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 3 + v#v-w8625f1 + + + + a#a-cmpr9410-001-p19s2w2 + + complex + postup + ACT + + n.denot + inan + sg + single + + t + 2 + + + t-cmpr9410-001-p19s1w7 + SPEC + + + + + + a#a-cmpr9410-001-p19s2w1 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + + a#a-cmpr9410-001-p19s2w6 + + a#a-cmpr9410-001-p19s2w5 + + + complex + praxe + LOC + basic + + n.denot + fem + sg + single + + f + 4 + + + + a#a-cmpr9410-001-p19s2w7 + + complex + zhotovování + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 6 + v#v-w9480f1 + + + qcomplex + 1 + #Gen + ACT + t + 5 + + + + a#a-cmpr9410-001-p19s2w9 + + complex + kopie + PAT + + n.denot + fem + pl + single + + f + 7 + + + + a#a-cmpr9410-001-p19s2w8 + + complex + ověřený + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + + a#a-cmpr9410-001-p20s1 + 0 + + + + a#a-cmpr9410-001-p20s1w7 + + complex + vzniknout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 9 + + + t-cmpr9410-001-p19s1w7 + list + 0 + + a#a-cmpr9410-001-p20s1w2 + + + t-cmpr9410-001-p20s1w1 + + + + v#v-w8671f2 + + + + a#a-cmpr9410-001-p20s1w1 + + atom + 6 + PREC + t + 1 + + + + a#a-cmpr9410-001-p20s1w3 + + complex + povinnost + CPHR + + n.denot.neg + fem + sg + single + neg0 + + c + 7 + v#v-w4159f1 + + + + a#a-cmpr9410-001-p20s1w4 + + complex + certifikace + PAT + + n.denot + fem + sg + single + + t + 5 + + + t-cmpr9410-001-p18s1w13 + GEN + + + + + + a#a-cmpr9410-001-p20s1w6 + + complex + výrobek + PAT + + n.denot + inan + pl + single + + t + 3 + + + t-cmpr9410-001-p18s1w16 + GEN + + + + + + a#a-cmpr9410-001-p20s1w5 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 2 + + + + + qcomplex + 1 + #Cor + ACT + t + 4 + + t-cmpr9410-001-p20s1a2 + + + + + + qcomplex + 1 + #QCor + ACT + t + 6 + + t-cmpr9410-001-p20s1a2 + + + + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-cmpr9410-001-p20s1w10 + + a#a-cmpr9410-001-p20s1w8 + a#a-cmpr9410-001-p20s1w9 + + + complex + novelizace + CRIT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-cmpr9410-001-p20s1w11 + + complex + paragraf + PAT + + n.denot + inan + sg + single + + f + 11 + + + + a#a-cmpr9410-001-p20s1w14 + + complex + zákon + APP + + n.denot + inan + sg + single + + f + 12 + + + + a#a-cmpr9410-001-p20s1w13 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-cmpr9410-001-p20s1w16 + + coap + #Slash + CONJ + 15 + + + + a#a-cmpr9410-001-p20s1w18 + + complex + sbírka + APP + + n.denot + fem + nr + single + + t + 14 + + + + a#a-cmpr9410-001-p20s1w15 + + complex + 618 + RSTR + 1 + + n.quant.def + nr + nr + basic + + f + 16 + + + + a#a-cmpr9410-001-p20s1w17 + + complex + 1992 + RSTR + 1 + + n.quant.def + nr + nr + basic + + f + 17 + + + + + + + + a#a-cmpr9410-001-p20s1w12 + + complex + 47 + RSTR + + n.quant.def + nr + nr + basic + + f + 18 + + + + a#a-cmpr9410-001-p20s1w21 + + complex + novelizovaný + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + coap + 1 + #Separ + CONJ + 22 + + + + a#a-cmpr9410-001-p20s1w23 + + a#a-cmpr9410-001-p20s1w22 + + + complex + zákon + LOC + basic + 1 + + n.denot + inan + sg + single + + f + 20 + + + + a#a-cmpr9410-001-p20s1w24 + + complex + 325 + RSTR + + n.quant.def + nr + nr + basic + + f + 21 + + + + + + a#a-cmpr9410-001-p20s1w25 + + complex + článek + LOC + nr + 1 + + n.denot + inan + sg + single + + f + 23 + + + + a#a-cmpr9410-001-p20s1w26 + + complex + 8 + RSTR + + adj.quant.def + basic + + f + 24 + + + + a#a-cmpr9410-001-p20s1w28 + + a#a-cmpr9410-001-p20s1w27 + + + complex + znění + RSTR + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 25 + v#v-w9699f1 + + + + a#a-cmpr9410-001-p20s1w29 + + complex + zákon + APP + + n.denot + inan + sg + single + + t + 26 + + + + a#a-cmpr9410-001-p20s1w30 + + complex + číslo + RSTR + + n.denot + neut + sg + single + + f + 27 + + + + a#a-cmpr9410-001-p20s1w34 + + complex + sbírka + APP + + n.denot + fem + nr + single + + t + 28 + + + + a#a-cmpr9410-001-p20s1w32 + + coap + #Slash + CONJ + 29 + + + + a#a-cmpr9410-001-p20s1w33 + + complex + 1993 + RSTR + 1 + + n.quant.def + nr + nr + basic + + f + 30 + + + + a#a-cmpr9410-001-p20s1w31 + + complex + 165 + RSTR + 1 + + n.quant.def + nr + nr + basic + + f + 31 + + + + + + + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-001-p21s1 + 0 + + + time + + t-cmpr9410-001-p21s1w8 + t-cmpr9410-001-p21s1w10 + + + + + + + a#a-cmpr9410-001-p21s1w6 + + complex + vznikat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + + + t-cmpr9410-001-p20s1w7 + list + 0 + + a#a-cmpr9410-001-p21s1w2 + + + t-cmpr9410-001-p21s1w1 + + + + v#v-w8670f2 + + + + a#a-cmpr9410-001-p21s1w1 + + atom + 7 + PREC + t + 1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-cmpr9410-001-p21s1w5 + + a#a-cmpr9410-001-p21s1w3 + + + complex + případ + LOC + basic + + n.denot + inan + pl + single + + t + 3 + + + + a#a-cmpr9410-001-p21s1w4 + + complex + který + RSTR + + adj.pron.indef + total1 + + f + 4 + + + + + + a#a-cmpr9410-001-p21s1w10 + + a#a-cmpr9410-001-p21s1w7 + + + complex + duben + TSIN + + n.denot + inan + sg + single + + t + 6 + + + t-cmpr9410-001-p16s1w6 + SPEC + + + + + + a#a-cmpr9410-001-p21s1w8 + + complex + 1 + RSTR + + adj.quant.def + ord + + t + 5 + + + + + + a#a-cmpr9410-001-p21s1w11 + + complex + povinnost + CPHR + + n.denot.neg + fem + sg + single + neg0 + + f + 9 + v#v-w4159f1 + + + qcomplex + 1 + #QCor + ACT + t + 8 + + t-cmpr9410-001-p21s1a1 + + + + + a#a-cmpr9410-001-p21s1w21 + + a#a-cmpr9410-001-p21s1w19 + a#a-cmpr9410-001-p21s1w13 + + + complex + vybavit + PAT + + v + decl + nil + cpl + it0 + res1 + potential + + f + 15 + v#v-w7768f1 + + + + a#a-cmpr9410-001-p21s1w16 + + a#a-cmpr9410-001-p21s1w15 + + + complex + přechod + TWHEN + basic + + n.denot + inan + sg + single + + c + 10 + + + + a#a-cmpr9410-001-p21s1w18 + + complex + hranice + PAT + + n.denot + fem + pl + single + + f + 12 + + + + a#a-cmpr9410-001-p21s1w17 + + complex + slovenský + RSTR + + adj.denot + pos + neg0 + + t + 11 + + + t-cmpr9410-001-p19s1w3 + SPEC + + + + + + + + + + a#a-cmpr9410-001-p21s1w20 + + complex + dodávka + PAT + + n.denot + fem + sg + single + + t + 13 + + + qcomplex + 1 + #Gen + ACT + t + 14 + + + + a#a-cmpr9410-001-p21s1w23 + + coap + nebo + DISJ + 17 + + + + a#a-cmpr9410-001-p21s1w22 + + complex + originál + EFF + 1 + + n.denot + inan + sg + single + + f + 16 + + + + a#a-cmpr9410-001-p21s1w25 + + complex + kopie + EFF + 1 + + n.denot + fem + sg + single + + f + 18 + + + + a#a-cmpr9410-001-p21s1w26 + + complex + certifikát + APP + + n.denot + inan + sg + single + + f + 19 + + + + a#a-cmpr9410-001-p21s1w27 + + complex + SPPI + APP + + n.denot + fem + nr + single + + f + 20 + + + t-cmpr9410-001-p17s1w26 + SPEC + + + + + + + + a#a-cmpr9410-001-p21s1w24 + + complex + ověřený + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + + + + + + + + a#a-cmpr9410-001-p22s1 + 0 + + + + a#a-cmpr9410-001-p22s1w11 + + a#a-cmpr9410-001-p22s1w9 + + + complex + uplatňovat + PRED + enunc + + v + decl + post + proc + it0 + act + asserted + + f + 10 + + + t-cmpr9410-001-p21s1w6 + list + 0 + + a#a-cmpr9410-001-p22s1w2 + + + t-cmpr9410-001-p22s1w1 + + + + v#v-w7216f1 + + + + a#a-cmpr9410-001-p22s1w1 + + atom + 8 + PREC + t + 1 + + + + a#a-cmpr9410-001-p22s1w4 + + complex + požadavek + PAT + + n.denot + inan + pl + single + + c + 2 + + + t-cmpr9410-001-p21s1w21 + SPEC + + + + + + a#a-cmpr9410-001-p22s1w3 + + complex + stejný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-cmpr9410-001-p22s1w11 + + a#a-cmpr9410-001-p22s1w9 + a#a-cmpr9410-001-p22s1w5 + + + complex + 1 + uplatňovat + CPR + basic + + v + decl + post + proc + it0 + act + asserted + + t + 5 + v#v-w7216f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 3 + + + t-cmpr9410-001-p22s1w10 + SPEC + + + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 4 + + + t-cmpr9410-001-p22s1w4 + SPEC + + + + + + a#a-cmpr9410-001-p22s1w8 + + a#a-cmpr9410-001-p22s1w6 + + + complex + výrobek + LOC + nr + + n.denot + inan + pl + single + + f + 6 + + + + a#a-cmpr9410-001-p22s1w7 + + complex + dovážený + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + + + + + a#a-cmpr9410-001-p22s1w10 + + complex + SPPI + ACT + + n.denot + fem + sg + single + + t + 9 + + + t-cmpr9410-001-p21s1w27 + SPEC + + + + + + a#a-cmpr9410-001-p22s1w14 + + a#a-cmpr9410-001-p22s1w13 + + + complex + výrobek + LOC + near + + n.denot + inan + pl + single + + t + 11 + + + + a#a-cmpr9410-001-p22s1w12 + + atom + i + RHEM + f + 12 + + + + a#a-cmpr9410-001-p22s1w15 + + complex + tuzemský + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + + a#a-cmpr9410-001-p23s1 + 0 + + + + a#a-cmpr9410-001-p23s1w1 + + complex + text + DENOM + enunc + + n.denot + inan + sg + single + + f + 1 + metatext + + + + a#a-cmpr9410-001-p23s1w3 + + a#a-cmpr9410-001-p23s1w2 + + + complex + foto + REG + + n.denot + neut + nr + single + + f + 2 + + + + + + + a#a-cmpr9410-001-p24s1 + 0 + + + qcomplex + 1 + #EmpVerb + PRED + inter + t + 1 + + + + + a#a-cmpr9410-001-p24s1w1 + a#a-cmpr9410-001-p24s1w2 + + + qcomplex + 1 + #EmpVerb + ACT + t + 2 + + + + a#a-cmpr9410-001-p24s1w4 + + complex + cesta + ACT + + n.denot + fem + sg + single + + f + 4 + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-cmpr9410-001-p24s1w6 + + complex + řešit + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 7 + v#v-w5870f1 + + + + a#a-cmpr9410-001-p24s1w5 + + complex + jak + MANN + + adv.pron.indef + inter + + t + 5 + + + qcomplex + 1 + #Cor + ACT + t + 6 + + t-cmpr9410-001-p24s1a1 + + + + + a#a-cmpr9410-001-p24s1w7 + + complex + problém + PAT + + n.denot + inan + pl + single + + f + 8 + + + + a#a-cmpr9410-001-p24s1w9 + + complex + unie + APP + + n.denot + fem + sg + single + + f + 9 + + + + a#a-cmpr9410-001-p24s1w8 + + complex + celní + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + a#a-cmpr9410-001-p24s1w3 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + + + + a#a-cmpr9410-001-p24s2 + 0 + + + + a#a-cmpr9410-001-p24s2w4 + + coap + #Comma + CONJ + 4 + + + qcomplex + 1 + #EmpVerb + PRED + enunc + 1 + t + 2 + + + + a#a-cmpr9410-001-p24s2w1 + + atom + což + ATT + t + 1 + + + + a#a-cmpr9410-001-p24s2w3 + + a#a-cmpr9410-001-p24s2w2 + + + complex + ten + PAT + + adj.pron.def.demon + + f + 3 + + + + + + a#a-cmpr9410-001-p24s2w5 + + a#a-cmpr9410-001-p24s2w8 + + + complex + zkusit + PRED + enunc + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 7 + + + t-cmpr9410-001-p24s3w3 + discourse + 0 + 0 + conc + + t-cmpr9410-001-p24s3w1 + t-cmpr9410-001-p24s3w4 + + + + v#v-w9560f1 + + + + a#a-cmpr9410-001-p24s2w7 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 5 + segm + + + qcomplex + 1 + #Gen + ACT + t + 6 + + + + + + + + + a#a-cmpr9410-001-p24s3 + 0 + + + + a#a-cmpr9410-001-p24s3w3 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-cmpr9410-001-p24s3w1 + + atom + ale + PREC + t + 1 + + + + a#a-cmpr9410-001-p24s3w4 + + atom + přesto + PREC + t + 2 + + + + a#a-cmpr9410-001-p24s3w2 + + complex + šance + ACT + + n.denot + fem + sg + single + + c + 3 + + + + a#a-cmpr9410-001-p24s3w5 + + complex + minimální + PAT + + adj.denot + pos + neg0 + + f + 5 + + + + + + + diff --git a/demo/pdt_train/cmpr9410_001.txt b/demo/pdt_train/cmpr9410_001.txt new file mode 100644 index 00000000..57533d9e --- /dev/null +++ b/demo/pdt_train/cmpr9410_001.txt @@ -0,0 +1,41 @@ +Celní unie v ohrožení + +Nová striktní omezení vlády SR proti česklým exportérům + +Z téměř tří desítek smluv upravujících vztahy mezi oběma subjekty celního soustátí jsou okamžitě vypověditelné všechny... Až na jednu jedinou, tu hlavní, která proklamativně zakotvuje existenci Česko - Slovenské celní unie, a která má výpovědní lhůtu jeden rok. V praxi to znamená, že i kdyby hnedka zítra řekla ČR, že smlouva je pasé, přesto by se teprve v březnu příštího roku mohla legislativně zbavit svých závazků vůči partnerovi z bývalé ČSFR. + +Kazimír Jánoška + +Na pozadí vývoje v posledních dnech a týdnech se však zdá, že litera výše uvedené mezinárodní smlouvy mezi ČR a SR bude mít co nevidět pouze sílu psaného slova a ničeho jiného. Celní unie bude sice existovat na papíře ještě dalších dvanáct měsíců (a třeba i déle), ale v praxi dostanou vzájemné vztahy punc tvrdosti mezinárodního obchodu. + +Poroste administrativa + +Jistotu v tomto směru dávají nejnovější kroky vlády SR, která se rozhodla zavést již před časem avizovanou desetiprocentní dovozní přirážku na zboží zahraniční provinencie. Byť má na tento krok určité právo (jako člen GATT), v daném okamžiku však vyznívá jako tvrdé politické rozhodnutí vlády, která se snaží velice rezolutními administrativními kroky zredukovat mnohamilionové pasívum v obchodní výměně s ČR. + +Podle regulí GATT lze toto opatření přijmout maximálně na období šesti měsíců a pouze u vybraných položek. Tato skutečnost však nic nemění na faktu, že nadcházející týdny a měsíce budou znamenat neúměrně zvýšené nároky na administrativu podnikatelů při rozvíjení jejich obchodních aktivit se slovenskými partnery. + +Pravidla pro příští týdny + +Již několik dnů je všeobecně známo, že ochranářská opatření slovenské vlády proti českým exportérům se dotýkají zejména oblasti obchodu s potravinami a zemědělskými produkty. + +Našemu listu se podařilo získat od představitelů slovenského Úřadu pro normalizaci, metrologii a zkušebnictví (ÚNMS SR) informaci o technickém zajištění propouštění potravinářských výrobků do SR. Z rozhodujících opatření, která by měla plně vstoupit v platnost po 1. dubnu vyjímáme: + +1) Do 31. března platí v plném rozsahu postup podle dohody ÚNMZ ČR a ÚNMS SR, na jejímž základě český výrobce (slovenský dovozce) získá na základě schválení české zkušebny a rozhodnutí Ministerstva zdravotnictví SR na ÚNMS SR potvrzení o platnosti rozhodnutí i na území SR. + +2) Od 1. dubna nebude ÚNMS SR rozhodnutí české zkušebny potvrzovat. Tato funkce přejde na příslušnou slovenskou zkušebnu (SPPI - Slovenskou potravinářskou a zemědělskou inspekci), která bude vydávat na základě dodaných podkladů příslušné certifikáty. + +3) Dosud vydaná rozhodnutí z doby trvání federace platí a toto zboží lze do SR dodávat i nadále, avšak po vydání příslušného certifikátu SPPI. + +4) Usnesením vlády SR je koordinací všech akcí souvisejících se zajištěním certifikace dovážených potravinářských výrobků pověřen ÚNMS SR. Jedná se o usnesení číslo 64 ze dne 1. února 1994. Na tomto úřadě lze získat i potřebné informace. + +5) Slovenská celní správa bude vyžadovat u každé jednotlivé dodávky originální rozhodnutí či certifikátu. Tento postup si vyžádá v praxi zhotovování ověřených kopií. + +6) Povinnost certifikace těchto výrobků vznikla na základě novelizace paragrafu 47 celního zákona 618/1992 SB., novelizovaného v zákoně 325 článek 8 ve znění zákona číslo 165/1993 Sb. + +7) Ve všech případech vzniká od 1. dubna povinnost, aby při přechodu slovenských hranic byla dodávka vybavena originálem nebo ověřenou kopií certifikátu SPPI. + +8) Stejné požadavky jako na dovážené výrobky bude SPPI uplatňovat i u výrobků tuzemských. + +Text k foto + +ŽE BY NOVÁ CESTA JAK ŘEŠIT PROBLÉMY CELNÍ UNIE? Což o to, zkusit se to může. Ale šance je přesto minimální. \ No newline at end of file diff --git a/demo/pdt_train/cmpr9410_001.w b/demo/pdt_train/cmpr9410_001.w new file mode 100644 index 00000000..7c18b636 --- /dev/null +++ b/demo/pdt_train/cmpr9410_001.w @@ -0,0 +1,2097 @@ + + + + + + + cs + csts + + + + +<mod>s +<txtype>inf +<genre>mix +<med>j +<temp>1994 +<authname>y +<opus>cmpr9410 +<id>001 + + + + 2 + + Celní + + + unie + + + v + + + ohrožení + + + + 3 + + Nová + + + striktní + + + omezení + + + vlády + + + SR + + + proti + + + česklým + + + exportérům + + + + 4 + + Z + + + téměř + + + tří + + + desítek + + + smluv + + + upravujících + + + vztahy + + + mezi + + + oběma + + + subjekty + + + celního + + + soustátí + + + jsou + + + okamžitě + + + vypověditelné + + + všechny + 1 + + + . + 1 + + + . + 1 + + + . + + + + + + na + + + jednu + + + jedinou + 1 + + + , + + + tu + + + hlavní + 1 + + + , + + + která + + + proklamativně + + + zakotvuje + + + existenci + + + Česko + + + - + + + Slovenské + + + celní + + + unie + 1 + + + , + + + a + + + která + + + + + + výpovědní + + + lhůtu + + + jeden + + + rok + 1 + + + . + + + V + + + praxi + + + to + + + znamená + 1 + + + , + + + že + + + i + + + kdyby + + + hnedka + + + zítra + + + řekla + + + ČR + 1 + + + , + + + že + + + smlouva + + + je + + + pasé + 1 + + + , + + + přesto + + + by + + + se + + + teprve + + + v + + + březnu + + + příštího + + + roku + + + mohla + + + legislativně + + + zbavit + + + svých + + + závazků + + + vůči + + + partnerovi + + + z + + + bývalé + + + ČSFR + 1 + + + . + + + + 6 + + Kazimír + + + Jánoška + + + + 8 + + Na + + + pozadí + + + vývoje + + + v + + + posledních + + + dnech + + + a + + + týdnech + + + se + + + však + + + zdá + 1 + + + , + + + že + + + litera + + + výše + + + uvedené + + + mezinárodní + + + smlouvy + + + mezi + + + ČR + + + a + + + SR + + + bude + + + mít + + + co + + + nevidět + + + pouze + + + sílu + + + psaného + + + slova + + + a + + + ničeho + + + jiného + 1 + + + . + + + Celní + + + unie + + + bude + + + sice + + + existovat + + + na + + + papíře + + + ještě + + + dalších + + + dvanáct + + + měsíců + + + ( + 1 + + + a + + + třeba + + + i + + + déle + 1 + + + ) + 1 + + + , + + + ale + + + v + + + praxi + + + dostanou + + + vzájemné + + + vztahy + + + punc + + + tvrdosti + + + mezinárodního + + + obchodu + 1 + + + . + + + + 9 + + Poroste + + + administrativa + + + + 10 + + Jistotu + + + v + + + tomto + + + směru + + + dávají + + + nejnovější + + + kroky + + + vlády + + + SR + 1 + + + , + + + která + + + se + + + rozhodla + + + zavést + + + již + + + před + + + časem + + + avizovanou + + + desetiprocentní + + + dovozní + + + přirážku + + + na + + + zboží + + + zahraniční + + + provinencie + 1 + + + . + + + Byť + + + + + + na + + + tento + + + krok + + + určité + + + právo + + + ( + 1 + + + jako + + + člen + + + GATT + 1 + + + ) + 1 + + + , + + + v + + + daném + + + okamžiku + + + však + + + vyznívá + + + jako + + + tvrdé + + + politické + + + rozhodnutí + + + vlády + 1 + + + , + + + která + + + se + + + snaží + + + velice + + + rezolutními + + + administrativními + + + kroky + + + zredukovat + + + mnohamilionové + + + pasívum + + + v + + + obchodní + + + výměně + + + s + + + ČR + 1 + + + . + + + + 11 + + Podle + + + regulí + + + GATT + + + lze + + + toto + + + opatření + + + přijmout + + + maximálně + + + na + + + období + + + šesti + + + měsíců + + + a + + + pouze + + + u + + + vybraných + + + položek + 1 + + + . + + + Tato + + + skutečnost + + + však + + + nic + + + nemění + + + na + + + faktu + 1 + + + , + + + že + + + nadcházející + + + týdny + + + a + + + měsíce + + + budou + + + znamenat + + + neúměrně + + + zvýšené + + + nároky + + + na + + + administrativu + + + podnikatelů + + + při + + + rozvíjení + + + jejich + + + obchodních + + + aktivit + + + se + + + slovenskými + + + partnery + 1 + + + . + + + + 12 + + Pravidla + + + pro + + + příští + + + týdny + + + + 13 + + Již + + + několik + + + dnů + + + je + + + všeobecně + + + známo + 1 + + + , + + + že + + + ochranářská + + + opatření + + + slovenské + + + vlády + + + proti + + + českým + + + exportérům + + + se + + + dotýkají + + + zejména + + + oblasti + + + obchodu + + + s + + + potravinami + + + a + + + zemědělskými + + + produkty + 1 + + + . + + + + 14 + + Našemu + + + listu + + + se + + + podařilo + + + získat + + + od + + + představitelů + + + slovenského + + + Úřadu + + + pro + + + normalizaci + 1 + + + , + + + metrologii + + + a + + + zkušebnictví + + + ( + 1 + + + ÚNMS + + + SR + 1 + + + ) + + + informaci + + + o + + + technickém + + + zajištění + + + propouštění + + + potravinářských + + + výrobků + + + do + + + SR + 1 + + + . + + + Z + + + rozhodujících + + + opatření + 1 + + + , + + + která + + + by + + + měla + + + plně + + + vstoupit + + + v + + + platnost + + + po + + + 1 + 1 + + + . + + + dubnu + + + vyjímáme + 1 + + + : + + + + 15 + + 1 + 1 + + + ) + + + Do + + + 31 + 1 + + + . + + + března + + + platí + + + v + + + plném + + + rozsahu + + + postup + + + podle + + + dohody + + + ÚNMZ + + + ČR + + + a + + + ÚNMS + + + SR + 1 + + + , + + + na + + + jejímž + + + základě + + + český + + + výrobce + + + ( + 1 + + + slovenský + + + dovozce + 1 + + + ) + + + získá + + + na + + + základě + + + schválení + + + české + + + zkušebny + + + a + + + rozhodnutí + + + Ministerstva + + + zdravotnictví + + + SR + + + na + + + ÚNMS + + + SR + + + potvrzení + + + o + + + platnosti + + + rozhodnutí + + + i + + + na + + + území + + + SR + 1 + + + . + + + + 16 + + 2 + 1 + + + ) + + + Od + + + 1 + 1 + + + . + + + dubna + + + nebude + + + ÚNMS + + + SR + + + rozhodnutí + + + české + + + zkušebny + + + potvrzovat + 1 + + + . + + + Tato + + + funkce + + + přejde + + + na + + + příslušnou + + + slovenskou + + + zkušebnu + + + ( + 1 + + + SPPI + + + - + + + Slovenskou + + + potravinářskou + + + a + + + zemědělskou + + + inspekci + 1 + + + ) + 1 + + + , + + + která + + + bude + + + vydávat + + + na + + + základě + + + dodaných + + + podkladů + + + příslušné + + + certifikáty + 1 + + + . + + + + 17 + + 3 + 1 + + + ) + + + Dosud + + + vydaná + + + rozhodnutí + + + z + + + doby + + + trvání + + + federace + + + platí + + + a + + + toto + + + zboží + + + lze + + + do + + + SR + + + dodávat + + + i + + + nadále + 1 + + + , + + + avšak + + + po + + + vydání + + + příslušného + + + certifikátu + + + SPPI + 1 + + + . + + + + 18 + + 4 + 1 + + + ) + + + Usnesením + + + vlády + + + SR + + + je + + + koordinací + + + všech + + + akcí + + + souvisejících + + + se + + + zajištěním + + + certifikace + + + dovážených + + + potravinářských + + + výrobků + + + pověřen + + + ÚNMS + + + SR + 1 + + + . + + + Jedná + + + se + + + o + + + usnesení + + + číslo + + + 64 + + + ze + + + dne + + + 1 + 1 + + + . + + + února + + + 1994 + 1 + + + . + + + Na + + + tomto + + + úřadě + + + lze + + + získat + + + i + + + potřebné + + + informace + 1 + + + . + + + + 19 + + 5 + 1 + + + ) + + + Slovenská + + + celní + + + správa + + + bude + + + vyžadovat + + + u + + + každé + + + jednotlivé + + + dodávky + + + originální + + + rozhodnutí + + + či + + + certifikátu + 1 + + + . + + + Tento + + + postup + + + si + + + vyžádá + + + v + + + praxi + + + zhotovování + + + ověřených + + + kopií + 1 + + + . + + + + 20 + + 6 + 1 + + + ) + + + Povinnost + + + certifikace + + + těchto + + + výrobků + + + vznikla + + + na + + + základě + + + novelizace + + + paragrafu + + + 47 + + + celního + + + zákona + + + 618 + 1 + + + / + 1 + + + 1992 + + + SB + 1 + + + . + 1 + + + , + + + novelizovaného + + + v + + + zákoně + + + 325 + + + článek + + + 8 + + + ve + + + znění + + + zákona + + + číslo + + + 165 + 1 + + + / + 1 + + + 1993 + + + Sb + 1 + + + . + + + + 21 + + 7 + 1 + + + ) + + + Ve + + + všech + + + případech + + + vzniká + + + od + + + 1 + 1 + + + . + + + dubna + + + povinnost + 1 + + + , + + + aby + + + při + + + přechodu + + + slovenských + + + hranic + + + byla + + + dodávka + + + vybavena + + + originálem + + + nebo + + + ověřenou + + + kopií + + + certifikátu + + + SPPI + 1 + + + . + + + + 22 + + 8 + 1 + + + ) + + + Stejné + + + požadavky + + + jako + + + na + + + dovážené + + + výrobky + + + bude + + + SPPI + + + uplatňovat + + + i + + + u + + + výrobků + + + tuzemských + 1 + + + . + + + + 23 + + Text + + + k + + + foto + + + + 24 + + ŽE + + + BY + + + NOVÁ + + + CESTA + + + JAK + + + ŘEŠIT + + + PROBLÉMY + + + CELNÍ + + + UNIE + 1 + + + ? + + + Což + + + o + + + to + 1 + + + , + + + zkusit + + + se + + + to + + + může + 1 + + + . + + + Ale + + + šance + + + je + + + přesto + + + minimální + 1 + + + . + + + + diff --git a/demo/pdt_train/cmpr9410_032.in.conll b/demo/pdt_train/cmpr9410_032.in.conll new file mode 100644 index 00000000..52987d0b --- /dev/null +++ b/demo/pdt_train/cmpr9410_032.in.conll @@ -0,0 +1,590 @@ +# newdoc +# newpar +# sent_id = 1 +# text = "Nemoc - hrnec" a peníze +1 " " PUNCT Z:------------- _ 2 punct _ SpaceAfter=No +2 Nemoc nemoc NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 - - PUNCT Z:------------- _ 4 punct _ _ +4 hrnec hrnec NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 appos _ SpaceAfter=No +5 " " PUNCT Z:------------- _ 4 punct _ _ +6 a a CCONJ J^------------- _ 7 cc _ _ +7 peníze peníze NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 conj _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 2 +# text = Na lidské důvěřivosti se dá vydělat hodně, jak o tom svědčí činnost některých zásilkových služeb. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 lidské lidský ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 důvěřivosti důvěřivost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 vydělat vydělat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 5 xcomp _ _ +7 hodně hodně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 6 advmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 jak jak ADV Db------------- PronType=Int,Rel 12 advmod _ _ +10 o o ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 tom ten DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 12 obj _ _ +12 svědčí svědčit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 advcl _ _ +13 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 12 nsubj _ _ +14 některých některý DET PZXP2---------- Case=Gen|Number=Plur|PronType=Ind 16 det _ _ +15 zásilkových zásilkový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 16 amod _ _ +16 služeb služba NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 13 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 3 +# text = Postup je přitom jednoduchý: Barevnými katalogy a slogany nalákat - vlastně přesvědčit - o výhodné koupi zboží. +1 Postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +3 přitom přitom ADV Db------------- _ 4 advmod _ _ +4 jednoduchý jednoduchý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +5 : : PUNCT Z:------------- _ 6 punct _ _ +6 Barevnými barevný ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 4 conj _ _ +7 katalogy katalog NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +8 a a CCONJ J^------------- _ 9 cc _ _ +9 slogany slogan NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 7 conj _ _ +10 nalákat nalákat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 6 appos _ _ +11 - - PUNCT Z:------------- _ 13 punct _ _ +12 vlastně vlastně ADV Db------------- _ 13 advmod _ _ +13 přesvědčit přesvědčit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 6 appos _ _ +14 - - PUNCT Z:------------- _ 17 punct _ _ +15 o o ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 výhodné výhodný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 17 amod _ _ +17 koupi koupě NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +18 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 4 +# text = Aby akce dostala punc solidnosti, tak nechybí upozornění, že v případě nespokojenosti se zbožím ho mohou zákazníci vrátit a pak dostanou své peníze zpět. +1-2 Aby _ _ _ _ _ _ _ _ +1 Aby aby SCONJ J,------------- _ 4 mark _ _ +2 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 4 aux _ _ +3 akce akce NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj _ _ +4 dostala dostat VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 9 advcl _ _ +5 punc punc NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 obj _ _ +6 solidnosti solidnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 4 punct _ _ +8 tak tak ADV Db------------- PronType=Dem 9 advmod _ _ +9 nechybí chybět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +10 upozornění upozornění NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 9 nsubj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 19 punct _ _ +12 že že SCONJ J,------------- _ 19 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 fixed _ _ +15 nespokojenosti spokojenost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg 19 obl _ _ +16 se s ADP RV--7---------- AdpType=Voc|Case=Ins 17 case _ _ +17 zbožím zboží NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 15 nmod _ _ +18 ho on PRON PHZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 21 obj _ _ +19 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 acl _ _ +20 zákazníci zákazník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 19 nsubj _ _ +21 vrátit vrátit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 19 xcomp _ _ +22 a a CCONJ J^------------- _ 24 cc _ _ +23 pak pak ADV Db------------- _ 24 advmod _ _ +24 dostanou dostat VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 19 conj _ _ +25 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 26 det _ _ +26 peníze peníze NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 24 obj _ _ +27 zpět zpět ADV Db------------- _ 24 advmod _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 5 +# text = Jako vějička navíc působí i malý dárek a případná velká výhra ve formě zájezdu, auta či milionu korun. +1 Jako jako SCONJ J,------------- _ 2 mark _ _ +2 vějička vějička NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 dep _ _ +3 navíc navíc ADV Db------------- _ 4 advmod _ _ +4 působí působit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 i i CCONJ J^------------- _ 7 cc _ _ +6 malý malý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 dárek dárek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 conj _ _ +8 a a CCONJ J^------------- _ 11 cc _ _ +9 případná případný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 11 amod _ _ +10 velká velký ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 11 amod _ _ +11 výhra výhra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 conj _ _ +12 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 14 case _ _ +13 formě forma NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 12 fixed _ _ +14 zájezdu zájezd NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 auta auto NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 14 conj _ _ +17 či či CCONJ J^------------- _ 18 cc _ _ +18 milionu milión NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 conj _ _ +19 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 18 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 6 +# text = Kdo se nechal nachytat, ví o této praxi své. +1 Kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 3 nsubj _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl:pv _ _ +3 nechal nechat VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 6 csubj _ _ +4 nachytat nachytat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 3 punct _ _ +6 ví vědět VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 této tento DET PDFS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Dem 9 det _ _ +9 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 iobj _ _ +10 své svůj DET P8NS4---------1 Case=Acc|Gender=Neut|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 6 obj _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 7 +# text = Známe příběhy o pánvích, které jsou zdraví škodlivé, spousta důvěřivých naletěla na biohrnce nabízené zásilkovými firmami Axiom, Jana a Markest. +1 Známe znát VERB VB-P---1P-AA--- Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 příběhy příběh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 1 obj _ _ +3 o o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 pánvích pánev NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 2 nmod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 9 punct _ _ +6 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 9 nsubj _ _ +7 jsou být AUX VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +8 zdraví zdraví NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +9 škodlivé škodlivý ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 acl _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 13 nsubj _ _ +12 důvěřivých důvěřivý ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 11 amod _ _ +13 naletěla naletět VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ _ +14 na na ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +15 biohrnce biohrnec NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ _ +16 nabízené nabízený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 18 amod _ _ +17 zásilkovými zásilkový ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 18 amod _ _ +18 firmami firma NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 13 obl _ _ +19 Axiom axiom PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 18 nmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 21 punct _ _ +21 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 19 conj _ _ +22 a a CCONJ J^------------- _ 23 cc _ _ +23 Markest Markest PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 19 conj _ SpaceAfter=No +24 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 8 +# text = Institut pro testování a certifikaci ve Zlíně přitom kromě jiného zjistil, že při používání biohrnce dochází ke spálení povrchového laku, takže se uvolňují nebezpečné sloučeniny chromu a olova, které mají karcinogenní účinky, způsobují vývojové genetické vady, škodlivě působí na nervový systém, trávící trakt, cévy i ledviny. +1 Institut institut NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 testování testování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 certifikaci certifikace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 conj _ _ +6 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 7 case _ _ +7 Zlíně Zlín PROPN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|NameType=Geo|Number=Sing|Polarity=Pos 1 nmod _ _ +8 přitom přitom ADV Db------------- _ 11 advmod _ _ +9 kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 jiného jiný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 11 obl _ _ +11 zjistil zjistit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 17 punct _ _ +13 že že SCONJ J,------------- _ 17 mark _ _ +14 při při ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +15 používání používání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 17 obl _ _ +16 biohrnce biohrnec NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 15 nmod _ _ +17 dochází docházet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ _ +18 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 19 case _ _ +19 spálení spálení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 17 obj _ _ +20 povrchového povrchový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 21 amod _ _ +21 laku lak NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 19 nmod _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 25 punct _ _ +23 takže takže SCONJ J,------------- _ 25 mark _ _ +24 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 25 expl:pv _ _ +25 uvolňují uvolňovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 advcl _ _ +26 nebezpečné bezpečný ADJ AAFP1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Neg 27 amod _ _ +27 sloučeniny sloučenina NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 25 nsubj _ _ +28 chromu chróm NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 27 nmod _ _ +29 a a CCONJ J^------------- _ 30 cc _ _ +30 olova olovo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 28 conj _ SpaceAfter=No +31 , , PUNCT Z:------------- _ 33 punct _ _ +32 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 33 nsubj _ _ +33 mají mít VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 27 acl _ _ +34 karcinogenní karcinogenní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 35 amod _ _ +35 účinky účinek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 33 obj _ SpaceAfter=No +36 , , PUNCT Z:------------- _ 33 punct _ _ +37 způsobují způsobovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 25 conj _ _ +38 vývojové vývojový ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 40 amod _ _ +39 genetické genetický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 40 amod _ _ +40 vady vada NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 37 obj _ SpaceAfter=No +41 , , PUNCT Z:------------- _ 43 punct _ _ +42 škodlivě škodlivě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 43 advmod _ _ +43 působí působit VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 37 conj _ _ +44 na na ADP RR--4---------- AdpType=Prep|Case=Acc 46 case _ _ +45 nervový nervový ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 46 amod _ _ +46 systém systém NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 43 obj _ SpaceAfter=No +47 , , PUNCT Z:------------- _ 49 punct _ _ +48 trávící trávící ADJ AGIS4-----A---- Animacy=Inan|Aspect=Imp|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 49 amod _ _ +49 trakt trakt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 46 conj _ SpaceAfter=No +50 , , PUNCT Z:------------- _ 51 punct _ _ +51 cévy céva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 46 conj _ _ +52 i i CCONJ J^------------- _ 53 cc _ _ +53 ledviny ledvina NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 46 conj _ SpaceAfter=No +54 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 9 +# text = Útok na zdraví zákazníků je podpořen i útokem na peněženku. +1 Útok útok NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 6 nsubj _ _ +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 zdraví zdraví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ _ +4 zákazníků zákazník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 3 nmod _ _ +5 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +6 podpořen podpořený ADJ VsYS---XX-AP--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +7 i i CCONJ J^------------- _ 8 advmod:emph _ _ +8 útokem útok NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 peněženku peněženka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 10 +# text = Axiom nabízí biohrnec (rozumějte "nemoc - hrnec") za 599 korun, Jana už za 945 korun a Markest si svoji (ne)solidnost cení na 1209 korun. +1 Axiom Axiom PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 nabízí nabízet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 biohrnec biohrnec NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obj _ _ +4 ( ( PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +5 rozumějte rozumět VERB Vi-P---2--A---- Aspect=Imp|Mood=Imp|Number=Plur|Person=2|Polarity=Pos|VerbForm=Fin 2 parataxis _ _ +6 " " PUNCT Z:------------- _ 7 punct _ SpaceAfter=No +7 nemoc nemoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +8 - - PUNCT Z:------------- _ 9 punct _ _ +9 hrnec hrnec NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 appos _ SpaceAfter=No +10 " " PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 ) ) PUNCT Z:------------- _ 5 punct _ _ +12 za za ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 599 599 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 2 obl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 2 conj _ _ +17 už už ADV Db------------- _ 19 advmod:emph _ _ +18 za za ADP RR--4---------- AdpType=Prep|Case=Acc 20 case _ _ +19 945 945 NUM C=------------- NumForm=Digit|NumType=Card 20 nummod:gov _ _ +20 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 16 orphan _ _ +21 a a CCONJ J^------------- _ 29 cc _ _ +22 Markest Markest PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 29 nsubj _ _ +23 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ _ +24 svoji svůj DET P8FS4---------- Case=Acc|Gender=Fem|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 28 det _ _ +25 ( ( PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +26 ne ne PART TT------------- _ 28 advmod:emph _ SpaceAfter=No +27 ) ) PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +28 solidnost solidnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obj _ _ +29 cení cenit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +30 na na ADP RR--4---------- AdpType=Prep|Case=Acc 32 case _ _ +31 1209 1209 NUM C=------------- NumForm=Digit|NumType=Card 32 nummod:gov _ _ +32 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 29 obl _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 29 punct _ _ + +# sent_id = 11 +# text = Ještě výraznější rozdíl je ve srovnání cen mezi zásilkovým a klasickým obchodem. +1 Ještě ještě ADV Db------------- _ 2 advmod:emph _ _ +2 výraznější výrazný ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 3 amod _ _ +3 rozdíl rozdíl NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 7 case _ _ +6 srovnání srovnání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 5 fixed _ _ +7 cen cena NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 4 obl _ _ +8 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +9 zásilkovým zásilkový ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 12 amod _ _ +10 a a CCONJ J^------------- _ 11 cc _ _ +11 klasickým klasický ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 conj _ _ +12 obchodem obchod NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Například v pražských obchodech je k mání český kráječ na vajíčka za 67 korun, zahraniční za 75 a 95 korun, ale Jana si tohoto pomocníka do kuchyně cení na 345 korun. +1 Například například ADV Db------------- _ 4 advmod:emph _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 pražských pražský ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 4 amod _ _ +4 obchodech obchod NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 5 obl _ _ +5 je být VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 k k ADP RR--3---------- AdpType=Prep|Case=Dat 7 case _ _ +7 mání mání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 5 obl _ _ +8 český český ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 kráječ kráječ NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 5 nsubj _ _ +10 na na ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 vajíčka vajíčko NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Number=Plur|Polarity=Pos 9 nmod _ _ +12 za za ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 67 67 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 9 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 21 case _ _ +18 75 75 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +19 a a CCONJ J^------------- _ 20 cc _ _ +20 95 95 NUM C=------------- NumForm=Digit|NumType=Card 18 conj _ _ +21 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 16 orphan _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 30 punct _ _ +23 ale ale CCONJ J^------------- _ 30 cc _ _ +24 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 30 nsubj _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 30 obl _ _ +26 tohoto tento DET PDMS4---------- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 27 det _ _ +27 pomocníka pomocník NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 30 obj _ _ +28 do do ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +29 kuchyně kuchyně NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 27 nmod _ _ +30 cení cený VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ _ +31 na na ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +32 345 345 NUM C=------------- NumForm=Digit|NumType=Card 33 nummod:gov _ _ +33 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 30 obl _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 5 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 13 +# text = Nikdo nemůže chránit zákazníka před p důvěřivostí, naivností až hloupostí v případě, že je ochoten zaplatit za zaslané zboží více, než co stojí v běžných prodejnách. +1 Nikdo nikdo PRON PWM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Neg 2 nsubj _ _ +2 nemůže moci VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 chránit chránit VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 zákazníka zákazník NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ _ +5 před před ADP RR--7---------- AdpType=Prep|Case=Ins 6 case _ _ +6 p podnik NOUN NNFSX-----A---8 Abbr=Yes|Foreign=Yes|Gender=Fem|Number=Sing|Polarity=Pos 3 iobj _ _ +7 důvěřivostí důvěřivost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 9 punct _ _ +9 naivností naivnost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 7 conj _ _ +10 až až CCONJ J^------------- _ 11 cc _ _ +11 hloupostí hloupost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 7 conj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 3 obl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 17 punct _ _ +15 že že SCONJ J,------------- _ 17 mark _ _ +16 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +17 ochoten ochotný ADJ ACYS------A---- Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short 13 acl _ _ +18 zaplatit zaplatit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 17 xcomp _ _ +19 za za ADP RR--4---------- AdpType=Prep|Case=Acc 21 case _ _ +20 zaslané zaslaný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 21 amod _ _ +21 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 18 obj _ _ +22 více hodně ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 18 advmod _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 26 punct _ _ +24 než než SCONJ J,------------- _ 26 mark _ _ +25 co co PRON PQ--4---------- Animacy=Inan|Case=Acc|PronType=Int,Rel 26 obj _ _ +26 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 22 advcl _ _ +27 v v ADP RR--6---------- AdpType=Prep|Case=Loc 29 case _ _ +28 běžných běžný ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 29 amod _ _ +29 prodejnách prodejna NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 26 obl _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 14 +# text = U výrobků ohrožujících zdraví spotřebitelů dochází však ke spáchání trestného činu ohrožování zdraví potravinami a jinými potřebami. +1 U u ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +3 ohrožujících ohrožující ADJ AGIP2-----A---- Animacy=Inan|Aspect=Imp|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 2 amod _ _ +4 zdraví zdraví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 3 obj _ _ +5 spotřebitelů spotřebitel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 4 nmod _ _ +6 dochází docházet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 však však CCONJ J^------------- _ 6 cc _ _ +8 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 9 case _ _ +9 spáchání spáchání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +10 trestného trestný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 činu čin NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ _ +12 ohrožování ohrožování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 11 nmod _ _ +13 zdraví zdraví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 12 nmod _ _ +14 potravinami potravina NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 12 nmod _ _ +15 a a CCONJ J^------------- _ 17 cc _ _ +16 jinými jiný ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ _ +17 potřebami potřeba NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 14 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 15 +# text = Trestného činu se však dopouští i ten, kdo poškozuje spotřebitele tím, že ho šidí na jakosti, nebo kdo uvede ve větším rozsahu na trh výrobky a přitom zatají jejich podstatné vady. +1 Trestného trestný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 činu čin NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 5 obj _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +4 však však CCONJ J^------------- _ 5 cc _ _ +5 dopouští dopouštět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 i i CCONJ J^------------- _ 7 advmod:emph _ _ +7 ten ten DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 5 nsubj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 10 punct _ _ +9 kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 10 nsubj _ _ +10 poškozuje poškozovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 acl _ _ +11 spotřebitele spotřebitel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 10 obj _ _ +12 tím ten DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 10 obl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 že že SCONJ J,------------- _ 16 mark _ _ +15 ho on PRON PHZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 16 obj _ _ +16 šidí šidit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 acl _ _ +17 na na ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +18 jakosti jakost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 16 obl _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 22 punct _ _ +20 nebo nebo CCONJ J^------------- _ 22 cc _ _ +21 kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 22 nsubj _ _ +22 uvede uvést VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 conj _ _ +23 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 25 case _ _ +24 větším velký ADJ AAIS6----2A---- Animacy=Inan|Case=Loc|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 25 amod _ _ +25 rozsahu rozsah NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 22 obl _ _ +26 na na ADP RR--4---------- AdpType=Prep|Case=Acc 27 case _ _ +27 trh trh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 22 obl _ _ +28 výrobky výrobek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 22 obj _ _ +29 a a CCONJ J^------------- _ 31 cc _ _ +30 přitom přitom ADV Db------------- _ 31 advmod _ _ +31 zatají zatajit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 conj _ _ +32 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 34 det _ _ +33 podstatné podstatný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 34 amod _ _ +34 vady vada NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 31 obj _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 16 +# text = Volání po novém zákonu na ochranu spotřebitele je sice oprávněné, ale je třeba zároveň vzít v úvahu, že i dnes jsou zákony na ochranu spotřebitele. +1 Volání volání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 10 nsubj _ _ +2 po po ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 novém nový ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 4 amod _ _ +4 zákonu zákon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +5 na na ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +6 ochranu ochrana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 nmod _ _ +7 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +8 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 cop _ _ +9 sice sice ADV Db------------- _ 10 cc _ _ +10 oprávněné oprávněný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 14 punct _ _ +12 ale ale CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 10 conj _ _ +15 zároveň zároveň ADV Db------------- _ 16 advmod _ _ +16 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 14 csubj _ _ +17 v v ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 16 iobj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 23 punct _ _ +20 že že SCONJ J,------------- _ 23 mark _ _ +21 i i CCONJ J^------------- _ 22 advmod:emph _ _ +22 dnes dnes ADV Db------------- _ 23 advmod _ _ +23 jsou být VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 ccomp _ _ +24 zákony zákon NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 23 nsubj _ _ +25 na na ADP RR--4---------- AdpType=Prep|Case=Acc 26 case _ _ +26 ochranu ochrana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 24 nmod _ _ +27 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 26 nmod _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 17 +# text = Řada lidí se však soudit nechce a nechce také naletět. +1 Řada řada NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 6 nsubj _ _ +2 lidí člověk NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 1 nmod _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +4 však však CCONJ J^------------- _ 6 cc _ _ +5 soudit soudit VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 6 xcomp _ _ +6 nechce chtít VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 a a CCONJ J^------------- _ 8 cc _ _ +8 nechce chtít VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 6 conj _ _ +9 také také ADV Db------------- _ 10 advmod _ _ +10 naletět naletět VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 8 xcomp _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 18 +# text = Co by měli při uvažování o koupi prostřednictvím zásilkového obchodu vzít v úvahu: +1 Co co PRON PQ--4---------- Animacy=Inan|Case=Acc|PronType=Int,Rel 3 obj _ _ +2 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 3 aux _ _ +3 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +4 při při ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uvažování uvažování NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 obl _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 koupi koupě NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 prostřednictvím prostřednictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 10 case _ _ +9 zásilkového zásilkový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 10 amod _ _ +10 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 nmod _ _ +11 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 3 xcomp _ _ +12 v v ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +13 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 11 obj _ SpaceAfter=No +14 : : PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 19 +# text = * Vyžadovat vždy u výrobku zkoušku zdravotní nezávadnosti a bezpečnosti ve státní zkušebně, jak to vyplývá ze zákona, +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 Vyžadovat vyžadovat VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ _ +3 vždy vždy ADV Db------------- PronType=Tot 2 advmod _ _ +4 u u ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 výrobku výrobek NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 2 obl _ _ +6 zkoušku zkouška NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +7 zdravotní zdravotní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 8 amod _ _ +8 nezávadnosti závadnost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg 6 nmod _ _ +9 a a CCONJ J^------------- _ 10 cc _ _ +10 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 conj _ _ +11 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 13 case _ _ +12 státní státní ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 13 amod _ _ +13 zkušebně zkušebna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 nmod _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 17 punct _ _ +15 jak jak ADV Db------------- PronType=Int,Rel 17 advmod _ _ +16 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 17 nsubj _ _ +17 vyplývá vyplývat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 parataxis _ _ +18 ze z ADP RV--2---------- AdpType=Voc|Case=Gen 19 case _ _ +19 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 20 +# text = * vycházet z toho, že úkryt za P.O. +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 vycházet vycházet VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ _ +3 z z ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +4 toho ten DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 7 det _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 7 punct _ _ +6 že že SCONJ J,------------- _ 7 mark _ _ +7 úkryt úkryt NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 P Post ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|Foreign=Yes|Polarity=Pos 11 amod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 O Office NOUN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Yes|Gender=Masc|Polarity=Pos 7 nmod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 21 +# text = Box je téměř dokonalý, takže adresu případných podvodníků půjde zjistit jen s velkými obtížemi - to připomínám kvůli vrácení peněz, +1 Box box NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +3 téměř téměř ADV Db------------- _ 4 advmod:emph _ _ +4 dokonalý dokonalý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 10 punct _ _ +6 takže takže SCONJ J,------------- _ 10 mark _ _ +7 adresu adresa NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 11 obj _ _ +8 případných případný ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 podvodníků podvodník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 7 nmod _ _ +10 půjde jít VERB VB-S---3F-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Fut|VerbForm=Fin|Voice=Act 4 advcl _ _ +11 zjistit zjistit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 csubj _ _ +12 jen jen PART TT------------- _ 15 advmod:emph _ _ +13 s s ADP RR--7---------- AdpType=Prep|Case=Ins 15 case _ _ +14 velkými velký ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 15 amod _ _ +15 obtížemi obtíž NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 11 obl _ _ +16 - - PUNCT Z:------------- _ 18 punct _ _ +17 to ten DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 18 obj _ _ +18 připomínám připomínat VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 parataxis _ _ +19 kvůli kvůli ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 vrácení vrácení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 18 obl _ _ +21 peněz peníze NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 4 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 22 +# text = * nenechat se nalákat na malý dárek při objednávce zboží, protože ten jste si určitě zaplatili, +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 nenechat nechat VERB Vf--------N---- Aspect=Imp|Polarity=Neg|VerbForm=Inf 0 root _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 2 expl:pv _ _ +4 nalákat nalákat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +5 na na ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +6 malý malý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 dárek dárek NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +8 při při ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 objednávce objednávka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +10 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 9 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 protože protože SCONJ J,------------- _ 17 mark _ _ +13 ten ten DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 17 obj _ _ +14 jste být AUX VB-P---2P-AA--- Mood=Ind|Number=Plur|Person=2|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 aux _ _ +15 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 17 obl _ _ +16 určitě určitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 17 advmod _ _ +17 zaplatili zaplatit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 4 advcl _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 23 +# text = * věnovat čas na průzkum v obchodech, kolik vlastně zboží běžně stojí. +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 věnovat věnovat VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ _ +3 čas čas NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obj _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 průzkum průzkum NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obl _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 obchodech obchod NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 13 punct _ _ +9 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 13 obj _ _ +10 vlastně vlastně ADV Db------------- _ 13 advmod _ _ +11 zboží zboží NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 13 nsubj _ _ +12 běžně běžně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod _ _ +13 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 24 +# text = Shrnuto a podtrženo: Buďte opatrní. +1 Shrnuto shrnutý ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +2 a a CCONJ J^------------- _ 3 cc _ _ +3 podtrženo podtržený ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 1 conj _ SpaceAfter=No +4 : : PUNCT Z:------------- _ 6 punct _ _ +5 Buďte být AUX Vi-P---2--A---- Mood=Imp|Number=Plur|Person=2|Polarity=Pos|VerbForm=Fin 6 cop _ _ +6 opatrní opatrný ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 1 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 25 +# text = Kamil Lánský +1 Kamil Kamil PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 0 root _ _ +2 Lánský Lánský PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ \ No newline at end of file diff --git a/demo/pdt_train/cmpr9410_032.t b/demo/pdt_train/cmpr9410_032.t new file mode 100644 index 00000000..a598aec7 --- /dev/null +++ b/demo/pdt_train/cmpr9410_032.t @@ -0,0 +1,7734 @@ + + + + + + + + + + + + Manual annotation + + essay + + + + a#a-cmpr9410-032-p2s1 + 0 + + + + a#a-cmpr9410-032-p2s1w6 + + coap + a + CONJ + 3 + heading + + + + a#a-cmpr9410-032-p2s1w2 + + complex + nemoc + DENOM + enunc + + + other + cmpr9410-032-p2s1w2 + + + 1 + + n.denot + fem + sg + single + + f + 1 + + + + a#a-cmpr9410-032-p2s1w4 + + complex + hrnec + ID + enunc + + + other + cmpr9410-032-p2s1w2 + + + + n.denot + inan + sg + single + + f + 2 + + + + + + a#a-cmpr9410-032-p2s1w7 + + complex + peníze + DENOM + enunc + 1 + + n.denot + inan + pl + single + + f + 4 + + + + + + + a#a-cmpr9410-032-p3s1 + 0 + + + zásilková služba + lexeme + + t-cmpr9410-032-p3s1w15 + t-cmpr9410-032-p3s1w16 + + + + + + + a#a-cmpr9410-032-p3s1w6 + + a#a-cmpr9410-032-p3s1w5 + + + complex + vydělat + PRED + enunc + + v + poss + post + cpl + it0 + act + asserted + + f + 4 + v#v-w7853f1 + + + + a#a-cmpr9410-032-p3s1w3 + + a#a-cmpr9410-032-p3s1w1 + + + complex + důvěřivost + ORIG + + n.denot.neg + fem + sg + single + neg0 + + c + 1 + + + + a#a-cmpr9410-032-p3s1w2 + + complex + lidský + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + complex + 1 + #EmpNoun + PAT + + n.pron.def.demon + nr + nr + + t + 5 + + + + a#a-cmpr9410-032-p3s1w7 + + complex + hodně + RSTR + + adj.quant.grad + pos + basic + + f + 6 + + + + + + a#a-cmpr9410-032-p3s1w12 + + complex + svědčit + PAR + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w6652f1 + + + + a#a-cmpr9410-032-p3s1w11 + + a#a-cmpr9410-032-p3s1w10 + + + complex + ten + PAT + 1 + + n.pron.def.demon + neut + sg + + t + 7 + + + t-cmpr9410-032-p3s1w6 + SPEC + + + + + + a#a-cmpr9410-032-p3s1w9 + + complex + jak + MANN + 1 + + adv.pron.indef + inter + + t + 8 + + + + a#a-cmpr9410-032-p3s1w13 + + complex + činnost + ACT + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 10 + + + + a#a-cmpr9410-032-p3s1w16 + + complex + služba + ACT + 1 + + n.denot + fem + pl + single + + f + 11 + + + + a#a-cmpr9410-032-p3s1w15 + + complex + zásilkový + RSTR + 1 + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-cmpr9410-032-p3s1w14 + + complex + který + RSTR + 1 + + adj.pron.indef + indef1 + + f + 13 + + + + + + + + + + + + + a#a-cmpr9410-032-p3s2A + 0 + + + + a#a-cmpr9410-032-p3s2Aw2 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-032-p3s1w6 + discourse + 0 + 0 + conj + + t-cmpr9410-032-p3s2Aw3 + + + + v#v-w243f1 + + + + a#a-cmpr9410-032-p3s2Aw3 + + atom + přitom + PREC + t + 1 + + + + a#a-cmpr9410-032-p3s2Aw1 + + complex + postup + ACT + + n.denot + inan + sg + single + + c + 2 + + + + a#a-cmpr9410-032-p3s2Aw4 + + complex + jednoduchý + PAT + + adj.denot + pos + neg0 + + f + 4 + + + + + + + a#a-cmpr9410-032-p3s2B + 0 + + + + a#a-cmpr9410-032-p3s2Bw6 + + coap + #Dash + APPS + 8 + + + + a#a-cmpr9410-032-p3s2Bw3 + + coap + a + CONJ + 3 + + + + a#a-cmpr9410-032-p3s2Bw2 + + complex + katalog + MEANS + 1 + + n.denot + inan + pl + single + + c + 1 + + + + a#a-cmpr9410-032-p3s2Bw4 + + complex + slogan + MEANS + 1 + + n.denot + inan + pl + single + + c + 2 + + + + a#a-cmpr9410-032-p3s2Bw1 + + complex + barevný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + qcomplex + 1 + #Gen + ACT + t + 5 + + + + a#a-cmpr9410-032-p3s2Bw5 + + complex + nalákat + PRED + enunc + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 7 + v#v-w2071f1 + + + qcomplex + 1 + #Gen + ADDR + t + 6 + + + + + + a#a-cmpr9410-032-p3s2Bw8 + + complex + přesvědčit + PRED + enunc + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 11 + + + t-cmpr9410-032-p3s2Bw5 + discourse + 0 + 0 + corr + + t-cmpr9410-032-p3s2Bw7 + t-cmpr9410-032-p3s2Bw6 + + + + v#v-w4994f1 + + + + a#a-cmpr9410-032-p3s2Bw7 + + atom + vlastně + ATT + t + 9 + + + qcomplex + 1 + #Gen + ADDR + t + 10 + + + + a#a-cmpr9410-032-p3s2Bw12 + + a#a-cmpr9410-032-p3s2Bw10 + + + complex + koupě + PAT + + n.denot + fem + sg + single + + f + 12 + + + + a#a-cmpr9410-032-p3s2Bw13 + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 13 + + + t-cmpr9410-032-p2s1w2 + SUB_SET + + + + + + a#a-cmpr9410-032-p3s2Bw11 + + complex + výhodný + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + + + + + + a#a-cmpr9410-032-p3s3 + 0 + + + + a#a-cmpr9410-032-p3s3w9 + + complex + chybět + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w1204f3 + + + + a#a-cmpr9410-032-p3s3w8 + + atom + tak + PREC + t + 1 + + + + a#a-cmpr9410-032-p3s3w4 + + a#a-cmpr9410-032-p3s3w1 + + + complex + dostat + AIM + + v + decl + nil + cpl + it0 + act + potential + + c + 3 + + + t-cmpr9410-032-p3s3w9 + discourse + 0 + 0 + purp + + a#a-cmpr9410-032-p3s3w1 + + + t-cmpr9410-032-p3s3w8 + + + + v#v-w732f7 + + + + a#a-cmpr9410-032-p3s3w3 + + complex + akce + ACT + + n.denot + fem + sg + single + + t + 2 + + + + a#a-cmpr9410-032-p3s3w5 + + complex + punc + PAT + + n.denot + inan + sg + single + + f + 4 + + + + a#a-cmpr9410-032-p3s3w6 + + complex + solidnost + ID + enunc + + n.denot.neg + fem + sg + single + neg0 + + f + 5 + + + + + + + atom + 1 + #Neg + RHEM + f + 6 + + + + a#a-cmpr9410-032-p3s3w10 + + complex + upozornění + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w7227f1 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-cmpr9410-032-p3s3w22 + + coap + a + CONJ + 16 + + + + a#a-cmpr9410-032-p3s3w15 + + a#a-cmpr9410-032-p3s3w13 + a#a-cmpr9410-032-p3s3w14 + + + complex + spokojenost + COND + + n.denot.neg + fem + sg + single + neg1 + + t + 10 + + + + a#a-cmpr9410-032-p3s3w17 + + a#a-cmpr9410-032-p3s3w16 + + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 11 + + + t-cmpr9410-032-p3s2Bw13 + SPEC + + + + + + + + a#a-cmpr9410-032-p3s3w20 + + complex + zákazník + ACT + + n.denot + anim + pl + single + + t + 12 + + + + a#a-cmpr9410-032-p3s3w21 + + a#a-cmpr9410-032-p3s3w19 + a#a-cmpr9410-032-p3s3w12 + + + complex + vrátit + PAT + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 15 + + + t-cmpr9410-032-p3s3w24 + discourse + 0 + 0 + preced + + t-cmpr9410-032-p3s3w23 + t-cmpr9410-032-p3s3w22 + + + + v#v-w7705f1 + + + qcomplex + 1 + #Gen + ADDR + t + 13 + + + + a#a-cmpr9410-032-p3s3w18 + + complex + #PersPron + PAT + + n.pron.def.pers + neut + sg + 3 + basic + + t + 14 + + + t-cmpr9410-032-p3s3w17 + SPEC + + + + + + + + a#a-cmpr9410-032-p3s3w24 + + a#a-cmpr9410-032-p3s3w12 + + + complex + dostat + PAT + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 18 + v#v-w732f7 + + + + a#a-cmpr9410-032-p3s3w23 + + complex + potom + TWHEN + basic + + adv.pron.def + + t + 17 + + + + a#a-cmpr9410-032-p3s3w26 + + complex + peníze + PAT + + n.denot + inan + pl + single + + f + 20 + + + + a#a-cmpr9410-032-p3s3w25 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 19 + + t-cmpr9410-032-p3s3w20 + + + + + + + a#a-cmpr9410-032-p3s3w27 + + complex + zpět + DIR3 + basic + + adv.denot.grad.neg + pos + neg0 + + f + 21 + + + + + + + + + + + + + a#a-cmpr9410-032-p3s4 + 0 + + + + a#a-cmpr9410-032-p3s4w4 + + complex + působit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-cmpr9410-032-p3s3w9 + discourse + 0 + 0 + grad + + t-cmpr9410-032-p3s4w3 + + + + v#v-w5388f2 + + + + a#a-cmpr9410-032-p3s4w3 + + atom + navíc + PREC + t + 1 + + + + a#a-cmpr9410-032-p3s4w2 + + a#a-cmpr9410-032-p3s4w1 + + + complex + vějička + COMPL + + n.denot + fem + sg + single + + c + 2 + + t-cmpr9410-032-p3s4w8 + + + + + a#a-cmpr9410-032-p3s4w5 + + atom + i + RHEM + f + 4 + + + + a#a-cmpr9410-032-p3s4w8 + + coap + a + CONJ + 7 + + + + a#a-cmpr9410-032-p3s4w7 + + complex + dárek + ACT + 1 + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-032-p3s4w6 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-cmpr9410-032-p3s4w11 + + complex + výhra + ACT + 1 + + n.denot + fem + sg + single + + f + 8 + + + + a#a-cmpr9410-032-p3s4w10 + + complex + velký + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-cmpr9410-032-p3s4w9 + + complex + případný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-cmpr9410-032-p3s4w17 + + coap + či + CONJ + 13 + + + + a#a-cmpr9410-032-p3s4w14 + + a#a-cmpr9410-032-p3s4w13 + a#a-cmpr9410-032-p3s4w12 + + + complex + zájezd + RSTR + 1 + + n.denot + inan + sg + single + + f + 11 + + + + a#a-cmpr9410-032-p3s4w16 + + a#a-cmpr9410-032-p3s4w13 + a#a-cmpr9410-032-p3s4w12 + + + complex + auto + RSTR + 1 + + n.denot + neut + sg + single + + f + 12 + + + + a#a-cmpr9410-032-p3s4w18 + + a#a-cmpr9410-032-p3s4w13 + a#a-cmpr9410-032-p3s4w12 + + + complex + milión + RSTR + 1 + + n.quant.def + inan + sg + basic + + f + 14 + + + + a#a-cmpr9410-032-p3s4w19 + + complex + koruna + MAT + + n.denot + fem + pl + single + + f + 15 + + + + + + + + + + + + + + + a#a-cmpr9410-032-p3s5 + 0 + + + + a#a-cmpr9410-032-p3s5w6 + + complex + vědět + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + t + 6 + v#v-w7548f3 + + + + a#a-cmpr9410-032-p3s5w3 + + complex + nechat + ACT + + v + decl + ant + cpl + it0 + act + asserted + + c + 2 + v#v-w2356f1 + + + + a#a-cmpr9410-032-p3s5w1 + + complex + kdo + ACT + + n.pron.indef + anim + sg + inter + 3 + + t + 1 + + + + a#a-cmpr9410-032-p3s5w4 + + complex + nachytat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 5 + v#v-w2030f1 + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-cmpr9410-032-p3s5w2 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-cmpr9410-032-p3s5w1 + + + + + + + + + a#a-cmpr9410-032-p3s5w9 + + a#a-cmpr9410-032-p3s5w7 + + + complex + praxe + PAT + + n.denot + fem + sg + single + + f + 8 + segm + + + + a#a-cmpr9410-032-p3s5w8 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 7 + + + + + + a#a-cmpr9410-032-p3s5w10 + + dphr + své + DPHR + f + 9 + + + + + + + a#a-cmpr9410-032-p4s1 + 0 + + + zásilková firma + lexeme + + t-cmpr9410-032-p4s1w17 + t-cmpr9410-032-p4s1w18 + + + + + + + a#a-cmpr9410-032-p4s1w10 + + coap + #Comma + CONJ + 9 + + + + a#a-cmpr9410-032-p4s1w1 + + complex + znát + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w9675f2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 1 + + + + a#a-cmpr9410-032-p4s1w2 + + complex + příběh + PAT + + n.denot + inan + pl + single + + f + 3 + + + + a#a-cmpr9410-032-p4s1w4 + + a#a-cmpr9410-032-p4s1w3 + + + complex + pánev + PAT + + n.denot + fem + pl + single + + f + 4 + + + t-cmpr9410-032-p3s3w18 + SET_SUB + + + + + + a#a-cmpr9410-032-p4s1w7 + + complex + být + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w243f1 + + + + a#a-cmpr9410-032-p4s1w6 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 5 + + t-cmpr9410-032-p4s1w4 + + + + + a#a-cmpr9410-032-p4s1w9 + + complex + škodlivý + PAT + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-cmpr9410-032-p4s1w8 + + complex + zdraví + BEN + nr + + n.denot + neut + sg + single + + f + 8 + + + + + + + + + + + + + + a#a-cmpr9410-032-p4s1w13 + + complex + naletět + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 12 + v#v-w2077f1 + + + + a#a-cmpr9410-032-p4s1w11 + + complex + spousta + ACT + + n.denot + fem + sg + single + + c + 10 + + + + a#a-cmpr9410-032-p4s1w12 + + complex + důvěřivý + MAT + + n.denot + anim + pl + single + + f + 11 + + + + + + a#a-cmpr9410-032-p4s1w15 + + a#a-cmpr9410-032-p4s1w14 + + + complex + biohrnec + MEANS + + n.denot + inan + pl + single + + f + 13 + + + t-cmpr9410-032-p2s1w2 + SPEC + + + + + + a#a-cmpr9410-032-p4s1w16 + + complex + nabízený + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-cmpr9410-032-p4s1w22 + + coap + a + CONJ + 18 + + + t-cmpr9410-032-p3s1w16 + SET_SUB + + + + + + a#a-cmpr9410-032-p4s1w17 + + complex + zásilkový + RSTR + + adj.denot + pos + neg0 + + t + 15 + + + + a#a-cmpr9410-032-p4s1w18 + + complex + firma + ACT + 1 + + n.denot + fem + pl + single + + t + 16 + + + + a#a-cmpr9410-032-p4s1w19 + + complex + Axiom + ID + enunc + + n.denot + inan + sg + single + + f + 17 + + + + + + a#a-cmpr9410-032-p4s1w18 + + complex + 1 + firma + ACT + 1 + + n.denot + fem + pl + single + + t + 19 + + + + a#a-cmpr9410-032-p4s1w21 + + complex + Jana + ID + enunc + 1 + + n.denot + fem + sg + single + + f + 20 + + + + + + a#a-cmpr9410-032-p4s1w18 + + complex + 1 + firma + ACT + 1 + + n.denot + fem + pl + single + + t + 21 + + + + a#a-cmpr9410-032-p4s1w23 + + complex + Markest + ID + enunc + + n.denot + inan + sg + single + + f + 22 + + + + + + + + + + + + + + + + + a#a-cmpr9410-032-p4s2 + 0 + + + institution + + t-cmpr9410-032-p4s2w1 + t-cmpr9410-032-p4s2w3 + t-cmpr9410-032-p4s2w4 + t-cmpr9410-032-p4s2w5 + + + + nervový systém + lexeme + + t-cmpr9410-032-p4s2w45 + t-cmpr9410-032-p4s2w46 + + + + trávící trakt + lexeme + + t-cmpr9410-032-p4s2w48 + t-cmpr9410-032-p4s2w49 + + + + + + + a#a-cmpr9410-032-p4s2w11 + + complex + zjistit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 10 + + + t-cmpr9410-032-p4s1w10 + discourse + 0 + 0 + conj + + t-cmpr9410-032-p4s2w8 + + + + v#v-w9515f1 + + + + a#a-cmpr9410-032-p4s2w8 + + atom + přitom + PREC + t + 1 + + + + a#a-cmpr9410-032-p4s2w1 + + complex + Institut + ACT + + n.denot + inan + sg + single + + c + 2 + + + + a#a-cmpr9410-032-p4s2w4 + + coap + a + CONJ + 6 + + + + a#a-cmpr9410-032-p4s2w3 + + a#a-cmpr9410-032-p4s2w2 + + + complex + testování + AIM + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 5 + v#v-w6815f1 + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + + + + a#a-cmpr9410-032-p4s2w5 + + a#a-cmpr9410-032-p4s2w2 + + + complex + certifikace + AIM + 1 + + n.denot + fem + sg + single + + f + 7 + + + + + + a#a-cmpr9410-032-p4s2w7 + + a#a-cmpr9410-032-p4s2w6 + + + complex + Zlín + LOC + basic + + n.denot + inan + sg + single + + f + 8 + + + + + + a#a-cmpr9410-032-p4s2w10 + + a#a-cmpr9410-032-p4s2w9 + + + complex + jiný + RESTR + + n.denot + neut + sg + single + + t + 9 + + + + a#a-cmpr9410-032-p4s2w23 + + coap + takže + CSQ + 19 + + + + a#a-cmpr9410-032-p4s2w17 + + a#a-cmpr9410-032-p4s2w13 + + + complex + docházet + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + + + t-cmpr9410-032-p4s2w25 + discourse + 0 + 0 + reason + + t-cmpr9410-032-p4s2w23 + + + + v#v-w568f1 + + + + a#a-cmpr9410-032-p4s2w15 + + a#a-cmpr9410-032-p4s2w14 + + + complex + používání + COND + + n.denot.neg + neut + sg + single + neg0 + + c + 12 + v#v-w4133f1 + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-cmpr9410-032-p4s2w16 + + complex + biohrnec + PAT + + n.denot + inan + sg + single + + f + 13 + + + t-cmpr9410-032-p4s1w15 + GEN + + + + + + + + a#a-cmpr9410-032-p4s2w19 + + a#a-cmpr9410-032-p4s2w18 + + + complex + spálení + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 16 + v#v-w6309f1 + + + qcomplex + 1 + #Gen + ACT + t + 15 + + + + a#a-cmpr9410-032-p4s2w21 + + complex + lak + PAT + + n.denot + inan + sg + single + + f + 17 + + + t-cmpr9410-032-p4s2w16 + WHOLE_PART + + + + + + a#a-cmpr9410-032-p4s2w20 + + complex + povrchový + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + + + + + + + a#a-cmpr9410-032-p4s2w25 + + a#a-cmpr9410-032-p4s2w24 + + + complex + uvolňovat_se + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w7464f1 + + + + a#a-cmpr9410-032-p4s2w27 + + complex + sloučenina + ACT + + n.denot + fem + pl + single + + f + 21 + + + + a#a-cmpr9410-032-p4s2w29 + + coap + a + CONJ + 23 + + + + a#a-cmpr9410-032-p4s2w28 + + complex + chróm + APP + 1 + + n.denot + inan + sg + single + + f + 22 + + + + a#a-cmpr9410-032-p4s2w30 + + complex + olovo + APP + 1 + + n.denot + neut + sg + single + + f + 24 + + + + + + a#a-cmpr9410-032-p4s2w26 + + complex + bezpečný + RSTR + + adj.denot + pos + neg1 + + f + 25 + + + + a#a-cmpr9410-032-p4s2w41 + + coap + #Comma + CONJ + 35 + + + + a#a-cmpr9410-032-p4s2w32 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 26 + + t-cmpr9410-032-p4s2w27 + + + + + a#a-cmpr9410-032-p4s2w33 + + complex + mít + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 27 + v#v-w1855f8 + + + + a#a-cmpr9410-032-p4s2w35 + + complex + účinek + CPHR + + n.denot + inan + pl + single + + f + 29 + v#v-w6998f1 + + + qcomplex + 1 + #QCor + ACT + t + 28 + + t-cmpr9410-032-p4s2w32 + + + + + a#a-cmpr9410-032-p4s2w34 + + complex + karcinogenní + RSTR + + adj.denot + pos + neg0 + + f + 30 + + + + + + + + a#a-cmpr9410-032-p4s2w37 + + complex + způsobovat + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 31 + v#v-w9851f1 + + + + a#a-cmpr9410-032-p4s2w40 + + complex + vada + PAT + + n.denot + fem + pl + single + + f + 32 + + + + a#a-cmpr9410-032-p4s2w39 + + complex + genetický + RSTR + + adj.denot + pos + neg0 + + f + 33 + + + + a#a-cmpr9410-032-p4s2w38 + + complex + vývojový + RSTR + + adj.denot + pos + neg0 + + f + 34 + + + + + + + + a#a-cmpr9410-032-p4s2w43 + + complex + působit + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 36 + v#v-w5388f3 + + + + a#a-cmpr9410-032-p4s2w42 + + complex + škodlivý + MANN + + adj.denot + pos + neg0 + + f + 37 + + + + a#a-cmpr9410-032-p4s2w50 + + coap + #Comma + CONJ + 42 + + + + a#a-cmpr9410-032-p4s2w46 + + a#a-cmpr9410-032-p4s2w44 + + + complex + systém + PAT + 1 + + n.denot + inan + sg + single + + f + 38 + + + + a#a-cmpr9410-032-p4s2w45 + + complex + nervový + RSTR + + adj.denot + pos + neg0 + + f + 39 + + + + + + a#a-cmpr9410-032-p4s2w49 + + a#a-cmpr9410-032-p4s2w44 + + + complex + trakt + PAT + 1 + + n.denot + inan + sg + single + + f + 40 + + + + a#a-cmpr9410-032-p4s2w48 + + complex + trávící + RSTR + + adj.denot + pos + neg0 + + f + 41 + + + + + + a#a-cmpr9410-032-p4s2w52 + + coap + i + CONJ + 1 + 44 + + + + a#a-cmpr9410-032-p4s2w51 + + a#a-cmpr9410-032-p4s2w44 + + + complex + céva + PAT + 1 + + n.denot + fem + sg + group + + f + 43 + + + + a#a-cmpr9410-032-p4s2w53 + + a#a-cmpr9410-032-p4s2w44 + + + complex + ledvina + PAT + 1 + + n.denot + fem + sg + group + + f + 45 + + + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-032-p5s1 + 0 + + + + a#a-cmpr9410-032-p5s1w6 + + a#a-cmpr9410-032-p5s1w5 + + + complex + podpořit + PRED + enunc + + v + decl + sim + cpl + it0 + pas + asserted + + f + 4 + v#v-w3623f1 + + + + a#a-cmpr9410-032-p5s1w1 + + complex + útok + PAT + + n.denot + inan + sg + single + + c + 1 + + + t-cmpr9410-032-p4s2w25 + SPEC + + + + + + a#a-cmpr9410-032-p5s1w3 + + a#a-cmpr9410-032-p5s1w2 + + + complex + zdraví + PAT + + n.denot + neut + sg + single + + f + 2 + + + + a#a-cmpr9410-032-p5s1w4 + + complex + zákazník + APP + + n.denot + anim + pl + single + + f + 3 + + + t-cmpr9410-032-p3s3w25 + SPEC + + + + + + + + + + a#a-cmpr9410-032-p5s1w8 + + complex + útok + ACT + + n.denot + inan + sg + single + + t + 5 + + + + a#a-cmpr9410-032-p5s1w7 + + atom + i + RHEM + f + 6 + + + + a#a-cmpr9410-032-p5s1w10 + + a#a-cmpr9410-032-p5s1w9 + + + complex + peněženka + PAT + + n.denot + fem + sg + single + + f + 7 + + + + + + + + + a#a-cmpr9410-032-p5s2 + 0 + + + + a#a-cmpr9410-032-p5s2w21 + + coap + a + CONJ + 18 + + + + a#a-cmpr9410-032-p5s2w2 + + complex + nabízet + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w1949f1 + + + + a#a-cmpr9410-032-p5s2w1 + + complex + Axiom + ACT + + n.denot + inan + sg + single + + c + 1 + + + t-cmpr9410-032-p4s1w18 + SPEC + + + + + + a#a-cmpr9410-032-p5s2w3 + + complex + biohrnec + PAT + + n.denot + inan + sg + single + + t + 2 + + + t-cmpr9410-032-p4s2w16 + GEN + + + + + qcomplex + 1 + #Gen + ADDR + t + 3 + + + + a#a-cmpr9410-032-p5s2w5 + + complex + rozumět + PAR + imper + 1 + + v + decl + nil + proc + it0 + act + appeal + + f + 6 + v#v-w5804f2 + + + complex + 1 + #PersPron + ACT + 1 + + n.pron.def.pers + nr + pl + 2 + basic + + t + 5 + + + t-cmpr9410-032-p4s1a0 + SET_SUB + + + + + + a#a-cmpr9410-032-p5s2w9 + + complex + hrnec + EFF + + + other + cmpr9410-032-p5s2w9 + + + 1 + + n.denot + inan + sg + single + + t + 7 + + + t-cmpr9410-032-p5s2w3 + SPEC + + + + + + a#a-cmpr9410-032-p5s2w7 + + complex + nemoc + ID + enunc + + + other + cmpr9410-032-p5s2w9 + + + 1 + + n.denot + fem + sg + single + + f + 8 + + + + + + + + a#a-cmpr9410-032-p5s2w14 + + a#a-cmpr9410-032-p5s2w12 + + + complex + koruna + MEANS + + n.denot + fem + pl + single + + t + 9 + + + + a#a-cmpr9410-032-p5s2w13 + + complex + 599 + RSTR + + adj.quant.def + basic + + f + 10 + + + + + + + + a#a-cmpr9410-032-p5s2w2 + + complex + 1 + nabízet + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 14 + v#v-w1949f1 + + + + a#a-cmpr9410-032-p5s2w16 + + complex + Jana + ACT + 1 + + n.denot + fem + sg + single + + c + 11 + + + t-cmpr9410-032-p4s1a1 + SPEC + + + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 12 + + + t-cmpr9410-032-p5s2w9 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 13 + + + + a#a-cmpr9410-032-p5s2w20 + + a#a-cmpr9410-032-p5s2w18 + + + complex + koruna + MEANS + + n.denot + fem + pl + single + + t + 15 + + + + a#a-cmpr9410-032-p5s2w17 + + atom + + RHEM + f + 16 + + + + a#a-cmpr9410-032-p5s2w19 + + complex + 945 + RSTR + + adj.quant.def + basic + + f + 17 + + + + + + + + a#a-cmpr9410-032-p5s2w29 + + a#a-cmpr9410-032-p5s2w23 + + + complex + cenit_si + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 23 + + + t-cmpr9410-032-p5s2a1 + discourse + 0 + 0 + conj + + t-cmpr9410-032-p5s2w21 + + + + v#v-w253f1 + + + + a#a-cmpr9410-032-p5s2w22 + + complex + Markest + ACT + + n.denot + inan + sg + single + + c + 19 + + + t-cmpr9410-032-p4s1w23 + SPEC + + + + + + a#a-cmpr9410-032-p5s2w28 + + complex + solidnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + c + 21 + + + + a#a-cmpr9410-032-p5s2w24 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 20 + + t-cmpr9410-032-p5s2w22 + + + + + a#a-cmpr9410-032-p5s2w26 + + complex + ne + PAR + enunc + 1 + + n.denot + nr + nr + single + + f + 22 + + + + + + a#a-cmpr9410-032-p5s2w32 + + a#a-cmpr9410-032-p5s2w30 + + + complex + koruna + EXT + basic + + n.denot + fem + pl + single + + t + 24 + + + + a#a-cmpr9410-032-p5s2w31 + + complex + 1209 + RSTR + + adj.quant.def + basic + + f + 25 + + + + + + + + + + + a#a-cmpr9410-032-p5s3 + 0 + + + zásilkový obchod + lexeme + + t-cmpr9410-032-p5s3w9 + t-cmpr9410-032-p5s3a2 + + + + + + + a#a-cmpr9410-032-p5s3w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f2 + + + + a#a-cmpr9410-032-p5s3w3 + + complex + rozdíl + ACT + + n.denot + inan + sg + single + + c + 1 + + + + a#a-cmpr9410-032-p5s3w1 + + atom + ještě + RHEM + f + 2 + + + + a#a-cmpr9410-032-p5s3w2 + + complex + výrazný + RSTR + + adj.denot + comp + neg0 + + f + 3 + + + + + + a#a-cmpr9410-032-p5s3w6 + + a#a-cmpr9410-032-p5s3w5 + + + complex + srovnání + LOC + basic + + n.denot.neg + neut + sg + single + neg0 + + f + 6 + v#v-w6446f1 + + + qcomplex + 1 + #Rcp + EFF + t + 5 + + t-cmpr9410-032-p5s3w7 + + + + + a#a-cmpr9410-032-p5s3w7 + + complex + cena + PAT + + n.denot + fem + pl + single + + t + 7 + + + + a#a-cmpr9410-032-p5s3w10 + + coap + a + CONJ + 10 + + + + a#a-cmpr9410-032-p5s3w12 + + a#a-cmpr9410-032-p5s3w8 + + + complex + 1 + obchod + ACT + 1 + + n.denot + inan + sg + single + + t + 8 + + + + a#a-cmpr9410-032-p5s3w9 + + complex + zásilkový + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-cmpr9410-032-p5s3w12 + + a#a-cmpr9410-032-p5s3w8 + + + complex + obchod + ACT + 1 + + n.denot + inan + sg + single + + t + 11 + + + t-cmpr9410-032-p5s3a2 + CONTRAST + + + + + + a#a-cmpr9410-032-p5s3w11 + + complex + klasický + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + + + a#a-cmpr9410-032-p5s4 + 0 + + + + a#a-cmpr9410-032-p5s4w23 + + coap + ale + ADVS + 21 + + + + a#a-cmpr9410-032-p5s4w15 + + coap + #Comma + CONJ + 1 + 11 + + + + a#a-cmpr9410-032-p5s4w1 + + atom + například + RHEM + t + 1 + + + + a#a-cmpr9410-032-p5s4w4 + + a#a-cmpr9410-032-p5s4w2 + + + complex + obchod + LOC + basic + + n.denot + inan + pl + single + + c + 2 + + + t-cmpr9410-032-p5s3w12 + WHOLE_PART + + + + + + a#a-cmpr9410-032-p5s4w3 + + complex + pražský + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + a#a-cmpr9410-032-p5s4w5 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f20 + + + + a#a-cmpr9410-032-p5s4w7 + + a#a-cmpr9410-032-p5s4w6 + + + dphr + k_mání + DPHR + f + 5 + + + + a#a-cmpr9410-032-p5s4w9 + + complex + kráječ + ACT + + n.denot + inan + sg + single + + f + 6 + + + + a#a-cmpr9410-032-p5s4w11 + + a#a-cmpr9410-032-p5s4w10 + + + complex + vajíčko + AIM + + n.denot + neut + pl + single + + f + 7 + + + + a#a-cmpr9410-032-p5s4w8 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-cmpr9410-032-p5s4w14 + + a#a-cmpr9410-032-p5s4w12 + + + complex + koruna + EXT + basic + + n.denot + fem + pl + single + + t + 9 + + + + a#a-cmpr9410-032-p5s4w13 + + complex + 67 + RSTR + + adj.quant.def + basic + + f + 10 + + + + + + + + a#a-cmpr9410-032-p5s4w5 + + complex + 1 + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 15 + v#v-w243f20 + + + + a#a-cmpr9410-032-p5s4w9 + + complex + 1 + kráječ + ACT + + n.denot + inan + sg + single + + t + 13 + + + + a#a-cmpr9410-032-p5s4w16 + + complex + zahraniční + RSTR + + adj.denot + pos + neg0 + + c + 12 + + + + + + a#a-cmpr9410-032-p5s4w7 + + a#a-cmpr9410-032-p5s4w6 + + + dphr + 1 + k_mání + DPHR + t + 14 + + + + a#a-cmpr9410-032-p5s4w19 + + coap + a + CONJ + 18 + + + + a#a-cmpr9410-032-p5s4w21 + + a#a-cmpr9410-032-p5s4w17 + + + complex + 1 + koruna + EXT + basic + 1 + + n.denot + fem + pl + single + + t + 16 + + + + a#a-cmpr9410-032-p5s4w18 + + complex + 75 + RSTR + + adj.quant.def + basic + + f + 17 + + + + + + a#a-cmpr9410-032-p5s4w21 + + a#a-cmpr9410-032-p5s4w17 + + + complex + koruna + EXT + basic + 1 + + n.denot + fem + pl + single + + t + 19 + + + + a#a-cmpr9410-032-p5s4w20 + + complex + 95 + RSTR + + adj.quant.def + basic + + f + 20 + + + + + + + + + + + + a#a-cmpr9410-032-p5s4w30 + + a#a-cmpr9410-032-p5s4w25 + + + complex + cenit_si + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 26 + + + t-cmpr9410-032-p5s4w15 + discourse + 0 + 0 + opp + + t-cmpr9410-032-p5s4w23 + + + + v#v-w253f1 + + + + a#a-cmpr9410-032-p5s4w24 + + complex + Jana + ACT + 1 + + n.denot + fem + sg + single + + c + 22 + + + t-cmpr9410-032-p5s3a2 + WHOLE_PART + + + + + + a#a-cmpr9410-032-p5s4w27 + + complex + pomocník + PAT + + n.denot + anim + sg + single + + t + 25 + + + t-cmpr9410-032-p5s4w9 + GEN + + + + + + a#a-cmpr9410-032-p5s4w26 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 23 + + + + a#a-cmpr9410-032-p5s4w29 + + a#a-cmpr9410-032-p5s4w28 + + + complex + kuchyně + DIR3 + basic + + n.denot + fem + sg + single + + t + 24 + + + + + + a#a-cmpr9410-032-p5s4w33 + + a#a-cmpr9410-032-p5s4w31 + + + complex + koruna + EXT + basic + + n.denot + fem + pl + single + + t + 27 + + + + a#a-cmpr9410-032-p5s4w32 + + complex + 345 + RSTR + + adj.quant.def + basic + + f + 28 + + + + + + + + + + + a#a-cmpr9410-032-p6s1 + 0 + + + + a#a-cmpr9410-032-p6s1w3 + + a#a-cmpr9410-032-p6s1w2 + + + complex + chránit + PRED + enunc + + v + poss + sim + proc + it0 + act + asserted + + f + 3 + v#v-w1189f1 + + + + a#a-cmpr9410-032-p6s1w1 + + complex + kdo + ACT + + n.pron.indef + anim + sg + negat + 3 + + t + 1 + + + atom + 1 + #Neg + RHEM + f + 2 + + + + a#a-cmpr9410-032-p6s1w4 + + complex + zákazník + PAT + + n.denot + anim + sg + single + + f + 4 + + + t-cmpr9410-032-p5s1w4 + GEN + + + + + + a#a-cmpr9410-032-p6s1w10 + + coap + + OPER + 8 + + + + a#a-cmpr9410-032-p6s1w7 + + a#a-cmpr9410-032-p6s1w5 + + + complex + důvěřivost + EFF + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 5 + + + + a#a-cmpr9410-032-p6s1w6 + + complex + přílišný + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-cmpr9410-032-p6s1w9 + + a#a-cmpr9410-032-p6s1w5 + + + complex + naivnost + EFF + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 7 + + + + a#a-cmpr9410-032-p6s1w11 + + a#a-cmpr9410-032-p6s1w5 + + + complex + hloupost + EFF + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 9 + + + + + + a#a-cmpr9410-032-p6s1w13 + + a#a-cmpr9410-032-p6s1w12 + + + complex + případ + COND + + n.denot + inan + sg + single + + f + 10 + + + + a#a-cmpr9410-032-p6s1w16 + + a#a-cmpr9410-032-p6s1w15 + + + complex + být + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w243f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 11 + + + t-cmpr9410-032-p6s1w4 + SPEC + + + + + + a#a-cmpr9410-032-p6s1w17 + + complex + ochotný + PAT + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-cmpr9410-032-p6s1w18 + + complex + zaplatit + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 15 + v#v-w9020f2 + + + qcomplex + 1 + #Cor + ACT + t + 14 + + t-cmpr9410-032-p6s1a1 + + + + + a#a-cmpr9410-032-p6s1w21 + + a#a-cmpr9410-032-p6s1w19 + + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 16 + + + t-cmpr9410-032-p5s3a2 + REST + + + + + + a#a-cmpr9410-032-p6s1w20 + + complex + zaslaný + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + a#a-cmpr9410-032-p6s1w22 + + complex + hodně + EXT + basic + + adj.quant.grad + comp + basic + + f + 18 + + + + a#a-cmpr9410-032-p6s1w26 + + a#a-cmpr9410-032-p6s1w24 + + + complex + stát + CPR + than + + v + decl + sim + proc + it0 + act + asserted + + f + 21 + v#v-w6492f3 + + + + a#a-cmpr9410-032-p6s1w25 + + complex + co + PAT + + n.pron.indef + neut + sg + inter + 3 + + t + 19 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + neut + sg + 3 + basic + + t + 20 + + + t-cmpr9410-032-p6s1w21 + SPEC + + + + + + a#a-cmpr9410-032-p6s1w29 + + a#a-cmpr9410-032-p6s1w27 + + + complex + prodejna + LOC + basic + + n.denot + fem + pl + single + + t + 22 + + + t-cmpr9410-032-p5s3w12 + SPEC + + + + + + a#a-cmpr9410-032-p6s1w28 + + complex + běžný + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-032-p6s2 + 0 + + + trestný čin + lexeme + + t-cmpr9410-032-p6s2w10 + t-cmpr9410-032-p6s2w11 + + + + + + + a#a-cmpr9410-032-p6s2w6 + + complex + docházet + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + t-cmpr9410-032-p6s1w3 + discourse + 0 + 0 + opp + + t-cmpr9410-032-p6s2w7 + + + + v#v-w568f1 + + + + a#a-cmpr9410-032-p6s2w7 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-032-p6s2w2 + + a#a-cmpr9410-032-p6s2w1 + + + complex + výrobek + REG + + n.denot + inan + pl + single + + c + 2 + + + + a#a-cmpr9410-032-p6s2w3 + + complex + ohrožující + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-cmpr9410-032-p6s2w4 + + complex + zdraví + PAT + + n.denot + neut + sg + single + + f + 4 + + + + a#a-cmpr9410-032-p6s2w5 + + complex + spotřebitel + APP + + n.denot + anim + pl + single + + f + 5 + + + t-cmpr9410-032-p6s1a2 + SPEC + + + + + + + + + + + + a#a-cmpr9410-032-p6s2w9 + + a#a-cmpr9410-032-p6s2w8 + + + complex + spáchání + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 8 + v#v-w6306f1 + + + qcomplex + 1 + #Gen + ACT + t + 7 + + + + a#a-cmpr9410-032-p6s2w11 + + complex + čin + PAT + + n.denot + inan + sg + single + + f + 9 + + + + a#a-cmpr9410-032-p6s2w10 + + complex + trestný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-cmpr9410-032-p6s2w12 + + complex + ohrožování + ID + enunc + + n.denot.neg + neut + sg + single + neg0 + + f + 12 + v#v-w3019f1 + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-cmpr9410-032-p6s2w13 + + complex + zdraví + PAT + + n.denot + neut + sg + single + + f + 13 + + + + a#a-cmpr9410-032-p6s2w15 + + coap + a + CONJ + 15 + + + + a#a-cmpr9410-032-p6s2w14 + + complex + potravina + MEANS + 1 + + n.denot + fem + pl + single + + f + 14 + + + + a#a-cmpr9410-032-p6s2w17 + + complex + potřeba + MEANS + 1 + + n.denot + fem + pl + single + + f + 16 + + + + a#a-cmpr9410-032-p6s2w16 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + + + + + a#a-cmpr9410-032-p6s3 + 0 + + + trestný čin + lexeme + + t-cmpr9410-032-p6s3w1 + t-cmpr9410-032-p6s3w2 + + + + + + + a#a-cmpr9410-032-p6s3w5 + + a#a-cmpr9410-032-p6s3w3 + + + complex + dopouštět_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + + + t-cmpr9410-032-p6s2w6 + discourse + 0 + 0 + opp + + t-cmpr9410-032-p6s3w4 + + + + v#v-w674f1 + + + + a#a-cmpr9410-032-p6s3w4 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-032-p6s3w2 + + complex + čin + PAT + + n.denot + inan + sg + single + + t + 3 + + + + a#a-cmpr9410-032-p6s3w1 + + complex + trestný + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + + a#a-cmpr9410-032-p6s3w6 + + atom + i + RHEM + f + 5 + + + + a#a-cmpr9410-032-p6s3w20 + + coap + nebo + DISJ + 13 + + + + a#a-cmpr9410-032-p6s3w10 + + a#a-cmpr9410-032-p6s3w7 + + + complex + poškozovat + ACT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w4051f1 + + + + a#a-cmpr9410-032-p6s3w11 + + complex + spotřebitel + PAT + + n.denot + anim + sg + single + + t + 6 + + + t-cmpr9410-032-p6s2w5 + GEN + + + + + + a#a-cmpr9410-032-p6s3w9 + + complex + kdo + ACT + + n.pron.indef + anim + sg + inter + 3 + + t + 7 + + + + a#a-cmpr9410-032-p6s3w16 + + a#a-cmpr9410-032-p6s3w12 + a#a-cmpr9410-032-p6s3w14 + + + complex + šidit + MEANS + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w6712f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 9 + + + t-cmpr9410-032-p6s3w9 + SPEC + + + + + + a#a-cmpr9410-032-p6s3w15 + + complex + #PersPron + PAT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 10 + + + t-cmpr9410-032-p6s3w11 + SPEC + + + + + + a#a-cmpr9410-032-p6s3w18 + + a#a-cmpr9410-032-p6s3w17 + + + complex + jakost + REG + + n.denot + fem + sg + single + + f + 12 + + + + + + + + a#a-cmpr9410-032-p6s3w29 + + coap + a + CONJ + 1 + 20 + + + t-cmpr9410-032-p6s3w10 + discourse + 0 + 0 + conjalt + + t-cmpr9410-032-p6s3w20 + + + + + + + a#a-cmpr9410-032-p6s3w21 + + complex + kdo + ACT + + n.pron.indef + anim + sg + inter + 3 + + t + 14 + + + + a#a-cmpr9410-032-p6s3w22 + + a#a-cmpr9410-032-p6s3w7 + + + complex + uvést + ACT + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 15 + v#v-w7449f5 + + + + a#a-cmpr9410-032-p6s3w25 + + a#a-cmpr9410-032-p6s3w23 + + + complex + rozsah + MANN + + n.denot + inan + sg + single + + f + 16 + + + + a#a-cmpr9410-032-p6s3w24 + + complex + velký + RSTR + + adj.denot + acomp + neg0 + + f + 17 + + + + + + a#a-cmpr9410-032-p6s3w27 + + a#a-cmpr9410-032-p6s3w26 + + + complex + trh + DIR3 + basic + + n.denot + inan + sg + single + + f + 18 + + + + a#a-cmpr9410-032-p6s3w28 + + complex + výrobek + PAT + + n.denot + inan + pl + single + + f + 19 + + + + + + a#a-cmpr9410-032-p6s3w31 + + a#a-cmpr9410-032-p6s3w7 + + + complex + zatajit + ACT + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 22 + + + t-cmpr9410-032-p6s3w22 + discourse + 0 + 0 + conj + + t-cmpr9410-032-p6s3w29 + + + + v#v-w9208f3 + + + + a#a-cmpr9410-032-p6s3w30 + + atom + přitom + PREC + t + 21 + + + + a#a-cmpr9410-032-p6s3w34 + + complex + vada + PAT + + n.denot + fem + pl + single + + f + 24 + + + + a#a-cmpr9410-032-p6s3w32 + + complex + #PersPron + APP + + n.pron.def.pers + inan + pl + 3 + basic + + t + 23 + + + t-cmpr9410-032-p6s3w28 + SPEC + + + + + + a#a-cmpr9410-032-p6s3w33 + + complex + podstatný + RSTR + + adj.denot + pos + neg0 + + f + 25 + + + + + + + + + + + + + + + a#a-cmpr9410-032-p6s4 + 0 + + + ochrana spotřebitele + lexeme + + t-cmpr9410-032-p6s4w6 + t-cmpr9410-032-p6s4w7 + + + + ochrana spotřebitele + lexeme + + t-cmpr9410-032-p6s4w26 + t-cmpr9410-032-p6s4w27 + + + + + + + a#a-cmpr9410-032-p6s4w12 + + coap + ale + ADVS + 10 + + + + a#a-cmpr9410-032-p6s4w9 + + atom + sice + CM + 1 + + + + a#a-cmpr9410-032-p6s4w8 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w243f1 + + + + a#a-cmpr9410-032-p6s4w1 + + complex + volání + ACT + + n.denot.neg + neut + sg + single + neg0 + + c + 3 + v#v-w7682f1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-cmpr9410-032-p6s4w4 + + a#a-cmpr9410-032-p6s4w2 + + + complex + zákon + PAT + + n.denot + inan + sg + single + + f + 4 + + + + a#a-cmpr9410-032-p6s4w6 + + a#a-cmpr9410-032-p6s4w5 + + + complex + ochrana + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-cmpr9410-032-p6s4w7 + + complex + spotřebitel + PAT + + n.denot + anim + sg + single + + f + 6 + + + t-cmpr9410-032-p6s3w15 + GEN + + + + + + + + a#a-cmpr9410-032-p6s4w3 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + a#a-cmpr9410-032-p6s4w10 + + complex + oprávněný + PAT + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-cmpr9410-032-p6s4w13 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + + + t-cmpr9410-032-p6s4w8 + discourse + 0 + 0 + opp + + t-cmpr9410-032-p6s4w12 + t-cmpr9410-032-p6s4w9 + + + + v#v-w243f3 + + + + a#a-cmpr9410-032-p6s4w14 + + complex + třeba + CPHR + + n.denot + neut + sg + single + + f + 13 + + + qcomplex + 1 + #Gen + BEN + nr + t + 12 + + + + + + a#a-cmpr9410-032-p6s4w15 + + atom + zároveň + RHEM + f + 14 + + + + a#a-cmpr9410-032-p6s4w16 + + complex + vzít + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 16 + v#v-w8657f1 + + + qcomplex + 1 + #Cor + ACT + t + 15 + + t-cmpr9410-032-p6s4a1 + + + + + a#a-cmpr9410-032-p6s4w18 + + a#a-cmpr9410-032-p6s4w17 + + + dphr + v_úvahu + DPHR + f + 17 + + + + a#a-cmpr9410-032-p6s4w23 + + a#a-cmpr9410-032-p6s4w20 + + + complex + být + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w243f2 + + + + a#a-cmpr9410-032-p6s4w21 + + atom + i + RHEM + t + 18 + + + + a#a-cmpr9410-032-p6s4w22 + + complex + dnes + TWHEN + basic + + adv.denot.ngrad.nneg + + c + 19 + + + + a#a-cmpr9410-032-p6s4w24 + + complex + zákon + ACT + + n.denot + inan + pl + single + + f + 23 + + + t-cmpr9410-032-p6s4w4 + CONTRAST + + + + + + a#a-cmpr9410-032-p6s4w26 + + a#a-cmpr9410-032-p6s4w25 + + + complex + ochrana + PAT + + n.denot + fem + sg + single + + t + 22 + + + t-cmpr9410-032-p6s4w6 + SPEC + + + + + + a#a-cmpr9410-032-p6s4w27 + + complex + spotřebitel + PAT + + n.denot + anim + sg + single + + t + 21 + + + t-cmpr9410-032-p6s4w7 + GEN + + + + + + + + + + + + + + + + + + + a#a-cmpr9410-032-p7s1 + 0 + + + + a#a-cmpr9410-032-p7s1w7 + + coap + a + CONJ + 8 + + + + a#a-cmpr9410-032-p7s1w4 + + atom + však + PREC + t + 1 + + + + a#a-cmpr9410-032-p7s1w1 + + complex + řada + ACT + + n.denot + fem + sg + single + + c + 2 + + + + a#a-cmpr9410-032-p7s1w2 + + complex + člověk + MAT + + n.denot + anim + pl + single + + f + 3 + + + t-cmpr9410-032-p6s4w27 + SPEC + + + + + + + + a#a-cmpr9410-032-p7s1w5 + + a#a-cmpr9410-032-p7s1w3 + a#a-cmpr9410-032-p7s1w6 + + + complex + soudit_se + PRED + enunc + 1 + + v + vol + sim + proc + it0 + act + asserted + + f + 7 + + + t-cmpr9410-032-p6s4w13 + discourse + 0 + 0 + opp + + t-cmpr9410-032-p7s1w4 + + + + v#v-w6271f1 + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + atom + 1 + #Neg + RHEM + f + 6 + + + + + + a#a-cmpr9410-032-p7s1w9 + + atom + také + CM + 9 + + + + a#a-cmpr9410-032-p7s1w10 + + a#a-cmpr9410-032-p7s1w8 + + + complex + naletět + PRED + enunc + 1 + + v + vol + sim + cpl + it0 + act + asserted + + f + 11 + + + t-cmpr9410-032-p7s1w5 + discourse + 0 + 0 + conj + + t-cmpr9410-032-p7s1w7 + t-cmpr9410-032-p7s1w9 + + + + v#v-w2077f1 + + + atom + 1 + #Neg + RHEM + f + 10 + + + + + + + + + a#a-cmpr9410-032-p7s2 + 0 + + + zásilkový obchod + lexeme + + t-cmpr9410-032-p7s2w9 + t-cmpr9410-032-p7s2w10 + + + + + + + a#a-cmpr9410-032-p7s2w11 + + a#a-cmpr9410-032-p7s2w3 + a#a-cmpr9410-032-p7s2w2 + + + complex + vzít + PRED + enunc + + v + hrt + nil + cpl + it0 + act + potential + + f + 8 + v#v-w8657f1 + + + + a#a-cmpr9410-032-p7s2w1 + + complex + co + PAT + + n.pron.indef + neut + sg + inter + 3 + + t + 1 + + + + a#a-cmpr9410-032-p7s2w5 + + a#a-cmpr9410-032-p7s2w4 + + + complex + uvažování + COND + + n.denot.neg + neut + sg + single + neg0 + + t + 3 + v#v-w7430f1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-cmpr9410-032-p7s2w7 + + a#a-cmpr9410-032-p7s2w6 + + + complex + koupě + PAT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-cmpr9410-032-p7s2w10 + + a#a-cmpr9410-032-p7s2w8 + + + complex + obchod + MEANS + + n.denot + inan + sg + single + + f + 5 + + + t-cmpr9410-032-p5s3a2 + SPEC + + + + + + a#a-cmpr9410-032-p7s2w9 + + complex + zásilkový + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 7 + + + t-cmpr9410-032-p7s1w2 + SPEC + + + + + + a#a-cmpr9410-032-p7s2w13 + + a#a-cmpr9410-032-p7s2w12 + + + dphr + v_úvahu + DPHR + f + 9 + + + + + + + a#a-cmpr9410-032-p8s1 + 0 + + + státní zkušebna + lexeme + + t-cmpr9410-032-p8s1w12 + t-cmpr9410-032-p8s1w13 + + + + + + + a#a-cmpr9410-032-p8s1w2 + + complex + vyžadovat + PRED + enunc + + v + decl + nil + proc + it0 + act + nil + + f + 2 + + + list + 0 + + a#a-cmpr9410-032-p8s1w1 + + + + t-cmpr9410-032-p7s2w11 + discourse + 0 + 0 + spec + + a#a-cmpr9410-032-p7s2w14 + + + + v#v-w8628f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-cmpr9410-032-p8s1w3 + + complex + kdy + TWHEN + basic + + adv.pron.indef + total1 + + f + 3 + + + + a#a-cmpr9410-032-p8s1w5 + + a#a-cmpr9410-032-p8s1w4 + + + complex + výrobek + REG + + n.denot + inan + sg + single + + f + 4 + + + + a#a-cmpr9410-032-p8s1w6 + + complex + zkouška + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-cmpr9410-032-p8s1w9 + + coap + a + CONJ + 8 + + + + a#a-cmpr9410-032-p8s1w8 + + complex + závadnost + PAT + 1 + + n.denot.neg + fem + sg + single + neg1 + + f + 6 + + + + a#a-cmpr9410-032-p8s1w7 + + complex + zdravotní + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-cmpr9410-032-p8s1w10 + + complex + bezpečnost + PAT + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 9 + + + + + + a#a-cmpr9410-032-p8s1w13 + + a#a-cmpr9410-032-p8s1w11 + + + complex + zkušebna + LOC + basic + + n.denot + fem + sg + single + + f + 10 + + + + a#a-cmpr9410-032-p8s1w12 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + a#a-cmpr9410-032-p8s1w17 + + complex + vyplývat + PAR + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w8207f1 + + + + a#a-cmpr9410-032-p8s1w15 + + complex + jak + MANN + 1 + + adv.pron.indef + inter + + t + 12 + + + + a#a-cmpr9410-032-p8s1w16 + + complex + ten + ACT + 1 + + n.pron.def.demon + neut + sg + + t + 13 + + + t-cmpr9410-032-p8s1w6 + SPEC + + + + + + a#a-cmpr9410-032-p8s1w19 + + a#a-cmpr9410-032-p8s1w18 + + + complex + zákon + PAT + 1 + + n.denot + inan + sg + single + + f + 15 + + + t-cmpr9410-032-p6s4w24 + SPEC + + + + + + + + + + + a#a-cmpr9410-032-p9s1 + 0 + + + + a#a-cmpr9410-032-p9s1w18 + + coap + takže + CSQ + 13 + + + t-cmpr9410-032-p8s1w2 + list + 0 + + a#a-cmpr9410-032-p9s1w1 + + + + + + + a#a-cmpr9410-032-p9s1w2 + + complex + vycházet + PRED + enunc + 1 + + v + decl + nil + proc + it0 + act + nil + + f + 2 + v#v-w7951f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-cmpr9410-032-p9s1w14 + + a#a-cmpr9410-032-p9s1w6 + a#a-cmpr9410-032-p9s1w3 + a#a-cmpr9410-032-p9s1w4 + + + complex + být + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w243f1 + + + + a#a-cmpr9410-032-p9s1w7 + + complex + úkryt + ACT + + n.denot + inan + sg + single + + c + 3 + + + + + a#a-cmpr9410-032-p9s1w8 + + + list + 1 + #Forn + LOC + nr + f + 4 + + + + a#a-cmpr9410-032-p9s1w13 + + fphr + Box + FPHR + 5 + + + + a#a-cmpr9410-032-p9s1w9 + + fphr + Post + FPHR + 6 + + + + a#a-cmpr9410-032-p9s1w10 + + fphr + #Period + FPHR + 7 + + + + a#a-cmpr9410-032-p9s1w11 + + fphr + Office + FPHR + 8 + + + + a#a-cmpr9410-032-p9s1w12 + + fphr + #Period + FPHR + 9 + + + + + + + + a#a-cmpr9410-032-p9s1w16 + + complex + dokonalý + PAT + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-cmpr9410-032-p9s1w15 + + complex + téměř + EXT + basic + + adv.denot.ngrad.nneg + + f + 12 + + + + + + + + + + a#a-cmpr9410-032-p9s1w22 + + complex + jít + PRED + enunc + 1 + + v + decl + post + proc + it0 + act + asserted + + f + 15 + v#v-w1339f8 + + + qcomplex + 1 + #Gen + BEN + nr + t + 14 + + + + a#a-cmpr9410-032-p9s1w23 + + complex + zjistit + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 20 + v#v-w9515f1 + + + + a#a-cmpr9410-032-p9s1w19 + + complex + adresa + PAT + + n.denot + fem + sg + single + + c + 16 + + + + a#a-cmpr9410-032-p9s1w21 + + complex + podvodník + APP + + n.denot + anim + pl + single + + f + 17 + + + + a#a-cmpr9410-032-p9s1w20 + + complex + případný + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + + + + qcomplex + 1 + #Cor + ACT + t + 19 + + t-cmpr9410-032-p9s1a10 + + + + + a#a-cmpr9410-032-p9s1w24 + + atom + jen + RHEM + f + 21 + + + + a#a-cmpr9410-032-p9s1w27 + + a#a-cmpr9410-032-p9s1w25 + + + complex + obtíž + ACMP + basic + + n.denot + fem + pl + single + + f + 22 + + + + a#a-cmpr9410-032-p9s1w26 + + complex + velký + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + + + + + + a#a-cmpr9410-032-p9s1w30 + + complex + připomínat + PAR + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 26 + v#v-w5228f1 + + + + a#a-cmpr9410-032-p9s1w29 + + complex + ten + PAT + 1 + + n.pron.def.demon + neut + sg + + t + 24 + + + t-cmpr9410-032-p9s1w22 + SPEC + + + + + complex + 1 + #PersPron + ACT + 1 + + n.pron.def.pers + nr + sg + 1 + basic + + t + 25 + + + t-cmpr9410-032-p4s1a0 + SET_SUB + + + + + + a#a-cmpr9410-032-p9s1w32 + + a#a-cmpr9410-032-p9s1w31 + + + complex + vrácení + CAUS + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 29 + v#v-w7701f1 + + + qcomplex + 1 + #Gen + ACT + 1 + t + 27 + + + qcomplex + 1 + #Gen + ADDR + 1 + t + 28 + + + + a#a-cmpr9410-032-p9s1w33 + + complex + peníze + PAT + 1 + + n.denot + inan + pl + single + + f + 30 + + + + + + + + + + + + + a#a-cmpr9410-032-p10s1 + 0 + + + + a#a-cmpr9410-032-p10s1w2 + + complex + nechat + PRED + enunc + + v + decl + nil + cpl + it0 + act + nil + + f + 3 + + + t-cmpr9410-032-p9s1w18 + list + 0 + + a#a-cmpr9410-032-p10s1w1 + + + + v#v-w2356f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + atom + 1 + #Neg + RHEM + f + 2 + + + + a#a-cmpr9410-032-p10s1w4 + + complex + nalákat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 6 + v#v-w2071f1 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-cmpr9410-032-p10s1w3 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 5 + + t-cmpr9410-032-p10s1a3 + + + + + a#a-cmpr9410-032-p10s1w7 + + a#a-cmpr9410-032-p10s1w5 + + + complex + dárek + MEANS + + n.denot + inan + sg + single + + f + 7 + + + t-cmpr9410-032-p3s4w7 + GEN + + + + + + a#a-cmpr9410-032-p10s1w6 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-cmpr9410-032-p10s1w9 + + a#a-cmpr9410-032-p10s1w8 + + + complex + objednávka + TWHEN + basic + + n.denot + fem + sg + single + + f + 10 + + + + a#a-cmpr9410-032-p10s1w10 + + complex + zboží + PAT + + n.denot + neut + sg + single + + t + 9 + + + t-cmpr9410-032-p8s1w5 + SPEC + + + + + + + + a#a-cmpr9410-032-p10s1w17 + + a#a-cmpr9410-032-p10s1w12 + a#a-cmpr9410-032-p10s1w14 + + + complex + zaplatit + CAUS + + v + decl + ant + cpl + it0 + act + asserted + + f + 14 + + + t-cmpr9410-032-p10s1w2 + discourse + 0 + 0 + f_reason + + a#a-cmpr9410-032-p10s1w12 + + + + v#v-w9020f1 + + + + a#a-cmpr9410-032-p10s1w13 + + complex + ten + PAT + + n.pron.def.demon + inan + sg + + t + 11 + + + t-cmpr9410-032-p10s1w7 + SPEC + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 2 + basic + + t + 12 + + + t-cmpr9410-032-p5s2a4 + GEN + + + + + + a#a-cmpr9410-032-p10s1w15 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 13 + + t-cmpr9410-032-p10s1a5 + + + + + a#a-cmpr9410-032-p10s1w16 + + atom + určitě + MOD + f + 15 + + + + + + + + + + + a#a-cmpr9410-032-p11s1 + 0 + + + + a#a-cmpr9410-032-p11s1w2 + + complex + věnovat + PRED + enunc + + v + decl + nil + proc + it0 + act + nil + + f + 2 + + + t-cmpr9410-032-p10s1w2 + list + 0 + + a#a-cmpr9410-032-p11s1w1 + + + + v#v-w7568f2 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-cmpr9410-032-p11s1w3 + + complex + čas + CPHR + + n.denot + inan + sg + single + + f + 4 + v#v-w302f1 + + + qcomplex + 1 + #QCor + ACT + t + 3 + + t-cmpr9410-032-p11s1a2 + + + + + + + a#a-cmpr9410-032-p11s1w5 + + a#a-cmpr9410-032-p11s1w4 + + + complex + průzkum + ADDR + + n.denot + inan + sg + single + + f + 5 + + + + a#a-cmpr9410-032-p11s1w7 + + a#a-cmpr9410-032-p11s1w6 + + + complex + obchod + LOC + basic + + n.denot + inan + pl + single + + f + 6 + + + t-cmpr9410-032-p6s1w29 + SPEC + + + + + + a#a-cmpr9410-032-p11s1w13 + + complex + stát + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w6492f1 + + + + a#a-cmpr9410-032-p11s1w10 + + atom + vlastně + ATT + t + 7 + + + + a#a-cmpr9410-032-p11s1w11 + + complex + zboží + ACT + + n.denot + neut + sg + single + + t + 8 + + + t-cmpr9410-032-p10s1w10 + SPEC + + + + + + a#a-cmpr9410-032-p11s1w12 + + complex + běžný + MANN + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-cmpr9410-032-p11s1w9 + + complex + kolik + EXT + nr + + adj.quant.indef + inter + basic + + f + 11 + + + + + + + + + + + a#a-cmpr9410-032-p12s1 + 0 + + + + a#a-cmpr9410-032-p12s1w5 + + complex + být + PRED + imper + + v + decl + nil + proc + it0 + act + appeal + + f + 7 + v#v-w243f1 + + + + a#a-cmpr9410-032-p12s1w2 + + coap + a + CONJ + 5 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + qcomplex + 1 + #Gen + PAT + t + 2 + + + + a#a-cmpr9410-032-p12s1w1 + + complex + shrnout + COND + 1 + + v + decl + nil + cpl + it0 + res1 + nil + + c + 3 + v#v-w6035f1 + + + + a#a-cmpr9410-032-p12s1w3 + + complex + podtrhnout + COND + 1 + + v + decl + nil + cpl + it0 + res1 + nil + + c + 4 + v#v-w3651f1 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 2 + basic + + t + 6 + + + t-cmpr9410-032-p10s1w15 + GEN + + + + + + a#a-cmpr9410-032-p12s1w6 + + complex + opatrný + PAT + + adj.denot + pos + neg0 + + f + 8 + + + + + + + a#a-cmpr9410-032-p13s1 + 0 + + + + a#a-cmpr9410-032-p13s1w2 + + complex + Lánský + DENOM + enunc + 1 + + n.denot + anim + sg + single + + f + 1 + + + t-cmpr9410-032-p9s1a6 + SPEC + + + + + + a#a-cmpr9410-032-p13s1w1 + + complex + Kamil + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + + + + diff --git a/demo/pdt_train/cmpr9410_032.txt b/demo/pdt_train/cmpr9410_032.txt new file mode 100644 index 00000000..23f7fdfb --- /dev/null +++ b/demo/pdt_train/cmpr9410_032.txt @@ -0,0 +1,23 @@ +"Nemoc - hrnec" a peníze + +Na lidské důvěřivosti se dá vydělat hodně, jak o tom svědčí činnost některých zásilkových služeb. Postup je přitom jednoduchý: Barevnými katalogy a slogany nalákat - vlastně přesvědčit - o výhodné koupi zboží. Aby akce dostala punc solidnosti, tak nechybí upozornění, že v případě nespokojenosti se zbožím ho mohou zákazníci vrátit a pak dostanou své peníze zpět. Jako vějička navíc působí i malý dárek a případná velká výhra ve formě zájezdu, auta či milionu korun. Kdo se nechal nachytat, ví o této praxi své. + +Známe příběhy o pánvích, které jsou zdraví škodlivé, spousta důvěřivých naletěla na biohrnce nabízené zásilkovými firmami Axiom, Jana a Markest. Institut pro testování a certifikaci ve Zlíně přitom kromě jiného zjistil, že při používání biohrnce dochází ke spálení povrchového laku, takže se uvolňují nebezpečné sloučeniny chromu a olova, které mají karcinogenní účinky, způsobují vývojové genetické vady, škodlivě působí na nervový systém, trávící trakt, cévy i ledviny. + +Útok na zdraví zákazníků je podpořen i útokem na peněženku. Axiom nabízí biohrnec (rozumějte "nemoc - hrnec") za 599 korun, Jana už za 945 korun a Markest si svoji (ne)solidnost cení na 1209 korun. Ještě výraznější rozdíl je ve srovnání cen mezi zásilkovým a klasickým obchodem. Například v pražských obchodech je k mání český kráječ na vajíčka za 67 korun, zahraniční za 75 a 95 korun, ale Jana si tohoto pomocníka do kuchyně cení na 345 korun. + +Nikdo nemůže chránit zákazníka před p důvěřivostí, naivností až hloupostí v případě, že je ochoten zaplatit za zaslané zboží více, než co stojí v běžných prodejnách. U výrobků ohrožujících zdraví spotřebitelů dochází však ke spáchání trestného činu ohrožování zdraví potravinami a jinými potřebami. Trestného činu se však dopouští i ten, kdo poškozuje spotřebitele tím, že ho šidí na jakosti, nebo kdo uvede ve větším rozsahu na trh výrobky a přitom zatají jejich podstatné vady. Volání po novém zákonu na ochranu spotřebitele je sice oprávněné, ale je třeba zároveň vzít v úvahu, že i dnes jsou zákony na ochranu spotřebitele. + +Řada lidí se však soudit nechce a nechce také naletět. Co by měli při uvažování o koupi prostřednictvím zásilkového obchodu vzít v úvahu: + +* Vyžadovat vždy u výrobku zkoušku zdravotní nezávadnosti a bezpečnosti ve státní zkušebně, jak to vyplývá ze zákona, + +* vycházet z toho, že úkryt za P.O. Box je téměř dokonalý, takže adresu případných podvodníků půjde zjistit jen s velkými obtížemi - to připomínám kvůli vrácení peněz, + +* nenechat se nalákat na malý dárek při objednávce zboží, protože ten jste si určitě zaplatili, + +* věnovat čas na průzkum v obchodech, kolik vlastně zboží běžně stojí. + +Shrnuto a podtrženo: Buďte opatrní. + +Kamil Lánský \ No newline at end of file diff --git a/demo/pdt_train/cmpr9410_032.w b/demo/pdt_train/cmpr9410_032.w new file mode 100644 index 00000000..1decc41e --- /dev/null +++ b/demo/pdt_train/cmpr9410_032.w @@ -0,0 +1,1629 @@ + + + + + + + csts + + + + +<mod>s +<txtype>inf +<genre>mix +<med>j +<temp>1994 +<authname>y +<opus>cmpr9410 +<id>032 + + + + 2 + + " + 1 + + + Nemoc + + + - + + + hrnec + 1 + + + " + + + a + + + peníze + + + + 3 + + Na + + + lidské + + + důvěřivosti + + + se + + + + + + vydělat + + + hodně + 1 + + + , + + + jak + + + o + + + tom + + + svědčí + + + činnost + + + některých + + + zásilkových + + + služeb + 1 + + + . + + + Postup + + + je + + + přitom + + + jednoduchý + 1 + + + : + + + Barevnými + + + katalogy + + + a + + + slogany + + + nalákat + + + - + + + vlastně + + + přesvědčit + + + - + + + o + + + výhodné + + + koupi + + + zboží + 1 + + + . + + + Aby + + + akce + + + dostala + + + punc + + + solidnosti + 1 + + + , + + + tak + + + nechybí + + + upozornění + 1 + + + , + + + že + + + v + + + případě + + + nespokojenosti + + + se + + + zbožím + + + ho + + + mohou + + + zákazníci + + + vrátit + + + a + + + pak + + + dostanou + + + své + + + peníze + + + zpět + 1 + + + . + + + Jako + + + vějička + + + navíc + + + působí + + + i + + + malý + + + dárek + + + a + + + případná + + + velká + + + výhra + + + ve + + + formě + + + zájezdu + 1 + + + , + + + auta + + + či + + + milionu + + + korun + 1 + + + . + + + Kdo + + + se + + + nechal + + + nachytat + 1 + + + , + + + + + + o + + + této + + + praxi + + + své + 1 + + + . + + + + 4 + + Známe + + + příběhy + + + o + + + pánvích + 1 + + + , + + + které + + + jsou + + + zdraví + + + škodlivé + 1 + + + , + + + spousta + + + důvěřivých + + + naletěla + + + na + + + biohrnce + + + nabízené + + + zásilkovými + + + firmami + + + Axiom + 1 + + + , + + + Jana + + + a + + + Markest + 1 + + + . + + + Institut + + + pro + + + testování + + + a + + + certifikaci + + + ve + + + Zlíně + + + přitom + + + kromě + + + jiného + + + zjistil + 1 + + + , + + + že + + + při + + + používání + + + biohrnce + + + dochází + + + ke + + + spálení + + + povrchového + + + laku + 1 + + + , + + + takže + + + se + + + uvolňují + + + nebezpečné + + + sloučeniny + + + chromu + + + a + + + olova + 1 + + + , + + + které + + + mají + + + karcinogenní + + + účinky + 1 + + + , + + + způsobují + + + vývojové + + + genetické + + + vady + 1 + + + , + + + škodlivě + + + působí + + + na + + + nervový + + + systém + 1 + + + , + + + trávící + + + trakt + 1 + + + , + + + cévy + + + i + + + ledviny + 1 + + + . + + + + 5 + + Útok + + + na + + + zdraví + + + zákazníků + + + je + + + podpořen + + + i + + + útokem + + + na + + + peněženku + 1 + + + . + + + Axiom + + + nabízí + + + biohrnec + + + ( + 1 + + + rozumějte + + + " + 1 + + + nemoc + + + - + + + hrnec + 1 + + + " + 1 + + + ) + + + za + + + 599 + + + korun + 1 + + + , + + + Jana + + + + + + za + + + 945 + + + korun + + + a + + + Markest + + + si + + + svoji + + + ( + 1 + + + ne + 1 + + + ) + 1 + + + solidnost + + + cení + + + na + + + 1209 + + + korun + 1 + + + . + + + Ještě + + + výraznější + + + rozdíl + + + je + + + ve + + + srovnání + + + cen + + + mezi + + + zásilkovým + + + a + + + klasickým + + + obchodem + 1 + + + . + + + Například + + + v + + + pražských + + + obchodech + + + je + + + k + + + mání + + + český + + + kráječ + + + na + + + vajíčka + + + za + + + 67 + + + korun + 1 + + + , + + + zahraniční + + + za + + + 75 + + + a + + + 95 + + + korun + 1 + + + , + + + ale + + + Jana + + + si + + + tohoto + + + pomocníka + + + do + + + kuchyně + + + cení + + + na + + + 345 + + + korun + 1 + + + . + + + + 6 + + Nikdo + + + nemůže + + + chránit + + + zákazníka + + + před + + + p + + + důvěřivostí + 1 + + + , + + + naivností + + + + + + hloupostí + + + v + + + případě + 1 + + + , + + + že + + + je + + + ochoten + + + zaplatit + + + za + + + zaslané + + + zboží + + + více + 1 + + + , + + + než + + + co + + + stojí + + + v + + + běžných + + + prodejnách + 1 + + + . + + + U + + + výrobků + + + ohrožujících + + + zdraví + + + spotřebitelů + + + dochází + + + však + + + ke + + + spáchání + + + trestného + + + činu + + + ohrožování + + + zdraví + + + potravinami + + + a + + + jinými + + + potřebami + 1 + + + . + + + Trestného + + + činu + + + se + + + však + + + dopouští + + + i + + + ten + 1 + + + , + + + kdo + + + poškozuje + + + spotřebitele + + + tím + 1 + + + , + + + že + + + ho + + + šidí + + + na + + + jakosti + 1 + + + , + + + nebo + + + kdo + + + uvede + + + ve + + + větším + + + rozsahu + + + na + + + trh + + + výrobky + + + a + + + přitom + + + zatají + + + jejich + + + podstatné + + + vady + 1 + + + . + + + Volání + + + po + + + novém + + + zákonu + + + na + + + ochranu + + + spotřebitele + + + je + + + sice + + + oprávněné + 1 + + + , + + + ale + + + je + + + třeba + + + zároveň + + + vzít + + + v + + + úvahu + 1 + + + , + + + že + + + i + + + dnes + + + jsou + + + zákony + + + na + + + ochranu + + + spotřebitele + 1 + + + . + + + + 7 + + Řada + + + lidí + + + se + + + však + + + soudit + + + nechce + + + a + + + nechce + + + také + + + naletět + 1 + + + . + + + Co + + + by + + + měli + + + při + + + uvažování + + + o + + + koupi + + + prostřednictvím + + + zásilkového + + + obchodu + + + vzít + + + v + + + úvahu + 1 + + + : + + + + 8 + + * + + + Vyžadovat + + + vždy + + + u + + + výrobku + + + zkoušku + + + zdravotní + + + nezávadnosti + + + a + + + bezpečnosti + + + ve + + + státní + + + zkušebně + 1 + + + , + + + jak + + + to + + + vyplývá + + + ze + + + zákona + 1 + + + , + + + + 9 + + * + + + vycházet + + + z + + + toho + 1 + + + , + + + že + + + úkryt + + + za + + + P + 1 + + + . + 1 + + + O + 1 + + + . + + + Box + + + je + + + téměř + + + dokonalý + 1 + + + , + + + takže + + + adresu + + + případných + + + podvodníků + + + půjde + + + zjistit + + + jen + + + s + + + velkými + + + obtížemi + + + - + + + to + + + připomínám + + + kvůli + + + vrácení + + + peněz + 1 + + + , + + + + 10 + + * + + + nenechat + + + se + + + nalákat + + + na + + + malý + + + dárek + + + při + + + objednávce + + + zboží + 1 + + + , + + + protože + + + ten + + + jste + + + si + + + určitě + + + zaplatili + 1 + + + , + + + + 11 + + * + + + věnovat + + + čas + + + na + + + průzkum + + + v + + + obchodech + 1 + + + , + + + kolik + + + vlastně + + + zboží + + + běžně + + + stojí + 1 + + + . + + + + 12 + + Shrnuto + + + a + + + podtrženo + 1 + + + : + + + Buďte + + + opatrní + 1 + + + . + + + + 13 + + Kamil + + + Lánský + + + + diff --git a/demo/pdt_train/ln94206_32.in.conll b/demo/pdt_train/ln94206_32.in.conll new file mode 100644 index 00000000..ee5f0ac7 --- /dev/null +++ b/demo/pdt_train/ln94206_32.in.conll @@ -0,0 +1,669 @@ +1 Není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 vhodné vhodný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 8 punct _ _ +4-5 aby _ _ _ _ _ _ _ _ +4 aby aby SCONJ J,------------- _ 8 mark _ _ +5 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 8 aux _ _ +6 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 8 nsubj _ _ +8 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 2 csubj _ _ +9 svůj svůj DET P8IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ _ +10 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 8 dobj _ _ + +1 Premiér premiér NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Václav Václav PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 4 nsubj _ _ +3 Klaus Klaus PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ _ +4 odpovídá odpovídat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +6 pravidelné pravidelný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 rubrice rubrika NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +8 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +9 aktuální aktuální ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 otázky otázka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +11 redaktorky redaktorka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ _ +12 Lidových lidový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 11 nmod _ _ +14 Evy Eva PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 10 nmod _ _ +15 Martínkové Martínková PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 14 name _ _ +16 o o ADP RR--4---------- AdpType=Prep|Case=Acc 17 case _ _ +17 Domníváte Domnívát PRON Co------------1 NumType=Mult|PronType=Dem,Ind 4 advmod _ _ +18 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 23 punct _ _ +20 že že SCONJ J,------------- _ 23 mark _ _ +21 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ _ +22 vám ty PRON PP-P3--2------- Case=Dat|Number=Plur|Person=2|PronType=Prs 23 dobj _ _ +23 podaří podařit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 acl _ _ +24 přesvědčit přesvědčit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 csubj _ _ +25 koaliční koaliční ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 partnery partner NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 24 dobj _ _ +27 o o ADP RR--6---------- AdpType=Prep|Case=Loc 28 case _ _ +28 nutnosti nutnost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 26 nmod _ _ +29 přijmout přijmout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 28 acl _ _ +30 ústavní ústavní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 31 amod _ _ +31 zákon zákon NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 29 dobj _ _ +32 o o ADP RR--6---------- AdpType=Prep|Case=Loc 34 case _ _ +33 vyrovnaném vyrovnaný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 34 amod _ _ +34 rozpočtu rozpočet NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ SpaceAfter=No +35 ? ? PUNCT Z:------------- _ 4 punct _ _ + +1 O o ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 tom ten PRON PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 dobj _ _ +3 nemohu moci VERB VB-S---1P-NA--1 Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 spekulovat spekulovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 3 xcomp _ _ +5 zejména zejména ADV Db------------- _ 6 advmod:emph _ _ +6 proto proto ADV Db------------- _ 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 9 punct _ _ +8 že že SCONJ J,------------- _ 9 mark _ _ +9 nejde jít VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 advcl _ _ +10 pouze pouze ADV Db------------- _ 13 advmod:emph _ _ +11 o o ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 věcnou věcný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 amod _ _ +13 stránku stránka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 dobj _ _ +14 správnosti správnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +15 či či CONJ J^------------- _ 14 cc _ _ +16 nesprávnosti správnost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Negative=Neg|Number=Sing 14 conj _ _ +17 této tento DET PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 18 det _ _ +18 iniciativy iniciativa NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 1 nsubj _ _ +3 samozřejmě samozřejmě ADV Dg-------1A---- Degree=Pos|Negative=Pos 1 cc _ _ +4 i i CONJ J^------------- _ 5 advmod:emph _ _ +5 stránku stránka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 1 dobj _ _ +6 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 6 punct _ _ +8 prestižní prestižní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 conj _ _ +9 a a CONJ J^------------- _ 6 cc _ _ +10 já já PRON PP-S1--1------- Case=Nom|Number=Sing|Person=1|PronType=Prs 6 conj _ _ +11 mám mít VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +12 obavu obava NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 dobj _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 17 punct _ _ +14 že že SCONJ J,------------- _ 17 mark _ _ +15 druhá druhý ADJ CrFS1---------- Case=Nom|Gender=Fem|Number=Sing|NumType=Ord 16 amod _ _ +16 stránka stránka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 17 nsubj _ _ +17 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 12 acl _ _ +18 zvítězit zvítězit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 17 xcomp _ _ +19 nad nad ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +20 tou ten PRON PDFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Dem 18 dobj _ _ +21 první první ADJ CrFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumType=Ord 20 amod _ _ +22 a a CONJ J^------------- _ 17 cc _ _ +23 že že SCONJ J,------------- _ 26 mark _ _ +24 koaliční koaliční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 partneři partner NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 26 nsubj _ _ +26 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 conj _ _ +27 být být VERB Vf--------A---- Negative=Pos|VerbForm=Inf 26 xcomp _ _ +28 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 32 case _ _ +29 zejména zejména ADV Db------------- _ 32 advmod:emph _ _ +30 z z ADP RR--2---------- AdpType=Prep|Case=Gen 32 case _ _ +31 důvodu důvod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 30 mwe _ _ +32 druhého druhý ADJ CrIS2---------- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|NumType=Ord 27 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Ale ale CONJ J^------------- _ 5 cc _ _ +2 toto tento DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 3 det _ _ +3 téma téma NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +5 vážné vážný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 10 punct _ _ +9 že že SCONJ J,------------- _ 10 mark _ _ +10 patří patřit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 ccomp _ _ +11 mezi mezi ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 jedno jeden NUM ClNS4---------- Case=Acc|Gender=Neut|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 10 advmod _ _ +13 z z ADP RR--2---------- AdpType=Prep|Case=Gen 15 case _ _ +14 hlavních hlavní ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 15 amod _ _ +15 témat téma NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 12 nmod _ _ +16 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 17 det _ _ +17 současnosti současnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 15 nmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 5 punct _ _ +19 a a CONJ J^------------- _ 5 cc _ _ +20 proto proto CONJ J^------------- _ 5 cc _ _ +21 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 23 aux _ _ +22 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ _ +23 pokusil pokusit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ _ +24 systematicky systematicky ADV Dg-------1A---- Degree=Pos|Negative=Pos 25 advmod _ _ +25 utřídit utřídit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 xcomp _ _ +26 argumenty argument NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 25 dobj _ _ +27 a a CONJ J^------------- _ 25 cc _ _ +28 napsat napsat VERB Vf--------A---- Negative=Pos|VerbForm=Inf 25 conj _ _ +29 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 28 dobj _ _ +30 do do ADP RR--2---------- AdpType=Prep|Case=Gen 33 case _ _ +31 svého svůj DET P8ZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 33 det _ _ +32 pondělního pondělní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 33 amod _ _ +33 příspěvku příspěvek NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +34 do do ADP RR--2---------- AdpType=Prep|Case=Gen 36 case _ _ +35 Lidových lidový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 36 amod _ _ +36 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 33 nmod _ SpaceAfter=No +37 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 12 punct _ _ +3 že že SCONJ J,------------- _ 12 mark _ _ +4 teď teď ADV Db------------- _ 12 advmod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 8 punct _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 krátké krátký ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 odpovědi odpověď NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 8 punct _ _ +10 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 12 aux _ _ +11 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 12 dobj _ _ +12 zploštil zploštit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 ccomp _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 1 punct _ _ +14 zkrátil zkrátit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 1 punct _ _ +16 a a CONJ J^------------- _ 1 cc _ _ +17 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 19 nsubj _ _ +18 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 19 cop _ _ +19 třeba třeba ADJ ACNS------A---- Gender=Neut|Negative=Pos|Number=Sing|Variant=Short 1 conj _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 1 punct _ _ +21 o o PUNCT Z:------------- _ 1 punct _ _ + +1 Postrádá postrádat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 1 nsubj _ _ +3 jako jako SCONJ J,------------- _ 5 mark _ _ +4 pravicová pravicový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 xcomp _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 novinovém novinový ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +9 nezávislý závislý ADJ AAIS4----1N---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Neg|Number=Sing 10 amod _ _ +10 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 15 punct _ _ +12 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 15 nsubj _ _ +13 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 15 aux _ _ +14 dostatečně dostatečně ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 tlumočil tlumočit VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 10 acl _ _ +16 její jeho DET PSXP4FS3------- Case=Acc|Gender[psor]=Fem|Number=Plur|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 17 det _ _ +17 postoje postoj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +18 vůči vůči ADP RR--3---------- AdpType=Prep|Case=Dat 19 case _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 17 nmod _ SpaceAfter=No +20 ? ? PUNCT Z:------------- _ 1 punct _ _ + +1 Hovoří hovořit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 auxpass:reflex _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 těchto tento DET PDXP6---------- Case=Loc|Number=Plur|PronType=Dem 5 det _ _ +5 dnech den NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 propojení propojení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 které který PRON P4NS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Int,Rel 11 nsubj _ _ +10 údajně údajně ADV Dg-------1A---- Degree=Pos|Negative=Pos 11 advmod _ _ +11 existuje existovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 acl _ _ +12 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 13 case _ _ +13 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 11 nmod _ _ +14 a a CONJ J^------------- _ 13 cc _ _ +15 deníkem deník NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 13 conj _ _ +16 Telegraf Telegraf PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 15 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 1 punct _ _ + +1 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 3 dobj _ _ +2 opravdu opravdu ADV Db------------- _ 3 cc _ _ +3 nechybí chybět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 žádný žádný DET PWYS1---------- Case=Nom|Gender=Masc|Negative=Neg|Number=Sing|PronType=Neg 6 det _ _ +5 takový takový DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 6 det _ _ +6 deník deník NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Mnohokrát mnohokrát PRON Co------------- NumType=Mult|PronType=Dem,Ind 4 dobj _ _ +2 jsme být AUX VB-P---1P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 přesvědčili přesvědčit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 všichni všechen PRON PLMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Tot 4 nsubj _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 že že SCONJ J,------------- _ 9 mark _ _ +8 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +9 vhodné vhodný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 4 ccomp _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 15 punct _ _ +11-12 aby _ _ _ _ _ _ _ _ +11 aby aby SCONJ J,------------- _ 15 mark _ _ +12 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 15 aux _ _ +13 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ _ +15 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 9 csubj _ _ +16 svůj svůj DET P8IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 17 det _ _ +17 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +1 O o ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 nic nic PRON PW--4---------- Case=Acc|Negative=Neg|PronType=Neg 4 dobj _ _ +3 takového takový PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 2 amod _ _ +4 neusilujeme usilovat VERB VB-P---1P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Důvody důvod NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ _ +2 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 cop _ _ +3 dva dva NUM ClYP1---------- Case=Nom|Gender=Masc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 0 root _ SpaceAfter=No +4 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +3 s s ADP RR--7---------- AdpType=Prep|Case=Ins 4 case _ _ +4 deníky deník NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 týdeníky týdeník NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ _ +7 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +8 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +9 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 10 det _ _ +10 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +11 taková takový DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 12 det _ _ +12 pluralita pluralita NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 taková takový DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 15 det _ _ +15 konkurence konkurence NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 conj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 že že SCONJ J,------------- _ 20 mark _ _ +18 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 20 cop _ _ +19 sebemenším sebemenší ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 20 amod _ _ +20 problémem problém NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 15 acl _ _ +21 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 25 expl _ _ +22 s s ADP RR--7---------- AdpType=Prep|Case=Ins 24 case _ _ +23 jakýmkoliv jakýkoliv DET PZZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Ind 24 det _ _ +24 názorem názor NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 25 nmod _ _ +25 dostat dostat VERB Vf--------A---- Negative=Pos|VerbForm=Inf 20 csubj _ _ +26 do do ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +27 těchto tento DET PDXP2---------- Case=Gen|Number=Plur|PronType=Dem 29 det _ _ +28 sdělovacích sdělovací ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 29 amod _ _ +29 prostředků prostředek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 25 nmod _ SpaceAfter=No +30 , , PUNCT Z:------------- _ 20 punct _ _ +31 a a CONJ J^------------- _ 20 cc _ _ +32 proto proto CONJ J^------------- _ 20 cc _ _ +33 pootáčet pootáčet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 46 csubj _ _ +34 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 35 nummod _ _ +35 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 33 dobj _ _ +36 tím ten DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 39 det _ _ +37 či či CONJ J^------------- _ 36 cc _ _ +38 oním onen PRON PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 36 conj _ _ +39 směrem směr NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 33 nmod _ _ +40 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 46 aux _ _ +41 bylo být VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 46 cop _ _ +42 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 44 case _ _ +43 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 44 det _ _ +44 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 46 nmod _ _ +45 naprosto naprosto ADV Db------------- _ 46 advmod _ _ +46 zbytečné zbytečný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 20 conj _ _ +47 a a CONJ J^------------- _ 46 cc _ _ +48 myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 46 conj _ SpaceAfter=No +49 , , PUNCT Z:------------- _ 54 punct _ _ +50 že že SCONJ J,------------- _ 54 mark _ _ +51 o o ADP RR--4---------- AdpType=Prep|Case=Acc 52 case _ _ +52 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 54 dobj _ _ +53 nikdo nikdo PRON PWM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Neg|PronType=Neg 54 nsubj _ _ +54 neusiluje usilovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 48 ccomp _ _ +55 ani ani CONJ J^------------- _ 59 advmod:emph _ _ +56 v v ADP RR--6---------- AdpType=Prep|Case=Loc 59 case _ _ +57 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 59 amod _ _ +58 politické politický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 59 amod _ _ +59 straně strana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 54 nmod _ SpaceAfter=No +60 . . PUNCT Z:------------- _ 12 punct _ _ + +1 Obdobný obdobný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ _ +3 mám mít VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 ohledně ohledně ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +5 demonopolizovaného demonopolizovaný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 rozhlasu rozhlas NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Nemám mít VERB VB-S---1P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 identický identický ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ _ +4 u u ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +5 tiskových tiskový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 6 amod _ _ +6 kanceláří kancelář NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 1 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 16 punct _ _ +8 kde kde ADV Db------------- _ 16 advmod _ _ +9 monopol monopol NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 16 nsubj _ _ +10 té ten PRON PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 9 nmod _ _ +11 jedné jeden NUM ClFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 12 nummod _ _ +12 jediné jediný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +13 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 16 cop _ _ +14 stále stále ADV Db------------- _ 16 advmod _ _ +15 velmi velmi ADV Db------------- _ 16 advmod _ _ +16 výrazný výrazný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 acl _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 1 punct _ _ +18 a a CONJ J^------------- _ 1 cc _ _ +19 také také ADV Db------------- _ 24 advmod _ _ +20 ohledně ohledně ADP RR--2---------- AdpType=Prep|Case=Gen 21 case _ _ +21 televize televize NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 24 nmod _ _ +22 tento tento PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 24 nsubj _ _ +23 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 24 dobj _ _ +24 nemám mít VERB VB-S---1P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 možná možná ADV Db------------- _ 1 cc _ _ +3 vznikat vznikat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 1 xcomp _ _ +4 někde někde ADV Db------------- _ 1 advmod _ _ +5 jistý jistý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 problém problém NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 1 nsubj _ _ +7 z z ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +8 hlediska hledisko NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 7 mwe _ _ +9 okresních okresní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 6 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 1 punct _ _ +12 ale ale CONJ J^------------- _ 1 cc _ _ +13 ani ani CONJ J^------------- _ 14 advmod:emph _ _ +14 tam tam ADV Db------------- _ 18 advmod _ _ +15 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 18 expl _ _ +16 mi já PRON PH-S3--1------- Case=Dat|Number=Sing|Person=1|PronType=Prs|Variant=Short 18 dobj _ _ +17 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 18 nsubj _ _ +18 nezdá zdát VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +19 tak tak ADV Db------------- _ 20 advmod _ _ +20 dramatické dramatický ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 18 dobj _ SpaceAfter=No +21 , , PUNCT Z:------------- _ 25 punct _ _ +22 protože protože SCONJ J,------------- _ 25 mark _ _ +23 každý každý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 nsubj _ _ +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 iobj _ _ +25 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 advcl _ _ +26 koupit koupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 25 xcomp _ _ +27 celostátní celostátní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 26 dobj _ _ +29 a a CONJ J^------------- _ 1 cc _ _ +30 nemůže moci VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +31 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 32 expl _ _ +32 vymlouvat vymlouvat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 30 xcomp _ SpaceAfter=No +33 , , PUNCT Z:------------- _ 36 punct _ _ +34 že že SCONJ J,------------- _ 36 mark _ _ +35 je být AUX VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 36 auxpass _ _ +36 vázán vázat VERB VsYS---XX-AP--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 32 ccomp _ _ +37 na na ADP RR--4---------- AdpType=Prep|Case=Acc 39 case _ _ +38 Nové nový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 39 amod _ _ +39 Příbramsko Příbramsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 36 dobj _ SpaceAfter=No +40 , , PUNCT Z:------------- _ 39 punct _ _ +41 Sedlčansko Sedlčansko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ SpaceAfter=No +42 , , PUNCT Z:------------- _ 39 punct _ _ +43 Benešovsko Benešovsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ _ +44 či či CONJ J^------------- _ 39 cc _ _ +45 Vlašimsko Vlašimsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ SpaceAfter=No +46 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Ani ani CONJ J^------------- _ 3 advmod:emph _ _ +2 těmto tento DET PDXP3---------- Case=Dat|Number=Plur|PronType=Dem 3 det _ _ +3 argumentům argument NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 4 dobj _ _ +4 nevěřím věřit VERB VB-S---1P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ + +1 o o PUNCT Z:------------- _ 0 punct _ _ + +1 Odmítáte odmítat VERB VB-P---2P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 tedy tedy ADV Db------------- _ 1 cc _ _ +3 tvrzení tvrzení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 že že SCONJ J,------------- _ 8 mark _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl _ _ +7 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 8 nsubj _ _ +8 snaží snažit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +9 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +10 vliv vliv NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 9 dobj _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ +13 Telegraf Telegraf PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +14 ? ? PUNCT Z:------------- _ 1 punct _ _ + +1 Již již ADV Db------------- _ 4 advmod _ _ +2 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux _ _ +3 několikrát několikrát PRON Co------------- NumType=Mult|PronType=Dem,Ind 4 advmod _ _ +4 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 34 punct _ _ +6 že že SCONJ J,------------- _ 34 mark _ _ +7-8 kdybych _ _ _ _ _ _ _ _ +7 když když SCONJ J,------------- _ 9 mark _ _ +8 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 9 aux _ _ +9 měl mít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 34 advcl _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +11 celém celý ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 12 amod _ _ +12 spektru spektrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ _ +13 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 12 nmod _ _ +14 hledat hledat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 9 xcomp _ _ +15 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 14 dobj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 21 punct _ _ +17 o o ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +18 kterém který PRON P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 21 iobj _ _ +19 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 21 aux _ _ +20 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 21 expl _ _ +21 myslel myslet VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 15 acl _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 28 punct _ _ +23 že že SCONJ J,------------- _ 28 mark _ _ +24 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 28 cop _ _ +25 dlouhodobě dlouhodobě ADV Dg-------1A---- Degree=Pos|Negative=Pos 28 advmod _ _ +26 mým můj DET PSXP3-S1------- Case=Dat|Number=Plur|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 27 det _ _ +27 postojům postoj NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 28 dobj _ _ +28 nejbližší blízký ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 21 ccomp _ SpaceAfter=No +29 , , PUNCT Z:------------- _ 9 punct _ _ +30 tak tak ADV Db------------- _ 34 advmod _ _ +31 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 34 aux _ _ +32 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 34 nsubj _ _ +33 byl být VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 34 cop _ _ +34 Telegraf Telegraf NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 ccomp _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Takže takže SCONJ J,------------- _ 15 mark _ _ +2 myšlenku myšlenka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 15 dobj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 že že SCONJ J,------------- _ 6 mark _ _ +5 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 6 aux _ _ +6 měl mít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ _ +7 motivaci motivace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 dobj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 13 punct _ _ +9-10 aby _ _ _ _ _ _ _ _ +9 aby aby SCONJ J,------------- _ 13 mark _ _ +10 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 13 aux _ _ +11 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 13 expl _ _ +12 toto tento PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 13 nsubj _ _ +13 změnilo změnit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 7 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 6 punct _ _ +15 považuji považovat VERB VB-S---1P-AA--1 Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +16 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +17 zcela zcela ADV Db------------- _ 18 advmod _ _ +18 lichou lichý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 iobj _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 15 punct _ _ + +1 S s ADP RR--7---------- AdpType=Prep|Case=Ins 2 case _ _ +2 nikým nikdo PRON PWM-7---------- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Neg|PronType=Neg 5 dobj _ _ +3 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 5 aux _ _ +4 tam tam ADV Db------------- _ 5 advmod _ _ +5 nekonverzoval konverzovat VERB VpYS---XR-NA--- Aspect=Imp|Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 žádný žádný DET PWYS1---------- Case=Nom|Gender=Masc|Negative=Neg|Number=Sing|PronType=Neg 9 det _ _ +8 politický politický ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 orgán orgán NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 14 nsubj _ _ +10 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 9 nmod _ _ +11 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl _ _ +12 tímto tento DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 13 det _ _ +13 tématem téma NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ _ +14 nezabýval zabývat VERB VpYS---XR-NA--- Aspect=Imp|Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 5 punct _ _ + +1 o o PUNCT Z:------------- _ 0 punct _ _ + +1 Jaký jaký DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 3 det _ _ +2 máte mít VERB VB-P---2P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 názor názor NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 2 dobj _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 účast účast NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 nezávislých závislý ADJ AAMP2----1N---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 7 amod _ _ +7 kandidátů kandidát NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 komunálních komunální ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +11 ? ? PUNCT Z:------------- _ 2 punct _ _ + +1 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 3 nsubj _ _ +2 odedávna odedávna ADV Db------------- _ 3 advmod _ _ +3 zastávala zastávat VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +4 názor názor NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 10 punct _ _ +6 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 10 nsubj _ _ +7 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 10 cop _ _ +8 stoprocentně stoprocentně ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod _ _ +9 i i CONJ J^------------- _ 10 advmod:emph _ _ +10 názorem názor NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 4 acl _ _ +11 mým můj DET PSZS7-S1------- Case=Ins|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 10 det _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 15 punct _ _ +13 že že SCONJ J,------------- _ 15 mark _ _ +14 základní základní_,s ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 entitou entita NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 10 acl _ _ +16 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 18 det _ _ +17 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 scény scéna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 15 nmod _ _ +19 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 cop _ _ +20 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 15 punct _ _ +23 a a CONJ J^------------- _ 15 cc _ _ +24 že že SCONJ J,------------- _ 34 mark _ _ +25 pokus pokus NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 34 nsubj _ _ +26 nahrazovat nahrazovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 25 acl _ _ +27 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ _ +29 něčím něco PRON PZ--7---------- Case=Ins|PronType=Ind 26 nmod _ _ +30 jiným jiný ADJ AANS7----1A---- Case=Ins|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 29 amod _ _ +31 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 34 cop _ _ +32 vždycky vždycky ADV Db------------- _ 34 advmod _ _ +33 trochu trochu ADV Db------------- _ 34 advmod _ _ +34 zvláštností zvláštnost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Důvodů důvod NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nsubj _ _ +2 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 mnoho mnoho DET Ca--1---------- Case=Nom|NumType=Card|PronType=Dem,Ind 1 det:numgov _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 2 punct _ _ +5 primární primární ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 conj _ _ +6 ten ten PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 2 conj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 že že SCONJ J,------------- _ 13 mark _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 kandidátovi kandidát NOUN NNMS6-----A---- Animacy=Anim|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +11 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 občan občan NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 13 nsubj _ _ +15 nejen nejen PART TT------------- _ 17 advmod:emph _ _ +16 konkrétní konkrétní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +17 osobu osoba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 dobj _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 17 punct _ _ +19 ale ale CONJ J^------------- _ 17 cc _ _ +20 i i CONJ J^------------- _ 22 advmod:emph _ _ +21 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 22 amod _ _ +22 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 17 conj _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 27 punct _ _ +24 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 27 nsubj _ _ +25 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 27 cop _ _ +26 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 27 det _ _ +27 zázemím zázemí NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 22 acl _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 určitý určitý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +3 konzistentní konzistentní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +4 politický politický ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +5 program program NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 chování chování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ _ +3 této tento DET PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 4 det _ _ +4 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +5 a a CONJ J^------------- _ 1 cc _ _ +6 nevolí volit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +7 pouze pouze ADV Db------------- _ 8 advmod:emph _ _ +8 hezký hezký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 8 punct _ _ +10 případně případně ADV Dg-------1A---- Degree=Pos|Negative=Pos 8 cc _ _ +11 méně málo ADV Dg-------2A---- Degree=Cmp|Negative=Pos 12 advmod _ _ +12 půvabný půvabný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 conj _ _ +13 obličej obličej NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 6 dobj _ _ +14 kandidáta kandidát NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 19 punct _ _ +16 za za ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 kterým který PRON P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 19 advmod _ _ +18 nic nic PRON PW--1---------- Case=Nom|Negative=Neg|PronType=Neg 19 nsubj _ _ +19 nestojí stát VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 14 acl _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Není být AUX VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 auxpass _ _ +2 ničím nic PRON PW--7---------- Case=Ins|Negative=Neg|PronType=Neg 3 nmod _ _ +3 vázán vázat VERB VsYS---XX-AP--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 3 punct _ _ +5 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 conj _ _ +6 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 7 det _ _ +7 postoje postoj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ _ +8 libovolně libovolně ADV Dg-------1A---- Degree=Pos|Negative=Pos 9 advmod _ _ +9 měnit měnit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 5 xcomp _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 3 punct _ _ + +1 To ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 5 nsubj _ _ +2 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +3 naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 5 det _ _ +4 dlouhodobé dlouhodobý ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 5 amod _ _ +5 přesvědčení přesvědčení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 a a CONJ J^------------- _ 5 cc _ _ +8 proto proto CONJ J^------------- _ 5 cc _ _ +9 vždy vždy ADV Db------------- _ 11 advmod _ _ +10 budeme být AUX VB-P---1F-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act 11 aux _ _ +11 preferovat preferovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 5 conj _ _ +12 politické politický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 strany strana NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 11 dobj _ _ +14 jako jako SCONJ J,------------- _ 16 mark _ _ +15 základní základní_,s ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ _ +16 entitu entita NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 xcomp _ _ +17 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 scény scéna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 16 nmod _ _ +19 oproti oproti ADP RR--3---------- AdpType=Prep|Case=Dat 22 case _ _ +20 individualizovaným individualizovaný ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 22 amod _ _ +21 nezávislým závislý ADJ AAMP3----1N---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 22 amod _ _ +22 kandidátům kandidát NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 18 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 druhé druhý ADJ CrFS6---------- Case=Loc|Gender=Fem|Number=Sing|NumType=Ord 3 amod _ _ +3 straně strana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +4 vím vědět VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 11 punct _ _ +6 že že SCONJ J,------------- _ 11 mark _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 řadě řada NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ _ +9 malých malý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 obcí obec NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 8 nmod _ _ +11 nejsou být VERB VB-P---3P-NA--- Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 ccomp _ _ +12 zaběhnuté zaběhnutý ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 14 amod _ _ +13 politické politický ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 14 amod _ _ +14 strany strana NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 11 nsubj _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 18 punct _ _ +16 jednotlivec jednotlivec NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 18 nsubj _ _ +17 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 cop _ _ +18 schopen schopný ADJ ACYS------A---- Gender=Masc|Negative=Pos|Number=Sing|Variant=Short 14 acl _ _ +19 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 dobj _ _ +20 vytvořit vytvořit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 18 xcomp _ _ +21 či či CONJ J^------------- _ 20 cc _ _ +22 založit založit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 20 conj _ _ +23 její jeho DET PSFSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 24 det _ _ +24 odbočku odbočka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 22 dobj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 4 punct _ _ + +1 To ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ _ +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 že že SCONJ J,------------- _ 6 mark _ _ +5 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 6 aux _ _ +6 kandidovat kandidovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 ccomp _ _ +7 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +8 podpory podpora NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +9 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +10 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 2 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 realitě realita NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +3 malých malý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 4 amod _ _ +4 obcí obec NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 2 nmod _ _ +5 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 důvod důvod NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +7 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 8 case _ _ +8 tomu ten PRON PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 9 advmod _ _ +9 vystupovat vystupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 6 acl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/ln94206_32.t b/demo/pdt_train/ln94206_32.t new file mode 100644 index 00000000..96abb897 --- /dev/null +++ b/demo/pdt_train/ln94206_32.t @@ -0,0 +1,10254 @@ + + + + + + + + + + + + Manual annotation + + topic_interv + + + + a#a-ln94206-32-p1s1 + 0 + + + politická strana + lexeme + + t-ln94206-32-p1s1w6 + t-ln94206-32-p1s1w7 + + + + + + + a#a-ln94206-32-p1s1w1 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + heading + v#v-w243f1 + + + atom + 1 + #Neg + RHEM + f + 1 + + + + a#a-ln94206-32-p1s1w2 + + complex + vhodný + PAT + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-ln94206-32-p1s1w8 + + a#a-ln94206-32-p1s1w4 + + + complex + mít + ACT + + v + hrt + nil + proc + it0 + act + potential + + f + 6 + v#v-w1855f2 + + + + a#a-ln94206-32-p1s1w7 + + complex + strana + ACT + + n.denot + fem + sg + single + + c + 4 + + + + a#a-ln94206-32-p1s1w6 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-ln94206-32-p1s1w10 + + complex + deník + PAT + + n.denot + inan + sg + single + + f + 8 + + + + a#a-ln94206-32-p1s1w9 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 7 + + t-ln94206-32-p1s1w7 + + + + + + + + + + + + a#a-ln94206-32-p2s1A + 0 + + + Eva Martínková + person + + t-ln94206-32-p2s1Aw14 + t-ln94206-32-p2s1Aw15 + + + + Václav Klaus + lexeme + + t-ln94206-32-p2s1Aw2 + t-ln94206-32-p2s1Aw3 + + + + object + + t-ln94206-32-p2s1Aw12 + t-ln94206-32-p2s1Aw13 + + + + + + + a#a-ln94206-32-p2s1Aw4 + + complex + odpovídat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + heading + v#v-w2839f2 + + + + a#a-ln94206-32-p2s1Aw3 + + complex + Klaus + ACT + 1 + + n.denot + anim + sg + single + + c + 1 + + + + a#a-ln94206-32-p2s1Aw2 + + complex + Václav + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-ln94206-32-p2s1Aw1 + + complex + premiér + RSTR + + n.denot + anim + sg + single + + f + 3 + + + + + qcomplex + 1 + #Gen + ADDR + t + 4 + + + qcomplex + 1 + #Gen + EFF + t + 5 + + + + a#a-ln94206-32-p2s1Aw7 + + a#a-ln94206-32-p2s1Aw5 + + + complex + rubrika + LOC + basic + + n.denot + fem + sg + single + + f + 7 + + + + a#a-ln94206-32-p2s1Aw6 + + complex + pravidelný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94206-32-p2s1Aw10 + + a#a-ln94206-32-p2s1Aw8 + + + complex + otázka + PAT + + n.denot + fem + pl + single + + f + 9 + + + + a#a-ln94206-32-p2s1Aw15 + + complex + Martínková + APP + 1 + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln94206-32-p2s1Aw14 + + complex + Eva + RSTR + 1 + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln94206-32-p2s1Aw11 + + complex + redaktorka + RSTR + + n.denot + fem + sg + single + + f + 12 + + + + a#a-ln94206-32-p2s1Aw13 + + complex + novina + APP + + n.denot + fem + pl + single + + f + 13 + + + + a#a-ln94206-32-p2s1Aw12 + + complex + Lidový + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + + + + + a#a-ln94206-32-p2s1Aw9 + + complex + aktuální + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + a#a-ln94206-32-p2s1B + 0 + + + koaliční partner + lexeme + + t-ln94206-32-p2s1Bw9 + t-ln94206-32-p2s1Bw10 + + + + ústavní zákon o vyrovnaném rozpočtu + object + + t-ln94206-32-p2s1Bw14 + t-ln94206-32-p2s1Bw15 + t-ln94206-32-p2s1Bw17 + t-ln94206-32-p2s1Bw18 + + + + + + + a#a-ln94206-32-p2s1Bw1 + + a#a-ln94206-32-p2s1Bw2 + + + complex + domnívat_se + PRED + inter + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w634f2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 2 + polite + + t + 1 + + + t-ln94206-32-p2s1Aw3 + SPEC + + + + + + a#a-ln94206-32-p2s1Bw7 + + a#a-ln94206-32-p2s1Bw4 + a#a-ln94206-32-p2s1Bw5 + + + complex + podařit_se + EFF + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + v#v-w3540f1 + + + + a#a-ln94206-32-p2s1Bw6 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + sg + 2 + polite + + t + 3 + + + t-ln94206-32-p2s1Ba0 + SPEC + + + + + + a#a-ln94206-32-p2s1Bw8 + + complex + přesvědčit + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 6 + v#v-w4994f1 + + + qcomplex + 1 + #Cor + ACT + t + 5 + + t-ln94206-32-p2s1Bw6 + + + + + a#a-ln94206-32-p2s1Bw10 + + complex + partner + ADDR + + n.denot + anim + pl + single + + f + 7 + + + + a#a-ln94206-32-p2s1Bw9 + + complex + koaliční + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94206-32-p2s1Bw12 + + a#a-ln94206-32-p2s1Bw11 + + + complex + nutnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 10 + v#v-w2429f1 + + + qcomplex + 1 + #Gen + BEN + nr + t + 9 + + + + a#a-ln94206-32-p2s1Bw13 + + complex + přijmout + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 12 + v#v-w5161f1 + + + qcomplex + 1 + #Cor + ACT + t + 11 + + t-ln94206-32-p2s1Ba2 + + + + + a#a-ln94206-32-p2s1Bw15 + + complex + zákon + PAT + + n.denot + inan + sg + single + + f + 13 + + + + a#a-ln94206-32-p2s1Bw18 + + a#a-ln94206-32-p2s1Bw16 + + + complex + rozpočet + PAT + + n.denot + inan + sg + single + + f + 14 + + + + a#a-ln94206-32-p2s1Bw17 + + complex + vyrovnaný + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-ln94206-32-p2s1Bw14 + + complex + ústavní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + + + + + + + a#a-ln94206-32-p3s1 + 0 + + + + a#a-ln94206-32-p3s1w4 + + a#a-ln94206-32-p3s1w3 + + + complex + spekulovat + PRED + enunc + + v + poss + sim + proc + it0 + act + asserted + + f + 4 + v#v-w6328f1 + + + + a#a-ln94206-32-p3s1w2 + + a#a-ln94206-32-p3s1w1 + + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 1 + + + t-ln94206-32-p2s1Bw7 + SPEC + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 2 + + + t-ln94206-32-p2s1Ba1 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 3 + + + + a#a-ln94206-32-p3s1w5 + + atom + zejména + RHEM + f + 5 + + + + a#a-ln94206-32-p3s1w9 + + a#a-ln94206-32-p3s1w6 + a#a-ln94206-32-p3s1w8 + + + complex + jít + CAUS + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + + + t-ln94206-32-p3s1w4 + discourse + 0 + 0 + reason + + a#a-ln94206-32-p3s1w6 + a#a-ln94206-32-p3s1w8 + + + + v#v-w1339f1 + + + atom + 1 + #Neg + RHEM + f + 6 + + + + a#a-ln94206-32-p3s1w10 + + atom + pouze + RHEM + f + 8 + + + + a#a-ln94206-32-p3s1w13 + + a#a-ln94206-32-p3s1w11 + + + complex + stránka + ACT + + n.denot + fem + sg + single + + f + 9 + + + + a#a-ln94206-32-p3s1w15 + + coap + či + DISJ + 11 + + + + a#a-ln94206-32-p3s1w14 + + complex + správnost + RSTR + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 10 + + + + a#a-ln94206-32-p3s1w16 + + complex + správnost + RSTR + 1 + + n.denot.neg + fem + sg + single + neg1 + + t + 12 + + + + a#a-ln94206-32-p3s1w18 + + complex + iniciativa + APP + + n.denot + fem + sg + single + + f + 14 + + + t-ln94206-32-p2s1Bw13 + SPEC + + + + + + a#a-ln94206-32-p3s1w17 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 13 + + + + + + + + a#a-ln94206-32-p3s1w12 + + complex + věcný + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + + + a#a-ln94206-32-p3s2 + 0 + + + koaliční partner + lexeme + + t-ln94206-32-p3s2w24 + t-ln94206-32-p3s2w25 + + + + + + + a#a-ln94206-32-p3s2w9 + + coap + a + CONJ + 9 + + + + a#a-ln94206-32-p3s2w1 + + complex + mít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w1855f1 + + + + a#a-ln94206-32-p3s2w3 + + atom + samozřejmě + ATT + t + 1 + + + + a#a-ln94206-32-p3s2w2 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 2 + + + t-ln94206-32-p3s1w18 + SPEC + + + + + + a#a-ln94206-32-p3s2w5 + + complex + stránka + PAT + + n.denot + fem + sg + single + + t + 4 + + + + a#a-ln94206-32-p3s2w4 + + atom + i + RHEM + f + 5 + + + + a#a-ln94206-32-p3s2w7 + + coap + #Comma + CONJ + 7 + + + + a#a-ln94206-32-p3s2w6 + + complex + politický + RSTR + 1 + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-ln94206-32-p3s2w8 + + complex + prestižní + RSTR + 1 + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + a#a-ln94206-32-p3s2w11 + + complex + mít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + + + t-ln94206-32-p3s2w1 + discourse + 0 + 0 + conj + + t-ln94206-32-p3s2w9 + + + + v#v-w1855f10 + + + + a#a-ln94206-32-p3s2w10 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 10 + + + t-ln94206-32-p3s1a3 + SPEC + + + + + + a#a-ln94206-32-p3s2w12 + + complex + obava + CPHR + + n.denot + fem + sg + single + + f + 13 + v#v-w2434f1 + + + qcomplex + 1 + #QCor + ACT + t + 12 + + t-ln94206-32-p3s2w10 + + + + + a#a-ln94206-32-p3s2w22 + + coap + a + CONJ + 19 + + + + a#a-ln94206-32-p3s2w18 + + a#a-ln94206-32-p3s2w17 + a#a-ln94206-32-p3s2w14 + + + complex + zvítězit + PAT + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 16 + v#v-w9978f1 + + + + a#a-ln94206-32-p3s2w16 + + complex + stránka + ACT + + n.denot + fem + sg + single + + t + 15 + + + t-ln94206-32-p3s2w5 + SPEC + + + + + + a#a-ln94206-32-p3s2w15 + + complex + dva + RSTR + + adj.quant.def + ord + + c + 14 + + + + + + a#a-ln94206-32-p3s2w20 + + a#a-ln94206-32-p3s2w19 + + + complex + ten + ADDR + + n.pron.def.demon + fem + sg + + t + 17 + + + t-ln94206-32-p3s1w13 + SPEC + + + + + + a#a-ln94206-32-p3s2w21 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 18 + + + + + + + + a#a-ln94206-32-p3s2w27 + + a#a-ln94206-32-p3s2w26 + a#a-ln94206-32-p3s2w23 + + + complex + být + PAT + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 22 + + + t-ln94206-32-p3s2w18 + discourse + 0 + 0 + conj + + t-ln94206-32-p3s2w22 + + + + v#v-w243f2 + + + + a#a-ln94206-32-p3s2w25 + + complex + partner + ACT + + n.denot + anim + pl + single + + t + 21 + + + t-ln94206-32-p2s1Bw10 + SPEC + + + + + + a#a-ln94206-32-p3s2w24 + + complex + koaliční + RSTR + + adj.denot + pos + neg0 + + t + 20 + + + + + + + a#a-ln94206-32-p3s2w28 + + + complex + 1 + #EmpNoun + BEN + agst + + n.pron.def.demon + nr + nr + + f + 23 + + + + a#a-ln94206-32-p3s2w31 + + a#a-ln94206-32-p3s2w30 + + + complex + důvod + CAUS + + n.denot + inan + sg + single + + t + 24 + + + t-ln94206-32-p3s2w16 + SPEC + + + + + + a#a-ln94206-32-p3s2w29 + + atom + zejména + RHEM + f + 25 + + + + a#a-ln94206-32-p3s2w32 + + complex + dva + RSTR + + adj.quant.def + ord + + f + 26 + + + + + + + + + + + + + + + + + a#a-ln94206-32-p4s1 + 0 + + + object + + t-ln94206-32-p4s1w35 + + + + + + + a#a-ln94206-32-p4s1w19 + + coap + a + CSQ + 16 + + + + a#a-ln94206-32-p4s1w1 + + atom + ale + PREC + t + 1 + + + + a#a-ln94206-32-p4s1w6 + + coap + #Comma + CONJ + 1 + 6 + + + t-ln94206-32-p4s1w23 + discourse + 0 + 0 + reason + + t-ln94206-32-p4s1w19 + t-ln94206-32-p4s1w20 + + + + + + + a#a-ln94206-32-p4s1w4 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-ln94206-32-p4s1w3 + + complex + téma + ACT + + n.denot + neut + sg + single + + t + 3 + + + t-ln94206-32-p2s1Bw15 + SPEC + + + + + + a#a-ln94206-32-p4s1w2 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 2 + + + + + + a#a-ln94206-32-p4s1w5 + + complex + vážný + PAT + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-ln94206-32-p4s1w7 + + complex + myslit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w1919f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 7 + + + t-ln94206-32-p3s2a0 + SPEC + + + + + + a#a-ln94206-32-p4s1w10 + + a#a-ln94206-32-p4s1w9 + + + complex + patřit + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w3411f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + neut + sg + 3 + basic + + t + 9 + + + t-ln94206-32-p4s1w3 + SPEC + + + + + + a#a-ln94206-32-p4s1w12 + + a#a-ln94206-32-p4s1w11 + + + complex + jeden + DIR3 + betw + + n.quant.def + neut + sg + basic + + t + 11 + + + + a#a-ln94206-32-p4s1w15 + + a#a-ln94206-32-p4s1w13 + + + complex + téma + DIR1 + basic + + n.denot + neut + pl + single + + t + 12 + + + t-ln94206-32-p4s1w12 + SUB_SET + + + + + + a#a-ln94206-32-p4s1w17 + + complex + současnost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 14 + + + + a#a-ln94206-32-p4s1w16 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 13 + + + t-ln94206-32-p4s1a0 + SUB_SET + + + + + + + + a#a-ln94206-32-p4s1w14 + + complex + hlavní + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + + + + + + a#a-ln94206-32-p4s1w20 + + atom + proto + CM + 17 + + + + a#a-ln94206-32-p4s1w23 + + a#a-ln94206-32-p4s1w22 + a#a-ln94206-32-p4s1w21 + + + complex + pokusit_se + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 19 + + + t-ln94206-32-p3s1w4 + discourse + 0 + 0 + opp + + t-ln94206-32-p4s1w1 + + + + v#v-w3781f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 18 + + + t-ln94206-32-p4s1a0 + SPEC + + + + + + a#a-ln94206-32-p4s1w27 + + coap + a + CONJ + 24 + + + qcomplex + 1 + #Cor + ACT + t + 20 + + t-ln94206-32-p4s1a2 + + + + + a#a-ln94206-32-p4s1w25 + + complex + utřídit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 21 + v#v-w7408f1 + + + + a#a-ln94206-32-p4s1w26 + + complex + argument + PAT + + n.denot + inan + pl + single + + f + 22 + + + + a#a-ln94206-32-p4s1w24 + + complex + systematický + MANN + + adj.denot + pos + neg0 + + f + 23 + + + + + + a#a-ln94206-32-p4s1w28 + + complex + napsat + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 26 + v#v-w2163f3 + + + + a#a-ln94206-32-p4s1w29 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 25 + + + t-ln94206-32-p4s1w26 + SPEC + + + + + + a#a-ln94206-32-p4s1w33 + + a#a-ln94206-32-p4s1w30 + + + complex + příspěvek + DIR3 + basic + + n.denot + inan + sg + single + + f + 28 + + + + a#a-ln94206-32-p4s1w31 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 27 + + t-ln94206-32-p4s1a3 + + + + + a#a-ln94206-32-p4s1w32 + + complex + pondělní + RSTR + + adj.denot + pos + neg0 + + f + 29 + + + + a#a-ln94206-32-p4s1w36 + + a#a-ln94206-32-p4s1w34 + + + complex + novina + DIR3 + basic + + n.denot + fem + pl + single + + f + 30 + + + t-ln94206-32-p2s1Aw13 + SPEC + + + + + + a#a-ln94206-32-p4s1w35 + + complex + Lidový + RSTR + + adj.denot + pos + neg0 + + f + 31 + + + + + + + + + + + + + + + + + a#a-ln94206-32-p4s2 + 0 + + + + a#a-ln94206-32-p4s2w16 + + coap + a + CONJ + 12 + + + + a#a-ln94206-32-p4s2w1 + + complex + myslit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w1919f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 1 + + + t-ln94206-32-p4s1w31 + SPEC + + + + + + a#a-ln94206-32-p4s2w13 + + coap + #Comma + CONJ + 10 + + + + a#a-ln94206-32-p4s2w11 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 3 + + + t-ln94206-32-p4s1w29 + SPEC + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 4 + + + t-ln94206-32-p4s2a1 + SPEC + + + + + + a#a-ln94206-32-p4s2w5 + + coap + #Comma + APPS + 6 + + + + a#a-ln94206-32-p4s2w4 + + complex + teď + TWHEN + basic + 1 + + adv.pron.def + + t + 5 + + + + a#a-ln94206-32-p4s2w8 + + a#a-ln94206-32-p4s2w6 + + + complex + odpověď + TWHEN + basic + 1 + + n.denot + fem + sg + single + + t + 7 + + + + a#a-ln94206-32-p4s2w7 + + complex + krátký + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + a#a-ln94206-32-p4s2w12 + + a#a-ln94206-32-p4s2w10 + a#a-ln94206-32-p4s2w3 + + + complex + zploštit + EFF + 1 + + v + decl + nil + cpl + it0 + act + potential + + f + 9 + v#v-w9788f1 + + + + a#a-ln94206-32-p4s2w14 + + a#a-ln94206-32-p4s2w10 + a#a-ln94206-32-p4s2w3 + + + complex + zkrátit + EFF + 1 + + v + decl + nil + cpl + it0 + act + potential + + f + 11 + v#v-w9553f1 + + + + + + + + a#a-ln94206-32-p4s2w18 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 15 + + + t-ln94206-32-p4s2w1 + discourse + 0 + 0 + conj + + t-ln94206-32-p4s2w16 + + + + v#v-w243f3 + + + + a#a-ln94206-32-p4s2w17 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 13 + + + t-ln94206-32-p4s2w13 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 14 + + + + a#a-ln94206-32-p4s2w19 + + complex + třeba + CPHR + + n.denot + neut + sg + single + + f + 16 + + + + + + + + + a#a-ln94206-32-p5s1 + 0 + + + + a#a-ln94206-32-p5s1w1 + + complex + postrádat + PRED + inter + + v + decl + sim + proc + it0 + act + asserted + + f + 1 + v#v-w4019f1 + + + + a#a-ln94206-32-p5s1w2 + + complex + ODS + ACT + + n.denot + fem + sg + single + + f + 2 + + + t-ln94206-32-p1s1w9 + SET_SUB + + + t-ln94206-32-p2s1Aw3 + SUB_SET + + + + + + a#a-ln94206-32-p5s1w5 + + a#a-ln94206-32-p5s1w3 + + + complex + strana + COMPL + + n.denot + fem + sg + single + + t + 3 + + t-ln94206-32-p5s1w2 + + + + + a#a-ln94206-32-p5s1w4 + + complex + pravicový + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-ln94206-32-p5s1w8 + + a#a-ln94206-32-p5s1w6 + + + complex + trh + LOC + basic + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln94206-32-p5s1w7 + + complex + novinový + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-ln94206-32-p5s1w10 + + complex + deník + PAT + + n.denot + inan + sg + single + + f + 7 + + + t-ln94206-32-p1s1w10 + SET_SUB + + + + + + a#a-ln94206-32-p5s1w9 + + complex + závislý + RSTR + + adj.denot + pos + neg1 + + f + 8 + + + + a#a-ln94206-32-p5s1w15 + + a#a-ln94206-32-p5s1w13 + + + complex + tlumočit + RSTR + + v + decl + nil + proc + it0 + act + potential + + f + 11 + v#v-w6848f1 + + + + a#a-ln94206-32-p5s1w12 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 9 + + t-ln94206-32-p5s1w10 + + + + qcomplex + 1 + #Gen + ADDR + t + 10 + + + + a#a-ln94206-32-p5s1w14 + + complex + dostatečný + MANN + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln94206-32-p5s1w17 + + complex + postoj + PAT + + n.denot + inan + pl + single + + f + 14 + + + + a#a-ln94206-32-p5s1w16 + + complex + #PersPron + APP + + n.pron.def.pers + fem + sg + 3 + basic + + t + 13 + + + t-ln94206-32-p5s1w2 + SPEC + + + + + + a#a-ln94206-32-p5s1w19 + + a#a-ln94206-32-p5s1w18 + + + complex + společnost + REG + + n.denot + fem + sg + single + + f + 15 + + + + + + + + + + + + + a#a-ln94206-32-p5s2 + 0 + + + + a#a-ln94206-32-p5s2w1 + + complex + hovořit + PRED + enunc + + v + decl + sim + proc + it0 + deagent + asserted + + f + 4 + v#v-w1111f1 + + + + a#a-ln94206-32-p5s2w5 + + a#a-ln94206-32-p5s2w3 + + + complex + den + TWHEN + basic + + n.denot + inan + pl + single + + t + 2 + exoph + + + + a#a-ln94206-32-p5s2w4 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-ln94206-32-p5s2w7 + + a#a-ln94206-32-p5s2w6 + + + complex + propojení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 7 + v#v-w4492f1 + + + qcomplex + 1 + #Gen + ACT + t + 5 + + + qcomplex + 1 + #Gen + PAT + t + 6 + + + + a#a-ln94206-32-p5s2w11 + + complex + existovat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w902f1 + + + + a#a-ln94206-32-p5s2w9 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 8 + + t-ln94206-32-p5s2w7 + + + + + a#a-ln94206-32-p5s2w10 + + atom + údajně + MOD + f + 10 + + + + a#a-ln94206-32-p5s2w14 + + coap + a + CONJ + 12 + + + + a#a-ln94206-32-p5s2w13 + + a#a-ln94206-32-p5s2w12 + + + complex + ODS + LOC + betw + 1 + + n.denot + fem + nr + single + + t + 11 + + + t-ln94206-32-p5s1w16 + SPEC + + + + + + a#a-ln94206-32-p5s2w15 + + a#a-ln94206-32-p5s2w12 + + + complex + deník + LOC + betw + 1 + + n.denot + inan + sg + single + + t + 13 + + + + a#a-ln94206-32-p5s2w16 + + complex + telegraf + ID + enunc + + n.denot + inan + sg + single + + f + 14 + + + + + + + + + + + + + + + a#a-ln94206-32-p6s1 + 0 + + + + a#a-ln94206-32-p6s1w3 + + complex + chybět + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w1204f1 + + + + a#a-ln94206-32-p6s1w1 + + complex + ODS + PAT + + n.denot + fem + nr + single + + t + 1 + + + t-ln94206-32-p5s2w13 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 2 + + + + a#a-ln94206-32-p6s1w2 + + atom + opravdu + MOD + f + 4 + + + + a#a-ln94206-32-p6s1w6 + + complex + deník + ACT + + n.denot + inan + sg + single + + t + 6 + + + t-ln94206-32-p5s1w12 + GEN + + + + + + a#a-ln94206-32-p6s1w5 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 5 + + + + a#a-ln94206-32-p6s1w4 + + complex + který + RSTR + + adj.pron.indef + negat + + f + 7 + + + + + + + + + a#a-ln94206-32-p6s2 + 0 + + + politická strana + lexeme + + t-ln94206-32-p6s2w13 + t-ln94206-32-p6s2w14 + + + + + + + a#a-ln94206-32-p6s2w4 + + a#a-ln94206-32-p6s2w2 + a#a-ln94206-32-p6s2w3 + + + complex + přesvědčit_se + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w4995f2 + + + + a#a-ln94206-32-p6s2w1 + + complex + mnoho + THO + + adj.quant.grad + pos + basic + + t + 1 + + + + a#a-ln94206-32-p6s2w5 + + complex + kdo + ACT + + n.pron.indef + anim + pl + total1 + 1 + + f + 3 + + + + a#a-ln94206-32-p6s2w8 + + a#a-ln94206-32-p6s2w7 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w243f1 + + + atom + 1 + #Neg + RHEM + f + 4 + + + + a#a-ln94206-32-p6s2w9 + + complex + vhodný + PAT + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-ln94206-32-p6s2w15 + + a#a-ln94206-32-p6s2w11 + + + complex + mít + ACT + + v + hrt + nil + proc + it0 + act + potential + + f + 9 + v#v-w1855f2 + + + + a#a-ln94206-32-p6s2w14 + + complex + strana + ACT + + n.denot + fem + sg + single + + t + 8 + + + t-ln94206-32-p1s1w9 + GEN + + + + + + a#a-ln94206-32-p6s2w13 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 7 + + + + + + a#a-ln94206-32-p6s2w17 + + complex + deník + PAT + + n.denot + inan + sg + single + + t + 10 + + + t-ln94206-32-p1s1w10 + GEN + + + + + + a#a-ln94206-32-p6s2w16 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + f + 11 + + t-ln94206-32-p6s2w14 + + + + + + + + + + + + + + a#a-ln94206-32-p6s3 + 0 + + + + a#a-ln94206-32-p6s3w4 + + complex + usilovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w7284f1 + + + + a#a-ln94206-32-p6s3w2 + + a#a-ln94206-32-p6s3w1 + + + complex + co + PAT + + n.pron.indef + neut + sg + negat + 3 + + t + 2 + + + t-ln94206-32-p6s2w15 + SET_SUB + + + + + + a#a-ln94206-32-p6s3w3 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 1 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 3 + + + t-ln94206-32-p6s1w1 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + + + + a#a-ln94206-32-p6s4 + 0 + + + + a#a-ln94206-32-p6s4w2 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w243f1 + + + + a#a-ln94206-32-p6s4w1 + + complex + důvod + ACT + + n.denot + inan + pl + single + + c + 1 + + + + a#a-ln94206-32-p6s4w3 + + complex + dva + PAT + + adj.quant.def + basic + + f + 3 + + + + + + + a#a-ln94206-32-p6s5 + 0 + + + politická strana + lexeme + + t-ln94206-32-p6s5w58 + t-ln94206-32-p6s5w59 + + + + sdělovací prostředky + lexeme + + t-ln94206-32-p6s5w28 + t-ln94206-32-p6s5w29 + + + + + + + a#a-ln94206-32-p6s5w31 + + coap + a + CSQ + 25 + + + t-ln94206-32-p6s3w4 + discourse + 0 + 0 + reason + + t-ln94206-32-p6s4w1 + + + + + + + a#a-ln94206-32-p6s5w7 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + + + t-ln94206-32-p6s5w47 + discourse + 0 + 0 + reason + + t-ln94206-32-p6s5w31 + t-ln94206-32-p6s5w32 + + + + v#v-w243f2 + + + + a#a-ln94206-32-p6s5w2 + + a#a-ln94206-32-p6s5w1 + + + complex + trh + LOC + basic + + n.denot + inan + sg + single + + t + 4 + + + + a#a-ln94206-32-p6s5w5 + + coap + a + CONJ + 2 + + + + a#a-ln94206-32-p6s5w4 + + a#a-ln94206-32-p6s5w3 + + + complex + deník + PAT + 1 + + n.denot + inan + pl + single + + t + 1 + + + t-ln94206-32-p6s2w17 + SUB_SET + + + t-ln94206-32-p5s2w15 + SUB_SET + + + + + + a#a-ln94206-32-p6s5w6 + + a#a-ln94206-32-p6s5w3 + + + complex + týdeník + PAT + 1 + + n.denot + inan + pl + single + + t + 3 + + + + + + + + a#a-ln94206-32-p6s5w10 + + a#a-ln94206-32-p6s5w8 + + + complex + názor + CRIT + + n.denot + inan + sg + single + + t + 6 + + + + a#a-ln94206-32-p6s5w9 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 1 + basic + + t + 5 + + + t-ln94206-32-p4s2a2 + SPEC + + + + + + + + a#a-ln94206-32-p6s5w13 + + coap + a + CONJ + 10 + + + + a#a-ln94206-32-p6s5w12 + + complex + pluralita + ACT + 1 + + n.denot + fem + sg + single + + f + 8 + + + + a#a-ln94206-32-p6s5w11 + + complex + takový + RSTR + + adj.pron.def.demon + + f + 9 + + + + + + a#a-ln94206-32-p6s5w15 + + complex + konkurence + ACT + 1 + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln94206-32-p6s5w14 + + complex + takový + RSTR + + adj.pron.def.demon + + f + 12 + + + + a#a-ln94206-32-p6s5w18 + + a#a-ln94206-32-p6s5w17 + + + complex + být + RESL + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w243f1 + + + atom + 1 + #Neg + RHEM + f + 13 + + + + a#a-ln94206-32-p6s5w20 + + complex + problém + PAT + + n.denot + inan + sg + single + + f + 16 + + + qcomplex + 1 + #Gen + BEN + nr + t + 15 + + + + a#a-ln94206-32-p6s5w19 + + complex + sebemenší + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + a#a-ln94206-32-p6s5w25 + + a#a-ln94206-32-p6s5w21 + + + complex + dostat_se + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 24 + v#v-w735f1 + + + + a#a-ln94206-32-p6s5w24 + + a#a-ln94206-32-p6s5w22 + + + complex + názor + ACMP + basic + + n.denot + inan + sg + single + + t + 18 + + + + a#a-ln94206-32-p6s5w23 + + complex + jaký + RSTR + + adj.pron.indef + indef3 + + f + 19 + + + + + qcomplex + 1 + #Cor + ACT + t + 20 + + t-ln94206-32-p6s5a2 + + + + + a#a-ln94206-32-p6s5w29 + + a#a-ln94206-32-p6s5w26 + + + complex + prostředek + DIR3 + basic + + n.denot + inan + pl + single + + t + 23 + + + t-ln94206-32-p6s5w5 + GEN + + + + + + a#a-ln94206-32-p6s5w27 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 21 + + + + a#a-ln94206-32-p6s5w28 + + complex + sdělovací + RSTR + + adj.denot + pos + neg0 + + t + 22 + + + + + + + + + + + + + + + + + + a#a-ln94206-32-p6s5w32 + + atom + proto + CM + 26 + + + + a#a-ln94206-32-p6s5w47 + + coap + a + CONJ + 1 + 41 + + + + a#a-ln94206-32-p6s5w41 + + a#a-ln94206-32-p6s5w40 + + + complex + být + PRED + enunc + 1 + + v + decl + nil + proc + it0 + act + potential + + f + 37 + v#v-w243f1 + + + + a#a-ln94206-32-p6s5w33 + + complex + pootáčet + ACT + + v + decl + nil + proc + it0 + act + nil + + c + 28 + v#v-w3860f1 + + + qcomplex + 1 + #Gen + ACT + t + 27 + + + + a#a-ln94206-32-p6s5w35 + + complex + deník + PAT + + n.denot + inan + sg + single + + t + 29 + + + t-ln94206-32-p6s5w4 + SET_SUB + + + + + + a#a-ln94206-32-p6s5w34 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 30 + + + + + + a#a-ln94206-32-p6s5w39 + + complex + směr + DIR3 + nr + + n.denot + inan + sg + single + + f + 31 + + + + a#a-ln94206-32-p6s5w37 + + coap + či + DISJ + 33 + + + + a#a-ln94206-32-p6s5w36 + + complex + ten + RSTR + 1 + + adj.pron.def.demon + + f + 32 + + + + a#a-ln94206-32-p6s5w38 + + complex + onen + RSTR + 1 + + adj.pron.def.demon + + f + 34 + + + + + + + + + + a#a-ln94206-32-p6s5w44 + + a#a-ln94206-32-p6s5w42 + + + complex + názor + CRIT + + n.denot + inan + sg + single + + t + 36 + + + + a#a-ln94206-32-p6s5w43 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 1 + basic + + t + 35 + + + t-ln94206-32-p6s5w9 + SPEC + + + + + + + + a#a-ln94206-32-p6s5w46 + + complex + zbytečný + PAT + + adj.denot + pos + neg0 + + f + 39 + + + qcomplex + 1 + #Gen + BEN + nr + t + 38 + + + + a#a-ln94206-32-p6s5w45 + + complex + naprosto + EXT + basic + + adv.denot.ngrad.nneg + + f + 40 + + + + + + + + a#a-ln94206-32-p6s5w48 + + complex + myslit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 43 + + + t-ln94206-32-p6s5w41 + discourse + 0 + 0 + conj + + t-ln94206-32-p6s5w47 + + + + v#v-w1919f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 42 + + + t-ln94206-32-p6s5w43 + SPEC + + + + + + a#a-ln94206-32-p6s5w54 + + a#a-ln94206-32-p6s5w50 + + + complex + usilovat + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 47 + v#v-w7284f1 + + + + a#a-ln94206-32-p6s5w53 + + complex + kdo + ACT + + n.pron.indef + anim + sg + negat + 3 + + t + 44 + + + + a#a-ln94206-32-p6s5w52 + + a#a-ln94206-32-p6s5w51 + + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 45 + + + t-ln94206-32-p6s5w33 + GEN + + + + + atom + 1 + #Neg + RHEM + f + 46 + + + + a#a-ln94206-32-p6s5w59 + + a#a-ln94206-32-p6s5w56 + + + complex + strana + LOC + basic + + n.denot + fem + sg + single + + t + 49 + + + t-ln94206-32-p6s1w1 + CONTRAST + + + t-ln94206-32-p6s2w16 + SET_SUB + + + + + + a#a-ln94206-32-p6s5w58 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 48 + + + + a#a-ln94206-32-p6s5w55 + + atom + ani + RHEM + f + 50 + + + + a#a-ln94206-32-p6s5w57 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 51 + + + + + + + + + + + + + + + a#a-ln94206-32-p6s6 + 0 + + + + a#a-ln94206-32-p6s6w3 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w1855f4 + + + + a#a-ln94206-32-p6s6w2 + + complex + pocit + CPHR + + n.denot + inan + sg + single + + t + 3 + + + t-ln94206-32-p6s5w31 + ANAF + + + v#v-w3514f1 + + + qcomplex + 1 + #QCor + ACT + t + 1 + + t-ln94206-32-p6s6a0 + + + + qcomplex + 1 + #Gen + PAT + t + 2 + + + + a#a-ln94206-32-p6s6w1 + + complex + obdobný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 5 + + + t-ln94206-32-p6s5a6 + SPEC + + + + + + a#a-ln94206-32-p6s6w6 + + a#a-ln94206-32-p6s6w4 + + + complex + rozhlas + REG + + n.denot + inan + sg + single + + f + 7 + + + + a#a-ln94206-32-p6s6w5 + + complex + demonopolizovaný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + a#a-ln94206-32-p6s7 + 0 + + + tisková kancelář + lexeme + + t-ln94206-32-p6s7w5 + t-ln94206-32-p6s7w6 + + + + + + + a#a-ln94206-32-p6s7w18 + + coap + a + CONJ + 19 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 1 + + + t-ln94206-32-p6s6a0 + SPEC + + + + + + a#a-ln94206-32-p6s7w1 + + complex + mít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 6 + v#v-w1855f4 + + + + a#a-ln94206-32-p6s7w3 + + complex + pocit + CPHR + + n.denot + inan + sg + single + + t + 5 + + + t-ln94206-32-p6s5w31 + ANAF + + + v#v-w3514f1 + + + + a#a-ln94206-32-p6s7w2 + + complex + identický + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + qcomplex + 1 + #QCor + ACT + t + 3 + + t-ln94206-32-p6s7a2 + + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + + + atom + 1 + #Neg + RHEM + f + 7 + + + + a#a-ln94206-32-p6s7w6 + + a#a-ln94206-32-p6s7w4 + + + complex + kancelář + REG + + n.denot + fem + pl + single + + f + 8 + + + + a#a-ln94206-32-p6s7w5 + + complex + tiskový + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln94206-32-p6s7w13 + + complex + být + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 15 + v#v-w243f1 + + + + a#a-ln94206-32-p6s7w9 + + complex + monopol + ACT + + n.denot + inan + sg + single + + c + 10 + + + + a#a-ln94206-32-p6s7w10 + + complex + ten + APP + + n.pron.def.demon + fem + sg + + t + 11 + + + t-ln94206-32-p6s7w6 + SET_SUB + + + + + + a#a-ln94206-32-p6s7w11 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 12 + + + + a#a-ln94206-32-p6s7w12 + + complex + jediný + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + a#a-ln94206-32-p6s7w8 + + complex + kde + LOC + basic + + adv.pron.indef + relat + + t + 14 + + t-ln94206-32-p6s7w6 + + + + + a#a-ln94206-32-p6s7w14 + + atom + stále + RHEM + f + 16 + + + + a#a-ln94206-32-p6s7w16 + + complex + výrazný + PAT + + adj.denot + pos + neg0 + + f + 17 + + + + a#a-ln94206-32-p6s7w15 + + complex + velmi + EXT + basic + + adv.denot.grad.nneg + pos + + f + 18 + + + + + + + + + + + + a#a-ln94206-32-p6s7w24 + + complex + mít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 25 + + + t-ln94206-32-p6s7w1 + discourse + 0 + 0 + conj + + t-ln94206-32-p6s7w18 + + + + v#v-w1855f4 + + + + a#a-ln94206-32-p6s7w23 + + complex + pocit + CPHR + + n.denot + inan + sg + single + + t + 23 + + + t-ln94206-32-p6s5w31 + ANAF + + + v#v-w3514f1 + + + + a#a-ln94206-32-p6s7w22 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 20 + + + qcomplex + 1 + #QCor + ACT + t + 21 + + t-ln94206-32-p6s7a2 + + + + qcomplex + 1 + #Gen + PAT + t + 22 + + + + + atom + 1 + #Neg + RHEM + t + 24 + + + + a#a-ln94206-32-p6s7w19 + + atom + také + RHEM + f + 26 + + + + a#a-ln94206-32-p6s7w21 + + a#a-ln94206-32-p6s7w20 + + + complex + televize + REG + + n.denot + fem + sg + single + + f + 27 + + + + + + + + + a#a-ln94206-32-p6s8 + 0 + + + celostátní deník + lexeme + + t-ln94206-32-p6s8w27 + t-ln94206-32-p6s8w28 + + + + location + + t-ln94206-32-p6s8w38 + t-ln94206-32-p6s8w39 + + + + + + + a#a-ln94206-32-p6s8w12 + + coap + ale + ADVS + 8 + + + + a#a-ln94206-32-p6s8w3 + + a#a-ln94206-32-p6s8w1 + + + complex + vznikat + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 1 + v#v-w8670f1 + + + + a#a-ln94206-32-p6s8w2 + + atom + možná + MOD + f + 2 + + + + a#a-ln94206-32-p6s8w4 + + complex + kde + LOC + basic + + adv.pron.indef + indef1 + + f + 3 + + + + a#a-ln94206-32-p6s8w6 + + complex + problém + ACT + + n.denot + inan + sg + single + + f + 4 + + + + a#a-ln94206-32-p6s8w10 + + a#a-ln94206-32-p6s8w7 + a#a-ln94206-32-p6s8w8 + + + complex + novina + REG + + n.denot + fem + pl + single + + f + 5 + + + t-ln94206-32-p6s5w29 + SET_SUB + + + + + + a#a-ln94206-32-p6s8w9 + + complex + okresní + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-ln94206-32-p6s8w5 + + complex + jistý + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + a#a-ln94206-32-p6s8w18 + + a#a-ln94206-32-p6s8w15 + + + complex + zdát_se + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + + + t-ln94206-32-p6s8w3 + discourse + 0 + 0 + opp + + t-ln94206-32-p6s8w12 + + + + v#v-w9378f2 + + + + a#a-ln94206-32-p6s8w13 + + atom + ani + RHEM + t + 9 + + + + a#a-ln94206-32-p6s8w14 + + complex + tam + LOC + basic + + adv.pron.def + + c + 10 + + + t-ln94206-32-p6s8w10 + SPEC + + + + + + a#a-ln94206-32-p6s8w17 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 11 + segm + + + + a#a-ln94206-32-p6s8w16 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 12 + + + t-ln94206-32-p6s7a5 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 13 + + + + a#a-ln94206-32-p6s8w20 + + complex + dramatický + EFF + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-ln94206-32-p6s8w19 + + complex + tak + EXT + basic + + adv.pron.def + + f + 16 + + + + + + a#a-ln94206-32-p6s8w29 + + coap + a + CONJ + 22 + + + t-ln94206-32-p6s8w18 + discourse + 0 + 0 + reason + + a#a-ln94206-32-p6s8w22 + + + + + + + a#a-ln94206-32-p6s8w23 + + complex + který + ACT + + n.pron.indef + anim + sg + total2 + 3 + + t + 17 + + + + a#a-ln94206-32-p6s8w26 + + a#a-ln94206-32-p6s8w25 + a#a-ln94206-32-p6s8w22 + + + complex + koupit + CAUS + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 19 + v#v-w1578f1 + + + + a#a-ln94206-32-p6s8w24 + + complex + #PersPron + ADDR + + n.pron.def.pers + inher + inher + inher + inher + + t + 18 + + t-ln94206-32-p6s8w23 + + + + + a#a-ln94206-32-p6s8w28 + + complex + deník + PAT + + n.denot + inan + sg + single + + t + 20 + + + t-ln94206-32-p6s5w29 + SET_SUB + + + + + + a#a-ln94206-32-p6s8w27 + + complex + celostátní + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + a#a-ln94206-32-p6s8w32 + + a#a-ln94206-32-p6s8w31 + a#a-ln94206-32-p6s8w30 + a#a-ln94206-32-p6s8w22 + + + complex + vymlouvat_se + CAUS + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 24 + + + t-ln94206-32-p6s8w26 + discourse + 0 + 0 + conj + + t-ln94206-32-p6s8w29 + + + + v#v-w8114f1 + + + atom + 1 + #Neg + RHEM + f + 23 + + + + a#a-ln94206-32-p6s8w36 + + a#a-ln94206-32-p6s8w34 + a#a-ln94206-32-p6s8w35 + + + complex + vázat + PAT + + v + decl + sim + proc + it0 + pas + asserted + + f + 27 + v#v-w7528f1 + + + qcomplex + 1 + #Gen + ACT + t + 25 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 26 + + + t-ln94206-32-p6s8w24 + GEN + + + + + + a#a-ln94206-32-p6s8w44 + + coap + či + DISJ + 31 + + + t-ln94206-32-p6s8w14 + SET_SUB + + + + + + a#a-ln94206-32-p6s8w39 + + a#a-ln94206-32-p6s8w37 + + + complex + Příbramsko + EFF + 1 + + n.denot + neut + sg + single + + f + 28 + + + + a#a-ln94206-32-p6s8w38 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 29 + + + + + + a#a-ln94206-32-p6s8w41 + + a#a-ln94206-32-p6s8w37 + + + complex + Sedlčansko + EFF + 1 + + n.denot + neut + sg + single + + f + 30 + + + + a#a-ln94206-32-p6s8w43 + + a#a-ln94206-32-p6s8w37 + + + complex + Benešovsko + EFF + 1 + + n.denot + neut + sg + single + + f + 32 + + + + a#a-ln94206-32-p6s8w45 + + a#a-ln94206-32-p6s8w37 + + + complex + Vlašimsko + EFF + 1 + + n.denot + neut + sg + single + + f + 33 + + + + + + + + + + + + + + + + + a#a-ln94206-32-p6s9 + 0 + + + + a#a-ln94206-32-p6s9w4 + + complex + věřit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + t-ln94206-32-p6s8w36 + discourse + 0 + 0 + conj + + t-ln94206-32-p6s9w1 + + + + v#v-w7581f1 + + + + a#a-ln94206-32-p6s9w1 + + atom + ani + RHEM + t + 1 + + + + a#a-ln94206-32-p6s9w3 + + complex + argument + PAT + + n.denot + inan + pl + single + + c + 3 + + + t-ln94206-32-p6s8w32 + SPEC + + + + + + a#a-ln94206-32-p6s9w2 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 2 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 4 + + + t-ln94206-32-p6s8w16 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 5 + + + + + + + a#a-ln94206-32-p7s1 + 0 + + + + a#a-ln94206-32-p7s1w1 + + complex + odmítat + PRED + inter + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-ln94206-32-p5s2w1 + discourse + 0 + 9 + gener + + t-ln94206-32-p7s1w2 + + + + v#v-w2784f2 + + + + a#a-ln94206-32-p7s1w2 + + atom + tedy + PREC + t + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 2 + polite + + t + 2 + + + t-ln94206-32-p6s9a1 + SPEC + + + + + + a#a-ln94206-32-p7s1w3 + + complex + tvrzení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 5 + v#v-w6954f1 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-ln94206-32-p7s1w8 + + a#a-ln94206-32-p7s1w6 + a#a-ln94206-32-p7s1w5 + + + complex + snažit_se + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w6234f1 + + + + a#a-ln94206-32-p7s1w7 + + complex + ODS + ACT + + n.denot + fem + sg + single + + t + 6 + + + t-ln94206-32-p6s3a1 + SPEC + + + + + + a#a-ln94206-32-p7s1w9 + + complex + získat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 9 + v#v-w9501f3 + + + qcomplex + 1 + #Cor + ACT + t + 8 + + t-ln94206-32-p7s1w7 + + + + + a#a-ln94206-32-p7s1w10 + + complex + vliv + CPHR + + n.denot + inan + sg + single + + f + 11 + v#v-w7655f1 + + + qcomplex + 1 + #QCor + ACT + t + 10 + + t-ln94206-32-p7s1a1 + + + + + a#a-ln94206-32-p7s1w12 + + a#a-ln94206-32-p7s1w11 + + + complex + deník + PAT + + n.denot + inan + sg + single + + t + 12 + + + t-ln94206-32-p5s2w15 + SPEC + + + + + + a#a-ln94206-32-p7s1w13 + + complex + telegraf + ID + enunc + + n.denot + inan + sg + single + + f + 13 + + + + + + + + + + + + + + + + + a#a-ln94206-32-p8s1 + 0 + + + + a#a-ln94206-32-p8s1w4 + + a#a-ln94206-32-p8s1w2 + + + complex + říci + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w5874f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 1 + + + t-ln94206-32-p7s1a0 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-ln94206-32-p8s1w1 + + atom + již + RHEM + f + 4 + + + + a#a-ln94206-32-p8s1w3 + + complex + kolik + THO + + adj.quant.indef + indef1 + basic + + f + 5 + + + + a#a-ln94206-32-p8s1w33 + + a#a-ln94206-32-p8s1w6 + a#a-ln94206-32-p8s1w31 + + + complex + být + EFF + + v + decl + nil + proc + it0 + act + potential + + f + 23 + + + t-ln94206-32-p8s2w15 + discourse + 0 + 0 + reason + + t-ln94206-32-p8s2w1 + + + + v#v-w243f1 + + + + a#a-ln94206-32-p8s1w30 + + atom + tak + PREC + t + 6 + + + + a#a-ln94206-32-p8s1w14 + + a#a-ln94206-32-p8s1w9 + a#a-ln94206-32-p8s1w7 + + + complex + hledat + COND + + v + hrt + nil + proc + it0 + act + potential + + f + 11 + + + t-ln94206-32-p8s1w33 + discourse + 0 + 0 + cond + + a#a-ln94206-32-p8s1w7 + + + t-ln94206-32-p8s1w30 + + + + v#v-w1058f1 + + + + a#a-ln94206-32-p8s1w12 + + a#a-ln94206-32-p8s1w10 + + + complex + spektrum + LOC + basic + + n.denot + neut + sg + single + + t + 7 + + + + a#a-ln94206-32-p8s1w13 + + complex + novina + APP + + n.denot + fem + pl + single + + f + 8 + + + t-ln94206-32-p6s5w29 + GEN + + + + + + a#a-ln94206-32-p8s1w11 + + complex + celý + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 10 + + + t-ln94206-32-p8s1a0 + SPEC + + + + + + a#a-ln94206-32-p8s1w15 + + complex + deník + PAT + + n.denot + inan + sg + single + + t + 12 + + + t-ln94206-32-p8s1w13 + SET_SUB + + + + + + a#a-ln94206-32-p8s1w21 + + a#a-ln94206-32-p8s1w19 + a#a-ln94206-32-p8s1w20 + + + complex + myslet_si + RSTR + + v + decl + nil + proc + it0 + act + potential + + f + 15 + v#v-w1918f1 + + + + a#a-ln94206-32-p8s1w18 + + a#a-ln94206-32-p8s1w17 + + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 13 + + t-ln94206-32-p8s1w15 + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 14 + + + t-ln94206-32-p8s1a2 + SPEC + + + + + + a#a-ln94206-32-p8s1w24 + + a#a-ln94206-32-p8s1w23 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 17 + v#v-w243f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 16 + + + t-ln94206-32-p8s1w18 + GEN + + + + + + a#a-ln94206-32-p8s1w25 + + complex + dlouhodobý + THL + + adj.denot + pos + neg0 + + f + 18 + + + + a#a-ln94206-32-p8s1w28 + + complex + blízký + PAT + + adj.denot + sup + neg0 + + f + 21 + + + + a#a-ln94206-32-p8s1w27 + + complex + postoj + PAT + + n.denot + inan + pl + single + + t + 20 + + + + a#a-ln94206-32-p8s1w26 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 1 + basic + + t + 19 + + + t-ln94206-32-p8s1a3 + SPEC + + + + + + + + + + + + + + + + + + a#a-ln94206-32-p8s1w32 + + complex + ten + PAT + + adj.pron.def.demon + + t + 22 + + + t-ln94206-32-p8s1a4 + GEN + + + + + + a#a-ln94206-32-p8s1w34 + + complex + telegraf + ACT + + n.denot + inan + sg + single + + f + 24 + + + t-ln94206-32-p7s1w12 + SPEC + + + + + + + + + + + a#a-ln94206-32-p8s2 + 0 + + + + a#a-ln94206-32-p8s2w15 + + complex + považovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w4140f1 + + + + a#a-ln94206-32-p8s2w1 + + atom + takže + PREC + t + 1 + + + + a#a-ln94206-32-p8s2w2 + + complex + myšlenka + PAT + + n.denot + fem + sg + single + + t + 2 + + + + a#a-ln94206-32-p8s2w6 + + a#a-ln94206-32-p8s2w5 + a#a-ln94206-32-p8s2w4 + + + complex + mít + RSTR + + v + hrt + nil + proc + it0 + act + potential + + f + 4 + v#v-w1855f13 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 3 + + + t-ln94206-32-p8s1w26 + SPEC + + + + + + a#a-ln94206-32-p8s2w7 + + complex + motivace + CPHR + + n.denot + fem + sg + single + + f + 6 + v#v-w1898f1 + + + qcomplex + 1 + #QCor + ACT + t + 5 + + t-ln94206-32-p8s2a1 + + + + + a#a-ln94206-32-p8s2w13 + + a#a-ln94206-32-p8s2w9 + a#a-ln94206-32-p8s2w11 + + + complex + změnit_se + AIM + + v + decl + nil + cpl + it0 + act + potential + + f + 8 + v#v-w9616f1 + + + + a#a-ln94206-32-p8s2w12 + + complex + tento + ACT + + n.pron.def.demon + neut + sg + + t + 7 + + + t-ln94206-32-p8s1w33 + SPEC + + + + + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 9 + + + t-ln94206-32-p8s2a2 + SPEC + + + + + + a#a-ln94206-32-p8s2w18 + + a#a-ln94206-32-p8s2w16 + + + complex + lichý + EFF + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln94206-32-p8s2w17 + + complex + zcela + EXT + basic + + adv.denot.ngrad.nneg + + f + 12 + + + + + + + + + a#a-ln94206-32-p8s3 + 0 + + + politický orgán + lexeme + + t-ln94206-32-p8s3w8 + t-ln94206-32-p8s3w9 + + + + + + + a#a-ln94206-32-p8s3w6 + + coap + #Comma + CONJ + 6 + + + + a#a-ln94206-32-p8s3w5 + + a#a-ln94206-32-p8s3w3 + + + complex + konverzovat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 5 + v#v-w1537f1 + + + + a#a-ln94206-32-p8s3w2 + + a#a-ln94206-32-p8s3w1 + + + complex + kdo + ADDR + + n.pron.indef + anim + sg + negat + 3 + + c + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 1 + basic + + t + 2 + + + t-ln94206-32-p8s2a0 + SPEC + + + + + + a#a-ln94206-32-p8s3w4 + + complex + tam + LOC + basic + + adv.pron.def + + t + 3 + + + t-ln94206-32-p8s1w34 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + + + a#a-ln94206-32-p8s3w14 + + a#a-ln94206-32-p8s3w11 + + + complex + zabývat_se + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 14 + v#v-w8746f1 + + + + a#a-ln94206-32-p8s3w9 + + complex + orgán + ACT + + n.denot + inan + sg + single + + c + 8 + + + + a#a-ln94206-32-p8s3w10 + + complex + ODS + APP + + n.denot + fem + nr + single + + t + 7 + + + t-ln94206-32-p7s1a3 + SPEC + + + + + + a#a-ln94206-32-p8s3w8 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln94206-32-p8s3w7 + + complex + který + RSTR + + adj.pron.indef + negat + + f + 10 + + + + + + a#a-ln94206-32-p8s3w13 + + complex + téma + PAT + + n.denot + neut + sg + single + + t + 12 + + + t-ln94206-32-p7s1w9 + SPEC + + + + + + a#a-ln94206-32-p8s3w12 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 11 + + + + + atom + 1 + #Neg + RHEM + f + 13 + + + + + + + + + a#a-ln94206-32-p9s1 + 0 + + + nezávislý kandidát + lexeme + + t-ln94206-32-p9s1w6 + t-ln94206-32-p9s1w7 + + + + komunální volby + lexeme + + t-ln94206-32-p9s1w9 + t-ln94206-32-p9s1w10 + + + + + + + a#a-ln94206-32-p9s1w2 + + complex + mít + PRED + inter + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w1855f22 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 2 + polite + + t + 1 + + + t-ln94206-32-p8s3a2 + SPEC + + + + + + a#a-ln94206-32-p9s1w3 + + complex + názor + CPHR + + n.denot + inan + sg + single + + f + 4 + v#v-w2332f1 + + + qcomplex + 1 + #QCor + ACT + t + 3 + + t-ln94206-32-p9s1a1 + + + + + a#a-ln94206-32-p9s1w5 + + a#a-ln94206-32-p9s1w4 + + + complex + účast + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln94206-32-p9s1w7 + + complex + kandidát + ACT + + n.denot + anim + pl + single + + f + 6 + + + + a#a-ln94206-32-p9s1w6 + + complex + závislý + RSTR + + adj.denot + pos + neg1 + + f + 7 + + + + + + a#a-ln94206-32-p9s1w10 + + a#a-ln94206-32-p9s1w8 + + + complex + volba + LOC + basic + + n.denot + fem + pl + single + + f + 8 + + + + a#a-ln94206-32-p9s1w9 + + complex + komunální + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + a#a-ln94206-32-p9s1w1 + + complex + jaký + RSTR + + adj.pron.indef + inter + + f + 10 + + + + + + + + + a#a-ln94206-32-p10s1 + 0 + + + něčem jiném + lexeme + + t-ln94206-32-p10s1w29 + t-ln94206-32-p10s1w30 + + + + politická strana + lexeme + + t-ln94206-32-p10s1w20 + t-ln94206-32-p10s1w21 + + + + politická strana + lexeme + + t-ln94206-32-p10s1w27 + t-ln94206-32-p10s1w28 + + + + politická scéna + lexeme + + t-ln94206-32-p10s1w17 + t-ln94206-32-p10s1w18 + + + + + + + a#a-ln94206-32-p10s1w3 + + complex + zastávat + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w9154f2 + + + + a#a-ln94206-32-p10s1w1 + + complex + ODS + ACT + + n.denot + fem + nr + single + + c + 1 + + + t-ln94206-32-p8s3w10 + SPEC + + + + + + a#a-ln94206-32-p10s1w2 + + complex + odedávna + TFRWH + + adv.denot.ngrad.nneg + + t + 2 + + + + a#a-ln94206-32-p10s1w4 + + complex + názor + CPHR + + n.denot + inan + sg + single + + f + 5 + v#v-w2332f1 + + + qcomplex + 1 + #QCor + ACT + t + 4 + + t-ln94206-32-p10s1w1 + + + + + a#a-ln94206-32-p10s1w7 + + complex + být + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w243f1 + + + + a#a-ln94206-32-p10s1w6 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-ln94206-32-p10s1w4 + + + + + a#a-ln94206-32-p10s1w8 + + complex + stoprocentní + EXT + basic + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln94206-32-p10s1w10 + + complex + názor + PAT + + n.denot + inan + sg + single + + t + 9 + + + + a#a-ln94206-32-p10s1w9 + + atom + i + RHEM + f + 10 + + + + a#a-ln94206-32-p10s1w11 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 1 + basic + + f + 11 + + + t-ln94206-32-p9s1a2 + SPEC + + + + + + + + + + a#a-ln94206-32-p10s1w23 + + coap + a + CONJ + 20 + + + + a#a-ln94206-32-p10s1w19 + + a#a-ln94206-32-p10s1w13 + + + complex + být + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 17 + v#v-w243f1 + + + + a#a-ln94206-32-p10s1w15 + + complex + entita + PAT + + n.denot + fem + sg + single + + c + 12 + + + + a#a-ln94206-32-p10s1w18 + + complex + scéna + APP + + n.denot + fem + sg + single + + f + 14 + + + + a#a-ln94206-32-p10s1w16 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 13 + exoph + + + + a#a-ln94206-32-p10s1w17 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-ln94206-32-p10s1w14 + + complex + základní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + a#a-ln94206-32-p10s1w21 + + complex + strana + ACT + + n.denot + fem + sg + single + + f + 19 + + + t-ln94206-32-p6s2w16 + GEN + + + + + + a#a-ln94206-32-p10s1w20 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 18 + + + + + + + + a#a-ln94206-32-p10s1w31 + + a#a-ln94206-32-p10s1w24 + + + complex + být + PAT + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 29 + + + t-ln94206-32-p10s1w19 + discourse + 0 + 0 + conj + + t-ln94206-32-p10s1w23 + + + + v#v-w243f1 + + + + a#a-ln94206-32-p10s1w25 + + complex + pokus + ACT + + n.denot + inan + sg + single + + c + 22 + + + qcomplex + 1 + #Gen + ACT + t + 21 + + + + a#a-ln94206-32-p10s1w26 + + complex + nahrazovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 26 + v#v-w2020f1 + + + + a#a-ln94206-32-p10s1w28 + + complex + strana + PAT + + n.denot + fem + sg + single + + t + 24 + + + t-ln94206-32-p10s1w21 + GEN + + + + + + a#a-ln94206-32-p10s1w27 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 23 + + + + + qcomplex + 1 + #Cor + ACT + t + 25 + + t-ln94206-32-p10s1a0 + + + + + a#a-ln94206-32-p10s1w29 + + complex + co + EFF + + n.pron.indef + neut + sg + indef1 + 3 + + f + 27 + + + t-ln94206-32-p10s1w28 + CONTRAST + + + t-ln94206-32-p9s1w7 + SUB_SET + + + + + + a#a-ln94206-32-p10s1w30 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 28 + + + + + + + + + + a#a-ln94206-32-p10s1w32 + + complex + kdy + TWHEN + basic + + adv.pron.indef + total1 + + f + 30 + + + + a#a-ln94206-32-p10s1w33 + + complex + trochu + EXT + basic + + adv.denot.ngrad.nneg + + f + 31 + + + + a#a-ln94206-32-p10s1w34 + + complex + zvláštnost + PAT + + n.denot + fem + sg + single + + f + 32 + + + + + + + + + + + + + a#a-ln94206-32-p10s2 + 0 + + + politická strana + lexeme + + t-ln94206-32-p10s2w11 + t-ln94206-32-p10s2w12 + + + + politická strana + lexeme + + t-ln94206-32-p10s2w21 + t-ln94206-32-p10s2w22 + + + + + + + a#a-ln94206-32-p10s2w4 + + coap + #Comma + CONJ + 4 + + + + a#a-ln94206-32-p10s2w2 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w243f1 + + + + a#a-ln94206-32-p10s2w1 + + complex + důvod + ACT + + n.denot + inan + pl + single + + c + 1 + + + + a#a-ln94206-32-p10s2w3 + + complex + mnoho + PAT + + adj.quant.grad + pos + basic + + f + 3 + + + + + + a#a-ln94206-32-p10s2w2 + + complex + 1 + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 6 + v#v-w243f1 + + + + a#a-ln94206-32-p10s2w5 + + complex + primární + PAT + + adj.denot + pos + neg0 + + c + 5 + + + t-ln94206-32-p10s2w1 + SET_SUB + + + + + + a#a-ln94206-32-p10s2w13 + + a#a-ln94206-32-p10s2w8 + a#a-ln94206-32-p10s2w6 + + + complex + volit + ACT + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w7686f1 + + + + a#a-ln94206-32-p10s2w10 + + a#a-ln94206-32-p10s2w9 + + + complex + kandidát + MEANS + + n.denot + anim + sg + single + + t + 9 + + + t-ln94206-32-p9s1w7 + CONTRAST + + + + + + a#a-ln94206-32-p10s2w12 + + complex + strana + APP + + n.denot + fem + sg + single + + t + 8 + + + t-ln94206-32-p10s1w28 + GEN + + + + + + a#a-ln94206-32-p10s2w11 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 7 + + + + + + + + a#a-ln94206-32-p10s2w14 + + complex + občan + ACT + + n.denot + anim + sg + single + + f + 11 + + + + a#a-ln94206-32-p10s2w19 + + coap + ale + GRAD + 15 + + + + a#a-ln94206-32-p10s2w15 + + atom + nejen + CM + 12 + + + + a#a-ln94206-32-p10s2w17 + + complex + osoba + PAT + 1 + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln94206-32-p10s2w16 + + complex + konkrétní + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + a#a-ln94206-32-p10s2w20 + + atom + i + CM + 16 + + + + a#a-ln94206-32-p10s2w22 + + complex + strana + PAT + 1 + + n.denot + fem + sg + single + + t + 18 + + + t-ln94206-32-p10s2w12 + SET_SUB + + + + + + a#a-ln94206-32-p10s2w21 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 17 + + + + a#a-ln94206-32-p10s2w25 + + complex + být + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w243f1 + + + + a#a-ln94206-32-p10s2w24 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 19 + + t-ln94206-32-p10s2w22 + + + + + a#a-ln94206-32-p10s2w27 + + complex + zázemí + PAT + + n.denot + neut + sg + single + + f + 22 + + + + a#a-ln94206-32-p10s2w26 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 3 + basic + + t + 21 + + + t-ln94206-32-p10s2w10 + GEN + + + + + + + + + + + + + + + + + + + + + a#a-ln94206-32-p10s3 + 0 + + + politický program + lexeme + + t-ln94206-32-p10s3w4 + t-ln94206-32-p10s3w5 + + + + + + + a#a-ln94206-32-p10s3w1 + + complex + volit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w7686f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 1 + + + t-ln94206-32-p10s2w14 + GEN + + + + + + a#a-ln94206-32-p10s3w5 + + complex + program + PAT + + n.denot + inan + sg + single + + f + 3 + + + + a#a-ln94206-32-p10s3w4 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln94206-32-p10s3w3 + + complex + konzistentní + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94206-32-p10s3w2 + + complex + určitý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + a#a-ln94206-32-p10s4 + 0 + + + + a#a-ln94206-32-p10s4w5 + + coap + a + CONJ + 7 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 1 + + + t-ln94206-32-p10s3a0 + SPEC + + + + + + a#a-ln94206-32-p10s4w1 + + complex + volit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 2 + v#v-w7686f1 + + + + a#a-ln94206-32-p10s4w2 + + complex + chování + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 4 + v#v-w1183f1 + + + qcomplex + 1 + #Oblfm + MANN + t + 3 + + + + a#a-ln94206-32-p10s4w4 + + complex + strana + ACT + + n.denot + fem + sg + single + + f + 6 + + + t-ln94206-32-p10s2w24 + GEN + + + + + + a#a-ln94206-32-p10s4w3 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 5 + + + + + + + + + + a#a-ln94206-32-p10s4w6 + + complex + volit + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 8 + + + t-ln94206-32-p10s4w1 + discourse + 0 + 0 + corr + + t-ln94206-32-p10s4w5 + t-ln94206-32-p10s4a2 + + + + v#v-w7686f1 + + + atom + 1 + #Neg + RHEM + f + 9 + + + + a#a-ln94206-32-p10s4w7 + + atom + pouze + RHEM + f + 10 + + + + a#a-ln94206-32-p10s4w13 + + complex + obličej + PAT + + n.denot + inan + sg + single + + f + 12 + + + + a#a-ln94206-32-p10s4w14 + + complex + kandidát + APP + + n.denot + anim + sg + single + + t + 11 + + + t-ln94206-32-p9s1w7 + GEN + + + + + + a#a-ln94206-32-p10s4w9 + + coap + #Comma + DISJ + 14 + + + + a#a-ln94206-32-p10s4w8 + + complex + hezký + RSTR + 1 + + adj.denot + pos + neg0 + + f + 13 + + + + a#a-ln94206-32-p10s4w10 + + atom + případně + CM + 15 + + + + a#a-ln94206-32-p10s4w12 + + complex + půvabný + RSTR + 1 + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-ln94206-32-p10s4w11 + + complex + málo + EXT + basic + + adj.quant.grad + acomp + basic + + f + 17 + + + + + + + + a#a-ln94206-32-p10s4w19 + + complex + stát + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 21 + v#v-w6492f2 + + + + a#a-ln94206-32-p10s4w18 + + complex + co + ACT + + n.pron.indef + neut + sg + negat + 3 + + t + 18 + + + + a#a-ln94206-32-p10s4w17 + + a#a-ln94206-32-p10s4w16 + + + complex + který + LOC + behind + + n.pron.indef + inher + inher + relat + inher + + t + 19 + + t-ln94206-32-p10s4w13 + + + + atom + 1 + #Neg + RHEM + f + 20 + + + + + + + + + + + + + a#a-ln94206-32-p10s5 + 0 + + + + a#a-ln94206-32-p10s5w4 + + coap + #Comma + CONJ + 5 + + + + a#a-ln94206-32-p10s5w3 + + a#a-ln94206-32-p10s5w1 + + + complex + vázat + PRED + enunc + 1 + + v + decl + sim + proc + it0 + pas + asserted + + f + 4 + v#v-w7528f3 + + + + a#a-ln94206-32-p10s5w2 + + complex + co + ACT + + n.pron.indef + neut + sg + negat + 3 + + t + 1 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 2 + + + t-ln94206-32-p10s4w14 + GEN + + + + + atom + 1 + #Neg + RHEM + f + 3 + + + + + + a#a-ln94206-32-p10s5w9 + + a#a-ln94206-32-p10s5w5 + + + complex + měnit + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 9 + v#v-w1814f1 + + + + a#a-ln94206-32-p10s5w7 + + complex + postoj + PAT + + n.denot + inan + pl + single + + c + 7 + + + + a#a-ln94206-32-p10s5w6 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-ln94206-32-p10s5a2 + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 8 + + + t-ln94206-32-p10s5a1 + GEN + + + + + + a#a-ln94206-32-p10s5w8 + + complex + libovolný + MANN + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + a#a-ln94206-32-p10s6 + 0 + + + politická strana + lexeme + + t-ln94206-32-p10s6w12 + t-ln94206-32-p10s6w13 + + + + nezávislý kandidát + lexeme + + t-ln94206-32-p10s6w21 + t-ln94206-32-p10s6w22 + + + + politická scéna + lexeme + + t-ln94206-32-p10s6w17 + t-ln94206-32-p10s6w18 + + + + + + + a#a-ln94206-32-p10s6w7 + + coap + a + CSQ + 6 + + + + a#a-ln94206-32-p10s6w2 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + + + t-ln94206-32-p10s6w11 + discourse + 0 + 0 + reason + + t-ln94206-32-p10s6w7 + t-ln94206-32-p10s6w8 + + + + v#v-w243f1 + + + + a#a-ln94206-32-p10s6w1 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 1 + segm + + + + a#a-ln94206-32-p10s6w5 + + complex + přesvědčení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 4 + v#v-w4992f2 + + + + a#a-ln94206-32-p10s6w3 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 3 + + + t-ln94206-32-p10s1a2 + SPEC + + + + + + a#a-ln94206-32-p10s6w4 + + complex + dlouhodobý + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + + + a#a-ln94206-32-p10s6w8 + + atom + proto + CM + 7 + + + + a#a-ln94206-32-p10s6w11 + + a#a-ln94206-32-p10s6w10 + + + complex + preferovat + PRED + enunc + 1 + + v + decl + post + proc + it0 + act + asserted + + f + 10 + v#v-w4267f1 + + + + a#a-ln94206-32-p10s6w9 + + complex + kdy + TWHEN + basic + + adv.pron.indef + total1 + + t + 8 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 9 + + + t-ln94206-32-p10s6w3 + SPEC + + + + + + a#a-ln94206-32-p10s6w13 + + complex + strana + PAT + + n.denot + fem + pl + single + + t + 12 + + + t-ln94206-32-p10s2w12 + GEN + + + + + + a#a-ln94206-32-p10s6w12 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 11 + + + + + + a#a-ln94206-32-p10s6w16 + + a#a-ln94206-32-p10s6w14 + + + complex + entita + COMPL + + n.denot + fem + sg + single + + t + 15 + + + t-ln94206-32-p10s1w15 + GEN + + + + t-ln94206-32-p10s6w13 + + + + + a#a-ln94206-32-p10s6w18 + + complex + scéna + APP + + n.denot + fem + sg + single + + t + 14 + + + t-ln94206-32-p10s1w18 + SPEC + + + + + + a#a-ln94206-32-p10s6w17 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 13 + + + + + + a#a-ln94206-32-p10s6w15 + + complex + základní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + a#a-ln94206-32-p10s6w22 + + a#a-ln94206-32-p10s6w19 + + + complex + kandidát + EFF + + n.denot + anim + pl + single + + t + 17 + + + t-ln94206-32-p10s5a2 + GEN + + + + + + a#a-ln94206-32-p10s6w21 + + complex + závislý + RSTR + + adj.denot + pos + neg1 + + f + 18 + + + + a#a-ln94206-32-p10s6w20 + + complex + individualizovaný + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + + + a#a-ln94206-32-p11s1 + 0 + + + politická strana + lexeme + + t-ln94206-32-p11s1w13 + t-ln94206-32-p11s1w14 + + + + + + + a#a-ln94206-32-p11s1w4 + + complex + vědět + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + + + t-ln94206-32-p9s1w2 + discourse + 0 + 6 + opp + + t-ln94206-32-p11s1w3 + t-ln94206-32-p11s1w2 + + + + v#v-w7548f2 + + + + a#a-ln94206-32-p11s1w3 + + a#a-ln94206-32-p11s1w1 + + + atom + strana + PREC + t + 2 + + + + a#a-ln94206-32-p11s1w2 + + complex + dva + RSTR + + adj.quant.def + ord + + c + 1 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 1 + basic + + t + 3 + + + t-ln94206-32-p10s1w11 + SPEC + + + + + + a#a-ln94206-32-p11s1w15 + + coap + #Comma + CONJ + 12 + + + + a#a-ln94206-32-p11s1w11 + + a#a-ln94206-32-p11s1w6 + + + complex + být + EFF + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w243f2 + + + + a#a-ln94206-32-p11s1w10 + + a#a-ln94206-32-p11s1w8 + a#a-ln94206-32-p11s1w7 + + + complex + obec + LOC + nr + + n.denot + fem + pl + single + + c + 5 + + + + a#a-ln94206-32-p11s1w9 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + atom + 1 + #Neg + RHEM + f + 7 + + + + a#a-ln94206-32-p11s1w14 + + complex + strana + ACT + + n.denot + fem + pl + single + + t + 10 + + + t-ln94206-32-p10s6w13 + GEN + + + + + + a#a-ln94206-32-p11s1w13 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 9 + + + + a#a-ln94206-32-p11s1w12 + + complex + zaběhnutý + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + a#a-ln94206-32-p11s1w17 + + a#a-ln94206-32-p11s1w6 + + + complex + být + EFF + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 15 + v#v-w243f1 + + + + a#a-ln94206-32-p11s1w16 + + complex + jednotlivec + ACT + + n.denot + anim + sg + single + + t + 13 + + + atom + 1 + #Neg + RHEM + f + 14 + + + + a#a-ln94206-32-p11s1w18 + + complex + schopný + PAT + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-ln94206-32-p11s1w21 + + coap + či + CONJ + 20 + + + qcomplex + 1 + #Cor + ACT + t + 17 + + t-ln94206-32-p11s1w16 + + + + + a#a-ln94206-32-p11s1w20 + + complex + vytvořit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 19 + v#v-w8510f4 + + + + a#a-ln94206-32-p11s1w19 + + complex + strana + PAT + + n.denot + fem + sg + single + + t + 18 + + + t-ln94206-32-p11s1w14 + GEN + + + + + + + + a#a-ln94206-32-p11s1w22 + + complex + založit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 21 + v#v-w8927f1 + + + + a#a-ln94206-32-p11s1w24 + + complex + odbočka + PAT + + n.denot + fem + sg + single + + f + 23 + + + + a#a-ln94206-32-p11s1w23 + + complex + #PersPron + APP + + n.pron.def.pers + fem + sg + 3 + basic + + t + 22 + + + t-ln94206-32-p11s1w19 + GEN + + + + + + + + + + + + + + + + + + + + + a#a-ln94206-32-p11s2 + 0 + + + politická strana + lexeme + + t-ln94206-32-p11s2w9 + t-ln94206-32-p11s2w10 + + + + + + + a#a-ln94206-32-p11s2w2 + + complex + znamenat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w9661f1 + + + + a#a-ln94206-32-p11s2w1 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 1 + + + t-ln94206-32-p11s1w15 + SPEC + + + + + + a#a-ln94206-32-p11s2w6 + + a#a-ln94206-32-p11s2w4 + a#a-ln94206-32-p11s2w5 + + + complex + kandidovat + PAT + + v + decl + post + proc + it0 + act + asserted + + f + 4 + v#v-w1355f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + sg + 3 + basic + + t + 3 + + + t-ln94206-32-p11s1a3 + GEN + + + + + + a#a-ln94206-32-p11s2w8 + + a#a-ln94206-32-p11s2w7 + + + complex + podpora + ACMP + wout + + n.denot + fem + sg + single + + f + 7 + + + + a#a-ln94206-32-p11s2w10 + + complex + strana + ACT + + n.denot + fem + sg + single + + t + 6 + + + t-ln94206-32-p11s1w23 + GEN + + + + + + a#a-ln94206-32-p11s2w9 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + t + 5 + + + + + + + + + + + + + a#a-ln94206-32-p11s3 + 0 + + + + a#a-ln94206-32-p11s3w5 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w243f2 + + + + a#a-ln94206-32-p11s3w2 + + a#a-ln94206-32-p11s3w1 + + + complex + realita + LOC + basic + + n.denot + fem + sg + single + + t + 3 + + + + a#a-ln94206-32-p11s3w4 + + complex + obec + APP + + n.denot + fem + pl + single + + t + 2 + + + t-ln94206-32-p11s1w10 + GEN + + + + + + a#a-ln94206-32-p11s3w3 + + complex + malý + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + + atom + 1 + #Neg + RHEM + f + 4 + + + + a#a-ln94206-32-p11s3w6 + + complex + důvod + ACT + + n.denot + inan + sg + single + + f + 7 + + + qcomplex + 1 + #Gen + ACT + t + 6 + + + + a#a-ln94206-32-p11s3w9 + + complex + vystupovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 10 + v#v-w8415f3 + + + + a#a-ln94206-32-p11s3w8 + + a#a-ln94206-32-p11s3w7 + + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 8 + + + t-ln94206-32-p11s2w6 + SPEC + + + + + qcomplex + 1 + #Cor + ACT + t + 9 + + t-ln94206-32-p11s3a1 + + + + + + + + + + + + diff --git a/demo/pdt_train/ln94206_32.txt b/demo/pdt_train/ln94206_32.txt new file mode 100644 index 00000000..6dd925e3 --- /dev/null +++ b/demo/pdt_train/ln94206_32.txt @@ -0,0 +1,21 @@ +Není vhodné, aby politická strana měla svůj deník + +Premiér Václav Klaus odpovídá v pravidelné rubrice na aktuální otázky redaktorky Lidových novin Evy Martínkové o Domníváte se, že se vám podaří přesvědčit koaliční partnery o nutnosti přijmout ústavní zákon o vyrovnaném rozpočtu? + +O tom nemohu spekulovat zejména proto, že nejde pouze o věcnou stránku správnosti či nesprávnosti této iniciativy. Má to samozřejmě i stránku politickou, prestižní a já mám obavu, že druhá stránka může zvítězit nad tou první a že koaliční partneři mohou být proti zejména z důvodu druhého. + +Ale toto téma je vážné, myslím, že patří mezi jedno z hlavních témat naší současnosti, a proto jsem se pokusil systematicky utřídit argumenty a napsat to do svého pondělního příspěvku do Lidových novin. Myslím, že teď, v krátké odpovědi, bych to zploštil, zkrátil, a to není třeba. o + +Postrádá ODS jako pravicová strana na novinovém trhu nezávislý deník, který by dostatečně tlumočil její postoje vůči společnosti? Hovoří se v těchto dnech o propojení, které údajně existuje mezi ODS a deníkem Telegraf. + +ODS opravdu nechybí žádný takový deník. Mnohokrát jsme se přesvědčili všichni, že není vhodné, aby politická strana měla svůj deník. O nic takového neusilujeme. Důvody jsou dva. Na trhu s deníky a týdeníky je podle mého názoru taková pluralita a taková konkurence, že není sebemenším problémem se s jakýmkoliv názorem dostat do těchto sdělovacích prostředků, a proto pootáčet jeden deník tím či oním směrem by bylo podle mého názoru naprosto zbytečné a myslím, že o to nikdo neusiluje ani v jiné politické straně. Obdobný pocit mám ohledně demonopolizovaného rozhlasu. Nemám identický pocit u tiskových kanceláří, kde monopol té jedné jediné je stále velmi výrazný, a také ohledně televize tento pocit nemám. Může možná vznikat někde jistý problém z hlediska okresních novin, ale ani tam se mi to nezdá tak dramatické, protože každý si může koupit celostátní deník a nemůže se vymlouvat, že je vázán na Nové Příbramsko, Sedlčansko, Benešovsko či Vlašimsko. Ani těmto argumentům nevěřím. o + +Odmítáte tedy tvrzení, že se ODS snaží získat vliv na deník Telegraf? + +Již jsem několikrát řekl, že kdybych měl na celém spektru novin hledat deník, o kterém bych si myslel, že je dlouhodobě mým postojům nejbližší, tak by to byl Telegraf. Takže myšlenku, že bych měl motivaci, aby se toto změnilo, považuji za zcela lichou. S nikým jsem tam nekonverzoval, žádný politický orgán ODS se tímto tématem nezabýval. o + +Jaký máte názor na účast nezávislých kandidátů v komunálních volbách? + +ODS odedávna zastávala názor, který je stoprocentně i názorem mým, že základní entitou naší politické scény je politická strana, a že pokus nahrazovat politickou stranu něčím jiným je vždycky trochu zvláštností. Důvodů je mnoho, primární ten, že v kandidátovi politické strany volí občan nejen konkrétní osobu, ale i politickou stranu, která je jeho zázemím. Volí určitý konzistentní politický program. Volí chování této strany a nevolí pouze hezký, případně méně půvabný obličej kandidáta, za kterým nic nestojí. Není ničím vázán, může své postoje libovolně měnit. To je naše dlouhodobé přesvědčení, a proto vždy budeme preferovat politické strany jako základní entitu politické scény oproti individualizovaným nezávislým kandidátům. + +Na druhé straně vím, že v řadě malých obcí nejsou zaběhnuté politické strany, jednotlivec není schopen stranu vytvořit či založit její odbočku. To znamená, že bude kandidovat bez podpory politické strany. V realitě malých obcí není důvod proti tomu vystupovat. \ No newline at end of file diff --git a/demo/pdt_train/ln94206_32.w b/demo/pdt_train/ln94206_32.w new file mode 100644 index 00000000..e28c2181 --- /dev/null +++ b/demo/pdt_train/ln94206_32.w @@ -0,0 +1,2023 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1994 +<authname>y +<opus>ln94206 +<id>32 + + + + 1 + + Není + + + vhodné + 1 + + + , + + + aby + + + politická + + + strana + + + měla + + + svůj + + + deník + + + + 2 + + Premiér + + + Václav + + + Klaus + + + odpovídá + + + v + + + pravidelné + + + rubrice + + + na + + + aktuální + + + otázky + + + redaktorky + + + Lidových + + + novin + + + Evy + + + Martínkové + + + o + + + Domníváte + + + se + 1 + + + , + + + že + + + se + + + vám + + + podaří + + + přesvědčit + + + koaliční + + + partnery + + + o + + + nutnosti + + + přijmout + + + ústavní + + + zákon + + + o + + + vyrovnaném + + + rozpočtu + 1 + + + ? + + + + 3 + + O + + + tom + + + nemohu + + + spekulovat + + + zejména + + + proto + 1 + + + , + + + že + + + nejde + + + pouze + + + o + + + věcnou + + + stránku + + + správnosti + + + či + + + nesprávnosti + + + této + + + iniciativy + 1 + + + . + + + + + + to + + + samozřejmě + + + i + + + stránku + + + politickou + 1 + + + , + + + prestižní + + + a + + + + + + mám + + + obavu + 1 + + + , + + + že + + + druhá + + + stránka + + + může + + + zvítězit + + + nad + + + tou + + + první + + + a + + + že + + + koaliční + + + partneři + + + mohou + + + být + + + proti + + + zejména + + + z + + + důvodu + + + druhého + 1 + + + . + + + + 4 + + Ale + + + toto + + + téma + + + je + + + vážné + 1 + + + , + + + myslím + 1 + + + , + + + že + + + patří + + + mezi + + + jedno + + + z + + + hlavních + + + témat + + + naší + + + současnosti + 1 + + + , + + + a + + + proto + + + jsem + + + se + + + pokusil + + + systematicky + + + utřídit + + + argumenty + + + a + + + napsat + + + to + + + do + + + svého + + + pondělního + + + příspěvku + + + do + + + Lidových + + + novin + 1 + + + . + + + Myslím + 1 + + + , + + + že + + + teď + 1 + + + , + + + v + + + krátké + + + odpovědi + 1 + + + , + + + bych + + + to + + + zploštil + 1 + + + , + + + zkrátil + 1 + + + , + + + a + + + to + + + není + + + třeba + 1 + + + . + + + o + + + + 5 + + Postrádá + + + ODS + + + jako + + + pravicová + + + strana + + + na + + + novinovém + + + trhu + + + nezávislý + + + deník + 1 + + + , + + + který + + + by + + + dostatečně + + + tlumočil + + + její + + + postoje + + + vůči + + + společnosti + 1 + + + ? + + + Hovoří + + + se + + + v + + + těchto + + + dnech + + + o + + + propojení + 1 + + + , + + + které + + + údajně + + + existuje + + + mezi + + + ODS + + + a + + + deníkem + + + Telegraf + 1 + + + . + + + + 6 + + ODS + + + opravdu + + + nechybí + + + žádný + + + takový + + + deník + 1 + + + . + + + Mnohokrát + + + jsme + + + se + + + přesvědčili + + + všichni + 1 + + + , + + + že + + + není + + + vhodné + 1 + + + , + + + aby + + + politická + + + strana + + + měla + + + svůj + + + deník + 1 + + + . + + + O + + + nic + + + takového + + + neusilujeme + 1 + + + . + + + Důvody + + + jsou + + + dva + 1 + + + . + + + Na + + + trhu + + + s + + + deníky + + + a + + + týdeníky + + + je + + + podle + + + mého + + + názoru + + + taková + + + pluralita + + + a + + + taková + + + konkurence + 1 + + + , + + + že + + + není + + + sebemenším + + + problémem + + + se + + + s + + + jakýmkoliv + + + názorem + + + dostat + + + do + + + těchto + + + sdělovacích + + + prostředků + 1 + + + , + + + a + + + proto + + + pootáčet + + + jeden + + + deník + + + tím + + + či + + + oním + + + směrem + + + by + + + bylo + + + podle + + + mého + + + názoru + + + naprosto + + + zbytečné + + + a + + + myslím + 1 + + + , + + + že + + + o + + + to + + + nikdo + + + neusiluje + + + ani + + + v + + + jiné + + + politické + + + straně + 1 + + + . + + + Obdobný + + + pocit + + + mám + + + ohledně + + + demonopolizovaného + + + rozhlasu + 1 + + + . + + + Nemám + + + identický + + + pocit + + + u + + + tiskových + + + kanceláří + 1 + + + , + + + kde + + + monopol + + + + + + jedné + + + jediné + + + je + + + stále + + + velmi + + + výrazný + 1 + + + , + + + a + + + také + + + ohledně + + + televize + + + tento + + + pocit + + + nemám + 1 + + + . + + + Může + + + možná + + + vznikat + + + někde + + + jistý + + + problém + + + z + + + hlediska + + + okresních + + + novin + 1 + + + , + + + ale + + + ani + + + tam + + + se + + + mi + + + to + + + nezdá + + + tak + + + dramatické + 1 + + + , + + + protože + + + každý + + + si + + + může + + + koupit + + + celostátní + + + deník + + + a + + + nemůže + + + se + + + vymlouvat + 1 + + + , + + + že + + + je + + + vázán + + + na + + + Nové + + + Příbramsko + 1 + + + , + + + Sedlčansko + 1 + + + , + + + Benešovsko + + + či + + + Vlašimsko + 1 + + + . + + + Ani + + + těmto + + + argumentům + + + nevěřím + 1 + + + . + + + o + + + + 7 + + Odmítáte + + + tedy + + + tvrzení + 1 + + + , + + + že + + + se + + + ODS + + + snaží + + + získat + + + vliv + + + na + + + deník + + + Telegraf + 1 + + + ? + + + + 8 + + Již + + + jsem + + + několikrát + + + řekl + 1 + + + , + + + že + + + kdybych + + + měl + + + na + + + celém + + + spektru + + + novin + + + hledat + + + deník + 1 + + + , + + + o + + + kterém + + + bych + + + si + + + myslel + 1 + + + , + + + že + + + je + + + dlouhodobě + + + mým + + + postojům + + + nejbližší + 1 + + + , + + + tak + + + by + + + to + + + byl + + + Telegraf + 1 + + + . + + + Takže + + + myšlenku + 1 + + + , + + + že + + + bych + + + měl + + + motivaci + 1 + + + , + + + aby + + + se + + + toto + + + změnilo + 1 + + + , + + + považuji + + + za + + + zcela + + + lichou + 1 + + + . + + + S + + + nikým + + + jsem + + + tam + + + nekonverzoval + 1 + + + , + + + žádný + + + politický + + + orgán + + + ODS + + + se + + + tímto + + + tématem + + + nezabýval + 1 + + + . + + + o + + + + 9 + + Jaký + + + máte + + + názor + + + na + + + účast + + + nezávislých + + + kandidátů + + + v + + + komunálních + + + volbách + 1 + + + ? + + + + 10 + + ODS + + + odedávna + + + zastávala + + + názor + 1 + + + , + + + který + + + je + + + stoprocentně + + + i + + + názorem + + + mým + 1 + + + , + + + že + + + základní + + + entitou + + + naší + + + politické + + + scény + + + je + + + politická + + + strana + 1 + + + , + + + a + + + že + + + pokus + + + nahrazovat + + + politickou + + + stranu + + + něčím + + + jiným + + + je + + + vždycky + + + trochu + + + zvláštností + 1 + + + . + + + Důvodů + + + je + + + mnoho + 1 + + + , + + + primární + + + ten + 1 + + + , + + + že + + + v + + + kandidátovi + + + politické + + + strany + + + volí + + + občan + + + nejen + + + konkrétní + + + osobu + 1 + + + , + + + ale + + + i + + + politickou + + + stranu + 1 + + + , + + + která + + + je + + + jeho + + + zázemím + 1 + + + . + + + Volí + + + určitý + + + konzistentní + + + politický + + + program + 1 + + + . + + + Volí + + + chování + + + této + + + strany + + + a + + + nevolí + + + pouze + + + hezký + 1 + + + , + + + případně + + + méně + + + půvabný + + + obličej + + + kandidáta + 1 + + + , + + + za + + + kterým + + + nic + + + nestojí + 1 + + + . + + + Není + + + ničím + + + vázán + 1 + + + , + + + může + + + své + + + postoje + + + libovolně + + + měnit + 1 + + + . + + + To + + + je + + + naše + + + dlouhodobé + + + přesvědčení + 1 + + + , + + + a + + + proto + + + vždy + + + budeme + + + preferovat + + + politické + + + strany + + + jako + + + základní + + + entitu + + + politické + + + scény + + + oproti + + + individualizovaným + + + nezávislým + + + kandidátům + 1 + + + . + + + + 11 + + Na + + + druhé + + + straně + + + vím + 1 + + + , + + + že + + + v + + + řadě + + + malých + + + obcí + + + nejsou + + + zaběhnuté + + + politické + + + strany + 1 + + + , + + + jednotlivec + + + není + + + schopen + + + stranu + + + vytvořit + + + či + + + založit + + + její + + + odbočku + 1 + + + . + + + To + + + znamená + 1 + + + , + + + že + + + bude + + + kandidovat + + + bez + + + podpory + + + politické + + + strany + 1 + + + . + + + V + + + realitě + + + malých + + + obcí + + + není + + + důvod + + + proti + + + tomu + + + vystupovat + 1 + + + . + + + + diff --git a/demo/pdt_train/ln94206_62.a b/demo/pdt_train/ln94206_62.a new file mode 100644 index 00000000..f6ff4591 --- /dev/null +++ b/demo/pdt_train/ln94206_62.a @@ -0,0 +1,321 @@ + + + + + + + + + + + + Manual annotation + + + + + m#m-ln94206-62-p1s1 + 0 + + + m#m-ln94206-62-p1s1w1 + ExD + 1 + 1 + + + + + m#m-ln94206-62-p2s1 + 0 + + + m#m-ln94206-62-p2s1w4 + Pred + 4 + 1 + + + m#m-ln94206-62-p2s1w1 + AuxP + 1 + 1 + + + m#m-ln94206-62-p2s1w2 + Adv + 2 + 1 + + + m#m-ln94206-62-p2s1w3 + Atr + 3 + 1 + + + + + + + m#m-ln94206-62-p2s1w9 + Sb + 9 + 1 + + + m#m-ln94206-62-p2s1w7 + Atr + 7 + 1 + + + m#m-ln94206-62-p2s1w5 + AuxZ + 5 + 1 + + + m#m-ln94206-62-p2s1w6 + Adv + 6 + 1 + + + + + m#m-ln94206-62-p2s1w8 + Atr + 8 + 1 + + + m#m-ln94206-62-p2s1w10 + AuxP + 10 + 1 + + + m#m-ln94206-62-p2s1w11 + Atr + 11 + 1 + + + + + + + m#m-ln94206-62-p2s1w12 + Obj + 12 + 1 + + + m#m-ln94206-62-p2s1w13 + AuxP + 13 + 1 + + + m#m-ln94206-62-p2s1w14 + Atr + 14 + 1 + + + m#m-ln94206-62-p2s1w15 + Atr + 15 + 1 + + + m#m-ln94206-62-p2s1w19 + Atr + 19 + 2 + + + m#m-ln94206-62-p2s1w16 + AuxX + 16 + 0 + + + m#m-ln94206-62-p2s1w17 + Obj + 17 + 2 + + + m#m-ln94206-62-p2s1w18 + Adv + 18 + 2 + + + + + + + + + + + + + + + m#m-ln94206-62-p2s1w20 + AuxK + 20 + 0 + + + + + m#m-ln94206-62-p2s2 + 0 + + + m#m-ln94206-62-p2s2w2 + Pred + 2 + 1 + + + m#m-ln94206-62-p2s2w1 + Sb + 1 + 1 + + + m#m-ln94206-62-p2s2w4 + AuxC + 4 + 2 + + + m#m-ln94206-62-p2s2w3 + AuxX + 3 + 0 + + + m#m-ln94206-62-p2s2w9 + Obj + 9 + 2 + + + m#m-ln94206-62-p2s2w6 + AuxP + 6 + 2 + + + m#m-ln94206-62-p2s2w8 + Adv + 8 + 2 + + + m#m-ln94206-62-p2s2w7 + Atr + 7 + 2 + + + m#m-ln94206-62-p2s2w5 + AuxZ + 5 + 2 + + + + + + + + + m#m-ln94206-62-p2s2w10 + Obj + 10 + 2 + + + m#m-ln94206-62-p2s2w11 + AuxP + 11 + 2 + + + m#m-ln94206-62-p2s2w13 + Coord + 13 + 2 + + + m#m-ln94206-62-p2s2w12 + Atr + 1 + 12 + 2 + + + m#m-ln94206-62-p2s2w14 + Atr + 1 + 14 + 2 + + + m#m-ln94206-62-p2s2w15 + Atr + 15 + 2 + + + + + + + m#m-ln94206-62-p2s2w16 + Atr + 16 + 2 + + + m#m-ln94206-62-p2s2w17 + AuxP + 17 + 2 + + + m#m-ln94206-62-p2s2w18 + Adv + 18 + 2 + + + + + + + + + + + + + + + m#m-ln94206-62-p2s2w19 + AuxK + 19 + 0 + + + + + diff --git a/demo/pdt_train/ln94206_62.in.conll b/demo/pdt_train/ln94206_62.in.conll new file mode 100644 index 00000000..181990c6 --- /dev/null +++ b/demo/pdt_train/ln94206_62.in.conll @@ -0,0 +1,53 @@ +# newdoc +# newpar +# sent_id = 1 +# text = Paragrafy +1 Paragrafy paragraf NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 0 root _ SpacesAfter=\s\n\n + +# newpar +# sent_id = 2 +# text = V nakladatelství Olympia odebral již soudně trestaný osmadvacetiletý podnikatel z Prahy časopisy za 25 000 Kč, které dosud nezaplatil. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 nakladatelství nakladatelství NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Olympia Olympia PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 odebral odebrat VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 již již ADV Db------------- _ 6 advmod:emph _ _ +6 soudně soudně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 4 advmod _ _ +7 trestaný trestaný ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +8 osmadvacetiletý osmadvacetiletý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 podnikatel podnikatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +10 z z ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 9 nmod _ _ +12 časopisy časopis NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 4 obj _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 25 25 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ _ +15 000 000 NUM C=------------- NumForm=Digit|NumType=Card 4 obl _ _ +16 Kč Kč NOUN NNFXX-----A---- Gender=Fem|Polarity=Pos 15 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 které který DET P4YP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Int,Rel 20 obj _ _ +19 dosud dosud ADV Db------------- PronType=Dem 20 advmod _ _ +20 nezaplatil zaplatit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 15 acl _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 3 +# text = Kriminalisté zjistili, že nejméně v jedenácti případech neuhradil zboží za milion a půl korun odebrané na fakturu. +1 Kriminalisté kriminalista NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +2 zjistili zjistit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 nejméně málo ADV Dg-------3A---- Degree=Sup|Polarity=Pos 8 advmod:emph _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 jedenácti jedenáct NUM Cn-P6---------- Case=Loc|Number=Plur|NumForm=Word|NumType=Card 8 nummod _ _ +8 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 9 obl _ _ +9 neuhradil uhradit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 2 ccomp _ _ +10 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +11 za za ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 milion milión NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 10 nmod _ _ +13 a a CCONJ J^------------- _ 14 cc _ _ +14 půl půl NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 conj _ _ +15 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 12 nmod _ _ +16 odebrané odebraný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 10 amod _ _ +17 na na ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 fakturu faktura NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 16 obl _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 2 punct _ _ + diff --git a/demo/pdt_train/ln94206_62.m b/demo/pdt_train/ln94206_62.m new file mode 100644 index 00000000..30f30f98 --- /dev/null +++ b/demo/pdt_train/ln94206_62.m @@ -0,0 +1,382 @@ + + + + + + + + + + cs + + Manual annotation + + + + + manual + + w#w-ln94206-62-p1s1w1 + +
Paragrafy
+ paragraf + NNIP1-----A---- +
+
+ + + manual + + w#w-ln94206-62-p2s1w1 + +
V
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94206-62-p2s1w2 + +
nakladatelství
+ nakladatelství + NNNS6-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w3 + +
Olympia
+ Olympia_;K_^(nakladatelství) + NNFS1-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w4 + +
odebral
+ odebrat + VpYS---XR-AA--- +
+ + manual + + w#w-ln94206-62-p2s1w5 + +
již
+ již + Db------------- +
+ + manual + + w#w-ln94206-62-p2s1w6 + +
soudně
+ soudně_^(*1ý) + Dg-------1A---- +
+ + manual + + w#w-ln94206-62-p2s1w7 + +
trestaný
+ trestaný_^(*2t) + AAMS1----1A---- +
+ + manual + + w#w-ln94206-62-p2s1w8 + +
osmadvacetiletý
+ osmadvacetiletý + AAMS1----1A---- +
+ + manual + + w#w-ln94206-62-p2s1w9 + +
podnikatel
+ podnikatel + NNMS1-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w10 + +
z
+ z-1 + RR--2---------- +
+ + manual + + w#w-ln94206-62-p2s1w11 + +
Prahy
+ Praha_;G + NNFS2-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w12 + +
časopisy
+ časopis + NNIP4-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w13 + +
za
+ za-1 + RR--4---------- +
+ + manual + + w#w-ln94206-62-p2s1w14 + + num_normalization +
25000
+ 25000 + C=------------- +
+ + manual + + w#w-ln94206-62-p2s1w15 + +
+ + NNFXX-----A---- +
+ + manual + + w#w-ln94206-62-p2s1w16 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94206-62-p2s1w17 + +
které
+ který + P4YP4---------- +
+ + manual + + w#w-ln94206-62-p2s1w18 + +
dosud
+ dosud + Db------------- +
+ + manual + + w#w-ln94206-62-p2s1w19 + +
nezaplatil
+ zaplatit_:W + VpYS---XR-NA--- +
+ + manual + + w#w-ln94206-62-p2s1w20 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94206-62-p2s2w1 + +
Kriminalisté
+ kriminalista + NNMP1-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w2 + +
zjistili
+ zjistit_:W + VpMP---XR-AA--- +
+ + manual + + w#w-ln94206-62-p2s2w3 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94206-62-p2s2w4 + +
že
+ že + J,------------- +
+ + manual + + w#w-ln94206-62-p2s2w5 + +
nejméně
+ málo-3 + Dg-------3A---- +
+ + manual + + w#w-ln94206-62-p2s2w6 + +
v
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94206-62-p2s2w7 + +
jedenácti
+ jedenáct`11 + Cn-P6---------- +
+ + manual + + w#w-ln94206-62-p2s2w8 + +
případech
+ případ + NNIP6-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w9 + +
neuhradil
+ uhradit_:W + VpYS---XR-NA--- +
+ + manual + + w#w-ln94206-62-p2s2w10 + +
zboží
+ zboží + NNNS4-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w11 + +
za
+ za-1 + RR--4---------- +
+ + manual + + w#w-ln94206-62-p2s2w12 + +
milion
+ milión`1000000 + NNIS4-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w13 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94206-62-p2s2w14 + +
půl
+ půl-2 + NNFS4-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w15 + +
korun
+ koruna + NNFP2-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w16 + +
odebrané
+ odebraný_^(*2t) + AANS4----1A---- +
+ + manual + + w#w-ln94206-62-p2s2w17 + +
na
+ na-1 + RR--4---------- +
+ + manual + + w#w-ln94206-62-p2s2w18 + +
fakturu
+ faktura + NNFS4-----A---- +
+ + manual + + w#w-ln94206-62-p2s2w19 + +
.
+ . + Z:------------- +
+
+
diff --git a/demo/pdt_train/ln94206_62.out.conllu b/demo/pdt_train/ln94206_62.out.conllu new file mode 100644 index 00000000..89148e43 --- /dev/null +++ b/demo/pdt_train/ln94206_62.out.conllu @@ -0,0 +1,53 @@ +# sent_id = 1 +# text = Paragrafy +# newdoc +# newpar +1 Paragrafy paragraf NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 0 root _ SpacesAfter=\s\n\n + +# sent_id = 2 +# text = V nakladatelství Olympia odebral již soudně trestaný osmadvacetiletý podnikatel z Prahy časopisy za 25 000 Kč, které dosud nezaplatil. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 nakladatelství nakladatelství NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Olympia Olympia PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 odebral odebrat VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 již již ADV Db------------- _ 6 advmod:emph _ _ +6 soudně soudně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 4 advmod _ _ +7 trestaný trestaný ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +8 osmadvacetiletý osmadvacetiletý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 podnikatel podnikatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ Coref=1 +10 z z ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 9 nmod _ _ +12 časopisy časopis NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 4 obj _ Coref=0 +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 25 25 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ _ +15 000 000 NUM C=------------- NumForm=Digit|NumType=Card 4 obl _ _ +16 Kč Kč NOUN NNFXX-----A---- Gender=Fem|Polarity=Pos 15 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 které který DET P4YP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Int,Rel 20 obj _ Coref=0 +19 dosud dosud ADV Db------------- PronType=Dem 20 advmod _ _ +20 nezaplatil zaplatit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 15 acl _ Drop_coref=1|SpaceAfter=No +21 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 3 +# text = Kriminalisté zjistili, že nejméně v jedenácti případech neuhradil zboží za milion a půl korun odebrané na fakturu. +1 Kriminalisté kriminalista NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +2 zjistili zjistit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 nejméně málo ADV Dg-------3A---- Degree=Sup|Polarity=Pos 8 advmod:emph _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 jedenácti jedenáct NUM Cn-P6---------- Case=Loc|Number=Plur|NumForm=Word|NumType=Card 8 nummod _ _ +8 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 9 obl _ _ +9 neuhradil uhradit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 2 ccomp _ Drop_coref=1 +10 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +11 za za ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 milion milión NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 10 nmod _ _ +13 a a CCONJ J^------------- _ 14 cc _ _ +14 půl půl NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 conj _ _ +15 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 12 nmod _ _ +16 odebrané odebraný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 10 amod _ _ +17 na na ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 fakturu faktura NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 16 obl _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 2 punct _ _ + diff --git a/demo/pdt_train/ln94206_62.t b/demo/pdt_train/ln94206_62.t new file mode 100644 index 00000000..176563a8 --- /dev/null +++ b/demo/pdt_train/ln94206_62.t @@ -0,0 +1,640 @@ + + + + + + + + + + + + Manual annotation + + other + + + + a#a-ln94206-62-p1s1 + 0 + + + + a#a-ln94206-62-p1s1w1 + + complex + paragraf + DENOM + enunc + + n.denot + inan + pl + single + + f + 1 + heading + + + + + a#a-ln94206-62-p2s1 + 0 + + + soudně trestaný + lexeme + + t-ln94206-62-p2s1w6 + t-ln94206-62-p2s1w7 + + + + + + + a#a-ln94206-62-p2s1w4 + + complex + odebrat + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w2672f4 + + + + a#a-ln94206-62-p2s1w2 + + a#a-ln94206-62-p2s1w1 + + + complex + nakladatelství + LOC + basic + + n.denot + neut + sg + single + + c + 1 + + + + a#a-ln94206-62-p2s1w3 + + complex + Olympia + ID + enunc + + n.denot + fem + sg + single + + f + 2 + + + + + + a#a-ln94206-62-p2s1w9 + + complex + podnikatel + ACT + + n.denot + anim + sg + single + + f + 4 + + + + a#a-ln94206-62-p2s1w8 + + complex + osmadvacetiletý + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94206-62-p2s1w7 + + complex + trestaný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-ln94206-62-p2s1w5 + + complex + již + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 6 + + + + a#a-ln94206-62-p2s1w6 + + complex + soudný + MANN + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94206-62-p2s1w11 + + a#a-ln94206-62-p2s1w10 + + + complex + Praha + DIR1 + basic + + n.denot + fem + sg + single + + f + 9 + + + + + + a#a-ln94206-62-p2s1w12 + + complex + časopis + PAT + + n.denot + inan + pl + single + + f + 10 + + + + a#a-ln94206-62-p2s1w15 + + a#a-ln94206-62-p2s1w13 + + + complex + + SUBS + + n.denot + fem + nr + single + + f + 11 + + + + a#a-ln94206-62-p2s1w14 + + complex + 25000 + RSTR + + adj.quant.def + basic + + f + 12 + + + + + + a#a-ln94206-62-p2s1w19 + + complex + zaplatit + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 17 + v#v-w9020f1 + + + + a#a-ln94206-62-p2s1w17 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 13 + + t-ln94206-62-p2s1w12 + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 14 + + + t-ln94206-62-p2s1w9 + SPEC + + + + + + a#a-ln94206-62-p2s1w18 + + complex + dosud + TTILL + + adv.denot.ngrad.nneg + + t + 15 + + + atom + 1 + #Neg + RHEM + f + 16 + + + + + + + + + + + a#a-ln94206-62-p2s2 + 0 + + + number + + t-ln94206-62-p2s2w12 + t-ln94206-62-p2s2w13 + t-ln94206-62-p2s2w14 + + + + + + + a#a-ln94206-62-p2s2w2 + + complex + zjistit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w9515f1 + + + + a#a-ln94206-62-p2s2w1 + + complex + kriminalista + ACT + + n.denot + anim + pl + single + + c + 1 + + + + a#a-ln94206-62-p2s2w9 + + a#a-ln94206-62-p2s2w4 + + + complex + uhradit + PAT + + v + decl + ant + cpl + it0 + act + asserted + + f + 8 + v#v-w7048f1 + + + + a#a-ln94206-62-p2s2w8 + + a#a-ln94206-62-p2s2w6 + + + complex + případ + LOC + basic + + n.denot + inan + pl + single + + c + 3 + + + + a#a-ln94206-62-p2s2w7 + + complex + jedenáct + RSTR + + adj.quant.def + basic + + f + 4 + + + + a#a-ln94206-62-p2s2w5 + + complex + málo + EXT + basic + + adj.quant.grad + sup + basic + + f + 5 + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 6 + + + t-ln94206-62-p2s1a1 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 7 + + + + a#a-ln94206-62-p2s2w10 + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 9 + + + + a#a-ln94206-62-p2s2w13 + + coap + a + CONJ + 11 + + + + a#a-ln94206-62-p2s2w15 + + complex + koruna + MAT + + n.denot + fem + pl + single + + t + 10 + + + + a#a-ln94206-62-p2s2w12 + + a#a-ln94206-62-p2s2w11 + + + complex + milión + SUBS + 1 + + n.quant.def + inan + sg + basic + + f + 12 + + + + a#a-ln94206-62-p2s2w14 + + a#a-ln94206-62-p2s2w11 + + + complex + půl + SUBS + 1 + + n.denot + fem + sg + single + + f + 13 + + + + + + a#a-ln94206-62-p2s2w16 + + complex + odebraný + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-ln94206-62-p2s2w18 + + a#a-ln94206-62-p2s2w17 + + + complex + faktura + MANN + + n.denot + fem + sg + single + + f + 15 + + + + + + + + + + + + + diff --git a/demo/pdt_train/ln94206_62.txt b/demo/pdt_train/ln94206_62.txt new file mode 100644 index 00000000..c7771da0 --- /dev/null +++ b/demo/pdt_train/ln94206_62.txt @@ -0,0 +1,3 @@ +Paragrafy + +V nakladatelství Olympia odebral již soudně trestaný osmadvacetiletý podnikatel z Prahy časopisy za 25 000 Kč, které dosud nezaplatil. Kriminalisté zjistili, že nejméně v jedenácti případech neuhradil zboží za milion a půl korun odebrané na fakturu. \ No newline at end of file diff --git a/demo/pdt_train/ln94206_62.w b/demo/pdt_train/ln94206_62.w new file mode 100644 index 00000000..b835c3c8 --- /dev/null +++ b/demo/pdt_train/ln94206_62.w @@ -0,0 +1,153 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1994 +<authname>y +<opus>ln94206 +<id>62 + + + + 1 + + Paragrafy + + + + 2 + + V + + + nakladatelství + + + Olympia + + + odebral + + + již + + + soudně + + + trestaný + + + osmadvacetiletý + + + podnikatel + + + z + + + Prahy + + + časopisy + + + za + + + 25 000 + + + + 1 + + + , + + + které + + + dosud + + + nezaplatil + 1 + + + . + + + Kriminalisté + + + zjistili + 1 + + + , + + + že + + + nejméně + + + v + + + jedenácti + + + případech + + + neuhradil + + + zboží + + + za + + + milion + + + a + + + půl + + + korun + + + odebrané + + + na + + + fakturu + 1 + + + . + + + + diff --git a/demo/pdt_train/ln94210_105.a b/demo/pdt_train/ln94210_105.a new file mode 100644 index 00000000..702ce0a2 --- /dev/null +++ b/demo/pdt_train/ln94210_105.a @@ -0,0 +1,2100 @@ + + + + + + + + + + + + Manual annotation + + + + + m#m-ln94210-105-p1s1 + 0 + + + m#m-ln94210-105-p1s1w1 + ExD + 1 + 1 + + + m#m-ln94210-105-p1s1w7 + Atr + 7 + 2 + + + m#m-ln94210-105-p1s1w2 + AuxX + 2 + 0 + + + m#m-ln94210-105-p1s1w3 + AuxP + 3 + 2 + + + m#m-ln94210-105-p1s1w4 + Adv + 4 + 2 + + + + + m#m-ln94210-105-p1s1w5 + Obj + 5 + 2 + + + m#m-ln94210-105-p1s1w6 + Sb + 6 + 2 + + + + + + + + + m#m-ln94210-105-p2s1A + 0 + + + m#m-ln94210-105-p2s1Aw3 + Coord + 3 + 1 + + + m#m-ln94210-105-p2s1Aw2 + ExD + 1 + 2 + 1 + + + m#m-ln94210-105-p2s1Aw1 + Atr + 1 + 1 + + + + + m#m-ln94210-105-p2s1Aw4 + ExD + 1 + 4 + 1 + + + + + + + m#m-ln94210-105-p2s1B + 0 + + + m#m-ln94210-105-p2s1Bw12 + Pred + 12 + 1 + + + m#m-ln94210-105-p2s1Bw3 + Obj + 3 + 1 + + + m#m-ln94210-105-p2s1Bw1 + Atr + 1 + 1 + + + m#m-ln94210-105-p2s1Bw2 + Atr + 2 + 1 + + + m#m-ln94210-105-p2s1Bw4 + Atr + 4 + 1 + + + m#m-ln94210-105-p2s1Bw5 + Atr + 5 + 1 + + + m#m-ln94210-105-p2s1Bw8 + Coord + 8 + 1 + + + m#m-ln94210-105-p2s1Bw7 + Obj + 1 + 7 + 1 + + + m#m-ln94210-105-p2s1Bw6 + Atr + 6 + 1 + + + + + m#m-ln94210-105-p2s1Bw9 + Obj + 1 + 9 + 1 + + + m#m-ln94210-105-p2s1Bw11 + Atr + 11 + 1 + + + m#m-ln94210-105-p2s1Bw10 + Atr + 10 + 1 + + + + + + + + + + + + + + + m#m-ln94210-105-p2s1Bw13 + AuxP + 13 + 1 + + + m#m-ln94210-105-p2s1Bw15 + Adv + 15 + 1 + + + m#m-ln94210-105-p2s1Bw14 + Atr + 14 + 1 + + + + + + + m#m-ln94210-105-p2s1Bw20 + Apos + 20 + 1 + + + m#m-ln94210-105-p2s1Bw17 + Sb + 1 + 17 + 1 + + + m#m-ln94210-105-p2s1Bw16 + Atr + 16 + 1 + + + m#m-ln94210-105-p2s1Bw19 + Atr + 19 + 1 + + + m#m-ln94210-105-p2s1Bw18 + Atr + 18 + 1 + + + + + + + m#m-ln94210-105-p2s1Bw21 + Sb + 1 + 21 + 1 + + + m#m-ln94210-105-p2s1Bw22 + AuxP + 22 + 1 + + + m#m-ln94210-105-p2s1Bw23 + Atr + 23 + 1 + + + m#m-ln94210-105-p2s1Bw24 + AuxP + 24 + 1 + + + m#m-ln94210-105-p2s1Bw25 + Atr + 25 + 1 + + + + + + + + + + + + + + + m#m-ln94210-105-p2s1Bw26 + AuxK + 26 + 0 + + + + + m#m-ln94210-105-p2s2 + 0 + + + m#m-ln94210-105-p2s2w9 + Coord + 9 + 0 + + + m#m-ln94210-105-p2s2w5 + Pred + 1 + 5 + 1 + + + m#m-ln94210-105-p2s2w1 + Adv + 1 + 1 + + + m#m-ln94210-105-p2s2w2 + AuxR + 2 + 1 + + + m#m-ln94210-105-p2s2w3 + Adv + 3 + 1 + + + m#m-ln94210-105-p2s2w4 + Atr + 4 + 1 + + + + + m#m-ln94210-105-p2s2w8 + Sb + 8 + 1 + + + m#m-ln94210-105-p2s2w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p2s2w7 + Atr + 7 + 1 + + + + + + + m#m-ln94210-105-p2s2w23 + Pred + 1 + 23 + 2 + + + m#m-ln94210-105-p2s2w10 + Adv + 10 + 2 + + + m#m-ln94210-105-p2s2w11 + AuxP + 11 + 2 + + + m#m-ln94210-105-p2s2w12 + Obj + 12 + 2 + + + + + m#m-ln94210-105-p2s2w13 + AuxP + 13 + 2 + + + m#m-ln94210-105-p2s2w14 + Obj + 14 + 2 + + + m#m-ln94210-105-p2s2w15 + AuxP + 15 + 2 + + + m#m-ln94210-105-p2s2w18 + Atr + 18 + 2 + + + m#m-ln94210-105-p2s2w16 + Atr + 16 + 2 + + + m#m-ln94210-105-p2s2w17 + Atr + 17 + 2 + + + + + + + + + + + m#m-ln94210-105-p2s2w19 + Adv + 19 + 2 + + + m#m-ln94210-105-p2s2w20 + AuxP + 20 + 2 + + + m#m-ln94210-105-p2s2w22 + Adv + 22 + 2 + + + m#m-ln94210-105-p2s2w21 + Atr + 21 + 2 + + + + + + + + + m#m-ln94210-105-p2s2w24 + Sb + 24 + 2 + + + m#m-ln94210-105-p2s2w25 + Atr + 25 + 2 + + + + + + + + + m#m-ln94210-105-p2s2w26 + AuxK + 26 + 0 + + + + + m#m-ln94210-105-p3s1 + 0 + + + m#m-ln94210-105-p3s1w11 + Pred + 11 + 1 + + + m#m-ln94210-105-p3s1w2 + Obj + 2 + 1 + + + m#m-ln94210-105-p3s1w1 + Atr + 1 + 1 + + + m#m-ln94210-105-p3s1w6 + Atr + 6 + 2 + + + m#m-ln94210-105-p3s1w3 + AuxX + 3 + 0 + + + m#m-ln94210-105-p3s1w4 + Sb + 4 + 2 + + + m#m-ln94210-105-p3s1w5 + AuxV + 5 + 2 + + + m#m-ln94210-105-p3s1w7 + AuxP + 7 + 2 + + + m#m-ln94210-105-p3s1w8 + Adv + 8 + 2 + + + + + + + m#m-ln94210-105-p3s1w9 + AuxX + 9 + 0 + + + + + m#m-ln94210-105-p3s1w10 + AuxT + 10 + 1 + + + m#m-ln94210-105-p3s1w12 + Sb + 12 + 1 + + + m#m-ln94210-105-p3s1w13 + Atr + 13 + 1 + + + m#m-ln94210-105-p3s1w14 + AuxP + 14 + 1 + + + m#m-ln94210-105-p3s1w16 + Atr + 16 + 1 + + + m#m-ln94210-105-p3s1w15 + Atr + 15 + 1 + + + m#m-ln94210-105-p3s1w17 + Atr + 17 + 1 + + + + + + + + + + + + + m#m-ln94210-105-p3s1w18 + AuxK + 18 + 0 + + + + + m#m-ln94210-105-p3s2 + 0 + + + m#m-ln94210-105-p3s2w3 + Pred + 3 + 1 + + + m#m-ln94210-105-p3s2w1 + AuxP + 1 + 1 + + + m#m-ln94210-105-p3s2w2 + Adv + 2 + 1 + + + + + m#m-ln94210-105-p3s2w4 + Obj + 4 + 1 + + + m#m-ln94210-105-p3s2w5 + Atr + 5 + 1 + + + m#m-ln94210-105-p3s2w6 + Obj + 6 + 1 + + + m#m-ln94210-105-p3s2w7 + AuxP + 7 + 1 + + + m#m-ln94210-105-p3s2w9 + Obj + 9 + 1 + + + m#m-ln94210-105-p3s2w8 + Atr + 8 + 1 + + + m#m-ln94210-105-p3s2w10 + AuxP + 10 + 1 + + + m#m-ln94210-105-p3s2w11 + Atr + 11 + 1 + + + m#m-ln94210-105-p3s2w13 + Atr + 13 + 1 + + + m#m-ln94210-105-p3s2w12 + Atr + 12 + 1 + + + + + + + + + + + + + + + + + + + m#m-ln94210-105-p3s2w14 + AuxK + 14 + 0 + + + + + m#m-ln94210-105-p3s3 + 0 + + + m#m-ln94210-105-p3s3w10 + Pred + 10 + 1 + + + m#m-ln94210-105-p3s3w1 + AuxP + 1 + 1 + + + m#m-ln94210-105-p3s3w3 + Adv + 3 + 1 + + + m#m-ln94210-105-p3s3w2 + Atr + 2 + 1 + + + m#m-ln94210-105-p3s3w4 + AuxP + 4 + 1 + + + m#m-ln94210-105-p3s3w8 + Coord + 8 + 1 + + + m#m-ln94210-105-p3s3w5 + Atr + 5 + 1 + + + m#m-ln94210-105-p3s3w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p3s3w7 + Atr + 1 + 7 + 1 + + + m#m-ln94210-105-p3s3w9 + Atr + 1 + 9 + 1 + + + + + + + + + + + m#m-ln94210-105-p3s3w11 + Sb + 11 + 1 + + + m#m-ln94210-105-p3s3w12 + Adv + 12 + 1 + + + m#m-ln94210-105-p3s3w14 + Pnom + 14 + 1 + + + m#m-ln94210-105-p3s3w13 + Atr + 13 + 1 + + + m#m-ln94210-105-p3s3w15 + Atr + 15 + 1 + + + m#m-ln94210-105-p3s3w19 + Obj + 19 + 2 + + + m#m-ln94210-105-p3s3w16 + AuxX + 16 + 0 + + + m#m-ln94210-105-p3s3w17 + Adv + 17 + 2 + + + m#m-ln94210-105-p3s3w20 + Atv + 20 + 2 + + + + + m#m-ln94210-105-p3s3w18 + Sb + 18 + 2 + + + m#m-ln94210-105-p3s3w21 + Obj + 21 + 2 + + + + + + + + + + + m#m-ln94210-105-p3s3w22 + AuxK + 22 + 0 + + + + + m#m-ln94210-105-p4s1 + 0 + + + m#m-ln94210-105-p4s1w4 + Pred + 4 + 1 + + + m#m-ln94210-105-p4s1w1 + Sb + 1 + 1 + + + m#m-ln94210-105-p4s1w2 + Atr + 2 + 1 + + + + + m#m-ln94210-105-p4s1w3 + Adv + 3 + 1 + + + m#m-ln94210-105-p4s1w8 + Obj + 8 + 1 + + + m#m-ln94210-105-p4s1w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p4s1w5 + Adv + 5 + 1 + + + + + m#m-ln94210-105-p4s1w7 + Atr + 7 + 1 + + + m#m-ln94210-105-p4s1w9 + Atr + 9 + 1 + + + m#m-ln94210-105-p4s1w11 + Atr + 11 + 1 + + + m#m-ln94210-105-p4s1w10 + Atr + 10 + 1 + + + + + + + + + + + m#m-ln94210-105-p4s1w12 + AuxK + 12 + 0 + + + + + m#m-ln94210-105-p4s2 + 0 + + + m#m-ln94210-105-p4s2w5 + Pred + 5 + 1 + + + m#m-ln94210-105-p4s2w1 + AuxP + 1 + 1 + + + m#m-ln94210-105-p4s2w4 + Obj + 4 + 1 + + + m#m-ln94210-105-p4s2w2 + Atr + 2 + 1 + + + m#m-ln94210-105-p4s2w3 + Atr + 3 + 1 + + + + + + + m#m-ln94210-105-p4s2w9 + Coord + 9 + 1 + + + m#m-ln94210-105-p4s2w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p4s2w8 + Sb + 1 + 8 + 1 + + + m#m-ln94210-105-p4s2w7 + Atr + 7 + 1 + + + + + m#m-ln94210-105-p4s2w11 + Sb + 1 + 11 + 1 + + + m#m-ln94210-105-p4s2w10 + Atr + 10 + 1 + + + + + m#m-ln94210-105-p4s2w12 + AuxP + 12 + 1 + + + m#m-ln94210-105-p4s2w14 + Atr + 14 + 1 + + + m#m-ln94210-105-p4s2w13 + Atr + 13 + 1 + + + + + + + + + + + m#m-ln94210-105-p4s2w15 + AuxK + 15 + 0 + + + + + m#m-ln94210-105-p4s3 + 0 + + + m#m-ln94210-105-p4s3w5 + Pred + 5 + 1 + + + m#m-ln94210-105-p4s3w1 + Sb + 1 + 1 + + + m#m-ln94210-105-p4s3w2 + Adv + 2 + 1 + + + m#m-ln94210-105-p4s3w3 + AuxP + 3 + 1 + + + m#m-ln94210-105-p4s3w4 + Adv + 4 + 1 + + + + + m#m-ln94210-105-p4s3w10 + Apos + 10 + 1 + + + m#m-ln94210-105-p4s3w7 + Obj + 1 + 7 + 1 + + + m#m-ln94210-105-p4s3w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p4s3w9 + Atr + 9 + 1 + + + m#m-ln94210-105-p4s3w8 + Atr + 8 + 1 + + + + + + + m#m-ln94210-105-p4s3w11 + Obj + 1 + 11 + 1 + + + m#m-ln94210-105-p4s3w21 + Coord + 21 + 1 + + + m#m-ln94210-105-p4s3w17 + Coord + 1 + 17 + 1 + + + m#m-ln94210-105-p4s3w13 + Atr + 1 + 13 + 1 + + + m#m-ln94210-105-p4s3w12 + Atr + 12 + 1 + + + + + m#m-ln94210-105-p4s3w14 + AuxX + 14 + 1 + + + m#m-ln94210-105-p4s3w16 + Atr + 1 + 16 + 1 + + + m#m-ln94210-105-p4s3w15 + Atr + 15 + 1 + + + + + m#m-ln94210-105-p4s3w19 + Atr + 1 + 19 + 1 + + + m#m-ln94210-105-p4s3w18 + Atr + 18 + 1 + + + + + + + m#m-ln94210-105-p4s3w20 + AuxX + 20 + 1 + + + m#m-ln94210-105-p4s3w25 + Coord + 1 + 25 + 1 + + + m#m-ln94210-105-p4s3w22 + AuxZ + 22 + 1 + + + m#m-ln94210-105-p4s3w24 + Atr + 1 + 24 + 1 + + + m#m-ln94210-105-p4s3w23 + Atr + 23 + 1 + + + + + m#m-ln94210-105-p4s3w27 + Atr + 1 + 27 + 1 + + + m#m-ln94210-105-p4s3w26 + Atr + 26 + 1 + + + + + + + + + + + m#m-ln94210-105-p4s3w28 + AuxG + 28 + 0 + + + + + + + m#m-ln94210-105-p4s3w29 + AuxK + 29 + 0 + + + + + m#m-ln94210-105-p4s4 + 0 + + + m#m-ln94210-105-p4s4w5 + Pred + 5 + 1 + + + m#m-ln94210-105-p4s4w4 + Sb + 4 + 1 + + + m#m-ln94210-105-p4s4w2 + Atr + 2 + 1 + + + m#m-ln94210-105-p4s4w1 + Atr + 1 + 1 + + + + + m#m-ln94210-105-p4s4w3 + Atr + 3 + 1 + + + + + m#m-ln94210-105-p4s4w7 + Obj + 7 + 1 + + + m#m-ln94210-105-p4s4w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p4s4w9 + Atr + 9 + 1 + + + m#m-ln94210-105-p4s4w8 + Atr + 8 + 1 + + + m#m-ln94210-105-p4s4w11 + Atr + 11 + 1 + + + m#m-ln94210-105-p4s4w10 + Atr + 10 + 1 + + + + + m#m-ln94210-105-p4s4w29 + Coord + 1 + 29 + 2 + + + m#m-ln94210-105-p4s4w12 + AuxG + 12 + 0 + + + m#m-ln94210-105-p4s4w15 + Atr + 1 + 15 + 2 + + + m#m-ln94210-105-p4s4w13 + Adv + 13 + 2 + + + m#m-ln94210-105-p4s4w14 + AuxR + 14 + 2 + + + m#m-ln94210-105-p4s4w16 + Sb + 16 + 2 + + + + + m#m-ln94210-105-p4s4w17 + AuxX + 17 + 2 + + + m#m-ln94210-105-p4s4w18 + Atr + 1 + 18 + 2 + + + m#m-ln94210-105-p4s4w19 + AuxX + 19 + 2 + + + m#m-ln94210-105-p4s4w23 + Coord + 1 + 23 + 2 + + + m#m-ln94210-105-p4s4w20 + Atr + 1 + 20 + 2 + + + m#m-ln94210-105-p4s4w21 + AuxP + 21 + 2 + + + m#m-ln94210-105-p4s4w22 + Atr + 22 + 2 + + + + + + + m#m-ln94210-105-p4s4w24 + Atr + 1 + 24 + 2 + + + m#m-ln94210-105-p4s4w25 + AuxP + 25 + 2 + + + m#m-ln94210-105-p4s4w26 + Atr + 26 + 2 + + + + + + + + + m#m-ln94210-105-p4s4w27 + AuxX + 27 + 2 + + + m#m-ln94210-105-p4s4w28 + Atr + 1 + 28 + 2 + + + m#m-ln94210-105-p4s4w30 + Atr + 1 + 30 + 2 + + + m#m-ln94210-105-p4s4w31 + AuxG + 31 + 0 + + + + + + + + + + + m#m-ln94210-105-p4s4w32 + AuxK + 32 + 0 + + + + + m#m-ln94210-105-p4s5 + 0 + + + m#m-ln94210-105-p4s5w1 + Pred + 1 + 1 + + + m#m-ln94210-105-p4s5w2 + Adv + 2 + 1 + + + m#m-ln94210-105-p4s5w5 + Obj + 5 + 1 + + + m#m-ln94210-105-p4s5w4 + Atr + 4 + 1 + + + m#m-ln94210-105-p4s5w3 + Adv + 3 + 1 + + + + + m#m-ln94210-105-p4s5w7 + Atr + 7 + 1 + + + m#m-ln94210-105-p4s5w6 + Atr + 6 + 1 + + + + + m#m-ln94210-105-p4s5w9 + AuxC + 9 + 2 + + + m#m-ln94210-105-p4s5w8 + AuxX + 8 + 0 + + + m#m-ln94210-105-p4s5w12 + Atr + 11 + 2 + + + m#m-ln94210-105-p4s5w11 + Sb + 10 + 2 + + + m#m-ln94210-105-p4s5w13 + Atv + 12 + 2 + + + + + m#m-ln94210-105-p4s5w14 + Obj + 13 + 2 + + + + + + + + + + + m#m-ln94210-105-p4s5w15 + AuxK + 14 + 0 + + + + + m#m-ln94210-105-p4s6 + 0 + + + m#m-ln94210-105-p4s6w6 + Pred + 6 + 1 + + + m#m-ln94210-105-p4s6w1 + AuxP + 1 + 1 + + + m#m-ln94210-105-p4s6w3 + Obj + 3 + 1 + + + m#m-ln94210-105-p4s6w2 + Atr + 2 + 1 + + + + + + + m#m-ln94210-105-p4s6w4 + AuxR + 4 + 1 + + + m#m-ln94210-105-p4s6w5 + Adv + 5 + 1 + + + + + m#m-ln94210-105-p4s6w7 + AuxK + 7 + 0 + + + + + m#m-ln94210-105-p5s1 + 0 + + + m#m-ln94210-105-p5s1w4 + Pred + 4 + 1 + + + m#m-ln94210-105-p5s1w2 + Sb + 2 + 1 + + + m#m-ln94210-105-p5s1w1 + Atr + 1 + 1 + + + + + m#m-ln94210-105-p5s1w3 + AuxT + 3 + 1 + + + m#m-ln94210-105-p5s1w5 + Obj + 5 + 1 + + + m#m-ln94210-105-p5s1w8 + Coord + 8 + 1 + + + m#m-ln94210-105-p5s1w7 + Atr + 1 + 7 + 1 + + + m#m-ln94210-105-p5s1w6 + Atr + 6 + 1 + + + + + m#m-ln94210-105-p5s1w11 + Atr + 1 + 11 + 1 + + + m#m-ln94210-105-p5s1w9 + Atr + 9 + 1 + + + m#m-ln94210-105-p5s1w10 + Atr + 10 + 1 + + + m#m-ln94210-105-p5s1w13 + Coord + 13 + 1 + + + m#m-ln94210-105-p5s1w12 + Atr + 1 + 12 + 1 + + + m#m-ln94210-105-p5s1w14 + Atr + 1 + 14 + 1 + + + m#m-ln94210-105-p5s1w16 + Atr + 16 + 1 + + + m#m-ln94210-105-p5s1w15 + Atr + 15 + 1 + + + + + + + + + + + + + + + m#m-ln94210-105-p5s1w17 + AuxK + 17 + 0 + + + + + m#m-ln94210-105-p5s2 + 0 + + + m#m-ln94210-105-p5s2w7 + Pred + 7 + 1 + + + m#m-ln94210-105-p5s2w1 + AuxP + 1 + 1 + + + m#m-ln94210-105-p5s2w3 + Adv + 3 + 1 + + + m#m-ln94210-105-p5s2w2 + Atr + 2 + 1 + + + + + + + m#m-ln94210-105-p5s2w4 + AuxT + 4 + 1 + + + m#m-ln94210-105-p5s2w6 + Adv + 6 + 1 + + + m#m-ln94210-105-p5s2w5 + Atr + 5 + 1 + + + + + m#m-ln94210-105-p5s2w8 + Sb + 8 + 1 + + + m#m-ln94210-105-p5s2w9 + Atr + 9 + 1 + + + + + m#m-ln94210-105-p5s2w10 + Obj + 10 + 1 + + + m#m-ln94210-105-p5s2w11 + Obj + 11 + 1 + + + m#m-ln94210-105-p5s2w12 + Atr + 12 + 1 + + + m#m-ln94210-105-p5s2w14 + Atr + 14 + 1 + + + m#m-ln94210-105-p5s2w13 + Atr + 13 + 1 + + + + + + + m#m-ln94210-105-p5s2w15 + AuxP + 15 + 1 + + + m#m-ln94210-105-p5s2w16 + Atr + 16 + 1 + + + + + + + + + + + m#m-ln94210-105-p5s2w17 + AuxK + 17 + 0 + + + + + m#m-ln94210-105-p6s1 + 0 + + + m#m-ln94210-105-p6s1w2 + Pred + 2 + 1 + + + m#m-ln94210-105-p6s1w1 + Adv + 1 + 1 + + + m#m-ln94210-105-p6s1w3 + AuxP + 3 + 1 + + + m#m-ln94210-105-p6s1w4 + Adv + 4 + 1 + + + m#m-ln94210-105-p6s1w6 + Atr + 6 + 1 + + + m#m-ln94210-105-p6s1w5 + Atr + 5 + 1 + + + + + + + + + m#m-ln94210-105-p6s1w7 + Sb + 7 + 1 + + + m#m-ln94210-105-p6s1w10 + Coord + 10 + 1 + + + m#m-ln94210-105-p6s1w9 + Atr + 1 + 9 + 1 + + + m#m-ln94210-105-p6s1w8 + Atr + 8 + 1 + + + + + m#m-ln94210-105-p6s1w12 + Atr + 1 + 12 + 1 + + + m#m-ln94210-105-p6s1w11 + Atr + 11 + 1 + + + + + m#m-ln94210-105-p6s1w13 + AuxP + 13 + 1 + + + m#m-ln94210-105-p6s1w14 + Atr + 14 + 1 + + + m#m-ln94210-105-p6s1w17 + Atr + 17 + 1 + + + m#m-ln94210-105-p6s1w15 + Atr + 15 + 1 + + + m#m-ln94210-105-p6s1w16 + Atr + 16 + 1 + + + + + + + + + + + + + + + m#m-ln94210-105-p6s1w18 + AuxK + 18 + 0 + + + + + diff --git a/demo/pdt_train/ln94210_105.in.conll b/demo/pdt_train/ln94210_105.in.conll new file mode 100644 index 00000000..8a4f8f01 --- /dev/null +++ b/demo/pdt_train/ln94210_105.in.conll @@ -0,0 +1,294 @@ +1 Literatura literatura NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 7 punct _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 níž jenž PRON P9FS6---------- Case=Loc|Gender=Fem|Number=Sing|PrepCase=Pre|PronType=Rel 7 nmod _ _ +5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 7 auxpass:reflex _ _ +6 doba doba NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 7 nsubj _ _ +7 nevidí vidět VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 acl _ _ + +1 Petr Petr PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 16 nsubj _ _ +2 Matoušek Matoušek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 1 punct _ _ +4 Liblice Liblice PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 1 dep _ _ +5 Letošní letošní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +6 pátý pátý ADJ CrIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumType=Ord 7 amod _ _ +7 ročník ročník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dep _ _ +8 semináře seminář NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +9 určeného určený ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 8 amod _ _ +10 zahraničním zahraniční ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +11 překladatelům překladatel NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ _ +12 a a CONJ J^------------- _ 11 cc _ _ +13 znalcům znalec NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +16 hostí hostit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +17 od od ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +18 pondělního pondělní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 večera večer NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ _ +20 kultovní kultovní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 19 amod _ _ +21 místo místo ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +22 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 20 nmod _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 16 punct _ _ +25 zámeček zámeček NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 16 conj _ _ +26 v v ADP RR--6---------- AdpType=Prep|Case=Loc 27 case _ _ +27 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 25 nmod _ _ +28 u u ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +29 Mělníka Mělník PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 27 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 16 punct _ _ + +1 Zde zde ADV Db------------- _ 5 advmod _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 auxpass:reflex _ _ +3 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +4 1963 1963 NUM C=------------- NumForm=Digit|NumType=Card 3 nummod _ _ +5 uskutečnila uskutečnit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 pověstná pověstný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +7 kafkovská kafkovský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 konference konference NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 zde zde ADV Db------------- _ 23 advmod _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 ni on PRON P5FS4--3------- Case=Acc|Gender=Fem|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 23 nmod _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +14 zájmu zájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 13 mwe _ _ +15 o o ADP RR--4---------- AdpType=Prep|Case=Acc 13 mwe _ _ +16 pražskou pražský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 německou německý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 literaturu literatura NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ _ +19 záhy záhy ADV Db------------- _ 23 advmod _ _ +20 po po ADP RR--6---------- AdpType=Prep|Case=Loc 22 case _ _ +21 listopadových listopadový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 událostech událost_,a NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 23 nmod _ _ +23 navázala navázat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ _ +24 konference konference NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 23 nsubj _ _ +25 werfelovská werfelovský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 24 amod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Pětidenního pětidenní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 semináře seminář NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 dobj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 6 nsubjpass _ _ +5 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 6 auxpass _ _ +6 zakončen zakončit VERB VsYS---XX-AP--- Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 2 acl _ _ +7 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 8 case _ _ +8 Znojmě Znojmo PROPN NNNS6-----A---- Case=Loc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl _ _ +11 účastní účastnit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 čtyřicet čtyřicet NUM Cn-S1---------- Case=Nom|Number=Sing|NumForm=Word|NumType=Card 13 nummod:gov _ _ +13 bohemistů bohemista NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 11 nsubj _ _ +14 z z ADP RR--2---------- AdpType=Prep|Case=Gen 16 case _ _ +15 různých různý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 částí část NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 13 nmod _ _ +17 světa svět NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 11 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 3 nmod _ _ +3 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 dobj _ _ +5 seznámit seznámit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 acl _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +7 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +8 nejnovějším nový ADJ AAIS7----3A---- Animacy=Inan|Case=Ins|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 vývojem vývoj NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 poli pole NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ _ +12 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 13 det _ _ +13 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +2 přizvané přizvaný ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +3 hosty host NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ _ +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +5 různých různý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +6 literárních literární ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +7 institucí instituce NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 3 nmod _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 periodik periodikum NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 7 conj _ _ +10 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +11 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 14 nsubj _ _ +12 zároveň zároveň ADV Db------------- _ 14 advmod _ _ +13 zajímavá zajímavý ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 příležitost příležitost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +15 pozorovat pozorovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 14 acl _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 19 punct _ _ +17 jak jak ADV Db------------- _ 19 advmod _ _ +18 obor obor NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 19 nsubj _ _ +19 reflektuje reflektovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 ccomp _ _ +20 sám sám PRON PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Tot 18 xcomp _ _ +21 sebe se PRON P6-X4---------- Case=Acc|PronType=Prs|Reflex=Yes 19 dobj _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 14 punct _ _ + +1 Účastníci účastník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ _ +2 setkání setkání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 1 nmod _ _ +3 velice velice ADV Db------------- _ 4 advmod _ _ +4 ocenili ocenit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 nedávno nedávno ADV Db------------- _ 6 advmod _ _ +6 vydanou vydaný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +7 přehledovou přehledový ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 studii studie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +9 Panorama Panorama PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Com|Negative=Pos|Number=Sing 8 nmod _ _ +10 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +11 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 4 punct _ _ + +1 O o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +2 její jeho DET PSFSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 4 det _ _ +3 metodologické metodologický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 výstavbě výstavba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +5 promluvili promluvit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 autoři autor NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +7 Jan Jan PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 6 nmod _ _ +8 Schneider Schneider PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 a a CONJ J^------------- _ 7 cc _ _ +10 Lubomír Lubomír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 7 conj _ _ +11 Machala Machala PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 10 name _ _ +12 z z ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +13 olomoucké olomoucký ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 univerzity univerzita NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Machala Machala PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 5 nsubj _ _ +2 zároveň zároveň ADV Db------------- _ 5 advmod _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 5 nmod _ _ +5 představil představit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 zajímavá zajímavý ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 7 amod _ _ +7 díla dílo NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 5 dobj _ _ +8 poslední poslední ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 doby doba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +10 ( ( PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +11 práce práce NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 appos _ _ +12 Daniely Daniela PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 11 nmod _ _ +13 Hodrové Hodrová PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 12 name _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 12 punct _ _ +15 Michala Michal PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +16 Viewegha Viewegh PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 15 name _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 12 punct _ _ +18 Jáchyma Jáchym PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +19 Topola Topol PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 18 name _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 12 punct _ _ +21 avšak avšak CONJ J^------------- _ 12 cc _ _ +22 i i CONJ J^------------- _ 23 advmod:emph _ _ +23 Martina Martin PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +24 Nezvala Nezval PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 23 name _ _ +25 či či CONJ J^------------- _ 23 cc _ _ +26 Maxi Maxi PROPN NNXXX-----A---- NameType=Giv|Negative=Pos 27 nmod _ _ +27 Marysko Marysko PROPN NNXXX-----A---- NameType=Sur|Negative=Pos 23 conj _ SpaceAfter=No +28 ) ) PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Literární literární ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 kritik kritik NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +3 Milan Milan PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nsubj _ _ +4 Jungmann Jungmann PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 3 name _ _ +5 shrnul shrnout VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 kritické kritický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +7 interpretace interpretace NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ _ +8 zásadních zásadní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 9 amod _ _ +9 textů text NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ _ +10 tohoto tento DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 11 det _ _ +11 období období NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ _ +12 ( ( PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +13 Jak jak ADV Db------------- _ 15 advmod _ _ +14 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 auxpass:reflex _ _ +15 dělá dělat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 acl _ _ +16 chlapec chlapec NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 15 nsubj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 15 punct _ _ +18 Nesmrtelnost nesmrtelnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 15 punct _ _ +20 Čekání čekání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 15 conj _ _ +21 na na ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 tmu tma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 nmod _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 15 punct _ _ +24 čekání čekání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 15 conj _ _ +25 na na ADP RR--4---------- AdpType=Prep|Case=Acc 26 case _ _ +26 světlo světlo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 24 nmod _ SpaceAfter=No +27 , , PUNCT Z:------------- _ 15 punct _ _ +28 Památník památník NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 15 conj _ _ +29 a a CONJ J^------------- _ 15 cc _ _ +30 Sestra sestra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +31 ) ) PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +32 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Připomněl připomenout VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +2 také také ADV Db------------- _ 1 advmod _ _ +3 doposud doposud ADV Db------------- _ 4 advmod _ _ +4 neúspěšnou úspěšný ADJ AAFS4----1N---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Neg|Number=Sing 5 amod _ _ +5 snahu snaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 1 dobj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ _ +7 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9-10 aby _ _ _ _ _ _ _ _ +9 aby aby SCONJ J,------------- _ 12 mark _ _ +10 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 12 aux _ _ +11 doba doba NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 nsubj _ _ +12 poznala poznat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 acl _ _ +13 sama sám PRON PLFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Tot 11 xcomp _ _ +14 sebe se PRON P6-X4---------- Case=Acc|PronType=Prs|Reflex=Yes 12 dobj _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Nad nad ADP RR--7---------- AdpType=Prep|Case=Ins 3 case _ _ +2 Jungmannovými Jungmannův ADJ AUFP7M--------- Case=Ins|Gender=Fem|Gender[psor]=Masc|NameType=Sur|Number=Plur|Poss=Yes 3 amod _ _ +3 tezemi teze NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 6 dobj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 6 auxpass:reflex _ _ +5 živě živě ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +6 diskutovalo diskutovat VERB VpNS---XR-AA--- Aspect=Imp|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Podvečerní podvečerní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 debata debata NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 týkala týkat VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 otázek otázka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +6 překladatelské překladatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 tvorby tvorba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 státního státní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +10 grantového grantový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +11 projektu projekt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ _ +12 Literatura literatura NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 autoři autor NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 12 conj _ _ +15 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ _ +16 repbuliky repbulika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 4 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +3 rámci rámec NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 7 expl _ _ +5 příští příští ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +7 chystá chystat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +8 ministerstvo ministerstvo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 7 nsubj _ _ +9 kultury kultura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ _ +10 podporovat podporovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 xcomp _ _ +11 vydávání vydávání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 10 dobj _ _ +12 knih kniha NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 11 nmod _ _ +13 našich můj DET PSXP2-P1------- Case=Gen|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 14 det _ _ +14 autorů autor NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +15 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 16 case _ _ +16 světě svět NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 7 punct _ _ + +1 Dnes dnes ADV Db------------- _ 7 advmod _ _ +2 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 7 auxpass _ _ +3 na na ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 pořadu pořad NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +5 liblického liblický ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 6 amod _ _ +6 setkání setkání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +7 téma téma NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +8 současného současný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 jazyka jazyk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +10 a a CONJ J^------------- _ 9 cc _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ _ +12 proměn proměna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ _ +13 včetně včetně ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +14 postižení postižení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +15 aktuálních aktuální ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +16 pravopisných pravopisný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +17 bojů boj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 7 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/ln94210_105.m b/demo/pdt_train/ln94210_105.m new file mode 100644 index 00000000..5fa35ee2 --- /dev/null +++ b/demo/pdt_train/ln94210_105.m @@ -0,0 +1,2550 @@ + + + + + + + + + + cs + + Manual annotation + + + + + manual + + w#w-ln94210-105-p1s1w1 + +
Literatura
+ literatura + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p1s1w2 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p1s1w3 + +
v
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p1s1w4 + +
níž
+ jenž_^(který_[ve_vedl.větě]) + P9FS6---------- +
+ + manual + + w#w-ln94210-105-p1s1w5 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p1s1w6 + +
doba
+ doba + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p1s1w7 + +
nevidí
+ vidět + VB-S---3P-NA--- +
+
+ + + manual + + w#w-ln94210-105-p2s1Aw1 + +
Petr
+ Petr_;Y + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Aw2 + +
Matoušek
+ Matoušek_;S + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Aw3 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p2s1Aw4 + +
Liblice
+ Liblice_;G + NNFS1-----A---- +
+
+ + + manual + + w#w-ln94210-105-p2s1Bw1 + +
Letošní
+ letošní + AAIS4----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw2 + +
pátý
+ pátý + CrIS4---------- +
+ + manual + + w#w-ln94210-105-p2s1Bw3 + +
ročník
+ ročník + NNIS4-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw4 + +
semináře
+ seminář + NNIS2-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw5 + +
určeného
+ určený_^(*3it) + AANS2----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw6 + +
zahraničním
+ zahraniční + AAMP3----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw7 + +
překladatelům
+ překladatel + NNMP3-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw8 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p2s1Bw9 + +
znalcům
+ znalec + NNMP3-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw10 + +
české
+ český + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw11 + +
literatury
+ literatura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw12 + +
hostí
+ hostit_:T + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p2s1Bw13 + +
od
+ od-1 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p2s1Bw14 + +
pondělního
+ pondělní + AAIS2----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw15 + +
večera
+ večer + NNIS2-----A---1 +
+ + manual + + w#w-ln94210-105-p2s1Bw16 + +
kultovní
+ kultovní + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw17 + +
místo
+ místo-1_^(fyzické_umístění) + NNNS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw18 + +
české
+ český + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw19 + +
literatury
+ literatura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw20 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p2s1Bw21 + +
zámeček
+ zámeček + NNIS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw22 + +
v
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p2s1Bw23 + +
Liblicích
+ Liblice_;G + NNFP6-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw24 + +
u
+ u-1 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p2s1Bw25 + +
Mělníka
+ Mělník_;G + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p2s1Bw26 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p2s2w1 + +
Zde
+ zde + Db------------- +
+ + manual + + w#w-ln94210-105-p2s2w2 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p2s2w3 + +
roku
+ rok + NNIS2-----A---1 +
+ + manual + + w#w-ln94210-105-p2s2w4 + +
1963
+ 1963 + C=------------- +
+ + manual + + w#w-ln94210-105-p2s2w5 + +
uskutečnila
+ uskutečnit_:W + VpQW---XR-AA--- +
+ + manual + + w#w-ln94210-105-p2s2w6 + +
pověstná
+ pověstný + AAFS1----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w7 + +
kafkovská
+ kafkovský + AAFS1----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w8 + +
konference
+ konference + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s2w9 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p2s2w10 + +
zde
+ zde + Db------------- +
+ + manual + + w#w-ln94210-105-p2s2w11 + +
na
+ na-1 + RR--4---------- +
+ + manual + + w#w-ln94210-105-p2s2w12 + +
ni
+ on-1 + P5FS4--3------- +
+ + manual + + w#w-ln94210-105-p2s2w13 + +
v
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p2s2w14 + +
zájmu
+ zájem + NNIS6-----A---- +
+ + manual + + w#w-ln94210-105-p2s2w15 + +
o
+ o-1 + RR--4---------- +
+ + manual + + w#w-ln94210-105-p2s2w16 + +
pražskou
+ pražský + AAFS4----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w17 + +
německou
+ německý + AAFS4----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w18 + +
literaturu
+ literatura + NNFS4-----A---- +
+ + manual + + w#w-ln94210-105-p2s2w19 + +
záhy
+ záhy + Db------------- +
+ + manual + + w#w-ln94210-105-p2s2w20 + +
po
+ po-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p2s2w21 + +
listopadových
+ listopadový + AAFP6----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w22 + +
událostech
+ událost_,a_^(*3ý) + NNFP6-----A---- +
+ + manual + + w#w-ln94210-105-p2s2w23 + +
navázala
+ navázat_:W + VpQW---XR-AA--- +
+ + manual + + w#w-ln94210-105-p2s2w24 + +
konference
+ konference + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p2s2w25 + +
werfelovská
+ werfelovský + AAFS1----1A---- +
+ + manual + + w#w-ln94210-105-p2s2w26 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p3s1w1 + +
Pětidenního
+ pětidenní + AAIS2----1A---- +
+ + manual + + w#w-ln94210-105-p3s1w2 + +
semináře
+ seminář + NNIS2-----A---- +
+ + manual + + w#w-ln94210-105-p3s1w3 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p3s1w4 + +
který
+ který + P4YS1---------- +
+ + manual + + w#w-ln94210-105-p3s1w5 + +
bude
+ být + VB-S---3F-AA--- +
+ + manual + + w#w-ln94210-105-p3s1w6 + +
zakončen
+ zakončit + VsYS---XX-AP--- +
+ + manual + + w#w-ln94210-105-p3s1w7 + +
ve
+ v-1 + RV--6---------- +
+ + manual + + w#w-ln94210-105-p3s1w8 + +
Znojmě
+ Znojmo_;G + NNNS6-----A---- +
+ + manual + + w#w-ln94210-105-p3s1w9 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p3s1w10 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p3s1w11 + +
účastní
+ účastnit_:T + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p3s1w12 + +
čtyřicet
+ čtyřicet`40 + Cn-S1---------- +
+ + manual + + w#w-ln94210-105-p3s1w13 + +
bohemistů
+ bohemista + NNMP2-----A---- +
+ + manual + + w#w-ln94210-105-p3s1w14 + +
z
+ z-1 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p3s1w15 + +
různých
+ různý + AAFP2----1A---- +
+ + manual + + w#w-ln94210-105-p3s1w16 + +
částí
+ část + NNFP2-----A---- +
+ + manual + + w#w-ln94210-105-p3s1w17 + +
světa
+ svět + NNIS2-----A---- +
+ + manual + + w#w-ln94210-105-p3s1w18 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p3s2w1 + +
V
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p3s2w2 + +
Liblicích
+ Liblice_;G + NNFP6-----A---- +
+ + manual + + w#w-ln94210-105-p3s2w3 + +
mají
+ mít + VB-P---3P-AA--- +
+ + manual + + w#w-ln94210-105-p3s2w4 + +
možnost
+ možnost_^(*3ý) + NNFS4-----A---- +
+ + manual + + w#w-ln94210-105-p3s2w5 + +
seznámit
+ seznámit_:W + Vf--------A---- +
+ + manual + + w#w-ln94210-105-p3s2w6 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p3s2w7 + +
s
+ s-1 + RR--7---------- +
+ + manual + + w#w-ln94210-105-p3s2w8 + +
nejnovějším
+ nový + AAIS7----3A---- +
+ + manual + + w#w-ln94210-105-p3s2w9 + +
vývojem
+ vývoj + NNIS7-----A---- +
+ + manual + + w#w-ln94210-105-p3s2w10 + +
na
+ na-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p3s2w11 + +
poli
+ pole + NNNS6-----A---- +
+ + manual + + w#w-ln94210-105-p3s2w12 + +
naší
+ můj_^(přivlast.) + PSFS2-P1------- +
+ + manual + + w#w-ln94210-105-p3s2w13 + +
literatury
+ literatura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p3s2w14 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p3s3w1 + +
Pro
+ pro-1 + RR--4---------- +
+ + manual + + w#w-ln94210-105-p3s3w2 + +
přizvané
+ přizvaný_^(*2t) + AAMP4----1A---- +
+ + manual + + w#w-ln94210-105-p3s3w3 + +
hosty
+ host + NNMP4-----A---- +
+ + manual + + w#w-ln94210-105-p3s3w4 + +
z
+ z-1 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p3s3w5 + +
různých
+ různý + AAFP2----1A---- +
+ + manual + + w#w-ln94210-105-p3s3w6 + +
literárních
+ literární + AAFP2----1A---- +
+ + manual + + w#w-ln94210-105-p3s3w7 + +
institucí
+ instituce + NNFP2-----A---- +
+ + manual + + w#w-ln94210-105-p3s3w8 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p3s3w9 + +
periodik
+ periodikum + NNNP2-----A---- +
+ + manual + + w#w-ln94210-105-p3s3w10 + +
je
+ být + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p3s3w11 + +
to
+ ten + PDNS1---------- +
+ + manual + + w#w-ln94210-105-p3s3w12 + +
zároveň
+ zároveň + Db------------- +
+ + manual + + w#w-ln94210-105-p3s3w13 + +
zajímavá
+ zajímavý + AAFS1----1A---- +
+ + manual + + w#w-ln94210-105-p3s3w14 + +
příležitost
+ příležitost + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p3s3w15 + +
pozorovat
+ pozorovat_:T + Vf--------A---- +
+ + manual + + w#w-ln94210-105-p3s3w16 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p3s3w17 + +
jak
+ jak-3 + Db------------- +
+ + manual + + w#w-ln94210-105-p3s3w18 + +
obor
+ obor_^(lidské_činnosti) + NNIS1-----A---- +
+ + manual + + w#w-ln94210-105-p3s3w19 + +
reflektuje
+ reflektovat_:T + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p3s3w20 + +
sám
+ sám_^(samotný) + PLYS1---------- +
+ + manual + + w#w-ln94210-105-p3s3w21 + +
sebe
+ se_^(zvr._zájmeno/částice) + P6-X4---------- +
+ + manual + + w#w-ln94210-105-p3s3w22 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s1w1 + +
Účastníci
+ účastník + NNMP1-----A---- +
+ + manual + + w#w-ln94210-105-p4s1w2 + +
setkání
+ setkání_^(*3at) + NNNS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s1w3 + +
velice
+ velice + Db------------- +
+ + manual + + w#w-ln94210-105-p4s1w4 + +
ocenili
+ ocenit_:W + VpMP---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s1w5 + +
nedávno
+ nedávno + Db------------- +
+ + manual + + w#w-ln94210-105-p4s1w6 + +
vydanou
+ vydaný-1_^(emitovat:_cenné_papíry,_knihu,_zvuk,...)_(*4t-1) + AAFS4----1A---- +
+ + manual + + w#w-ln94210-105-p4s1w7 + +
přehledovou
+ přehledový + AAFS4----1A---- +
+ + manual + + w#w-ln94210-105-p4s1w8 + +
studii
+ studie + NNFS4-----A---- +
+ + manual + + w#w-ln94210-105-p4s1w9 + +
Panorama
+ Panorama_;K + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s1w10 + +
české
+ český + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p4s1w11 + +
literatury
+ literatura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s1w12 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s2w1 + +
O
+ o-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p4s2w2 + +
její
+ jeho_^(přivlast.) + PSFSXFS3------- +
+ + manual + + w#w-ln94210-105-p4s2w3 + +
metodologické
+ metodologický + AAFS6----1A---- +
+ + manual + + w#w-ln94210-105-p4s2w4 + +
výstavbě
+ výstavba + NNFS6-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w5 + +
promluvili
+ promluvit_:W + VpMP---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s2w6 + +
autoři
+ autor + NNMP1-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w7 + +
Jan
+ Jan_;Y + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w8 + +
Schneider
+ Schneider_;S + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w9 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p4s2w10 + +
Lubomír
+ Lubomír_;Y + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w11 + +
Machala
+ Machala_;S + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w12 + +
z
+ z-1 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p4s2w13 + +
olomoucké
+ olomoucký + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p4s2w14 + +
univerzity
+ univerzita + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s2w15 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s3w1 + +
Machala
+ Machala_;S + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w2 + +
zároveň
+ zároveň + Db------------- +
+ + manual + + w#w-ln94210-105-p4s3w3 + +
v
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p4s3w4 + +
Liblicích
+ Liblice_;G + NNFP6-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w5 + +
představil
+ představit-1_:W_^(si_něco;_něco/někoho_někomu) + VpYS---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s3w6 + +
zajímavá
+ zajímavý + AANP4----1A---- +
+ + manual + + w#w-ln94210-105-p4s3w7 + +
díla
+ dílo_^(umělecké,_vědecké,...) + NNNP4-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w8 + +
poslední
+ poslední + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p4s3w9 + +
doby
+ doba + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w10 + +
(
+ ( + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s3w11 + +
práce
+ práce_^(jako_činnost_i_místo) + NNFP4-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w12 + +
Daniely
+ Daniela_;Y + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w13 + +
Hodrové
+ Hodrová_;S + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w14 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s3w15 + +
Michala
+ Michal_;Y + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w16 + +
Viewegha
+ Viewegh_;S + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w17 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s3w18 + +
Jáchyma
+ Jáchym_;Y + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w19 + +
Topola
+ Topol_;S + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w20 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s3w21 + +
avšak
+ avšak + J^------------- +
+ + manual + + w#w-ln94210-105-p4s3w22 + +
i
+ i-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p4s3w23 + +
Martina
+ Martin-1_;Y + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w24 + +
Nezvala
+ Nezval_;S + NNMS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w25 + +
či
+ či + J^------------- +
+ + manual + + w#w-ln94210-105-p4s3w26 + +
Maxi
+ Maxi_;Y + NNXXX-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w27 + +
Marysko
+ Marysko_;S + NNXXX-----A---- +
+ + manual + + w#w-ln94210-105-p4s3w28 + +
)
+ ) + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s3w29 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s4w1 + +
Literární
+ literární + AAMS1----1A---- +
+ + manual + + w#w-ln94210-105-p4s4w2 + +
kritik
+ kritik + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w3 + +
Milan
+ Milan_;Y + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w4 + +
Jungmann
+ Jungmann_;S + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w5 + +
shrnul
+ shrnout + VpYS---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s4w6 + +
kritické
+ kritický + AAFP4----1A---- +
+ + manual + + w#w-ln94210-105-p4s4w7 + +
interpretace
+ interpretace + NNFP4-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w8 + +
zásadních
+ zásadní + AAIP2----1A---- +
+ + manual + + w#w-ln94210-105-p4s4w9 + +
textů
+ text + NNIP2-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w10 + +
tohoto
+ tento + PDZS2---------- +
+ + manual + + w#w-ln94210-105-p4s4w11 + +
období
+ období + NNNS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w12 + +
(
+ ( + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w13 + +
Jak
+ jak-3 + Db------------- +
+ + manual + + w#w-ln94210-105-p4s4w14 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p4s4w15 + +
dělá
+ dělat_:T + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p4s4w16 + +
chlapec
+ chlapec + NNMS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w17 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w18 + +
Nesmrtelnost
+ nesmrtelnost + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w19 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w20 + +
Čekání
+ čekání_^(*3at) + NNNS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w21 + +
na
+ na-1 + RR--4---------- +
+ + manual + + w#w-ln94210-105-p4s4w22 + +
tmu
+ tma + NNFS4-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w23 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w24 + +
čekání
+ čekání_^(*3at) + NNNS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w25 + +
na
+ na-1 + RR--4---------- +
+ + manual + + w#w-ln94210-105-p4s4w26 + +
světlo
+ světlo + NNNS4-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w27 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w28 + +
Památník
+ památník + NNIS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w29 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p4s4w30 + +
Sestra
+ sestra + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s4w31 + +
)
+ ) + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s4w32 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s5w1 + +
Připomněl
+ připomenout + VpYS---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s5w2 + +
také
+ také_^(rovněž) + Db------------- +
+ + manual + + w#w-ln94210-105-p4s5w3 + +
doposud
+ doposud + Db------------- +
+ + manual + + w#w-ln94210-105-p4s5w4 + +
neúspěšnou
+ úspěšný + AAFS4----1N---- +
+ + manual + + w#w-ln94210-105-p4s5w5 + +
snahu
+ snaha + NNFS4-----A---- +
+ + manual + + w#w-ln94210-105-p4s5w6 + +
naší
+ můj_^(přivlast.) + PSFS2-P1------- +
+ + manual + + w#w-ln94210-105-p4s5w7 + +
literatury
+ literatura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p4s5w8 + +
,
+ , + Z:------------- +
+ + manual + + w#w-ln94210-105-p4s5w9 + +
aby
+ aby + J,------------- +
+ + manual + + w#w-ln94210-105-p4s5w11 + +
doba
+ doba + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p4s5w12 + +
poznala
+ poznat_:W + VpQW---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s5w13 + +
sama
+ sám_^(samotný) + PLFS1---------- +
+ + manual + + w#w-ln94210-105-p4s5w14 + +
sebe
+ se_^(zvr._zájmeno/částice) + P6-X4---------- +
+ + manual + + w#w-ln94210-105-p4s5w15 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p4s6w1 + +
Nad
+ nad-1 + RR--7---------- +
+ + manual + + w#w-ln94210-105-p4s6w2 + +
Jungmannovými
+ Jungmannův_;S_^(*2) + AUFP7M--------- +
+ + manual + + w#w-ln94210-105-p4s6w3 + +
tezemi
+ teze + NNFP7-----A---- +
+ + manual + + w#w-ln94210-105-p4s6w4 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p4s6w5 + +
živě
+ živě_^(*1ý) + Dg-------1A---- +
+ + manual + + w#w-ln94210-105-p4s6w6 + +
diskutovalo
+ diskutovat_:T + VpNS---XR-AA--- +
+ + manual + + w#w-ln94210-105-p4s6w7 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p5s1w1 + +
Podvečerní
+ podvečerní + AAFS1----1A---- +
+ + manual + + w#w-ln94210-105-p5s1w2 + +
debata
+ debata + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w3 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p5s1w4 + +
týkala
+ týkat_:T + VpQW---XR-AA--- +
+ + manual + + w#w-ln94210-105-p5s1w5 + +
otázek
+ otázka + NNFP2-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w6 + +
překladatelské
+ překladatelský + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p5s1w7 + +
tvorby
+ tvorba + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w8 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p5s1w9 + +
státního
+ státní + AAIS2----1A---- +
+ + manual + + w#w-ln94210-105-p5s1w10 + +
grantového
+ grantový + AAIS2----1A---- +
+ + manual + + w#w-ln94210-105-p5s1w11 + +
projektu
+ projekt + NNIS2-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w12 + +
Literatura
+ literatura + NNFS1-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w13 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p5s1w14 + +
autoři
+ autor + NNMP1-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w15 + +
České
+ český + AAFS2----1A---- +
+ + manual + + w#w-ln94210-105-p5s1w16 + + spell +
republiky
+ republika + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p5s1w17 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p5s2w1 + +
V
+ v-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p5s2w2 + +
jeho
+ jeho_^(přivlast.) + PSXXXZS3------- +
+ + manual + + w#w-ln94210-105-p5s2w3 + +
rámci
+ rámec + NNIS6-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w4 + +
se
+ se_^(zvr._zájmeno/částice) + P7-X4---------- +
+ + manual + + w#w-ln94210-105-p5s2w5 + +
příští
+ příští + AAIS1----1A---- +
+ + manual + + w#w-ln94210-105-p5s2w6 + +
rok
+ rok + NNIS1-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w7 + +
chystá
+ chystat_:T + VB-S---3P-AA--- +
+ + manual + + w#w-ln94210-105-p5s2w8 + +
ministerstvo
+ ministerstvo + NNNS1-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w9 + +
kultury
+ kultura + NNFS2-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w10 + +
podporovat
+ podporovat_:T + Vf--------A---- +
+ + manual + + w#w-ln94210-105-p5s2w11 + +
vydávání
+ vydávání-1_^(emitovat:_cenné_papíry,_knihu,_zvuk,...)_(*7at-1) + NNNP4-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w12 + +
knih
+ kniha + NNFP2-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w13 + +
našich
+ můj_^(přivlast.) + PSXP2-P1------- +
+ + manual + + w#w-ln94210-105-p5s2w14 + +
autorů
+ autor + NNMP2-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w15 + +
ve
+ v-1 + RV--6---------- +
+ + manual + + w#w-ln94210-105-p5s2w16 + +
světě
+ svět + NNIS6-----A---- +
+ + manual + + w#w-ln94210-105-p5s2w17 + +
.
+ . + Z:------------- +
+
+ + + manual + + w#w-ln94210-105-p6s1w1 + +
Dnes
+ dnes + Db------------- +
+ + manual + + w#w-ln94210-105-p6s1w2 + +
bude
+ být + VB-S---3F-AA--- +
+ + manual + + w#w-ln94210-105-p6s1w3 + +
na
+ na-1 + RR--6---------- +
+ + manual + + w#w-ln94210-105-p6s1w4 + +
pořadu
+ pořad + NNIS6-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w5 + +
liblického
+ liblický + AANS2----1A---- +
+ + manual + + w#w-ln94210-105-p6s1w6 + +
setkání
+ setkání_^(*3at) + NNNS2-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w7 + +
téma
+ téma + NNNS1-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w8 + +
současného
+ současný + AAIS2----1A---- +
+ + manual + + w#w-ln94210-105-p6s1w9 + +
jazyka
+ jazyk + NNIS2-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w10 + +
a
+ a-1 + J^------------- +
+ + manual + + w#w-ln94210-105-p6s1w11 + +
jeho
+ jeho_^(přivlast.) + PSXXXZS3------- +
+ + manual + + w#w-ln94210-105-p6s1w12 + +
proměn
+ proměna + NNFP2-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w13 + +
včetně
+ včetně-2 + RR--2---------- +
+ + manual + + w#w-ln94210-105-p6s1w14 + +
postižení
+ postižení_^(*4hnout) + NNNS2-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w15 + +
aktuálních
+ aktuální + AAIP2----1A---- +
+ + manual + + w#w-ln94210-105-p6s1w16 + +
pravopisných
+ pravopisný + AAIP2----1A---- +
+ + manual + + w#w-ln94210-105-p6s1w17 + +
bojů
+ boj + NNIP2-----A---- +
+ + manual + + w#w-ln94210-105-p6s1w18 + +
.
+ . + Z:------------- +
+
+
diff --git a/demo/pdt_train/ln94210_105.t b/demo/pdt_train/ln94210_105.t new file mode 100644 index 00000000..622d1a7f --- /dev/null +++ b/demo/pdt_train/ln94210_105.t @@ -0,0 +1,4681 @@ + + + + + + + + + + + + Manual annotation + + program + + + + a#a-ln94210-105-p1s1 + 0 + + + + a#a-ln94210-105-p1s1w1 + + complex + literatura + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + heading + + + + a#a-ln94210-105-p1s1w7 + + complex + vidět + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w7612f1 + + + + a#a-ln94210-105-p1s1w4 + + a#a-ln94210-105-p1s1w3 + + + complex + který + LOC + basic + + n.pron.indef + inher + inher + relat + inher + + t + 2 + + t-ln94210-105-p1s1w1 + + + + + a#a-ln94210-105-p1s1w6 + + complex + doba + ACT + + n.denot + fem + sg + single + + t + 3 + + + + a#a-ln94210-105-p1s1w5 + + complex + #PersPron + PAT + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-ln94210-105-p1s1w6 + + + + atom + 1 + #Neg + RHEM + f + 5 + + + + + + + + + a#a-ln94210-105-p2s1A + 0 + + + person + + t-ln94210-105-p2s1Aw1 + t-ln94210-105-p2s1Aw2 + + + + + + + a#a-ln94210-105-p2s1Aw3 + + coap + #Comma + CONJ + 3 + + + + a#a-ln94210-105-p2s1Aw2 + + complex + Matoušek + DENOM + enunc + 1 + 1 + + n.denot + anim + sg + single + + f + 1 + + + + a#a-ln94210-105-p2s1Aw1 + + complex + Petr + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + + + a#a-ln94210-105-p2s1Aw4 + + complex + Liblice + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 4 + + + + + + + a#a-ln94210-105-p2s1B + 0 + + + location + + t-ln94210-105-p2s1Bw23 + t-ln94210-105-p2s1Bw25 + + + + + + + a#a-ln94210-105-p2s1Bw12 + + complex + hostit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w1101f1 + + + + a#a-ln94210-105-p2s1Bw3 + + complex + ročník + PAT + + n.denot + inan + sg + single + + c + 2 + + + + a#a-ln94210-105-p2s1Bw1 + + complex + letošní + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + a#a-ln94210-105-p2s1Bw2 + + complex + pět + RSTR + + adj.quant.def + ord + + f + 3 + + + + a#a-ln94210-105-p2s1Bw4 + + complex + seminář + APP + + n.denot + inan + sg + single + + f + 4 + + + + a#a-ln94210-105-p2s1Bw5 + + complex + určený + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94210-105-p2s1Bw8 + + coap + a + CONJ + 7 + + + + a#a-ln94210-105-p2s1Bw7 + + complex + překladatel + ADDR + 1 + + n.denot + anim + pl + single + + f + 6 + + + + a#a-ln94210-105-p2s1Bw9 + + complex + znalec + ADDR + 1 + + n.denot + anim + pl + single + + f + 8 + + + + a#a-ln94210-105-p2s1Bw11 + + complex + literatura + RSTR + + n.denot + fem + sg + single + + f + 9 + + + + a#a-ln94210-105-p2s1Bw10 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + t-ln94210-105-p2s1Aw4 + PART_WHOLE + + + + + + + + a#a-ln94210-105-p2s1Bw6 + + complex + zahraniční + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + + + + + a#a-ln94210-105-p2s1Bw15 + + a#a-ln94210-105-p2s1Bw13 + + + complex + večer + TSIN + + n.denot + inan + sg + single + + t + 13 + + + + a#a-ln94210-105-p2s1Bw14 + + complex + pondělní + RSTR + + adj.denot + pos + neg0 + + t + 12 + + + + + + a#a-ln94210-105-p2s1Bw20 + + coap + #Comma + APPS + 19 + + + + a#a-ln94210-105-p2s1Bw17 + + complex + místo + ACT + 1 + + n.denot + neut + sg + single + + f + 17 + + + + a#a-ln94210-105-p2s1Bw19 + + complex + literatura + APP + + n.denot + fem + sg + single + + t + 16 + + + t-ln94210-105-p2s1Bw11 + SPEC + + + + + + a#a-ln94210-105-p2s1Bw18 + + complex + český + RSTR + + adj.denot + pos + neg0 + + t + 15 + + + t-ln94210-105-p2s1Bw10 + SPEC + + + + + + + + a#a-ln94210-105-p2s1Bw16 + + complex + kultovní + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + + + a#a-ln94210-105-p2s1Bw21 + + complex + zámeček + ACT + 1 + + n.denot + inan + sg + single + + f + 20 + + + + a#a-ln94210-105-p2s1Bw23 + + a#a-ln94210-105-p2s1Bw22 + + + complex + Liblice + LOC + basic + + n.denot + fem + pl + single + + f + 21 + + + t-ln94210-105-p2s1Aw4 + SPEC + + + + + + a#a-ln94210-105-p2s1Bw25 + + a#a-ln94210-105-p2s1Bw24 + + + complex + Mělník + LOC + near + + n.denot + anim + sg + single + + f + 22 + + + + + + + + + + + + + a#a-ln94210-105-p2s2 + 0 + + + time + + t-ln94210-105-p2s2w3 + t-ln94210-105-p2s2w4 + + + + pražská německá literatura + lexeme + + t-ln94210-105-p2s2w16 + t-ln94210-105-p2s2w17 + t-ln94210-105-p2s2w18 + + + + + + + a#a-ln94210-105-p2s2w9 + + coap + #Comma + CONJ + 8 + + + + a#a-ln94210-105-p2s2w5 + + a#a-ln94210-105-p2s2w2 + + + complex + uskutečnit_se + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w7291f1 + + + + a#a-ln94210-105-p2s2w1 + + complex + tady + LOC + basic + + adv.pron.def + + t + 1 + + + t-ln94210-105-p2s1Bw20 + SPEC + + + + + + a#a-ln94210-105-p2s2w3 + + complex + rok + TWHEN + basic + + n.denot + inan + sg + single + + t + 2 + + + + a#a-ln94210-105-p2s2w4 + + complex + 1963 + RSTR + + n.quant.def + nr + nr + basic + + f + 3 + + + + + + a#a-ln94210-105-p2s2w8 + + complex + konference + ACT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln94210-105-p2s2w7 + + complex + kafkovský + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-ln94210-105-p2s2w6 + + complex + pověstný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + + + a#a-ln94210-105-p2s2w23 + + complex + navázat + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 18 + v#v-w2291f2 + + + + a#a-ln94210-105-p2s2w10 + + complex + tady + LOC + basic + + adv.pron.def + + t + 9 + + + + a#a-ln94210-105-p2s2w14 + + a#a-ln94210-105-p2s2w13 + + + complex + zájem + REG + + n.denot + inan + sg + single + + t + 13 + + + + a#a-ln94210-105-p2s2w18 + + a#a-ln94210-105-p2s2w15 + + + complex + literatura + PAT + + n.denot + fem + sg + single + + t + 10 + + + t-ln94210-105-p2s1Bw19 + WHOLE_PART + + + + + + a#a-ln94210-105-p2s2w17 + + complex + německý + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln94210-105-p2s2w16 + + complex + pražský + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + a#a-ln94210-105-p2s2w12 + + a#a-ln94210-105-p2s2w11 + + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 14 + + + t-ln94210-105-p2s2w8 + SPEC + + + + + + a#a-ln94210-105-p2s2w19 + + complex + záhy + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 15 + + + + a#a-ln94210-105-p2s2w22 + + a#a-ln94210-105-p2s2w20 + + + complex + událost + TWHEN + after + + n.denot.neg + fem + pl + single + neg0 + + f + 16 + + + + a#a-ln94210-105-p2s2w21 + + complex + listopadový + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + a#a-ln94210-105-p2s2w24 + + complex + konference + ACT + + n.denot + fem + sg + single + + f + 19 + + + + a#a-ln94210-105-p2s2w25 + + complex + werfelovský + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + + + a#a-ln94210-105-p3s1 + 0 + + + + a#a-ln94210-105-p3s1w11 + + a#a-ln94210-105-p3s1w10 + + + complex + účastnit_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w6995f1 + + + + a#a-ln94210-105-p3s1w2 + + complex + seminář + PAT + + n.denot + inan + sg + single + + t + 1 + + + t-ln94210-105-p2s1Bw3 + SPEC + + + + + + a#a-ln94210-105-p3s1w1 + + complex + pětidenní + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-ln94210-105-p3s1w6 + + a#a-ln94210-105-p3s1w5 + + + complex + zakončit + RSTR + + v + decl + post + cpl + it0 + pas + asserted + + f + 5 + v#v-w8879f1 + + + + a#a-ln94210-105-p3s1w4 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 3 + + t-ln94210-105-p3s1w2 + + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-ln94210-105-p3s1w8 + + a#a-ln94210-105-p3s1w7 + + + complex + Znojmo + LOC + basic + + n.denot + neut + sg + single + + f + 6 + + + + + + + + a#a-ln94210-105-p3s1w13 + + complex + bohemista + ACT + + n.denot + anim + pl + single + + f + 8 + + + t-ln94210-105-p2s1Bw8 + SPEC + + + + + + a#a-ln94210-105-p3s1w12 + + complex + čtyřicet + RSTR + + adj.quant.def + basic + + f + 9 + + + + a#a-ln94210-105-p3s1w16 + + a#a-ln94210-105-p3s1w14 + + + complex + část + DIR1 + basic + + n.denot + fem + pl + single + + f + 10 + + + + a#a-ln94210-105-p3s1w17 + + complex + svět + MAT + + n.denot + inan + sg + single + + f + 11 + + + + a#a-ln94210-105-p3s1w15 + + complex + různý + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + a#a-ln94210-105-p3s2 + 0 + + + + a#a-ln94210-105-p3s2w3 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w1855f4 + + + + a#a-ln94210-105-p3s2w2 + + a#a-ln94210-105-p3s2w1 + + + complex + Liblice + LOC + basic + + n.denot + fem + pl + single + + t + 1 + + + t-ln94210-105-p2s1Bw23 + SPEC + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 2 + + + t-ln94210-105-p3s1w13 + SPEC + + + + + + a#a-ln94210-105-p3s2w4 + + complex + možnost + CPHR + + n.denot.neg + fem + sg + single + neg0 + + f + 5 + v#v-w1903f1 + + + qcomplex + 1 + #QCor + ACT + t + 4 + + t-ln94210-105-p3s2a0 + + + + + a#a-ln94210-105-p3s2w5 + + a#a-ln94210-105-p3s2w6 + + + complex + seznámit_se + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 7 + v#v-w6013f1 + + + qcomplex + 1 + #Cor + ACT + t + 6 + + t-ln94210-105-p3s2a0 + + + + + a#a-ln94210-105-p3s2w9 + + a#a-ln94210-105-p3s2w7 + + + complex + vývoj + PAT + + n.denot + inan + sg + single + + f + 8 + + + + a#a-ln94210-105-p3s2w8 + + complex + nový + RSTR + + adj.denot + sup + neg0 + + f + 9 + + + + a#a-ln94210-105-p3s2w11 + + a#a-ln94210-105-p3s2w10 + + + complex + pole + LOC + basic + + n.denot + neut + sg + single + + f + 10 + + + + a#a-ln94210-105-p3s2w13 + + complex + literatura + APP + + n.denot + fem + sg + single + + f + 12 + + + t-ln94210-105-p2s1Bw19 + SPEC + + + + + + a#a-ln94210-105-p3s2w12 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 11 + + + t-ln94210-105-p2s1Bw18 + SPEC + + + + + + + + + + + + + + + + + + + a#a-ln94210-105-p3s3 + 0 + + + + a#a-ln94210-105-p3s3w10 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-ln94210-105-p3s1w11 + discourse + 0 + 1 + synchr + + t-ln94210-105-p3s3w12 + + + + v#v-w243f1 + + + + a#a-ln94210-105-p3s3w12 + + atom + zároveň + PREC + t + 1 + + + + a#a-ln94210-105-p3s3w11 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 2 + segm + + + + a#a-ln94210-105-p3s3w14 + + complex + příležitost + PAT + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln94210-105-p3s3w3 + + a#a-ln94210-105-p3s3w1 + + + complex + host + BEN + basic + + n.denot + anim + pl + single + + c + 4 + + + t-ln94210-105-p3s2a1 + SET_SUB + + + + + + a#a-ln94210-105-p3s3w2 + + complex + přizvaný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln94210-105-p3s3w8 + + coap + a + CONJ + 8 + + + + a#a-ln94210-105-p3s3w6 + + complex + literární + RSTR + + adj.denot + pos + neg0 + + t + 6 + + + + a#a-ln94210-105-p3s3w7 + + a#a-ln94210-105-p3s3w4 + + + complex + instituce + DIR1 + basic + 1 + + n.denot + fem + pl + single + + f + 7 + + + + a#a-ln94210-105-p3s3w9 + + a#a-ln94210-105-p3s3w4 + + + complex + periodikum + DIR1 + basic + 1 + + n.denot + neut + pl + single + + f + 9 + + + + a#a-ln94210-105-p3s3w5 + + complex + různý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-ln94210-105-p3s3w15 + + complex + pozorovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 13 + v#v-w4217f1 + + + qcomplex + 1 + #Cor + ACT + t + 12 + + t-ln94210-105-p3s3w3 + + + + + a#a-ln94210-105-p3s3w19 + + complex + reflektovat + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 16 + v#v-w5452f1 + + + + a#a-ln94210-105-p3s3w18 + + complex + obor + ACT + + n.denot + inan + sg + single + + t + 14 + + + t-ln94210-105-p3s2w13 + REST + + + + + + a#a-ln94210-105-p3s3w17 + + complex + jak + MANN + + adv.pron.indef + inter + + t + 15 + + + + a#a-ln94210-105-p3s3w20 + + complex + sám + COMPL + + adj.pron.def.demon + + f + 17 + + t-ln94210-105-p3s3w18 + + + + + a#a-ln94210-105-p3s3w21 + + complex + #PersPron + PAT + + n.pron.def.pers + inher + inher + inher + inher + + f + 18 + + t-ln94210-105-p3s3w18 + + + + + + + + + a#a-ln94210-105-p3s3w13 + + complex + zajímavý + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + a#a-ln94210-105-p4s1 + 0 + + + Panorama české literatury + object + + t-ln94210-105-p4s1w9 + t-ln94210-105-p4s1w10 + t-ln94210-105-p4s1w11 + + + + + + + a#a-ln94210-105-p4s1w4 + + complex + ocenit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w2600f1 + + + + a#a-ln94210-105-p4s1w1 + + complex + účastník + ACT + + n.denot + anim + pl + single + + t + 2 + + + t-ln94210-105-p3s2a2 + SPEC + + + v#v-w6994f1 + + + + a#a-ln94210-105-p4s1w2 + + complex + setkání + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 1 + + + t-ln94210-105-p3s1w4 + SPEC + + + v#v-w6001f2 + + + + + + a#a-ln94210-105-p4s1w3 + + complex + velice + EXT + basic + + adv.denot.grad.neg + pos + neg0 + + f + 4 + + + + a#a-ln94210-105-p4s1w8 + + complex + studie + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln94210-105-p4s1w9 + + complex + Panorama + ID + enunc + + n.denot + fem + sg + single + + f + 6 + + + + a#a-ln94210-105-p4s1w11 + + complex + literatura + APP + + n.denot + fem + sg + single + + f + 7 + + + t-ln94210-105-p3s2w13 + SPEC + + + + + + a#a-ln94210-105-p4s1w10 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + t-ln94210-105-p3s2w12 + SPEC + + + + + + + + + + a#a-ln94210-105-p4s1w7 + + complex + přehledový + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln94210-105-p4s1w6 + + complex + vydaný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-ln94210-105-p4s1w5 + + complex + dávný + TWHEN + basic + + adj.denot + pos + neg1 + + f + 11 + + + + + + + + + + + a#a-ln94210-105-p4s2 + 0 + + + person + + t-ln94210-105-p4s2w7 + t-ln94210-105-p4s2w8 + + + + person + + t-ln94210-105-p4s2w10 + t-ln94210-105-p4s2w11 + + + + + + + a#a-ln94210-105-p4s2w5 + + complex + promluvit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w4444f1 + + + + a#a-ln94210-105-p4s2w4 + + a#a-ln94210-105-p4s2w1 + + + complex + výstavba + PAT + + n.denot + fem + sg + single + + c + 2 + + + + a#a-ln94210-105-p4s2w2 + + complex + #PersPron + APP + + n.pron.def.pers + fem + sg + 3 + basic + + t + 1 + + + t-ln94210-105-p4s1w9 + SPEC + + + + + + a#a-ln94210-105-p4s2w3 + + complex + metodologický + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + a#a-ln94210-105-p4s2w9 + + coap + a + CONJ + 7 + + + + a#a-ln94210-105-p4s2w8 + + complex + Schneider + ACT + 1 + 1 + + n.denot + anim + sg + single + + f + 5 + + + t-ln94210-105-p4s1w1 + SET_SUB + + + + + + a#a-ln94210-105-p4s2w7 + + complex + Jan + RSTR + 1 + + n.denot + anim + sg + single + + f + 6 + + + + + + a#a-ln94210-105-p4s2w11 + + complex + Machala + ACT + 1 + 1 + + n.denot + anim + sg + single + + f + 8 + + + t-ln94210-105-p4s1w1 + SET_SUB + + + + + + a#a-ln94210-105-p4s2w10 + + complex + Lubomír + RSTR + 1 + + n.denot + anim + sg + single + + f + 9 + + + + + + a#a-ln94210-105-p4s2w6 + + complex + autor + RSTR + + n.denot + anim + pl + single + + f + 10 + + + t-ln94210-105-p4s1w8 + REST + + + + + + a#a-ln94210-105-p4s2w14 + + a#a-ln94210-105-p4s2w12 + + + complex + univerzita + DIR1 + basic + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln94210-105-p4s2w13 + + complex + olomoucký + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + a#a-ln94210-105-p4s3 + 0 + + + person + + t-ln94210-105-p4s3w12 + t-ln94210-105-p4s3w13 + + + + person + + t-ln94210-105-p4s3w15 + t-ln94210-105-p4s3w16 + + + + person + + t-ln94210-105-p4s3w18 + t-ln94210-105-p4s3w19 + + + + person + + t-ln94210-105-p4s3w23 + t-ln94210-105-p4s3w24 + + + + person + + t-ln94210-105-p4s3w26 + t-ln94210-105-p4s3w27 + + + + + + + a#a-ln94210-105-p4s3w5 + + complex + představit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + + + t-ln94210-105-p4s2w5 + discourse + 0 + 0 + conj + + t-ln94210-105-p4s3w2 + + + + v#v-w4760f1 + + + + a#a-ln94210-105-p4s3w2 + + atom + zároveň + PREC + t + 1 + + + + a#a-ln94210-105-p4s3w1 + + complex + Machala + ACT + 1 + + n.denot + anim + sg + single + + c + 2 + + + t-ln94210-105-p4s2w11 + SPEC + + + + + + a#a-ln94210-105-p4s3w4 + + a#a-ln94210-105-p4s3w3 + + + complex + Liblice + LOC + basic + + n.denot + fem + pl + single + + t + 3 + + + t-ln94210-105-p3s2w2 + SPEC + + + + + + a#a-ln94210-105-p4s3w10 + + coap + #Bracket + APPS + 1 + 9 + + + + a#a-ln94210-105-p4s3w7 + + complex + dílo + PAT + 1 + + n.denot + neut + pl + single + + f + 5 + + + t-ln94210-105-p4s1w11 + WHOLE_PART + + + + + + a#a-ln94210-105-p4s3w9 + + complex + doba + APP + + n.denot + fem + sg + single + + f + 6 + + + + a#a-ln94210-105-p4s3w8 + + complex + poslední + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-ln94210-105-p4s3w6 + + complex + zajímavý + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94210-105-p4s3w21 + + coap + avšak + GRAD + 1 + 1 + 20 + + + + a#a-ln94210-105-p4s3w17 + + coap + #Comma + CONJ + 1 + 1 + 16 + + + + a#a-ln94210-105-p4s3w11 + + complex + práce + PAT + 1 + 1 + + n.denot + fem + pl + single + + f + 10 + + + + a#a-ln94210-105-p4s3w13 + + complex + Hodrová + AUTH + 1 + 1 + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln94210-105-p4s3w12 + + complex + Daniela + RSTR + 1 + 1 + + n.denot + fem + sg + single + + f + 12 + + + + + + + + a#a-ln94210-105-p4s3w11 + + complex + 1 + práce + PAT + 1 + 1 + + n.denot + fem + pl + single + + t + 13 + + + + a#a-ln94210-105-p4s3w16 + + complex + Viewegh + AUTH + 1 + 1 + + n.denot + anim + sg + single + + f + 14 + + + + a#a-ln94210-105-p4s3w15 + + complex + Michal + RSTR + 1 + 1 + + n.denot + anim + sg + single + + f + 15 + + + + + + + + a#a-ln94210-105-p4s3w11 + + complex + 1 + práce + PAT + 1 + 1 + + n.denot + fem + pl + single + + t + 17 + + + + a#a-ln94210-105-p4s3w19 + + complex + Topol + AUTH + 1 + 1 + + n.denot + anim + sg + single + + f + 18 + + + + a#a-ln94210-105-p4s3w18 + + complex + Jáchym + RSTR + 1 + 1 + + n.denot + anim + sg + single + + f + 19 + + + + + + + + + + a#a-ln94210-105-p4s3w22 + + atom + i + CM + 1 + 21 + + + + a#a-ln94210-105-p4s3w25 + + coap + či + CONJ + 1 + 1 + 25 + + + + a#a-ln94210-105-p4s3w11 + + complex + 1 + práce + PAT + 1 + 1 + + n.denot + fem + pl + single + + t + 22 + + + + a#a-ln94210-105-p4s3w24 + + complex + Nezval + AUTH + 1 + 1 + + n.denot + anim + sg + single + + f + 23 + + + + a#a-ln94210-105-p4s3w23 + + complex + Martin + RSTR + 1 + 1 + + n.denot + anim + sg + single + + f + 24 + + + + + + + + a#a-ln94210-105-p4s3w11 + + complex + 1 + práce + PAT + 1 + 1 + + n.denot + fem + pl + single + + t + 26 + + + + a#a-ln94210-105-p4s3w27 + + complex + Marysko + AUTH + 1 + 1 + + n.denot + nr + nr + single + + f + 27 + + + + a#a-ln94210-105-p4s3w26 + + complex + Max + RSTR + 1 + 1 + + n.denot + nr + nr + single + + f + 28 + + + + + + + + + + + + + + + + + a#a-ln94210-105-p4s4 + 0 + + + Milan Jungmann + person + + t-ln94210-105-p4s4w3 + t-ln94210-105-p4s4w4 + + + + literární kritik + lexeme + + t-ln94210-105-p4s4w1 + t-ln94210-105-p4s4w2 + + + + Jak se dělá chlapec + object + + t-ln94210-105-p4s4w13 + t-ln94210-105-p4s4w15 + t-ln94210-105-p4s4w16 + + + + Čekání na tmu, čekání na světlo + object + + t-ln94210-105-p4s4w20 + t-ln94210-105-p4s4w22 + t-ln94210-105-p4s4w23 + t-ln94210-105-p4s4w24 + t-ln94210-105-p4s4w26 + + + + + + + a#a-ln94210-105-p4s4w5 + + complex + shrnout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 5 + v#v-w6035f1 + + + + a#a-ln94210-105-p4s4w4 + + complex + Jungmann + ACT + 1 + + n.denot + anim + sg + single + + c + 1 + + + t-ln94210-105-p4s1w1 + SET_SUB + + + + + + a#a-ln94210-105-p4s4w3 + + complex + Milan + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-ln94210-105-p4s4w2 + + complex + kritik + RSTR + + n.denot + anim + sg + single + + f + 4 + + + + a#a-ln94210-105-p4s4w1 + + complex + literární + RSTR + + adj.denot + pos + neg0 + + t + 3 + + + + + + + + a#a-ln94210-105-p4s4w7 + + complex + interpretace + PAT + + n.denot + fem + pl + single + + f + 7 + + + + a#a-ln94210-105-p4s4w6 + + complex + kritický + RSTR + + adj.denot + pos + neg0 + + t + 6 + + + + a#a-ln94210-105-p4s4w9 + + complex + text + PAT + + n.denot + inan + pl + single + + f + 10 + + + t-ln94210-105-p4s1w11 + WHOLE_PART + + + + + + a#a-ln94210-105-p4s4w11 + + complex + období + APP + + n.denot + neut + sg + single + + t + 9 + + + t-ln94210-105-p1s1w5 + SPEC + + + exoph + + + + a#a-ln94210-105-p4s4w10 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 8 + + + + + + a#a-ln94210-105-p4s4w8 + + complex + zásadní + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln94210-105-p4s4w29 + + coap + a + CONJ + 1 + 17 + + + + a#a-ln94210-105-p4s4w15 + + complex + dělat + PAR + enunc + 1 + 1 + + v + decl + sim + proc + it0 + deagent + asserted + + f + 13 + v#v-w409f2 + + + qcomplex + 1 + #Gen + ACT + 1 + t + 12 + + + + a#a-ln94210-105-p4s4w13 + + complex + jak + MANN + 1 + + adv.pron.indef + inter + + f + 14 + + + + a#a-ln94210-105-p4s4w16 + + complex + chlapec + PAT + 1 + + n.denot + anim + sg + single + + f + 15 + + + + + + a#a-ln94210-105-p4s4w18 + + complex + nesmrtelnost + PAR + enunc + 1 + 1 + + n.denot.neg + fem + sg + single + neg0 + + f + 16 + + + + a#a-ln94210-105-p4s4w23 + + coap + #Comma + CONJ + 1 + 1 + 21 + + + + a#a-ln94210-105-p4s4w20 + + complex + čekání + PAR + enunc + 1 + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 19 + v#v-w309f1 + + + qcomplex + 1 + #Gen + ACT + 1 + t + 18 + + + + a#a-ln94210-105-p4s4w22 + + a#a-ln94210-105-p4s4w21 + + + complex + tma + PAT + 1 + + n.denot + fem + sg + single + + f + 20 + + + + + + a#a-ln94210-105-p4s4w24 + + complex + čekání + PAR + enunc + 1 + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 23 + v#v-w309f1 + + + qcomplex + 1 + #Gen + ACT + 1 + t + 22 + + + + a#a-ln94210-105-p4s4w26 + + a#a-ln94210-105-p4s4w25 + + + complex + světlo + PAT + 1 + + n.denot + neut + sg + single + + f + 24 + + + + + + + + a#a-ln94210-105-p4s4w28 + + complex + památník + PAR + enunc + 1 + 1 + + n.denot + inan + sg + single + + f + 25 + + + + a#a-ln94210-105-p4s4w30 + + complex + sestra + PAR + enunc + 1 + 1 + + n.denot + fem + sg + single + + f + 26 + + + + + + + + + + + + + a#a-ln94210-105-p4s5 + 0 + + + + a#a-ln94210-105-p4s5w1 + + complex + připomenout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + + + t-ln94210-105-p4s4w5 + discourse + 0 + 0 + conj + + t-ln94210-105-p4s5w2 + + + + v#v-w5225f1 + + + + a#a-ln94210-105-p4s5w2 + + atom + také + PREC + t + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 2 + + + t-ln94210-105-p4s4w4 + SPEC + + + + + + a#a-ln94210-105-p4s5w5 + + complex + snaha + PAT + + n.denot + fem + sg + single + + f + 6 + + + + a#a-ln94210-105-p4s5w7 + + complex + literatura + ACT + + n.denot + fem + sg + single + + t + 5 + + + t-ln94210-105-p4s1w11 + SPEC + + + + + + a#a-ln94210-105-p4s5w6 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 4 + + + t-ln94210-105-p4s1w10 + SPEC + + + + + + + + a#a-ln94210-105-p4s5w4 + + complex + úspěšný + RSTR + + adj.denot + pos + neg1 + + f + 8 + + + + a#a-ln94210-105-p4s5w3 + + complex + teď + TTILL + + adv.pron.def + + t + 7 + + + + + + a#a-ln94210-105-p4s5w12 + + a#a-ln94210-105-p4s5w9 + + + complex + poznat + PAT + + v + decl + nil + cpl + it0 + act + potential + + f + 10 + v#v-w4210f2 + + + + a#a-ln94210-105-p4s5w11 + + complex + doba + ACT + + n.denot + fem + sg + single + + c + 9 + + + t-ln94210-105-p4s4w11 + SPEC + + + + + + a#a-ln94210-105-p4s5w13 + + complex + sám + COMPL + + adj.pron.def.demon + + f + 11 + + t-ln94210-105-p4s5w11 + + + + + a#a-ln94210-105-p4s5w14 + + complex + #PersPron + PAT + + n.pron.def.pers + inher + inher + inher + inher + + f + 12 + + t-ln94210-105-p4s5w11 + + + + + + + + + + + + a#a-ln94210-105-p4s6 + 0 + + + + a#a-ln94210-105-p4s6w6 + + complex + diskutovat + PRED + enunc + + v + decl + ant + proc + it0 + deagent + asserted + + f + 6 + v#v-w479f1 + + + + a#a-ln94210-105-p4s6w3 + + a#a-ln94210-105-p4s6w1 + + + complex + teze + LOC + above + + n.denot + fem + pl + single + + t + 2 + + + + a#a-ln94210-105-p4s6w2 + + complex + Jungmann + AUTH + 1 + + n.denot + anim + sg + single + + t + 1 + + + t-ln94210-105-p4s5a1 + SPEC + + + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-ln94210-105-p4s6w5 + + complex + živý + MANN + + adj.denot + pos + neg0 + + f + 7 + + + + + + + a#a-ln94210-105-p5s1 + 0 + + + Literatura a autoři České republiky + object + + t-ln94210-105-p5s1w12 + t-ln94210-105-p5s1w13 + t-ln94210-105-p5s1w14 + t-ln94210-105-p5s1w15 + t-ln94210-105-p5s1w16 + + + + grantový projekt + lexeme + + t-ln94210-105-p5s1w10 + t-ln94210-105-p5s1w11 + + + + + + + a#a-ln94210-105-p5s1w4 + + a#a-ln94210-105-p5s1w3 + + + complex + týkat_se + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w6958f1 + + + + a#a-ln94210-105-p5s1w2 + + complex + debata + ACT + + n.denot + fem + sg + single + + t + 1 + + + t-ln94210-105-p4s1w2 + WHOLE_PART + + + + + + a#a-ln94210-105-p5s1w1 + + complex + podvečerní + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + a#a-ln94210-105-p5s1w8 + + coap + a + CONJ + 7 + + + + a#a-ln94210-105-p5s1w5 + + complex + otázka + PAT + 1 + + n.denot + fem + pl + single + + f + 4 + + + + a#a-ln94210-105-p5s1w7 + + complex + tvorba + PAT + + n.denot + fem + sg + single + + f + 5 + + + t-ln94210-105-p4s5w7 + WHOLE_PART + + + + + + a#a-ln94210-105-p5s1w6 + + complex + překladatelský + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + a#a-ln94210-105-p5s1w5 + + complex + 1 + otázka + PAT + 1 + + n.denot + fem + pl + single + + t + 8 + + + + a#a-ln94210-105-p5s1w11 + + complex + projekt + PAT + + n.denot + inan + sg + single + + f + 9 + + + + a#a-ln94210-105-p5s1w13 + + coap + a + CONJ + 11 + + + + a#a-ln94210-105-p5s1w12 + + complex + literatura + ID + enunc + 1 + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln94210-105-p5s1w14 + + complex + autor + ID + enunc + 1 + + n.denot + anim + pl + single + + f + 12 + + + + a#a-ln94210-105-p5s1w16 + + complex + republika + APP + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln94210-105-p5s1w15 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + t-ln94210-105-p4s5w6 + SPEC + + + + + + + + + + a#a-ln94210-105-p5s1w10 + + complex + grantový + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-ln94210-105-p5s1w9 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + + + a#a-ln94210-105-p5s2 + 0 + + + ministerstvo kultury + lexeme + + t-ln94210-105-p5s2w8 + t-ln94210-105-p5s2w9 + + + + + + + a#a-ln94210-105-p5s2w7 + + a#a-ln94210-105-p5s2w4 + + + complex + chystat_se + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w1209f1 + + + + a#a-ln94210-105-p5s2w6 + + complex + rok + TWHEN + nr + + n.denot + inan + sg + single + + t + 1 + + + + a#a-ln94210-105-p5s2w5 + + complex + příští + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + a#a-ln94210-105-p5s2w2 + + a#a-ln94210-105-p5s2w3 + a#a-ln94210-105-p5s2w1 + + + complex + #PersPron + REG + + n.pron.def.pers + inan + sg + 3 + basic + + t + 3 + + + t-ln94210-105-p5s1w11 + SPEC + + + + + + a#a-ln94210-105-p5s2w8 + + complex + ministerstvo + ACT + + n.denot + neut + sg + single + + f + 5 + + + + a#a-ln94210-105-p5s2w9 + + complex + kultura + APP + + n.denot + fem + sg + single + + f + 6 + + + + + + a#a-ln94210-105-p5s2w10 + + complex + podporovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 8 + v#v-w3620f1 + + + qcomplex + 1 + #Cor + ACT + t + 7 + + t-ln94210-105-p5s2w8 + + + + + a#a-ln94210-105-p5s2w11 + + complex + vydávání + PAT + + n.denot.neg + neut + pl + single + neg0 + + f + 13 + v#v-w7844f1 + + + + a#a-ln94210-105-p5s2w12 + + complex + kniha + PAT + + n.denot + fem + pl + single + + t + 11 + + + + a#a-ln94210-105-p5s2w14 + + complex + autor + AUTH + + n.denot + anim + pl + single + + t + 10 + + + t-ln94210-105-p4s3w21 + SUB_SET + + + + + + a#a-ln94210-105-p5s2w13 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 9 + + + t-ln94210-105-p5s1w15 + SPEC + + + + + + + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + a#a-ln94210-105-p5s2w16 + + a#a-ln94210-105-p5s2w15 + + + complex + svět + LOC + basic + + n.denot + inan + sg + single + + f + 14 + + + + + + + + + + + a#a-ln94210-105-p6s1 + 0 + + + + a#a-ln94210-105-p6s1w2 + + complex + být + PRED + enunc + + v + decl + post + proc + it0 + act + asserted + + f + 5 + v#v-w243f2 + + + + a#a-ln94210-105-p6s1w1 + + complex + dnes + TWHEN + basic + + adv.denot.ngrad.nneg + + c + 1 + + + + a#a-ln94210-105-p6s1w4 + + a#a-ln94210-105-p6s1w3 + + + complex + pořad + LOC + basic + + n.denot + inan + sg + single + + t + 4 + + + + a#a-ln94210-105-p6s1w6 + + complex + setkání + APP + + n.denot.neg + neut + sg + single + neg0 + + t + 3 + + + t-ln94210-105-p4s1w2 + SPEC + + + v#v-w6001f2 + + + + a#a-ln94210-105-p6s1w5 + + complex + liblický + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + t-ln94210-105-p4s3w4 + SPEC + + + + + + + + + + a#a-ln94210-105-p6s1w7 + + complex + téma + ACT + + n.denot + neut + sg + single + + t + 6 + + + + a#a-ln94210-105-p6s1w10 + + coap + a + CONJ + 9 + + + + a#a-ln94210-105-p6s1w9 + + complex + jazyk + RSTR + 1 + + n.denot + inan + sg + single + + f + 7 + + + + a#a-ln94210-105-p6s1w8 + + complex + současný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln94210-105-p6s1w12 + + complex + proměna + RSTR + 1 + + n.denot + fem + pl + single + + f + 11 + + + + a#a-ln94210-105-p6s1w11 + + complex + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 10 + + + t-ln94210-105-p6s1w9 + SPEC + + + + + + + + a#a-ln94210-105-p6s1w14 + + a#a-ln94210-105-p6s1w13 + + + complex + postižení + ACMP + incl + + n.denot.neg + neut + sg + single + neg0 + + f + 13 + v#v-w4013f2 + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + a#a-ln94210-105-p6s1w17 + + complex + boj + PAT + + n.denot + inan + pl + single + + f + 14 + + + + a#a-ln94210-105-p6s1w16 + + complex + pravopisný + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-ln94210-105-p6s1w15 + + complex + aktuální + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + + + + + diff --git a/demo/pdt_train/ln94210_105.txt b/demo/pdt_train/ln94210_105.txt new file mode 100644 index 00000000..e690da7e --- /dev/null +++ b/demo/pdt_train/ln94210_105.txt @@ -0,0 +1,11 @@ +Literatura, v níž se doba nevidí + +Petr Matoušek, Liblice Letošní pátý ročník semináře určeného zahraničním překladatelům a znalcům české literatury hostí od pondělního večera kultovní místo české literatury, zámeček v Liblicích u Mělníka. Zde se roku 1963 uskutečnila pověstná kafkovská konference, zde na ni v zájmu o pražskou německou literaturu záhy po listopadových událostech navázala konference werfelovská. + +Pětidenního semináře, který bude zakončen ve Znojmě, se účastní čtyřicet bohemistů z různých částí světa. V Liblicích mají možnost seznámit se s nejnovějším vývojem na poli naší literatury. Pro přizvané hosty z různých literárních institucí a periodik je to zároveň zajímavá příležitost pozorovat, jak obor reflektuje sám sebe. + +Účastníci setkání velice ocenili nedávno vydanou přehledovou studii Panorama české literatury. O její metodologické výstavbě promluvili autoři Jan Schneider a Lubomír Machala z olomoucké univerzity. Machala zároveň v Liblicích představil zajímavá díla poslední doby (práce Daniely Hodrové, Michala Viewegha, Jáchyma Topola, avšak i Martina Nezvala či Maxi Marysko). Literární kritik Milan Jungmann shrnul kritické interpretace zásadních textů tohoto období (Jak se dělá chlapec, Nesmrtelnost, Čekání na tmu, čekání na světlo, Památník a Sestra). Připomněl také doposud neúspěšnou snahu naší literatury, aby doba poznala sama sebe. Nad Jungmannovými tezemi se živě diskutovalo. + +Podvečerní debata se týkala otázek překladatelské tvorby a státního grantového projektu Literatura a autoři České repbuliky. V jeho rámci se příští rok chystá ministerstvo kultury podporovat vydávání knih našich autorů ve světě. + +Dnes bude na pořadu liblického setkání téma současného jazyka a jeho proměn včetně postižení aktuálních pravopisných bojů. \ No newline at end of file diff --git a/demo/pdt_train/ln94210_105.w b/demo/pdt_train/ln94210_105.w new file mode 100644 index 00000000..ebd227fb --- /dev/null +++ b/demo/pdt_train/ln94210_105.w @@ -0,0 +1,908 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1994 +<authname>y +<opus>ln94210 +<id>105 + + + + 1 + + Literatura + 1 + + + , + + + v + + + níž + + + se + + + doba + + + nevidí + + + + 2 + + Petr + + + Matoušek + 1 + + + , + + + Liblice + + + Letošní + + + pátý + + + ročník + + + semináře + + + určeného + + + zahraničním + + + překladatelům + + + a + + + znalcům + + + české + + + literatury + + + hostí + + + od + + + pondělního + + + večera + + + kultovní + + + místo + + + české + + + literatury + 1 + + + , + + + zámeček + + + v + + + Liblicích + + + u + + + Mělníka + 1 + + + . + + + Zde + + + se + + + roku + + + 1963 + + + uskutečnila + + + pověstná + + + kafkovská + + + konference + 1 + + + , + + + zde + + + na + + + ni + + + v + + + zájmu + + + o + + + pražskou + + + německou + + + literaturu + + + záhy + + + po + + + listopadových + + + událostech + + + navázala + + + konference + + + werfelovská + 1 + + + . + + + + 3 + + Pětidenního + + + semináře + 1 + + + , + + + který + + + bude + + + zakončen + + + ve + + + Znojmě + 1 + + + , + + + se + + + účastní + + + čtyřicet + + + bohemistů + + + z + + + různých + + + částí + + + světa + 1 + + + . + + + V + + + Liblicích + + + mají + + + možnost + + + seznámit + + + se + + + s + + + nejnovějším + + + vývojem + + + na + + + poli + + + naší + + + literatury + 1 + + + . + + + Pro + + + přizvané + + + hosty + + + z + + + různých + + + literárních + + + institucí + + + a + + + periodik + + + je + + + to + + + zároveň + + + zajímavá + + + příležitost + + + pozorovat + 1 + + + , + + + jak + + + obor + + + reflektuje + + + sám + + + sebe + 1 + + + . + + + + 4 + + Účastníci + + + setkání + + + velice + + + ocenili + + + nedávno + + + vydanou + + + přehledovou + + + studii + + + Panorama + + + české + + + literatury + 1 + + + . + + + O + + + její + + + metodologické + + + výstavbě + + + promluvili + + + autoři + + + Jan + + + Schneider + + + a + + + Lubomír + + + Machala + + + z + + + olomoucké + + + univerzity + 1 + + + . + + + Machala + + + zároveň + + + v + + + Liblicích + + + představil + + + zajímavá + + + díla + + + poslední + + + doby + + + ( + 1 + + + práce + + + Daniely + + + Hodrové + 1 + + + , + + + Michala + + + Viewegha + 1 + + + , + + + Jáchyma + + + Topola + 1 + + + , + + + avšak + + + i + + + Martina + + + Nezvala + + + či + + + Maxi + + + Marysko + 1 + + + ) + 1 + + + . + + + Literární + + + kritik + + + Milan + + + Jungmann + + + shrnul + + + kritické + + + interpretace + + + zásadních + + + textů + + + tohoto + + + období + + + ( + 1 + + + Jak + + + se + + + dělá + + + chlapec + 1 + + + , + + + Nesmrtelnost + 1 + + + , + + + Čekání + + + na + + + tmu + 1 + + + , + + + čekání + + + na + + + světlo + 1 + + + , + + + Památník + + + a + + + Sestra + 1 + + + ) + 1 + + + . + + + Připomněl + + + také + + + doposud + + + neúspěšnou + + + snahu + + + naší + + + literatury + 1 + + + , + + + aby + + + doba + + + poznala + + + sama + + + sebe + 1 + + + . + + + Nad + + + Jungmannovými + + + tezemi + + + se + + + živě + + + diskutovalo + 1 + + + . + + + + 5 + + Podvečerní + + + debata + + + se + + + týkala + + + otázek + + + překladatelské + + + tvorby + + + a + + + státního + + + grantového + + + projektu + + + Literatura + + + a + + + autoři + + + České + + + repbuliky + 1 + + + . + + + V + + + jeho + + + rámci + + + se + + + příští + + + rok + + + chystá + + + ministerstvo + + + kultury + + + podporovat + + + vydávání + + + knih + + + našich + + + autorů + + + ve + + + světě + 1 + + + . + + + + 6 + + Dnes + + + bude + + + na + + + pořadu + + + liblického + + + setkání + + + téma + + + současného + + + jazyka + + + a + + + jeho + + + proměn + + + včetně + + + postižení + + + aktuálních + + + pravopisných + + + bojů + 1 + + + . + + + + diff --git a/demo/pdt_train/ln95048_117.t b/demo/pdt_train/ln95048_117.t new file mode 100644 index 00000000..09545954 --- /dev/null +++ b/demo/pdt_train/ln95048_117.t @@ -0,0 +1,12773 @@ + + + + + + + + + + + + Manual annotation + + essay + + + + a#a-ln95048-117-p1s1 + 0 + + + + a#a-ln95048-117-p1s1w1 + + complex + neštěstí + DENOM + enunc + + n.denot + neut + sg + single + + f + 1 + heading + + + + a#a-ln95048-117-p1s1w3 + + complex + generace + APP + + n.denot + fem + sg + single + + f + 2 + + + + a#a-ln95048-117-p1s1w2 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 3 + + + + + + + + + a#a-ln95048-117-p2s1 + 0 + + + time + + t-ln95048-117-p2s1w2 + t-ln95048-117-p2s1w3 + + + + + + + a#a-ln95048-117-p2s1w12 + + coap + a + CONJ + 11 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 1 + + + t-ln95048-117-p2s2w5 + SPEC + + + + + + a#a-ln95048-117-p2s1w9 + + complex + zavést + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 7 + v#v-w9273f2 + + + + a#a-ln95048-117-p2s1w3 + + a#a-ln95048-117-p2s1w1 + + + complex + rok + TWHEN + basic + + n.denot + neut + pl + single + + t + 2 + + + + a#a-ln95048-117-p2s1w2 + + complex + šedesát + RSTR + + adj.quant.def + ord + + f + 3 + + + + + + a#a-ln95048-117-p2s1w6 + + a#a-ln95048-117-p2s1w5 + + + complex + #PersPron + BEN + basic + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-ln95048-117-p2s1a0 + + + + + a#a-ln95048-117-p2s1w7 + + complex + samotný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-ln95048-117-p2s1w4 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-ln95048-117-p2s1a0 + + + + + a#a-ln95048-117-p2s1w8 + + complex + postupný + MANN + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln95048-117-p2s1w11 + + complex + demokracie + PAT + + n.denot + fem + sg + single + + f + 9 + + + + a#a-ln95048-117-p2s1w10 + + complex + omezený + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-ln95048-117-p2s1w16 + + complex + začít + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 12 + + + t-ln95048-117-p2s1w9 + discourse + 0 + 0 + conj + + t-ln95048-117-p2s1w12 + + + + v#v-w8756f1 + + + + a#a-ln95048-117-p2s1w17 + + complex + poučovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 17 + v#v-w4114f1 + + + + a#a-ln95048-117-p2s1w13 + + complex + zbytek + ADDR + + n.denot + inan + sg + single + + c + 13 + + + + a#a-ln95048-117-p2s1w15 + + complex + společnost + MAT + + n.denot + fem + sg + single + + f + 14 + + + t-ln95048-117-p2s1w4 + SUB_SET + + + + + + a#a-ln95048-117-p2s1w14 + + complex + ztrápený + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + qcomplex + 1 + #Cor + ACT + t + 16 + + t-ln95048-117-p2s1a0 + + + + + a#a-ln95048-117-p2s1w20 + + a#a-ln95048-117-p2s1w19 + + + complex + demokracie + PAT + + n.denot + fem + sg + single + + f + 18 + + + t-ln95048-117-p2s1w11 + GEN + + + + + + + + + + + + + a#a-ln95048-117-p2s2 + 0 + + + + a#a-ln95048-117-p2s2w3 + + a#a-ln95048-117-p2s2w2 + + + complex + slyšet + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w6192f1 + + + + a#a-ln95048-117-p2s2w1 + + complex + opět + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-ln95048-117-p2s2w4 + + atom + pouze + RHEM + f + 4 + + + + a#a-ln95048-117-p2s2w5 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + pl + 3 + basic + + f + 5 + + + t-ln95048-117-p3s2a2 + SPEC + + + + + + + + + a#a-ln95048-117-p3s1 + 0 + + + lexeme + + t-ln95048-117-p3s1w28 + t-ln95048-117-p3s1w29 + + + + + + + a#a-ln95048-117-p3s1w13 + + a#a-ln95048-117-p3s1w12 + + + complex + číst + PRED + enunc + + v + poss + sim + proc + it0 + act + asserted + + f + 7 + v#v-w333f2 + + + + a#a-ln95048-117-p3s1w6 + + coap + a + CONJ + 4 + + + + a#a-ln95048-117-p3s1w2 + + complex + poslední + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + a#a-ln95048-117-p3s1w3 + + a#a-ln95048-117-p3s1w1 + + + complex + měsíc + TWHEN + basic + 1 + + n.denot + inan + pl + single + + t + 2 + + + + a#a-ln95048-117-p3s1w5 + + a#a-ln95048-117-p3s1w1 + + + complex + týden + TWHEN + basic + 1 + + n.denot + inan + pl + single + + t + 3 + + + + a#a-ln95048-117-p3s1w7 + + a#a-ln95048-117-p3s1w1 + + + complex + den + TWHEN + basic + 1 + + n.denot + inan + pl + single + + t + 5 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 6 + + + + a#a-ln95048-117-p3s1w9 + + atom + stále + RHEM + f + 8 + + + + a#a-ln95048-117-p3s1w10 + + complex + často + THO + + adv.denot.grad.neg + comp + neg0 + + f + 9 + + + + a#a-ln95048-117-p3s1w19 + + a#a-ln95048-117-p3s1w15 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + v#v-w243f2 + + + + a#a-ln95048-117-p3s1w18 + + a#a-ln95048-117-p3s1w16 + + + complex + stát + LOC + basic + + n.denot + inan + sg + single + + t + 11 + exoph + + + + a#a-ln95048-117-p3s1w17 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 10 + + + + + atom + 1 + #Neg + RHEM + f + 12 + + + + a#a-ln95048-117-p3s1w20 + + atom + + RHEM + f + 14 + + + + a#a-ln95048-117-p3s1w21 + + complex + co + ACT + + n.pron.indef + neut + sg + negat + 3 + + f + 15 + + + + a#a-ln95048-117-p3s1w25 + + a#a-ln95048-117-p3s1w24 + + + complex + hnisat + RSTR + + v + decl + nil + proc + it0 + act + potential + + f + 18 + v#v-w1071f1 + + + + a#a-ln95048-117-p3s1w23 + + complex + co + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 16 + + t-ln95048-117-p3s1w21 + + + + atom + 1 + #Neg + RHEM + f + 17 + + + + + + + + a#a-ln95048-117-p3s1w29 + + a#a-ln95048-117-p3s1w27 + + + complex + noviny + RESTR + 1 + + n.denot + fem + pl + single + + f + 19 + + + + a#a-ln95048-117-p3s1w28 + + complex + Literární + RSTR + 1 + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + + + a#a-ln95048-117-p3s2 + 0 + + + výše zmíněný + lexeme + + t-ln95048-117-p3s2w35 + t-ln95048-117-p3s2w36 + + + + politická moc + lexeme + + t-ln95048-117-p3s2w2 + t-ln95048-117-p3s2w3 + + + + umělecký program + lexeme + + t-ln95048-117-p3s2w14 + t-ln95048-117-p3s2w15 + + + + + + + a#a-ln95048-117-p3s2w27 + + complex + vést + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w7583f1 + + + + a#a-ln95048-117-p3s2w9 + + coap + a + CONJ + 9 + + + + a#a-ln95048-117-p3s2w4 + + coap + #Comma + CONJ + 1 + 4 + + + + a#a-ln95048-117-p3s2w1 + + complex + ztráta + ACT + 1 + + n.denot + fem + sg + single + + c + 1 + + + + a#a-ln95048-117-p3s2w3 + + complex + moc + PAT + + n.denot + fem + sg + single + + f + 2 + + + + a#a-ln95048-117-p3s2w2 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + + + a#a-ln95048-117-p3s2w6 + + complex + úbytek + ACT + 1 + + n.denot + inan + sg + single + + c + 5 + + + + a#a-ln95048-117-p3s2w8 + + complex + vliv + ACT + + n.denot + inan + sg + single + + f + 6 + + + + a#a-ln95048-117-p3s2w7 + + complex + politický + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-ln95048-117-p3s2w5 + + complex + značný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + a#a-ln95048-117-p3s2w12 + + a#a-ln95048-117-p3s2w10 + + + atom + řada + CM + 10 + + + + a#a-ln95048-117-p3s2w11 + + complex + poslední + RSTR + + adj.denot + pos + neg1 + + f + 11 + + + + + + a#a-ln95048-117-p3s2w13 + + complex + absence + ACT + 1 + + n.denot + fem + sg + single + + c + 12 + + + + a#a-ln95048-117-p3s2w15 + + complex + program + ACT + + n.denot + inan + sg + single + + f + 13 + + + + a#a-ln95048-117-p3s2w14 + + complex + umělecký + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + + + a#a-ln95048-117-p3s2w24 + + a#a-ln95048-117-p3s2w16 + a#a-ln95048-117-p3s2w19 + a#a-ln95048-117-p3s2w18 + + + complex + stát_se + TWHEN + after + + v + decl + ant + proc + it0 + act + asserted + + f + 18 + v#v-w6496f1 + + + + a#a-ln95048-117-p3s2w20 + + complex + demokracie + ACT + + n.denot + fem + sg + single + + t + 15 + + + t-ln95048-117-p2s1w20 + GEN + + + + + + a#a-ln95048-117-p3s2w23 + + a#a-ln95048-117-p3s2w21 + + + complex + země + LOC + basic + + n.denot + fem + sg + single + + t + 17 + + + t-ln95048-117-p3s1w18 + SPEC + + + + + + a#a-ln95048-117-p3s2w22 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 16 + + + + + + a#a-ln95048-117-p3s2w25 + + complex + realita + PAT + + n.denot + fem + sg + single + + f + 19 + + + + + + + + a#a-ln95048-117-p3s2w31 + + coap + a + CONJ + 22 + + + + a#a-ln95048-117-p3s2w30 + + complex + muž + ADDR + 1 + + n.denot + anim + pl + single + + f + 21 + + + + a#a-ln95048-117-p3s2w32 + + complex + žena + ADDR + 1 + + n.denot + fem + pl + single + + f + 23 + + + + a#a-ln95048-117-p3s2w34 + + a#a-ln95048-117-p3s2w33 + + + complex + okruh + DIR1 + basic + + n.denot + inan + sg + single + + f + 24 + + + + a#a-ln95048-117-p3s2w37 + + complex + týdeník + APP + + n.denot + inan + sg + single + + f + 25 + + + t-ln95048-117-p3s1w29 + SPEC + + + + + + a#a-ln95048-117-p3s2w36 + + complex + zmíněný + RSTR + + adj.denot + pos + neg0 + + f + 26 + + + + a#a-ln95048-117-p3s2w35 + + complex + vysoký + LOC + basic + + adj.denot + comp + neg0 + + f + 27 + + + + + + + + + + a#a-ln95048-117-p3s2w29 + + complex + úctyhodný + RSTR + + adj.denot + pos + neg0 + + f + 28 + + + + a#a-ln95048-117-p3s2w28 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 29 + + + + + + a#a-ln95048-117-p3s2w42 + + a#a-ln95048-117-p3s2w38 + + + complex + poštěkávání + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 31 + v#v-w4059f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + nr + 3 + basic + + t + 30 + + + t-ln95048-117-p3s2w31 + SPEC + + + + + + a#a-ln95048-117-p3s2w44 + + a#a-ln95048-117-p3s2w43 + + + complex + co + PAT + + n.pron.indef + neut + sg + total1 + 3 + + f + 32 + + + + a#a-ln95048-117-p3s2w48 + + a#a-ln95048-117-p3s2w47 + + + complex + hýbat_se + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 34 + v#v-w1152f1 + + + + a#a-ln95048-117-p3s2w46 + + complex + co + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 33 + + t-ln95048-117-p3s2w44 + + + + + + + + + a#a-ln95048-117-p3s2w40 + + coap + a + CONJ + 36 + + + + a#a-ln95048-117-p3s2w39 + + complex + bezradný + RSTR + 1 + + adj.denot + pos + neg0 + + f + 35 + + + + a#a-ln95048-117-p3s2w41 + + complex + konzistentní + RSTR + 1 + + adj.denot + pos + neg1 + + f + 37 + + + + + + + + + + + a#a-ln95048-117-p3s3 + 0 + + + Lidové noviny + lexeme + + t-ln95048-117-p3s3w3 + t-ln95048-117-p3s3w4 + + + + + + + a#a-ln95048-117-p3s2w42 + + complex + 1 + poštěkávání + DENOM + enunc + + n.denot.neg + neut + sg + single + neg0 + + t + 2 + v#v-w4059f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-ln95048-117-p3s3w1 + + atom + také + RHEM + f + 3 + + + + a#a-ln95048-117-p3s3w4 + + a#a-ln95048-117-p3s3w2 + + + complex + noviny + PAT + + n.denot + fem + pl + single + + f + 4 + + + t-ln95048-117-p3s2w46 + SET_SUB + + + + + + a#a-ln95048-117-p3s3w3 + + complex + Lidový + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + + + + a#a-ln95048-117-p3s4 + 0 + + + hozená rukavice + lexeme + + t-ln95048-117-p3s4w17 + t-ln95048-117-p3s4w18 + + + + + + + a#a-ln95048-117-p3s4w4 + + a#a-ln95048-117-p3s4w3 + + + complex + vylít + PRED + enunc + + v + decl + ant + cpl + it0 + pas + asserted + + f + 26 + + + 1 + + + v#v-w8066f1 + + + + a#a-ln95048-117-p3s4w2 + + complex + + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 1 + + + 1 + + + + + + a#a-ln95048-117-p3s4w1 + + complex + žluč + PAT + + n.denot + fem + sg + single + + c + 2 + + + 1 + + + + + + a#a-ln95048-117-p3s4w5 + + complex + tolik + RSTR + + adj.quant.def + basic + + f + 3 + + + 1 + + + + + + a#a-ln95048-117-p3s4w15 + + a#a-ln95048-117-p3s4w14 + + + complex + zbývat + RESL + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + 1 + + + v#v-w9367f1 + + + qcomplex + 1 + #Gen + PAT + t + 4 + + + 1 + + + + + atom + 1 + #Neg + RHEM + f + 5 + + + 1 + + + + + qcomplex + 1 + #Total + ACT + t + 7 + + + 1 + + + + + + a#a-ln95048-117-p3s4w20 + + coap + a + CONJ + 12 + + + 1 + + + + + qcomplex + 1 + #Cor + ACT + t + 8 + + + 1 + + + + t-ln95048-117-p3s4a2 + + + + + a#a-ln95048-117-p3s4w19 + + a#a-ln95048-117-p3s4w16 + + + complex + zvednout + RESTR + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 11 + + + 1 + + + v#v-w9956f1 + + + + a#a-ln95048-117-p3s4w18 + + complex + rukavice + PAT + + n.denot + fem + sg + single + + t + 9 + + + 1 + + + + + + a#a-ln95048-117-p3s4w17 + + complex + hozený + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + 1 + + + + + + + + + + a#a-ln95048-117-p3s4w21 + + a#a-ln95048-117-p3s4w16 + + + complex + vést + RESTR + 1 + + v + decl + nil + proc + it0 + act + nil + + f + 13 + + + 1 + + + v#v-w7583f2 + + + + a#a-ln95048-117-p3s4w22 + + complex + polemika + CPHR + + n.denot + fem + sg + single + + f + 17 + + + 1 + + + v#v-w3793f1 + + + qcomplex + 1 + #QCor + ACT + t + 14 + + + 1 + + + + t-ln95048-117-p3s4a3 + + + + qcomplex + 1 + #Gen + PAT + t + 15 + + + 1 + + + + + qcomplex + 1 + #Gen + ADDR + t + 16 + + + 1 + + + + + + a#a-ln95048-117-p3s4w27 + + a#a-ln95048-117-p3s4w26 + a#a-ln95048-117-p3s4w25 + + + complex + přát_si + RSTR + + v + decl + ant + proc + it0 + act + asserted + + f + 23 + + + 1 + + + v#v-w4666f1 + + + + a#a-ln95048-117-p3s4w28 + + complex + vést + PAT + + v + decl + nil + proc + it0 + act + nil + + t + 20 + + + 1 + + + v#v-w7583f2 + + + + a#a-ln95048-117-p3s4w24 + + complex + který + CPHR + + n.pron.indef + inher + inher + relat + inher + + t + 18 + + + 1 + + + + t-ln95048-117-p3s4w22 + + + + qcomplex + 1 + #Cor + ACT + t + 19 + + + 1 + + + + t-ln95048-117-p3s4a4 + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 1 + basic + + t + 21 + + + 1 + + + + + t-ln95048-117-p3s1a2 + SET_SUB + + + + + atom + 1 + #Neg + RHEM + f + 22 + + + 1 + + + + + + + + + + + + + + + + + + + + + qcomplex + 1 + #Gen + ACT + t + 24 + + + 1 + + + + + qcomplex + 1 + #Oblfm + DIR1 + nr + t + 25 + + + 1 + + + + + + a#a-ln95048-117-p3s4w8 + + complex + přibývat + PAR + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 29 + + + t-ln95048-117-p3s4w4 + discourse + 0 + 0 + conj + + t-ln95048-117-p3s4w7 + + + + v#v-w5094f1 + + + + a#a-ln95048-117-p3s4w7 + + atom + a + PREC + 1 + t + 27 + + + + a#a-ln95048-117-p3s4w9 + + complex + #PersPron + ACT + 1 + + n.pron.def.pers + fem + sg + 3 + basic + + t + 28 + + + t-ln95048-117-p3s4w1 + GEN + + + + + + a#a-ln95048-117-p3s4w10 + + atom + spíše + RHEM + 1 + f + 30 + + + + a#a-ln95048-117-p3s4w11 + + complex + řada + MANN + 1 + + n.denot + fem + sg + single + + f + 31 + + + + a#a-ln95048-117-p3s4w12 + + complex + geometrický + RSTR + 1 + + adj.denot + pos + neg0 + + f + 32 + + + + + + + + + + + a#a-ln95048-117-p3s5 + 0 + + + + a#a-ln95048-117-p3s5w12 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w243f1 + + + + a#a-ln95048-117-p3s5w1 + + a#a-ln95048-117-p3s5w3 + + + complex + kompenzovat + COND + + v + decl + sim + proc + it0 + act + asserted + + t + 8 + + + t-ln95048-117-p3s5w12 + discourse + 0 + 0 + cond + + a#a-ln95048-117-p3s5w3 + + + + v#v-w1451f1 + + + + a#a-ln95048-117-p3s5w5 + + complex + člověk + ACT + + n.denot + anim + pl + single + + t + 2 + + + t-ln95048-117-p3s2a2 + SUB_SET + + + + + + a#a-ln95048-117-p3s5w4 + + complex + který + RSTR + + adj.pron.indef + indef1 + + t + 1 + + + + + + a#a-ln95048-117-p3s5w7 + + complex + frustrace + PAT + + n.denot + fem + sg + single + + t + 4 + + + + a#a-ln95048-117-p3s5w6 + + complex + #PersPron + APP + + n.pron.def.pers + inher + inher + inher + inher + + t + 3 + + t-ln95048-117-p3s5w5 + + + + + + + a#a-ln95048-117-p3s5w8 + + complex + kopání + MEANS + + n.denot.neg + neut + sg + single + neg0 + + t + 7 + v#v-w1549f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + nr + 3 + basic + + t + 5 + + + t-ln95048-117-p3s5w6 + GEN + + + + + + a#a-ln95048-117-p3s5w10 + + a#a-ln95048-117-p3s5w9 + + + complex + #PersPron + LOC + around + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-ln95048-117-p3s5a1 + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 9 + + + t-ln95048-117-p3s4a5 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 10 + + + + a#a-ln95048-117-p3s5w13 + + complex + povinný + PAT + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln95048-117-p3s5w15 + + complex + chlácholit + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 15 + v#v-w1174f1 + + + qcomplex + 1 + #Cor + ACT + t + 13 + + t-ln95048-117-p3s5a2 + + + + + a#a-ln95048-117-p3s5w14 + + complex + #PersPron + PAT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 14 + + + t-ln95048-117-p3s5w10 + GEN + + + + + + a#a-ln95048-117-p3s5w23 + + a#a-ln95048-117-p3s5w16 + a#a-ln95048-117-p3s5w21 + a#a-ln95048-117-p3s5w18 + + + complex + snášet + MANN + + v + decl + post + proc + it0 + act + asserted + + f + 19 + v#v-w6230f1 + + + + a#a-ln95048-117-p3s5w20 + + complex + rána + PAT + + n.denot + fem + pl + single + + t + 17 + + + t-ln95048-117-p3s5w8 + SPEC + + + + + + a#a-ln95048-117-p3s5w19 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 16 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 18 + + + t-ln95048-117-p3s5a3 + SPEC + + + + + + a#a-ln95048-117-p3s5w22 + + complex + trpný + MANN + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + + + + + a#a-ln95048-117-p4s1 + 0 + + + osobovat si právo + lexeme + + t-ln95048-117-p4s1w16 + t-ln95048-117-p4s1w17 + + + + + + + a#a-ln95048-117-p4s1w22 + + coap + a + CONJ + 18 + + + + a#a-ln95048-117-p4s1w4 + + coap + #Comma + CONJ + 3 + + + + a#a-ln95048-117-p4s1w1 + + complex + politik + ACT + 1 + + n.denot + anim + sg + single + + c + 1 + + + + a#a-ln95048-117-p4s1w3 + + complex + publicista + ACT + 1 + + n.denot + anim + sg + single + + c + 2 + + + + a#a-ln95048-117-p4s1w5 + + complex + literát + ACT + 1 + + n.denot + anim + sg + single + + c + 4 + + + qcomplex + 1 + #EmpVerb + CNCS + 1 + t + 5 + + + + a#a-ln95048-117-p4s1w8 + + atom + třeba + RHEM + 1 + f + 6 + + + + a#a-ln95048-117-p4s1w9 + + a#a-ln95048-117-p4s1w7 + + + complex + člověk + PAT + 1 + + n.denot + anim + sg + single + + f + 7 + + + + a#a-ln95048-117-p4s1w11 + + complex + zasloužilý + RSTR + 1 + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln95048-117-p4s1w10 + + complex + jak + MANN + 1 + + adv.pron.indef + indef3 + + f + 9 + + + + + + + + + + + + a#a-ln95048-117-p4s1w16 + + a#a-ln95048-117-p4s1w15 + a#a-ln95048-117-p4s1w13 + + + complex + osobovat_si + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 10 + v#v-w3202f1 + + + + a#a-ln95048-117-p4s1w17 + + complex + právo + PAT + + n.denot + neut + sg + single + + f + 12 + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-ln95048-117-p4s1w18 + + complex + být + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 14 + v#v-w243f1 + + + qcomplex + 1 + #Cor + ACT + t + 13 + + t-ln95048-117-p4s1a5 + + + + + a#a-ln95048-117-p4s1w19 + + complex + středobod + PAT + + n.denot + inan + sg + single + + f + 15 + + + + a#a-ln95048-117-p4s1w21 + + complex + vesmír + APP + + n.denot + inan + sg + single + + f + 16 + + + + a#a-ln95048-117-p4s1w20 + + complex + morální + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + + a#a-ln95048-117-p4s1w23 + + a#a-ln95048-117-p4s1w15 + + + complex + chtít + PRED + enunc + 1 + + v + vol + sim + proc + it0 + act + asserted + + f + 19 + + + t-ln95048-117-p4s1w16 + discourse + 0 + 0 + conj + + t-ln95048-117-p4s1w22 + + + + v#v-w1193f1 + + + + a#a-ln95048-117-p4s1w31 + + a#a-ln95048-117-p4s1w28 + a#a-ln95048-117-p4s1w25 + + + complex + poměřovat + PAT + + v + decl + nil + proc + it0 + pas + potential + + f + 24 + v#v-w3822f1 + + + + a#a-ln95048-117-p4s1w27 + + complex + morálka + PAT + + n.denot + fem + sg + single + + t + 20 + + + + a#a-ln95048-117-p4s1w29 + + complex + #PersPron + MEANS + + n.pron.def.pers + anim + sg + 3 + basic + + t + 21 + + + t-ln95048-117-p4s1w4 + SPEC + + + + + + a#a-ln95048-117-p4s1w30 + + complex + samý + RSTR + + adj.pron.def.demon + + f + 22 + + + + + qcomplex + 1 + #Gen + ACT + t + 23 + + + + + + + + a#a-ln95048-117-p4s1w14 + + complex + těžký + MANN + + adj.denot + pos + neg0 + + f + 25 + + + + + + + a#a-ln95048-117-p4s2 + 0 + + + + a#a-ln95048-117-p4s2w4 + + a#a-ln95048-117-p4s2w2 + + + complex + objevit_se + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + + + t-ln95048-117-p4s1w22 + discourse + 0 + 0 + conc + + t-ln95048-117-p4s2w1 + + + + v#v-w2500f2 + + + + a#a-ln95048-117-p4s2w1 + + atom + přesto + PREC + t + 1 + + + + a#a-ln95048-117-p4s2w3 + + complex + teď + TWHEN + basic + + adv.pron.def + + t + 2 + exoph + + + + a#a-ln95048-117-p4s2w6 + + complex + člověk + ACT + + n.denot + anim + pl + single + + t + 4 + + + + a#a-ln95048-117-p4s2w5 + + complex + hodně + RSTR + + adj.quant.grad + comp + basic + + f + 5 + + + + a#a-ln95048-117-p4s2w14 + + coap + a + CONJ + 11 + + + + a#a-ln95048-117-p4s2w8 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-ln95048-117-p4s2w6 + + + + + a#a-ln95048-117-p4s2w13 + + complex + nosit + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w2415f1 + + + + a#a-ln95048-117-p4s2w10 + + complex + ambice + PAT + + n.denot + fem + sg + single + + t + 8 + segm + + + + a#a-ln95048-117-p4s2w9 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 7 + + + + + + a#a-ln95048-117-p4s2w12 + + a#a-ln95048-117-p4s2w11 + + + complex + #PersPron + LOC + basic + + n.pron.def.pers + inher + inher + inher + inher + + t + 9 + + t-ln95048-117-p4s2w8 + + + + + + + a#a-ln95048-117-p4s2w18 + + complex + psát + RSTR + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 15 + + + t-ln95048-117-p4s2w13 + discourse + 0 + 0 + conj + + t-ln95048-117-p4s2w14 + + + + v#v-w5369f2 + + + + a#a-ln95048-117-p4s2w16 + + a#a-ln95048-117-p4s2w15 + + + complex + ten + CRIT + + n.pron.def.demon + neut + sg + + t + 12 + + + t-ln95048-117-p4s2w13 + SPEC + + + + + qcomplex + 1 + #Gen + PAT + t + 13 + + + + a#a-ln95048-117-p4s2w17 + + atom + také + RHEM + f + 14 + + + + + + + + + + + + + a#a-ln95048-117-p4s3 + 0 + + + pravidla hry + lexeme + + t-ln95048-117-p4s3w12 + t-ln95048-117-p4s3w13 + + + + + + + a#a-ln95048-117-p4s3w21 + + coap + a + CONJ + 14 + + + t-ln95048-117-p4s2w4 + discourse + 0 + 0 + opp + + t-ln95048-117-p4s3w3 + + + + + + + a#a-ln95048-117-p4s3w3 + + atom + však + PREC + t + 1 + + + + a#a-ln95048-117-p4s3w6 + + complex + majitel + ACT + + n.denot + anim + sg + single + + t + 5 + + + + a#a-ln95048-117-p4s3w8 + + coap + a + CONJ + 3 + + + + a#a-ln95048-117-p4s3w7 + + complex + pravda + PAT + 1 + + n.denot + fem + sg + single + + t + 2 + + + + a#a-ln95048-117-p4s3w9 + + complex + morálka + PAT + 1 + + n.denot + fem + sg + single + + t + 4 + + + t-ln95048-117-p4s1w27 + GEN + + + + + + + + a#a-ln95048-117-p4s3w5 + + complex + jeden + RSTR + + adj.quant.def + basic + + t + 6 + + + + + + a#a-ln95048-117-p4s3w2 + + a#a-ln95048-117-p4s3w1 + + + complex + demokracie + LOC + basic + + n.denot + fem + sg + single + + t + 7 + + + t-ln95048-117-p3s2w20 + GEN + + + + + + a#a-ln95048-117-p4s3w11 + + a#a-ln95048-117-p4s3w10 + + + complex + tvořit + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 8 + v#v-w6951f1 + + + + a#a-ln95048-117-p4s3w12 + + complex + pravidlo + PAT + + n.denot + neut + pl + single + + f + 9 + + + + a#a-ln95048-117-p4s3w13 + + complex + hra + APP + + n.denot + fem + sg + single + + f + 10 + + + + + + + + a#a-ln95048-117-p4s3w15 + + a#a-ln95048-117-p4s3w10 + + + complex + vymezovat + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 11 + v#v-w8109f1 + + + + a#a-ln95048-117-p4s3w16 + + complex + mantinel + PAT + + n.denot + inan + pl + single + + f + 13 + + + + a#a-ln95048-117-p4s3w17 + + complex + morálka + APP + + n.denot + fem + sg + single + + t + 12 + + + t-ln95048-117-p4s3w9 + GEN + + + + + + + + + + a#a-ln95048-117-p4s3w19 + + a#a-ln95048-117-p4s3w10 + + + complex + rozdávat + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 16 + v#v-w5581f1 + + + qcomplex + 1 + #Gen + ADDR + t + 15 + + + + a#a-ln95048-117-p4s3w20 + + complex + rána + PAT + + n.denot + fem + pl + single + + f + 17 + + + + + + a#a-ln95048-117-p4s3w25 + + a#a-ln95048-117-p4s3w10 + + + complex + soudcovat + PRED + enunc + 1 + + v + poss + sim + proc + it0 + act + asserted + + f + 18 + + + t-ln95048-117-p4s3w19 + discourse + 0 + 0 + conj + + t-ln95048-117-p4s3w21 + + + + v#v-w6269f1 + + + + a#a-ln95048-117-p4s3w23 + + complex + moudrý + MANN + + + other + ln95048-117-p4s3w23 + + + + adj.denot + pos + neg0 + + f + 19 + + + + + + a#a-ln95048-117-p4s3w4 + + complex + těžký + MANN + + adj.denot + pos + neg0 + + f + 20 + + + + + + + a#a-ln95048-117-p4s4 + 0 + + + + a#a-ln95048-117-p4s4w8 + + complex + vyzkoušet + PRED + enunc + + v + decl + ant + cpl + it0 + deagent + asserted + + f + 7 + v#v-w8588f1 + + + + a#a-ln95048-117-p4s4w1 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 2 + + + t-ln95048-117-p4s3w21 + SPEC + + + + + + a#a-ln95048-117-p4s4w2 + + complex + který + RSTR + + adj.pron.indef + total1 + + t + 1 + + + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-ln95048-117-p4s4w3 + + complex + + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 4 + + + + a#a-ln95048-117-p4s4w7 + + a#a-ln95048-117-p4s4w5 + + + complex + země + LOC + basic + + n.denot + fem + sg + single + + t + 6 + + + t-ln95048-117-p3s2w23 + SPEC + + + + + + a#a-ln95048-117-p4s4w6 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 5 + + + + + + + + + a#a-ln95048-117-p4s5 + 0 + + + praskat ve švech + lexeme + + t-ln95048-117-p4s5w10 + t-ln95048-117-p4s5w12 + + + + + + + a#a-ln95048-117-p4s5w7 + + coap + #Comma + CONJ + 6 + + + t-ln95048-117-p4s4w8 + discourse + 0 + 0 + conj + + t-ln95048-117-p4s5w1 + + + + + + + a#a-ln95048-117-p4s5w1 + + atom + a + PREC + t + 1 + + + + a#a-ln95048-117-p4s5w3 + + complex + létat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w1693f1 + + + + a#a-ln95048-117-p4s5w2 + + complex + tříska + ACT + + n.denot + fem + pl + single + + c + 2 + + + + + + a#a-ln95048-117-p4s5w6 + + complex + crčet + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 5 + v#v-w291f1 + + + + a#a-ln95048-117-p4s5w5 + + complex + krev + ACT + + n.denot + fem + sg + single + + c + 4 + + + + + + a#a-ln95048-117-p4s5w10 + + complex + praskat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 9 + v#v-w4252f1 + + + + a#a-ln95048-117-p4s5w9 + + complex + koncentrák + ACT + + n.denot + inan + pl + single + + c + 7 + + + + a#a-ln95048-117-p4s5w8 + + complex + rudý + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln95048-117-p4s5w12 + + a#a-ln95048-117-p4s5w11 + + + dphr + ve_švech + DPHR + f + 10 + + + + + + + + + a#a-ln95048-117-p5s1 + 0 + + + time + + t-ln95048-117-p5s1w44 + t-ln95048-117-p5s1w45 + + + + object + + t-ln95048-117-p5s1w5 + t-ln95048-117-p5s1w6 + + + + + + + a#a-ln95048-117-p5s1w8 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w243f1 + + + + a#a-ln95048-117-p5s1w3 + + complex + výročí + ACT + + n.denot + neut + sg + single + + c + 1 + + + + a#a-ln95048-117-p5s1w6 + + complex + únor + APP + + + title + ln95048-117-p5s1w6 + + + + n.denot + inan + sg + single + + f + 2 + + + + a#a-ln95048-117-p5s1w5 + + complex + vítězný + RSTR + + + title + ln95048-117-p5s1w6 + + + + adj.denot + pos + neg0 + + f + 3 + + + + + + a#a-ln95048-117-p5s1w2 + + complex + smutný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln95048-117-p5s1w1 + + complex + dnešní + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-ln95048-117-p5s1w9 + + complex + vůbec + EXT + basic + + adv.denot.ngrad.nneg + + f + 7 + + + + a#a-ln95048-117-p5s1w11 + + complex + důvod + PAT + + n.denot + inan + sg + single + + f + 9 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-ln95048-117-p5s1w10 + + complex + dobrý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-ln95048-117-p5s1w12 + + complex + připomenout + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 12 + v#v-w5225f1 + + + qcomplex + 1 + #Cor + ACT + t + 11 + + t-ln95048-117-p5s1a4 + + + + + a#a-ln95048-117-p5s1w15 + + complex + mravokárce + ADDR + + n.denot + anim + pl + single + + f + 13 + + + + a#a-ln95048-117-p5s1w14 + + complex + současný + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-ln95048-117-p5s1w13 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 15 + + + + a#a-ln95048-117-p5s1w22 + + complex + zvracet + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 17 + v#v-w9989f1 + + + + a#a-ln95048-117-p5s1w17 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 16 + + t-ln95048-117-p5s1w15 + + + + + a#a-ln95048-117-p5s1w20 + + coap + a + CONJ + 19 + + + + a#a-ln95048-117-p5s1w19 + + complex + pravidelný + MANN + 1 + + adj.denot + pos + neg0 + + f + 18 + + + + a#a-ln95048-117-p5s1w21 + + complex + neodbytný + MANN + 1 + + adj.denot + pos + neg0 + + f + 20 + + + + + + a#a-ln95048-117-p5s1w18 + + complex + tak + EXT + basic + + adv.pron.def + + f + 21 + + + + a#a-ln95048-117-p5s1w28 + + a#a-ln95048-117-p5s1w23 + + + complex + národ + LOC + above + + n.denot + inan + sg + single + + f + 23 + + + t-ln95048-117-p4s4w7 + REST + + + + + + a#a-ln95048-117-p5s1w24 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 22 + + + + a#a-ln95048-117-p5s1w26 + + complex + zkažený + RSTR + + + other + ln95048-117-p5s1w26 + + + + adj.denot + pos + neg0 + + f + 24 + + + + a#a-ln95048-117-p5s1w36 + + a#a-ln95048-117-p5s1w32 + a#a-ln95048-117-p5s1w33 + + + complex + být + RSTR + 1 + + v + decl + nil + proc + it0 + act + potential + + f + 28 + v#v-w243f1 + + + + a#a-ln95048-117-p5s1w30 + + complex + který + ACT + 1 + + n.pron.indef + inher + inher + relat + inher + + t + 25 + + t-ln95048-117-p5s1w28 + + + + + a#a-ln95048-117-p5s1w35 + + atom + ani + RHEM + 1 + f + 26 + + + atom + 1 + #Neg + RHEM + 1 + f + 27 + + + + a#a-ln95048-117-p5s1w34 + + atom + snad + MOD + 1 + f + 29 + + + + a#a-ln95048-117-p5s1w37 + + complex + hodný + PAT + 1 + + adj.denot + pos + neg0 + + f + 31 + + + + a#a-ln95048-117-p5s1w31 + + complex + #PersPron + PAT + 1 + + n.pron.def.pers + anim + pl + 3 + basic + + t + 30 + + + t-ln95048-117-p5s1w17 + SPEC + + + + + + + + + + + + + + + + a#a-ln95048-117-p5s1w42 + + a#a-ln95048-117-p5s1w40 + + + complex + začít + PAT + + v + decl + ant + cpl + it0 + act + asserted + + f + 34 + v#v-w8756f2 + + + + a#a-ln95048-117-p5s1w41 + + complex + dějiny + ACT + + n.denot + fem + sg + single + + c + 32 + + + atom + 1 + #Neg + RHEM + f + 33 + + + + a#a-ln95048-117-p5s1w44 + + a#a-ln95048-117-p5s1w43 + + + complex + rok + TWHEN + basic + + n.denot + inan + sg + single + + t + 35 + + + t-ln95048-117-p2s1w3 + WHOLE_PART + + + + + + a#a-ln95048-117-p5s1w45 + + complex + 1968 + RSTR + + n.quant.def + nr + nr + basic + + f + 36 + + + + + + + + + + + + + + + a#a-ln95048-117-p5s2 + 0 + + + + a#a-ln95048-117-p5s2w1 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 1 + v#v-w243f2 + + + + a#a-ln95048-117-p5s2w3 + + a#a-ln95048-117-p5s2w2 + + + complex + podiv + ACMP + basic + + n.denot + inan + sg + single + + f + 2 + + + + a#a-ln95048-117-p5s2w9 + + a#a-ln95048-117-p5s2w5 + + + complex + být + ACT + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w243f193_MM + + + + a#a-ln95048-117-p5s2w10 + + complex + nutný + PAT + + n.denot + neut + sg + single + + f + 5 + v#v-w2430f1 + + + qcomplex + 1 + #Gen + BEN + nr + t + 4 + + + + + + a#a-ln95048-117-p5s2w11 + + complex + připomínat + ACT + + v + decl + nil + proc + it0 + act + nil + + f + 11 + v#v-w5228f2 + + + + a#a-ln95048-117-p5s2w6 + + atom + i + RHEM + t + 6 + + + + a#a-ln95048-117-p5s2w8 + + complex + trivialita + PAT + + n.denot + fem + sg + single + + c + 8 + + + t-ln95048-117-p5s1w42 + SPEC + + + + + + a#a-ln95048-117-p5s2w7 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 7 + + + + + qcomplex + 1 + #Cor + ACT + t + 9 + + t-ln95048-117-p5s2a0 + + + + qcomplex + 1 + #Gen + ADDR + t + 10 + + + + + + + + + + + a#a-ln95048-117-p5s3 + 0 + + + dějinná událost + lexeme + + t-ln95048-117-p5s3w14 + t-ln95048-117-p5s3w15 + + + + + + + a#a-ln95048-117-p5s3w21 + + complex + lze + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 18 + + + t-ln95048-117-p5s2w1 + discourse + 0 + 0 + opp + + t-ln95048-117-p5s3w4 + + + + v#v-w1757f1 + + + + a#a-ln95048-117-p5s3w4 + + atom + však + PREC + t + 1 + + + + a#a-ln95048-117-p5s3w1 + + a#a-ln95048-117-p5s3w3 + + + complex + být + COND + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + + + t-ln95048-117-p5s3w21 + discourse + 0 + 0 + cond + + a#a-ln95048-117-p5s3w3 + + + + v#v-w243f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 2 + + + t-ln95048-117-p3s5a4 + SPEC + + + + + + a#a-ln95048-117-p5s3w5 + + complex + svědek + PAT + + n.denot + anim + pl + single + + f + 4 + + + + a#a-ln95048-117-p5s3w17 + + a#a-ln95048-117-p5s3w6 + a#a-ln95048-117-p5s3w8 + a#a-ln95048-117-p5s3w16 + + + complex + přizpůsobovat + PAT + + v + decl + sim + proc + it0 + pas + asserted + + f + 13 + v#v-w5361f1 + + + + a#a-ln95048-117-p5s3w11 + + coap + a + GRAD + 7 + + + + a#a-ln95048-117-p5s3w9 + + complex + kritérium + PAT + 1 + + n.denot + neut + pl + single + + c + 6 + + + + a#a-ln95048-117-p5s3w10 + + complex + morálka + APP + + n.denot + fem + sg + single + + t + 5 + + + t-ln95048-117-p4s3w17 + GEN + + + + + + + + a#a-ln95048-117-p5s3w12 + + atom + dokonce + CM + 8 + + + + a#a-ln95048-117-p5s3w13 + + atom + i + CM + 9 + + + + a#a-ln95048-117-p5s3w15 + + complex + událost + PAT + 1 + + n.denot.neg + fem + pl + single + neg0 + + c + 10 + + + + a#a-ln95048-117-p5s3w14 + + complex + dějinný + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + a#a-ln95048-117-p5s3w19 + + complex + životopis + ADDR + + n.denot + inan + sg + single + + f + 14 + + + + a#a-ln95048-117-p5s3w18 + + complex + vlastní + RSTR + + adj.denot + pos + neg0 + + f + 15 + v#v-w7646f1 + + + + + + + + + + + qcomplex + 1 + #Gen + BEN + nr + t + 16 + + + atom + 1 + #Neg + RHEM + f + 17 + + + + a#a-ln95048-117-p5s3w24 + + a#a-ln95048-117-p5s3w22 + + + complex + vyhnout_se + ACT + + v + decl + nil + cpl + it0 + act + nil + + f + 21 + v#v-w7903f1 + + + + a#a-ln95048-117-p5s3w23 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 19 + + + t-ln95048-117-p5s2w11 + SPEC + + + + + qcomplex + 1 + #Cor + ACT + t + 20 + + t-ln95048-117-p5s3a3 + + + + + + + + + + a#a-ln95048-117-p6s1 + 0 + + + + a#a-ln95048-117-p6s1w15 + + a#a-ln95048-117-p6s1w14 + + + complex + naskicovat + PRED + enunc + + v + poss + sim + cpl + it0 + act + asserted + + f + 15 + v#v-w2211f1 + + + + a#a-ln95048-117-p6s1w8 + + coap + #Comma + CONJ + 9 + + + qcomplex + 1 + #Cor + ACT + t + 1 + + t-ln95048-117-p6s1a0 + + + + + a#a-ln95048-117-p6s1w1 + + complex + být + COMPL + 1 + + v + decl + sim + proc + it0 + act + nil + + t + 2 + + t-ln95048-117-p6s1a0 + + v#v-w243f1 + + + + a#a-ln95048-117-p6s1w2 + + complex + svědek + PAT + + n.denot + anim + pl + single + + t + 3 + + + + a#a-ln95048-117-p6s1w3 + + complex + řada + PAT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-ln95048-117-p6s1w6 + + coap + i + CONJ + 6 + + + + a#a-ln95048-117-p6s1w5 + + complex + dialog + MAT + 1 + + n.denot + inan + pl + single + + f + 5 + + + + a#a-ln95048-117-p6s1w7 + + complex + monolog + MAT + 1 + + n.denot + inan + pl + single + + f + 7 + + + + a#a-ln95048-117-p6s1w4 + + complex + pozoruhodný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + + + a#a-ln95048-117-p6s1w9 + + complex + být + COMPL + 1 + + v + decl + sim + proc + it0 + act + nil + + t + 10 + + t-ln95048-117-p6s1a0 + + v#v-w243f1 + + + + a#a-ln95048-117-p6s1w10 + + complex + čtenář + PAT + + n.denot + anim + pl + single + + f + 11 + + + + a#a-ln95048-117-p6s1w12 + + complex + paměť + PAT + + n.denot + fem + pl + single + + f + 13 + + + + a#a-ln95048-117-p6s1w11 + + complex + pozoruhodný + RSTR + + adj.denot + pos + neg0 + + t + 12 + + + + + + + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + nr + pl + 1 + basic + + t + 14 + + + t-ln95048-117-p5s3a1 + SPEC + + + + + + a#a-ln95048-117-p6s1w22 + + complex + vypadat + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 20 + v#v-w8170f1 + + + + a#a-ln95048-117-p6s1w19 + + complex + příběh + ACT + + n.denot + inan + sg + single + + t + 17 + + + t-ln95048-117-p5s3w19 + GEN + + + + + + a#a-ln95048-117-p6s1w18 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 16 + + + + a#a-ln95048-117-p6s1w21 + + complex + člověk + APP + + n.denot + anim + sg + single + + f + 18 + + + + a#a-ln95048-117-p6s1w20 + + complex + opravdový + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + a#a-ln95048-117-p6s1w17 + + complex + jak + MANN + + adv.pron.indef + inter + + f + 21 + + + + + + + + + a#a-ln95048-117-p6s2 + 0 + + + location + + t-ln95048-117-p6s2w33 + t-ln95048-117-p6s2w34 + + + + + + + a#a-ln95048-117-p6s2w8 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w243f1 + + + + a#a-ln95048-117-p6s2w4 + + complex + člověk + PAT + + n.denot + anim + sg + single + + t + 3 + + + + a#a-ln95048-117-p6s2w7 + + a#a-ln95048-117-p6s2w5 + + + complex + země + LOC + basic + + n.denot + fem + sg + single + + t + 2 + + + + a#a-ln95048-117-p6s2w6 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + + a#a-ln95048-117-p6s2w2 + + coap + a + CONJ + 5 + + + + a#a-ln95048-117-p6s2w1 + + complex + slušný + RSTR + 1 + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln95048-117-p6s2w3 + + complex + mravný + RSTR + 1 + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + a#a-ln95048-117-p6s2w9 + + complex + ten + ACT + + n.pron.def.demon + nr + sg + + t + 8 + + + t-ln95048-117-p6s1w21 + GEN + + + + + + a#a-ln95048-117-p6s2w25 + + a#a-ln95048-117-p6s2w22 + + + coap + a + CONJ + 17 + + + + a#a-ln95048-117-p6s2w11 + + complex + kdo + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 9 + + t-ln95048-117-p6s2w9 + + + + + a#a-ln95048-117-p6s2w13 + + a#a-ln95048-117-p6s2w12 + + + complex + narodit_se + RSTR + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 10 + v#v-w2173f1 + + + + a#a-ln95048-117-p6s2w17 + + a#a-ln95048-117-p6s2w14 + + + complex + rodina + LOC + basic + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln95048-117-p6s2w16 + + complex + komunistický + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln95048-117-p6s2w15 + + complex + starý + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + + + a#a-ln95048-117-p6s2w21 + + a#a-ln95048-117-p6s2w20 + + + complex + nadchnout_se + RSTR + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 15 + v#v-w1984f1 + + + qcomplex + 1 + #Gen + PAT + t + 14 + + + + a#a-ln95048-117-p6s2w19 + + complex + opravdový + MANN + + adj.denot + pos + neg0 + + f + 16 + + + + + + a#a-ln95048-117-p6s2w23 + + complex + milovat + RSTR + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 18 + + + t-ln95048-117-p6s2w21 + discourse + 0 + 0 + conj + + a#a-ln95048-117-p6s2w22 + + + + v#v-w1835f1 + + + + a#a-ln95048-117-p6s2w24 + + complex + revoluce + PAT + + n.denot + fem + sg + single + + f + 19 + + + + + + a#a-ln95048-117-p6s2w29 + + a#a-ln95048-117-p6s2w28 + + + complex + naučit_se + RSTR + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 22 + + + t-ln95048-117-p6s2w23 + discourse + 0 + 0 + conj + + a#a-ln95048-117-p6s2w25 + + + + v#v-w2284f1 + + + + a#a-ln95048-117-p6s2w26 + + complex + co + PAT + + n.pron.indef + neut + sg + total1 + 3 + + t + 20 + + + + a#a-ln95048-117-p6s2w27 + + complex + důležitý + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + a#a-ln95048-117-p6s2w31 + + a#a-ln95048-117-p6s2w30 + + + complex + gymnázium + LOC + basic + + n.denot + neut + sg + single + + f + 23 + + + + a#a-ln95048-117-p6s2w34 + + a#a-ln95048-117-p6s2w32 + + + complex + Hradiště + LOC + basic + + n.denot + neut + sg + single + + f + 24 + + + + a#a-ln95048-117-p6s2w33 + + complex + Uherský + RSTR + + adj.denot + pos + neg0 + + f + 25 + + + + + + + + + + + + + + + + + a#a-ln95048-117-p6s3 + 0 + + + + a#a-ln95048-117-p6s3w4 + + coap + #Comma + CONJ + 3 + + + + a#a-ln95048-117-p6s3w1 + + complex + vstup + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 1 + + + + a#a-ln95048-117-p6s3w3 + + a#a-ln95048-117-p6s3w2 + + + complex + strana + DIR3 + basic + + n.denot + fem + sg + single + + f + 2 + + + t-ln95048-117-p6s2w16 + REST + + + + + + + + a#a-ln95048-117-p6s3w6 + + complex + zklamání + DENOM + enunc + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 6 + v#v-w9524f3 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + qcomplex + 1 + #Gen + PAT + t + 5 + + + + a#a-ln95048-117-p6s3w5 + + complex + postupný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-ln95048-117-p6s3w8 + + complex + posilovaný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln95048-117-p6s3w13 + + a#a-ln95048-117-p6s3w9 + + + coap + jak_tak + CONJ + 11 + + + + a#a-ln95048-117-p6s3w11 + + complex + čas + ACT + 1 + + n.denot + inan + sg + single + + f + 9 + + + + a#a-ln95048-117-p6s3w10 + + complex + ubíhající + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-ln95048-117-p6s3w14 + + complex + ten + ACT + 1 + + n.pron.def.demon + neut + sg + + t + 12 + + + t-ln95048-117-p6s3w22 + SPEC + + + + + + a#a-ln95048-117-p6s3w22 + + a#a-ln95048-117-p6s3w16 + a#a-ln95048-117-p6s3w21 + + + complex + vkrádat_se + RSTR + + v + decl + ant + proc + it0 + act + asserted + + f + 16 + v#v-w7635f1 + + + + a#a-ln95048-117-p6s3w20 + + a#a-ln95048-117-p6s3w17 + + + complex + obzor + ACMP + basic + + n.denot + inan + sg + single + + c + 13 + + + + a#a-ln95048-117-p6s3w18 + + a#a-ln95048-117-p6s3w19 + + + complex + rozšiřující_se + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + qcomplex + 1 + #Oblfm + DIR3 + nr + t + 15 + + + + a#a-ln95048-117-p6s3w23 + + complex + pochybnost + ACT + + n.denot.neg + fem + pl + single + neg0 + + f + 17 + + + + + + + + + + + + + + + + + a#a-ln95048-117-p6s4 + 0 + + + + a#a-ln95048-117-p6s4w13 + + coap + a + CONJ + 8 + + + + a#a-ln95048-117-p6s4w2 + + complex + kverulace + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 1 + + + + a#a-ln95048-117-p6s4w1 + + complex + komunistický + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + t-ln95048-117-p6s2w16 + GEN + + + + + + + complex + 1 + #EmpNoun + DENOM + enunc + 1 + + n.pron.def.demon + inan + sg + + t + 3 + + + t-ln95048-117-p5s1w44 + SPEC + + + + + + a#a-ln95048-117-p6s4w4 + + complex + osmašedesát + RSTR + + adj.quant.def + ord + + f + 4 + + + + a#a-ln95048-117-p6s4w6 + + a#a-ln95048-117-p6s4w5 + + + complex + naděje + ACMP + basic + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln95048-117-p6s4w8 + + a#a-ln95048-117-p6s4w7 + + + complex + oprava + PAT + + n.denot + fem + sg + single + + f + 7 + + + + a#a-ln95048-117-p6s4w9 + + complex + komunismus + PAT + + n.denot + inan + sg + single + + t + 6 + + + t-ln95048-117-p6s4w1 + GEN + + + + + + + + + + + + a#a-ln95048-117-p6s4w12 + + complex + vpád + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 9 + + + + a#a-ln95048-117-p6s4w11 + + complex + ruský + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-ln95048-117-p6s4w15 + + complex + zrada + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln95048-117-p6s4w14 + + complex + Dubček + ACT + 1 + + n.denot + anim + sg + single + + f + 12 + + + + + + + + + a#a-ln95048-117-p6s5 + 0 + + + + a#a-ln95048-117-p6s5w7 + + coap + či + CONJ + 4 + + + + a#a-ln95048-117-p6s5w2 + + complex + porážka + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 1 + + + + a#a-ln95048-117-p6s5w1 + + complex + vnitrostranický + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + t-ln95048-117-p6s3w3 + SPEC + + + + + + + + a#a-ln95048-117-p6s5w4 + + complex + čistka + DENOM + enunc + 1 + + n.denot + fem + pl + single + + f + 3 + + + + a#a-ln95048-117-p6s5w6 + + complex + odchod + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln95048-117-p6s5w8 + + complex + vyhazov + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 6 + + + + + + + a#a-ln95048-117-p6s6 + 0 + + + + a#a-ln95048-117-p6s6w1 + + complex + normalizace + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + + + + + a#a-ln95048-117-p6s7 + 0 + + + totalitní režim + lexeme + + t-ln95048-117-p6s7w10 + t-ln95048-117-p6s7w11 + + + + + + + a#a-ln95048-117-p6s7w2 + + coap + #Comma + GRAD + 2 + + + + a#a-ln95048-117-p6s7w1 + + complex + ústrk + DENOM + enunc + 1 + + n.denot + inan + pl + single + + f + 1 + + + + a#a-ln95048-117-p6s7w4 + + atom + i + CM + 3 + + + + a#a-ln95048-117-p6s7w6 + + coap + a + CONJ + 1 + 6 + + + + a#a-ln95048-117-p6s7w3 + + complex + kdy + TWHEN + basic + + adv.pron.indef + indef1 + + t + 4 + + + + a#a-ln95048-117-p6s7w5 + + complex + žalář + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln95048-117-p6s7w8 + + complex + odpor + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 9 + + + + a#a-ln95048-117-p6s7w11 + + a#a-ln95048-117-p6s7w9 + + + complex + režim + PAT + + n.denot + inan + sg + single + + t + 7 + + + + a#a-ln95048-117-p6s7w10 + + complex + totalitní + RSTR + + adj.denot + pos + neg0 + + t + 8 + + + + + + a#a-ln95048-117-p6s7w7 + + complex + odvážný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + + a#a-ln95048-117-p6s8 + 0 + + + qcomplex + 1 + #EmpVerb + PRED + enunc + t + 2 + + + + a#a-ln95048-117-p6s8w1 + + complex + potom + TWHEN + basic + + adv.pron.def + + t + 1 + + + + a#a-ln95048-117-p6s8w3 + + complex + naděje + ACT + + n.denot + fem + sg + single + + f + 3 + + + + a#a-ln95048-117-p6s8w5 + + complex + perestrojka + APP + + n.denot + fem + sg + single + + f + 4 + + + + a#a-ln95048-117-p6s8w4 + + complex + Gorbačov + APP + 1 + + n.denot + anim + sg + single + + f + 5 + + + + + + a#a-ln95048-117-p6s8w2 + + complex + dva + RSTR + + adj.quant.def + ord + + f + 6 + + + + + + + + + a#a-ln95048-117-p6s9 + 0 + + + třetí cesta + lexeme + + t-ln95048-117-p6s9w6 + t-ln95048-117-p6s9w7 + + + + + + + a#a-ln95048-117-p6s9w8 + + coap + a + CONJ + 4 + + + + a#a-ln95048-117-p6s9w1 + + complex + listopad + DENOM + enunc + 1 + + n.denot + inan + sg + single + + f + 1 + + + + a#a-ln95048-117-p6s9w3 + + complex + nadšení + DENOM + enunc + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 3 + v#v-w1991f1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + + + a#a-ln95048-117-p6s9w5 + + complex + demokracie + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 5 + + + t-ln95048-117-p4s3w2 + SET_SUB + + + + + + a#a-ln95048-117-p6s9w7 + + complex + cesta + APP + + n.denot + fem + pl + single + + f + 6 + + + + a#a-ln95048-117-p6s9w6 + + complex + tři + RSTR + + adj.quant.def + ord + + f + 7 + + + + + + + qcomplex + 1 + #EmpVerb + PRED + enunc + 1 + t + 9 + + + + a#a-ln95048-117-p6s9w9 + + complex + posléze + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 8 + + + + a#a-ln95048-117-p6s9w15 + + complex + hysterie + ACT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-ln95048-117-p6s9w13 + + a#a-ln95048-117-p6s9w14 + + + complex + stupňující_se + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln95048-117-p6s9w10 + + complex + krok + MANN + + n.denot + inan + sg + single + + f + 12 + + + + a#a-ln95048-117-p6s9w12 + + a#a-ln95048-117-p6s9w11 + + + complex + krok + RSTR + + n.denot + inan + sg + single + + f + 13 + + + + + + + + + + + + + + + a#a-ln95048-117-p6s10 + 0 + + + qcomplex + 1 + #EmpVerb + PRED + inter + t + 1 + + + + a#a-ln95048-117-p6s10w1 + + complex + zvládnutelný + PAT + + adj.denot + pos + neg1 + + f + 2 + + + + + + + a#a-ln95048-117-p7s1 + 0 + + + + a#a-ln95048-117-p7s1w3 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + + + t-ln95048-117-p6s9w8 + discourse + 0 + 0 + opp + + t-ln95048-117-p7s1w2 + + + + v#v-w243f1 + + + + a#a-ln95048-117-p7s1w2 + + atom + však + PREC + t + 1 + + + + a#a-ln95048-117-p7s1w1 + + complex + historie + ACT + + n.denot + fem + sg + single + + c + 2 + + + t-ln95048-117-p5s1w41 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 3 + + + + a#a-ln95048-117-p7s1w5 + + complex + mytologie + PAT + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln95048-117-p7s1w4 + + complex + soukromý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + a#a-ln95048-117-p7s2 + 0 + + + + a#a-ln95048-117-p7s2w2 + + complex + být + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 2 + v#v-w243f1 + + + + a#a-ln95048-117-p7s2w1 + + complex + únor + ACT + + n.denot + inan + sg + single + + c + 1 + + + + a#a-ln95048-117-p7s2w3 + + complex + pochod + PAT + + n.denot + inan + sg + single + + f + 3 + + + + a#a-ln95048-117-p7s2w6 + + a#a-ln95048-117-p7s2w4 + + + complex + žumpa + DIR3 + basic + + n.denot + fem + sg + single + + f + 5 + + + + a#a-ln95048-117-p7s2w5 + + complex + komunistický + RSTR + + adj.denot + pos + neg0 + + t + 4 + + + t-ln95048-117-p6s4w9 + SPEC + + + + + + + + + + + + + a#a-ln95048-117-p7s3 + 0 + + + + a#a-ln95048-117-p7s2w2 + + complex + 1 + být + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + t + 2 + v#v-w243f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 1 + + + t-ln95048-117-p7s2w1 + SPEC + + + + + + a#a-ln95048-117-p7s3w1 + + complex + pochod + PAT + + n.denot + inan + sg + single + + t + 3 + + + + a#a-ln95048-117-p7s3w3 + + a#a-ln95048-117-p7s3w2 + + + complex + prapor + ACMP + basic + + n.denot + inan + pl + single + + f + 4 + + + + a#a-ln95048-117-p7s3w4 + + complex + rozevlátý + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + + + + + + a#a-ln95048-117-p7s4 + 0 + + + praskat ve švech + lexeme + + t-ln95048-117-p7s4w10 + t-ln95048-117-p7s4w12 + + + + + + + a#a-ln95048-117-p7s4w7 + + coap + #Comma + CONJ + 4 + + + t-ln95048-117-p7s3a0 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s4w1 + + + + + + + a#a-ln95048-117-p7s4w1 + + atom + a + PREC + t + 1 + + + + a#a-ln95048-117-p7s4w3 + + complex + létat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w1693f1 + + + + a#a-ln95048-117-p7s4w2 + + complex + tříska + ACT + + n.denot + fem + pl + single + + c + 2 + + + t-ln95048-117-p4s5w2 + SPEC + + + + + + + + a#a-ln95048-117-p7s4w6 + + complex + crčet + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 6 + v#v-w291f1 + + + + a#a-ln95048-117-p7s4w5 + + complex + krev + ACT + + n.denot + fem + sg + single + + c + 5 + + + t-ln95048-117-p4s5w5 + SPEC + + + + + + + + a#a-ln95048-117-p7s4w10 + + complex + praskat + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 9 + v#v-w4252f1 + + + + a#a-ln95048-117-p7s4w9 + + complex + koncentrák + ACT + + n.denot + inan + pl + single + + c + 7 + + + t-ln95048-117-p4s5w9 + SPEC + + + + + + a#a-ln95048-117-p7s4w8 + + complex + rudý + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-ln95048-117-p7s4w12 + + a#a-ln95048-117-p7s4w11 + + + dphr + ve_švech + DPHR + f + 10 + + + + + + + + + a#a-ln95048-117-p7s5 + 0 + + + + + a#a-ln95048-117-p7s5w22 + + + qcomplex + 1 + #EmpVerb + PRED + enunc + t + 16 + + + + a#a-ln95048-117-p7s5w3 + + complex + intelektuál + ACT + + n.denot + anim + pl + single + + c + 1 + + + + a#a-ln95048-117-p7s5w2 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + t-ln95048-117-p6s2w7 + SPEC + + + + + + a#a-ln95048-117-p7s5w1 + + complex + starý + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-ln95048-117-p7s5w5 + + complex + být + PAR + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 5 + v#v-w243f1 + + + + a#a-ln95048-117-p7s5w6 + + complex + #PersPron + ACT + 1 + + n.pron.def.pers + anim + pl + 3 + basic + + t + 4 + + + t-ln95048-117-p7s5w3 + SPEC + + + + + + a#a-ln95048-117-p7s5w8 + + coap + a + CONJ + 1 + 7 + + + + a#a-ln95048-117-p7s5w7 + + complex + sto + PAT + 1 + 1 + + n.quant.def + neut + sg + basic + + f + 6 + + + + a#a-ln95048-117-p7s5w9 + + complex + sto + PAT + 1 + 1 + + n.quant.def + neut + sg + basic + + f + 8 + + + + + + + + a#a-ln95048-117-p7s5w14 + + complex + dostat + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 11 + v#v-w732f1 + + + + a#a-ln95048-117-p7s5w12 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 9 + + t-ln95048-117-p7s5w3 + + + + + a#a-ln95048-117-p7s5w13 + + complex + tehdy + TWHEN + basic + + adv.pron.def + + t + 10 + + + t-ln95048-117-p7s3a1 + SPEC + + + + + + a#a-ln95048-117-p7s5w15 + + complex + nálepka + PAT + + n.denot + fem + sg + single + + f + 12 + + + + a#a-ln95048-117-p7s5w19 + + complex + reakce + ID + enunc + + + title + ln95048-117-p7s5w19 + + + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln95048-117-p7s5w18 + + complex + intelektuální + RSTR + + + title + ln95048-117-p7s5w19 + + + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-ln95048-117-p7s5w17 + + complex + zrádný + RSTR + + + title + ln95048-117-p7s5w19 + + + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + + + + a#a-ln95048-117-p7s5w23 + + complex + pryč + DIR3 + basic + + adv.denot.ngrad.nneg + + f + 17 + + + + + + + a#a-ln95048-117-p7s6 + 0 + + + běžící pás + lexeme + + t-ln95048-117-p7s6w5 + t-ln95048-117-p7s6w6 + + + + + + + a#a-ln95048-117-p7s6w7 + + complex + vycházet + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 2 + v#v-w7951f3 + + + + a#a-ln95048-117-p7s6w2 + + a#a-ln95048-117-p7s6w1 + + + complex + tisk + LOC + basic + + n.denot + inan + sg + single + + c + 1 + + + + a#a-ln95048-117-p7s6w7 + + a#a-ln95048-117-p7s6w3 + + + complex + 1 + vycházet + CPR + basic + + v + decl + ant + proc + it0 + act + asserted + + t + 4 + v#v-w7951f3 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 3 + + + t-ln95048-117-p7s6w20 + SPEC + + + + + + a#a-ln95048-117-p7s6w6 + + a#a-ln95048-117-p7s6w4 + + + complex + pás + MANN + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln95048-117-p7s6w5 + + complex + běžící + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + a#a-ln95048-117-p7s6w20 + + complex + zatykač + ACT + + + other + ln95048-117-p7s6w20 + + + + n.denot + inan + pl + single + + f + 8 + + + + a#a-ln95048-117-p7s6w8 + + complex + takzvaný + RSTR + + adj.denot + pos + neg0 + + t + 7 + + + + a#a-ln95048-117-p7s6w10 + + complex + kulturní + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln95048-117-p7s6w12 + + atom + také + RHEM + + + other + ln95048-117-p7s6w20 + + + 1 + f + 10 + + + + a#a-ln95048-117-p7s6w16 + + coap + #Comma + CONJ + 1 + 13 + + + + a#a-ln95048-117-p7s6w13 + + complex + filozofický + RSTR + 1 + 1 + + adj.denot + pos + neg0 + + f + 11 + + + + a#a-ln95048-117-p7s6w15 + + complex + historický + RSTR + 1 + 1 + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln95048-117-p7s6w17 + + complex + ekonomický + RSTR + 1 + 1 + + adj.denot + pos + neg0 + + f + 14 + + + + + + + + + + + a#a-ln95048-117-p7s7 + 0 + + + + a#a-ln95048-117-p7s7w4 + + coap + a + CONJ + 4 + + + + a#a-ln95048-117-p7s7w1 + + complex + uprázdnit + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + deagent + asserted + + f + 2 + v#v-w7238f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-ln95048-117-p7s7w3 + + complex + místo + PAT + + n.denot + neut + sg + single + + f + 3 + + + + + + a#a-ln95048-117-p7s7w7 + + complex + zabavit + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 7 + + + t-ln95048-117-p7s7w1 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s7w4 + + + + v#v-w8708f1 + + + + a#a-ln95048-117-p7s7w6 + + complex + milý + ACT + + n.denot + anim + pl + single + + t + 6 + segm + + + + a#a-ln95048-117-p7s7w5 + + complex + #PersPron + APP + + n.pron.def.pers + nr + pl + 1 + basic + + t + 5 + + + t-ln95048-117-p6s1a0 + SUB_SET + + + + + + + + a#a-ln95048-117-p7s7w17 + + coap + a + CONJ + 11 + + + + a#a-ln95048-117-p7s7w8 + + complex + kultura + PAT + 1 + + n.denot + fem + sg + single + + f + 8 + + + + a#a-ln95048-117-p7s7w10 + + complex + škola + PAT + 1 + + n.denot + fem + pl + single + + f + 9 + + + + a#a-ln95048-117-p7s7w12 + + complex + univerzita + PAT + 1 + + n.denot + fem + pl + single + + f + 10 + + + + a#a-ln95048-117-p7s7w14 + + complex + časopis + PAT + 1 + + n.denot + inan + pl + single + + f + 12 + + + t-ln95048-117-p7s6w2 + SET_SUB + + + + + + a#a-ln95048-117-p7s7w16 + + complex + peníze + PAT + 1 + + n.denot + inan + pl + single + + f + 13 + + + + a#a-ln95048-117-p7s7w18 + + complex + zámek + PAT + 1 + + n.denot + inan + pl + single + + f + 14 + + + + + + a#a-ln95048-117-p7s7w20 + + a#a-ln95048-117-p7s7w19 + + + complex + #PersPron + BEN + basic + + n.pron.def.pers + inher + inher + inher + inher + + f + 15 + + t-ln95048-117-p7s7w6 + + + + + + + + + + a#a-ln95048-117-p7s8 + 0 + + + + a#a-ln95048-117-p7s8w3 + + coap + a + CONJ + 4 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 1 + + + t-ln95048-117-p7s7w20 + SPEC + + + + + + a#a-ln95048-117-p7s8w1 + + complex + dostat + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w732f1 + + + + a#a-ln95048-117-p7s8w2 + + complex + co + PAT + + n.pron.indef + neut + sg + total1 + 3 + + f + 3 + + + + + + a#a-ln95048-117-p7s8w8 + + a#a-ln95048-117-p7s8w6 + a#a-ln95048-117-p7s8w7 + + + complex + dělit_se + PRED + enunc + 1 + + v + deb + ant + proc + it0 + act + asserted + + f + 8 + + + t-ln95048-117-p7s8w1 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s8w3 + + + + v#v-w419f1 + + + + a#a-ln95048-117-p7s8w5 + + a#a-ln95048-117-p7s8w4 + + + complex + kdo + ADDR + + n.pron.indef + anim + sg + negat + 3 + + t + 5 + + + qcomplex + 1 + #Gen + PAT + t + 6 + + + atom + 1 + #Neg + RHEM + f + 7 + + + + + + + + + a#a-ln95048-117-p7s9 + 0 + + + + a#a-ln95048-117-p7s9w2 + + a#a-ln95048-117-p7s9w1 + + + complex + slyšet + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 2 + v#v-w6192f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-ln95048-117-p7s9w3 + + atom + pouze + RHEM + f + 3 + + + + a#a-ln95048-117-p7s9w4 + + complex + #PersPron + PAT + + n.pron.def.pers + anim + pl + 3 + basic + + f + 4 + + + t-ln95048-117-p7s8a1 + SPEC + + + + + + + + + a#a-ln95048-117-p7s10 + 0 + + + time + + t-ln95048-117-p7s10w2 + t-ln95048-117-p7s10w3 + + + + + + + a#a-ln95048-117-p7s10w12 + + coap + a + CONJ + 11 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 1 + + + t-ln95048-117-p7s9w4 + SPEC + + + + + + a#a-ln95048-117-p7s10w9 + + complex + zavést + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 7 + v#v-w9273f2 + + + + a#a-ln95048-117-p7s10w3 + + a#a-ln95048-117-p7s10w1 + + + complex + rok + TWHEN + basic + + n.denot + neut + pl + single + + t + 2 + + + t-ln95048-117-p6s4w4 + PART_WHOLE + + + + + + a#a-ln95048-117-p7s10w2 + + complex + šedesát + RSTR + + adj.quant.def + ord + + f + 3 + + + + + + a#a-ln95048-117-p7s10w6 + + a#a-ln95048-117-p7s10w5 + + + complex + #PersPron + BEN + basic + + n.pron.def.pers + inher + inher + inher + inher + + t + 4 + + t-ln95048-117-p7s10a0 + + + + + a#a-ln95048-117-p7s10w7 + + complex + samotný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-ln95048-117-p7s10w4 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 6 + + t-ln95048-117-p7s10a0 + + + + + a#a-ln95048-117-p7s10w8 + + complex + postupný + MANN + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-ln95048-117-p7s10w11 + + complex + demokracie + PAT + + n.denot + fem + sg + single + + f + 9 + + + + a#a-ln95048-117-p7s10w10 + + complex + omezený + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + a#a-ln95048-117-p7s10w16 + + complex + začít + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 12 + + + t-ln95048-117-p7s10w9 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s10w12 + + + + v#v-w8756f1 + + + + a#a-ln95048-117-p7s10w17 + + complex + poučovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 17 + v#v-w4114f1 + + + + a#a-ln95048-117-p7s10w13 + + complex + zbytek + ADDR + + n.denot + inan + sg + single + + c + 13 + + + + a#a-ln95048-117-p7s10w15 + + complex + společnost + MAT + + n.denot + fem + sg + single + + f + 14 + + + t-ln95048-117-p7s10w4 + SUB_SET + + + + + + a#a-ln95048-117-p7s10w14 + + complex + ztrápený + RSTR + + adj.denot + pos + neg0 + + t + 15 + + + + + + + qcomplex + 1 + #Cor + ACT + t + 16 + + t-ln95048-117-p7s10a0 + + + + + a#a-ln95048-117-p7s10w20 + + a#a-ln95048-117-p7s10w19 + + + complex + demokracie + PAT + + n.denot + fem + sg + single + + f + 18 + + + t-ln95048-117-p6s9w5 + GEN + + + + + + + + + + + + + a#a-ln95048-117-p7s11 + 0 + + + + a#a-ln95048-117-p7s11w3 + + a#a-ln95048-117-p7s11w2 + + + complex + slyšet + PRED + enunc + + v + decl + ant + proc + it0 + act + asserted + + f + 3 + v#v-w6192f1 + + + + a#a-ln95048-117-p7s11w1 + + complex + opět + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + + a#a-ln95048-117-p7s11w4 + + atom + pouze + RHEM + f + 4 + + + + a#a-ln95048-117-p7s11w5 + + complex + #PersPron + PAT + + n.pron.def.pers + anim + pl + 3 + basic + + f + 5 + + + t-ln95048-117-p7s10w4 + SPEC + + + + + + + + + a#a-ln95048-117-p7s12 + 0 + + + time + + t-ln95048-117-p7s12w3 + t-ln95048-117-p7s12w4 + + + + + + + a#a-ln95048-117-p7s12w5 + + coap + #Colon + APPS + 5 + + + + a#a-ln95048-117-p7s12w2 + + complex + teze + DENOM + enunc + 1 + + n.denot + fem + sg + single + + f + 3 + + + + a#a-ln95048-117-p7s12w3 + + complex + rok + APP + + n.denot + inan + sg + single + + t + 1 + + + t-ln95048-117-p6s4w4 + SPEC + + + + + + a#a-ln95048-117-p7s12w4 + + complex + 1968 + RSTR + + n.quant.def + nr + nr + basic + + f + 2 + + + + + + a#a-ln95048-117-p7s12w1 + + complex + slavný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-ln95048-117-p7s12w12 + + complex + být + PRED + enunc + + + dsp + ln95048-117-p7s12w12 + + + 1 + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 10 + v#v-w243f1 + + + + a#a-ln95048-117-p7s12w9 + + a#a-ln95048-117-p7s12w7 + + + complex + být + AIM + + + dsp + ln95048-117-p7s12w12 + + + + v + decl + nil + proc + it0 + act + potential + + c + 7 + + + t-ln95048-117-p7s12w12 + discourse + 0 + 0 + purp + + a#a-ln95048-117-p7s12w7 + + + + v#v-w243f1 + + + qcomplex + 1 + #Gen + ACT + + + dsp + ln95048-117-p7s12w12 + + + t + 6 + + + + a#a-ln95048-117-p7s12w10 + + complex + jasný + PAT + + + dsp + ln95048-117-p7s12w12 + + + + adj.denot + pos + neg0 + + f + 8 + + + + + complex + 1 + #PersPron + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + nr + pl + 1 + basic + + t + 9 + + + t-ln95048-117-p7s11w5 + GEN + + + + + + a#a-ln95048-117-p7s12w13 + + complex + komunista + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + anim + pl + single + + f + 11 + + + + + + + + + a#a-ln95048-117-p7s13 + 0 + + + + a#a-ln95048-117-p7s13w4 + + a#a-ln95048-117-p7s13w2 + a#a-ln95048-117-p7s13w3 + + + complex + dovolit_si + PRED + enunc + + + dsp + ln95048-117-p7s12w12 + + + 1 + + v + poss + sim + cpl + it0 + act + asserted + + f + 3 + v#v-w790f1 + + + + a#a-ln95048-117-p7s13w1 + + complex + demokracie + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + fem + sg + single + + c + 1 + + + t-ln95048-117-p7s10w20 + GEN + + + + + complex + 1 + #PersPron + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + nr + pl + 1 + basic + + t + 2 + + + t-ln95048-117-p7s12a0 + GEN + + + + + + a#a-ln95048-117-p7s13w13 + + coap + a + CONJ + + + dsp + ln95048-117-p7s12w12 + + + 11 + + + t-ln95048-117-p7s13w4 + discourse + 0 + 0 + reason + + a#a-ln95048-117-p7s13w6 + + + + + + + a#a-ln95048-117-p7s13w7 + + a#a-ln95048-117-p7s13w6 + + + complex + mít + CAUS + + + dsp + ln95048-117-p7s12w12 + + + 1 + + v + hrt + sim + proc + it0 + act + asserted + + f + 5 + v#v-w1855f3 + + + complex + 1 + #PersPron + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + nr + pl + 1 + basic + + t + 4 + + + t-ln95048-117-p7s13a0 + GEN + + + + + + a#a-ln95048-117-p7s13w12 + + complex + program + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + inan + sg + single + + f + 6 + + + + a#a-ln95048-117-p7s13w9 + + coap + a + CONJ + + + dsp + ln95048-117-p7s12w12 + + + 8 + + + + a#a-ln95048-117-p7s13w8 + + complex + dobrý + RSTR + + + dsp + ln95048-117-p7s12w12 + + + 1 + + adj.denot + sup + neg0 + + f + 7 + + + + a#a-ln95048-117-p7s13w11 + + complex + spravedlivý + RSTR + + + dsp + ln95048-117-p7s12w12 + + + 1 + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln95048-117-p7s13w10 + + complex + historický + REG + + + dsp + ln95048-117-p7s12w12 + + + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + + + + a#a-ln95048-117-p7s13w16 + + a#a-ln95048-117-p7s13w6 + + + complex + milovat + CAUS + + + dsp + ln95048-117-p7s12w12 + + + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + + + t-ln95048-117-p7s13w7 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s13w13 + + + + v#v-w1835f1 + + + + a#a-ln95048-117-p7s13w14 + + complex + národ + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + inan + sg + single + + c + 12 + + + t-ln95048-117-p7s5w2 + REST + + + + + + a#a-ln95048-117-p7s13w15 + + complex + #PersPron + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + anim + pl + 1 + basic + + t + 13 + + + t-ln95048-117-p7s13a1 + GEN + + + + + + + + + + + + + a#a-ln95048-117-p7s14 + 0 + + + + a#a-ln95048-117-p7s14w4 + + complex + přijít + PRED + enunc + + + dsp + ln95048-117-p7s12w12 + + + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 5 + + + t-ln95048-117-p7s13w4 + discourse + 0 + 0 + conj + + t-ln95048-117-p7s14w3 + + + + v#v-w5158f2 + + + + a#a-ln95048-117-p7s14w3 + + atom + stejně + PREC + + + dsp + ln95048-117-p7s12w12 + + + t + 1 + + + + a#a-ln95048-117-p7s14w2 + + a#a-ln95048-117-p7s14w1 + + + complex + moc + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + fem + sg + single + + c + 2 + + + complex + 1 + #PersPron + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + nr + pl + 1 + basic + + t + 3 + + + t-ln95048-117-p7s13w15 + GEN + + + + + atom + 1 + #Neg + RHEM + + + dsp + ln95048-117-p7s12w12 + + + f + 4 + + + + a#a-ln95048-117-p7s14w8 + + a#a-ln95048-117-p7s14w6 + + + complex + vyhrát + CAUS + + + dsp + ln95048-117-p7s12w12 + + + + v + decl + post + cpl + it0 + act + asserted + + f + 8 + + + t-ln95048-117-p7s14w4 + discourse + 0 + 0 + reason + + a#a-ln95048-117-p7s14w6 + + + + v#v-w7929f2 + + + + a#a-ln95048-117-p7s14w7 + + complex + volba + PAT + + + dsp + ln95048-117-p7s12w12 + + + + n.denot + fem + pl + single + + c + 6 + + + complex + 1 + #PersPron + ACT + + + dsp + ln95048-117-p7s12w12 + + + + n.pron.def.pers + nr + pl + 1 + basic + + t + 7 + + + t-ln95048-117-p7s14a1 + GEN + + + + + + + + + + + a#a-ln95048-117-p7s15 + 0 + + + time + + t-ln95048-117-p7s15w13 + t-ln95048-117-p7s15w14 + + + + + + + a#a-ln95048-117-p7s15w11 + + coap + nýbrž + ADVS + 9 + + + + a#a-ln95048-117-p7s15w1 + + complex + být + COND + + v + decl + nil + proc + it0 + act + nil + + f + 2 + v#v-w243f2 + + + atom + 1 + #Neg + RHEM + f + 1 + + + + a#a-ln95048-117-p7s15w3 + + complex + tank + ACT + + n.denot + inan + pl + single + + f + 3 + + + + a#a-ln95048-117-p7s15w2 + + complex + ruský + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + t-ln95048-117-p6s4w11 + SPEC + + + + + + + + + + a#a-ln95048-117-p7s15w5 + + complex + vystřízlivění + ACT + + n.denot.neg + neut + sg + single + neg0 + + c + 5 + + + + a#a-ln95048-117-p7s15w7 + + a#a-ln95048-117-p7s15w6 + + + complex + přijít + PRED + enunc + 1 + + v + decl + nil + cpl + it0 + act + potential + + f + 7 + v#v-w5158f3 + + + atom + 1 + #Neg + RHEM + f + 6 + + + + a#a-ln95048-117-p7s15w9 + + a#a-ln95048-117-p7s15w8 + + + complex + listopad + TWHEN + after + + n.denot + inan + sg + single + + f + 8 + + + t-ln95048-117-p6s9w1 + SPEC + + + + + + + + a#a-ln95048-117-p7s15w7 + + a#a-ln95048-117-p7s15w6 + + + complex + 1 + přijít + PRED + enunc + 1 + + v + decl + nil + cpl + it0 + act + potential + + t + 10 + + + t-ln95048-117-p7s15w7 + discourse + 0 + 0 + opp + + t-ln95048-117-p7s15w11 + + + + v#v-w5158f3 + + + + a#a-ln95048-117-p7s15w15 + + complex + brzy + TWHEN + basic + + adv.denot.grad.nneg + comp + + f + 11 + + + + a#a-ln95048-117-p7s15w14 + + a#a-ln95048-117-p7s15w12 + + + complex + rok + DIFF + + n.denot + neut + pl + single + + t + 12 + + + + a#a-ln95048-117-p7s15w13 + + complex + dvacet + RSTR + + adj.quant.def + basic + + f + 13 + + + + + + + + + + + + + a#a-ln95048-117-p8s1 + 0 + + + lexeme + + t-ln95048-117-p8s1w7 + t-ln95048-117-p8s1w8 + + + + + + + a#a-ln95048-117-p8s1w10 + + a#a-ln95048-117-p8s1w9 + + + complex + být + PRED + enunc + + v + poss + sim + proc + it0 + act + asserted + + f + 8 + v#v-w243f1 + + + + a#a-ln95048-117-p8s1w1 + + complex + jádro + PAT + + n.denot + neut + sg + single + + c + 1 + + + + a#a-ln95048-117-p8s1w2 + + complex + trauma + APP + + n.denot + neut + sg + single + + f + 7 + + + + a#a-ln95048-117-p8s1w4 + + complex + člověk + APP + + n.denot + anim + pl + single + + t + 5 + + + t-ln95048-117-p7s11w5 + SET_SUB + + + + + + a#a-ln95048-117-p8s1w6 + + a#a-ln95048-117-p8s1w5 + + + complex + okruh + DIR1 + basic + + n.denot + inan + sg + single + + t + 4 + + + + a#a-ln95048-117-p8s1w8 + + complex + noviny + APP + + n.denot + fem + pl + single + + t + 3 + + + + a#a-ln95048-117-p8s1w7 + + complex + Literární + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + + + + a#a-ln95048-117-p8s1w3 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 6 + + + + + + + + + + a#a-ln95048-117-p8s1w14 + + atom + + RHEM + f + 9 + + + + a#a-ln95048-117-p8s1w16 + + a#a-ln95048-117-p8s1w13 + a#a-ln95048-117-p8s1w15 + a#a-ln95048-117-p8s1w11 + + + complex + slyšet + ACT + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w6192f1 + + + qcomplex + 1 + #Gen + ACT + t + 10 + + + atom + 1 + #Neg + RHEM + f + 11 + + + + a#a-ln95048-117-p8s1w17 + + atom + pouze + RHEM + f + 13 + + + + a#a-ln95048-117-p8s1w18 + + complex + #PersPron + PAT + + n.pron.def.pers + anim + pl + 3 + basic + + f + 14 + + + t-ln95048-117-p8s1w4 + SPEC + + + + + + + + + + + a#a-ln95048-117-p8s2 + 0 + + + + a#a-ln95048-117-p8s2w11 + + coap + a + CONJ + 8 + + + + a#a-ln95048-117-p8s2w2 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w243f2 + + + + a#a-ln95048-117-p8s2w1 + + complex + + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 1 + + + atom + 1 + #Neg + RHEM + f + 2 + + + + a#a-ln95048-117-p8s2w4 + + complex + školit + ACT + + v + decl + nil + proc + it0 + act + nil + + f + 5 + v#v-w6729f2 + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-ln95048-117-p8s2w3 + + complex + kdo + ADDR + + n.pron.indef + anim + sg + inter + 3 + + f + 6 + + + + a#a-ln95048-117-p8s2w6 + + a#a-ln95048-117-p8s2w5 + + + complex + demokracie + PAT + + n.denot + fem + sg + single + + f + 7 + + + t-ln95048-117-p7s13w1 + GEN + + + + + + + + + + a#a-ln95048-117-p8s2w10 + + complex + žít + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + v#v-w10030f3 + + + + a#a-ln95048-117-p8s2w8 + + complex + národ + ACT + + n.denot + inan + sg + single + + t + 9 + + + t-ln95048-117-p7s13w14 + GEN + + + + + + a#a-ln95048-117-p8s2w9 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 10 + + + t-ln95048-117-p8s2w6 + GEN + + + + + + + + a#a-ln95048-117-p8s2w13 + + complex + být + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 13 + + + t-ln95048-117-p8s2w10 + discourse + 0 + 0 + conj + + t-ln95048-117-p8s2w11 + + + + v#v-w243f1 + + + + a#a-ln95048-117-p8s2w12 + + complex + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 12 + + + t-ln95048-117-p8s1w18 + SPEC + + + + + + a#a-ln95048-117-p8s2w18 + + complex + součást + PAT + + n.denot + fem + sg + single + + f + 15 + + + + a#a-ln95048-117-p8s2w17 + + complex + #PersPron + MAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 14 + + + t-ln95048-117-p8s2w9 + GEN + + + + + + a#a-ln95048-117-p8s2w15 + + complex + pouhý + RSTR + + + other + ln95048-117-p8s2w15 + + + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + a#a-ln95048-117-p8s3 + 0 + + + + a#a-ln95048-117-p8s3w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-ln95048-117-p8s3w2 + + complex + doba + ACT + + n.denot + fem + sg + single + + t + 2 + exoph + + + + a#a-ln95048-117-p8s3w1 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 1 + + + + + atom + 1 + #Neg + RHEM + f + 3 + + + + a#a-ln95048-117-p8s3w3 + + atom + jistě + MOD + f + 5 + + + + a#a-ln95048-117-p8s3w5 + + complex + ideální + PAT + + adj.denot + pos + neg0 + + f + 6 + + + + + + + a#a-ln95048-117-p8s4 + 0 + + + time + + t-ln95048-117-p8s4w25 + t-ln95048-117-p8s4w26 + + + + + + + a#a-ln95048-117-p8s4w22 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 19 + + + t-ln95048-117-p8s3w4 + discourse + 0 + 0 + opp + + t-ln95048-117-p8s4w19 + + + + v#v-w1855f1 + + + + a#a-ln95048-117-p8s4w19 + + atom + však + PREC + t + 1 + + + + a#a-ln95048-117-p8s4w2 + + complex + generace + ACT + + n.denot + fem + sg + single + + c + 2 + + + + a#a-ln95048-117-p8s4w1 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-ln95048-117-p8s4w4 + + complex + narozený + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln95048-117-p8s4w6 + + a#a-ln95048-117-p8s4w5 + + + complex + komunismus + DIR3 + basic + + n.denot + inan + sg + single + + f + 5 + + + t-ln95048-117-p7s2w5 + SPEC + + + + + + a#a-ln95048-117-p8s4w10 + + complex + vybrat + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 10 + v#v-w7796f1 + + + + a#a-ln95048-117-p8s4w8 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-ln95048-117-p8s4w6 + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 7 + + + t-ln95048-117-p8s4w2 + SPEC + + + + + + a#a-ln95048-117-p8s4w9 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 8 + + t-ln95048-117-p8s4a2 + + + + atom + 1 + #Neg + RHEM + f + 9 + + + + + + + + + + a#a-ln95048-117-p8s4w17 + + complex + žít + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 16 + v#v-w10030f3 + + + + a#a-ln95048-117-p8s4w12 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 11 + + t-ln95048-117-p8s4w2 + + + + + a#a-ln95048-117-p8s4w15 + + complex + doba + PAT + + n.denot + fem + sg + single + + t + 13 + + + t-ln95048-117-p8s3w2 + SPEC + + + + + + a#a-ln95048-117-p8s4w13 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 12 + + + + a#a-ln95048-117-p8s4w14 + + complex + vzrušený + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + a#a-ln95048-117-p8s4w16 + + atom + především + RHEM + f + 15 + + + + + + + + a#a-ln95048-117-p8s4w21 + + a#a-ln95048-117-p8s4w20 + + + complex + #PersPron + LOC + behind + + n.pron.def.pers + inher + inher + inher + inher + + t + 17 + + t-ln95048-117-p8s4w2 + + + + atom + 1 + #Neg + RHEM + f + 18 + + + + a#a-ln95048-117-p8s4w24 + + complex + skutek + PAT + + n.denot + inan + pl + single + + f + 20 + + + + a#a-ln95048-117-p8s4w26 + + complex + rok + APP + + n.denot + neut + pl + single + + t + 21 + + + + a#a-ln95048-117-p8s4w25 + + complex + padesát + RSTR + + adj.quant.def + ord + + f + 22 + + + + + + a#a-ln95048-117-p8s4w23 + + complex + drastický + RSTR + + adj.denot + pos + neg0 + + f + 23 + + + + + + + + + a#a-ln95048-117-p8s5 + 0 + + + + a#a-ln95048-117-p8s5w3 + + complex + vyhazovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w7881f1 + + + + a#a-ln95048-117-p8s5w1 + + complex + kdo + PAT + + n.pron.indef + anim + sg + negat + 3 + + t + 1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 2 + + + t-ln95048-117-p8s4w9 + SPEC + + + + + + a#a-ln95048-117-p8s5w2 + + complex + kde + DIR1 + basic + + adv.pron.indef + negat + + t + 3 + + + atom + 1 + #Neg + RHEM + f + 4 + + + + + + + a#a-ln95048-117-p8s6 + 0 + + + + a#a-ln95048-117-p8s6w2 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + v#v-w243f1 + + + + a#a-ln95048-117-p8s6w1 + + complex + listopad + ACT + + n.denot + inan + sg + single + + c + 1 + + + t-ln95048-117-p7s15w9 + SPEC + + + + + + a#a-ln95048-117-p8s6w3 + + atom + také + RHEM + f + 3 + + + + a#a-ln95048-117-p8s6w6 + + coap + a + CONJ + 6 + + + + a#a-ln95048-117-p8s6w4 + + complex + #PersPron + AUTH + + n.pron.def.pers + fem + sg + 3 + basic + + t + 4 + + + t-ln95048-117-p8s5a1 + SPEC + + + + + + a#a-ln95048-117-p8s6w5 + + complex + dílo + PAT + 1 + + n.denot + neut + sg + single + + f + 5 + + + + a#a-ln95048-117-p8s6w7 + + complex + zásluha + PAT + 1 + + n.denot + fem + sg + single + + f + 7 + + + + + + + + + a#a-ln95048-117-p9s1 + 0 + + + lexeme + + t-ln95048-117-p9s1w1 + t-ln95048-117-p9s1w2 + + + + + + + a#a-ln95048-117-p9s1w10 + + a#a-ln95048-117-p9s1w8 + + + complex + dát_se + PRED + enunc + + v + poss + ant + cpl + it0 + act + asserted + + f + 8 + v#v-w371f5 + + + + a#a-ln95048-117-p9s1w3 + + coap + #Comma + APPS + 3 + + + t-ln95048-117-p8s1w8 + SPEC + + + + + + a#a-ln95048-117-p9s1w2 + + complex + noviny + ACT + 1 + + n.denot + fem + pl + single + + c + 2 + + + + a#a-ln95048-117-p9s1w1 + + complex + Literární + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + a#a-ln95048-117-p9s1w4 + + complex + týdeník + ACT + 1 + + n.denot + inan + sg + single + + c + 4 + + + + a#a-ln95048-117-p9s1w6 + + complex + minulost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 5 + + + + a#a-ln95048-117-p9s1w5 + + complex + světlý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + + a#a-ln95048-117-p9s1w9 + + complex + teď + TWHEN + basic + + adv.pron.def + + t + 7 + + + t-ln95048-117-p8s4w15 + SPEC + + + + + + a#a-ln95048-117-p9s1w11 + + dphr + cestou + DPHR + f + 9 + + + + a#a-ln95048-117-p9s1w13 + + complex + typ + RSTR + + n.denot + inan + sg + single + + f + 10 + + + + a#a-ln95048-117-p9s1w14 + + complex + lůzovitost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 11 + + + + a#a-ln95048-117-p9s1w12 + + complex + zvláštní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + + + + a#a-ln95048-117-p9s2 + 0 + + + + a#a-ln95048-117-p9s2w8 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w1855f4 + + + + a#a-ln95048-117-p9s2w1 + + a#a-ln95048-117-p9s2w3 + + + complex + jít + COND + + v + decl + post + proc + it0 + act + asserted + + t + 3 + + + t-ln95048-117-p9s2w8 + discourse + 0 + 0 + cond + + a#a-ln95048-117-p9s2w3 + + + + v#v-w1339f11 + + + + a#a-ln95048-117-p9s2w4 + + complex + ten + ACT + + n.pron.def.demon + neut + sg + + t + 1 + segm + + + + a#a-ln95048-117-p9s2w5 + + complex + takto + MANN + + adv.denot.ngrad.nneg + + t + 2 + segm + + + + a#a-ln95048-117-p9s2w6 + + dphr + dál + DPHR + f + 4 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + pl + 3 + basic + + t + 5 + + + t-ln95048-117-p9s1w3 + SPEC + + + + + + a#a-ln95048-117-p9s2w10 + + complex + šance + CPHR + + n.denot + fem + sg + single + + f + 8 + v#v-w6702f1 + + + qcomplex + 1 + #QCor + ACT + t + 7 + + t-ln95048-117-p9s2a0 + + + + + a#a-ln95048-117-p9s2w9 + + complex + dobrý + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln95048-117-p9s2w11 + + complex + získat + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 11 + v#v-w9501f2 + + + qcomplex + 1 + #Cor + ACT + t + 10 + + t-ln95048-117-p9s2a0 + + + + + a#a-ln95048-117-p9s2w12 + + complex + definitivní + MANN + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln95048-117-p9s2w13 + + complex + image + PAT + + n.denot + nr + nr + single + + f + 13 + + + + a#a-ln95048-117-p9s2w14 + + complex + odkladiště + ID + enunc + + n.denot + neut + sg + single + + f + 14 + + + + a#a-ln95048-117-p9s2w16 + + complex + generace + APP + + n.denot + fem + sg + single + + f + 15 + + + t-ln95048-117-p8s4w12 + CONTRAST + + + t-ln95048-117-p8s2w12 + SUB_SET + + + + + + a#a-ln95048-117-p9s2w15 + + complex + ztracený + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + + + + + + + a#a-ln95048-117-p9s3 + 0 + + + + a#a-ln95048-117-p9s2w11 + + complex + 1 + získat + PRED + enunc + + v + decl + nil + cpl + it0 + act + nil + + t + 2 + v#v-w9501f2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + pl + 3 + basic + + t + 1 + + + t-ln95048-117-p9s2a1 + SPEC + + + + + + a#a-ln95048-117-p9s3w1 + + complex + image + PAT + + n.denot + nr + nr + single + + f + 3 + + + + a#a-ln95048-117-p9s3w3 + + complex + stanice + ID + enunc + + n.denot + fem + sg + single + + f + 4 + + + + a#a-ln95048-117-p9s3w2 + + complex + přestupní + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln95048-117-p9s3w5 + + a#a-ln95048-117-p9s3w4 + + + complex + minulost + DIR3 + basic + + n.denot.neg + fem + sg + single + neg0 + + f + 6 + + + + + + + + + + + diff --git a/demo/pdt_train/ln95048_117.txt b/demo/pdt_train/ln95048_117.txt new file mode 100644 index 00000000..6c61d1b3 --- /dev/null +++ b/demo/pdt_train/ln95048_117.txt @@ -0,0 +1,19 @@ +Neštěstí jedné generace + +V šedesátých letech si pro sebe samotné postupně zavedli omezenou demokracii a zbytek ztrápené společnosti začali poučovat - o demokracii. Opět bylo slyšet pouze je. + +V posledních měsících, týdnech a dnech - stále častěji - můžeme číst, že v tomto státě není už nic, co by nehnisalo, kromě Literárních novin. Ztráta politické moci, značný úbytek politického vlivu a v neposlední řadě absence uměleckého programu poté, co se demokracie v této zemi stala realitou, vede některé úctyhodné muže a ženy z okruhu výše zmíněného týdeníku k bezradnému a nekonzistentnímu poštěkávání na všechno, co se hýbe. Také na Lidové noviny. Žluči už bylo vylito tolik - a přibývá jí spíš řadou geometrickou - že nezbývá než hozenou rukavici zvednout a vést polemiku, již jsme si nepřáli vést. Kompenzují-li někteří lidé svou frustraci kopáním kolem sebe, nejsme povinni je chlácholit tím, že tyto rány budeme trpně snášet. + +Politik, publicista, literát - byť třeba člověk jakkoli zasloužilý - si těžko může osobovat právo být středobodem morálního vesmíru a chtít, aby morálka byla jím samým poměřována. Přesto se nyní objevilo více lidí, kteří tuto ambici v sobě nosí a podle toho také píšou. V demokracii však těžko jeden majitel pravdy a morálky může tvořit pravidla hry, vymezovat mantinely morálky, rozdávat rány a "moudře" soudcovat. To všechno už se v této zemi vyzkoušelo. A třísky létaly, krev crčela, rudé koncentráky praskaly ve švech. + +Dnešní smutné výročí "vítězného února" je vůbec dobrým důvodem připomenout některým současným mravokárcům - kteří tak pravidelně a neodbytně zvrací nad tímto "zkaženým" národem (jenž jich jako by snad ani nebyl hoden) - že dějiny nezačaly v roce 1968. Je s podivem, že i takovou trivialitu je nutno připomínat. Jsme-li však svědky toho, že kritéria morálky a dokonce i dějinné události jsou přizpůsobovány vlastnímu životopisu, nelze se tomu vyhnout. + +Jsouce svědky řady pozoruhodných dialogů i monologů, jsouce čtenáři pozoruhodných pamětí, můžeme naskicovat, jak takový příběh opravdového člověka vypadá. Slušný a mravný člověk v této zemi je ten, kdo se narodil ve staré komunistické rodině, opravdově se nadchl a miloval revoluci a vše důležité se naučil na gymnáziu v Uherském Hradišti. + +Vstup do strany, postupné zklamání, posilované jak ubíhajícím časem, tak tím, že s rozšiřujícím se obzorem se vkrádaly pochybnosti. Komunistická kverulace, osmašedesátý s nadějí na opravu komunismu, ruský vpád a Dubčekova zrada. Vnitrostranická porážka, čistky, odchod či vyhazov. Normalizace. Ústrky, někdy i žalář a odvážný odpor proti totalitnímu režimu. Pak druhá naděje Gorbačovovy perestrojky. Listopad, nadšení, demokracie třetích cest a posléze krok za krokem stupňující se hysterie. Nezvládnutelná?! + +Historie však není soukromou mytologií. Únor byl pochodem do komunistické žumpy. Pochodem s prapory rozevlátými. A třísky létaly, krev crčela, rudé koncentráky praskaly ve švech. Staří čeští intelektuálové (byly jich sta a sta), kteří tehdy dostali nálepku "zrádné intelektuální reakce", museli pryč. V tisku jako na běžícím pásu vycházely tzv. kulturní (také filozofické, historické, ekonomické) "zatykače". Uprázdnilo se místo a naši milí zabavili kulturu, školy, univerzity, časopisy, peníze a zámky pro sebe. Dostali všechno a s nikým se nemuseli dělit. Bylo slyšet pouze je. V šedesátých letech si pro sebe samotné postupně zavedli omezenou demokracii a zbytek ztrápené společnosti začali poučovat - o demokracii. Opět bylo slyšet pouze je. Slavná teze roku 1968: "Aby bylo jasno, jsme komunisti. Demokracii si můžeme dovolit, protože máme nejlepší a hiostoricky spravedlivý program a národ nás miluje. O moc stejně nepřijdeme, protože volby vyhrajeme." Nebýt ruských tanků, vystřízlivění by nepřišlo po listopadu, nýbrž o dvacet let dřív. + +Jádrem traumatu některých lidí z okruhu Literárních novin může být to, že už není slyšet pouze je. Už není koho školit o demokracii, národ ji žije a oni jsou "pouhou" její součástí. Tato doba jistě není ideální. Nová generace, narozená do komunismu, který si nevybrala, jež tuto vzrušenou dobu především žije, však za sebou nemá drastické skutky padesátých let. Nikoho odnikud nevyhazuje. Listopad je také jejím dílem a zásluhou. + +Literární noviny, týdeník světlé minulosti, se nyní daly cestou zvláštního typu lůzovitosti. Půjde-li to takto dál, mají dobrou šanci získat definitivně image odkladiště ztracené generace. Image přestupní stanice do minulosti. \ No newline at end of file diff --git a/demo/pdt_train/ln95048_117.w b/demo/pdt_train/ln95048_117.w new file mode 100644 index 00000000..bc4697a8 --- /dev/null +++ b/demo/pdt_train/ln95048_117.w @@ -0,0 +1,2623 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1995 +<authname>y +<opus>ln95048 +<id>117 + + + + 1 + + Neštěstí + + + jedné + + + generace + + + + 2 + + V + + + šedesátých + + + letech + + + si + + + pro + + + sebe + + + samotné + + + postupně + + + zavedli + + + omezenou + + + demokracii + + + a + + + zbytek + + + ztrápené + + + společnosti + + + začali + + + poučovat + + + - + + + o + + + demokracii + 1 + + + . + + + Opět + + + bylo + + + slyšet + + + pouze + + + je + 1 + + + . + + + + 3 + + V + + + posledních + + + měsících + 1 + + + , + + + týdnech + + + a + + + dnech + + + - + + + stále + + + častěji + + + - + + + můžeme + + + číst + 1 + + + , + + + že + + + v + + + tomto + + + státě + + + není + + + + + + nic + 1 + + + , + + + co + + + by + + + nehnisalo + 1 + + + , + + + kromě + + + Literárních + + + novin + 1 + + + . + + + Ztráta + + + politické + + + moci + 1 + + + , + + + značný + + + úbytek + + + politického + + + vlivu + + + a + + + v + + + neposlední + + + řadě + + + absence + + + uměleckého + + + programu + + + poté + 1 + + + , + + + co + + + se + + + demokracie + + + v + + + této + + + zemi + + + stala + + + realitou + 1 + + + , + + + vede + + + některé + + + úctyhodné + + + muže + + + a + + + ženy + + + z + + + okruhu + + + výše + + + zmíněného + + + týdeníku + + + k + + + bezradnému + + + a + + + nekonzistentnímu + + + poštěkávání + + + na + + + všechno + 1 + + + , + + + co + + + se + + + hýbe + 1 + + + . + + + Také + + + na + + + Lidové + + + noviny + 1 + + + . + + + Žluči + + + + + + bylo + + + vylito + + + tolik + + + - + + + a + + + přibývá + + + + + + spíš + + + řadou + + + geometrickou + + + - + + + že + + + nezbývá + + + než + + + hozenou + + + rukavici + + + zvednout + + + a + + + vést + + + polemiku + 1 + + + , + + + již + + + jsme + + + si + + + nepřáli + + + vést + 1 + + + . + + + Kompenzují + 1 + + + - + 1 + + + li + + + někteří + + + lidé + + + svou + + + frustraci + + + kopáním + + + kolem + + + sebe + 1 + + + , + + + nejsme + + + povinni + + + je + + + chlácholit + + + tím + 1 + + + , + + + že + + + tyto + + + rány + + + budeme + + + trpně + + + snášet + 1 + + + . + + + + 4 + + Politik + 1 + + + , + + + publicista + 1 + + + , + + + literát + + + - + + + byť + + + třeba + + + člověk + + + jakkoli + + + zasloužilý + + + - + + + si + + + těžko + + + může + + + osobovat + + + právo + + + být + + + středobodem + + + morálního + + + vesmíru + + + a + + + chtít + 1 + + + , + + + aby + + + morálka + + + byla + + + jím + + + samým + + + poměřována + 1 + + + . + + + Přesto + + + se + + + nyní + + + objevilo + + + více + + + lidí + 1 + + + , + + + kteří + + + tuto + + + ambici + + + v + + + sobě + + + nosí + + + a + + + podle + + + toho + + + také + + + píšou + 1 + + + . + + + V + + + demokracii + + + však + + + těžko + + + jeden + + + majitel + + + pravdy + + + a + + + morálky + + + může + + + tvořit + + + pravidla + + + hry + 1 + + + , + + + vymezovat + + + mantinely + + + morálky + 1 + + + , + + + rozdávat + + + rány + + + a + + + " + 1 + + + moudře + 1 + + + " + + + soudcovat + 1 + + + . + + + To + + + všechno + + + + + + se + + + v + + + této + + + zemi + + + vyzkoušelo + 1 + + + . + + + A + + + třísky + + + létaly + 1 + + + , + + + krev + + + crčela + 1 + + + , + + + rudé + + + koncentráky + + + praskaly + + + ve + + + švech + 1 + + + . + + + + 5 + + Dnešní + + + smutné + + + výročí + + + " + 1 + + + vítězného + + + února + 1 + + + " + + + je + + + vůbec + + + dobrým + + + důvodem + + + připomenout + + + některým + + + současným + + + mravokárcům + + + - + + + kteří + + + tak + + + pravidelně + + + a + + + neodbytně + + + zvrací + + + nad + + + tímto + + + " + 1 + + + zkaženým + 1 + + + " + + + národem + + + ( + 1 + + + jenž + + + jich + + + jako + + + by + + + snad + + + ani + + + nebyl + + + hoden + 1 + + + ) + + + - + + + že + + + dějiny + + + nezačaly + + + v + + + roce + + + 1968 + 1 + + + . + + + Je + + + s + + + podivem + 1 + + + , + + + že + + + i + + + takovou + + + trivialitu + + + je + + + nutno + + + připomínat + 1 + + + . + + + Jsme + 1 + + + - + 1 + + + li + + + však + + + svědky + + + toho + 1 + + + , + + + že + + + kritéria + + + morálky + + + a + + + dokonce + + + i + + + dějinné + + + události + + + jsou + + + přizpůsobovány + + + vlastnímu + + + životopisu + 1 + + + , + + + nelze + + + se + + + tomu + + + vyhnout + 1 + + + . + + + + 6 + + Jsouce + + + svědky + + + řady + + + pozoruhodných + + + dialogů + + + i + + + monologů + 1 + + + , + + + jsouce + + + čtenáři + + + pozoruhodných + + + pamětí + 1 + + + , + + + můžeme + + + naskicovat + 1 + + + , + + + jak + + + takový + + + příběh + + + opravdového + + + člověka + + + vypadá + 1 + + + . + + + Slušný + + + a + + + mravný + + + člověk + + + v + + + této + + + zemi + + + je + + + ten + 1 + + + , + + + kdo + + + se + + + narodil + + + ve + + + staré + + + komunistické + + + rodině + 1 + + + , + + + opravdově + + + se + + + nadchl + + + a + + + miloval + + + revoluci + + + a + + + vše + + + důležité + + + se + + + naučil + + + na + + + gymnáziu + + + v + + + Uherském + + + Hradišti + 1 + + + . + + + + 6 + + Vstup + + + do + + + strany + 1 + + + , + + + postupné + + + zklamání + 1 + + + , + + + posilované + + + jak + + + ubíhajícím + + + časem + 1 + + + , + + + tak + + + tím + 1 + + + , + + + že + + + s + + + rozšiřujícím + + + se + + + obzorem + + + se + + + vkrádaly + + + pochybnosti + 1 + + + . + + + Komunistická + + + kverulace + 1 + + + , + + + osmašedesátý + + + s + + + nadějí + + + na + + + opravu + + + komunismu + 1 + + + , + + + ruský + + + vpád + + + a + + + Dubčekova + + + zrada + 1 + + + . + + + Vnitrostranická + + + porážka + 1 + + + , + + + čistky + 1 + + + , + + + odchod + + + či + + + vyhazov + 1 + + + . + + + Normalizace + 1 + + + . + + + Ústrky + 1 + + + , + + + někdy + + + i + + + žalář + + + a + + + odvážný + + + odpor + + + proti + + + totalitnímu + + + režimu + 1 + + + . + + + Pak + + + druhá + + + naděje + + + Gorbačovovy + + + perestrojky + 1 + + + . + + + Listopad + 1 + + + , + + + nadšení + 1 + + + , + + + demokracie + + + třetích + + + cest + + + a + + + posléze + + + krok + + + za + + + krokem + + + stupňující + + + se + + + hysterie + 1 + + + . + + + Nezvládnutelná + 1 + + + ? + 1 + + + ! + + + + 7 + + Historie + + + však + + + není + + + soukromou + + + mytologií + 1 + + + . + + + Únor + + + byl + + + pochodem + + + do + + + komunistické + + + žumpy + 1 + + + . + + + Pochodem + + + s + + + prapory + + + rozevlátými + 1 + + + . + + + A + + + třísky + + + létaly + 1 + + + , + + + krev + + + crčela + 1 + + + , + + + rudé + + + koncentráky + + + praskaly + + + ve + + + švech + 1 + + + . + + + Staří + + + čeští + + + intelektuálové + + + ( + 1 + + + byly + + + jich + + + sta + + + a + + + sta + 1 + + + ) + 1 + + + , + + + kteří + + + tehdy + + + dostali + + + nálepku + + + " + 1 + + + zrádné + + + intelektuální + + + reakce + 1 + + + " + 1 + + + , + + + museli + + + pryč + 1 + + + . + + + V + + + tisku + + + jako + + + na + + + běžícím + + + pásu + + + vycházely + + + tzv + 1 + + + . + + + kulturní + + + ( + 1 + + + také + + + filozofické + 1 + + + , + + + historické + 1 + + + , + + + ekonomické + 1 + + + ) + + + " + 1 + + + zatykače + 1 + + + " + 1 + + + . + + + Uprázdnilo + + + se + + + místo + + + a + + + naši + + + milí + + + zabavili + + + kulturu + 1 + + + , + + + školy + 1 + + + , + + + univerzity + 1 + + + , + + + časopisy + 1 + + + , + + + peníze + + + a + + + zámky + + + pro + + + sebe + 1 + + + . + + + Dostali + + + všechno + + + a + + + s + + + nikým + + + se + + + nemuseli + + + dělit + 1 + + + . + + + Bylo + + + slyšet + + + pouze + + + je + 1 + + + . + + + V + + + šedesátých + + + letech + + + si + + + pro + + + sebe + + + samotné + + + postupně + + + zavedli + + + omezenou + + + demokracii + + + a + + + zbytek + + + ztrápené + + + společnosti + + + začali + + + poučovat + + + - + + + o + + + demokracii + 1 + + + . + + + Opět + + + bylo + + + slyšet + + + pouze + + + je + 1 + + + . + + + Slavná + + + teze + + + roku + + + 1968 + 1 + + + : + + + " + 1 + + + Aby + + + bylo + + + jasno + 1 + + + , + + + jsme + + + komunisti + 1 + + + . + + + Demokracii + + + si + + + můžeme + + + dovolit + 1 + + + , + + + protože + + + máme + + + nejlepší + + + a + + + hiostoricky + + + spravedlivý + + + program + + + a + + + národ + + + nás + + + miluje + 1 + + + . + + + O + + + moc + + + stejně + + + nepřijdeme + 1 + + + , + + + protože + + + volby + + + vyhrajeme + 1 + + + . + 1 + + + " + + + Nebýt + + + ruských + + + tanků + 1 + + + , + + + vystřízlivění + + + by + + + nepřišlo + + + po + + + listopadu + 1 + + + , + + + nýbrž + + + o + + + dvacet + + + let + + + dřív + 1 + + + . + + + + 8 + + Jádrem + + + traumatu + + + některých + + + lidí + + + z + + + okruhu + + + Literárních + + + novin + + + může + + + být + + + to + 1 + + + , + + + že + + + + + + není + + + slyšet + + + pouze + + + je + 1 + + + . + + + + + + není + + + koho + + + školit + + + o + + + demokracii + 1 + + + , + + + národ + + + ji + + + žije + + + a + + + oni + + + jsou + + + " + 1 + + + pouhou + 1 + + + " + + + její + + + součástí + 1 + + + . + + + Tato + + + doba + + + jistě + + + není + + + ideální + 1 + + + . + + + Nová + + + generace + 1 + + + , + + + narozená + + + do + + + komunismu + 1 + + + , + + + který + + + si + + + nevybrala + 1 + + + , + + + jež + + + tuto + + + vzrušenou + + + dobu + + + především + + + žije + 1 + + + , + + + však + + + za + + + sebou + + + nemá + + + drastické + + + skutky + + + padesátých + + + let + 1 + + + . + + + Nikoho + + + odnikud + + + nevyhazuje + 1 + + + . + + + Listopad + + + je + + + také + + + jejím + + + dílem + + + a + + + zásluhou + 1 + + + . + + + + 9 + + Literární + + + noviny + 1 + + + , + + + týdeník + + + světlé + + + minulosti + 1 + + + , + + + se + + + nyní + + + daly + + + cestou + + + zvláštního + + + typu + + + lůzovitosti + 1 + + + . + + + Půjde + 1 + + + - + 1 + + + li + + + to + + + takto + + + dál + 1 + + + , + + + mají + + + dobrou + + + šanci + + + získat + + + definitivně + + + image + + + odkladiště + + + ztracené + + + generace + 1 + + + . + + + Image + + + přestupní + + + stanice + + + do + + + minulosti + 1 + + + . + + + + diff --git a/demo/pdt_train/ln95048_134.in.conll b/demo/pdt_train/ln95048_134.in.conll new file mode 100644 index 00000000..b6f53f5b --- /dev/null +++ b/demo/pdt_train/ln95048_134.in.conll @@ -0,0 +1,141 @@ +1 Navrhnout navrhnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 5 xcomp _ _ +2 adepty adept NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dobj _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 řád řád NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +5 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 každý každý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ + +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +1 Výtvarnou výtvarný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 podobu podoba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ _ +3 nového nový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 4 amod _ _ +4 Řádu řád NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +5 T T PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 4 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 name _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 7 punct _ _ +9 Masaryka Masaryk PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 5 name _ _ +10 včera včera ADV Db------------- _ 12 advmod _ _ +11 veřejnosti veřejnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ _ +12 představila představit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 Kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 nsubj _ _ +14 prezidenta prezident NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +15 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +1 Jejím jeho DET PSZS7FS3------- Case=Ins|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 2 det _ _ +2 autorem autor NOUN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +4 Vladimír Vladimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 15 nsubj _ _ +5 Oppl Oppl PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 4 name _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 4 punct _ _ +7 Návrhy návrh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +8 kandidátů kandidát NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +10 první první ADJ CrNP4---------- Case=Acc|Gender=Neut|Number=Plur|NumType=Ord 14 amod _ _ +11 udělovaná udělovaný ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +12 česká český ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +13 státní státní ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +14 vyznamenání vyznamenání NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 7 nmod _ _ +15 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 csubj _ _ +16 stálé stálý ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 parlamentní parlamentní ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 komisi komise NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 19 dobj _ _ +19 předkládat předkládat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 xcomp _ _ +20 do do ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +21 31 31 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 21 punct _ _ +23 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 letošního letošní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ _ +25 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +26 prostřednictvím prostřednictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 27 case _ _ +27 poslanců poslanec NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ _ +28 i i CONJ J^------------- _ 29 advmod:emph _ _ +29 občané občan NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 15 punct _ _ + +1 Návrh návrh NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ _ +2 musí muset VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 obsahovat obsahovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 xcomp _ _ +4 jméno jméno NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 3 dobj _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 příjmení příjmení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 conj _ _ +7 kandidáta kandidát NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 4 punct _ _ +9 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 10 det _ _ +10 tituly titul NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 životopis životopis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 4 punct _ _ +14 osobní osobní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ _ +15 údaje údaj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ _ +16 a a CONJ J^------------- _ 4 cc _ _ +17 důvod důvod NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +18 ocenění ocenění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 17 nmod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 4 punct _ _ +20 rovněž rovněž ADV Db------------- _ 22 advmod:emph _ _ +21 i i CONJ J^------------- _ 22 advmod:emph _ _ +22 druh druh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +23 vyznamenání vyznamenání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 22 nmod _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 4 punct _ _ +25 třídu třída NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 conj _ _ +26 a a CONJ J^------------- _ 4 cc _ _ +27 stupeň stupeň NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 2 punct _ _ + +1 U u ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 vyznamenaných vyznamenaný ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 foreign _ _ +3 in in ADP RR--X---------- AdpType=Prep|Foreign=Foreign 4 foreign _ _ +4 memoriam memoriam ADV Db------------- Foreign=Foreign 6 advmod _ _ +5 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 6 aux _ _ +6 nemělo mít VERB VpNS---XR-NA--- Gender=Neut|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 chybět chybět VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 6 xcomp _ _ +8 datum datum NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 nsubj _ _ +9 úmrtí úmrtí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 8 nmod _ _ +10 dotyčného dotyčný ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +11 a a CONJ J^------------- _ 10 cc _ _ +12 příbuzenský příbuzenský ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 conj _ _ +13 vztah vztah NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +15 osobě osoba NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ _ +18 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +19 vyznamenání vyznamenání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 20 dobj _ _ +20 přejímat přejímat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 acl _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 dnešního dnešní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +4 do do ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 sněmovny sněmovna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 přišlo přijít VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 deset deset NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 9 nummod:gov _ _ +9 návrhů návrh NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 6 punct _ _ +11 chybí chybět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 conj _ _ +12 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 11 dobj _ _ +13 však však CONJ J^------------- _ 6 cc _ _ +14 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 15 advmod _ _ +15 uvedené uvedený ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 náležitosti náležitost NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 11 nsubj _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Nejbližšími blízký ADJ AAIP7----3A---- Animacy=Inan|Case=Ins|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +2 řádovými řádový ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +3 dny den NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 0 root _ _ +4 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 cop _ _ +5 28 28 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 říjen říjen NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 leden leden NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ _ +12 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +13 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/ln95048_134.out.conllu b/demo/pdt_train/ln95048_134.out.conllu new file mode 100644 index 00000000..94fb3ab1 --- /dev/null +++ b/demo/pdt_train/ln95048_134.out.conllu @@ -0,0 +1,158 @@ +# sent_id = 1 +# text = Navrhnout adepty na řád může každý +1 Navrhnout navrhnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 5 xcomp _ _ +2 adepty adept NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dobj _ Coref=2 +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 řád řád NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ Coref=0 +5 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 každý každý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ + +# sent_id = 2 +# text = Praha - +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Výtvarnou podobu nového Řádu T. G. Masaryka včera veřejnosti představila Kancelář prezidenta republiky. +1 Výtvarnou výtvarný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 podobu podoba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ Coref=1 +3 nového nový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 4 amod _ _ +4 Řádu řád NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ Coref=0 +5 T T PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 4 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 name _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 7 punct _ _ +9 Masaryka Masaryk PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 5 name _ _ +10 včera včera ADV Db------------- _ 12 advmod _ _ +11 veřejnosti veřejnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ _ +12 představila představit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 Kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 nsubj _ _ +14 prezidenta prezident NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +15 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 4 +# text = Jejím autorem je Vladimír Oppl. Návrhy kandidátů na první udělovaná česká státní vyznamenání mohou stálé parlamentní komisi předkládat do 31. března letošního roku prostřednictvím poslanců i občané. +1 Jejím jeho DET PSZS7FS3------- Case=Ins|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 2 det _ Coref=1 +2 autorem autor NOUN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +4 Vladimír Vladimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 15 nsubj _ _ +5 Oppl Oppl PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 4 name _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 4 punct _ _ +7 Návrhy návrh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ Coref=3 +8 kandidátů kandidát NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ Coref=2 +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +10 první první ADJ CrNP4---------- Case=Acc|Gender=Neut|Number=Plur|NumType=Ord 14 amod _ _ +11 udělovaná udělovaný ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +12 česká český ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +13 státní státní ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +14 vyznamenání vyznamenání NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 7 nmod _ Coref=4 +15 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 csubj _ _ +16 stálé stálý ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 parlamentní parlamentní ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ Coref=7 +18 komisi komise NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 19 dobj _ _ +19 předkládat předkládat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 xcomp _ _ +20 do do ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +21 31 31 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 21 punct _ _ +23 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 letošního letošní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ _ +25 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +26 prostřednictvím prostřednictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 27 case _ _ +27 poslanců poslanec NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ _ +28 i i CONJ J^------------- _ 29 advmod:emph _ _ +29 občané občan NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 15 punct _ _ + +# sent_id = 5 +# text = Návrh musí obsahovat jméno a příjmení kandidáta, jeho tituly, životopis, osobní údaje a důvod ocenění, rovněž i druh vyznamenání, třídu a stupeň. +1 Návrh návrh NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ Coref=3 +2 musí muset VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 obsahovat obsahovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 xcomp _ _ +4 jméno jméno NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 3 dobj _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 příjmení příjmení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 conj _ _ +7 kandidáta kandidát NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=2|SpaceAfter=No +8 , , PUNCT Z:------------- _ 4 punct _ _ +9 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 10 det _ Coref=2 +10 tituly titul NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 životopis životopis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 4 punct _ _ +14 osobní osobní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ _ +15 údaje údaj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ _ +16 a a CONJ J^------------- _ 4 cc _ _ +17 důvod důvod NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +18 ocenění ocenění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 17 nmod _ Drop_coref=2|SpaceAfter=No +19 , , PUNCT Z:------------- _ 4 punct _ _ +20 rovněž rovněž ADV Db------------- _ 22 advmod:emph _ _ +21 i i CONJ J^------------- _ 22 advmod:emph _ _ +22 druh druh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +23 vyznamenání vyznamenání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 22 nmod _ Coref=4|SpaceAfter=No +24 , , PUNCT Z:------------- _ 4 punct _ _ +25 třídu třída NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 conj _ _ +26 a a CONJ J^------------- _ 4 cc _ _ +27 stupeň stupeň NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 6 +# text = U vyznamenaných in memoriam by nemělo chybět datum úmrtí dotyčného a příbuzenský vztah k osobě, která bude vyznamenání přejímat. +1 U u ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 vyznamenaných vyznamenaný ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 foreign _ Coref=5 +3 in in ADP RR--X---------- AdpType=Prep|Foreign=Foreign 4 foreign _ _ +4 memoriam memoriam ADV Db------------- Foreign=Foreign 6 advmod _ _ +5 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 6 aux _ _ +6 nemělo mít VERB VpNS---XR-NA--- Gender=Neut|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 chybět chybět VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 6 xcomp _ _ +8 datum datum NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 nsubj _ _ +9 úmrtí úmrtí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 8 nmod _ _ +10 dotyčného dotyčný ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ Coref=5 +11 a a CONJ J^------------- _ 10 cc _ _ +12 příbuzenský příbuzenský ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 conj _ _ +13 vztah vztah NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +15 osobě osoba NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ Coref=6|SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ Coref=6 +18 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +19 vyznamenání vyznamenání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 20 dobj _ Coref=4 +20 přejímat přejímat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 acl _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 7 +# text = Do dnešního dne do sněmovny přišlo na deset návrhů, chybí jim však výše uvedené náležitosti. +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 dnešního dnešní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +4 do do ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 sněmovny sněmovna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ Coref=7 +6 přišlo přijít VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 deset deset NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 9 nummod:gov _ _ +9 návrhů návrh NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ Coref=8|SpaceAfter=No +10 , , PUNCT Z:------------- _ 6 punct _ _ +11 chybí chybět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 conj _ _ +12 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 11 dobj _ Coref=8 +13 však však CONJ J^------------- _ 6 cc _ _ +14 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 15 advmod _ _ +15 uvedené uvedený ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 náležitosti náležitost NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 11 nsubj _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 8 +# text = Nejbližšími řádovými dny jsou 28. říjen a 1. leden příštího roku. +1 Nejbližšími blízký ADJ AAIP7----3A---- Animacy=Inan|Case=Ins|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +2 řádovými řádový ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ Coref=4 +3 dny den NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 0 root _ _ +4 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 cop _ _ +5 28 28 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 říjen říjen NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 leden leden NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ _ +12 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +13 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + diff --git a/demo/pdt_train/ln95048_134.t b/demo/pdt_train/ln95048_134.t new file mode 100644 index 00000000..5348eb18 --- /dev/null +++ b/demo/pdt_train/ln95048_134.t @@ -0,0 +1,2072 @@ + + + + + + + + + + + + Manual annotation + + advice + + + + a#a-ln95048-134-p1s1 + 0 + + + + a#a-ln95048-134-p1s1w1 + + a#a-ln95048-134-p1s1w5 + + + complex + navrhnout + PRED + enunc + + v + poss + sim + cpl + it0 + act + asserted + + f + 1 + heading + v#v-w2310f2 + + + + a#a-ln95048-134-p1s1w2 + + complex + adept + PAT + + n.denot + anim + pl + single + + f + 2 + + + + a#a-ln95048-134-p1s1w4 + + a#a-ln95048-134-p1s1w3 + + + complex + řád + PAT + + n.denot + inan + sg + single + + f + 3 + + + + + + a#a-ln95048-134-p1s1w6 + + complex + který + ACT + + n.pron.indef + anim + sg + total2 + 3 + + f + 4 + + + + + + + a#a-ln95048-134-p2s1A + 0 + + + + a#a-ln95048-134-p2s1Aw1 + + complex + Praha + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + + + + + a#a-ln95048-134-p2s1B + 0 + + + Řád Tomáše Garrigua Masaryka + object + + t-ln95048-134-p2s1Bw4 + t-ln95048-134-p2s1Bw5 + t-ln95048-134-p2s1Bw7 + t-ln95048-134-p2s1Bw9 + + + + institution + + t-ln95048-134-p2s1Bw13 + t-ln95048-134-p2s1Bw14 + t-ln95048-134-p2s1Bw15 + + + + + + + a#a-ln95048-134-p2s1Bw12 + + complex + představit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 10 + v#v-w4760f2 + + + + a#a-ln95048-134-p2s1Bw2 + + complex + podoba + PAT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-ln95048-134-p2s1Bw4 + + complex + řád + APP + + n.denot + inan + sg + single + + f + 2 + + + t-ln95048-134-p1s1w4 + SPEC + + + + + + a#a-ln95048-134-p2s1Bw9 + + complex + Masaryk + RSTR + 1 + + n.denot + anim + sg + single + + f + 3 + + + + a#a-ln95048-134-p2s1Bw5 + + complex + T + RSTR + 1 + + n.denot + anim + nr + single + + f + 4 + + + + a#a-ln95048-134-p2s1Bw7 + + complex + G + RSTR + 1 + + n.denot + anim + nr + single + + f + 5 + + + + + + a#a-ln95048-134-p2s1Bw3 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-ln95048-134-p2s1Bw1 + + complex + výtvarný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-ln95048-134-p2s1Bw11 + + complex + veřejnost + ADDR + + n.denot.neg + fem + sg + single + neg0 + + t + 8 + + + + a#a-ln95048-134-p2s1Bw10 + + complex + včera + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 9 + + + + a#a-ln95048-134-p2s1Bw13 + + complex + kancelář + ACT + + n.denot + fem + sg + single + + f + 11 + + + + a#a-ln95048-134-p2s1Bw14 + + complex + prezident + APP + + n.denot + anim + sg + single + + f + 12 + + + + a#a-ln95048-134-p2s1Bw15 + + complex + republika + APP + + n.denot + fem + sg + single + + f + 13 + + + + + + + + + + + a#a-ln95048-134-p2s2 + 0 + + + person + + t-ln95048-134-p2s2w4 + t-ln95048-134-p2s2w5 + + + + + + + a#a-ln95048-134-p2s2w3 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w243f1 + + + + a#a-ln95048-134-p2s2w2 + + complex + autor + PAT + + n.denot + anim + sg + single + + c + 2 + + + + a#a-ln95048-134-p2s2w1 + + complex + #PersPron + PAT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 1 + + + t-ln95048-134-p2s1Bw2 + SPEC + + + + + + + + a#a-ln95048-134-p2s2w5 + + complex + Oppl + ACT + 1 + + n.denot + anim + sg + single + + f + 4 + + + + a#a-ln95048-134-p2s2w4 + + complex + Vladimír + RSTR + 1 + + n.denot + anim + sg + single + + f + 5 + + + + + + + + + a#a-ln95048-134-p2s3 + 0 + + + státní vyznamenání + lexeme + + t-ln95048-134-p2s3w7 + t-ln95048-134-p2s3w8 + + + + time + + t-ln95048-134-p2s3w15 + t-ln95048-134-p2s3w17 + + + + parlamentní komise + lexeme + + t-ln95048-134-p2s3w11 + t-ln95048-134-p2s3w12 + + + + + + + a#a-ln95048-134-p2s3w13 + + a#a-ln95048-134-p2s3w9 + + + complex + předkládat + PRED + enunc + + v + poss + sim + proc + it0 + act + asserted + + f + 11 + v#v-w4728f1 + + + + a#a-ln95048-134-p2s3w1 + + complex + návrh + PAT + + n.denot + inan + pl + single + + c + 1 + v#v-w2308f3 + + + + a#a-ln95048-134-p2s3w2 + + complex + kandidát + PAT + + n.denot + anim + pl + single + + f + 7 + + + t-ln95048-134-p1s1w2 + GEN + + + + + + a#a-ln95048-134-p2s3w8 + + a#a-ln95048-134-p2s3w3 + + + complex + vyznamenání + PAT + + n.denot.neg + neut + pl + single + neg0 + + t + 2 + + + t-ln95048-134-p2s1Bw4 + SUB_SET + + + + + + a#a-ln95048-134-p2s3w7 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-ln95048-134-p2s3w6 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-ln95048-134-p2s3w5 + + complex + udělovaný + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-ln95048-134-p2s3w4 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 6 + + + + + + + + + + a#a-ln95048-134-p2s3w12 + + complex + komise + ADDR + + n.denot + fem + sg + single + + c + 8 + + + + a#a-ln95048-134-p2s3w11 + + complex + parlamentní + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-ln95048-134-p2s3w10 + + complex + stálý + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + a#a-ln95048-134-p2s3w17 + + a#a-ln95048-134-p2s3w14 + + + complex + březen + TTILL + + n.denot + inan + sg + single + + f + 14 + + + + a#a-ln95048-134-p2s3w19 + + complex + rok + APP + + n.denot + inan + sg + single + + t + 12 + + + + a#a-ln95048-134-p2s3w18 + + complex + letošní + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + + + + a#a-ln95048-134-p2s3w15 + + complex + 31 + RSTR + + adj.quant.def + ord + + f + 15 + + + + + + a#a-ln95048-134-p2s3w21 + + a#a-ln95048-134-p2s3w20 + + + complex + poslanec + MEANS + + n.denot + anim + pl + single + + f + 16 + + + t-ln95048-134-p2s3w11 + SET_SUB + + + + + + a#a-ln95048-134-p2s3w22 + + atom + i + RHEM + f + 17 + + + + a#a-ln95048-134-p2s3w23 + + complex + občan + ACT + + n.denot + anim + pl + single + + f + 18 + + + + + + + a#a-ln95048-134-p2s4 + 0 + + + osobní údaje + lexeme + + t-ln95048-134-p2s4w14 + t-ln95048-134-p2s4w15 + + + + + + + a#a-ln95048-134-p2s4w3 + + a#a-ln95048-134-p2s4w2 + + + complex + obsahovat + PRED + enunc + + v + deb + sim + proc + it0 + act + asserted + + f + 2 + v#v-w2561f1 + + + + a#a-ln95048-134-p2s4w1 + + complex + návrh + ACT + + n.denot + inan + sg + single + + t + 1 + + + t-ln95048-134-p2s3w1 + GEN + + + + + + a#a-ln95048-134-p2s4w16 + + coap + a + CONJ + 10 + + + + a#a-ln95048-134-p2s4w5 + + coap + a + CONJ + 1 + 4 + + + + a#a-ln95048-134-p2s4w4 + + complex + jméno + PAT + 1 + + n.denot + neut + sg + single + + f + 3 + + + + a#a-ln95048-134-p2s4w6 + + complex + příjmení + PAT + 1 + + n.denot + neut + sg + single + + f + 5 + + + + a#a-ln95048-134-p2s4w7 + + complex + kandidát + APP + + n.denot + anim + sg + single + + f + 6 + + + t-ln95048-134-p2s3w2 + GEN + + + + + + + + a#a-ln95048-134-p2s4w10 + + complex + titul + PAT + 1 + + n.denot + inan + pl + single + + f + 8 + + + + a#a-ln95048-134-p2s4w9 + + complex + #PersPron + APP + + n.pron.def.pers + anim + sg + 3 + basic + + t + 7 + + + t-ln95048-134-p2s4w7 + SPEC + + + + + + + + a#a-ln95048-134-p2s4w12 + + complex + životopis + PAT + 1 + + n.denot + inan + sg + single + + f + 9 + + + + a#a-ln95048-134-p2s4w15 + + complex + údaj + PAT + 1 + + n.denot + inan + pl + single + + f + 11 + + + + a#a-ln95048-134-p2s4w14 + + complex + osobní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + a#a-ln95048-134-p2s4w17 + + complex + důvod + PAT + 1 + + n.denot + inan + sg + single + + f + 16 + + + + a#a-ln95048-134-p2s4w18 + + complex + ocenění + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 15 + v#v-w2599f2 + + + qcomplex + 1 + #Gen + ACT + t + 13 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 14 + + + t-ln95048-134-p2s4w9 + SPEC + + + + + + + + + + a#a-ln95048-134-p2s4w20 + + atom + rovněž + CM + 17 + + + + a#a-ln95048-134-p2s4w21 + + atom + i + CM + 18 + + + + a#a-ln95048-134-p2s4w26 + + coap + a + CONJ + 1 + 22 + + + + a#a-ln95048-134-p2s4w22 + + complex + druh + PAT + 1 + + n.denot + inan + sg + single + + f + 19 + + + + a#a-ln95048-134-p2s4w23 + + complex + vyznamenání + APP + + n.denot.neg + neut + sg + single + neg0 + + f + 20 + + + t-ln95048-134-p2s3w8 + GEN + + + + + + + + a#a-ln95048-134-p2s4w25 + + complex + třída + PAT + 1 + + n.denot + fem + sg + single + + f + 21 + + + + a#a-ln95048-134-p2s4w27 + + complex + stupeň + PAT + 1 + + n.denot + inan + sg + single + + f + 23 + + + + + + + + + + + a#a-ln95048-134-p2s5 + 0 + + + foreign + + t-ln95048-134-p2s5w3 + t-ln95048-134-p2s5w4 + + + + příbuzenský vztah + lexeme + + t-ln95048-134-p2s5w12 + t-ln95048-134-p2s5w13 + + + + + + + a#a-ln95048-134-p2s5w7 + + a#a-ln95048-134-p2s5w5 + a#a-ln95048-134-p2s5w6 + + + complex + chybět + PRED + enunc + + v + hrt + nil + proc + it0 + act + potential + + f + 7 + v#v-w1204f2 + + + + a#a-ln95048-134-p2s5w2 + + a#a-ln95048-134-p2s5w1 + + + complex + vyznamenaný + REG + + n.denot + anim + pl + single + + t + 1 + + + t-ln95048-134-p2s4a0 + SET_SUB + + + + + list + 1 + #Forn + MANN + f + 2 + + + + a#a-ln95048-134-p2s5w3 + + fphr + in + FPHR + 3 + + + + a#a-ln95048-134-p2s5w4 + + fphr + memoriam + FPHR + 4 + + + + + + + qcomplex + 1 + #Oblfm + LOC + nr + t + 5 + + + atom + 1 + #Neg + RHEM + f + 6 + + + + a#a-ln95048-134-p2s5w11 + + coap + a + CONJ + 11 + + + + a#a-ln95048-134-p2s5w8 + + complex + datum + ACT + 1 + + n.denot + neut + sg + single + + f + 8 + + + + a#a-ln95048-134-p2s5w9 + + complex + úmrtí + APP + + n.denot + neut + sg + single + + f + 10 + v#v-w7170f1 + + + + a#a-ln95048-134-p2s5w10 + + complex + dotyčný + ACT + + adj.denot + pos + neg0 + + t + 9 + + + t-ln95048-134-p2s5w2 + SPEC + + + + + + + + + + a#a-ln95048-134-p2s5w13 + + complex + vztah + ACT + 1 + + n.denot + inan + sg + single + + f + 12 + + + + a#a-ln95048-134-p2s5w15 + + a#a-ln95048-134-p2s5w14 + + + complex + osoba + PAT + + n.denot + fem + sg + single + + f + 13 + + + + a#a-ln95048-134-p2s5w20 + + a#a-ln95048-134-p2s5w18 + + + complex + přejímat + RSTR + + v + decl + post + proc + it0 + act + asserted + + f + 16 + v#v-w4826f1 + + + + a#a-ln95048-134-p2s5w17 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 14 + + t-ln95048-134-p2s5w15 + + + + + a#a-ln95048-134-p2s5w19 + + complex + vyznamenání + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 15 + + + t-ln95048-134-p2s4w23 + GEN + + + + + + + + + + a#a-ln95048-134-p2s5w12 + + complex + příbuzenský + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + a#a-ln95048-134-p2s6 + 0 + + + dnešní den + lexeme + + t-ln95048-134-p2s6w2 + t-ln95048-134-p2s6w3 + + + + výše uvedený + lexeme + + t-ln95048-134-p2s6w14 + t-ln95048-134-p2s6w15 + + + + + + + a#a-ln95048-134-p2s6w13 + + coap + však + ADVS + 7 + + + + a#a-ln95048-134-p2s6w6 + + complex + přijít + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w5158f1 + + + + a#a-ln95048-134-p2s6w3 + + a#a-ln95048-134-p2s6w1 + + + complex + den + TTILL + + n.denot + inan + sg + single + + t + 2 + exoph + + + + a#a-ln95048-134-p2s6w2 + + complex + dnešní + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + a#a-ln95048-134-p2s6w5 + + a#a-ln95048-134-p2s6w4 + + + complex + sněmovna + DIR3 + basic + + n.denot + fem + sg + single + + t + 3 + + + t-ln95048-134-p2s3w11 + SPEC + + + + + + a#a-ln95048-134-p2s6w9 + + a#a-ln95048-134-p2s6w7 + + + complex + návrh + ACT + + n.denot + inan + pl + single + + t + 5 + + + t-ln95048-134-p2s4w1 + SET_SUB + + + + + + a#a-ln95048-134-p2s6w8 + + complex + deset + RSTR + + adj.quant.def + basic + + f + 6 + + + + + + + + a#a-ln95048-134-p2s6w11 + + complex + chybět + PRED + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + + + t-ln95048-134-p2s6w6 + discourse + 0 + 0 + opp + + t-ln95048-134-p2s6w13 + + + + v#v-w1204f1 + + + + a#a-ln95048-134-p2s6w12 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 8 + + + t-ln95048-134-p2s6w9 + SPEC + + + + + + a#a-ln95048-134-p2s6w16 + + complex + náležitost + ACT + + n.denot.neg + fem + pl + single + neg0 + + f + 10 + + + t-ln95048-134-p2s4w16 + SUB_SET + + + t-ln95048-134-p2s5w11 + SUB_SET + + + + + + a#a-ln95048-134-p2s6w15 + + complex + uvedený + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-ln95048-134-p2s6w14 + + complex + vysoký + LOC + basic + + adj.denot + comp + neg0 + + t + 11 + + + + + + + + + + + + + a#a-ln95048-134-p2s7 + 0 + + + time + + t-ln95048-134-p2s7w5 + t-ln95048-134-p2s7w7 + + + + time + + t-ln95048-134-p2s7w9 + t-ln95048-134-p2s7w11 + + + + + + + a#a-ln95048-134-p2s7w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-ln95048-134-p2s7w3 + + complex + den + PAT + + n.denot + inan + pl + single + + c + 1 + + + + a#a-ln95048-134-p2s7w2 + + complex + řádový + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + t-ln95048-134-p2s5w19 + GEN + + + + + + a#a-ln95048-134-p2s7w1 + + complex + blízký + RSTR + + adj.denot + sup + neg0 + + f + 3 + + + + + + a#a-ln95048-134-p2s7w8 + + coap + a + CONJ + 7 + + + + a#a-ln95048-134-p2s7w7 + + complex + říjen + ACT + 1 + + n.denot + inan + sg + single + + f + 5 + + + + a#a-ln95048-134-p2s7w5 + + complex + 28 + RSTR + + adj.quant.def + ord + + f + 6 + + + + + + a#a-ln95048-134-p2s7w11 + + complex + leden + ACT + 1 + + n.denot + inan + sg + single + + f + 8 + + + + a#a-ln95048-134-p2s7w9 + + complex + 1 + RSTR + + adj.quant.def + ord + + f + 9 + + + + a#a-ln95048-134-p2s7w13 + + complex + rok + APP + + n.denot + inan + sg + single + + t + 10 + + + + a#a-ln95048-134-p2s7w12 + + complex + příští + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + + + + + + diff --git a/demo/pdt_train/ln95048_134.txt b/demo/pdt_train/ln95048_134.txt new file mode 100644 index 00000000..a8a9e28c --- /dev/null +++ b/demo/pdt_train/ln95048_134.txt @@ -0,0 +1,3 @@ +Navrhnout adepty na řád může každý + +Praha - Výtvarnou podobu nového Řádu T. G. Masaryka včera veřejnosti představila Kancelář prezidenta republiky. Jejím autorem je Vladimír Oppl. Návrhy kandidátů na první udělovaná česká státní vyznamenání mohou stálé parlamentní komisi předkládat do 31. března letošního roku prostřednictvím poslanců i občané. Návrh musí obsahovat jméno a příjmení kandidáta, jeho tituly, životopis, osobní údaje a důvod ocenění, rovněž i druh vyznamenání, třídu a stupeň. U vyznamenaných in memoriam by nemělo chybět datum úmrtí dotyčného a příbuzenský vztah k osobě, která bude vyznamenání přejímat. Do dnešního dne do sněmovny přišlo na deset návrhů, chybí jim však výše uvedené náležitosti. Nejbližšími řádovými dny jsou 28. říjen a 1. leden příštího roku. \ No newline at end of file diff --git a/demo/pdt_train/ln95048_134.w b/demo/pdt_train/ln95048_134.w new file mode 100644 index 00000000..6b9fb426 --- /dev/null +++ b/demo/pdt_train/ln95048_134.w @@ -0,0 +1,450 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1995 +<authname>y +<opus>ln95048 +<id>134 + + + + 1 + + Navrhnout + + + adepty + + + na + + + řád + + + může + + + každý + + + + 2 + + Praha + + + - + + + Výtvarnou + + + podobu + + + nového + + + Řádu + + + T + 1 + + + . + + + G + 1 + + + . + + + Masaryka + + + včera + + + veřejnosti + + + představila + + + Kancelář + + + prezidenta + + + republiky + 1 + + + . + + + Jejím + + + autorem + + + je + + + Vladimír + + + Oppl + 1 + + + . + + + Návrhy + + + kandidátů + + + na + + + první + + + udělovaná + + + česká + + + státní + + + vyznamenání + + + mohou + + + stálé + + + parlamentní + + + komisi + + + předkládat + + + do + + + 31 + 1 + + + . + + + března + + + letošního + + + roku + + + prostřednictvím + + + poslanců + + + i + + + občané + 1 + + + . + + + Návrh + + + musí + + + obsahovat + + + jméno + + + a + + + příjmení + + + kandidáta + 1 + + + , + + + jeho + + + tituly + 1 + + + , + + + životopis + 1 + + + , + + + osobní + + + údaje + + + a + + + důvod + + + ocenění + 1 + + + , + + + rovněž + + + i + + + druh + + + vyznamenání + 1 + + + , + + + třídu + + + a + + + stupeň + 1 + + + . + + + U + + + vyznamenaných + + + in + + + memoriam + + + by + + + nemělo + + + chybět + + + datum + + + úmrtí + + + dotyčného + + + a + + + příbuzenský + + + vztah + + + k + + + osobě + 1 + + + , + + + která + + + bude + + + vyznamenání + + + přejímat + 1 + + + . + + + Do + + + dnešního + + + dne + + + do + + + sněmovny + + + přišlo + + + na + + + deset + + + návrhů + 1 + + + , + + + chybí + + + jim + + + však + + + výše + + + uvedené + + + náležitosti + 1 + + + . + + + Nejbližšími + + + řádovými + + + dny + + + jsou + + + 28 + 1 + + + . + + + říjen + + + a + + + 1 + 1 + + + . + + + leden + + + příštího + + + roku + 1 + + + . + + + + diff --git a/demo/pdt_train/lnd94103_052.in.conll b/demo/pdt_train/lnd94103_052.in.conll new file mode 100644 index 00000000..d4aabb8e --- /dev/null +++ b/demo/pdt_train/lnd94103_052.in.conll @@ -0,0 +1,276 @@ +1 Vedoucí vedoucí ADJ AGNS1-----A---- Aspect=Imp|Case=Nom|Gender=Neut|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 2 amod _ _ +2 postavení postavení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ _ +3 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 2 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 auxpass:reflex _ _ +5 potvrzuje potvrzovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 Johannesburg Johannesburg PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 5 nsubj _ _ +7 - - PUNCT Z:------------- _ 5 punct _ _ + +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 sečtení sečtení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ _ +3 zhruba zhruba ADV Db------------- _ 4 advmod:emph _ _ +4 třetiny třetina NUM CyFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumType=Frac 5 nummod _ _ +5 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 auxpass:reflex _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +8 prvních první ADJ CrFP6---------- Case=Loc|Gender=Fem|Number=Plur|NumType=Ord 10 amod _ _ +9 mnohorasových mnohorasový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +11 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +12 Jihoafrické jihoafrický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 amod _ _ +13 republice republika NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +14 potvrzuje potvrzovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +15 vedoucí vedoucí ADJ AGNS1-----A---- Aspect=Imp|Case=Nom|Gender=Neut|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 16 amod _ _ +16 postavení postavení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 14 nsubj _ _ +17 Afrického africký ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +18 národního národní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 kongresu kongres NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ _ +20 ( ( PUNCT Z:------------- _ 21 punct _ SpaceAfter=No +21 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 19 appos _ SpaceAfter=No +22 ) ) PUNCT Z:------------- _ 21 punct _ _ +23 vedeného vedený ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +24 Nelsonem Nelson PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 23 dobj _ _ +25 Mandelou Mandela PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 24 name _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 14 punct _ _ + +1 Zisk zisk NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +2 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 1 nmod _ _ +3 však však CONJ J^------------- _ 5 cc _ _ +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 nedosahuje dosahovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 předpokládaných předpokládaný ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 7 amod _ _ +7 60 60 NUM C=------------- NumForm=Digit|NumType=Card 8 nummod:gov _ _ +8 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 5 dobj _ _ +9 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 údajů údaj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 nmod _ _ +3 Nezávislé závislý ADJ AAFS2----1N---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Neg|Number=Sing 5 amod _ _ +4 volební volební ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 komise komise NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 které který PRON P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 9 nsubjpass _ _ +8 byly být AUX VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 9 auxpass _ _ +9 zveřejněny zveřejnit VERB VsTP---XX-AP--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|VerbForm=Part|Voice=Pass 5 acl _ _ +10 po po ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 sečtení sečtení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ _ +12 sedmi sedm NUM Cn-P2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card 11 nummod _ _ +13 z z ADP RR--2---------- AdpType=Prep|Case=Gen 16 case _ _ +14 předpokládaných předpokládaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 16 amod _ _ +15 23 23 NUM C=------------- NumForm=Digit|NumType=Card 16 nummod _ _ +16 milionů milión NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +17 volebních volební ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +18 lístků lístek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 nmod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 9 punct _ _ +20 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +21 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 24 nmod _ _ +23 dosud dosud ADV Db------------- _ 24 advmod _ _ +24 vyslovilo vyslovit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +25 zhruba zhruba ADV Db------------- _ 26 advmod:emph _ _ +26 56 56 NUM C=------------- NumForm=Digit|NumType=Card 29 nummod:gov _ SpaceAfter=No +27 , , PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +28 9 9 NUM C=------------- NumForm=Digit|NumType=Card 26 conj _ _ +29 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 24 nsubj _ _ +30 voličů volič NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 29 nmod _ SpaceAfter=No +31 . . PUNCT Z:------------- _ 24 punct _ _ + +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 druhém druhý ADJ CrNS6---------- Case=Loc|Gender=Neut|Number=Sing|NumType=Ord 3 amod _ _ +3 místě místo NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 Národní národní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ _ +6 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ _ +7 prezidenta prezident NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +8 de de ADP RR--1---------- AdpType=Prep|Case=Nom|Foreign=Foreign 7 nmod _ _ +9 Klerka Klerk PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 6 nmod _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 11 case _ _ +11 28 28 NUM C=------------- NumForm=Digit|NumType=Card 4 advmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 4 punct _ SpaceAfter=No +13 2 2 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 16 nsubj _ _ +15 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ _ +16 následována následovat VERB VsQW---XX-AP--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 4 conj _ _ +17 zulskou zulský ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 Stranou strana NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 16 dobj _ _ +19 svobody svoboda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +20 Inkatha Inkatha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 18 nmod _ _ +21 ( ( PUNCT Z:------------- _ 22 punct _ SpaceAfter=No +22 IFP IFP PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 18 appos _ SpaceAfter=No +23 ) ) PUNCT Z:------------- _ 22 punct _ _ +24 se s ADP RV--7---------- AdpType=Voc|Case=Ins 26 case _ _ +25 sedmi sedm NUM Cn-P7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card 26 nummod _ _ +26 procenty procento NOUN NNNP7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Plur 22 nmod _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Bělošská bělošský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +2 separatistická separatistický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +3 Svobodná svobodný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 fronta fronta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +5 získala získat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 prozatím prozatím ADV Db------------- _ 5 advmod _ _ +7 celostátně celostátně ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +8 podporu podpora NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +9 3 3 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 3 3 NUM C=------------- NumForm=Digit|NumType=Card 9 conj _ _ +12 procenta procento NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 5 punct _ _ +14 ale ale CONJ J^------------- _ 5 cc _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 některých některý DET PZXP6---------- Case=Loc|Number=Plur|PronType=Ind 17 det _ _ +17 oblastech oblast NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 19 nmod _ _ +18 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 19 expl _ _ +19 vyrovnala vyrovnat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ _ +20 Národní národní ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 straně strana NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 19 dobj _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Bělošská bělošský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +2 liberální liberální ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +3 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 22 nsubj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 11 punct _ _ +5 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 11 nsubj _ _ +6 po po ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +7 léta rok NOUN NNNP4-----A---2 Case=Acc|Gender=Neut|Negative=Pos|Number=Plur|Style=Arch 11 nmod _ _ +8 apartheidu apartheid NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 JAR jaro NOUN NNNP6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Plur 8 nmod _ _ +11 brojila brojit VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 3 acl _ _ +12 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 14 case _ _ +13 rasistickému rasistický ADJ AANS3----1A---- Case=Dat|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 14 amod _ _ +14 uspořádání uspořádání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 11 dobj _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 zemi země NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 11 punct _ _ +18 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +19 prvních první ADJ CrFP6---------- Case=Loc|Gender=Fem|Number=Plur|NumType=Ord 21 amod _ _ +20 mnohorasových mnohorasový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 21 amod _ _ +21 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 22 nmod _ _ +22 získala získat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +23 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 25 case _ _ +24 prozatímních prozatímní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 výsledků výsledek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 22 nmod _ _ +26 jen jen PART TT------------- _ 28 advmod:emph _ _ +27 slabou slabý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 podporu podpora NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 22 dobj _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 22 punct _ _ + +1 Částečné částečný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 0 root _ _ +3 voleb volba NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 2 nmod _ _ +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 Demokratické demokratický ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ _ +6 straně strana NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 26 punct _ _ +8 jejíž jenž DET P1FSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Rel 10 det _ _ +9 jediná jediný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +10 poslankyně poslankyně NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 26 nsubj _ _ +11 v v ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 parlamentu parlament NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 10 punct _ _ +14 Helen Helen PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 10 conj _ _ +15 Suzmanová Suzmanová PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 14 name _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 po po ADP RR--4---------- AdpType=Prep|Case=Acc 19 case _ _ +18 13 13 NUM C=------------- NumForm=Digit|NumType=Card 19 nummod:gov _ _ +19 let rok NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 20 advmod _ _ +20 vedla vést VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 14 acl _ _ +21 osamocený osamocený ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 22 amod _ _ +22 boj boj NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 20 dobj _ _ +23 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 24 case _ _ +24 apartheidu apartheid NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 22 nmod _ SpaceAfter=No +25 , , PUNCT Z:------------- _ 20 punct _ _ +26 přinesly přinést VERB VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 6 acl _ _ +27 jen jen PART TT------------- _ 28 advmod:emph _ _ +28 2 2 NUM C=------------- NumForm=Digit|NumType=Card 31 nummod:gov _ SpaceAfter=No +29 , , PUNCT Z:------------- _ 28 punct _ SpaceAfter=No +30 6 6 NUM C=------------- NumForm=Digit|NumType=Card 28 conj _ _ +31 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 26 dobj _ _ +32 voličských voličský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 33 amod _ _ +33 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 31 nmod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Jak jak ADV Db------------- _ 2 advmod _ _ +2 ukazují ukazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 parataxis _ _ +3 zatím zatím ADV Db------------- _ 2 advmod _ _ +4 předběžné předběžný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 2 nsubj _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 2 punct _ _ +7 dosud dosud ADV Db------------- _ 9 advmod _ _ +8 nejméně málo ADV Dg-------3A---- Degree=Sup|Negative=Pos 9 advmod _ _ +9 úspěšný úspěšný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +10 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +11 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 9 nsubj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ _ +14 Západní západní ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 15 amod _ _ +15 Kapsko Kapsko PROPN NNNS1-----A---- Case=Nom|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 18 punct _ _ +17 kde kde ADV Db------------- _ 18 advmod _ _ +18 obdržel obdržet VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 13 acl _ _ +19 zhruba zhruba ADV Db------------- _ 20 advmod:emph _ _ +20 26 26 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +21 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 18 nsubj _ _ +22 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 26 case _ _ +23 56 56 NUM C=------------- NumForm=Digit|NumType=Card 26 nummod:gov _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 23 punct _ SpaceAfter=No +25 9 9 NUM C=------------- NumForm=Digit|NumType=Card 23 conj _ _ +26 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 21 nmod _ _ +27 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 26 nmod _ _ +28 Národní národní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 29 amod _ _ +29 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 27 nmod _ _ +30 a a CONJ J^------------- _ 18 cc _ _ +31 v v ADP RR--6---------- AdpType=Prep|Case=Loc 32 case _ _ +32 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 18 conj _ _ +33 KwaZulu Kwazulu ADJ AAXXX----1A---- Degree=Pos|NameType=Geo|Negative=Pos 32 amod _ SpaceAfter=No +34 / / PUNCT Z:------------- _ 33 punct _ SpaceAfter=No +35 Natal Natal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 33 conj _ SpaceAfter=No +36 , , PUNCT Z:------------- _ 47 punct _ _ +37 kde kde ADV Db------------- _ 47 advmod _ _ +38 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 39 case _ _ +39 očekávání očekávání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 47 nmod _ _ +40 zatím zatím ADV Db------------- _ 47 advmod _ _ +41 se s ADP RV--7---------- AdpType=Voc|Case=Ins 45 case _ _ +42 70 70 NUM C=------------- NumForm=Digit|NumType=Card 45 nummod:gov _ SpaceAfter=No +43 , , PUNCT Z:------------- _ 42 punct _ SpaceAfter=No +44 4 4 NUM C=------------- NumForm=Digit|NumType=Card 42 conj _ _ +45 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 47 advmod _ _ +46 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 45 nmod _ _ +47 vítězí vítězit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 32 acl _ _ +48 Butheleziho Buthelezi PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 49 nmod _ _ +49 Strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 47 nsubj _ _ +50 svobody svoboda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 49 nmod _ _ +51 Inkatha Inkatha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 49 nmod _ SpaceAfter=No +52 . . PUNCT Z:------------- _ 9 punct _ _ + +1 Dosavadní dosavadní ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ _ +3 signalizují signalizovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 že že SCONJ J,------------- _ 8 mark _ _ +6 IFP IFP PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 8 nsubj _ _ +7 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl _ _ +8 těší těšit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 ccomp _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ _ +11 KwaZulu Kwazulu ADJ AAXXX----1A---- Degree=Pos|NameType=Geo|Negative=Pos 10 amod _ SpaceAfter=No +12 / / PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +13 Natal Natal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 11 conj _ _ +14 nejen nejen PART TT------------- _ 16 advmod:emph _ _ +15 tradiční tradiční ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ _ +16 podpoře podpora NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 8 dobj _ _ +17 zulských zulský ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +18 obyvatel obyvatel NOUN NNMP2-----A---1 Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 nmod _ _ +19 provincie provincie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 16 punct _ _ +21 ale ale CONJ J^------------- _ 16 cc _ _ +22 také také ADV Db------------- _ 24 advmod:emph _ _ +23 tamních tamní ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 bělochů běloch NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 conj _ _ +25 a a CONJ J^------------- _ 24 cc _ _ +26 obyvatel obyvatel NOUN NNMP2-----A---1 Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 conj _ _ +27 indického indický ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 původu původ NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 3 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/lnd94103_052.t b/demo/pdt_train/lnd94103_052.t new file mode 100644 index 00000000..12b37ddb --- /dev/null +++ b/demo/pdt_train/lnd94103_052.t @@ -0,0 +1,4120 @@ + + + + + + + + + + + + Manual annotation + + news + + + + a#a-lnd94103-052-p1s1 + 0 + + + + a#a-lnd94103-052-p1s1w5 + + complex + potvrzovat + PRED + enunc + + v + decl + sim + proc + it0 + deagent + asserted + + f + 5 + heading + v#v-w4103f1 + + + + a#a-lnd94103-052-p1s1w2 + + complex + postavení + PAT + + n.denot.neg + neut + sg + single + neg0 + + c + 1 + v#v-w4001f1 + + + + a#a-lnd94103-052-p1s1w3 + + complex + ANC + APP + + n.denot + inan + nr + single + + f + 2 + + + + a#a-lnd94103-052-p1s1w1 + + complex + vedoucí + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + + + + a#a-lnd94103-052-p1s2 + 0 + + + + a#a-lnd94103-052-p1s2w1 + + complex + Johannesburg + DENOM + enunc + + n.denot + inan + sg + single + + f + 1 + + + + + a#a-lnd94103-052-p1s3 + 0 + + + location + + t-lnd94103-052-p1s3w12 + t-lnd94103-052-p1s3w13 + + + + institution + + t-lnd94103-052-p1s3w17 + t-lnd94103-052-p1s3w18 + t-lnd94103-052-p1s3w19 + + + + Nelson Mandela + person + + t-lnd94103-052-p1s3w24 + t-lnd94103-052-p1s3w25 + + + + + + + a#a-lnd94103-052-p1s3w14 + + complex + potvrzovat + PRED + enunc + + v + decl + sim + proc + it0 + deagent + asserted + + f + 12 + v#v-w4103f1 + + + + a#a-lnd94103-052-p1s3w2 + + a#a-lnd94103-052-p1s3w1 + + + complex + sečtení + TWHEN + after + + n.denot.neg + neut + sg + single + neg0 + + c + 2 + v#v-w5943f1 + + + qcomplex + 1 + #Gen + ACT + t + 1 + + + + a#a-lnd94103-052-p1s3w4 + + complex + tři + PAT + + n.quant.def + fem + sg + frac + + f + 3 + + + + a#a-lnd94103-052-p1s3w5 + + complex + hlas + MAT + + n.denot + inan + pl + single + + f + 4 + + + + a#a-lnd94103-052-p1s3w3 + + complex + zhruba + EXT + basic + + adv.denot.ngrad.nneg + + f + 5 + + + + + + + + a#a-lnd94103-052-p1s3w10 + + a#a-lnd94103-052-p1s3w7 + + + complex + volba + LOC + basic + + n.denot + fem + pl + single + + c + 6 + + + + a#a-lnd94103-052-p1s3w13 + + a#a-lnd94103-052-p1s3w11 + + + complex + republika + LOC + basic + + n.denot + fem + sg + single + + f + 7 + + + t-lnd94103-052-p1s2w1 + PART_WHOLE + + + + + + a#a-lnd94103-052-p1s3w12 + + complex + Jihoafrický + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + a#a-lnd94103-052-p1s3w9 + + complex + mnohorasový + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + a#a-lnd94103-052-p1s3w8 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 10 + + + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + + a#a-lnd94103-052-p1s3w16 + + complex + postavení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 13 + + + t-lnd94103-052-p1s1w2 + SPEC + + + v#v-w4001f1 + + + + a#a-lnd94103-052-p1s3w15 + + complex + vedoucí + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-lnd94103-052-p1s3w20 + + coap + #Bracket + APPS + 18 + + + t-lnd94103-052-p1s1w3 + SPEC + + + + + + a#a-lnd94103-052-p1s3w19 + + complex + kongres + APP + 1 + + n.denot + inan + sg + single + + f + 15 + + + + a#a-lnd94103-052-p1s3w18 + + complex + národní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-lnd94103-052-p1s3w17 + + complex + Africký + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + a#a-lnd94103-052-p1s3w21 + + complex + ANC + APP + 1 + + n.denot + inan + sg + single + + f + 19 + + + + a#a-lnd94103-052-p1s3w23 + + complex + vedený + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + a#a-lnd94103-052-p1s3w25 + + complex + Mandela + ACT + 1 + + n.denot + anim + sg + single + + f + 21 + + + + a#a-lnd94103-052-p1s3w24 + + complex + Nelson + RSTR + 1 + + n.denot + anim + sg + single + + f + 22 + + + + + + + + + + + + + + + a#a-lnd94103-052-p1s4 + 0 + + + number + + t-lnd94103-052-p1s4w7 + t-lnd94103-052-p1s4w8 + + + + + + + a#a-lnd94103-052-p1s4w5 + + complex + dosahovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + + + t-lnd94103-052-p1s3w14 + discourse + 0 + 0 + restr + + t-lnd94103-052-p1s4w3 + + + + v#v-w716f1 + + + + a#a-lnd94103-052-p1s4w3 + + atom + však + PREC + t + 1 + + + + a#a-lnd94103-052-p1s4w1 + + complex + zisk + ACT + + n.denot + inan + sg + single + + t + 3 + + + + a#a-lnd94103-052-p1s4w2 + + complex + ANC + APP + + n.denot + inan + nr + single + + t + 2 + + + t-lnd94103-052-p1s3w20 + SPEC + + + + + + + + a#a-lnd94103-052-p1s4w4 + + complex + zatím + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 4 + + + atom + 1 + #Neg + RHEM + f + 5 + + + + a#a-lnd94103-052-p1s4w8 + + complex + procento + PAT + + n.denot + neut + pl + single + + f + 8 + + + + a#a-lnd94103-052-p1s4w9 + + complex + hlas + MAT + + n.denot + inan + pl + single + + t + 7 + + + + a#a-lnd94103-052-p1s4w7 + + complex + 60 + RSTR + + adj.quant.def + basic + + f + 9 + + + + a#a-lnd94103-052-p1s4w6 + + complex + předpokládaný + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + + + + + + a#a-lnd94103-052-p1s5 + 0 + + + institution + + t-lnd94103-052-p1s5w3 + t-lnd94103-052-p1s5w4 + t-lnd94103-052-p1s5w5 + + + + number + + t-lnd94103-052-p1s5w15 + t-lnd94103-052-p1s5w16 + + + + volební lístek + lexeme + + t-lnd94103-052-p1s5w17 + t-lnd94103-052-p1s5w18 + + + + number + + t-lnd94103-052-p1s5w26 + t-lnd94103-052-p1s5w27 + + + + + + + a#a-lnd94103-052-p1s5w24 + + a#a-lnd94103-052-p1s5w20 + + + complex + vyslovit_se + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 18 + v#v-w8360f1 + + + + a#a-lnd94103-052-p1s5w2 + + a#a-lnd94103-052-p1s5w1 + + + complex + údaj + CRIT + + n.denot + inan + pl + single + + t + 1 + + + + a#a-lnd94103-052-p1s5w5 + + complex + komise + APP + + n.denot + fem + sg + single + + f + 2 + + + + a#a-lnd94103-052-p1s5w4 + + complex + volební + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-lnd94103-052-p1s5w3 + + complex + Závislý + RSTR + + adj.denot + pos + neg1 + + f + 4 + + + + + + a#a-lnd94103-052-p1s5w9 + + a#a-lnd94103-052-p1s5w8 + + + complex + zveřejnit + RSTR + + v + decl + ant + cpl + it0 + pas + asserted + + f + 7 + v#v-w9966f1 + + + + a#a-lnd94103-052-p1s5w7 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 5 + + t-lnd94103-052-p1s5w2 + + + + qcomplex + 1 + #Gen + ACT + t + 6 + + + + a#a-lnd94103-052-p1s5w11 + + a#a-lnd94103-052-p1s5w10 + + + complex + sečtení + TWHEN + after + + n.denot.neg + neut + sg + single + neg0 + + f + 9 + v#v-w5943f1 + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + + a#a-lnd94103-052-p1s5w12 + + complex + sedm + PAT + + n.quant.def + nr + pl + basic + + f + 10 + + + + a#a-lnd94103-052-p1s5w16 + + a#a-lnd94103-052-p1s5w13 + + + complex + milión + DIR1 + basic + + n.quant.def + inan + pl + basic + + f + 11 + + + t-lnd94103-052-p1s5w12 + SUB_SET + + + + + + a#a-lnd94103-052-p1s5w18 + + complex + lístek + MAT + + n.denot + inan + pl + single + + f + 12 + + + + a#a-lnd94103-052-p1s5w17 + + complex + volební + RSTR + + adj.denot + pos + neg0 + + f + 13 + + + t-lnd94103-052-p1s3w10 + SPEC + + + + + + + + a#a-lnd94103-052-p1s5w15 + + complex + 23 + RSTR + + adj.quant.def + basic + + f + 14 + + + + a#a-lnd94103-052-p1s5w14 + + complex + předpokládaný + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + + + + + + + + + a#a-lnd94103-052-p1s5w22 + + a#a-lnd94103-052-p1s5w21 + + + complex + ANC + PAT + + n.denot + inan + nr + single + + t + 16 + + + t-lnd94103-052-p1s4w2 + SPEC + + + + + + a#a-lnd94103-052-p1s5w23 + + complex + dosud + TTILL + + adv.denot.ngrad.nneg + + t + 17 + + + + a#a-lnd94103-052-p1s5w27 + + complex + procento + ACT + + n.denot + neut + sg + single + + f + 20 + + + + a#a-lnd94103-052-p1s5w28 + + complex + volič + MAT + + n.denot + anim + pl + single + + t + 19 + + + + a#a-lnd94103-052-p1s5w26 + + complex + 56.9 + RSTR + + adj.quant.def + basic + + f + 21 + + + + a#a-lnd94103-052-p1s5w25 + + complex + zhruba + EXT + basic + + adv.denot.ngrad.nneg + + f + 22 + + + + + + + + + + + a#a-lnd94103-052-p1s6 + 0 + + + institution + + t-lnd94103-052-p1s6w5 + t-lnd94103-052-p1s6w6 + + + + Frederik Willem de Klerk + person + + t-lnd94103-052-p1s6w9 + + + + number + + t-lnd94103-052-p1s6w11 + t-lnd94103-052-p1s6w12 + + + + institution + + t-lnd94103-052-p1s6w16 + t-lnd94103-052-p1s6w17 + t-lnd94103-052-p1s6w18 + + + + number + + t-lnd94103-052-p1s6w23 + t-lnd94103-052-p1s6w24 + + + + + + + a#a-lnd94103-052-p1s6w4 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w243f2 + + + + a#a-lnd94103-052-p1s6w3 + + a#a-lnd94103-052-p1s6w1 + + + complex + místo + LOC + basic + + n.denot + neut + sg + single + + c + 1 + + + + a#a-lnd94103-052-p1s6w2 + + complex + dva + RSTR + + adj.quant.def + ord + + f + 2 + + + + + + a#a-lnd94103-052-p1s6w6 + + complex + strana + ACT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-lnd94103-052-p1s6w5 + + complex + Národní + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-lnd94103-052-p1s6w9 + + a#a-lnd94103-052-p1s6w8 + + + complex + de_Klerk + APP + 1 + + n.denot + anim + sg + single + + f + 6 + + + + a#a-lnd94103-052-p1s6w7 + + complex + prezident + RSTR + + n.denot + anim + sg + single + + f + 7 + + + t-lnd94103-052-p1s3w13 + P_FUNCT + + + + + + + + + + a#a-lnd94103-052-p1s6w12 + + a#a-lnd94103-052-p1s6w10 + + + complex + procento + ACMP + basic + + n.denot + neut + sg + single + + f + 9 + + + + a#a-lnd94103-052-p1s6w13 + + complex + hlas + MAT + + n.denot + inan + pl + single + + t + 8 + + + t-lnd94103-052-p1s5w12 + SPEC + + + + + + a#a-lnd94103-052-p1s6w11 + + complex + 28.2 + RSTR + + adj.quant.def + basic + + f + 10 + + + + + + a#a-lnd94103-052-p1s6w14 + + complex + následovat + COMPL + + v + decl + nil + proc + it0 + pas + nil + + f + 12 + + t-lnd94103-052-p1s6w6 + + v#v-w2217f2 + + + qcomplex + 1 + #Cor + PAT + t + 11 + + t-lnd94103-052-p1s6w6 + + + + + a#a-lnd94103-052-p1s6w19 + + coap + #Bracket + APPS + 17 + + + + a#a-lnd94103-052-p1s6w16 + + complex + Strana + ACT + 1 + + n.denot + fem + sg + single + + f + 13 + + + + a#a-lnd94103-052-p1s6w17 + + complex + svoboda + APP + + n.denot + fem + sg + single + + f + 14 + + + + a#a-lnd94103-052-p1s6w18 + + complex + Inkatha + ID + enunc + + n.denot + fem + sg + single + + f + 15 + + + + a#a-lnd94103-052-p1s6w15 + + complex + zulský + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + a#a-lnd94103-052-p1s6w20 + + complex + IFP + ACT + 1 + + n.denot + fem + nr + single + + f + 18 + + + + a#a-lnd94103-052-p1s6w24 + + a#a-lnd94103-052-p1s6w22 + + + complex + procento + ACMP + basic + + n.denot + neut + pl + single + + f + 19 + + + t-lnd94103-052-p1s6w13 + SET_SUB + + + + + + a#a-lnd94103-052-p1s6w23 + + complex + sedm + RSTR + + adj.quant.def + basic + + f + 20 + + + + + + + + + + + + + a#a-lnd94103-052-p1s7 + 0 + + + institution + + t-lnd94103-052-p1s7w18 + t-lnd94103-052-p1s7w19 + + + + institution + + t-lnd94103-052-p1s7w3 + t-lnd94103-052-p1s7w4 + + + + number + + t-lnd94103-052-p1s7w9 + t-lnd94103-052-p1s7w10 + + + + + + + a#a-lnd94103-052-p1s7w12 + + coap + ale + ADVS + 11 + + + + a#a-lnd94103-052-p1s7w4 + + complex + fronta + ACT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-lnd94103-052-p1s7w3 + + complex + Svobodný + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-lnd94103-052-p1s7w2 + + complex + separatistický + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-lnd94103-052-p1s7w1 + + complex + bělošský + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-lnd94103-052-p1s7w5 + + complex + získat + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 6 + v#v-w9501f1 + + + + a#a-lnd94103-052-p1s7w6 + + complex + prozatím + TFHL + + adv.denot.ngrad.nneg + + t + 5 + + + + a#a-lnd94103-052-p1s7w7 + + complex + celostátní + EXT + basic + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-lnd94103-052-p1s7w8 + + complex + podpora + PAT + + n.denot + fem + sg + single + + t + 8 + + + + a#a-lnd94103-052-p1s7w10 + + complex + procento + RSTR + + n.denot + neut + sg + single + + f + 9 + + + t-lnd94103-052-p1s6w13 + SET_SUB + + + + + + a#a-lnd94103-052-p1s7w9 + + complex + 3.3 + RSTR + + adj.quant.def + basic + + f + 10 + + + + + + + + + + a#a-lnd94103-052-p1s7w17 + + a#a-lnd94103-052-p1s7w16 + + + complex + vyrovnat_se + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 14 + + + t-lnd94103-052-p1s7w5 + discourse + 0 + 0 + opp + + t-lnd94103-052-p1s7w12 + + + + v#v-w8306f2 + + + + a#a-lnd94103-052-p1s7w15 + + a#a-lnd94103-052-p1s7w13 + + + complex + oblast + LOC + basic + + n.denot + fem + pl + single + + c + 12 + + + t-lnd94103-052-p1s3w13 + WHOLE_PART + + + + + + a#a-lnd94103-052-p1s7w14 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 13 + + + + + + a#a-lnd94103-052-p1s7w19 + + complex + strana + PAT + + n.denot + fem + sg + single + + f + 15 + + + t-lnd94103-052-p1s6a1 + SPEC + + + + + + a#a-lnd94103-052-p1s7w18 + + complex + Národní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + a#a-lnd94103-052-p1s8 + 0 + + + institution + + t-lnd94103-052-p1s8w1 + t-lnd94103-052-p1s8w2 + t-lnd94103-052-p1s8w3 + + + + + + + a#a-lnd94103-052-p1s8w22 + + complex + získat + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 17 + v#v-w9501f1 + + + + a#a-lnd94103-052-p1s8w3 + + complex + strana + ACT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-lnd94103-052-p1s8w2 + + complex + liberální + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-lnd94103-052-p1s8w1 + + complex + Bělošský + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-lnd94103-052-p1s8w11 + + complex + brojit + RSTR + + v + decl + ant + proc + it0 + act + asserted + + f + 8 + v#v-w209f1 + + + + a#a-lnd94103-052-p1s8w5 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 4 + + t-lnd94103-052-p1s8w3 + + + + + a#a-lnd94103-052-p1s8w7 + + a#a-lnd94103-052-p1s8w6 + + + complex + rok + TFHL + + n.denot + neut + pl + single + + t + 5 + + + + a#a-lnd94103-052-p1s8w8 + + complex + apartheid + APP + + n.denot + inan + sg + single + + f + 7 + + + + a#a-lnd94103-052-p1s8w10 + + a#a-lnd94103-052-p1s8w9 + + + complex + jaro + LOC + basic + + n.denot + neut + pl + single + + t + 6 + + + t-lnd94103-052-p1s3w13 + SPEC + + + + + + + + + + a#a-lnd94103-052-p1s8w14 + + a#a-lnd94103-052-p1s8w12 + + + complex + uspořádání + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 10 + v#v-w7328f2 + + + + a#a-lnd94103-052-p1s8w16 + + a#a-lnd94103-052-p1s8w15 + + + complex + země + LOC + basic + + n.denot + fem + sg + single + + t + 9 + + + t-lnd94103-052-p1s8w10 + SPEC + + + + + + a#a-lnd94103-052-p1s8w13 + + complex + rasistický + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + + + + + a#a-lnd94103-052-p1s8w21 + + a#a-lnd94103-052-p1s8w18 + + + complex + volba + LOC + basic + + n.denot + fem + pl + single + + t + 14 + + + t-lnd94103-052-p1s5w17 + SPEC + + + + + + a#a-lnd94103-052-p1s8w19 + + complex + jeden + RSTR + + adj.quant.def + ord + + t + 12 + + + + a#a-lnd94103-052-p1s8w20 + + complex + mnohorasový + RSTR + + adj.denot + pos + neg0 + + t + 13 + + + + + + a#a-lnd94103-052-p1s8w25 + + a#a-lnd94103-052-p1s8w23 + + + complex + výsledek + CRIT + + n.denot + inan + pl + single + + t + 16 + + + t-lnd94103-052-p1s5w7 + SPEC + + + + + + a#a-lnd94103-052-p1s8w24 + + complex + prozatímní + RSTR + + adj.denot + pos + neg0 + + t + 15 + + + + + + a#a-lnd94103-052-p1s8w28 + + complex + podpora + PAT + + n.denot + fem + sg + single + + t + 18 + + + + a#a-lnd94103-052-p1s8w26 + + atom + jen + RHEM + f + 19 + + + + a#a-lnd94103-052-p1s8w27 + + complex + slabý + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + a#a-lnd94103-052-p1s9 + 0 + + + institution + + t-lnd94103-052-p1s9w5 + t-lnd94103-052-p1s9w6 + + + + person + + t-lnd94103-052-p1s9w14 + t-lnd94103-052-p1s9w15 + + + + number + + t-lnd94103-052-p1s9w28 + t-lnd94103-052-p1s9w29 + + + + voličský hlas + lexeme + + t-lnd94103-052-p1s9w30 + t-lnd94103-052-p1s9w31 + + + + + + + a#a-lnd94103-052-p1s9w26 + + complex + přinést + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 21 + v#v-w5197f1 + + + + a#a-lnd94103-052-p1s9w2 + + complex + výsledek + ACT + + n.denot + inan + pl + single + + t + 3 + + + t-lnd94103-052-p1s8w25 + SPEC + + + + + + a#a-lnd94103-052-p1s9w1 + + complex + částečný + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + a#a-lnd94103-052-p1s9w3 + + complex + volba + APP + + n.denot + fem + pl + single + + t + 2 + + + t-lnd94103-052-p1s8w21 + SPEC + + + + + + + + a#a-lnd94103-052-p1s9w6 + + complex + strana + ADDR + + n.denot + fem + sg + single + + t + 4 + + + t-lnd94103-052-p1s8w5 + SPEC + + + + + + a#a-lnd94103-052-p1s9w5 + + complex + Demokratický + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-lnd94103-052-p1s9w20 + + complex + vést + RSTR + + v + decl + ant + proc + it0 + act + asserted + + f + 15 + v#v-w7583f2 + + + + a#a-lnd94103-052-p1s9w13 + + coap + #Comma + APPS + 10 + + + + a#a-lnd94103-052-p1s9w10 + + complex + poslankyně + ACT + 1 + + n.denot + fem + sg + single + + c + 8 + + + + a#a-lnd94103-052-p1s9w8 + + complex + který + APP + + n.pron.indef + inher + inher + relat + inher + + t + 6 + + t-lnd94103-052-p1s9w6 + + + + + a#a-lnd94103-052-p1s9w12 + + a#a-lnd94103-052-p1s9w11 + + + complex + parlament + LOC + basic + + n.denot + inan + sg + single + + t + 7 + + + t-lnd94103-052-p1s8w16 + P_FUNCT + + + + + + a#a-lnd94103-052-p1s9w9 + + complex + jediný + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + a#a-lnd94103-052-p1s9w15 + + complex + Suzmanová + ACT + 1 + 1 + + n.denot + fem + sg + single + + c + 11 + + + + a#a-lnd94103-052-p1s9w14 + + complex + Helen + RSTR + 1 + + n.denot + fem + sg + single + + f + 12 + + + + + + + + a#a-lnd94103-052-p1s9w19 + + a#a-lnd94103-052-p1s9w17 + + + complex + rok + THL + + n.denot + neut + pl + single + + t + 13 + + + + a#a-lnd94103-052-p1s9w18 + + complex + 13 + RSTR + + adj.quant.def + basic + + f + 14 + + + + + + a#a-lnd94103-052-p1s9w22 + + complex + boj + CPHR + + n.denot + inan + sg + single + + f + 17 + v#v-w175f1 + + + qcomplex + 1 + #QCor + ACT + t + 16 + + t-lnd94103-052-p1s9w13 + + + + + a#a-lnd94103-052-p1s9w24 + + a#a-lnd94103-052-p1s9w23 + + + complex + apartheid + PAT + + n.denot + inan + sg + single + + f + 18 + + + t-lnd94103-052-p1s8w8 + SPEC + + + + + + a#a-lnd94103-052-p1s9w21 + + complex + osamocený + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + + a#a-lnd94103-052-p1s9w4 + + complex + zatím + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 20 + + + + a#a-lnd94103-052-p1s9w27 + + atom + jen + RHEM + f + 22 + + + + a#a-lnd94103-052-p1s9w29 + + complex + procento + PAT + + n.denot + neut + sg + single + + f + 25 + + + + a#a-lnd94103-052-p1s9w31 + + complex + hlas + MAT + + n.denot + inan + pl + single + + t + 24 + + + t-lnd94103-052-p1s6w13 + SPEC + + + + + + a#a-lnd94103-052-p1s9w30 + + complex + voličský + RSTR + + adj.denot + pos + neg0 + + t + 23 + + + + + + a#a-lnd94103-052-p1s9w28 + + complex + 2.6 + RSTR + + adj.quant.def + basic + + f + 26 + + + + + + + + + a#a-lnd94103-052-p1s10 + 0 + + + number + + t-lnd94103-052-p1s10w23 + t-lnd94103-052-p1s10w24 + + + + institution + + t-lnd94103-052-p1s10w26 + t-lnd94103-052-p1s10w27 + + + + institution + + t-lnd94103-052-p1s10w45 + t-lnd94103-052-p1s10w46 + t-lnd94103-052-p1s10w47 + + + + location + + t-lnd94103-052-p1s10w14 + t-lnd94103-052-p1s10w15 + + + + number + + t-lnd94103-052-p1s10w20 + t-lnd94103-052-p1s10w21 + + + + KwaZulu-Natal + location + + t-lnd94103-052-p1s10w31 + t-lnd94103-052-p1s10w32 + t-lnd94103-052-p1s10w33 + + + + number + + t-lnd94103-052-p1s10w40 + t-lnd94103-052-p1s10w41 + + + + + + + a#a-lnd94103-052-p1s10w10 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 12 + v#v-w243f1 + + + + a#a-lnd94103-052-p1s10w9 + + complex + úspěšný + PAT + + adj.denot + pos + neg0 + + c + 1 + + + + a#a-lnd94103-052-p1s10w8 + + complex + málo + EXT + basic + + adj.quant.grad + sup + basic + + f + 2 + + + + + + a#a-lnd94103-052-p1s10w11 + + complex + ANC + ACT + + n.denot + inan + sg + single + + t + 3 + + + t-lnd94103-052-p1s5w22 + SPEC + + + + + + a#a-lnd94103-052-p1s10w2 + + complex + ukazovat + PAR + enunc + 1 + + v + decl + sim + proc + it0 + act + asserted + + t + 10 + v#v-w7098f1 + + + + a#a-lnd94103-052-p1s10w5 + + complex + výsledek + ACT + 1 + + n.denot + inan + pl + single + + t + 6 + + + t-lnd94103-052-p1s9w2 + SPEC + + + + + + a#a-lnd94103-052-p1s10w4 + + complex + předběžný + RSTR + 1 + + adj.denot + pos + neg0 + + t + 5 + + + + a#a-lnd94103-052-p1s10w3 + + complex + zatím + TWHEN + basic + 1 + + adv.denot.ngrad.nneg + + t + 4 + + + + + + + + a#a-lnd94103-052-p1s10w1 + + complex + jak + MANN + 1 + + adv.pron.indef + inter + + t + 7 + + + complex + 1 + #PersPron + PAT + 1 + + n.pron.def.pers + neut + sg + 3 + basic + + t + 8 + + + t-lnd94103-052-p1s10w10 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + 1 + t + 9 + + + + + + a#a-lnd94103-052-p1s10w7 + + complex + dosud + TTILL + + adv.denot.ngrad.nneg + + t + 11 + + + + a#a-lnd94103-052-p1s10w28 + + coap + a + CONJ + 27 + + + + a#a-lnd94103-052-p1s10w13 + + a#a-lnd94103-052-p1s10w12 + + + complex + provincie + LOC + basic + 1 + + n.denot + fem + sg + single + + f + 13 + + + t-lnd94103-052-p1s8w16 + WHOLE_PART + + + + + + a#a-lnd94103-052-p1s10w15 + + complex + Kapsko + ID + enunc + + n.denot + neut + sg + single + + f + 14 + + + + a#a-lnd94103-052-p1s10w14 + + complex + Západní + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-lnd94103-052-p1s10w18 + + complex + obdržet + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 18 + v#v-w2451f1 + + + + a#a-lnd94103-052-p1s10w17 + + complex + kde + LOC + basic + + adv.pron.indef + relat + + t + 16 + + t-lnd94103-052-p1s10w13 + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + sg + 3 + basic + + t + 17 + + + t-lnd94103-052-p1s10w11 + SPEC + + + + + + a#a-lnd94103-052-p1s10w21 + + complex + procento + PAT + + n.denot + neut + pl + single + + f + 19 + + + + a#a-lnd94103-052-p1s10w20 + + complex + 26 + RSTR + + adj.quant.def + basic + + f + 20 + + + + a#a-lnd94103-052-p1s10w19 + + complex + zhruba + EXT + basic + + adv.denot.ngrad.nneg + + f + 21 + + + + + + + + a#a-lnd94103-052-p1s10w24 + + a#a-lnd94103-052-p1s10w22 + + + complex + procento + CPR + wrt + + n.denot + neut + sg + single + + t + 22 + + + + a#a-lnd94103-052-p1s10w25 + + complex + hlas + MAT + + n.denot + inan + pl + single + + t + 23 + + + + a#a-lnd94103-052-p1s10w27 + + complex + strana + APP + + n.denot + fem + sg + single + + f + 24 + + + t-lnd94103-052-p1s7w19 + SPEC + + + + + + a#a-lnd94103-052-p1s10w26 + + complex + Národní + RSTR + + adj.denot + pos + neg0 + + f + 25 + + + + + + + + a#a-lnd94103-052-p1s10w23 + + complex + 56.9 + RSTR + + adj.quant.def + basic + + f + 26 + + + + + + + + + + a#a-lnd94103-052-p1s10w30 + + a#a-lnd94103-052-p1s10w29 + + + complex + provincie + LOC + basic + 1 + + n.denot + fem + sg + single + + t + 28 + + + t-lnd94103-052-p1s8w16 + WHOLE_PART + + + + + + a#a-lnd94103-052-p1s10w32 + + coap + #Slash + CONJ + 30 + + + + a#a-lnd94103-052-p1s10w31 + + complex + Kwazulu + ID + enunc + 1 + + adj.denot + pos + neg0 + + f + 29 + + + + a#a-lnd94103-052-p1s10w33 + + complex + Natal + ID + enunc + 1 + 1 + + n.denot + anim + sg + single + + f + 31 + + + + + + a#a-lnd94103-052-p1s10w43 + + complex + vítězit + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 40 + v#v-w7625f1 + + + + a#a-lnd94103-052-p1s10w35 + + complex + kde + LOC + basic + + adv.pron.indef + relat + + t + 32 + + t-lnd94103-052-p1s10w30 + + + + + a#a-lnd94103-052-p1s10w37 + + a#a-lnd94103-052-p1s10w36 + + + complex + očekávání + MANN + + n.denot.neg + neut + sg + single + neg0 + + t + 35 + v#v-w2607f1 + + + qcomplex + 1 + #Gen + ACT + t + 33 + + + qcomplex + 1 + #Gen + PAT + t + 34 + + + + + + a#a-lnd94103-052-p1s10w41 + + a#a-lnd94103-052-p1s10w39 + + + complex + procento + ACMP + basic + + n.denot + neut + sg + single + + t + 37 + + + + a#a-lnd94103-052-p1s10w42 + + complex + hlas + MAT + + n.denot + inan + pl + single + + t + 36 + + + + a#a-lnd94103-052-p1s10w40 + + complex + 70.4 + RSTR + + adj.quant.def + basic + + f + 38 + + + + + + a#a-lnd94103-052-p1s10w38 + + complex + zatím + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 39 + + + + a#a-lnd94103-052-p1s10w45 + + complex + Strana + ACT + + n.denot + fem + sg + single + + f + 41 + + + t-lnd94103-052-p1s6w19 + SPEC + + + + + + a#a-lnd94103-052-p1s10w46 + + complex + svoboda + APP + + n.denot + fem + sg + single + + f + 42 + + + + a#a-lnd94103-052-p1s10w47 + + complex + Inkatha + ID + enunc + + n.denot + fem + sg + single + + f + 43 + + + + a#a-lnd94103-052-p1s10w44 + + complex + Buthelezi + APP + 1 + + n.denot + anim + sg + single + + f + 44 + + + + + + + + + + + + + + + a#a-lnd94103-052-p1s11 + 0 + + + KwaZulu-Natal + location + + t-lnd94103-052-p1s11w11 + t-lnd94103-052-p1s11w12 + t-lnd94103-052-p1s11w13 + + + + + + + a#a-lnd94103-052-p1s11w3 + + complex + signalizovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w6063f1 + + + + a#a-lnd94103-052-p1s11w2 + + complex + výsledek + ACT + + n.denot + inan + pl + single + + t + 2 + + + t-lnd94103-052-p1s10w5 + SPEC + + + + + + a#a-lnd94103-052-p1s11w1 + + complex + dosavadní + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + a#a-lnd94103-052-p1s11w8 + + a#a-lnd94103-052-p1s11w5 + a#a-lnd94103-052-p1s11w7 + + + complex + těšit_se + PAT + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w6819f2 + + + + a#a-lnd94103-052-p1s11w6 + + complex + IFP + ACT + + n.denot + fem + sg + single + + t + 4 + + + t-lnd94103-052-p1s10w45 + SPEC + + + + + + a#a-lnd94103-052-p1s11w10 + + a#a-lnd94103-052-p1s11w9 + + + complex + provincie + LOC + basic + + n.denot + fem + sg + single + + t + 8 + + + t-lnd94103-052-p1s10w35 + SPEC + + + + + + a#a-lnd94103-052-p1s11w12 + + coap + #Slash + CONJ + 6 + + + + a#a-lnd94103-052-p1s11w11 + + complex + Kwazulu + ID + enunc + 1 + + adj.denot + pos + neg0 + + t + 5 + + + + a#a-lnd94103-052-p1s11w13 + + complex + Natal + ID + enunc + 1 + 1 + + n.denot + anim + sg + single + + t + 7 + + + + + + + + a#a-lnd94103-052-p1s11w21 + + coap + ale + GRAD + 16 + + + + a#a-lnd94103-052-p1s11w14 + + atom + nejen + CM + 10 + + + + a#a-lnd94103-052-p1s11w16 + + complex + podpora + PAT + 1 + + n.denot + fem + sg + single + + f + 11 + + + + a#a-lnd94103-052-p1s11w18 + + complex + obyvatel + ACT + + n.denot + anim + pl + single + + f + 13 + + + + a#a-lnd94103-052-p1s11w19 + + complex + provincie + PAT + + n.denot + fem + sg + single + + t + 12 + + + t-lnd94103-052-p1s11w10 + SPEC + + + + + + a#a-lnd94103-052-p1s11w17 + + complex + zulský + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + t-lnd94103-052-p1s6w15 + GEN + + + + + + + + a#a-lnd94103-052-p1s11w15 + + complex + tradiční + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-lnd94103-052-p1s11w22 + + atom + také + CM + 17 + + + + a#a-lnd94103-052-p1s11w16 + + complex + 1 + podpora + PAT + 1 + + n.denot + fem + sg + single + + t + 18 + + + + a#a-lnd94103-052-p1s11w25 + + coap + a + CONJ + 21 + + + + a#a-lnd94103-052-p1s11w24 + + complex + běloch + ACT + 1 + + n.denot + anim + pl + single + + f + 20 + + + + a#a-lnd94103-052-p1s11w23 + + complex + tamní + RSTR + + adj.denot + pos + neg0 + + t + 19 + + + t-lnd94103-052-p1s11w19 + SPEC + + + + + + + + a#a-lnd94103-052-p1s11w26 + + complex + obyvatel + ACT + 1 + + n.denot + anim + sg + single + + f + 22 + + + t-lnd94103-052-p1s11w23 + REST + + + + + + a#a-lnd94103-052-p1s11w28 + + complex + původ + RSTR + + n.denot + inan + sg + single + + f + 23 + + + + a#a-lnd94103-052-p1s11w27 + + complex + indický + RSTR + + adj.denot + pos + neg0 + + f + 24 + + + + + + + + + + + + + + + + + + + diff --git a/demo/pdt_train/lnd94103_052.txt b/demo/pdt_train/lnd94103_052.txt new file mode 100644 index 00000000..ca852626 --- /dev/null +++ b/demo/pdt_train/lnd94103_052.txt @@ -0,0 +1 @@ +Vedoucí postavení ANC se potvrzuje\Johannesburg - Po sečtení zhruba třetiny hlasů se v prvních mnohorasových volbách v Jihoafrické republice potvrzuje vedoucí postavení Afrického národního kongresu (ANC) vedeného Nelsonem Mandelou. Zisk ANC však zatím nedosahuje předpokládaných 60 procent hlasů. Podle údajů Nezávislé volební komise, které byly zveřejněny po sečtení sedmi z předpokládaných 23 milionů volebních lístků, se pro ANC dosud vyslovilo zhruba 56,9 procenta voličů. Na druhém místě je Národní strana prezidenta de Klerka s 28,2 procenta hlasů následována zulskou Stranou svobody Inkatha (IFP) se sedmi procenty. Bělošská separatistická Svobodná fronta získala prozatím celostátně podporu 3,3 procenta, ale v některých oblastech se vyrovnala Národní straně. Bělošská liberální strana, která po léta apartheidu v JAR brojila proti rasistickému uspořádání v zemi, v prvních mnohorasových volbách získala podle prozatímních výsledků jen slabou podporu. Částečné výsledky voleb zatím Demokratické straně, jejíž jediná poslankyně v parlamentu, Helen Suzmanová, po 13 let vedla osamocený boj proti apartheidu, přinesly jen 2,6 procenta voličských hlasů. Jak ukazují zatím předběžné výsledky, dosud nejméně úspěšný je ANC v provincii Západní Kapsko, kde obdržel zhruba 26 procent proti 56,9 procenta hlasů Národní strany a v provincii KwaZulu/Natal, kde podle očekávání zatím se 70,4 procenta hlasů vítězí Butheleziho Strana svobody Inkatha. Dosavadní výsledky signalizují, že IFP se těší v provincii KwaZulu/Natal nejen tradiční podpoře zulských obyvatel provincie, ale také tamních bělochů a obyvatel indického původu. \ No newline at end of file diff --git a/demo/pdt_train/lnd94103_052.w b/demo/pdt_train/lnd94103_052.w new file mode 100644 index 00000000..0268ef3e --- /dev/null +++ b/demo/pdt_train/lnd94103_052.w @@ -0,0 +1,822 @@ + + + + + + + csts + + + + +<mod>s +<txtype>inf +<genre>mix +<med>nws +<temp>1994 +<authname>y +<opus>lnd94103 +<id>052 + + + + 1 + + Vedoucí + + + postavení + + + ANC + + + se + + + potvrzuje + + + Johannesburg + + + - + + + Po + + + sečtení + + + zhruba + + + třetiny + + + hlasů + + + se + + + v + + + prvních + + + mnohorasových + + + volbách + + + v + + + Jihoafrické + + + republice + + + potvrzuje + + + vedoucí + + + postavení + + + Afrického + + + národního + + + kongresu + + + ( + 1 + + + ANC + 1 + + + ) + + + vedeného + + + Nelsonem + + + Mandelou + 1 + + + . + + + Zisk + + + ANC + + + však + + + zatím + + + nedosahuje + + + předpokládaných + + + 60 + + + procent + + + hlasů + 1 + + + . + + + Podle + + + údajů + + + Nezávislé + + + volební + + + komise + 1 + + + , + + + které + + + byly + + + zveřejněny + + + po + + + sečtení + + + sedmi + + + z + + + předpokládaných + + + 23 + + + milionů + + + volebních + + + lístků + 1 + + + , + + + se + + + pro + + + ANC + + + dosud + + + vyslovilo + + + zhruba + + + 56,9 + + + procenta + + + voličů + 1 + + + . + + + Na + + + druhém + + + místě + + + je + + + Národní + + + strana + + + prezidenta + + + de + + + Klerka + + + s + + + 28,2 + + + procenta + + + hlasů + + + následována + + + zulskou + + + Stranou + + + svobody + + + Inkatha + + + ( + 1 + + + IFP + 1 + + + ) + + + se + + + sedmi + + + procenty + 1 + + + . + + + Bělošská + + + separatistická + + + Svobodná + + + fronta + + + získala + + + prozatím + + + celostátně + + + podporu + + + 3,3 + + + procenta + 1 + + + , + + + ale + + + v + + + některých + + + oblastech + + + se + + + vyrovnala + + + Národní + + + straně + 1 + + + . + + + Bělošská + + + liberální + + + strana + 1 + + + , + + + která + + + po + + + léta + + + apartheidu + + + v + + + JAR + + + brojila + + + proti + + + rasistickému + + + uspořádání + + + v + + + zemi + 1 + + + , + + + v + + + prvních + + + mnohorasových + + + volbách + + + získala + + + podle + + + prozatímních + + + výsledků + + + jen + + + slabou + + + podporu + 1 + + + . + + + Částečné + + + výsledky + + + voleb + + + zatím + + + Demokratické + + + straně + 1 + + + , + + + jejíž + + + jediná + + + poslankyně + + + v + + + parlamentu + 1 + + + , + + + Helen + + + Suzmanová + 1 + + + , + + + po + + + 13 + + + let + + + vedla + + + osamocený + + + boj + + + proti + + + apartheidu + 1 + + + , + + + přinesly + + + jen + + + 2,6 + + + procenta + + + voličských + + + hlasů + 1 + + + . + + + Jak + + + ukazují + + + zatím + + + předběžné + + + výsledky + 1 + + + , + + + dosud + + + nejméně + + + úspěšný + + + je + + + ANC + + + v + + + provincii + + + Západní + + + Kapsko + 1 + + + , + + + kde + + + obdržel + + + zhruba + + + 26 + + + procent + + + proti + + + 56,9 + + + procenta + + + hlasů + + + Národní + + + strany + + + a + + + v + + + provincii + + + KwaZulu + 1 + + + / + 1 + + + Natal + 1 + + + , + + + kde + + + podle + + + očekávání + + + zatím + + + se + + + 70,4 + + + procenta + + + hlasů + + + vítězí + + + Butheleziho + + + Strana + + + svobody + + + Inkatha + 1 + + + . + + + Dosavadní + + + výsledky + + + signalizují + 1 + + + , + + + že + + + IFP + + + se + + + těší + + + v + + + provincii + + + KwaZulu + 1 + + + / + 1 + + + Natal + + + nejen + + + tradiční + + + podpoře + + + zulských + + + obyvatel + + + provincie + 1 + + + , + + + ale + + + také + + + tamních + + + bělochů + + + a + + + obyvatel + + + indického + + + původu + 1 + + + . + + + + diff --git a/demo/pdt_train/mf920922_131.in.conll b/demo/pdt_train/mf920922_131.in.conll new file mode 100644 index 00000000..c5b3464e --- /dev/null +++ b/demo/pdt_train/mf920922_131.in.conll @@ -0,0 +1,198 @@ +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 0 root _ _ +3 o o ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 nynější nynější ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 roli role NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +6 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 5 nmod _ _ +7 PODPORA PODPORA PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nmod _ _ +8 MYŠLENKY myšlenka PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 MÍROVÝCH mírový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 SIL síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ _ +11 RYCHLÉHO rychlý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 ZÁSAHU zásah NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ + +1 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 2 amod _ _ +2 York York PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +3 - - PUNCT Z:------------- _ 2 punct _ _ +4 Spojené spojený ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 státy stát NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ _ +6 požádají požádat VERB VB-P---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +7 o o ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 zvláštní zvláštní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 9 amod _ _ +9 zasedání zasedání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 dobj _ _ +10 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ _ +11 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 10 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 17 punct _ _ +14 které který PRON P4NS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Int,Rel 17 nsubj _ _ +15 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 17 aux _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 zabývalo zabývat VERB VpNS---XR-AA--- Aspect=Imp|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 9 acl _ _ +18 posílením posílení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 17 dobj _ _ +19 schopnosti schopnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +20 Organizace organizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 19 nmod _ _ +21 spojených spojený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 22 amod _ _ +22 národů národ NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +23 předcházet předcházet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 19 acl _ _ +24 vojenským vojenský ADJ AAIP3----1A---- Animacy=Inan|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 konfliktům konflikt NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 23 dobj _ SpaceAfter=No +26 , , PUNCT Z:------------- _ 23 punct _ _ +27 omezit omezit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 conj _ _ +28 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 27 dobj _ _ +29 a a CONJ J^------------- _ 23 cc _ _ +30 řešit řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 23 conj _ SpaceAfter=No +31 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Oznámil oznámit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +2 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dobj _ _ +3 včera včera ADV Db------------- _ 1 advmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 6 amod _ _ +6 Yorku York PROPN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 1 nmod _ _ +7 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +9 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 1 nsubj _ _ +10 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 9 name _ _ +11 v v ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 den den NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +13 zahájení zahájení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 12 nmod _ _ +14 všeobecné všeobecný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 rozpravy rozprava NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +16 na na ADP RR--6---------- AdpType=Prep|Case=Loc 19 case _ _ +17 47 47 NUM C=------------- NumForm=Digit|NumType=Card 19 nummod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 17 punct _ _ +19 zasedání zasedání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +20 Valného valný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 21 amod _ _ +21 shromáždění shromáždění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +22 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 21 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +2 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 1 nmod _ _ +3 kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +4 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 5 advmod _ _ +5 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 Radu rada NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 iobj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 10 punct _ _ +8-9 aby _ _ _ _ _ _ _ _ +8 aby aby SCONJ J,------------- _ 10 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 10 aux _ _ +10 poskytla poskytnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 ccomp _ _ +11 bezpečnostní bezpečnostní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 12 amod _ _ +12 záruky záruka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 10 dobj _ _ +13 všem všechen PRON PLXP3---------- Case=Dat|Number=Plur|PronType=Tot 15 nmod _ _ +14 členským členský ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 15 amod _ _ +15 zemím země NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 10 iobj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 18 punct _ _ +17 které který PRON P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 18 nsubj _ _ +18 nemají mít VERB VB-P---3P-NA--- Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 acl _ _ +19 jaderné jaderný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 20 amod _ _ +20 zbraně zbraň NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 18 dobj _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 5 punct _ _ + +1 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 3 nsubj _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ +3 podpořil podpořit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +4 návrh návrh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ _ +5 generálního generální ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 tajemníka tajemník NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +7 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 6 nmod _ _ +8 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 4 nmod _ _ +9 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +10 - - PUNCT Z:------------- _ 8 punct _ SpaceAfter=No +11 Ghálího Ghálí PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 17 punct _ _ +13-14 aby _ _ _ _ _ _ _ _ +13 aby aby SCONJ J,------------- _ 17 mark _ _ +14 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 17 aux _ _ +15 členské členský ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 země země NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 17 nsubj _ _ +17 udržovaly udržovat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Imp|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 4 acl _ _ +18 stálé stálý ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 18 punct _ _ +20 zvlášť zvlášť ADV Db------------- _ 21 advmod _ _ +21 připravené připravený ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 18 conj _ _ +22 síly síla NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 17 dobj _ _ +23 schopné schopný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +24 velmi velmi ADV Db------------- _ 25 advmod _ _ +25 rychle rychle ADV Dg-------1A---- Degree=Pos|Negative=Pos 26 advmod _ _ +26 zasáhnout zasáhnout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 23 xcomp _ _ +27 na na ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +28 pokyn pokyn NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +29 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 28 nmod _ _ +30 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 29 nmod _ _ +31 kdekoli kdekoliv ADV Db------------1 _ 26 advmod _ _ +32 na na ADP RR--6---------- AdpType=Prep|Case=Loc 33 case _ _ +33 světě svět NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 3 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 té ten DET PDFS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Dem 3 det _ _ +3 souvislosti souvislost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +4 nabídl nabídnout VERB VpYS---XR-AA--1 Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ _ +7 pomoc pomoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +8 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 7 nmod _ _ +9 k k ADP RR--3---------- AdpType=Prep|Case=Dat 10 case _ _ +10 výcviku výcvik NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +11 sil síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 nmod _ _ +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 11 nmod _ _ +13 a a CONJ J^------------- _ 4 cc _ _ +14 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ _ +15 ostatní ostatní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 16 amod _ _ +16 státy stát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 14 iobj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 24 punct _ _ +18-19 aby _ _ _ _ _ _ _ _ +18 aby aby SCONJ J,------------- _ 24 mark _ _ +19 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 24 aux _ _ +20 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +21 k k ADP RR--3---------- AdpType=Prep|Case=Dat 23 case _ _ +22 tomuto tento DET PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 23 det _ _ +23 úsilí úsilí NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +24 přidaly přidat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Perf|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 14 ccomp _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 nmod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 Bushe Bush PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ _ +5 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 světové světový ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 společenství společenství NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 7 conj _ _ +10 nyní nyní ADV Db------------- _ 5 advmod _ _ +11 před před ADP RR--7---------- AdpType=Prep|Case=Ins 14 case _ _ +12 třemi tři NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 14 nummod _ _ +13 naléhavými naléhavý ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 úkoly úkol NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ SpaceAfter=No +15 : : PUNCT Z:------------- _ 5 punct _ _ +16 udržet udržet VERB Vf--------A---- Negative=Pos|VerbForm=Inf 5 conj _ _ +17 dnešní dnešní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 18 amod _ _ +18 mír mír NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 16 dobj _ _ +19 a a CONJ J^------------- _ 16 cc _ _ +20 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +21 zítřejším zítřejší ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 válkám válka NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 20 dobj _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 16 punct _ _ +24 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +25 šíření šíření NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +26 zbraní zbraň NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 25 nmod _ _ +27 hromadného hromadný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 28 amod _ _ +28 ničení ničení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 26 nmod _ _ +29 a a CONJ J^------------- _ 16 cc _ _ +30 zajistit zajistit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +31 blahobyt blahobyt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 30 dobj _ _ +32 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +33 všechny všechen PRON PLYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Tot 31 nmod _ _ +34 na na ADP RR--6---------- AdpType=Prep|Case=Loc 36 case _ _ +35 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 34 mwe _ _ +36 zásad zásada NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 30 nmod _ _ +37 volného volný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 38 amod _ _ +38 trhu trh NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 36 nmod _ _ +39 a a CONJ J^------------- _ 38 cc _ _ +40 ochrany ochrana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 38 conj _ _ +41 životního životní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 42 amod _ _ +42 prostředí prostředí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 40 nmod _ SpaceAfter=No +43 . . PUNCT Z:------------- _ 5 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/mf920922_131.out.conllu b/demo/pdt_train/mf920922_131.out.conllu new file mode 100644 index 00000000..3c596ace --- /dev/null +++ b/demo/pdt_train/mf920922_131.out.conllu @@ -0,0 +1,213 @@ +# sent_id = 1 +# text = Prezident Bush o nynější roli OSN PODPORA MYŠLENKY MÍROVÝCH SIL RYCHLÉHO ZÁSAHU +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 0 root _ Coref=6 +3 o o ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 nynější nynější ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 roli role NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +6 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 5 nmod _ Coref=0 +7 PODPORA PODPORA PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nmod _ _ +8 MYŠLENKY myšlenka PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 MÍROVÝCH mírový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 SIL síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ Coref=10 +11 RYCHLÉHO rychlý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 ZÁSAHU zásah NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ + +# sent_id = 2 +# text = New York - Spojené státy požádají o zvláštní zasedání Rady bezpečnosti OSN, které by se zabývalo posílením schopnosti Organizace spojených národů předcházet vojenským konfliktům, omezit je a řešit. +1 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 2 amod _ _ +2 York York PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 0 root _ Coref=4 +3 - - PUNCT Z:------------- _ 2 punct _ _ +4 Spojené spojený ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 státy stát NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ Coref=5 +6 požádají požádat VERB VB-P---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ Coref=3 +7 o o ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 zvláštní zvláštní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 9 amod _ _ +9 zasedání zasedání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 dobj _ Coref=1 +10 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Coref=8 +11 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 10 nmod _ Coref=0|SpaceAfter=No +13 , , PUNCT Z:------------- _ 17 punct _ _ +14 které který PRON P4NS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Int,Rel 17 nsubj _ Coref=1 +15 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 17 aux _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 zabývalo zabývat VERB VpNS---XR-AA--- Aspect=Imp|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 9 acl _ _ +18 posílením posílení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 17 dobj _ _ +19 schopnosti schopnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +20 Organizace organizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 19 nmod _ Coref=0 +21 spojených spojený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 22 amod _ _ +22 národů národ NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +23 předcházet předcházet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 19 acl _ _ +24 vojenským vojenský ADJ AAIP3----1A---- Animacy=Inan|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 konfliktům konflikt NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 23 dobj _ Coref=2|SpaceAfter=No +26 , , PUNCT Z:------------- _ 23 punct _ _ +27 omezit omezit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 conj _ _ +28 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 27 dobj _ Coref=2 +29 a a CONJ J^------------- _ 23 cc _ Drop_coref=0 +30 řešit řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 23 conj _ Drop_coref=2|SpaceAfter=No +31 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 3 +# text = Oznámil to včera v New Yorku americký prezident George Bush v den zahájení všeobecné rozpravy na 47. zasedání Valného shromáždění OSN. +1 Oznámil oznámit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Coref=7 +2 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dobj _ Coref=3 +3 včera včera ADV Db------------- _ 1 advmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 6 amod _ _ +6 Yorku York PROPN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 1 nmod _ Coref=4 +7 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ Coref=5 +8 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +9 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 1 nsubj _ _ +10 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 9 name _ Coref=6 +11 v v ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 den den NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +13 zahájení zahájení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 12 nmod _ _ +14 všeobecné všeobecný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 rozpravy rozprava NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +16 na na ADP RR--6---------- AdpType=Prep|Case=Loc 19 case _ _ +17 47 47 NUM C=------------- NumForm=Digit|NumType=Card 19 nummod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 17 punct _ _ +19 zasedání zasedání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +20 Valného valný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 21 amod _ _ +21 shromáždění shromáždění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +22 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 21 nmod _ Coref=0|SpaceAfter=No +23 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 4 +# text = Prezident USA kromě toho vyzval Radu, aby poskytla bezpečnostní záruky všem členským zemím, které nemají jaderné zbraně. +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ Coref=6 +2 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 1 nmod _ Coref=5 +3 kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +4 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 5 advmod _ Coref=7 +5 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 Radu rada NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 iobj _ Coref=8|SpaceAfter=No +7 , , PUNCT Z:------------- _ 10 punct _ _ +8-9 aby _ _ _ _ _ _ _ _ +8 aby aby SCONJ J,------------- _ 10 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 10 aux _ _ +10 poskytla poskytnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 ccomp _ Drop_coref=8 +11 bezpečnostní bezpečnostní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 12 amod _ _ +12 záruky záruka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 10 dobj _ Drop_coref=8 +13 všem všechen PRON PLXP3---------- Case=Dat|Number=Plur|PronType=Tot 15 nmod _ _ +14 členským členský ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 15 amod _ _ +15 zemím země NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 10 iobj _ Coref=9|SpaceAfter=No +16 , , PUNCT Z:------------- _ 18 punct _ _ +17 které který PRON P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 18 nsubj _ Coref=9 +18 nemají mít VERB VB-P---3P-NA--- Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 acl _ _ +19 jaderné jaderný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 20 amod _ _ +20 zbraně zbraň NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 18 dobj _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = George Bush podpořil návrh generálního tajemníka OSN Butruse Butruse-Ghálího, aby členské země udržovaly stálé, zvlášť připravené síly schopné velmi rychle zasáhnout na pokyn Rady bezpečnosti kdekoli na světě. +1 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 3 nsubj _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ Coref=6 +3 podpořil podpořit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Coref=11 +4 návrh návrh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ Coref=12 +5 generálního generální ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 tajemníka tajemník NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +7 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 6 nmod _ Coref=0 +8 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 4 nmod _ _ +9 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +10 - - PUNCT Z:------------- _ 8 punct _ SpaceAfter=No +11 Ghálího Ghálí PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 17 punct _ _ +13-14 aby _ _ _ _ _ _ _ _ +13 aby aby SCONJ J,------------- _ 17 mark _ _ +14 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 17 aux _ _ +15 členské členský ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 země země NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 17 nsubj _ _ +17 udržovaly udržovat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Imp|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 4 acl _ _ +18 stálé stálý ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 18 punct _ _ +20 zvlášť zvlášť ADV Db------------- _ 21 advmod _ _ +21 připravené připravený ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 18 conj _ _ +22 síly síla NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 17 dobj _ Coref=10 +23 schopné schopný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +24 velmi velmi ADV Db------------- _ 25 advmod _ _ +25 rychle rychle ADV Dg-------1A---- Degree=Pos|Negative=Pos 26 advmod _ _ +26 zasáhnout zasáhnout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 23 xcomp _ Drop_coref=10 +27 na na ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +28 pokyn pokyn NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +29 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 28 nmod _ Coref=8 +30 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 29 nmod _ _ +31 kdekoli kdekoliv ADV Db------------1 _ 26 advmod _ _ +32 na na ADP RR--6---------- AdpType=Prep|Case=Loc 33 case _ _ +33 světě svět NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 6 +# text = V té souvislosti nabídl americký prezident pomoc USA k výcviku sil OSN a vyzval ostatní státy, aby se k tomuto úsilí přidaly. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 té ten DET PDFS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Dem 3 det _ _ +3 souvislosti souvislost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ Coref=11 +4 nabídl nabídnout VERB VpYS---XR-AA--1 Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ Coref=5 +6 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ Coref=6 +7 pomoc pomoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +8 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 7 nmod _ Coref=5 +9 k k ADP RR--3---------- AdpType=Prep|Case=Dat 10 case _ _ +10 výcviku výcvik NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +11 sil síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 nmod _ Coref=10 +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 11 nmod _ Coref=0 +13 a a CONJ J^------------- _ 4 cc _ _ +14 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ _ +15 ostatní ostatní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 16 amod _ _ +16 státy stát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 14 iobj _ Coref=13|SpaceAfter=No +17 , , PUNCT Z:------------- _ 24 punct _ _ +18-19 aby _ _ _ _ _ _ _ _ +18 aby aby SCONJ J,------------- _ 24 mark _ _ +19 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 24 aux _ _ +20 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +21 k k ADP RR--3---------- AdpType=Prep|Case=Dat 23 case _ _ +22 tomuto tento DET PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 23 det _ _ +23 úsilí úsilí NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ Coref=12 +24 přidaly přidat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Perf|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 14 ccomp _ Drop_coref=13|SpaceAfter=No +25 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 7 +# text = Podle G. Bushe stojí světové společenství a OSN nyní před třemi naléhavými úkoly: udržet dnešní mír a zabránit zítřejším válkám, zabránit šíření zbraní hromadného ničení a zajistit blahobyt pro všechny na základě zásad volného trhu a ochrany životního prostředí. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 nmod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 Bushe Bush PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ Coref=6 +5 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 světové světový ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 společenství společenství NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 7 conj _ Coref=0 +10 nyní nyní ADV Db------------- _ 5 advmod _ _ +11 před před ADP RR--7---------- AdpType=Prep|Case=Ins 14 case _ _ +12 třemi tři NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 14 nummod _ _ +13 naléhavými naléhavý ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 úkoly úkol NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ Drop_coref=14|SpaceAfter=No +15 : : PUNCT Z:------------- _ 5 punct _ _ +16 udržet udržet VERB Vf--------A---- Negative=Pos|VerbForm=Inf 5 conj _ _ +17 dnešní dnešní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 18 amod _ _ +18 mír mír NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 16 dobj _ _ +19 a a CONJ J^------------- _ 16 cc _ _ +20 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +21 zítřejším zítřejší ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 válkám válka NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 20 dobj _ Coref=2|SpaceAfter=No +23 , , PUNCT Z:------------- _ 16 punct _ _ +24 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +25 šíření šíření NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +26 zbraní zbraň NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 25 nmod _ _ +27 hromadného hromadný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 28 amod _ _ +28 ničení ničení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 26 nmod _ _ +29 a a CONJ J^------------- _ 16 cc _ Drop_coref=14 +30 zajistit zajistit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +31 blahobyt blahobyt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 30 dobj _ _ +32 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +33 všechny všechen PRON PLYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Tot 31 nmod _ _ +34 na na ADP RR--6---------- AdpType=Prep|Case=Loc 36 case _ _ +35 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 34 mwe _ _ +36 zásad zásada NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 30 nmod _ _ +37 volného volný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 38 amod _ _ +38 trhu trh NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 36 nmod _ _ +39 a a CONJ J^------------- _ 38 cc _ _ +40 ochrany ochrana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 38 conj _ _ +41 životního životní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 42 amod _ _ +42 prostředí prostředí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 40 nmod _ SpaceAfter=No +43 . . PUNCT Z:------------- _ 5 punct _ _ + diff --git a/demo/pdt_train/mf920922_131.t b/demo/pdt_train/mf920922_131.t new file mode 100644 index 00000000..e72c94b9 --- /dev/null +++ b/demo/pdt_train/mf920922_131.t @@ -0,0 +1,3262 @@ + + + + + + + + + + + + Manual annotation + + news + + + + a#a-mf920922-131-p1s1A + 0 + + + qcomplex + 1 + #EmpVerb + PRED + enunc + t + 1 + heading + + + + a#a-mf920922-131-p1s1Aw2 + + complex + Bush + ACT + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-mf920922-131-p1s1Aw1 + + complex + prezident + RSTR + + n.denot + anim + sg + single + + f + 3 + + + + + + a#a-mf920922-131-p1s1Aw5 + + a#a-mf920922-131-p1s1Aw3 + + + complex + role + PAT + + n.denot + fem + sg + single + + f + 4 + + + + a#a-mf920922-131-p1s1Aw4 + + complex + nynější + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-mf920922-131-p1s1Aw6 + + complex + OSN + APP + + n.denot + fem + nr + single + + f + 6 + + + + + + + + + a#a-mf920922-131-p1s1B + 0 + + + mírové síly + lexeme + + t-mf920922-131-p1s1Bw3 + t-mf920922-131-p1s1Bw4 + + + + + + + a#a-mf920922-131-p1s1Bw1 + + complex + podpora + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + heading + + + + a#a-mf920922-131-p1s1Bw2 + + complex + myšlenka + PAT + + n.denot + fem + sg + single + + f + 2 + + + + a#a-mf920922-131-p1s1Bw4 + + complex + síla + PAT + + n.denot + fem + pl + single + + f + 3 + + + + a#a-mf920922-131-p1s1Bw3 + + complex + mírový + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + a#a-mf920922-131-p1s1Bw6 + + complex + zásah + APP + + n.denot + inan + sg + single + + f + 5 + + + + a#a-mf920922-131-p1s1Bw5 + + complex + rychlý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + + + + + a#a-mf920922-131-p2s1 + 0 + + + location + + t-mf920922-131-p2s1w1 + t-mf920922-131-p2s1w2 + + + + + + + a#a-mf920922-131-p2s1w2 + + complex + York + DENOM + enunc + + n.denot + inan + sg + single + + f + 1 + + + + a#a-mf920922-131-p2s1w1 + + complex + New + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + + a#a-mf920922-131-p2s2 + 0 + + + Rada bezpečnosti + lexeme + + t-mf920922-131-p2s2w7 + t-mf920922-131-p2s2w8 + + + + institution + + t-mf920922-131-p2s2w17 + t-mf920922-131-p2s2w18 + t-mf920922-131-p2s2w19 + + + + Spojené státy americké + institution + + t-mf920922-131-p2s2w1 + t-mf920922-131-p2s2w2 + + + + + + + a#a-mf920922-131-p2s2w3 + + complex + požádat + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + v#v-w4227f1 + + + + a#a-mf920922-131-p2s2w2 + + complex + stát + ACT + + n.denot + inan + pl + single + + c + 1 + + + t-mf920922-131-p2s1w2 + PART_WHOLE + + + t-mf920922-131-p1s1Aw6 + SET_SUB + + + + + + a#a-mf920922-131-p2s2w1 + + complex + Spojený + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + qcomplex + 1 + #Gen + ADDR + t + 3 + + + + a#a-mf920922-131-p2s2w6 + + a#a-mf920922-131-p2s2w4 + + + complex + zasedání + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 5 + v#v-w9122f1 + + + + a#a-mf920922-131-p2s2w5 + + complex + zvláštní + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-mf920922-131-p2s2w7 + + complex + Rada + ACT + + n.denot + fem + sg + single + + f + 7 + + + + a#a-mf920922-131-p2s2w8 + + complex + bezpečnost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 8 + + + + a#a-mf920922-131-p2s2w9 + + complex + OSN + APP + + n.denot + fem + nr + single + + f + 9 + + + t-mf920922-131-p1s1Aw6 + SPEC + + + + + + + + a#a-mf920922-131-p2s2w14 + + a#a-mf920922-131-p2s2w13 + a#a-mf920922-131-p2s2w12 + + + complex + zabývat_se + RSTR + + v + decl + nil + proc + it0 + act + potential + + f + 11 + v#v-w8746f1 + + + + a#a-mf920922-131-p2s2w11 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 10 + + t-mf920922-131-p2s2w6 + + + + + a#a-mf920922-131-p2s2w15 + + complex + posílení + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 13 + v#v-w3962f1 + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + a#a-mf920922-131-p2s2w16 + + complex + schopnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 14 + + + + a#a-mf920922-131-p2s2w17 + + complex + Organizace + ACT + + n.denot + fem + sg + single + + f + 15 + + + t-mf920922-131-p2s2w9 + SPEC + + + + + + a#a-mf920922-131-p2s2w19 + + complex + národ + APP + + n.denot + inan + pl + single + + f + 16 + + + + a#a-mf920922-131-p2s2w18 + + complex + spojený + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + a#a-mf920922-131-p2s2w26 + + coap + a + CONJ + 24 + + + qcomplex + 1 + #Cor + ACT + t + 18 + + t-mf920922-131-p2s2w17 + + + + + a#a-mf920922-131-p2s2w20 + + complex + předcházet + PAT + 1 + + v + decl + nil + proc + it0 + act + nil + + f + 19 + v#v-w4720f1 + + + + a#a-mf920922-131-p2s2w22 + + complex + konflikt + PAT + + n.denot + inan + pl + single + + f + 20 + + + + a#a-mf920922-131-p2s2w21 + + complex + vojenský + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + a#a-mf920922-131-p2s2w24 + + complex + omezit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 23 + v#v-w3076f1 + + + + a#a-mf920922-131-p2s2w25 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 22 + + + t-mf920922-131-p2s2w22 + GEN + + + + + + + + a#a-mf920922-131-p2s2w27 + + complex + řešit + PAT + 1 + + v + decl + nil + proc + it0 + act + nil + + f + 26 + v#v-w5870f1 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 25 + + + t-mf920922-131-p2s2w25 + GEN + + + + + + + + + + + + + + + + + + + + + a#a-mf920922-131-p2s3 + 0 + + + location + + t-mf920922-131-p2s3w5 + t-mf920922-131-p2s3w6 + + + + George Bush + person + + t-mf920922-131-p2s3w9 + t-mf920922-131-p2s3w10 + + + + institution + + t-mf920922-131-p2s3w20 + t-mf920922-131-p2s3w21 + t-mf920922-131-p2s3w22 + + + + + + + a#a-mf920922-131-p2s3w1 + + complex + oznámit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w3328f1 + + + + a#a-mf920922-131-p2s3w2 + + complex + ten + EFF + + adj.pron.def.demon + + t + 1 + + + t-mf920922-131-p2s2w3 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-mf920922-131-p2s3w3 + + complex + včera + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 3 + + + + a#a-mf920922-131-p2s3w6 + + a#a-mf920922-131-p2s3w4 + + + complex + York + LOC + basic + + n.denot + inan + sg + single + + f + 5 + + + t-mf920922-131-p2s1w2 + SPEC + + + + + + a#a-mf920922-131-p2s3w5 + + complex + New + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-mf920922-131-p2s3w10 + + complex + Bush + ACT + 1 + + n.denot + anim + sg + single + + f + 7 + + + t-mf920922-131-p1s1Aw2 + SPEC + + + + + + a#a-mf920922-131-p2s3w8 + + complex + prezident + RSTR + + n.denot + anim + sg + single + + f + 8 + + + + a#a-mf920922-131-p2s3w7 + + complex + americký + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + t-mf920922-131-p2s2w2 + SPEC + + + + + + + + a#a-mf920922-131-p2s3w9 + + complex + George + RSTR + 1 + + n.denot + anim + sg + single + + f + 10 + + + + + + a#a-mf920922-131-p2s3w12 + + a#a-mf920922-131-p2s3w11 + + + complex + den + TWHEN + basic + + n.denot + inan + sg + single + + f + 11 + + + + a#a-mf920922-131-p2s3w13 + + complex + zahájení + APP + + n.denot.neg + neut + sg + single + neg0 + + f + 13 + v#v-w8782f1 + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + a#a-mf920922-131-p2s3w15 + + complex + rozprava + PAT + + n.denot + fem + sg + single + + f + 14 + + + + a#a-mf920922-131-p2s3w14 + + complex + všeobecný + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-mf920922-131-p2s3w19 + + a#a-mf920922-131-p2s3w16 + + + complex + zasedání + LOC + basic + + n.denot.neg + neut + sg + single + neg0 + + f + 16 + v#v-w9122f1 + + + + a#a-mf920922-131-p2s3w17 + + complex + 47 + RSTR + + adj.quant.def + ord + + f + 17 + + + + a#a-mf920922-131-p2s3w21 + + complex + shromáždění + ACT + + n.denot.neg + neut + sg + single + neg0 + + f + 18 + v#v-w6039f1 + + + + a#a-mf920922-131-p2s3w20 + + complex + valný + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + a#a-mf920922-131-p2s3w22 + + complex + OSN + APP + + n.denot + fem + nr + single + + f + 20 + + + t-mf920922-131-p2s2a2 + SPEC + + + + + + + + + + + + + + + + + a#a-mf920922-131-p2s4 + 0 + + + bezpečnostní záruka + lexeme + + t-mf920922-131-p2s4w11 + t-mf920922-131-p2s4w12 + + + + jaderná zbraň + lexeme + + t-mf920922-131-p2s4w19 + t-mf920922-131-p2s4w20 + + + + + + + a#a-mf920922-131-p2s4w5 + + complex + vyzvat + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + + + t-mf920922-131-p2s2w3 + discourse + 0 + 1 + conj + + t-mf920922-131-p2s4w4 + + + + v#v-w8614f1 + + + + a#a-mf920922-131-p2s4w1 + + complex + prezident + ACT + + n.denot + anim + sg + single + + c + 1 + + + t-mf920922-131-p2s3w10 + SPEC + + + + + + a#a-mf920922-131-p2s4w2 + + complex + USA + APP + + n.denot + inan + pl + single + + f + 2 + + + t-mf920922-131-p2s3w7 + SPEC + + + + + + + + a#a-mf920922-131-p2s4w4 + + a#a-mf920922-131-p2s4w3 + + + complex + ten + RESTR + + n.pron.def.demon + neut + sg + + t + 3 + + + t-mf920922-131-p2s3w1 + SPEC + + + + + + a#a-mf920922-131-p2s4w6 + + complex + rada + ADDR + + n.denot + fem + sg + single + + f + 5 + + + t-mf920922-131-p2s2w7 + SPEC + + + + + + a#a-mf920922-131-p2s4w10 + + a#a-mf920922-131-p2s4w8 + + + complex + poskytnout + PAT + + v + decl + nil + cpl + it0 + act + potential + + f + 7 + v#v-w3973f2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + fem + sg + 3 + basic + + t + 6 + + + t-mf920922-131-p2s4w6 + SPEC + + + + + + a#a-mf920922-131-p2s4w12 + + complex + záruka + CPHR + + n.denot + fem + pl + single + + f + 10 + v#v-w9094f1 + + + qcomplex + 1 + #QCor + ACT + t + 8 + + t-mf920922-131-p2s4a1 + + + + qcomplex + 1 + #Gen + PAT + t + 9 + + + + a#a-mf920922-131-p2s4w11 + + complex + bezpečnostní + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + a#a-mf920922-131-p2s4w15 + + complex + země + ADDR + + n.denot + fem + pl + single + + f + 13 + + + t-mf920922-131-p2s3w22 + SET_SUB + + + + + + a#a-mf920922-131-p2s4w13 + + complex + který + RSTR + + adj.pron.indef + total1 + + t + 12 + + + + a#a-mf920922-131-p2s4w14 + + complex + členský + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + a#a-mf920922-131-p2s4w18 + + complex + mít + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 17 + v#v-w1855f3 + + + + a#a-mf920922-131-p2s4w17 + + complex + který + ACT + + n.pron.indef + inher + inher + relat + inher + + t + 15 + + t-mf920922-131-p2s4w15 + + + + atom + 1 + #Neg + RHEM + f + 16 + + + + a#a-mf920922-131-p2s4w20 + + complex + zbraň + PAT + + n.denot + fem + pl + single + + f + 18 + + + + a#a-mf920922-131-p2s4w19 + + complex + jaderný + RSTR + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + + + + + + + a#a-mf920922-131-p3s1 + 0 + + + Rada bezpečnosti + lexeme + + t-mf920922-131-p3s1w29 + t-mf920922-131-p3s1w30 + + + + person + + t-mf920922-131-p3s1w1 + t-mf920922-131-p3s1w2 + + + + Butrus Butrus-Ghálí + person + + t-mf920922-131-p3s1w11 + + + + Butrus Butrus-Ghálí + person + + t-mf920922-131-p3s1w8 + t-mf920922-131-p3s1w9 + + + + generální tajemník + lexeme + + t-mf920922-131-p3s1w5 + t-mf920922-131-p3s1w6 + + + + + + + a#a-mf920922-131-p3s1w3 + + complex + podpořit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w3623f1 + + + + a#a-mf920922-131-p3s1w2 + + complex + Bush + ACT + 1 + + n.denot + anim + sg + single + + t + 1 + + + t-mf920922-131-p2s4w1 + SPEC + + + + + + a#a-mf920922-131-p3s1w1 + + complex + George + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + + + a#a-mf920922-131-p3s1w4 + + complex + návrh + PAT + + n.denot + inan + sg + single + + f + 4 + + + + a#a-mf920922-131-p3s1w11 + + complex + Ghálí + ACT + 1 + + n.denot + anim + sg + single + + f + 5 + + + + a#a-mf920922-131-p3s1w6 + + complex + tajemník + RSTR + + n.denot + anim + sg + single + + f + 6 + + + + a#a-mf920922-131-p3s1w5 + + complex + generální + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-mf920922-131-p3s1w7 + + complex + OSN + APP + + n.denot + fem + nr + single + + f + 8 + + + t-mf920922-131-p2s3w22 + SPEC + + + + + + + + a#a-mf920922-131-p3s1w8 + + complex + Butrus + RSTR + 1 + + n.denot + anim + sg + single + + f + 9 + + + + a#a-mf920922-131-p3s1w9 + + complex + Butrus + RSTR + 1 + + n.denot + anim + sg + single + + f + 10 + + + + + + a#a-mf920922-131-p3s1w17 + + a#a-mf920922-131-p3s1w13 + + + complex + udržovat + PAT + + v + decl + nil + proc + it0 + act + potential + + f + 13 + v#v-w7039f1 + + + + a#a-mf920922-131-p3s1w16 + + complex + země + ACT + + n.denot + fem + pl + single + + t + 11 + + + t-mf920922-131-p3s1w7 + SET_SUB + + + t-mf920922-131-p2s4w17 + SUB_SET + + + + + + a#a-mf920922-131-p3s1w15 + + complex + členský + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + a#a-mf920922-131-p3s1w22 + + complex + síla + PAT + + n.denot + fem + pl + single + + f + 14 + + + t-mf920922-131-p1s1Bw4 + GEN + + + + + + a#a-mf920922-131-p3s1w18 + + complex + stálý + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + a#a-mf920922-131-p3s1w20 + + atom + zvlášť + RHEM + f + 16 + + + + a#a-mf920922-131-p3s1w21 + + complex + připravený + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + a#a-mf920922-131-p3s1w23 + + complex + schopný + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + a#a-mf920922-131-p3s1w26 + + complex + zasáhnout + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 20 + v#v-w9116f2 + + + qcomplex + 1 + #Cor + ACT + t + 19 + + t-mf920922-131-p3s1w22 + + + + + a#a-mf920922-131-p3s1w25 + + complex + rychlý + MANN + + adj.denot + pos + neg0 + + f + 21 + + + + a#a-mf920922-131-p3s1w24 + + complex + velmi + EXT + basic + + adv.denot.grad.nneg + pos + + f + 22 + + + + + + a#a-mf920922-131-p3s1w28 + + a#a-mf920922-131-p3s1w27 + + + complex + pokyn + CAUS + + n.denot + inan + sg + single + + f + 23 + + + + a#a-mf920922-131-p3s1w29 + + complex + rada + ACT + + n.denot + fem + sg + single + + f + 24 + + + t-mf920922-131-p2s4a2 + SPEC + + + + + + a#a-mf920922-131-p3s1w30 + + complex + bezpečnost + APP + + n.denot.neg + fem + sg + single + neg0 + + f + 25 + + + + + + + + a#a-mf920922-131-p3s1w31 + + complex + kde + LOC + basic + + adv.pron.indef + indef3 + + f + 26 + + + + a#a-mf920922-131-p3s1w33 + + a#a-mf920922-131-p3s1w32 + + + complex + svět + LOC + basic + + n.denot + inan + sg + single + + f + 27 + + + + + + + + + + + + + + + + + + + a#a-mf920922-131-p3s2 + 0 + + + + a#a-mf920922-131-p3s2w13 + + coap + a + CONJ + 12 + + + + a#a-mf920922-131-p3s2w6 + + complex + prezident + ACT + + n.denot + anim + sg + single + + t + 2 + + + t-mf920922-131-p3s1w2 + SPEC + + + + + + a#a-mf920922-131-p3s2w5 + + complex + americký + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + t-mf920922-131-p2s4w2 + SPEC + + + + + + + + a#a-mf920922-131-p3s2w4 + + complex + nabídnout + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 6 + v#v-w1940f1 + + + + a#a-mf920922-131-p3s2w3 + + a#a-mf920922-131-p3s2w1 + + + complex + souvislost + REG + + n.denot.neg + fem + sg + single + neg0 + + t + 4 + + + t-mf920922-131-p3s1w3 + SPEC + + + + + + a#a-mf920922-131-p3s2w2 + + complex + ten + RSTR + + adj.pron.def.demon + + t + 3 + + + + + qcomplex + 1 + #Gen + ADDR + t + 5 + + + + a#a-mf920922-131-p3s2w7 + + complex + pomoc + PAT + + n.denot + fem + sg + single + + f + 7 + + + + a#a-mf920922-131-p3s2w8 + + complex + USA + ACT + + n.denot + inan + pl + single + + f + 8 + + + t-mf920922-131-p3s2w5 + SPEC + + + + + + a#a-mf920922-131-p3s2w10 + + a#a-mf920922-131-p3s2w9 + + + complex + výcvik + AIM + + n.denot + inan + sg + single + + f + 9 + + + + a#a-mf920922-131-p3s2w11 + + complex + síla + PAT + + n.denot + fem + pl + single + + f + 10 + + + t-mf920922-131-p3s1a1 + GEN + + + + + + a#a-mf920922-131-p3s2w12 + + complex + OSN + APP + + n.denot + fem + nr + single + + f + 11 + + + t-mf920922-131-p3s1w7 + SPEC + + + + + + + + + + + + + + a#a-mf920922-131-p3s2w14 + + complex + vyzvat + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 13 + + + t-mf920922-131-p3s2w4 + discourse + 0 + 0 + conj + + t-mf920922-131-p3s2w13 + + + + v#v-w8614f1 + + + + a#a-mf920922-131-p3s2w16 + + complex + stát + ADDR + + n.denot + inan + pl + single + + f + 14 + + + t-mf920922-131-p3s1w16 + SET_SUB + + + + + + a#a-mf920922-131-p3s2w15 + + complex + ostatní + RSTR + + adj.denot + pos + neg0 + + f + 15 + + + + + + a#a-mf920922-131-p3s2w24 + + a#a-mf920922-131-p3s2w18 + a#a-mf920922-131-p3s2w20 + + + complex + přidat_se + PAT + + v + decl + nil + cpl + it0 + act + potential + + f + 19 + v#v-w5104f2 + + + + a#a-mf920922-131-p3s2w23 + + a#a-mf920922-131-p3s2w21 + + + complex + úsilí + PAT + + n.denot + neut + sg + single + + t + 17 + + + t-mf920922-131-p3s1w4 + SPEC + + + + + + a#a-mf920922-131-p3s2w22 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 16 + + + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 18 + + + t-mf920922-131-p3s2w16 + SPEC + + + + + + + + + + + + + a#a-mf920922-131-p4s1 + 0 + + + volný trh + lexeme + + t-mf920922-131-p4s1w37 + t-mf920922-131-p4s1w38 + + + + person + + t-mf920922-131-p4s1w2 + t-mf920922-131-p4s1w4 + + + + světové společenství + lexeme + + t-mf920922-131-p4s1w6 + t-mf920922-131-p4s1w7 + + + + zbraň hromadného ničení + lexeme + + t-mf920922-131-p4s1w26 + t-mf920922-131-p4s1w27 + t-mf920922-131-p4s1w28 + + + + životní prostředí + lexeme + + t-mf920922-131-p4s1w41 + t-mf920922-131-p4s1w42 + + + + + + + a#a-mf920922-131-p4s1w5 + + complex + stát + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w6492f2 + + + + a#a-mf920922-131-p4s1w4 + + a#a-mf920922-131-p4s1w1 + + + complex + Bush + CRIT + 1 + + n.denot + anim + sg + single + + t + 1 + + + t-mf920922-131-p3s2w6 + SPEC + + + + + + a#a-mf920922-131-p4s1w2 + + complex + G + RSTR + 1 + + n.denot + anim + nr + single + + f + 2 + + + + + + a#a-mf920922-131-p4s1w8 + + coap + a + CONJ + 6 + + + + a#a-mf920922-131-p4s1w7 + + complex + společenství + ACT + 1 + + n.denot + neut + sg + single + + f + 4 + + + + a#a-mf920922-131-p4s1w6 + + complex + světový + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + + + a#a-mf920922-131-p4s1w9 + + complex + OSN + ACT + 1 + + n.denot + fem + nr + single + + f + 7 + + + t-mf920922-131-p3s2w12 + SPEC + + + + + + + + a#a-mf920922-131-p4s1w10 + + complex + teď + TWHEN + basic + + adv.pron.def + + f + 8 + + + + a#a-mf920922-131-p4s1w14 + + a#a-mf920922-131-p4s1w11 + + + complex + úkol + LOC + front + + n.denot + inan + pl + single + + f + 10 + + + qcomplex + 1 + #Gen + ACT + t + 9 + + + + a#a-mf920922-131-p4s1w12 + + complex + tři + RSTR + + adj.quant.def + basic + + f + 11 + + + + a#a-mf920922-131-p4s1w13 + + complex + naléhavý + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-mf920922-131-p4s1w29 + + coap + a + CONJ + 29 + + + qcomplex + 1 + #Cor + ACT + t + 13 + + t-mf920922-131-p4s1a0 + + + + + a#a-mf920922-131-p4s1w19 + + coap + a + CONJ + 1 + 17 + + + + a#a-mf920922-131-p4s1w16 + + complex + udržet + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 14 + v#v-w7034f1 + + + + a#a-mf920922-131-p4s1w18 + + complex + mír + PAT + + n.denot + inan + sg + single + + f + 15 + + + + a#a-mf920922-131-p4s1w17 + + complex + dnešní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + a#a-mf920922-131-p4s1w20 + + complex + zabránit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + t + 18 + v#v-w8735f1 + + + + a#a-mf920922-131-p4s1w22 + + complex + válka + PAT + + n.denot + fem + pl + single + + f + 19 + + + t-mf920922-131-p2s2a3 + GEN + + + + + + a#a-mf920922-131-p4s1w21 + + complex + zítřejší + RSTR + + adj.denot + pos + neg0 + + f + 20 + + + + + + + + + + a#a-mf920922-131-p4s1w24 + + complex + zabránit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 21 + v#v-w8735f1 + + + + a#a-mf920922-131-p4s1w25 + + complex + šíření + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 23 + v#v-w6717f1 + + + qcomplex + 1 + #Gen + ACT + t + 22 + + + + a#a-mf920922-131-p4s1w26 + + complex + zbraň + PAT + + n.denot + fem + pl + single + + f + 24 + + + t-mf920922-131-p2s4w20 + SUB_SET + + + + + + a#a-mf920922-131-p4s1w28 + + complex + ničení + RSTR + + n.denot.neg + neut + sg + single + neg0 + + f + 27 + v#v-w2404f1 + + + qcomplex + 1 + #Gen + ACT + t + 25 + + + qcomplex + 1 + #Gen + PAT + t + 26 + + + + a#a-mf920922-131-p4s1w27 + + complex + hromadný + MANN + + adj.denot + pos + neg0 + + f + 28 + + + + + + + + + + + + a#a-mf920922-131-p4s1w30 + + complex + zajistit + PAT + 1 + + v + decl + nil + cpl + it0 + act + nil + + f + 30 + v#v-w8845f1 + + + + a#a-mf920922-131-p4s1w31 + + complex + blahobyt + PAT + + n.denot + inan + sg + single + + f + 31 + + + + a#a-mf920922-131-p4s1w33 + + a#a-mf920922-131-p4s1w32 + + + complex + kdo + BEN + basic + + n.pron.indef + neut + pl + total1 + 3 + + f + 32 + + + + a#a-mf920922-131-p4s1w36 + + a#a-mf920922-131-p4s1w34 + a#a-mf920922-131-p4s1w35 + + + complex + zásada + CRIT + + n.denot + fem + pl + single + + f + 33 + + + + a#a-mf920922-131-p4s1w39 + + coap + a + CONJ + 36 + + + + a#a-mf920922-131-p4s1w38 + + complex + trh + PAT + 1 + + n.denot + inan + sg + single + + f + 34 + + + + a#a-mf920922-131-p4s1w37 + + complex + volný + RSTR + + adj.denot + pos + neg0 + + f + 35 + + + + + + a#a-mf920922-131-p4s1w40 + + complex + ochrana + PAT + 1 + + n.denot + fem + sg + single + + f + 37 + + + + a#a-mf920922-131-p4s1w42 + + complex + prostředí + PAT + + n.denot + neut + sg + single + + f + 38 + + + + a#a-mf920922-131-p4s1w41 + + complex + životní + RSTR + + adj.denot + pos + neg0 + + f + 39 + + + + + + + + + + + + + + + + + + + + + diff --git a/demo/pdt_train/mf920922_131.txt b/demo/pdt_train/mf920922_131.txt new file mode 100644 index 00000000..fe61d560 --- /dev/null +++ b/demo/pdt_train/mf920922_131.txt @@ -0,0 +1,7 @@ +Prezident Bush o nynější roli OSN PODPORA MYŠLENKY MÍROVÝCH SIL RYCHLÉHO ZÁSAHU + +New York - Spojené státy požádají o zvláštní zasedání Rady bezpečnosti OSN, které by se zabývalo posílením schopnosti Organizace spojených národů předcházet vojenským konfliktům, omezit je a řešit. Oznámil to včera v New Yorku americký prezident George Bush v den zahájení všeobecné rozpravy na 47. zasedání Valného shromáždění OSN. Prezident USA kromě toho vyzval Radu, aby poskytla bezpečnostní záruky všem členským zemím, které nemají jaderné zbraně. + +George Bush podpořil návrh generálního tajemníka OSN Butruse Butruse-Ghálího, aby členské země udržovaly stálé, zvlášť připravené síly schopné velmi rychle zasáhnout na pokyn Rady bezpečnosti kdekoli na světě. V té souvislosti nabídl americký prezident pomoc USA k výcviku sil OSN a vyzval ostatní státy, aby se k tomuto úsilí přidaly. + +Podle G. Bushe stojí světové společenství a OSN nyní před třemi naléhavými úkoly: udržet dnešní mír a zabránit zítřejším válkám, zabránit šíření zbraní hromadného ničení a zajistit blahobyt pro všechny na základě zásad volného trhu a ochrany životního prostředí. \ No newline at end of file diff --git a/demo/pdt_train/mf920922_131.w b/demo/pdt_train/mf920922_131.w new file mode 100644 index 00000000..4c1023bf --- /dev/null +++ b/demo/pdt_train/mf920922_131.w @@ -0,0 +1,612 @@ + + + + + + + csts + + + + +<mod>s +<txtype>inf +<genre>mix +<med>nws +<temp>1992 +<authname>y +<opus>mf920922 +<id>131 + + + + 1 + + Prezident + + + Bush + + + o + + + nynější + + + roli + + + OSN + + + PODPORA + + + MYŠLENKY + + + MÍROVÝCH + + + SIL + + + RYCHLÉHO + + + ZÁSAHU + + + + 2 + + New + + + York + + + - + + + Spojené + + + státy + + + požádají + + + o + + + zvláštní + + + zasedání + + + Rady + + + bezpečnosti + + + OSN + 1 + + + , + + + které + + + by + + + se + + + zabývalo + + + posílením + + + schopnosti + + + Organizace + + + spojených + + + národů + + + předcházet + + + vojenským + + + konfliktům + 1 + + + , + + + omezit + + + je + + + a + + + řešit + 1 + + + . + + + Oznámil + + + to + + + včera + + + v + + + New + + + Yorku + + + americký + + + prezident + + + George + + + Bush + + + v + + + den + + + zahájení + + + všeobecné + + + rozpravy + + + na + + + 47 + 1 + + + . + + + zasedání + + + Valného + + + shromáždění + + + OSN + 1 + + + . + + + Prezident + + + USA + + + kromě + + + toho + + + vyzval + + + Radu + 1 + + + , + + + aby + + + poskytla + + + bezpečnostní + + + záruky + + + všem + + + členským + + + zemím + 1 + + + , + + + které + + + nemají + + + jaderné + + + zbraně + 1 + + + . + + + + 3 + + George + + + Bush + + + podpořil + + + návrh + + + generálního + + + tajemníka + + + OSN + + + Butruse + + + Butruse + 1 + + + - + 1 + + + Ghálího + 1 + + + , + + + aby + + + členské + + + země + + + udržovaly + + + stálé + 1 + + + , + + + zvlášť + + + připravené + + + síly + + + schopné + + + velmi + + + rychle + + + zasáhnout + + + na + + + pokyn + + + Rady + + + bezpečnosti + + + kdekoli + + + na + + + světě + 1 + + + . + + + V + + + + + + souvislosti + + + nabídl + + + americký + + + prezident + + + pomoc + + + USA + + + k + + + výcviku + + + sil + + + OSN + + + a + + + vyzval + + + ostatní + + + státy + 1 + + + , + + + aby + + + se + + + k + + + tomuto + + + úsilí + + + přidaly + 1 + + + . + + + + 4 + + Podle + + + G + 1 + + + . + + + Bushe + + + stojí + + + světové + + + společenství + + + a + + + OSN + + + nyní + + + před + + + třemi + + + naléhavými + + + úkoly + 1 + + + : + + + udržet + + + dnešní + + + mír + + + a + + + zabránit + + + zítřejším + + + válkám + 1 + + + , + + + zabránit + + + šíření + + + zbraní + + + hromadného + + + ničení + + + a + + + zajistit + + + blahobyt + + + pro + + + všechny + + + na + + + základě + + + zásad + + + volného + + + trhu + + + a + + + ochrany + + + životního + + + prostředí + 1 + + + . + + + + diff --git a/demo/pdt_train/mf930713_046.in.conll b/demo/pdt_train/mf930713_046.in.conll new file mode 100644 index 00000000..8f2bdcb0 --- /dev/null +++ b/demo/pdt_train/mf930713_046.in.conll @@ -0,0 +1,143 @@ +# newdoc +# newpar +# sent_id = 1 +# text = V průkazu nemusí být zapsáno státní občanství +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 průkazu průkaz NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 3 obl _ _ +3 nemusí muset VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 být být AUX Vf--------A---- Polarity=Pos|VerbForm=Inf 5 aux:pass _ _ +5 zapsáno zapsaný ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 3 obj _ _ +6 státní státní ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 7 amod _ _ +7 občanství občanství NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 3 nsubj _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 2 +# text = Praha - +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Občané České republiky dosud nejsou povinni dát si vyznačit do občanského průkazu státní příslušnost. +1 Občané občan NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 6 nsubj _ _ +2 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 1 nmod _ _ +4 dosud dosud ADV Db------------- PronType=Dem 6 advmod _ _ +5 nejsou být AUX VB-P---3P-NA--- Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +6 povinni povinný ADJ ACMP------A---- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Variant=Short 0 root _ _ +7 dát dát VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 6 xcomp _ _ +8 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 9 obl _ _ +9 vyznačit vyznačit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 12 case _ _ +11 občanského občanský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 12 amod _ _ +12 průkazu průkaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 obl _ _ +13 státní státní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 14 amod _ _ +14 příslušnost příslušnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 4 +# text = Řekla to zástupkyně tiskového mluvčího ministerstva vnitra Beáta Berníková. +1 Řekla říci VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +2 to ten DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 obj _ _ +3 zástupkyně zástupkyně NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nmod _ _ +4 tiskového tiskový ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 5 amod _ _ +5 mluvčího mluvčí NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 3 nmod _ _ +6 ministerstva ministerstvo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 5 nmod _ _ +7 vnitra vnitro NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 nmod _ _ +8 Beáta Beáta PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 1 nsubj _ _ +9 Berníková Berníková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 8 flat _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 5 +# text = Záznam o státním občanství do nynějších občanských průkazů zapisuje policie na základě dokladů prokazujících toto občanství. +1 Záznam záznam NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 obj _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 státním státní ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 4 amod _ _ +4 občanství občanství NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ _ +5 do do ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +6 nynějších nynější ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 8 amod _ _ +7 občanských občanský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 8 amod _ _ +8 průkazů průkaz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 1 nmod _ _ +9 zapisuje zapisovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +10 policie policie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 9 nsubj _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +12 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 11 fixed _ _ +13 dokladů doklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 9 obl _ _ +14 prokazujících prokazující ADJ AGIP2-----A---- Animacy=Inan|Aspect=Imp|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 13 amod _ _ +15 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 16 det _ _ +16 občanství občanství NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 14 obj _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 6 +# text = Pokud držiteli občanského průkazu vyprší jeho platnost, nebude mu již tento průkaz prodloužen. +1 Pokud pokud SCONJ J,------------- _ 5 mark _ _ +2 držiteli držitel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 5 obl _ _ +3 občanského občanský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 4 amod _ _ +4 průkazu průkaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 2 nmod _ _ +5 vyprší vypršet VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 advcl _ _ +6 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 7 det _ _ +7 platnost platnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 5 punct _ _ +9 nebude být AUX VB-S---3F-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Fut|VerbForm=Fin|Voice=Act 14 aux:pass _ _ +10 mu on PRON PHZS3--3------- Case=Dat|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 14 obj _ _ +11 již již ADV Db------------- _ 14 advmod _ _ +12 tento tento DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 13 det _ _ +13 průkaz průkaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 14 nsubj:pass _ _ +14 prodloužen prodloužený ADJ VsYS---XX-AP--- Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 14 punct _ _ + +# sent_id = 7 +# text = Občan v takovém případě dostane průkaz nový - identifikační kartu. +1 Občan občan NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 5 nsubj _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 takovém takový DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 det _ _ +4 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 obl _ _ +5 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 průkaz průkaz NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 5 obj _ _ +7 nový nový ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 6 amod _ _ +8 - - PUNCT Z:------------- _ 10 punct _ _ +9 identifikační identifikační ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 kartu karta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 appos _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 8 +# text = Staré občanské průkazy zatím platí po dobu, na niž byly vydány. +1 Staré starý ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 občanské občanský ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 průkazy průkaz NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ _ +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 platí platit VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 po po ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +7 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 niž jenž PRON P9FS4---------- Case=Acc|Gender=Fem|Number=Sing|PrepCase=Pre|PronType=Rel 12 obl _ _ +11 byly být AUX VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 12 aux:pass _ _ +12 vydány vydaný ADJ VsTP---XX-AP--- Animacy=Inan|Aspect=Perf|Gender=Fem,Masc|Number=Plur|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 7 amod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 9 +# text = Stále více organizací a firem vyžaduje po zájemcích o zaměstnání, aby měli v občanském průkazu vyznačeno státní občanství České republiky. +1 Stále stále ADV Db------------- _ 2 advmod _ _ +2 více hodně ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 6 nsubj _ _ +3 organizací organizace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 2 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 firem firma NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 3 conj _ _ +6 vyžaduje vyžadovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 po po ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 zájemcích zájemce NOUN NNMP6-----A---- Animacy=Anim|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +9 o o ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 zaměstnání zaměstnání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 14 punct _ _ +12-13 aby _ _ _ _ _ _ _ _ +12 aby aby SCONJ J,------------- _ 14 mark _ _ +13 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 14 aux _ _ +14 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 6 ccomp _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 občanském občanský ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 17 amod _ _ +17 průkazu průkaz NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 14 obl _ _ +18 vyznačeno vyznačený ADJ VsNS---XX-AP--- Aspect=Perf|Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 14 xcomp _ _ +19 státní státní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 20 amod _ _ +20 občanství občanství NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 18 obj _ _ +21 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 6 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/mf930713_046.t b/demo/pdt_train/mf930713_046.t new file mode 100644 index 00000000..4e08ad8c --- /dev/null +++ b/demo/pdt_train/mf930713_046.t @@ -0,0 +1,1908 @@ + + + + + + + + + + + + Manual annotation + + advice + + + + a#a-mf930713-046-p1s1 + 0 + + + státní občanství + lexeme + + t-mf930713-046-p1s1w6 + t-mf930713-046-p1s1w7 + + + + + + + a#a-mf930713-046-p1s1w5 + + a#a-mf930713-046-p1s1w4 + a#a-mf930713-046-p1s1w3 + + + complex + zapsat + PRED + enunc + + v + deb + sim + cpl + it0 + res1 + asserted + + f + 4 + heading + v#v-w9070f2 + + + + a#a-mf930713-046-p1s1w2 + + a#a-mf930713-046-p1s1w1 + + + complex + průkaz + LOC + basic + + n.denot + inan + sg + single + + c + 1 + + + qcomplex + 1 + #Gen + ACT + t + 2 + + + atom + 1 + #Neg + RHEM + f + 3 + + + + a#a-mf930713-046-p1s1w7 + + complex + občanství + PAT + + n.denot + neut + sg + single + + f + 5 + + + + a#a-mf930713-046-p1s1w6 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + + + + a#a-mf930713-046-p2s1A + 0 + + + + a#a-mf930713-046-p2s1Aw1 + + complex + Praha + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + + + + + a#a-mf930713-046-p2s1B + 0 + + + lexeme + + t-mf930713-046-p2s1Bw2 + t-mf930713-046-p2s1Bw3 + + + + občanský průkaz + lexeme + + t-mf930713-046-p2s1Bw11 + t-mf930713-046-p2s1Bw12 + + + + státní příslušnost + lexeme + + t-mf930713-046-p2s1Bw13 + t-mf930713-046-p2s1Bw14 + + + + + + + a#a-mf930713-046-p2s1Bw5 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w243f1 + + + + a#a-mf930713-046-p2s1Bw1 + + complex + občan + ACT + + n.denot + anim + pl + single + + c + 1 + + + + a#a-mf930713-046-p2s1Bw3 + + complex + republika + APP + + n.denot + fem + sg + single + + f + 2 + + + + a#a-mf930713-046-p2s1Bw2 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 3 + + + + + + + + a#a-mf930713-046-p2s1Bw4 + + complex + dosud + TTILL + + adv.denot.ngrad.nneg + + t + 4 + + + atom + 1 + #Neg + RHEM + f + 5 + + + + a#a-mf930713-046-p2s1Bw6 + + complex + povinný + PAT + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-mf930713-046-p2s1Bw7 + + complex + dát + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 9 + v#v-w369f7 + + + qcomplex + 1 + #Cor + ACT + t + 8 + + t-mf930713-046-p2s1Bw1 + + + + + a#a-mf930713-046-p2s1Bw9 + + complex + vyznačit + PAT + + v + decl + nil + cpl + it0 + act + nil + + f + 12 + v#v-w8592f1 + + + qcomplex + 1 + #Gen + ACT + t + 10 + + + + a#a-mf930713-046-p2s1Bw8 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + inher + inher + inher + inher + + t + 11 + + t-mf930713-046-p2s1Ba1 + + + + + a#a-mf930713-046-p2s1Bw12 + + a#a-mf930713-046-p2s1Bw10 + + + complex + průkaz + DIR3 + basic + + n.denot + inan + sg + single + + f + 13 + + + t-mf930713-046-p1s1w2 + GEN + + + + + + a#a-mf930713-046-p2s1Bw11 + + complex + občanský + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + a#a-mf930713-046-p2s1Bw14 + + complex + příslušnost + PAT + + n.denot.neg + fem + sg + single + neg0 + + f + 15 + + + t-mf930713-046-p1s1w7 + GEN + + + + + + a#a-mf930713-046-p2s1Bw13 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + + + + + + + + a#a-mf930713-046-p2s2 + 0 + + + Beata Berníková + person + + t-mf930713-046-p2s2w8 + t-mf930713-046-p2s2w9 + + + + tiskový mluvčí + lexeme + + t-mf930713-046-p2s2w4 + t-mf930713-046-p2s2w5 + + + + ministerstvo vnitra + lexeme + + t-mf930713-046-p2s2w6 + t-mf930713-046-p2s2w7 + + + + + + + a#a-mf930713-046-p2s2w1 + + complex + říci + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w5874f1 + + + + a#a-mf930713-046-p2s2w2 + + complex + ten + EFF + + adj.pron.def.demon + + t + 1 + + + t-mf930713-046-p2s1Bw5 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-mf930713-046-p2s2w9 + + complex + Berníková + ACT + 1 + + n.denot + fem + sg + single + + f + 4 + + + + a#a-mf930713-046-p2s2w8 + + complex + Beáta + RSTR + 1 + + n.denot + fem + sg + single + + f + 5 + + + + a#a-mf930713-046-p2s2w3 + + complex + zástupkyně + RSTR + + n.denot + fem + sg + single + + f + 6 + + + + a#a-mf930713-046-p2s2w5 + + complex + mluvčí + PAT + + n.denot + anim + sg + single + + f + 7 + + + + a#a-mf930713-046-p2s2w4 + + complex + tiskový + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + a#a-mf930713-046-p2s2w6 + + complex + ministerstvo + APP + + n.denot + neut + sg + single + + f + 9 + + + t-mf930713-046-p2s1Bw3 + P_FUNCT + + + + + + a#a-mf930713-046-p2s2w7 + + complex + vnitro + APP + + n.denot + neut + sg + single + + f + 10 + + + + + + + + + + + + + + + a#a-mf930713-046-p2s3 + 0 + + + státní občanství + lexeme + + t-mf930713-046-p2s3w3 + t-mf930713-046-p2s3w4 + + + + občanský průkaz + lexeme + + t-mf930713-046-p2s3w7 + t-mf930713-046-p2s3w8 + + + + + + + a#a-mf930713-046-p2s3w9 + + complex + zapisovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + v#v-w9013f1 + + + + a#a-mf930713-046-p2s3w1 + + complex + záznam + PAT + + n.denot + inan + sg + single + + t + 1 + + + + a#a-mf930713-046-p2s3w4 + + a#a-mf930713-046-p2s3w2 + + + complex + občanství + PAT + + n.denot + neut + sg + single + + f + 3 + + + t-mf930713-046-p2s1Bw14 + GEN + + + + + + a#a-mf930713-046-p2s3w3 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + + + + a#a-mf930713-046-p2s3w8 + + a#a-mf930713-046-p2s3w5 + + + complex + průkaz + DIR3 + basic + + n.denot + inan + pl + single + + t + 6 + + + t-mf930713-046-p2s1Bw12 + SPEC + + + + + + a#a-mf930713-046-p2s3w6 + + complex + nynější + RSTR + + adj.denot + pos + neg0 + + t + 4 + + + + a#a-mf930713-046-p2s3w7 + + complex + občanský + RSTR + + adj.denot + pos + neg0 + + t + 5 + + + + + + a#a-mf930713-046-p2s3w10 + + complex + policie + ACT + + n.denot + fem + sg + single + + f + 8 + + + + a#a-mf930713-046-p2s3w13 + + a#a-mf930713-046-p2s3w11 + a#a-mf930713-046-p2s3w12 + + + complex + doklad + CRIT + + n.denot + inan + pl + single + + f + 9 + + + + a#a-mf930713-046-p2s3w14 + + complex + prokazující + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-mf930713-046-p2s3w16 + + complex + občanství + PAT + + n.denot + neut + sg + single + + t + 11 + + + t-mf930713-046-p2s3w4 + SPEC + + + + + + a#a-mf930713-046-p2s3w15 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 10 + + + + + + + + + + + + + a#a-mf930713-046-p2s4 + 0 + + + občanský průkaz + lexeme + + t-mf930713-046-p2s4w3 + t-mf930713-046-p2s4w4 + + + + + + + a#a-mf930713-046-p2s4w14 + + a#a-mf930713-046-p2s4w9 + + + complex + prodloužit + PRED + enunc + + v + decl + post + cpl + it0 + pas + asserted + + f + 13 + v#v-w4326f1 + + + + a#a-mf930713-046-p2s4w5 + + a#a-mf930713-046-p2s4w1 + + + complex + vypršet + COND + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + + + t-mf930713-046-p2s4w14 + discourse + 0 + 0 + cond + + a#a-mf930713-046-p2s4w1 + + + + v#v-w8267f1 + + + + a#a-mf930713-046-p2s4w2 + + complex + držitel + BEN + nr + + n.denot + anim + sg + single + + c + 3 + + + + a#a-mf930713-046-p2s4w4 + + complex + průkaz + PAT + + n.denot + inan + sg + single + + t + 2 + + + t-mf930713-046-p2s3w8 + GEN + + + + + + a#a-mf930713-046-p2s4w3 + + complex + občanský + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + + + a#a-mf930713-046-p2s4w7 + + complex + platnost + ACT + + n.denot.neg + fem + sg + single + neg0 + + f + 6 + + + + a#a-mf930713-046-p2s4w6 + + complex + #PersPron + APP + + n.pron.def.pers + inan + sg + 3 + basic + + t + 5 + + + t-mf930713-046-p2s4w4 + SPEC + + + + + + + + + + a#a-mf930713-046-p2s4w13 + + complex + průkaz + PAT + + n.denot + inan + sg + single + + t + 8 + + + t-mf930713-046-p2s4w6 + GEN + + + + + + a#a-mf930713-046-p2s4w12 + + complex + tento + RSTR + + adj.pron.def.demon + + t + 7 + + + + + qcomplex + 1 + #Gen + ACT + t + 9 + + + + a#a-mf930713-046-p2s4w10 + + complex + #PersPron + BEN + nr + + n.pron.def.pers + anim + sg + 3 + basic + + t + 10 + + + t-mf930713-046-p2s4w2 + SPEC + + + + + + a#a-mf930713-046-p2s4w11 + + atom + již + RHEM + f + 11 + + + atom + 1 + #Neg + RHEM + f + 12 + + + + + + + a#a-mf930713-046-p2s5 + 0 + + + identifikační karta + lexeme + + t-mf930713-046-p2s5w9 + t-mf930713-046-p2s5w10 + + + + + + + a#a-mf930713-046-p2s5w5 + + complex + dostat + PRED + enunc + + v + decl + post + cpl + it0 + act + asserted + + f + 4 + v#v-w732f1 + + + + a#a-mf930713-046-p2s5w1 + + complex + občan + ACT + + n.denot + anim + sg + single + + t + 1 + + + t-mf930713-046-p2s4w10 + GEN + + + + + + a#a-mf930713-046-p2s5w4 + + a#a-mf930713-046-p2s5w2 + + + complex + případ + TWHEN + basic + + n.denot + inan + sg + single + + t + 3 + + + + a#a-mf930713-046-p2s5w3 + + complex + takový + RSTR + + adj.pron.def.demon + + t + 2 + + + + + + a#a-mf930713-046-p2s5w8 + + coap + #Dash + APPS + 7 + + + + a#a-mf930713-046-p2s5w6 + + complex + průkaz + PAT + 1 + + n.denot + inan + sg + single + + t + 5 + + + t-mf930713-046-p2s4w13 + CONTRAST + + + + + + a#a-mf930713-046-p2s5w7 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-mf930713-046-p2s5w10 + + complex + karta + PAT + 1 + + n.denot + fem + sg + single + + f + 8 + + + + a#a-mf930713-046-p2s5w9 + + complex + identifikační + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + + a#a-mf930713-046-p2s6 + 0 + + + občanský průkaz + lexeme + + t-mf930713-046-p2s6w2 + t-mf930713-046-p2s6w3 + + + + + + + a#a-mf930713-046-p2s6w5 + + complex + platit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w3468f2 + + + + a#a-mf930713-046-p2s6w3 + + complex + průkaz + ACT + + n.denot + inan + pl + single + + t + 3 + + + t-mf930713-046-p2s4w13 + SPEC + + + + + + a#a-mf930713-046-p2s6w1 + + complex + starý + RSTR + + adj.denot + pos + neg0 + + c + 1 + + + + a#a-mf930713-046-p2s6w2 + + complex + občanský + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + + a#a-mf930713-046-p2s6w4 + + complex + zatím + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 4 + + + + a#a-mf930713-046-p2s6w7 + + a#a-mf930713-046-p2s6w6 + + + complex + doba + TFHL + + n.denot + fem + sg + single + + f + 6 + + + + a#a-mf930713-046-p2s6w12 + + a#a-mf930713-046-p2s6w11 + + + complex + vydat + RSTR + + v + decl + ant + cpl + it0 + pas + asserted + + f + 10 + v#v-w7842f1 + + + + a#a-mf930713-046-p2s6w10 + + a#a-mf930713-046-p2s6w9 + + + complex + který + TFHL + + n.pron.indef + inher + inher + relat + inher + + t + 7 + + t-mf930713-046-p2s6w7 + + + + qcomplex + 1 + #Gen + ACT + t + 8 + + + complex + 1 + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 9 + + + t-mf930713-046-p2s6w3 + SPEC + + + + + + + + + + + + + a#a-mf930713-046-p2s7 + 0 + + + location + + t-mf930713-046-p2s7w21 + t-mf930713-046-p2s7w22 + + + + státní občanství + lexeme + + t-mf930713-046-p2s7w19 + t-mf930713-046-p2s7w20 + + + + občanský průkaz + lexeme + + t-mf930713-046-p2s7w16 + t-mf930713-046-p2s7w17 + + + + + + + a#a-mf930713-046-p2s7w6 + + complex + vyžadovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w8628f1 + + + + a#a-mf930713-046-p2s7w4 + + coap + a + CONJ + 2 + + + + a#a-mf930713-046-p2s7w3 + + complex + organizace + ACT + 1 + + n.denot + fem + pl + single + + c + 1 + + + + a#a-mf930713-046-p2s7w5 + + complex + firma + ACT + 1 + + n.denot + fem + pl + single + + c + 3 + + + + a#a-mf930713-046-p2s7w1 + + atom + stále + RHEM + f + 4 + + + + a#a-mf930713-046-p2s7w2 + + complex + hodně + RSTR + + adj.quant.grad + comp + basic + + f + 5 + + + + + + a#a-mf930713-046-p2s7w8 + + a#a-mf930713-046-p2s7w7 + + + complex + zájemce + ORIG + + n.denot + anim + pl + single + + f + 7 + + + + a#a-mf930713-046-p2s7w10 + + a#a-mf930713-046-p2s7w9 + + + complex + zaměstnání + PAT + + n.denot.neg + neut + sg + single + neg0 + + f + 8 + + + + + + a#a-mf930713-046-p2s7w18 + + a#a-mf930713-046-p2s7w12 + a#a-mf930713-046-p2s7w14 + + + complex + vyznačit + PAT + + v + hrt + nil + cpl + it0 + res2.2 + potential + + f + 12 + v#v-w8592f1 + + + + a#a-mf930713-046-p2s7w17 + + a#a-mf930713-046-p2s7w15 + + + complex + průkaz + LOC + basic + + n.denot + inan + sg + single + + t + 10 + + + t-mf930713-046-p2s6a1 + SUB_SET + + + + + + a#a-mf930713-046-p2s7w16 + + complex + občanský + RSTR + + adj.denot + pos + neg0 + + t + 9 + + + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + complex + 1 + #PersPron + BEN + + n.pron.def.pers + pl + 3 + + 13 + + + + a#a-mf930713-046-p2s7w20 + + complex + občanství + PAT + + n.denot + neut + sg + single + + t + 15 + + + + a#a-mf930713-046-p2s7w19 + + complex + státní + RSTR + + adj.denot + pos + neg0 + + t + 14 + + + + a#a-mf930713-046-p2s7w22 + + complex + republika + APP + + n.denot + fem + sg + single + + f + 16 + + + t-mf930713-046-p2s1Bw3 + SPEC + + + + + + a#a-mf930713-046-p2s7w21 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + + + + + diff --git a/demo/pdt_train/mf930713_046.txt b/demo/pdt_train/mf930713_046.txt new file mode 100644 index 00000000..aaee793a --- /dev/null +++ b/demo/pdt_train/mf930713_046.txt @@ -0,0 +1,3 @@ +V průkazu nemusí být zapsáno státní občanství + +Praha - Občané České republiky dosud nejsou povinni dát si vyznačit do občanského průkazu státní příslušnost. Řekla to zástupkyně tiskového mluvčího ministerstva vnitra Beáta Berníková. Záznam o státním občanství do nynějších občanských průkazů zapisuje policie na základě dokladů prokazujících toto občanství. Pokud držiteli občanského průkazu vyprší jeho platnost, nebude mu již tento průkaz prodloužen. Občan v takovém případě dostane průkaz nový - identifikační kartu. Staré občanské průkazy zatím platí po dobu, na niž byly vydány. Stále více organizací a firem vyžaduje po zájemcích o zaměstnání, aby měli v občanském průkazu vyznačeno státní občanství České republiky. \ No newline at end of file diff --git a/demo/pdt_train/mf930713_046.w b/demo/pdt_train/mf930713_046.w new file mode 100644 index 00000000..6e08272b --- /dev/null +++ b/demo/pdt_train/mf930713_046.w @@ -0,0 +1,375 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1993 +<authname>y +<opus>mf930713 +<id>046 + + + + 1 + + V + + + průkazu + + + nemusí + + + být + + + zapsáno + + + státní + + + občanství + + + + 2 + + Praha + + + - + + + Občané + + + České + + + republiky + + + dosud + + + nejsou + + + povinni + + + dát + + + si + + + vyznačit + + + do + + + občanského + + + průkazu + + + státní + + + příslušnost + 1 + + + . + + + Řekla + + + to + + + zástupkyně + + + tiskového + + + mluvčího + + + ministerstva + + + vnitra + + + Beáta + + + Berníková + 1 + + + . + + + Záznam + + + o + + + státním + + + občanství + + + do + + + nynějších + + + občanských + + + průkazů + + + zapisuje + + + policie + + + na + + + základě + + + dokladů + + + prokazujících + + + toto + + + občanství + 1 + + + . + + + Pokud + + + držiteli + + + občanského + + + průkazu + + + vyprší + + + jeho + + + platnost + 1 + + + , + + + nebude + + + mu + + + již + + + tento + + + průkaz + + + prodloužen + 1 + + + . + + + Občan + + + v + + + takovém + + + případě + + + dostane + + + průkaz + + + nový + + + - + + + identifikační + + + kartu + 1 + + + . + + + Staré + + + občanské + + + průkazy + + + zatím + + + platí + + + po + + + dobu + 1 + + + , + + + na + + + niž + + + byly + + + vydány + 1 + + + . + + + Stále + + + více + + + organizací + + + a + + + firem + + + vyžaduje + + + po + + + zájemcích + + + o + + + zaměstnání + 1 + + + , + + + aby + + + měli + + + v + + + občanském + + + průkazu + + + vyznačeno + + + státní + + + občanství + + + České + + + republiky + 1 + + + . + + + + diff --git a/demo/pdt_train/mf930713_085.in.conll b/demo/pdt_train/mf930713_085.in.conll new file mode 100644 index 00000000..d9ea57a8 --- /dev/null +++ b/demo/pdt_train/mf930713_085.in.conll @@ -0,0 +1,240 @@ +1 Výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ _ +2 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +3 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 obavy obava NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 3 dobj _ _ +5 z z ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +6 povinného povinný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +7 výkupu výkup NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +8 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ _ + +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 ( ( PUNCT Z:------------- _ 1 punct _ SpaceAfter=No +3 jkl jkl PROPN NNXXX-----A---8 Abbr=Yes|NameType=Sur|Negative=Pos 1 dep _ SpaceAfter=No +4 ) ) PUNCT Z:------------- _ 1 punct _ _ +5 - - PUNCT Z:------------- _ 1 punct _ _ + +1 Někteří některý DET PZMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Ind 2 det _ _ +2 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +3 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 4 amod _ _ +4 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +5 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 obavy obava NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 že že SCONJ J,------------- _ 14 mark _ _ +9 novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 14 nsubj _ _ +10 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +11 o o ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 ochraně ochrana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +14 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ _ +15 některé některý PRON PZYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Ind 18 dobj _ _ +16 z z ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 nich on PRON P5XP2--3------- Case=Gen|Number=Plur|Person=3|PrepCase=Pre|PronType=Prs 15 nmod _ _ +18 přivést přivést VERB Vf--------A---- Negative=Pos|VerbForm=Inf 14 xcomp _ _ +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 bankrotu bankrot NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 5 punct _ _ + +1 Novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 10 nsubj _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 6 punct _ _ +3 kterou který PRON P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 6 dobj _ _ +4 v v ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 sobotu sobota NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +6 schválil schválit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 acl _ _ +7 parlament parlament NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 6 nsubj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 6 punct _ _ +9 totiž totiž ADV Db------------- _ 10 cc _ _ +10 ukládá ukládat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +11 výrobcům výrobce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 10 iobj _ _ +12 i i CONJ J^------------- _ 11 cc _ _ +13 dodavatelům dodavatel NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 povinnost povinnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 10 dobj _ _ +15 vykupovat vykupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 14 acl _ _ +16 vratné vratný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +17 obaly obal NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +18 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +19 omezení omezení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +20 množství množství NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +21 i i CONJ J^------------- _ 19 cc _ _ +22 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +23 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 19 conj _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 28 punct _ _ +25-26 aby _ _ _ _ _ _ _ _ +25 aby aby SCONJ J,------------- _ 28 mark _ _ +26 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 28 aux _ _ +27 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 28 dobj _ _ +28 vázali vázat VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 23 acl _ _ +29 na na ADP RR--4---------- AdpType=Prep|Case=Acc 30 case _ _ +30 nákup nákup NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +31 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 30 nmod _ SpaceAfter=No +32 . . PUNCT Z:------------- _ 10 punct _ _ + +1 Předseda předseda NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +2 Svazu svaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +3 výrobců výrobce NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +4 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 5 amod _ _ +5 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ _ +6 Zdeněk Zdeněk PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 8 nsubj _ _ +7 Švehla Švehla PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 6 name _ _ +8 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 11 punct _ _ +10 že že SCONJ J,------------- _ 11 mark _ _ +11 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 ccomp _ _ +12 největší velký ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +13 přebytek přebytek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 11 nsubj _ _ +14 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 13 nmod _ _ +15 o o ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 objemu objem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 14 nmod _ _ +17 0 0 NUM C=------------- NumForm=Digit|NumType=Card 20 nummod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 17 punct _ SpaceAfter=No +19 33 33 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ _ +20 litru l`litr NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 8 punct _ _ + +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 oběhu oběh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 jich on PRON PPXP2--3------- Case=Gen|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +5 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 něho on PRON P5ZS2--3------1 Case=Gen|Gender=Masc,Neut|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 3 nmod _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 šest šest NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 9 nummod:gov _ _ +9 milionů milión NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 advmod _ _ +10 navíc navíc ADV Db------------- _ 9 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ _ +3 totiž totiž ADV Db------------- _ 4 cc _ _ +4 začali začít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 plnit plnit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 4 xcomp _ _ +6 limonády limonáda NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ _ +7 do do ADP RR--2---------- AdpType=Prep|Case=Gen 9 case _ _ +8 jiných jiný ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 9 amod _ _ +9 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 4 punct _ _ +11 ale ale CONJ J^------------- _ 4 cc _ _ +12 původní původní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 láhve láhev NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 15 dobj _ _ +14 už už ADV Db------------- _ 15 advmod _ _ +15 nevykoupili vykoupit VERB VpMP---XR-NA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Neg|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 4 punct _ _ + +1 Svaz svaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ _ +2 sdružuje sdružovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 30 30 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +4 tuzemských tuzemský ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 výrobců výrobce NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 dobj _ _ +6 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 7 amod _ _ +7 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ _ +8 z z ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +9 celkových celkový ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 asi asi PART TT------------- _ 11 advmod:emph _ _ +11 60 60 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 2 punct _ _ + +1 " " PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +2-3 Kdyby _ _ _ _ _ _ _ _ +2 Když když SCONJ J,------------- _ 5 mark _ _ +3 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 5 aux _ _ +4 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +5 museli muset VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 10 advcl _ _ +6 vykoupit vykoupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 5 xcomp _ _ +7 všechny všechen PRON PLFP4---------- Case=Acc|Gender=Fem|Number=Plur|PronType=Tot 8 nmod _ _ +8 lahve lahev NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 6 dobj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 zůstane zůstat VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 23 ccomp _ _ +11 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 10 dobj _ _ +12 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 10 nsubj _ _ +13 peněz peníze NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +14 blokovaných blokovaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 13 amod _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 obalech obal NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ _ +17 a a CONJ J^------------- _ 10 cc _ _ +18 hrozí hrozit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 10 conj _ _ +19 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 18 dobj _ _ +20 bankrot bankrot NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 18 nsubj _ SpaceAfter=No +21 , , PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +22 " " PUNCT Z:------------- _ 10 punct _ _ +23 tvrdí tvrdit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +24 Zdeněk Zdeněk PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 23 nsubj _ _ +25 Švehla Švehla PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 24 name _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 23 punct _ _ + +1 Řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 7 punct _ _ +3 že že SCONJ J,------------- _ 7 mark _ _ +4 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 6 case _ _ +5 stejném stejný ADJ AAMS6----1A---- Animacy=Anim|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 duchu duch NOUN NNMS6-----A---1 Animacy=Anim|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +7 předal předat VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 ccomp _ _ +8 svaz svaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 nsubj _ _ +9 připomínky připomínka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 7 dobj _ _ +10 parlamentu parlament NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 1 punct _ _ +12 ale ale CONJ J^------------- _ 1 cc _ _ +13 ten ten PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 17 nsubj _ _ +14 na na ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +15 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 17 iobj _ _ +16 vůbec vůbec ADV Db------------- _ 17 advmod:emph _ _ +17 nebral brát VERB VpYS---XR-NA--- Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ _ +18 zřetel zřetel NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 17 dobj _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Předseda předseda NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +2 Českého český ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 svazu svaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +4 pivovarů pivovar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 sladoven sladovna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 conj _ _ +7 Antonín Antonín PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 10 nsubj _ _ +8 Kratochvíle Kratochvíle PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 naopak naopak ADV Db------------- _ 10 advmod _ _ +10 nepředpokládá předpokládat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 15 punct _ _ +12 že že SCONJ J,------------- _ 15 mark _ _ +13 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 15 aux _ _ +14 novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ _ +15 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 10 ccomp _ _ +16 na na ADP RR--4---------- AdpType=Prep|Case=Acc 17 case _ _ +17 pivovary pivovar NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ _ +18 negativní negativní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 dopad dopad NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 10 punct _ _ + +1 Běžné běžný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 3 amod _ _ +2 pivní pivní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 3 amod _ _ +3 láhve láhev NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 8 nsubj _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 8 aux _ _ +5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 auxpass:reflex _ _ +6 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 něho on PRON P5ZS2--3------1 Case=Gen|Gender=Masc,Neut|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 8 nmod _ _ +8 měly mít VERB VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 vykupovat vykupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +10 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 problémů problém NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ _ +12 a a CONJ J^------------- _ 8 cc _ _ +13 na na ADP RR--6---------- AdpType=Prep|Case=Loc 14 case _ _ +14 vykupování vykupování NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +15 speciálních speciální ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +16 firemních firemní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +17 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +18 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +19 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +20 prodejci prodejce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 23 nsubj _ _ +21 a a CONJ J^------------- _ 20 cc _ _ +22 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 20 conj _ _ +23 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 8 conj _ _ +24 dohodnout dohodnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 xcomp _ _ +25 smluvně smluvně ADV Dg-------1A---- Degree=Pos|Negative=Pos 24 advmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 8 punct _ _ + +1 " " PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +2 Jako jako SCONJ J,------------- _ 3 mark _ _ +3 spotřebitel spotřebitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 xcomp _ _ +4 novelu novela NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +5 vítám vítat VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 8 ccomp _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +7 " " PUNCT Z:------------- _ 5 punct _ _ +8 dodal dodat VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/mf930713_085.t b/demo/pdt_train/mf930713_085.t new file mode 100644 index 00000000..fa036344 --- /dev/null +++ b/demo/pdt_train/mf930713_085.t @@ -0,0 +1,3684 @@ + + + + + + + + + + + + Manual annotation + + news + + + + a#a-mf930713-085-p1s1 + 0 + + + výkup lahví + lexeme + + t-mf930713-085-p1s1w7 + t-mf930713-085-p1s1w8 + + + + + + + a#a-mf930713-085-p1s1w3 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + heading + v#v-w1855f10 + + + + a#a-mf930713-085-p1s1w1 + + complex + výrobce + ACT + + n.denot + anim + pl + single + + c + 1 + + + + a#a-mf930713-085-p1s1w2 + + complex + nápoj + PAT + + n.denot + inan + pl + single + + f + 2 + + + + + + a#a-mf930713-085-p1s1w4 + + complex + obava + CPHR + + n.denot + fem + pl + single + + f + 5 + v#v-w2434f1 + + + qcomplex + 1 + #QCor + ACT + t + 4 + + t-mf930713-085-p1s1w1 + + + + + a#a-mf930713-085-p1s1w7 + + a#a-mf930713-085-p1s1w5 + + + complex + výkup + PAT + + n.denot + inan + sg + single + + f + 6 + + + + a#a-mf930713-085-p1s1w8 + + complex + lahev + PAT + + n.denot + fem + pl + single + + f + 7 + + + + a#a-mf930713-085-p1s1w6 + + complex + povinný + RSTR + + adj.denot + pos + neg0 + + f + 8 + + + + + + + + + + + a#a-mf930713-085-p2s1A + 0 + + + + a#a-mf930713-085-p2s1Aw1 + + complex + Praha + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + + + + a#a-mf930713-085-p2s1Aw3 + + complex + jkl + PAR + enunc + 1 + 1 + + n.denot + nr + nr + single + + f + 2 + + + + + + + a#a-mf930713-085-p2s1B + 0 + + + nealkoholický nápoj + lexeme + + t-mf930713-085-p2s1Bw3 + t-mf930713-085-p2s1Bw4 + + + + zákon o ochraně spotřebitele + lexeme + + t-mf930713-085-p2s1Bw10 + t-mf930713-085-p2s1Bw12 + t-mf930713-085-p2s1Bw13 + + + + + + + a#a-mf930713-085-p2s1Bw5 + + complex + mít + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 5 + v#v-w1855f10 + + + + a#a-mf930713-085-p2s1Bw2 + + complex + výrobce + ACT + + n.denot + anim + pl + single + + c + 1 + + + t-mf930713-085-p1s1a0 + SPEC + + + + + + a#a-mf930713-085-p2s1Bw4 + + complex + nápoj + PAT + + n.denot + inan + pl + single + + f + 2 + + + t-mf930713-085-p1s1w2 + GEN + + + + + + a#a-mf930713-085-p2s1Bw3 + + complex + alkoholický + RSTR + + adj.denot + pos + neg1 + + f + 3 + + + + + + a#a-mf930713-085-p2s1Bw1 + + complex + který + RSTR + + adj.pron.indef + indef1 + + f + 4 + + + + + + a#a-mf930713-085-p2s1Bw6 + + complex + obava + CPHR + + n.denot + fem + pl + single + + f + 7 + + + t-mf930713-085-p1s1w4 + SPEC + + + v#v-w2434f1 + + + qcomplex + 1 + #QCor + ACT + t + 6 + + t-mf930713-085-p2s1Bw2 + + + + + a#a-mf930713-085-p2s1Bw18 + + a#a-mf930713-085-p2s1Bw14 + a#a-mf930713-085-p2s1Bw8 + + + complex + přivést + PAT + + v + poss + sim + cpl + it0 + act + asserted + + f + 14 + v#v-w5329f1 + + + + a#a-mf930713-085-p2s1Bw9 + + complex + novela + ACT + + n.denot + fem + sg + single + + c + 8 + + + + a#a-mf930713-085-p2s1Bw10 + + complex + zákon + PAT + + n.denot + inan + sg + single + + f + 9 + + + + a#a-mf930713-085-p2s1Bw12 + + a#a-mf930713-085-p2s1Bw11 + + + complex + ochrana + PAT + + n.denot + fem + sg + single + + f + 10 + + + + a#a-mf930713-085-p2s1Bw13 + + complex + spotřebitel + PAT + + n.denot + anim + sg + single + + f + 11 + + + + + + + + + + a#a-mf930713-085-p2s1Bw15 + + complex + který + PAT + + n.pron.indef + neut + pl + indef1 + 3 + + t + 13 + + + t-mf930713-085-p2s1Bw17 + SET_SUB + + + + + + a#a-mf930713-085-p2s1Bw17 + + a#a-mf930713-085-p2s1Bw16 + + + complex + #PersPron + DIR1 + basic + + n.pron.def.pers + anim + pl + 3 + basic + + t + 12 + + + t-mf930713-085-p2s1Ba0 + SPEC + + + + + + + + a#a-mf930713-085-p2s1Bw20 + + a#a-mf930713-085-p2s1Bw19 + + + complex + bankrot + DIR3 + to + 1 + + n.denot + inan + sg + single + + f + 15 + + + + + + + + + + + a#a-mf930713-085-p2s2 + 0 + + + + a#a-mf930713-085-p2s2w10 + + complex + ukládat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 7 + + + t-mf930713-085-p2s1Bw5 + discourse + 0 + 0 + reason + + t-mf930713-085-p2s2w9 + + + + v#v-w7102f2 + + + + a#a-mf930713-085-p2s2w9 + + atom + totiž + PREC + t + 1 + + + + a#a-mf930713-085-p2s2w1 + + complex + novela + ACT + + n.denot + fem + sg + single + + t + 2 + + + t-mf930713-085-p2s1Bw9 + SPEC + + + + + + a#a-mf930713-085-p2s2w6 + + complex + schválit + RSTR + + v + decl + ant + cpl + it0 + act + asserted + + f + 5 + v#v-w6054f1 + + + + a#a-mf930713-085-p2s2w3 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 3 + + t-mf930713-085-p2s2w1 + + + + + a#a-mf930713-085-p2s2w5 + + a#a-mf930713-085-p2s2w4 + + + complex + sobota + TWHEN + basic + + n.denot + fem + sg + single + + t + 4 + + + + a#a-mf930713-085-p2s2w7 + + complex + parlament + ACT + + n.denot + inan + sg + single + + f + 6 + + + + + + + + a#a-mf930713-085-p2s2w12 + + coap + i + CONJ + 9 + + + + a#a-mf930713-085-p2s2w11 + + complex + výrobce + ADDR + 1 + + n.denot + anim + pl + single + + t + 8 + + + t-mf930713-085-p2s1Bw17 + SUB_SET + + + + + + a#a-mf930713-085-p2s2w13 + + complex + dodavatel + ADDR + 1 + + n.denot + anim + pl + single + + f + 10 + + + + + + a#a-mf930713-085-p2s2w14 + + complex + povinnost + CPHR + + n.denot.neg + fem + sg + single + neg0 + + f + 12 + v#v-w4159f1 + + + qcomplex + 1 + #QCor + ACT + t + 11 + + t-mf930713-085-p2s2w12 + + + + + a#a-mf930713-085-p2s2w15 + + complex + vykupovat + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 14 + v#v-w8048f1 + + + qcomplex + 1 + #Cor + ACT + t + 13 + + t-mf930713-085-p2s2w12 + + + + + a#a-mf930713-085-p2s2w17 + + complex + obal + PAT + + n.denot + inan + pl + single + + f + 15 + + + t-mf930713-085-p1s1w8 + SPEC + + + + + + a#a-mf930713-085-p2s2w16 + + complex + vratný + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + a#a-mf930713-085-p2s2w21 + + coap + i + CONJ + 20 + + + + a#a-mf930713-085-p2s2w19 + + a#a-mf930713-085-p2s2w18 + + + complex + omezení + ACMP + wout + 1 + + n.denot.neg + neut + sg + single + neg0 + + f + 18 + v#v-w3075f1 + + + qcomplex + 1 + #Gen + ACT + t + 17 + + + + a#a-mf930713-085-p2s2w20 + + complex + množství + PAT + + n.denot + neut + sg + single + + f + 19 + + + + + + a#a-mf930713-085-p2s2w28 + + a#a-mf930713-085-p2s2w23 + a#a-mf930713-085-p2s2w22 + a#a-mf930713-085-p2s2w25 + + + complex + vázat + ACMP + circ + 1 + + v + decl + nil + proc + it0 + act + potential + + f + 23 + v#v-w7528f2 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + pl + 3 + basic + + t + 21 + + + t-mf930713-085-p2s2a1 + SPEC + + + + + + a#a-mf930713-085-p2s2w27 + + complex + #PersPron + PAT + + n.pron.def.pers + inan + pl + 3 + basic + + t + 22 + + + t-mf930713-085-p2s2w17 + SPEC + + + + + + a#a-mf930713-085-p2s2w30 + + a#a-mf930713-085-p2s2w29 + + + complex + nákup + AIM + + n.denot + inan + sg + single + + f + 24 + + + + a#a-mf930713-085-p2s2w31 + + complex + zboží + PAT + + n.denot + neut + sg + single + + f + 25 + + + + + + + + + + + + + + + + + a#a-mf930713-085-p3s1 + 0 + + + Zdeněk Švehla + person + + t-mf930713-085-p3s1w6 + t-mf930713-085-p3s1w7 + + + + institution + + t-mf930713-085-p3s1w2 + t-mf930713-085-p3s1w3 + t-mf930713-085-p3s1w4 + t-mf930713-085-p3s1w5 + + + + number + + t-mf930713-085-p3s1w17 + + + + + + + a#a-mf930713-085-p3s1w8 + + complex + uvést + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 8 + v#v-w7449f1 + + + + a#a-mf930713-085-p3s1w7 + + complex + Švehla + ACT + 1 + + n.denot + anim + sg + single + + c + 1 + + + + a#a-mf930713-085-p3s1w6 + + complex + Zdeněk + RSTR + 1 + + n.denot + anim + sg + single + + f + 2 + + + + a#a-mf930713-085-p3s1w1 + + complex + předseda + RSTR + + n.denot + anim + sg + single + + f + 3 + + + + a#a-mf930713-085-p3s1w2 + + complex + svaz + APP + + n.denot + inan + sg + single + + f + 7 + + + + a#a-mf930713-085-p3s1w3 + + complex + výrobce + APP + + n.denot + anim + pl + single + + t + 6 + + + t-mf930713-085-p2s2w11 + SPEC + + + + + + a#a-mf930713-085-p3s1w5 + + complex + nápoj + PAT + + n.denot + inan + pl + single + + t + 5 + + + t-mf930713-085-p2s1Bw4 + GEN + + + + + + a#a-mf930713-085-p3s1w4 + + complex + alkoholický + RSTR + + adj.denot + pos + neg1 + + t + 4 + + + + + + + + + + + + + + a#a-mf930713-085-p3s1w11 + + a#a-mf930713-085-p3s1w10 + + + complex + být + EFF + + v + decl + sim + proc + it0 + act + asserted + + f + 9 + v#v-w243f1 + + + + a#a-mf930713-085-p3s1w12 + + complex + velký + PAT + + adj.denot + sup + neg0 + + f + 10 + + + + a#a-mf930713-085-p3s1w13 + + complex + přebytek + ACT + + n.denot + inan + sg + single + + f + 11 + + + + a#a-mf930713-085-p3s1w14 + + complex + lahev + MAT + + n.denot + fem + pl + single + + t + 12 + + + t-mf930713-085-p2s2w27 + SET_SUB + + + + + + a#a-mf930713-085-p3s1w16 + + a#a-mf930713-085-p3s1w15 + + + complex + objem + RSTR + + n.denot + inan + sg + single + + f + 13 + + + + a#a-mf930713-085-p3s1w18 + + complex + l + RSTR + + n.denot + inan + sg + single + + f + 14 + + + + a#a-mf930713-085-p3s1w17 + + complex + 0.33 + RSTR + + adj.quant.def + basic + + f + 15 + + + + + + + + + + + + + + + + + a#a-mf930713-085-p3s2 + 0 + + + number + + t-mf930713-085-p3s2w8 + t-mf930713-085-p3s2w9 + + + + + + + a#a-mf930713-085-p3s2w3 + + complex + být + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 4 + v#v-w243f1 + + + + a#a-mf930713-085-p3s2w2 + + a#a-mf930713-085-p3s2w1 + + + complex + oběh + LOC + basic + + n.denot + inan + sg + single + + c + 1 + + + + a#a-mf930713-085-p3s2w4 + + complex + #PersPron + ACT + + n.pron.def.pers + fem + pl + 3 + basic + + t + 2 + + + t-mf930713-085-p3s1w14 + SPEC + + + + + + a#a-mf930713-085-p3s2w6 + + a#a-mf930713-085-p3s2w5 + + + complex + #PersPron + CRIT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 3 + + + t-mf930713-085-p3s1w7 + SPEC + + + + + + a#a-mf930713-085-p3s2w9 + + a#a-mf930713-085-p3s2w7 + + + complex + milión + PAT + + n.quant.def + inan + pl + basic + + f + 5 + + + + a#a-mf930713-085-p3s2w8 + + complex + šest + RSTR + + adj.quant.def + basic + + f + 6 + + + + + + a#a-mf930713-085-p3s2w10 + + complex + navíc + EXT + basic + + adv.denot.ngrad.nneg + + f + 7 + + + + + + + a#a-mf930713-085-p3s3 + 0 + + + + a#a-mf930713-085-p3s3w11 + + coap + ale + ADVS + 10 + + + t-mf930713-085-p3s2w3 + discourse + 0 + 0 + reason + + t-mf930713-085-p3s3w3 + + + + + + + a#a-mf930713-085-p3s3w2 + + complex + výrobce + ACT + + n.denot + anim + pl + single + + t + 1 + + + t-mf930713-085-p3s1w3 + SET_SUB + + + + + + a#a-mf930713-085-p3s3w1 + + complex + mnohý + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + + + a#a-mf930713-085-p3s3w4 + + complex + začít + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 4 + v#v-w8756f1 + + + + a#a-mf930713-085-p3s3w3 + + atom + totiž + PREC + t + 3 + + + + a#a-mf930713-085-p3s3w5 + + complex + plnit + PAT + + v + decl + nil + proc + it0 + act + nil + + f + 6 + v#v-w3486f1 + + + qcomplex + 1 + #Cor + ACT + t + 5 + + t-mf930713-085-p3s3w2 + + + + + a#a-mf930713-085-p3s3w6 + + complex + limonáda + PAT + + n.denot + fem + pl + single + + f + 7 + + + t-mf930713-085-p3s1w5 + SET_SUB + + + + + + a#a-mf930713-085-p3s3w9 + + a#a-mf930713-085-p3s3w7 + + + complex + lahev + DIR3 + basic + + n.denot + fem + pl + single + + f + 8 + + + t-mf930713-085-p3s2w4 + CONTRAST + + + + + + a#a-mf930713-085-p3s3w8 + + complex + jiný + RSTR + + adj.denot + pos + neg0 + + f + 9 + + + + + + + + + + a#a-mf930713-085-p3s3w15 + + complex + vykoupit + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 15 + + + t-mf930713-085-p3s3w4 + discourse + 0 + 0 + opp + + t-mf930713-085-p3s3w11 + + + + v#v-w8031f1 + + + + a#a-mf930713-085-p3s3w13 + + complex + láhev + PAT + + n.denot + fem + pl + single + + t + 11 + + + t-mf930713-085-p3s2w4 + SPEC + + + + + + a#a-mf930713-085-p3s3w12 + + complex + původní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + a#a-mf930713-085-p3s3w14 + + atom + + RHEM + f + 13 + + + atom + 1 + #Neg + RHEM + f + 14 + + + + + + + + + a#a-mf930713-085-p4s1 + 0 + + + nealkoholický nápoj + lexeme + + t-mf930713-085-p4s1w6 + t-mf930713-085-p4s1w7 + + + + + + + a#a-mf930713-085-p4s1w2 + + complex + sdružovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w5926f1 + + + + a#a-mf930713-085-p4s1w1 + + complex + svaz + ACT + + n.denot + inan + sg + single + + t + 1 + + + t-mf930713-085-p3s1w2 + SPEC + + + + + qcomplex + 1 + #Rcp + ADDR + t + 2 + + t-mf930713-085-p4s1w1 + + + + + a#a-mf930713-085-p4s1w5 + + complex + výrobce + PAT + + n.denot + anim + pl + single + + t + 6 + + + t-mf930713-085-p3s1w3 + SPEC + + + + + + a#a-mf930713-085-p4s1w7 + + complex + nápoj + PAT + + n.denot + inan + pl + single + + t + 5 + + + t-mf930713-085-p3s1w5 + GEN + + + + + + a#a-mf930713-085-p4s1w6 + + complex + alkoholický + RSTR + + adj.denot + pos + neg1 + + t + 4 + + + + + + a#a-mf930713-085-p4s1w4 + + complex + tuzemský + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-mf930713-085-p4s1w3 + + complex + 30 + RSTR + + adj.quant.def + basic + + f + 8 + + + + a#a-mf930713-085-p4s1w11 + + a#a-mf930713-085-p4s1w8 + + + complex + 60 + DIR1 + basic + + n.quant.def + anim + pl + basic + + f + 9 + + + t-mf930713-085-p4s1w3 + SUB_SET + + + + + + a#a-mf930713-085-p4s1w9 + + complex + celkový + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-mf930713-085-p4s1w10 + + complex + asi + EXT + nr + + adv.denot.ngrad.nneg + + f + 11 + + + + + + + + + + + + + a#a-mf930713-085-p4s2 + 0 + + + person + + t-mf930713-085-p4s2w24 + t-mf930713-085-p4s2w25 + + + + + + + a#a-mf930713-085-p4s2w23 + + complex + tvrdit + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 3 + v#v-w6953f1 + + + + a#a-mf930713-085-p4s2w25 + + complex + Švehla + ACT + 1 + + n.denot + anim + sg + single + + t + 2 + + + t-mf930713-085-p3s2w6 + SPEC + + + + + + a#a-mf930713-085-p4s2w24 + + complex + Zdeněk + RSTR + 1 + + n.denot + anim + sg + single + + t + 1 + + + + + + a#a-mf930713-085-p4s2w17 + + coap + a + CONJ + + + dsp + mf930713-085-p4s2w17 + + + 1 + 14 + + + + a#a-mf930713-085-p4s2w6 + + a#a-mf930713-085-p4s2w2 + a#a-mf930713-085-p4s2w5 + + + complex + vykoupit + COND + + + dsp + mf930713-085-p4s2w17 + + + + v + deb + nil + cpl + it0 + act + potential + + f + 5 + + + t-mf930713-085-p4s2w17 + discourse + 0 + 0 + cond + + a#a-mf930713-085-p4s2w2 + + + + v#v-w8031f1 + + + + a#a-mf930713-085-p4s2w4 + + complex + výrobce + ACT + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + anim + pl + single + + t + 4 + + + t-mf930713-085-p4s1w5 + SPEC + + + + + + a#a-mf930713-085-p4s2w8 + + complex + lahev + PAT + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + fem + pl + single + + t + 6 + + + t-mf930713-085-p2s2w27 + SPEC + + + + + + a#a-mf930713-085-p4s2w7 + + complex + který + RSTR + + + dsp + mf930713-085-p4s2w17 + + + + adj.pron.indef + total1 + + f + 7 + + + + + + + + a#a-mf930713-085-p4s2w10 + + complex + zůstat + EFF + enunc + + + dsp + mf930713-085-p4s2w17 + + + 1 + + v + decl + post + cpl + it0 + act + asserted + + f + 9 + v#v-w9938f3 + + + + a#a-mf930713-085-p4s2w11 + + complex + #PersPron + BEN + nr + + + dsp + mf930713-085-p4s2w17 + + + + n.pron.def.pers + anim + pl + 3 + basic + + t + 8 + + + t-mf930713-085-p4s2w4 + SPEC + + + + + + a#a-mf930713-085-p4s2w12 + + complex + spousta + ACT + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + fem + sg + single + + f + 10 + + + + a#a-mf930713-085-p4s2w13 + + complex + peníze + MAT + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + inan + pl + single + + f + 11 + + + + a#a-mf930713-085-p4s2w14 + + complex + blokovaný + RSTR + + + dsp + mf930713-085-p4s2w17 + + + + adj.denot + pos + neg0 + + f + 12 + + + + a#a-mf930713-085-p4s2w16 + + a#a-mf930713-085-p4s2w15 + + + complex + obal + LOC + basic + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + inan + pl + single + + f + 13 + + + t-mf930713-085-p4s2w8 + GEN + + + + + + + + + + + + + + a#a-mf930713-085-p4s2w18 + + complex + hrozit + EFF + enunc + + + dsp + mf930713-085-p4s2w17 + + + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 16 + + + t-mf930713-085-p4s2w10 + discourse + 0 + 0 + conj + + t-mf930713-085-p4s2w17 + + + + v#v-w1136f1 + + + + a#a-mf930713-085-p4s2w19 + + complex + #PersPron + PAT + + + dsp + mf930713-085-p4s2w17 + + + + n.pron.def.pers + anim + pl + 3 + basic + + t + 15 + + + t-mf930713-085-p4s2w11 + SPEC + + + + + + a#a-mf930713-085-p4s2w20 + + complex + bankrot + ACT + + + dsp + mf930713-085-p4s2w17 + + + + n.denot + inan + sg + single + + f + 17 + + + + + + + + + + + a#a-mf930713-085-p4s3 + 0 + + + v duchu :2 + lexeme + + t-mf930713-085-p4s3w6 + + + + + + + a#a-mf930713-085-p4s3w1 + + complex + říci + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w5874f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 1 + + + t-mf930713-085-p4s2w25 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-mf930713-085-p4s3w12 + + coap + ale + ADVS + 10 + + + + a#a-mf930713-085-p4s3w7 + + a#a-mf930713-085-p4s3w3 + + + complex + předat + EFF + 1 + + v + decl + ant + cpl + it0 + act + asserted + + f + 5 + v#v-w4694f1 + + + + a#a-mf930713-085-p4s3w8 + + complex + svaz + ACT + + n.denot + inan + sg + single + + t + 4 + + + t-mf930713-085-p4s1a0 + SPEC + + + + + + a#a-mf930713-085-p4s3w6 + + a#a-mf930713-085-p4s3w4 + + + complex + duch + MANN + + n.denot + anim + sg + single + + f + 6 + segm + + + + a#a-mf930713-085-p4s3w5 + + complex + stejný + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + + + a#a-mf930713-085-p4s3w9 + + complex + připomínka + PAT + + n.denot + fem + pl + single + + f + 8 + + + + a#a-mf930713-085-p4s3w10 + + complex + parlament + ADDR + + n.denot + inan + sg + single + + f + 9 + + + t-mf930713-085-p2s2w7 + SPEC + + + + + + + + a#a-mf930713-085-p4s4w2 + + a#a-mf930713-085-p4s3w3 + + + complex + brát + EFF + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 13 + + + t-mf930713-085-p4s3w7 + discourse + 0 + 0 + opp + + t-mf930713-085-p4s3w12 + + + + v#v-w202f10 + + + + a#a-mf930713-085-p4s3w13 + + complex + ten + ACT + + n.pron.def.demon + inan + sg + + t + 11 + + + t-mf930713-085-p4s3w10 + SPEC + + + + + atom + 1 + #Neg + RHEM + f + 12 + + + + a#a-mf930713-085-p4s4w1 + + complex + vůbec + EXT + basic + + adv.denot.ngrad.nneg + + f + 14 + + + + a#a-mf930713-085-p4s4w3 + + complex + zřetel + CPHR + + n.denot + inan + sg + single + + f + 17 + v#v-w9888f1 + + + + a#a-mf930713-085-p4s3w15 + + a#a-mf930713-085-p4s3w14 + + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 15 + + + t-mf930713-085-p4s2w17 + SPEC + + + + + qcomplex + 1 + #QCor + ACT + t + 16 + + t-mf930713-085-p4s3w13 + + + + + + + + + + + + + + a#a-mf930713-085-p5s1 + 0 + + + Antonín Kratochvíle + person + + t-mf930713-085-p5s1w7 + t-mf930713-085-p5s1w8 + + + + institution + + t-mf930713-085-p5s1w2 + t-mf930713-085-p5s1w3 + t-mf930713-085-p5s1w4 + t-mf930713-085-p5s1w5 + t-mf930713-085-p5s1w6 + + + + + + + a#a-mf930713-085-p5s1w10 + + complex + předpokládat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 11 + + + t-mf930713-085-p2s1Bw5 + discourse + 0 + 0 + confr + + t-mf930713-085-p5s1w9 + + + + v#v-w4745f1 + + + + a#a-mf930713-085-p5s1w9 + + atom + naopak + PREC + t + 1 + + + + a#a-mf930713-085-p5s1w8 + + complex + Kratochvíle + ACT + 1 + + n.denot + anim + sg + single + + c + 2 + + + + a#a-mf930713-085-p5s1w7 + + complex + Antonín + RSTR + 1 + + n.denot + anim + sg + single + + f + 3 + + + + a#a-mf930713-085-p5s1w1 + + complex + předseda + RSTR + + n.denot + anim + sg + single + + f + 4 + + + + a#a-mf930713-085-p5s1w3 + + complex + svaz + APP + + n.denot + inan + sg + single + + f + 5 + + + + a#a-mf930713-085-p5s1w2 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-mf930713-085-p5s1w5 + + coap + a + CONJ + 8 + + + + a#a-mf930713-085-p5s1w4 + + complex + pivovar + APP + 1 + + n.denot + inan + pl + single + + f + 7 + + + + a#a-mf930713-085-p5s1w6 + + complex + sladovna + APP + 1 + + n.denot + fem + pl + single + + f + 9 + + + + + + + + + + + atom + 1 + #Neg + RHEM + f + 10 + + + + a#a-mf930713-085-p5s1w15 + + a#a-mf930713-085-p5s1w13 + a#a-mf930713-085-p5s1w12 + + + complex + mít + PAT + + v + hrt + nil + proc + it0 + act + potential + + f + 13 + v#v-w1855f8 + + + + a#a-mf930713-085-p5s1w14 + + complex + novela + ACT + + n.denot + fem + sg + single + + t + 12 + + + t-mf930713-085-p2s2w3 + SPEC + + + + + + a#a-mf930713-085-p5s1w19 + + complex + dopad + CPHR + + n.denot + inan + sg + single + + f + 15 + v#v-w644f1 + + + qcomplex + 1 + #QCor + ACT + t + 14 + + t-mf930713-085-p5s1w14 + + + + + a#a-mf930713-085-p5s1w18 + + complex + negativní + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + a#a-mf930713-085-p5s1w17 + + a#a-mf930713-085-p5s1w16 + + + complex + pivovar + PAT + + n.denot + inan + pl + single + + f + 17 + + + t-mf930713-085-p5s1w4 + SPEC + + + + + + + + + + + + + a#a-mf930713-085-p5s2 + 0 + + + + a#a-mf930713-085-p5s2w12 + + coap + a + CONJ + 8 + + + + a#a-mf930713-085-p5s2w9 + + a#a-mf930713-085-p5s2w4 + a#a-mf930713-085-p5s2w8 + + + complex + vykupovat + PRED + enunc + 1 + + v + hrt + nil + proc + it0 + act + potential + + f + 6 + v#v-w8048f1 + + + + a#a-mf930713-085-p5s2w3 + + complex + láhev + PAT + + n.denot + fem + pl + single + + t + 3 + + + t-mf930713-085-p4s2w16 + SET_SUB + + + + + + a#a-mf930713-085-p5s2w1 + + complex + běžný + RSTR + + adj.denot + pos + neg0 + + c + 1 + + + + a#a-mf930713-085-p5s2w2 + + complex + pivní + RSTR + + adj.denot + pos + neg0 + + t + 2 + + + + + qcomplex + 1 + #Gen + ACT + t + 4 + + + + a#a-mf930713-085-p5s2w7 + + a#a-mf930713-085-p5s2w6 + + + complex + #PersPron + CRIT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 5 + + + t-mf930713-085-p5s1w8 + SPEC + + + + + + a#a-mf930713-085-p5s2w11 + + a#a-mf930713-085-p5s2w10 + + + complex + problém + ACMP + wout + + n.denot + inan + pl + single + + f + 7 + + + + + + a#a-mf930713-085-p5s2w24 + + a#a-mf930713-085-p5s2w19 + a#a-mf930713-085-p5s2w18 + a#a-mf930713-085-p5s2w23 + + + complex + dohodnout_se + PRED + enunc + 1 + + v + hrt + nil + cpl + it0 + act + potential + + f + 18 + + + t-mf930713-085-p5s2w9 + discourse + 0 + 0 + conj + + t-mf930713-085-p5s2w12 + + + + v#v-w561f1 + + + + a#a-mf930713-085-p5s2w14 + + a#a-mf930713-085-p5s2w13 + + + complex + vykupování + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 13 + v#v-w8047f1 + + + + a#a-mf930713-085-p5s2w17 + + complex + lahev + PAT + + n.denot + fem + pl + single + + t + 10 + + + t-mf930713-085-p4s2w16 + SET_SUB + + + + + + a#a-mf930713-085-p5s2w15 + + complex + speciální + RSTR + + adj.denot + pos + neg0 + + c + 9 + + + + a#a-mf930713-085-p5s2w16 + + complex + firemní + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + qcomplex + 1 + #Gen + ACT + t + 12 + + + + + + a#a-mf930713-085-p5s2w21 + + coap + a + CONJ + 15 + + + + a#a-mf930713-085-p5s2w20 + + complex + prodejce + ACT + 1 + + n.denot + anim + pl + single + + t + 14 + + + + a#a-mf930713-085-p5s2w22 + + complex + výrobce + ACT + 1 + + n.denot + anim + pl + single + + t + 16 + + + t-mf930713-085-p5s1w17 + SPEC + + + + + + + qcomplex + 1 + #Rcp + ADDR + t + 17 + + t-mf930713-085-p5s2w21 + + + + + a#a-mf930713-085-p5s2w25 + + complex + smluvní + MANN + + adj.denot + pos + neg0 + + f + 19 + + + + + + + + + a#a-mf930713-085-p5s3 + 0 + + + + a#a-mf930713-085-p5s3w8 + + complex + dodat + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w531f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 1 + + + t-mf930713-085-p5s3a1 + SPEC + + + + + + a#a-mf930713-085-p5s3w5 + + complex + vítat + EFF + enunc + + + dsp + mf930713-085-p5s3w5 + + + 1 + + v + decl + sim + proc + it0 + act + asserted + + f + 6 + v#v-w7623f1 + + + + a#a-mf930713-085-p5s3w4 + + complex + novela + PAT + + + dsp + mf930713-085-p5s3w5 + + + + n.denot + fem + sg + single + + t + 3 + + + t-mf930713-085-p5s1a1 + SPEC + + + + + + a#a-mf930713-085-p5s3w3 + + a#a-mf930713-085-p5s3w2 + + + complex + spotřebitel + COMPL + + + dsp + mf930713-085-p5s3w5 + + + + n.denot + anim + sg + single + + t + 4 + + t-mf930713-085-p5s3a1 + + + + complex + 1 + #PersPron + ACT + + + dsp + mf930713-085-p5s3w5 + + + + n.pron.def.pers + nr + sg + 1 + basic + + t + 5 + + + t-mf930713-085-p5s2w7 + SPEC + + + + + + + + + + + diff --git a/demo/pdt_train/mf930713_085.txt b/demo/pdt_train/mf930713_085.txt new file mode 100644 index 00000000..2a9df528 --- /dev/null +++ b/demo/pdt_train/mf930713_085.txt @@ -0,0 +1,9 @@ +Výrobci nápojů mají obavy z povinného výkupu lahví + +Praha (jkl) - Někteří výrobci nealkoholických nápojů mají obavy, že novela zákona o ochraně spotřebitele může některé z nich přivést k bankrotu. Novela, kterou v sobotu schválil parlament, totiž ukládá výrobcům i dodavatelům povinnost vykupovat vratné obaly bez omezení množství i bez toho, aby je vázali na nákup zboží. + +Předseda Svazu výrobců nealkoholických nápojů Zdeněk Švehla uvedl, že je největší přebytek lahví o objemu 0,33 litru. V oběhu je jich podle něho na šest milionů navíc. Mnozí výrobci totiž začali plnit limonády do jiných lahví, ale původní láhve už nevykoupili. + +Svaz sdružuje 30 tuzemských výrobců nealkoholických nápojů z celkových asi 60. "Kdyby výrobci museli vykoupit všechny lahve, zůstane jim spousta peněz blokovaných v obalech a hrozí jim bankrot," tvrdí Zdeněk Švehla. Řekl, že ve stejném duchu předal svaz připomínky parlamentu, ale ten na to vůbec nebral zřetel. + +Předseda Českého svazu pivovarů a sladoven Antonín Kratochvíle naopak nepředpokládá, že by novela měla na pivovary negativní dopad. Běžné pivní láhve by se podle něho měly vykupovat bez problémů a na vykupování speciálních firemních lahví by se prodejci a výrobci měli dohodnout smluvně. "Jako spotřebitel novelu vítám," dodal. \ No newline at end of file diff --git a/demo/pdt_train/mf930713_085.w b/demo/pdt_train/mf930713_085.w new file mode 100644 index 00000000..f215d23c --- /dev/null +++ b/demo/pdt_train/mf930713_085.w @@ -0,0 +1,733 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1993 +<authname>y +<opus>mf930713 +<id>085 + + + + 1 + + Výrobci + + + nápojů + + + mají + + + obavy + + + z + + + povinného + + + výkupu + + + lahví + + + + 2 + + Praha + + + ( + 1 + + + jkl + 1 + + + ) + + + - + + + Někteří + + + výrobci + + + nealkoholických + + + nápojů + + + mají + + + obavy + 1 + + + , + + + že + + + novela + + + zákona + + + o + + + ochraně + + + spotřebitele + + + může + + + některé + + + z + + + nich + + + přivést + + + k + + + bankrotu + 1 + + + . + + + Novela + 1 + + + , + + + kterou + + + v + + + sobotu + + + schválil + + + parlament + 1 + + + , + + + totiž + + + ukládá + + + výrobcům + + + i + + + dodavatelům + + + povinnost + + + vykupovat + + + vratné + + + obaly + + + bez + + + omezení + + + množství + + + i + + + bez + + + toho + 1 + + + , + + + aby + + + je + + + vázali + + + na + + + nákup + + + zboží + 1 + + + . + + + + 3 + + Předseda + + + Svazu + + + výrobců + + + nealkoholických + + + nápojů + + + Zdeněk + + + Švehla + + + uvedl + 1 + + + , + + + že + + + je + + + největší + + + přebytek + + + lahví + + + o + + + objemu + + + 0,33 + + + litru + 1 + + + . + + + V + + + oběhu + + + je + + + jich + + + podle + + + něho + + + na + + + šest + + + milionů + + + navíc + 1 + + + . + + + Mnozí + + + výrobci + + + totiž + + + začali + + + plnit + + + limonády + + + do + + + jiných + + + lahví + 1 + + + , + + + ale + + + původní + + + láhve + + + + + + nevykoupili + 1 + + + . + + + + 4 + + Svaz + + + sdružuje + + + 30 + + + tuzemských + + + výrobců + + + nealkoholických + + + nápojů + + + z + + + celkových + + + asi + + + 60 + 1 + + + . + + + " + 1 + + + Kdyby + + + výrobci + + + museli + + + vykoupit + + + všechny + + + lahve + 1 + + + , + + + zůstane + + + jim + + + spousta + + + peněz + + + blokovaných + + + v + + + obalech + + + a + + + hrozí + + + jim + + + bankrot + 1 + + + , + 1 + + + " + + + tvrdí + + + Zdeněk + + + Švehla + 1 + + + . + + + Řekl + 1 + + + , + + + že + + + ve + + + stejném + + + duchu + + + předal + + + svaz + + + připomínky + + + parlamentu + 1 + + + , + + + ale + + + ten + + + na + + + to + + + vůbec + + + nebral + + + zřetel + 1 + + + . + + + + 5 + + Předseda + + + Českého + + + svazu + + + pivovarů + + + a + + + sladoven + + + Antonín + + + Kratochvíle + + + naopak + + + nepředpokládá + 1 + + + , + + + že + + + by + + + novela + + + měla + + + na + + + pivovary + + + negativní + + + dopad + 1 + + + . + + + Běžné + + + pivní + + + láhve + + + by + + + se + + + podle + + + něho + + + měly + + + vykupovat + + + bez + + + problémů + + + a + + + na + + + vykupování + + + speciálních + + + firemních + + + lahví + + + by + + + se + + + prodejci + + + a + + + výrobci + + + měli + + + dohodnout + + + smluvně + 1 + + + . + + + " + 1 + + + Jako + + + spotřebitel + + + novelu + + + vítám + 1 + + + , + 1 + + + " + + + dodal + 1 + + + . + + + + diff --git a/demo/pdt_train/mf930713_118.in.conll b/demo/pdt_train/mf930713_118.in.conll new file mode 100644 index 00000000..0ef0a1a0 --- /dev/null +++ b/demo/pdt_train/mf930713_118.in.conll @@ -0,0 +1,146 @@ +1 JLV JLV NOUN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|Negative=Pos 2 nsubj _ _ +2 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 modernizaci modernizace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 2 dobj _ _ + +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +1 Podnik podnik NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nsubj _ _ +2 Jídelní jídelní ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +3 a a CONJ J^------------- _ 2 cc _ _ +4 lůžkové lůžkový ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 conj _ _ +5 vozy vůz NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +6 ( ( PUNCT Z:------------- _ 7 punct _ SpaceAfter=No +7 JLV JLV NOUN NNIXX-----A---- Abbr=Yes|Animacy=Inan|Gender=Masc|Negative=Pos 5 appos _ SpaceAfter=No +8 ) ) PUNCT Z:------------- _ 7 punct _ _ +9 potřebuje potřebovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +10 vládní vládní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 11 amod _ _ +11 záruky záruka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 9 dobj _ _ +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +13 nákup nákup NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ _ +14 nových nový ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +15 restauračních restaurační ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +16 a a CONJ J^------------- _ 15 cc _ _ +17 lůžkových lůžkový ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 conj _ _ +18 vozů vůz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 13 nmod _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 9 punct _ _ + +1 Včera včera ADV Db------------- _ 6 advmod _ _ +2 na na ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 valné valný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 hromadě hromada NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +5 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 6 dobj _ _ +6 zdůraznil zdůraznit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 ředitel ředitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +8 Jiří Jiří PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 6 nsubj _ _ +9 Paul Paul PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 6 punct _ _ + +1 Upozornil upozornit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +2 , , PUNCT Z:------------- _ 22 punct _ _ +3 že že SCONJ J,------------- _ 22 mark _ _ +4 stávajících stávající ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 211 211 NUM C=------------- NumForm=Digit|NumType=Card 6 nummod:gov _ _ +6 vozů vůz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 22 nsubj _ _ +7 Českých český ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 drah dráha NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 6 nmod _ _ +9 a a CONJ J^------------- _ 8 cc _ _ +10 Železnic železnice NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 8 conj _ _ +11 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 10 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 15 punct _ _ +13 které který PRON P4YP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Int,Rel 15 dobj _ _ +14 společnost společnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ _ +15 používá používat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 15 punct _ _ +17 od od ADP RR--2---------- AdpType=Prep|Case=Gen 18 case _ _ +18 poloviny polovina NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ _ +19 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 20 amod _ _ +20 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ _ +21 nebude být AUX VB-S---3F-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 22 aux _ _ +22 moci moci VERB Vf--------A---- Negative=Pos|VerbForm=Inf 1 ccomp _ _ +23 překročit překročit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 22 xcomp _ _ +24 západní západní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 25 amod _ _ +25 hranice hranice NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 23 dobj _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 1 punct _ _ + +1 Valná valný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 hromada hromada NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ _ +3 rozhodla rozhodnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 17 punct _ _ +5 že že SCONJ J,------------- _ 17 mark _ _ +6 většina většina NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 17 nsubjpass _ _ +7 z z ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +8 loňského loňský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 amod _ _ +9 čistého čistý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 amod _ _ +10 zisku zisk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +11 2 2 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +13 34 34 NUM C=------------- NumForm=Digit|NumType=Card 11 conj _ _ +14 milionu milión NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ +15 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +16 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 17 auxpass _ _ +17 převedena převést VERB VsQW---XX-AP--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 3 ccomp _ _ +18 do do ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +19 rezerv rezerva NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 17 nmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 17 punct _ _ +21 o o ADP RR--6---------- AdpType=Prep|Case=Loc 24 case _ _ +22 zbylých zbylý ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 23 amod _ _ +23 675 675 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod _ _ +24 tisících tisíc NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 27 dobj _ _ +25 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 24 nmod _ _ +26 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 27 auxpass:reflex _ _ +27 rozhodne rozhodnout VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 conj _ _ +28 až až PART TT------------- _ 29 advmod:emph _ _ +29 společně společně ADV Dg-------1A---- Degree=Pos|Negative=Pos 27 advmod _ _ +30 se s ADP RV--7---------- AdpType=Voc|Case=Ins 31 case _ _ +31 ziskem zisk NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 29 nmod _ _ +32 za za ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +33 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ _ +34 1993 1993 NUM C=------------- NumForm=Digit|NumType=Card 33 nummod _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 3 punct _ _ + +1 Společnost společnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 nsubj _ _ +2 vznikla vzniknout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +3 osamostatněním osamostatnění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 2 nmod _ _ +4 od od ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 ČSD ČSD PROPN NNFPX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos|Number=Plur 3 nmod _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 květnu květen NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +8 1992 1992 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 2 punct _ _ + +1 Dosažená dosažený ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 cena cena NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 16 nsubj _ _ +3 jedné jeden NUM ClFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 4 nummod _ _ +4 akcie akcie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +6 nominální nominální ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 hodnotě hodnota NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +8 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 9 nummod:gov _ _ +9 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +11 mimoburzovním mimoburzovní ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +13 RM RM ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|NameType=Com|Negative=Pos 15 amod _ SpaceAfter=No +14 - - PUNCT Z:------------- _ 13 punct _ SpaceAfter=No +15 Systém systém NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +16 činila činit VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +17 v v ADP RR--6---------- AdpType=Prep|Case=Loc 19 case _ _ +18 prvním první ADJ CrNS6---------- Case=Loc|Gender=Neut|Number=Sing|NumType=Ord 19 amod _ _ +19 kole kolo NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 16 nmod _ _ +20 687 687 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +21 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 16 dobj _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 16 punct _ _ +23 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 25 case _ _ +24 druhé druhý ADJ CrNS4---------- Case=Acc|Gender=Neut|Number=Sing|NumType=Ord 25 amod _ _ +25 kolo kolo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 29 nmod _ _ +26 bylo být VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 29 cop _ _ +27 cenové cenový ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 28 amod _ _ +28 rozpětí rozpětí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 29 nsubj _ _ +29 stanoveno stanovit VERB VsNS---XX-AP--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 16 conj _ _ +30 na na ADP RR--4---------- AdpType=Prep|Case=Acc 34 case _ _ +31 374 374 NUM C=------------- NumForm=Digit|NumType=Card 34 nummod:gov _ _ +32 až až CONJ J^------------- _ 31 cc _ _ +33 624 624 NUM C=------------- NumForm=Digit|NumType=Card 31 conj _ _ +34 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 29 advmod _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 16 punct _ _ \ No newline at end of file diff --git a/demo/pdt_train/mf930713_118.t b/demo/pdt_train/mf930713_118.t new file mode 100644 index 00000000..d378c4e0 --- /dev/null +++ b/demo/pdt_train/mf930713_118.t @@ -0,0 +1,2164 @@ + + + + + + + + + + + + Manual annotation + + news + + + + a#a-mf930713-118-p1s1 + 0 + + + + a#a-mf930713-118-p1s1w2 + + complex + potřebovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 2 + heading + v#v-w4096f1 + + + + a#a-mf930713-118-p1s1w1 + + complex + JLV + ACT + + n.denot + inan + pl + single + + c + 1 + + + + a#a-mf930713-118-p1s1w3 + + complex + modernizace + PAT + + n.denot + fem + sg + single + + f + 3 + + + + + + + a#a-mf930713-118-p2s1A + 0 + + + + a#a-mf930713-118-p2s1Aw1 + + complex + Praha + DENOM + enunc + + n.denot + fem + sg + single + + f + 1 + + + + + a#a-mf930713-118-p2s1B + 0 + + + institution + + t-mf930713-118-p2s1Bw2 + t-mf930713-118-p2s1Bw3 + t-mf930713-118-p2s1Bw4 + t-mf930713-118-p2s1Bw5 + t-mf930713-118-p2s1Bw6 + t-mf930713-118-p2s1Bw7 + + + + vládní záruka + lexeme + + t-mf930713-118-p2s1Bw10 + t-mf930713-118-p2s1Bw11 + + + + lůžkový vůz + lexeme + + t-mf930713-118-p2s1Bw17 + t-mf930713-118-p2s1Bw18 + + + + restaurační vůz + lexeme + + t-mf930713-118-p2s1Bw15 + + + + + + + a#a-mf930713-118-p2s1Bw9 + + complex + potřebovat + PRED + enunc + + v + decl + sim + proc + it0 + act + asserted + + f + 8 + v#v-w4096f1 + + + + a#a-mf930713-118-p2s1Bw1 + + complex + podnik + ACT + + n.denot + inan + sg + single + + c + 1 + + + t-mf930713-118-p1s1w1 + SPEC + + + + + + a#a-mf930713-118-p2s1Bw6 + + coap + #Bracket + APPS + 6 + + + + a#a-mf930713-118-p2s1Bw5 + + complex + vůz + ID + enunc + 1 + + n.denot + inan + pl + single + + f + 2 + + + + a#a-mf930713-118-p2s1Bw3 + + coap + a + CONJ + 4 + + + + a#a-mf930713-118-p2s1Bw2 + + complex + jídelní + RSTR + 1 + + adj.denot + pos + neg0 + + f + 3 + + + + a#a-mf930713-118-p2s1Bw4 + + complex + lůžkový + RSTR + 1 + + adj.denot + pos + neg0 + + f + 5 + + + + + + + + a#a-mf930713-118-p2s1Bw7 + + complex + JLV + ID + enunc + 1 + + n.denot + inan + nr + single + + f + 7 + + + + + + + + a#a-mf930713-118-p2s1Bw11 + + complex + záruka + PAT + + n.denot + fem + pl + single + + f + 9 + + + + a#a-mf930713-118-p2s1Bw13 + + a#a-mf930713-118-p2s1Bw12 + + + complex + nákup + PAT + + n.denot + inan + sg + single + + f + 10 + + + t-mf930713-118-p1s1w3 + SPEC + + + + + + a#a-mf930713-118-p2s1Bw16 + + coap + a + CONJ + 15 + + + + a#a-mf930713-118-p2s1Bw18 + + complex + 1 + vůz + PAT + 1 + + n.denot + inan + pl + single + + f + 11 + + + + a#a-mf930713-118-p2s1Bw15 + + complex + restaurační + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + a#a-mf930713-118-p2s1Bw18 + + complex + vůz + PAT + 1 + + n.denot + inan + pl + single + + t + 13 + + + + a#a-mf930713-118-p2s1Bw17 + + complex + lůžkový + RSTR + + adj.denot + pos + neg0 + + f + 14 + + + + + + a#a-mf930713-118-p2s1Bw14 + + complex + nový + RSTR + + adj.denot + pos + neg0 + + f + 16 + + + + + + + + a#a-mf930713-118-p2s1Bw10 + + complex + vládní + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + + + a#a-mf930713-118-p2s2 + 0 + + + Jiří Paul + person + + t-mf930713-118-p2s2w8 + t-mf930713-118-p2s2w9 + + + + valná hromada + lexeme + + t-mf930713-118-p2s2w3 + t-mf930713-118-p2s2w4 + + + + + + + a#a-mf930713-118-p2s2w6 + + complex + zdůraznit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 5 + v#v-w9413f1 + + + + a#a-mf930713-118-p2s2w5 + + complex + ten + PAT + + n.pron.def.demon + neut + sg + + t + 1 + + + t-mf930713-118-p2s1Bw9 + SPEC + + + + + + a#a-mf930713-118-p2s2w1 + + complex + včera + TWHEN + basic + + adv.denot.ngrad.nneg + + t + 2 + + + + a#a-mf930713-118-p2s2w4 + + a#a-mf930713-118-p2s2w2 + + + complex + hromada + LOC + basic + + n.denot + fem + sg + single + + t + 3 + + + t-mf930713-118-p2s1Bw1 + P_FUNCT + + + + + + a#a-mf930713-118-p2s2w3 + + complex + valný + RSTR + + adj.denot + pos + neg0 + + f + 4 + + + + + + a#a-mf930713-118-p2s2w9 + + complex + Paul + ACT + 1 + + n.denot + anim + sg + single + + f + 6 + + + + a#a-mf930713-118-p2s2w8 + + complex + Jiří + RSTR + 1 + + n.denot + anim + sg + single + + f + 7 + + + + a#a-mf930713-118-p2s2w7 + + complex + ředitel + RSTR + + n.denot + anim + sg + single + + f + 8 + + + t-mf930713-118-p2s1Bw1 + P_FUNCT + + + + + + + + + + + a#a-mf930713-118-p2s3 + 0 + + + institution + + t-mf930713-118-p2s3w7 + t-mf930713-118-p2s3w8 + + + + institution + + t-mf930713-118-p2s3w10 + t-mf930713-118-p2s3w11 + + + + + + + a#a-mf930713-118-p2s3w1 + + complex + upozornit + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w7228f1 + + + complex + 1 + #PersPron + ACT + + n.pron.def.pers + anim + sg + 3 + basic + + t + 1 + + + t-mf930713-118-p2s2w9 + SPEC + + + + + qcomplex + 1 + #Gen + ADDR + t + 2 + + + + a#a-mf930713-118-p2s3w23 + + a#a-mf930713-118-p2s3w3 + a#a-mf930713-118-p2s3w22 + a#a-mf930713-118-p2s3w21 + + + complex + překročit + PAT + + v + poss + post + cpl + it0 + act + asserted + + f + 19 + v#v-w4852f1 + + + + a#a-mf930713-118-p2s3w6 + + complex + vůz + ACT + + n.denot + inan + pl + single + + c + 4 + + + t-mf930713-118-p2s1Bw18 + CONTRAST + + + + + + a#a-mf930713-118-p2s3w9 + + coap + a + CONJ + 7 + + + + a#a-mf930713-118-p2s3w8 + + complex + dráha + APP + 1 + + n.denot + fem + pl + single + + f + 5 + + + + a#a-mf930713-118-p2s3w7 + + complex + český + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + + + a#a-mf930713-118-p2s3w10 + + complex + železnice + APP + 1 + + n.denot + fem + pl + single + + f + 8 + + + + a#a-mf930713-118-p2s3w11 + + complex + SR + APP + + n.denot + fem + sg + single + + f + 9 + + + + + + + + a#a-mf930713-118-p2s3w4 + + complex + stávající + RSTR + + adj.denot + pos + neg0 + + f + 10 + + + + a#a-mf930713-118-p2s3w5 + + complex + 211 + RSTR + + adj.quant.def + basic + + f + 11 + + + + a#a-mf930713-118-p2s3w15 + + complex + používat + RSTR + + v + decl + sim + proc + it0 + act + asserted + + f + 14 + v#v-w4135f1 + + + + a#a-mf930713-118-p2s3w14 + + complex + společnost + ACT + + n.denot + fem + sg + single + + t + 12 + + + t-mf930713-118-p2s1Bw1 + SPEC + + + + + + a#a-mf930713-118-p2s3w13 + + complex + který + PAT + + n.pron.indef + inher + inher + relat + inher + + t + 13 + + t-mf930713-118-p2s3w6 + + + + + + + + + a#a-mf930713-118-p2s3w18 + + a#a-mf930713-118-p2s3w17 + + + complex + polovina + TSIN + + n.denot + fem + sg + single + + t + 15 + + + + a#a-mf930713-118-p2s3w20 + + complex + rok + APP + + n.denot + inan + sg + single + + f + 16 + + + + a#a-mf930713-118-p2s3w19 + + complex + příští + RSTR + + adj.denot + pos + neg0 + + f + 17 + + + + + + + atom + 1 + #Neg + RHEM + f + 18 + + + + a#a-mf930713-118-p2s3w25 + + complex + hranice + PAT + + n.denot + fem + pl + single + + f + 20 + + + + a#a-mf930713-118-p2s3w24 + + complex + západní + RSTR + + adj.denot + pos + neg0 + + f + 21 + + + + + + + + + + + a#a-mf930713-118-p2s4 + 0 + + + čistý zisk + lexeme + + t-mf930713-118-p2s4w9 + t-mf930713-118-p2s4w10 + + + + valná hromada + lexeme + + t-mf930713-118-p2s4w1 + t-mf930713-118-p2s4w2 + + + + number + + t-mf930713-118-p2s4w11 + t-mf930713-118-p2s4w12 + + + + number + + t-mf930713-118-p2s4w21 + t-mf930713-118-p2s4w22 + + + + + + + a#a-mf930713-118-p2s4w3 + + complex + rozhodnout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 3 + v#v-w5634f1 + + + + a#a-mf930713-118-p2s4w2 + + complex + hromada + ACT + + n.denot + fem + sg + single + + t + 2 + + + t-mf930713-118-p2s2w4 + SPEC + + + + + + a#a-mf930713-118-p2s4w1 + + complex + valný + RSTR + + adj.denot + pos + neg0 + + t + 1 + + + + + + a#a-mf930713-118-p2s4w18 + + coap + #Comma + CONJ + 15 + + + + a#a-mf930713-118-p2s4w15 + + a#a-mf930713-118-p2s4w14 + a#a-mf930713-118-p2s4w5 + + + complex + převést + PAT + 1 + + v + decl + post + cpl + it0 + pas + asserted + + f + 13 + v#v-w5039f2 + + + + a#a-mf930713-118-p2s4w6 + + complex + většina + PAT + + n.denot + fem + sg + single + + c + 4 + + + + a#a-mf930713-118-p2s4w10 + + a#a-mf930713-118-p2s4w7 + + + complex + zisk + DIR1 + basic + + n.denot + inan + sg + single + + f + 5 + + + t-mf930713-118-p2s4w6 + SUB_SET + + + + + + a#a-mf930713-118-p2s4w9 + + complex + čistý + RSTR + + adj.denot + pos + neg0 + + f + 6 + + + + a#a-mf930713-118-p2s4w8 + + complex + loňský + RSTR + + adj.denot + pos + neg0 + + f + 7 + + + + a#a-mf930713-118-p2s4w12 + + complex + milión + RSTR + + n.quant.def + inan + sg + basic + + f + 9 + + + + a#a-mf930713-118-p2s4w13 + + complex + koruna + MAT + + n.denot + fem + pl + single + + t + 8 + + + + a#a-mf930713-118-p2s4w11 + + complex + 2.34 + RSTR + + adj.quant.def + basic + + f + 10 + + + + + + + + + qcomplex + 1 + #Gen + ACT + t + 11 + + + qcomplex + 1 + #Oblfm + DIR1 + nr + t + 12 + + + + a#a-mf930713-118-p2s4w17 + + a#a-mf930713-118-p2s4w16 + + + complex + rezerva + DIR3 + basic + + n.denot + fem + pl + single + + f + 14 + + + + + + a#a-mf930713-118-p2s4w25 + + a#a-mf930713-118-p2s4w5 + + + complex + rozhodnout + PAT + 1 + + v + decl + post + cpl + it0 + deagent + asserted + + t + 21 + v#v-w5634f1 + + + + a#a-mf930713-118-p2s4w22 + + a#a-mf930713-118-p2s4w19 + + + complex + tisíc + PAT + + n.quant.def + inan + pl + basic + + c + 17 + + + t-mf930713-118-p2s4w10 + SET_SUB + + + + + + a#a-mf930713-118-p2s4w23 + + complex + koruna + MAT + + n.denot + fem + pl + single + + t + 16 + + + + a#a-mf930713-118-p2s4w20 + + complex + zbylý + RSTR + + adj.denot + pos + neg0 + + f + 18 + + + + a#a-mf930713-118-p2s4w21 + + complex + 675 + RSTR + + adj.quant.def + basic + + f + 19 + + + + + qcomplex + 1 + #Gen + ACT + t + 20 + + + + a#a-mf930713-118-p2s4w26 + + atom + + RHEM + f + 22 + + + + a#a-mf930713-118-p2s4w29 + + a#a-mf930713-118-p2s4w27 + a#a-mf930713-118-p2s4w28 + + + complex + zisk + ACMP + basic + + n.denot + inan + sg + single + + f + 23 + + + + a#a-mf930713-118-p2s4w31 + + a#a-mf930713-118-p2s4w30 + + + complex + rok + THL + + n.denot + inan + sg + single + + t + 24 + + + + a#a-mf930713-118-p2s4w32 + + complex + 1993 + RSTR + + n.quant.def + nr + nr + basic + + f + 25 + + + + + + + + + + + + + + + a#a-mf930713-118-p2s5 + 0 + + + time + + t-mf930713-118-p2s5w7 + t-mf930713-118-p2s5w8 + + + + + + + a#a-mf930713-118-p2s5w2 + + complex + vzniknout + PRED + enunc + + v + decl + ant + cpl + it0 + act + asserted + + f + 2 + v#v-w8671f1 + + + + a#a-mf930713-118-p2s5w1 + + complex + společnost + ACT + + n.denot + fem + sg + single + + t + 1 + + + t-mf930713-118-p2s3w14 + SPEC + + + + + + a#a-mf930713-118-p2s5w3 + + complex + osamostatnění + MEANS + + n.denot.neg + neut + sg + single + neg0 + + f + 4 + v#v-w3180f1 + + + qcomplex + 1 + #Gen + ACT + t + 3 + + + + a#a-mf930713-118-p2s5w5 + + a#a-mf930713-118-p2s5w4 + + + complex + ČSD + PAT + + n.denot + fem + pl + single + + f + 5 + + + t-mf930713-118-p2s3w8 + REST + + + + + + a#a-mf930713-118-p2s5w7 + + a#a-mf930713-118-p2s5w6 + + + complex + květen + TWHEN + basic + + n.denot + inan + sg + single + + f + 6 + + + + a#a-mf930713-118-p2s5w8 + + complex + 1992 + APP + + n.quant.def + nr + nr + basic + + f + 7 + + + + + + + + + + + a#a-mf930713-118-p2s6 + 0 + + + nominální hodnota + lexeme + + t-mf930713-118-p2s6w6 + t-mf930713-118-p2s6w7 + + + + institution + + t-mf930713-118-p2s6w13 + t-mf930713-118-p2s6w15 + + + + number + + t-mf930713-118-p2s6w31 + t-mf930713-118-p2s6w32 + t-mf930713-118-p2s6w33 + + + + cenové rozpětí + lexeme + + t-mf930713-118-p2s6w27 + t-mf930713-118-p2s6w28 + + + + mimoburzovní trh + lexeme + + t-mf930713-118-p2s6w11 + t-mf930713-118-p2s6w12 + + + + + + + a#a-mf930713-118-p2s6w22 + + coap + #Comma + CONJ + 18 + + + + a#a-mf930713-118-p2s6w16 + + complex + činit + PRED + enunc + 1 + + v + decl + ant + proc + it0 + act + asserted + + f + 13 + v#v-w327f1 + + + + a#a-mf930713-118-p2s6w2 + + complex + cena + ACT + + n.denot + fem + sg + single + + c + 1 + + + + a#a-mf930713-118-p2s6w1 + + complex + dosažený + RSTR + + adj.denot + pos + neg0 + + f + 2 + + + + a#a-mf930713-118-p2s6w4 + + complex + akcie + PAT + + n.denot + fem + sg + single + + f + 3 + + + + a#a-mf930713-118-p2s6w7 + + a#a-mf930713-118-p2s6w5 + + + complex + hodnota + RSTR + + n.denot + fem + sg + single + + f + 4 + + + + a#a-mf930713-118-p2s6w6 + + complex + nominální + RSTR + + adj.denot + pos + neg0 + + f + 5 + + + + a#a-mf930713-118-p2s6w8 + + complex + tisíc + RSTR + + n.quant.def + inan + sg + basic + + f + 7 + + + + a#a-mf930713-118-p2s6w9 + + complex + koruna + MAT + + n.denot + fem + pl + single + + t + 6 + + + + + + + + a#a-mf930713-118-p2s6w3 + + complex + jeden + RSTR + + adj.quant.def + basic + + f + 8 + + + + + + a#a-mf930713-118-p2s6w12 + + a#a-mf930713-118-p2s6w10 + + + complex + trh + LOC + basic + + n.denot + inan + sg + single + + f + 9 + + + + a#a-mf930713-118-p2s6w15 + + complex + systém + ID + enunc + + n.denot + inan + sg + single + + f + 10 + + + + a#a-mf930713-118-p2s6w13 + + complex + RM + RSTR + + adj.denot + pos + neg0 + + f + 11 + + + + + + a#a-mf930713-118-p2s6w11 + + complex + mimoburzovní + RSTR + + adj.denot + pos + neg0 + + f + 12 + + + + + + + + a#a-mf930713-118-p2s6w19 + + a#a-mf930713-118-p2s6w17 + + + complex + kolo + TWHEN + basic + + n.denot + neut + sg + single + + f + 14 + + + + a#a-mf930713-118-p2s6w18 + + complex + jeden + RSTR + + adj.quant.def + ord + + f + 15 + + + + + + a#a-mf930713-118-p2s6w21 + + complex + koruna + EXT + nr + + n.denot + fem + pl + single + + f + 16 + + + + a#a-mf930713-118-p2s6w20 + + complex + 687 + RSTR + + adj.quant.def + basic + + f + 17 + + + + + + + + a#a-mf930713-118-p2s6w29 + + a#a-mf930713-118-p2s6w26 + + + complex + stanovit + PRED + enunc + 1 + + v + decl + ant + cpl + it0 + pas + asserted + + f + 24 + v#v-w6480f2 + + + + a#a-mf930713-118-p2s6w25 + + a#a-mf930713-118-p2s6w23 + + + complex + kolo + REG + + n.denot + neut + sg + single + + t + 20 + + + + a#a-mf930713-118-p2s6w24 + + complex + dva + RSTR + + adj.quant.def + ord + + c + 19 + + + + + + a#a-mf930713-118-p2s6w28 + + complex + rozpětí + PAT + + n.denot.neg + neut + sg + single + neg0 + + t + 21 + + + + a#a-mf930713-118-p2s6w27 + + complex + cenový + RSTR + + adj.denot + pos + neg0 + + f + 22 + + + + + qcomplex + 1 + #Gen + ACT + t + 23 + + + + a#a-mf930713-118-p2s6w34 + + a#a-mf930713-118-p2s6w30 + + + complex + koruna + EFF + + n.denot + fem + pl + single + + t + 25 + + + + a#a-mf930713-118-p2s6w32 + + coap + + OPER + 27 + + + + a#a-mf930713-118-p2s6w31 + + complex + 374 + RSTR + 1 + + adj.quant.def + basic + + f + 26 + + + + a#a-mf930713-118-p2s6w33 + + complex + 624 + RSTR + 1 + + adj.quant.def + basic + + f + 28 + + + + + + + + + + + + + diff --git a/demo/pdt_train/mf930713_118.txt b/demo/pdt_train/mf930713_118.txt new file mode 100644 index 00000000..9f170247 --- /dev/null +++ b/demo/pdt_train/mf930713_118.txt @@ -0,0 +1,3 @@ +JLV potřebují modernizaci + +Praha - Podnik Jídelní a lůžkové vozy (JLV) potřebuje vládní záruky na nákup nových restauračních a lůžkových vozů. Včera na valné hromadě to zdůraznil ředitel Jiří Paul. Upozornil, že stávajících 211 vozů Českých drah a Železnic SR, které společnost používá, od poloviny příštího roku nebude moci překročit západní hranice. Valná hromada rozhodla, že většina z loňského čistého zisku 2,34 milionu korun bude převedena do rezerv, o zbylých 675 tisících korun se rozhodne až společně se ziskem za rok 1993. Společnost vznikla osamostatněním od ČSD v květnu 1992. Dosažená cena jedné akcie v nominální hodnotě tisíc korun na mimoburzovním trhu RM-Systém činila v prvním kole 687 korun, pro druhé kolo bylo cenové rozpětí stanoveno na 374 až 624 korun. \ No newline at end of file diff --git a/demo/pdt_train/mf930713_118.w b/demo/pdt_train/mf930713_118.w new file mode 100644 index 00000000..216e8909 --- /dev/null +++ b/demo/pdt_train/mf930713_118.w @@ -0,0 +1,456 @@ + + + + + + + csts + + + + +<mod>s +<txtype>pub +<genre>mix +<med>nws +<temp>1993 +<authname>y +<opus>mf930713 +<id>118 + + + + 1 + + JLV + + + potřebují + + + modernizaci + + + + 2 + + Praha + + + - + + + Podnik + + + Jídelní + + + a + + + lůžkové + + + vozy + + + ( + 1 + + + JLV + 1 + + + ) + + + potřebuje + + + vládní + + + záruky + + + na + + + nákup + + + nových + + + restauračních + + + a + + + lůžkových + + + vozů + 1 + + + . + + + Včera + + + na + + + valné + + + hromadě + + + to + + + zdůraznil + + + ředitel + + + Jiří + + + Paul + 1 + + + . + + + Upozornil + 1 + + + , + + + že + + + stávajících + + + 211 + + + vozů + + + Českých + + + drah + + + a + + + Železnic + + + SR + 1 + + + , + + + které + + + společnost + + + používá + 1 + + + , + + + od + + + poloviny + + + příštího + + + roku + + + nebude + + + moci + + + překročit + + + západní + + + hranice + 1 + + + . + + + Valná + + + hromada + + + rozhodla + 1 + + + , + + + že + + + většina + + + z + + + loňského + + + čistého + + + zisku + + + 2,34 + + + milionu + + + korun + + + bude + + + převedena + + + do + + + rezerv + 1 + + + , + + + o + + + zbylých + + + 675 + + + tisících + + + korun + + + se + + + rozhodne + + + + + + společně + + + se + + + ziskem + + + za + + + rok + + + 1993 + 1 + + + . + + + Společnost + + + vznikla + + + osamostatněním + + + od + + + ČSD + + + v + + + květnu + + + 1992 + 1 + + + . + + + Dosažená + + + cena + + + jedné + + + akcie + + + v + + + nominální + + + hodnotě + + + tisíc + + + korun + + + na + + + mimoburzovním + + + trhu + + + RM + 1 + + + - + 1 + + + Systém + + + činila + + + v + + + prvním + + + kole + + + 687 + + + korun + 1 + + + , + + + pro + + + druhé + + + kolo + + + bylo + + + cenové + + + rozpětí + + + stanoveno + + + na + + + 374 + + + + + + 624 + + + korun + 1 + + + . + + + + diff --git a/demo/prepositions-cup.conllu b/demo/prepositions-cup.conllu new file mode 100644 index 00000000..07b72f98 --- /dev/null +++ b/demo/prepositions-cup.conllu @@ -0,0 +1,1074 @@ +['read.Conllu', 'files=en-sample.conllu', 'demo.Pokus', 'write.Conllu'] +['read.Conllu', 'demo.Pokus', 'write.Conllu'] +[{'files': 'en-sample.conllu'}, {}, {}] +# sent_id = 1 +# text = Al - Zaman : American forces killed Shaikh Abdullah al - Ani , the preacher at the mosque in the town of Qaim , near the Syrian border . +1 Al Al PROPN NNP Number=Sing 3 name _ huu +2 - - PUNCT HYPH _ 3 punct _ huu +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ huu +4 : : PUNCT : _ 3 punct _ huu +5 American american ADJ JJ Degree=Pos 6 amod _ huu +6 forces force NOUN NNS Number=Plur 7 nsubj _ huu +7 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ huu +8 Shaikh Shaikh PROPN NNP Number=Sing 12 name _ huu +9 Abdullah Abdullah PROPN NNP Number=Sing 12 name _ huu +10 al al PROPN NNP Number=Sing 12 name _ huu +11 - - PUNCT HYPH _ 12 punct _ huu +12 Ani Ani PROPN NNP Number=Sing 7 dobj _ huu +13 , , PUNCT , _ 12 punct _ huu +14 the the DET DT Definite=Def|PronType=Art 15 det _ huu +15 preacher preacher NOUN NN Number=Sing 12 appos _ huu +16 at at ADP IN _ 18 case _ huu +17 the the DET DT Definite=Def|PronType=Art 18 det _ huu +18 mosque mosque NOUN NN Number=Sing 7 nmod _ huu +19 in in ADP IN _ 21 case _ huu +20 the the DET DT Definite=Def|PronType=Art 21 det _ huu +21 town town NOUN NN Number=Sing 18 nmod _ huu +22 of of ADP IN _ 23 case _ huu +23 Qaim Qaim PROPN NNP Number=Sing 21 nmod _ huu +24 , , PUNCT , _ 21 punct _ huu +25 near near ADP IN _ 28 case _ huu +26 the the DET DT Definite=Def|PronType=Art 28 det _ huu +27 Syrian syrian ADJ JJ Degree=Pos 28 amod _ huu +28 border border NOUN NN Number=Sing 21 nmod _ huu +29 . . PUNCT . _ 3 punct _ huu + +# sent_id = 2 +# text = [ This killing of a respected cleric will be causing us trouble for years to come . ] +1 [ [ PUNCT -LRB- _ 10 punct _ huu +2 This this DET DT Number=Sing|PronType=Dem 3 det _ huu +3 killing killing NOUN NN Number=Sing 10 nsubj _ huu +4 of of ADP IN _ 7 case _ huu +5 a a DET DT Definite=Ind|PronType=Art 7 det _ huu +6 respected respected ADJ JJ Degree=Pos 7 amod _ huu +7 cleric cleric NOUN NN Number=Sing 3 nmod _ huu +8 will will AUX MD VerbForm=Fin 10 aux _ huu +9 be be AUX VB VerbForm=Inf 10 aux _ huu +10 causing cause VERB VBG VerbForm=Ger 0 root _ huu +11 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 10 iobj _ huu +12 trouble trouble NOUN NN Number=Sing 10 dobj _ huu +13 for for ADP IN _ 14 case _ huu +14 years year NOUN NNS Number=Plur 10 nmod _ huu +15 to to PART TO _ 16 mark _ huu +16 come come VERB VB VerbForm=Inf 14 acl _ huu +17 . . PUNCT . _ 10 punct _ huu +18 ] ] PUNCT -RRB- _ 10 punct _ huu + +# sent_id = 3 +# text = DPA : Iraqi authorities announced that they had busted up 3 terrorist cells operating in Baghdad . +1 DPA DPA PROPN NNP Number=Sing 0 root _ huu +2 : : PUNCT : _ 1 punct _ huu +3 Iraqi iraqi ADJ JJ Degree=Pos 4 amod _ huu +4 authorities authority NOUN NNS Number=Plur 5 nsubj _ huu +5 announced announce VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 1 parataxis _ huu +6 that that SCONJ IN _ 9 mark _ huu +7 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 9 nsubj _ huu +8 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 aux _ huu +9 busted bust VERB VBN Tense=Past|VerbForm=Part 5 ccomp _ huu +10 up up ADP RP _ 9 compound:prt _ huu +11 3 3 NUM CD NumType=Card 13 nummod _ huu +12 terrorist terrorist ADJ JJ Degree=Pos 13 amod _ huu +13 cells cell NOUN NNS Number=Plur 9 dobj _ huu +14 operating operate VERB VBG VerbForm=Ger 13 acl _ huu +15 in in ADP IN _ 16 case _ huu +16 Baghdad Baghdad PROPN NNP Number=Sing 14 nmod _ huu +17 . . PUNCT . _ 1 punct _ huu + +# sent_id = 4 +# text = Two of them were being run by 2 officials of the Ministry of the Interior ! +1 Two two NUM CD NumType=Card 6 nsubjpass _ huu +2 of of ADP IN _ 3 case _ huu +3 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 1 nmod _ huu +4 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 aux _ huu +5 being be AUX VBG VerbForm=Ger 6 auxpass _ huu +6 run run VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +7 by by ADP IN _ 9 case _ huu +8 2 2 NUM CD NumType=Card 9 nummod _ huu +9 officials official NOUN NNS Number=Plur 6 nmod _ huu +10 of of ADP IN _ 12 case _ huu +11 the the DET DT Definite=Def|PronType=Art 12 det _ huu +12 Ministry Ministry PROPN NNP Number=Sing 9 nmod _ huu +13 of of ADP IN _ 15 case _ huu +14 the the DET DT Definite=Def|PronType=Art 15 det _ huu +15 Interior Interior PROPN NNP Number=Sing 12 nmod _ huu +16 ! ! PUNCT . _ 6 punct _ huu + +# sent_id = 5 +# text = The MoI in Iraq is equivalent to the US FBI , so this would be like having J. Edgar Hoover unwittingly employ at a high level members of the Weathermen bombers back in the 1960s . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 MoI MoI PROPN NNP Number=Sing 6 nsubj _ huu +3 in in ADP IN _ 4 case _ huu +4 Iraq Iraq PROPN NNP Number=Sing 2 nmod _ huu +5 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ huu +6 equivalent equivalent ADJ JJ Degree=Pos 0 root _ huu +7 to to ADP IN _ 10 case _ huu +8 the the DET DT Definite=Def|PronType=Art 10 det _ huu +9 US US PROPN NNP Number=Sing 10 compound _ huu +10 FBI FBI PROPN NNP Number=Sing 6 nmod _ huu +11 , , PUNCT , _ 6 punct _ huu +12 so so ADV RB _ 17 advmod _ huu +13 this this PRON DT Number=Sing|PronType=Dem 15 nsubj _ huu +14 would would AUX MD VerbForm=Fin 15 aux _ huu +15 be be VERB VB VerbForm=Inf 6 parataxis _ huu +16 like like SCONJ IN _ 17 mark _ huu +17 having have VERB VBG VerbForm=Ger 15 advcl _ huu +18 J. J. PROPN NNP Number=Sing 20 name _ huu +19 Edgar Edgar PROPN NNP Number=Sing 20 name _ huu +20 Hoover Hoover PROPN NNP Number=Sing 22 nsubj _ huu +21 unwittingly unwittingly ADV RB _ 22 advmod _ huu +22 employ employ VERB VB VerbForm=Inf 17 ccomp _ huu +23 at at ADP IN _ 26 case _ huu +24 a a DET DT Definite=Ind|PronType=Art 26 det _ huu +25 high high ADJ JJ Degree=Pos 26 amod _ huu +26 level level NOUN NN Number=Sing 22 nmod _ huu +27 members member NOUN NNS Number=Plur 22 dobj _ huu +28 of of ADP IN _ 31 case _ huu +29 the the DET DT Definite=Def|PronType=Art 31 det _ huu +30 Weathermen Weathermen PROPN NNPS Number=Plur 31 compound _ huu +31 bombers bomber NOUN NNS Number=Plur 27 nmod _ huu +32 back back ADV RB _ 35 advmod _ huu +33 in in ADP IN _ 35 case _ huu +34 the the DET DT Definite=Def|PronType=Art 35 det _ huu +35 1960s 1960 NOUN NNS Number=Plur 22 nmod _ huu +36 . . PUNCT . _ 6 punct _ huu + +# sent_id = 6 +# text = The third was being run by the head of an investment firm . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 third third ADJ JJ Degree=Pos|NumType=Ord 5 nsubjpass _ huu +3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 aux _ huu +4 being be AUX VBG VerbForm=Ger 5 auxpass _ huu +5 run run VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +6 by by ADP IN _ 8 case _ huu +7 the the DET DT Definite=Def|PronType=Art 8 det _ huu +8 head head NOUN NN Number=Sing 5 nmod _ huu +9 of of ADP IN _ 12 case _ huu +10 an a DET DT Definite=Ind|PronType=Art 12 det _ huu +11 investment investment NOUN NN Number=Sing 12 compound _ huu +12 firm firm NOUN NN Number=Sing 8 nmod _ huu +13 . . PUNCT . _ 5 punct _ huu + +# sent_id = 7 +# text = You wonder if he was manipulating the market with his bombing targets . +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 2 nsubj _ huu +2 wonder wonder VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ huu +3 if if SCONJ IN _ 6 mark _ huu +4 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ huu +5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 aux _ huu +6 manipulating manipulate VERB VBG Tense=Pres|VerbForm=Part 2 advcl _ huu +7 the the DET DT Definite=Def|PronType=Art 8 det _ huu +8 market market NOUN NN Number=Sing 6 dobj _ huu +9 with with ADP IN _ 12 case _ huu +10 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ huu +11 bombing bombing NOUN NN Number=Sing 12 compound _ huu +12 targets target NOUN NNS Number=Plur 6 nmod _ huu +13 . . PUNCT . _ 2 punct _ huu + +# sent_id = 8 +# text = The cells were operating in the Ghazaliyah and al - Jihad districts of the capital . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 cells cell NOUN NNS Number=Plur 4 nsubj _ huu +3 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 aux _ huu +4 operating operate VERB VBG Tense=Pres|VerbForm=Part 0 root _ huu +5 in in ADP IN _ 12 case _ huu +6 the the DET DT Definite=Def|PronType=Art 12 det _ huu +7 Ghazaliyah Ghazaliyah PROPN NNP Number=Sing 12 compound _ huu +8 and and CONJ CC _ 7 cc _ huu +9 al al PROPN NNP Number=Sing 11 compound _ huu +10 - - PUNCT HYPH _ 11 punct _ huu +11 Jihad Jihad PROPN NNP Number=Sing 7 conj _ huu +12 districts district NOUN NNS Number=Plur 4 nmod _ huu +13 of of ADP IN _ 15 case _ huu +14 the the DET DT Definite=Def|PronType=Art 15 det _ huu +15 capital capital NOUN NN Number=Sing 12 nmod _ huu +16 . . PUNCT . _ 4 punct _ huu + +# sent_id = 9 +# text = Although the announcement was probably made to show progress in identifying and breaking up terror cells , I do n't find the news that the Baathists continue to penetrate the Iraqi government very hopeful . +1 Although although SCONJ IN _ 6 mark _ huu +2 the the DET DT Definite=Def|PronType=Art 3 det _ huu +3 announcement announcement NOUN NN Number=Sing 6 nsubjpass _ huu +4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 auxpass _ huu +5 probably probably ADV RB _ 6 advmod _ huu +6 made make VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 21 advcl _ huu +7 to to PART TO _ 8 mark _ huu +8 show show VERB VB VerbForm=Inf 6 xcomp _ huu +9 progress progress NOUN NN Number=Sing 8 dobj _ huu +10 in in SCONJ IN _ 11 mark _ huu +11 identifying identify VERB VBG VerbForm=Ger 9 acl _ huu +12 and and CONJ CC _ 11 cc _ huu +13 breaking break VERB VBG VerbForm=Ger 11 conj _ huu +14 up up ADP RP _ 13 compound:prt _ huu +15 terror terror NOUN NN Number=Sing 16 compound _ huu +16 cells cell NOUN NNS Number=Plur 11 dobj _ huu +17 , , PUNCT , _ 21 punct _ huu +18 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 21 nsubj _ huu +19 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 21 aux _ huu +20 n't not PART RB _ 21 neg _ huu +21 find find VERB VB VerbForm=Inf 0 root _ huu +22 the the DET DT Definite=Def|PronType=Art 23 det _ huu +23 news news NOUN NN Number=Sing 21 dobj _ huu +24 that that SCONJ IN _ 27 mark _ huu +25 the the DET DT Definite=Def|PronType=Art 26 det _ huu +26 Baathists Baathists PROPN NNPS Number=Plur 27 nsubj _ huu +27 continue continue VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 23 acl _ huu +28 to to PART TO _ 29 mark _ huu +29 penetrate penetrate VERB VB VerbForm=Inf 27 xcomp _ huu +30 the the DET DT Definite=Def|PronType=Art 32 det _ huu +31 Iraqi iraqi ADJ JJ Degree=Pos 32 amod _ huu +32 government government NOUN NN Number=Sing 29 dobj _ huu +33 very very ADV RB _ 34 advmod _ huu +34 hopeful hopeful ADJ JJ Degree=Pos 21 xcomp _ huu +35 . . PUNCT . _ 21 punct _ huu + +# sent_id = 10 +# text = It reminds me too much of the ARVN officers who were secretly working for the other side in Vietnam . +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ huu +2 reminds remind VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ huu +3 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 2 dobj _ huu +4 too too ADV RB _ 5 advmod _ huu +5 much much ADV RB _ 2 advmod _ huu +6 of of ADP IN _ 9 case _ huu +7 the the DET DT Definite=Def|PronType=Art 9 det _ huu +8 ARVN ARVN PROPN NNP Number=Sing 9 compound _ huu +9 officers officer NOUN NNS Number=Plur 2 nmod _ huu +10 who who PRON WP PronType=Rel 13 nsubj _ huu +11 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 aux _ huu +12 secretly secretly ADV RB _ 13 advmod _ huu +13 working work VERB VBG Tense=Pres|VerbForm=Part 9 acl:relcl _ huu +14 for for ADP IN _ 17 case _ huu +15 the the DET DT Definite=Def|PronType=Art 17 det _ huu +16 other other ADJ JJ Degree=Pos 17 amod _ huu +17 side side NOUN NN Number=Sing 13 nmod _ huu +18 in in ADP IN _ 19 case _ huu +19 Vietnam Vietnam PROPN NNP Number=Sing 13 nmod _ huu +20 . . PUNCT . _ 2 punct _ huu + +# sent_id = 11 +# text = Al - Zaman : Guerrillas killed a member of the Kurdistan Democratic Party after kidnapping him in Mosul . +1 Al Al PROPN NNP Number=Sing 3 name _ huu +2 - - PUNCT HYPH _ 3 punct _ huu +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ huu +4 : : PUNCT : _ 3 punct _ huu +5 Guerrillas guerrilla NOUN NNS Number=Plur 6 nsubj _ huu +6 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ huu +7 a a DET DT Definite=Ind|PronType=Art 8 det _ huu +8 member member NOUN NN Number=Sing 6 dobj _ huu +9 of of ADP IN _ 13 case _ huu +10 the the DET DT Definite=Def|PronType=Art 13 det _ huu +11 Kurdistan Kurdistan PROPN NNP Number=Sing 13 compound _ huu +12 Democratic Democratic PROPN NNP Number=Sing 13 compound _ huu +13 Party Party PROPN NNP Number=Sing 8 nmod _ huu +14 after after SCONJ IN _ 15 mark _ huu +15 kidnapping kidnap VERB VBG VerbForm=Ger 6 advcl _ huu +16 him he PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 15 dobj _ huu +17 in in ADP IN _ 18 case _ huu +18 Mosul Mosul PROPN NNP Number=Sing 15 nmod _ huu +19 . . PUNCT . _ 3 punct _ huu + +# sent_id = 12 +# text = The police commander of Ninevah Province announced that bombings had declined 80 percent in Mosul , whereas there had been a big jump in the number of kidnappings . +1 The the DET DT Definite=Def|PronType=Art 3 det _ huu +2 police police NOUN NN Number=Sing 3 compound _ huu +3 commander commander NOUN NN Number=Sing 7 nsubj _ huu +4 of of ADP IN _ 6 case _ huu +5 Ninevah Ninevah PROPN NNP Number=Sing 6 compound _ huu +6 Province Province PROPN NNP Number=Sing 3 nmod _ huu +7 announced announce VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +8 that that SCONJ IN _ 11 mark _ huu +9 bombings bombing NOUN NNS Number=Plur 11 nsubj _ huu +10 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 aux _ huu +11 declined decline VERB VBN Tense=Past|VerbForm=Part 7 ccomp _ huu +12 80 80 NUM CD NumType=Card 13 nummod _ huu +13 percent percent NOUN NN Number=Sing 11 dobj _ huu +14 in in ADP IN _ 15 case _ huu +15 Mosul Mosul PROPN NNP Number=Sing 11 nmod _ huu +16 , , PUNCT , _ 11 punct _ huu +17 whereas whereas SCONJ IN _ 20 mark _ huu +18 there there PRON EX _ 20 expl _ huu +19 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 20 aux _ huu +20 been be VERB VBN Tense=Past|VerbForm=Part 11 advcl _ huu +21 a a DET DT Definite=Ind|PronType=Art 23 det _ huu +22 big big ADJ JJ Degree=Pos 23 amod _ huu +23 jump jump NOUN NN Number=Sing 20 nsubj _ huu +24 in in ADP IN _ 26 case _ huu +25 the the DET DT Definite=Def|PronType=Art 26 det _ huu +26 number number NOUN NN Number=Sing 23 nmod _ huu +27 of of ADP IN _ 28 case _ huu +28 kidnappings kidnapping NOUN NNS Number=Plur 26 nmod _ huu +29 . . PUNCT . _ 7 punct _ huu + +# sent_id = 13 +# text = On Wednesday guerrillas had kidnapped a cosmetic surgeon and his wife while they were on their way home . +1 On on ADP IN _ 2 case _ huu +2 Wednesday Wednesday PROPN NNP Number=Sing 5 nmod _ huu +3 guerrillas guerrilla NOUN NNS Number=Plur 5 nsubj _ huu +4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 aux _ huu +5 kidnapped kidnap VERB VBN Tense=Past|VerbForm=Part 0 root _ huu +6 a a DET DT Definite=Ind|PronType=Art 8 det _ huu +7 cosmetic cosmetic ADJ JJ Degree=Pos 8 amod _ huu +8 surgeon surgeon NOUN NN Number=Sing 5 dobj _ huu +9 and and CONJ CC _ 8 cc _ huu +10 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 11 nmod:poss _ huu +11 wife wife NOUN NN Number=Sing 8 conj _ huu +12 while while SCONJ IN _ 17 mark _ huu +13 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 17 nsubj _ huu +14 were be VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 17 cop _ huu +15 on on ADP IN _ 17 case _ huu +16 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 17 nmod:poss _ huu +17 way way NOUN NN Number=Sing 5 advcl _ huu +18 home home ADV RB _ 17 advmod _ huu +19 . . PUNCT . _ 5 punct _ huu + +# sent_id = 14 +# text = In Suwayrah , Kut Province , two car bombs were discovered before they could be detonated . +1 In in ADP IN _ 2 case _ huu +2 Suwayrah Suwayrah PROPN NNP Number=Sing 11 nmod _ huu +3 , , PUNCT , _ 2 punct _ huu +4 Kut Kut PROPN NNP Number=Sing 5 compound _ huu +5 Province Province PROPN NNP Number=Sing 2 appos _ huu +6 , , PUNCT , _ 11 punct _ huu +7 two two NUM CD NumType=Card 9 nummod _ huu +8 car car NOUN NN Number=Sing 9 compound _ huu +9 bombs bombs NOUN NN Number=Sing 11 nsubjpass _ huu +10 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 auxpass _ huu +11 discovered discover VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +12 before before SCONJ IN _ 16 mark _ huu +13 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 16 nsubjpass _ huu +14 could could AUX MD VerbForm=Fin 16 aux _ huu +15 be be AUX VB VerbForm=Inf 16 auxpass _ huu +16 detonated detonate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 11 advcl _ huu +17 . . PUNCT . _ 11 punct _ huu + +# sent_id = 15 +# text = ( Kut is in southeastern Iraq and has an overwhelmingly Shiite population , who are on the lookout for Baathist saboteurs and willingly turn them in . +1 ( ( PUNCT -LRB- _ 6 punct _ huu +2 Kut Kut PROPN NNP Number=Sing 6 nsubj _ huu +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ huu +4 in in ADP IN _ 6 case _ huu +5 southeastern southeastern ADJ JJ Degree=Pos 6 amod _ huu +6 Iraq Iraq PROPN NNP Number=Sing 0 root _ huu +7 and and CONJ CC _ 6 cc _ huu +8 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 conj _ huu +9 an a DET DT Definite=Ind|PronType=Art 12 det _ huu +10 overwhelmingly overwhelmingly ADV RB _ 11 advmod _ huu +11 Shiite shiite ADJ JJ Degree=Pos 12 amod _ huu +12 population population NOUN NN Number=Sing 8 dobj _ huu +13 , , PUNCT , _ 12 punct _ huu +14 who who PRON WP PronType=Rel 18 nsubj _ huu +15 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 cop _ huu +16 on on ADP IN _ 18 case _ huu +17 the the DET DT Definite=Def|PronType=Art 18 det _ huu +18 lookout lookout NOUN NN Number=Sing 12 acl:relcl _ huu +19 for for ADP IN _ 21 case _ huu +20 Baathist Baathist PROPN NNP Number=Sing 21 compound _ huu +21 saboteurs saboteur NOUN NNS Number=Plur 18 nmod _ huu +22 and and CONJ CC _ 18 cc _ huu +23 willingly willingly ADV RB _ 24 advmod _ huu +24 turn turn VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 conj _ huu +25 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 24 dobj _ huu +26 in in ADP RP _ 24 compound:prt _ huu +27 . . PUNCT . _ 6 punct _ huu + +# sent_id = 16 +# text = This willingness is the main difference in the number of bombings in the south as opposed to the center - north of the country . ) +1 This this DET DT Number=Sing|PronType=Dem 2 det _ huu +2 willingness willingness NOUN NN Number=Sing 6 nsubj _ huu +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ huu +4 the the DET DT Definite=Def|PronType=Art 6 det _ huu +5 main main ADJ JJ Degree=Pos 6 amod _ huu +6 difference difference NOUN NN Number=Sing 0 root _ huu +7 in in ADP IN _ 9 case _ huu +8 the the DET DT Definite=Def|PronType=Art 9 det _ huu +9 number number NOUN NN Number=Sing 6 nmod _ huu +10 of of ADP IN _ 11 case _ huu +11 bombings bombing NOUN NNS Number=Plur 9 nmod _ huu +12 in in ADP IN _ 14 case _ huu +13 the the DET DT Definite=Def|PronType=Art 14 det _ huu +14 south south NOUN NN Number=Sing 11 nmod _ huu +15 as as SCONJ IN _ 21 case _ huu +16 opposed oppose VERB VBN Tense=Past|VerbForm=Part 15 mwe _ huu +17 to to ADP IN _ 15 mwe _ huu +18 the the DET DT Definite=Def|PronType=Art 21 det _ huu +19 center center NOUN NN Number=Sing 21 compound _ huu +20 - - PUNCT HYPH _ 21 punct _ huu +21 north north NOUN NN Number=Sing 14 nmod _ huu +22 of of ADP IN _ 24 case _ huu +23 the the DET DT Definite=Def|PronType=Art 24 det _ huu +24 country country NOUN NN Number=Sing 21 nmod _ huu +25 . . PUNCT . _ 6 punct _ huu +26 ) ) PUNCT -RRB- _ 6 punct _ huu + +# sent_id = 17 +# text = In Baghdad Kadhim Talal Husain , assistant dean at the School of Education at Mustansiriyah University , was assassinated with his driver in the Salikh district . +1 In in ADP IN _ 2 case _ huu +2 Baghdad Baghdad PROPN NNP Number=Sing 19 nmod _ huu +3 Kadhim Kadhim PROPN NNP Number=Sing 5 name _ huu +4 Talal Talal PROPN NNP Number=Sing 5 name _ huu +5 Husain Husain PROPN NNP Number=Sing 19 nsubjpass _ huu +6 , , PUNCT , _ 5 punct _ huu +7 assistant assistant ADJ JJ Degree=Pos 8 amod _ huu +8 dean dean NOUN NN Number=Sing 5 appos _ huu +9 at at ADP IN _ 11 case _ huu +10 the the DET DT Definite=Def|PronType=Art 11 det _ huu +11 School School PROPN NNP Number=Sing 8 nmod _ huu +12 of of ADP IN _ 13 case _ huu +13 Education Education PROPN NNP Number=Sing 11 nmod _ huu +14 at at ADP IN _ 16 case _ huu +15 Mustansiriyah Mustansiriyah PROPN NNP Number=Sing 16 compound _ huu +16 University University PROPN NNP Number=Sing 11 nmod _ huu +17 , , PUNCT , _ 19 punct _ huu +18 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 19 auxpass _ huu +19 assassinated assassinate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +20 with with ADP IN _ 22 case _ huu +21 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 22 nmod:poss _ huu +22 driver driver NOUN NN Number=Sing 19 nmod _ huu +23 in in ADP IN _ 26 case _ huu +24 the the DET DT Definite=Def|PronType=Art 26 det _ huu +25 Salikh Salikh PROPN NNP Number=Sing 26 compound _ huu +26 district district NOUN NN Number=Sing 19 nmod _ huu +27 . . PUNCT . _ 19 punct _ huu + +# sent_id = 18 +# text = Guerrillas killed an engineer , Asi Ali , from Tikrit . +1 Guerrillas guerrilla NOUN NNS Number=Plur 2 nsubj _ huu +2 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +3 an a DET DT Definite=Ind|PronType=Art 4 det _ huu +4 engineer engineer NOUN NN Number=Sing 2 dobj _ huu +5 , , PUNCT , _ 4 punct _ huu +6 Asi Asi PROPN NNP Number=Sing 7 name _ huu +7 Ali Ali PROPN NNP Number=Sing 4 appos _ huu +8 , , PUNCT , _ 4 punct _ huu +9 from from ADP IN _ 10 case _ huu +10 Tikrit Tikrit PROPN NNP Number=Sing 4 nmod _ huu +11 . . PUNCT . _ 2 punct _ huu + +# sent_id = 19 +# text = They also killed Shaikh Hamid 'Akkab , a clan elder of a branch of the Dulaim tribe in Tikrit . +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ huu +2 also also ADV RB _ 3 advmod _ huu +3 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +4 Shaikh Shaikh PROPN NNP Number=Sing 6 name _ huu +5 Hamid Hamid PROPN NNP Number=Sing 6 name _ huu +6 'Akkab 'Akkab PROPN NNP Number=Sing 3 dobj _ huu +7 , , PUNCT , _ 6 punct _ huu +8 a a DET DT Definite=Ind|PronType=Art 10 det _ huu +9 clan clan NOUN NN Number=Sing 10 compound _ huu +10 elder elder NOUN NN Number=Sing 6 appos _ huu +11 of of ADP IN _ 13 case _ huu +12 a a DET DT Definite=Ind|PronType=Art 13 det _ huu +13 branch branch NOUN NN Number=Sing 10 nmod _ huu +14 of of ADP IN _ 17 case _ huu +15 the the DET DT Definite=Def|PronType=Art 17 det _ huu +16 Dulaim Dulaim PROPN NNP Number=Sing 17 compound _ huu +17 tribe tribe NOUN NN Number=Sing 13 nmod _ huu +18 in in ADP IN _ 19 case _ huu +19 Tikrit Tikrit PROPN NNP Number=Sing 3 nmod _ huu +20 . . PUNCT . _ 3 punct _ huu + +# sent_id = 20 +# text = His mother was also killed in the attack . +1 His he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss _ huu +2 mother mother NOUN NN Number=Sing 5 nsubjpass _ huu +3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 auxpass _ huu +4 also also ADV RB _ 5 advmod _ huu +5 killed kill VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +6 in in ADP IN _ 8 case _ huu +7 the the DET DT Definite=Def|PronType=Art 8 det _ huu +8 attack attack NOUN NN Number=Sing 5 nmod _ huu +9 . . PUNCT . _ 5 punct _ huu + +# sent_id = 21 +# text = Two other Dulaim leaders have been killed in the past week and a half . +1 Two two NUM CD NumType=Card 4 nummod _ huu +2 other other ADJ JJ Degree=Pos 4 amod _ huu +3 Dulaim Dulaim PROPN NNP Number=Sing 4 compound _ huu +4 leaders leader NOUN NNS Number=Plur 7 nsubjpass _ huu +5 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 aux _ huu +6 been be AUX VBN Tense=Past|VerbForm=Part 7 auxpass _ huu +7 killed kill VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +8 in in ADP IN _ 11 case _ huu +9 the the DET DT Definite=Def|PronType=Art 11 det _ huu +10 past past ADJ JJ Degree=Pos 11 amod _ huu +11 week week NOUN NN Number=Sing 7 nmod _ huu +12 and and CONJ CC _ 14 cc _ huu +13 a a DET DT Definite=Ind|PronType=Art 14 det _ huu +14 half half NOUN NN Number=Sing 11 nummod _ huu +15 . . PUNCT . _ 7 punct _ huu + +# sent_id = 22 +# text = Guerrillas near Hawijah launched an attack that left 6 dead , including 4 Iraqi soldiers . +1 Guerrillas guerrilla NOUN NNS Number=Plur 4 nsubj _ huu +2 near near ADP IN _ 3 case _ huu +3 Hawijah Hawijah PROPN NNP Number=Sing 1 nmod _ huu +4 launched launch VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +5 an a DET DT Definite=Ind|PronType=Art 6 det _ huu +6 attack attack NOUN NN Number=Sing 4 dobj _ huu +7 that that DET WDT PronType=Rel 8 nsubj _ huu +8 left leave VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 acl:relcl _ huu +9 6 6 NUM CD NumType=Card 8 dobj _ huu +10 dead dead ADJ JJ Degree=Pos 8 xcomp _ huu +11 , , PUNCT , _ 8 punct _ huu +12 including include VERB VBG VerbForm=Ger 15 case _ huu +13 4 4 NUM CD NumType=Card 15 nummod _ huu +14 Iraqi iraqi ADJ JJ Degree=Pos 15 amod _ huu +15 soldiers soldier NOUN NNS Number=Plur 9 nmod _ huu +16 . . PUNCT . _ 4 punct _ huu + +# sent_id = 23 +# text = One of them was from the Jubur tribe and was deputy commander of the Hawijah garrison . +1 One one NUM CD NumType=Card 8 nsubj _ huu +2 of of ADP IN _ 3 case _ huu +3 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 1 nmod _ huu +4 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 8 cop _ huu +5 from from ADP IN _ 8 case _ huu +6 the the DET DT Definite=Def|PronType=Art 8 det _ huu +7 Jubur Jubur PROPN NNP Number=Sing 8 name _ huu +8 tribe tribe NOUN NN Number=Sing 0 root _ huu +9 and and CONJ CC _ 8 cc _ huu +10 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 12 cop _ huu +11 deputy deputy NOUN NN Number=Sing 12 compound _ huu +12 commander commander NOUN NN Number=Sing 8 conj _ huu +13 of of ADP IN _ 16 case _ huu +14 the the DET DT Definite=Def|PronType=Art 16 det _ huu +15 Hawijah Hawijah PROPN NNP Number=Sing 16 compound _ huu +16 garrison garrison NOUN NN Number=Sing 12 nmod _ huu +17 . . PUNCT . _ 8 punct _ huu + +# sent_id = 24 +# text = Two hundred members of the Batawi clan of the Dulaim demonstrated in Baghdad on Friday , protesting the killing of their clan elder , Shaikh Kadhim Sarhid and 4 of his sons , by gunmen wearing Iraqi army uniforms . +1 Two two NUM CD NumType=Card 2 compound _ huu +2 hundred hundred NUM CD NumType=Card 3 nummod _ huu +3 members member NOUN NNS Number=Plur 11 nsubj _ huu +4 of of ADP IN _ 7 case _ huu +5 the the DET DT Definite=Def|PronType=Art 7 det _ huu +6 Batawi Batawi PROPN NNP Number=Sing 7 name _ huu +7 clan clan NOUN NN Number=Sing 3 nmod _ huu +8 of of ADP IN _ 10 case _ huu +9 the the DET DT Definite=Def|PronType=Art 10 det _ huu +10 Dulaim Dulaim PROPN NNP Number=Sing 7 nmod _ huu +11 demonstrated demonstrate VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +12 in in ADP IN _ 13 case _ huu +13 Baghdad Baghdad PROPN NNP Number=Sing 11 nmod _ huu +14 on on ADP IN _ 15 case _ huu +15 Friday Friday PROPN NNP Number=Sing 11 nmod _ huu +16 , , PUNCT , _ 11 punct _ huu +17 protesting protest VERB VBG VerbForm=Ger 11 advcl _ huu +18 the the DET DT Definite=Def|PronType=Art 19 det _ huu +19 killing killing NOUN NN Number=Sing 17 dobj _ huu +20 of of ADP IN _ 23 case _ huu +21 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 23 nmod:poss _ huu +22 clan clan NOUN NN Number=Sing 23 compound _ huu +23 elder elder NOUN NN Number=Sing 19 nmod _ huu +24 , , PUNCT , _ 23 punct _ huu +25 Shaikh Shaikh PROPN NNP Number=Sing 27 name _ huu +26 Kadhim Kadhim PROPN NNP Number=Sing 27 name _ huu +27 Sarhid Sarhid PROPN NNP Number=Sing 23 appos _ huu +28 and and CONJ CC _ 23 cc _ huu +29 4 4 NUM CD NumType=Card 23 conj _ huu +30 of of ADP IN _ 32 case _ huu +31 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 32 nmod:poss _ huu +32 sons son NOUN NNS Number=Plur 29 nmod _ huu +33 , , PUNCT , _ 19 punct _ huu +34 by by ADP IN _ 35 case _ huu +35 gunmen gunman NOUN NNS Number=Plur 19 nmod _ huu +36 wearing wear VERB VBG VerbForm=Ger 35 acl _ huu +37 Iraqi iraqi ADJ JJ Degree=Pos 39 amod _ huu +38 army army NOUN NN Number=Sing 39 compound _ huu +39 uniforms uniform NOUN NNS Number=Plur 36 dobj _ huu +40 . . PUNCT . _ 11 punct _ huu + +# sent_id = 25 +# text = ( This is a largely Sunni Arab clan , and some Sunni observers have accused Shiite elements in the government of being behind the assassination ; it is more likely the work of Sunni Arab guerrillas punishing the Batawi leaders for cooperating with the Dec. 15 elections . ) +1 ( ( PUNCT -LRB- _ 8 punct _ huu +2 This this PRON DT Number=Sing|PronType=Dem 8 nsubj _ huu +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ huu +4 a a DET DT Definite=Ind|PronType=Art 8 det _ huu +5 largely largely ADV RB _ 8 advmod _ huu +6 Sunni sunni ADJ JJ Degree=Pos 8 amod _ huu +7 Arab arab ADJ JJ Degree=Pos 8 amod _ huu +8 clan clan NOUN NN Number=Sing 0 root _ huu +9 , , PUNCT , _ 8 punct _ huu +10 and and CONJ CC _ 8 cc _ huu +11 some some DET DT _ 13 det _ huu +12 Sunni sunni ADJ JJ Degree=Pos 13 amod _ huu +13 observers observer NOUN NNS Number=Plur 15 nsubj _ huu +14 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 15 aux _ huu +15 accused accuse VERB VBN Tense=Past|VerbForm=Part 8 conj _ huu +16 Shiite shiite ADJ JJ Degree=Pos 17 amod _ huu +17 elements element NOUN NNS Number=Plur 15 dobj _ huu +18 in in ADP IN _ 20 case _ huu +19 the the DET DT Definite=Def|PronType=Art 20 det _ huu +20 government government NOUN NN Number=Sing 17 nmod _ huu +21 of of SCONJ IN _ 25 mark _ huu +22 being be VERB VBG VerbForm=Ger 25 cop _ huu +23 behind behind ADP IN _ 25 case _ huu +24 the the DET DT Definite=Def|PronType=Art 25 det _ huu +25 assassination assassination NOUN NN Number=Sing 15 advcl _ huu +26 ; ; PUNCT , _ 8 punct _ huu +27 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 32 nsubj _ huu +28 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 32 cop _ huu +29 more more ADV RBR _ 30 advmod _ huu +30 likely likely ADV RB _ 32 advmod _ huu +31 the the DET DT Definite=Def|PronType=Art 32 det _ huu +32 work work NOUN NN Number=Sing 8 parataxis _ huu +33 of of ADP IN _ 36 case _ huu +34 Sunni sunni ADJ JJ Degree=Pos 36 amod _ huu +35 Arab arab ADJ JJ Degree=Pos 36 amod _ huu +36 guerrillas guerrilla NOUN NNS Number=Plur 32 nmod _ huu +37 punishing punish VERB VBG VerbForm=Ger 36 acl _ huu +38 the the DET DT Definite=Def|PronType=Art 40 det _ huu +39 Batawi Batawi PROPN NNP Number=Sing 40 name _ huu +40 leaders leader NOUN NNS Number=Plur 37 dobj _ huu +41 for for SCONJ IN _ 42 mark _ huu +42 cooperating cooperate VERB VBG VerbForm=Ger 40 acl _ huu +43 with with ADP IN _ 47 case _ huu +44 the the DET DT Definite=Def|PronType=Art 47 det _ huu +45 Dec. Dec. PROPN NNP Number=Sing 47 compound _ huu +46 15 15 NUM CD NumType=Card 45 nummod _ huu +47 elections election NOUN NNS Number=Plur 42 nmod _ huu +48 . . PUNCT . _ 8 punct _ huu +49 ) ) PUNCT -RRB- _ 8 punct _ huu + +# sent_id = 26 +# text = Al - Zaman : The Iraqi High Electoral Commission on Friday denied a request of the Debaathification Commission to exclude 51 individuals from running on party lists in the Dec. 15 elections on grounds of having been sufficiently involved in Baath activities to warrant their being excluded from civil office . +1 Al Al PROPN NNP Number=Sing 3 name _ huu +2 - - PUNCT HYPH _ 3 punct _ huu +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ huu +4 : : PUNCT : _ 3 punct _ huu +5 The the DET DT Definite=Def|PronType=Art 9 det _ huu +6 Iraqi iraqi ADJ JJ Degree=Pos 9 amod _ huu +7 High High PROPN NNP Number=Sing 9 compound _ huu +8 Electoral Electoral PROPN NNP Number=Sing 9 compound _ huu +9 Commission Commission PROPN NNP Number=Sing 12 nsubj _ huu +10 on on ADP IN _ 11 case _ huu +11 Friday Friday PROPN NNP Number=Sing 12 nmod _ huu +12 denied deny VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ huu +13 a a DET DT Definite=Ind|PronType=Art 14 det _ huu +14 request request NOUN NN Number=Sing 12 dobj _ huu +15 of of ADP IN _ 18 case _ huu +16 the the DET DT Definite=Def|PronType=Art 18 det _ huu +17 Debaathification Debaathification PROPN NNP Number=Sing 18 compound _ huu +18 Commission Commission PROPN NNP Number=Sing 14 nmod _ huu +19 to to PART TO _ 20 mark _ huu +20 exclude exclude VERB VB VerbForm=Inf 14 acl _ huu +21 51 51 NUM CD NumType=Card 22 nummod _ huu +22 individuals individual NOUN NNS Number=Plur 20 dobj _ huu +23 from from SCONJ IN _ 24 mark _ huu +24 running run VERB VBG VerbForm=Ger 20 advcl _ huu +25 on on ADP IN _ 27 case _ huu +26 party party NOUN NN Number=Sing 27 compound _ huu +27 lists list NOUN NNS Number=Plur 24 nmod _ huu +28 in in ADP IN _ 32 case _ huu +29 the the DET DT Definite=Def|PronType=Art 32 det _ huu +30 Dec. Dec. PROPN NNP Number=Sing 32 compound _ huu +31 15 15 NUM CD NumType=Card 30 nummod _ huu +32 elections election NOUN NNS Number=Plur 27 nmod _ huu +33 on on ADP IN _ 34 case _ huu +34 grounds grounds NOUN NNS Number=Plur 24 nmod _ huu +35 of of SCONJ IN _ 39 mark _ huu +36 having have AUX VBG VerbForm=Ger 39 aux _ huu +37 been be VERB VBN Tense=Past|VerbForm=Part 39 cop _ huu +38 sufficiently sufficiently ADV RB _ 39 advmod _ huu +39 involved involved ADJ JJ Degree=Pos 34 acl _ huu +40 in in ADP IN _ 42 case _ huu +41 Baath Baath PROPN NNP Number=Sing 42 compound _ huu +42 activities activity NOUN NNS Number=Plur 39 nmod _ huu +43 to to PART TO _ 44 mark _ huu +44 warrant warrant VERB VB VerbForm=Inf 38 xcomp _ huu +45 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 47 nsubjpass _ huu +46 being be AUX VBG VerbForm=Ger 47 auxpass _ huu +47 excluded exclude VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 44 ccomp _ huu +48 from from ADP IN _ 50 case _ huu +49 civil civil ADJ JJ Degree=Pos 50 amod _ huu +50 office office NOUN NN Number=Sing 47 nmod _ huu +51 . . PUNCT . _ 3 punct _ huu + +# sent_id = 27 +# text = The Commission said it had no legal grounds for such an exclusion . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 Commission commission NOUN NN Number=Sing 3 nsubj _ huu +3 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ huu +5 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 ccomp _ huu +6 no no DET DT _ 8 neg _ huu +7 legal legal ADJ JJ Degree=Pos 8 amod _ huu +8 grounds grounds NOUN NNS Number=Plur 5 dobj _ huu +9 for for ADP IN _ 12 case _ huu +10 such such DET PDT _ 12 det:predet _ huu +11 an a DET DT Definite=Ind|PronType=Art 12 det _ huu +12 exclusion exclusion NOUN NN Number=Sing 8 nmod _ huu +13 . . PUNCT . _ 3 punct _ huu + +# sent_id = 28 +# text = This item is a small one and easily missed . +1 This this DET DT Number=Sing|PronType=Dem 2 det _ huu +2 item item NOUN NN Number=Sing 6 nsubj _ huu +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ huu +4 a a DET DT Definite=Ind|PronType=Art 6 det _ huu +5 small small ADJ JJ Degree=Pos 6 amod _ huu +6 one one NOUN NN Number=Sing 0 root _ huu +7 and and CONJ CC _ 6 cc _ huu +8 easily easily ADV RB _ 9 advmod _ huu +9 missed miss VERB VBN Tense=Past|VerbForm=Part 6 conj _ huu +10 . . PUNCT . _ 6 punct _ huu + +# sent_id = 29 +# text = But in my view it is highly significant . +1 But but CONJ CC _ 8 cc _ huu +2 in in ADP IN _ 4 case _ huu +3 my my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 4 nmod:poss _ huu +4 view view NOUN NN Number=Sing 8 nmod _ huu +5 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 8 nsubj _ huu +6 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ huu +7 highly highly ADV RB _ 8 advmod _ huu +8 significant significant ADJ JJ Degree=Pos 0 root _ huu +9 . . PUNCT . _ 8 punct _ huu + +# sent_id = 30 +# text = The Debaathification Commission had been pushed by Ahmad Chalabi and his Iraqi National Congress very hard , and had pushed many Sunni Arabs into the arms of the guerrillas . +1 The the DET DT Definite=Def|PronType=Art 3 det _ huu +2 Debaathification Debaathification PROPN NNP Number=Sing 3 compound _ huu +3 Commission Commission PROPN NNP Number=Sing 6 nsubjpass _ huu +4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 aux _ huu +5 been be AUX VBN Tense=Past|VerbForm=Part 6 auxpass _ huu +6 pushed push VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +7 by by ADP IN _ 9 case _ huu +8 Ahmad Ahmad PROPN NNP Number=Sing 9 name _ huu +9 Chalabi Chalabi PROPN NNP Number=Sing 6 nmod _ huu +10 and and CONJ CC _ 9 cc _ huu +11 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 14 nmod:poss _ huu +12 Iraqi Iraqi PROPN NNP Number=Sing 14 compound _ huu +13 National National PROPN NNP Number=Sing 14 compound _ huu +14 Congress Congress PROPN NNP Number=Sing 9 conj _ huu +15 very very ADV RB _ 16 advmod _ huu +16 hard hard ADV RB Degree=Pos 6 advmod _ huu +17 , , PUNCT , _ 6 punct _ huu +18 and and CONJ CC _ 6 cc _ huu +19 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 20 aux _ huu +20 pushed push VERB VBN Tense=Past|VerbForm=Part 6 conj _ huu +21 many many ADJ JJ Degree=Pos 23 amod _ huu +22 Sunni sunni ADJ JJ Degree=Pos 23 amod _ huu +23 Arabs Arabs PROPN NNPS Number=Plur 20 dobj _ huu +24 into into ADP IN _ 26 case _ huu +25 the the DET DT Definite=Def|PronType=Art 26 det _ huu +26 arms arm NOUN NNS Number=Plur 20 nmod _ huu +27 of of ADP IN _ 29 case _ huu +28 the the DET DT Definite=Def|PronType=Art 29 det _ huu +29 guerrillas guerrilla NOUN NNS Number=Plur 26 nmod _ huu +30 . . PUNCT . _ 6 punct _ huu + +# sent_id = 31 +# text = Chalabi has been increasingly marginalized within Iraq , however , despite his ties of clientelage with Washington and Tehran . +1 Chalabi Chalabi PROPN NNP Number=Sing 5 nsubjpass _ huu +2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ huu +3 been be AUX VBN Tense=Past|VerbForm=Part 5 auxpass _ huu +4 increasingly increasingly ADV RB _ 5 advmod _ huu +5 marginalized marginalize VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +6 within within ADP IN _ 7 case _ huu +7 Iraq Iraq PROPN NNP Number=Sing 5 nmod _ huu +8 , , PUNCT , _ 5 punct _ huu +9 however however ADV RB _ 5 advmod _ huu +10 , , PUNCT , _ 5 punct _ huu +11 despite despite ADP IN _ 13 case _ huu +12 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 13 nmod:poss _ huu +13 ties tie NOUN NNS Number=Plur 5 nmod _ huu +14 of of ADP IN _ 15 case _ huu +15 clientelage clientelage NOUN NN Number=Sing 13 nmod _ huu +16 with with ADP IN _ 17 case _ huu +17 Washington Washington PROPN NNP Number=Sing 15 nmod _ huu +18 and and CONJ CC _ 17 cc _ huu +19 Tehran Tehran PROPN NNP Number=Sing 17 conj _ huu +20 . . PUNCT . _ 5 punct _ huu + +# sent_id = 32 +# text = He is no longer in the dominant Shiite list , the United Iraqi Alliance , and wo n't have many seats in the new parliament . +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 nsubj _ huu +2 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ huu +3 no no ADV RB _ 4 neg _ huu +4 longer longer ADV RBR Degree=Cmp 7 advmod _ huu +5 in in ADP IN _ 9 case _ huu +6 the the DET DT Definite=Def|PronType=Art 9 det _ huu +7 dominant dominant ADJ JJ Degree=Pos 9 amod _ huu +8 Shiite shiite ADJ JJ Degree=Pos 9 amod _ huu +9 list list NOUN NN Number=Sing 0 root _ huu +10 , , PUNCT , _ 9 punct _ huu +11 the the DET DT Definite=Def|PronType=Art 14 det _ huu +12 United United PROPN NNP Number=Sing 14 compound _ huu +13 Iraqi Iraqi PROPN NNP Number=Sing 14 compound _ huu +14 Alliance Alliance PROPN NNP Number=Sing 9 appos _ huu +15 , , PUNCT , _ 9 punct _ huu +16 and and CONJ CC _ 9 cc _ huu +17 wo will AUX MD VerbForm=Fin 19 aux _ huu +18 n't not PART RB _ 19 neg _ huu +19 have have VERB VB VerbForm=Inf 9 conj _ huu +20 many many ADJ JJ Degree=Pos 21 amod _ huu +21 seats seat NOUN NNS Number=Plur 19 dobj _ huu +22 in in ADP IN _ 25 case _ huu +23 the the DET DT Definite=Def|PronType=Art 25 det _ huu +24 new new ADJ JJ Degree=Pos 25 amod _ huu +25 parliament parliament NOUN NN Number=Sing 21 nmod _ huu +26 . . PUNCT . _ 9 punct _ huu + +# sent_id = 33 +# text = Some 2,000 junior officers of the old Baath army have been recalled to duty in recent months , something Chalabi would have blocked if he could have . +1 Some some DET DT _ 4 det _ huu +2 2,000 2,000 NUM CD NumType=Card 4 nummod _ huu +3 junior junior ADJ JJ Degree=Pos 4 amod _ huu +4 officers officer NOUN NNS Number=Plur 12 nsubjpass _ huu +5 of of ADP IN _ 9 case _ huu +6 the the DET DT Definite=Def|PronType=Art 9 det _ huu +7 old old ADJ JJ Degree=Pos 9 amod _ huu +8 Baath Baath PROPN NNP Number=Sing 9 compound _ huu +9 army army NOUN NN Number=Sing 4 nmod _ huu +10 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 12 aux _ huu +11 been be AUX VBN Tense=Past|VerbForm=Part 12 auxpass _ huu +12 recalled recall VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +13 to to ADP IN _ 14 case _ huu +14 duty duty NOUN NN Number=Sing 12 nmod _ huu +15 in in ADP IN _ 17 case _ huu +16 recent recent ADJ JJ Degree=Pos 17 amod _ huu +17 months month NOUN NNS Number=Plur 12 nmod _ huu +18 , , PUNCT , _ 12 punct _ huu +19 something something NOUN NN Number=Sing 12 nmod:npmod _ huu +20 Chalabi Chalabi PROPN NNP Number=Sing 23 nsubj _ huu +21 would would AUX MD VerbForm=Fin 23 aux _ huu +22 have have AUX VB VerbForm=Inf 23 aux _ huu +23 blocked block VERB VBN Tense=Past|VerbForm=Part 19 acl:relcl _ huu +24 if if SCONJ IN _ 27 mark _ huu +25 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 27 nsubj _ huu +26 could could AUX MD VerbForm=Fin 27 aux _ huu +27 have have VERB VB VerbForm=Inf 23 advcl _ huu +28 . . PUNCT . _ 12 punct _ huu + +# sent_id = 34 +# text = Now the Electoral Commission is refusing to punish people for mere past Baath Party membership . +1 Now now ADV RB _ 6 advmod _ huu +2 the the DET DT Definite=Def|PronType=Art 4 det _ huu +3 Electoral Electoral PROPN NNP Number=Sing 4 compound _ huu +4 Commission Commission PROPN NNP Number=Sing 6 nsubj _ huu +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ huu +6 refusing refuse VERB VBG Tense=Pres|VerbForm=Part 0 root _ huu +7 to to PART TO _ 8 mark _ huu +8 punish punish VERB VB VerbForm=Inf 6 xcomp _ huu +9 people people NOUN NNS Number=Plur 8 dobj _ huu +10 for for ADP IN _ 15 case _ huu +11 mere mere ADJ JJ Degree=Pos 15 amod _ huu +12 past past ADJ JJ Degree=Pos 15 amod _ huu +13 Baath Baath PROPN NNP Number=Sing 14 compound _ huu +14 Party Party PROPN NNP Number=Sing 15 compound _ huu +15 membership membership NOUN NN Number=Sing 8 nmod _ huu +16 . . PUNCT . _ 6 punct _ huu + +# sent_id = 35 +# text = The situation in Iraq is only going to get better this way . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 situation situation NOUN NN Number=Sing 7 nsubj _ huu +3 in in ADP IN _ 4 case _ huu +4 Iraq Iraq PROPN NNP Number=Sing 2 nmod _ huu +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ huu +6 only only ADV RB _ 7 advmod _ huu +7 going go VERB VBG Tense=Pres|VerbForm=Part 0 root _ huu +8 to to PART TO _ 9 mark _ huu +9 get get VERB VB VerbForm=Inf 7 xcomp _ huu +10 better better ADJ JJR Degree=Cmp 9 xcomp _ huu +11 this this DET DT Number=Sing|PronType=Dem 12 det _ huu +12 way way NOUN NN Number=Sing 10 dobj _ huu +13 . . PUNCT . _ 7 punct _ huu + +# sent_id = 36 +# text = If someone committed a crime against humanity , prosecute the person . +1 If if SCONJ IN _ 3 mark _ huu +2 someone someone NOUN NN Number=Sing 3 nsubj _ huu +3 committed commit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 advcl _ huu +4 a a DET DT Definite=Ind|PronType=Art 5 det _ huu +5 crime crime NOUN NN Number=Sing 3 dobj _ huu +6 against against ADP IN _ 7 case _ huu +7 humanity humanity NOUN NN Number=Sing 5 nmod _ huu +8 , , PUNCT , _ 9 punct _ huu +9 prosecute prosecute VERB VB VerbForm=Inf 0 root _ huu +10 the the DET DT Definite=Def|PronType=Art 11 det _ huu +11 person person NOUN NN Number=Sing 9 dobj _ huu +12 . . PUNCT . _ 9 punct _ huu + +# sent_id = 37 +# text = If he or she did not , then they should have all the same rights as other Iraqis . +1 If if SCONJ IN _ 5 mark _ huu +2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 nsubj _ huu +3 or or CONJ CC _ 2 cc _ huu +4 she she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 2 conj _ huu +5 did do VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 advcl _ huu +6 not not PART RB _ 5 neg _ huu +7 , , PUNCT , _ 11 punct _ huu +8 then then ADV RB PronType=Dem 11 advmod _ huu +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ huu +10 should should AUX MD VerbForm=Fin 11 aux _ huu +11 have have VERB VB VerbForm=Inf 0 root _ huu +12 all all DET PDT _ 15 det:predet _ huu +13 the the DET DT Definite=Def|PronType=Art 15 det _ huu +14 same same ADJ JJ Degree=Pos 15 amod _ huu +15 rights rights NOUN NNS Number=Plur 11 dobj _ huu +16 as as ADP IN _ 18 case _ huu +17 other other ADJ JJ Degree=Pos 18 amod _ huu +18 Iraqis Iraqis PROPN NNPS Number=Plur 15 nmod _ huu +19 . . PUNCT . _ 11 punct _ huu + +# sent_id = 38 +# text = Al - Sharq al - Awsat reports that a key eyewitness in the trial of Saddam Hussein for a 1982 massacre at Dujail has died . +1 Al Al PROPN NNP Number=Sing 3 name _ huu +2 - - PUNCT HYPH _ 3 punct _ huu +3 Sharq Sharq PROPN NNP Number=Sing 6 name _ huu +4 al al PROPN NNP Number=Sing 6 name _ huu +5 - - PUNCT HYPH _ 6 punct _ huu +6 Awsat Awsat PROPN NNP Number=Sing 7 nsubj _ huu +7 reports report VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ huu +8 that that SCONJ IN _ 25 mark _ huu +9 a a DET DT Definite=Ind|PronType=Art 11 det _ huu +10 key key ADJ JJ Degree=Pos 11 amod _ huu +11 eyewitness eyewitness NOUN NN Number=Sing 25 nsubj _ huu +12 in in ADP IN _ 14 case _ huu +13 the the DET DT Definite=Def|PronType=Art 14 det _ huu +14 trial trial NOUN NN Number=Sing 11 nmod _ huu +15 of of ADP IN _ 17 case _ huu +16 Saddam Saddam PROPN NNP Number=Sing 17 name _ huu +17 Hussein Hussein PROPN NNP Number=Sing 14 nmod _ huu +18 for for ADP IN _ 21 case _ huu +19 a a DET DT Definite=Ind|PronType=Art 21 det _ huu +20 1982 1982 NUM CD NumType=Card 21 nummod _ huu +21 massacre massacre NOUN NN Number=Sing 14 nmod _ huu +22 at at ADP IN _ 23 case _ huu +23 Dujail Dujail PROPN NNP Number=Sing 21 nmod _ huu +24 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 25 aux _ huu +25 died die VERB VBN Tense=Past|VerbForm=Part 7 ccomp _ huu +26 . . PUNCT . _ 7 punct _ huu + +# sent_id = 39 +# text = A team from the court managed to take his deposition before he died . +1 A a DET DT Definite=Ind|PronType=Art 2 det _ huu +2 team team NOUN NN Number=Sing 6 nsubj _ huu +3 from from ADP IN _ 5 case _ huu +4 the the DET DT Definite=Def|PronType=Art 5 det _ huu +5 court court NOUN NN Number=Sing 2 nmod _ huu +6 managed manage VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ huu +7 to to PART TO _ 8 mark _ huu +8 take take VERB VB VerbForm=Inf 6 xcomp _ huu +9 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 10 nmod:poss _ huu +10 deposition deposition NOUN NN Number=Sing 8 dobj _ huu +11 before before SCONJ IN _ 13 mark _ huu +12 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 13 nsubj _ huu +13 died die VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 8 advcl _ huu +14 . . PUNCT . _ 6 punct _ huu + +# sent_id = 40 +# text = The trial begins again Nov. 28 . +1 The the DET DT Definite=Def|PronType=Art 2 det _ huu +2 trial trial NOUN NN Number=Sing 3 nsubj _ huu +3 begins begin VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ huu +4 again again ADV RB _ 3 advmod _ huu +5 Nov. Nov. PROPN NNP Number=Sing 3 nmod:tmod _ huu +6 28 28 NUM CD NumType=Card 5 nummod _ huu +7 . . PUNCT . _ 3 punct _ huu + +# sent_id = 41 +# text = In Baghdad the fighting still continues in several areas , mostly in Sadr city and Adhamiya . +1 In in ADP IN _ 2 case _ huu +2 Baghdad Baghdad PROPN NNP Number=Sing 6 nmod _ huu +3 the the DET DT Definite=Def|PronType=Art 4 det _ huu +4 fighting fighting NOUN NN Number=Sing 6 nsubj _ huu +5 still still ADV RB _ 6 advmod _ huu +6 continues continue VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ huu +7 in in ADP IN _ 9 case _ huu +8 several several ADJ JJ Degree=Pos 9 amod _ huu +9 areas area NOUN NNS Number=Plur 6 nmod _ huu +10 , , PUNCT , _ 6 punct _ huu +11 mostly mostly ADV RB _ 14 advmod _ huu +12 in in ADP IN _ 14 case _ huu +13 Sadr Sadr PROPN NNP Number=Sing 14 compound _ huu +14 city city NOUN NN Number=Sing 6 nmod _ huu +15 and and CONJ CC _ 14 cc _ huu +16 Adhamiya Adhamiya PROPN NNP Number=Sing 14 conj _ huu +17 . . PUNCT . _ 6 punct _ huu + +# sent_id = 42 +# text = Baghdadis do n't venture much out of their neighbourhoods any more , you never know where you might get stuck . +1 Baghdadis Baghdadis PROPN NNPS Number=Plur 4 nsubj _ huu +2 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux _ huu +3 n't not PART RB _ 4 neg _ huu +4 venture venture VERB VB VerbForm=Inf 0 root _ huu +5 much much ADV RB _ 4 advmod _ huu +6 out out ADP IN _ 9 case _ huu +7 of of ADP IN _ 9 case _ huu +8 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 9 nmod:poss _ huu +9 neighbourhoods neighbourhood NOUN NNS Number=Plur 4 nmod _ huu +10 any any ADV RB _ 11 advmod _ huu +11 more more ADV RBR _ 4 advmod _ huu +12 , , PUNCT , _ 4 punct _ huu +13 you you PRON PRP Case=Nom|Person=2|PronType=Prs 15 nsubj _ huu +14 never never ADV RB _ 15 neg _ huu +15 know know VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 ccomp _ huu +16 where where ADV WRB PronType=Int 20 mark _ huu +17 you you PRON PRP Case=Nom|Person=2|PronType=Prs 20 nsubjpass _ huu +18 might might AUX MD VerbForm=Fin 20 aux _ huu +19 get get VERB VB VerbForm=Inf 20 auxpass _ huu +20 stuck stuck ADJ JJ Degree=Pos 15 advcl _ huu +21 . . PUNCT . _ 4 punct _ huu + +# sent_id = 43 +# text = There has been talk that the night curfew might be implemented again . +1 There there PRON EX _ 3 expl _ huu +2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux _ huu +3 been be VERB VBN Tense=Past|VerbForm=Part 0 root _ huu +4 talk talk NOUN NN Number=Sing 3 nsubj _ huu +5 that that SCONJ IN _ 11 mark _ huu +6 the the DET DT Definite=Def|PronType=Art 8 det _ huu +7 night night NOUN NN Number=Sing 8 compound _ huu +8 curfew curfew NOUN NN Number=Sing 11 nsubjpass _ huu +9 might might AUX MD VerbForm=Fin 11 aux _ huu +10 be be AUX VB VerbForm=Inf 11 auxpass _ huu +11 implemented implement VERB VBN Tense=Past|VerbForm=Part 4 acl _ huu +12 again again ADV RB _ 11 advmod _ huu +13 . . PUNCT . _ 4 punct _ huu + +# sent_id = 44 +# text = My neighbourhood has been surrounded by American troops for three days now , helicopters have been circling over our heads non-stop . +1 My my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ huu +2 neighbourhood neighbourhood NOUN NN Number=Sing 5 nsubjpass _ huu +3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ huu +4 been be AUX VBN Tense=Past|VerbForm=Part 5 auxpass _ huu +5 surrounded surround VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ huu +6 by by ADP IN _ 8 case _ huu +7 American american ADJ JJ Degree=Pos 8 amod _ huu +8 troops troops NOUN NNS Number=Plur 5 nmod _ huu +9 for for ADP IN _ 11 case _ huu +10 three three NUM CD NumType=Card 11 nummod _ huu +11 days day NOUN NNS Number=Plur 5 nmod _ huu +12 now now ADV RB _ 5 advmod _ huu +13 , , PUNCT , _ 5 punct _ huu +14 helicopters helicopter NOUN NNS Number=Plur 17 nsubj _ huu +15 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 17 aux _ huu +16 been be AUX VBN Tense=Past|VerbForm=Part 17 aux _ huu +17 circling circle VERB VBG Tense=Pres|VerbForm=Part 5 ccomp _ huu +18 over over ADP IN _ 20 case _ huu +19 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 20 nmod:poss _ huu +20 heads head NOUN NNS Number=Plur 17 nmod _ huu +21 non-stop non-stop ADV RB _ 17 advmod _ huu +22 . . PUNCT . _ 5 punct _ huu + +# sent_id = 45 +# text = Fedayeen are now visible on the street and they have become bolder than ever . +1 Fedayeen fedayeen NOUN NNS Number=Plur 4 nsubj _ huu +2 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 cop _ huu +3 now now ADV RB _ 4 advmod _ huu +4 visible visible ADJ JJ Degree=Pos 0 root _ huu +5 on on ADP IN _ 7 case _ huu +6 the the DET DT Definite=Def|PronType=Art 7 det _ huu +7 street street NOUN NN Number=Sing 4 nmod _ huu +8 and and CONJ CC _ 4 cc _ huu +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ huu +10 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 aux _ huu +11 become become VERB VBN Tense=Past|VerbForm=Part 4 conj _ huu +12 bolder bolder ADJ JJR Degree=Cmp 11 xcomp _ huu +13 than than ADP IN _ 14 case _ huu +14 ever ever ADV RB _ 12 nmod _ huu +15 . . PUNCT . _ 4 punct _ huu + diff --git a/demo/prepositions-up.conllu b/demo/prepositions-up.conllu new file mode 100644 index 00000000..962bf8d9 --- /dev/null +++ b/demo/prepositions-up.conllu @@ -0,0 +1,1074 @@ +['read.Conllu', 'files=en-sample.conllu', 'demo.RehangPrepositions', 'write.Conllu'] +['read.Conllu', 'demo.RehangPrepositions', 'write.Conllu'] +[{'files': 'en-sample.conllu'}, {}, {}] +# sent_id = 1 +# text = Al-Zaman : American forces killed Shaikh Abdullah al-Ani, the preacher at the mosque in the town of Qaim, near the Syrian border. +1 Al Al PROPN NNP Number=Sing 3 name _ SpaceAfter=No +2 - - PUNCT HYPH _ 3 punct _ SpaceAfter=No +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ _ +4 : : PUNCT : _ 3 punct _ _ +5 American american ADJ JJ Degree=Pos 6 amod _ _ +6 forces force NOUN NNS Number=Plur 7 nsubj _ _ +7 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ _ +8 Shaikh Shaikh PROPN NNP Number=Sing 12 name _ _ +9 Abdullah Abdullah PROPN NNP Number=Sing 12 name _ _ +10 al al PROPN NNP Number=Sing 12 name _ SpaceAfter=No +11 - - PUNCT HYPH _ 12 punct _ SpaceAfter=No +12 Ani Ani PROPN NNP Number=Sing 7 dobj _ SpaceAfter=No +13 , , PUNCT , _ 12 punct _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 preacher preacher NOUN NN Number=Sing 12 appos _ _ +16 at at ADP IN _ 7 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 mosque mosque NOUN NN Number=Sing 16 nmod _ _ +19 in in ADP IN _ 18 case _ _ +20 the the DET DT Definite=Def|PronType=Art 21 det _ _ +21 town town NOUN NN Number=Sing 19 nmod _ _ +22 of of ADP IN _ 21 case _ _ +23 Qaim Qaim PROPN NNP Number=Sing 22 nmod _ SpaceAfter=No +24 , , PUNCT , _ 21 punct _ _ +25 near near ADP IN _ 21 case _ _ +26 the the DET DT Definite=Def|PronType=Art 28 det _ _ +27 Syrian syrian ADJ JJ Degree=Pos 28 amod _ _ +28 border border NOUN NN Number=Sing 25 nmod _ SpaceAfter=No +29 . . PUNCT . _ 3 punct _ _ + +# sent_id = 2 +# text = [This killing of a respected cleric will be causing us trouble for years to come.] +1 [ [ PUNCT -LRB- _ 10 punct _ SpaceAfter=No +2 This this DET DT Number=Sing|PronType=Dem 3 det _ _ +3 killing killing NOUN NN Number=Sing 10 nsubj _ _ +4 of of ADP IN _ 3 case _ _ +5 a a DET DT Definite=Ind|PronType=Art 7 det _ _ +6 respected respected ADJ JJ Degree=Pos 7 amod _ _ +7 cleric cleric NOUN NN Number=Sing 4 nmod _ _ +8 will will AUX MD VerbForm=Fin 10 aux _ _ +9 be be AUX VB VerbForm=Inf 10 aux _ _ +10 causing cause VERB VBG VerbForm=Ger 0 root _ _ +11 us we PRON PRP Case=Acc|Number=Plur|Person=1|PronType=Prs 10 iobj _ _ +12 trouble trouble NOUN NN Number=Sing 10 dobj _ _ +13 for for ADP IN _ 10 case _ _ +14 years year NOUN NNS Number=Plur 13 nmod _ _ +15 to to PART TO _ 16 mark _ _ +16 come come VERB VB VerbForm=Inf 14 acl _ SpaceAfter=No +17 . . PUNCT . _ 10 punct _ SpaceAfter=No +18 ] ] PUNCT -RRB- _ 10 punct _ _ + +# sent_id = 3 +# text = DPA: Iraqi authorities announced that they had busted up 3 terrorist cells operating in Baghdad. +1 DPA DPA PROPN NNP Number=Sing 0 root _ SpaceAfter=No +2 : : PUNCT : _ 1 punct _ _ +3 Iraqi iraqi ADJ JJ Degree=Pos 4 amod _ _ +4 authorities authority NOUN NNS Number=Plur 5 nsubj _ _ +5 announced announce VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 1 parataxis _ _ +6 that that SCONJ IN _ 9 mark _ _ +7 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 9 nsubj _ _ +8 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 aux _ _ +9 busted bust VERB VBN Tense=Past|VerbForm=Part 10 ccomp _ _ +10 up up ADP RP _ 5 compound:prt _ _ +11 3 3 NUM CD NumType=Card 13 nummod _ _ +12 terrorist terrorist ADJ JJ Degree=Pos 13 amod _ _ +13 cells cell NOUN NNS Number=Plur 9 dobj _ _ +14 operating operate VERB VBG VerbForm=Ger 13 acl _ _ +15 in in ADP IN _ 14 case _ _ +16 Baghdad Baghdad PROPN NNP Number=Sing 15 nmod _ SpaceAfter=No +17 . . PUNCT . _ 1 punct _ _ + +# sent_id = 4 +# text = Two of them were being run by 2 officials of the Ministry of the Interior! +1 Two two NUM CD NumType=Card 6 nsubjpass _ _ +2 of of ADP IN _ 1 case _ _ +3 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 2 nmod _ _ +4 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 aux _ _ +5 being be AUX VBG VerbForm=Ger 6 auxpass _ _ +6 run run VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +7 by by ADP IN _ 6 case _ _ +8 2 2 NUM CD NumType=Card 9 nummod _ _ +9 officials official NOUN NNS Number=Plur 7 nmod _ _ +10 of of ADP IN _ 9 case _ _ +11 the the DET DT Definite=Def|PronType=Art 12 det _ _ +12 Ministry Ministry PROPN NNP Number=Sing 10 nmod _ _ +13 of of ADP IN _ 12 case _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 Interior Interior PROPN NNP Number=Sing 13 nmod _ SpaceAfter=No +16 ! ! PUNCT . _ 6 punct _ _ + +# sent_id = 5 +# text = The MoI in Iraq is equivalent to the US FBI, so this would be like having J. Edgar Hoover unwittingly employ at a high level members of the Weathermen bombers back in the 1960s. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 MoI MoI PROPN NNP Number=Sing 6 nsubj _ _ +3 in in ADP IN _ 2 case _ _ +4 Iraq Iraq PROPN NNP Number=Sing 3 nmod _ _ +5 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +6 equivalent equivalent ADJ JJ Degree=Pos 0 root _ _ +7 to to ADP IN _ 6 case _ _ +8 the the DET DT Definite=Def|PronType=Art 10 det _ _ +9 US US PROPN NNP Number=Sing 10 compound _ _ +10 FBI FBI PROPN NNP Number=Sing 7 nmod _ SpaceAfter=No +11 , , PUNCT , _ 6 punct _ _ +12 so so ADV RB _ 17 advmod _ _ +13 this this PRON DT Number=Sing|PronType=Dem 15 nsubj _ _ +14 would would AUX MD VerbForm=Fin 15 aux _ _ +15 be be VERB VB VerbForm=Inf 6 parataxis _ _ +16 like like SCONJ IN _ 17 mark _ _ +17 having have VERB VBG VerbForm=Ger 15 advcl _ _ +18 J. J. PROPN NNP Number=Sing 20 name _ _ +19 Edgar Edgar PROPN NNP Number=Sing 20 name _ _ +20 Hoover Hoover PROPN NNP Number=Sing 22 nsubj _ _ +21 unwittingly unwittingly ADV RB _ 22 advmod _ _ +22 employ employ VERB VB VerbForm=Inf 17 ccomp _ _ +23 at at ADP IN _ 22 case _ _ +24 a a DET DT Definite=Ind|PronType=Art 26 det _ _ +25 high high ADJ JJ Degree=Pos 26 amod _ _ +26 level level NOUN NN Number=Sing 23 nmod _ _ +27 members member NOUN NNS Number=Plur 22 dobj _ _ +28 of of ADP IN _ 27 case _ _ +29 the the DET DT Definite=Def|PronType=Art 31 det _ _ +30 Weathermen Weathermen PROPN NNPS Number=Plur 31 compound _ _ +31 bombers bomber NOUN NNS Number=Plur 28 nmod _ _ +32 back back ADV RB _ 35 advmod _ _ +33 in in ADP IN _ 22 case _ _ +34 the the DET DT Definite=Def|PronType=Art 35 det _ _ +35 1960s 1960 NOUN NNS Number=Plur 33 nmod _ SpaceAfter=No +36 . . PUNCT . _ 6 punct _ _ + +# sent_id = 6 +# text = The third was being run by the head of an investment firm. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 third third ADJ JJ Degree=Pos|NumType=Ord 5 nsubjpass _ _ +3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 aux _ _ +4 being be AUX VBG VerbForm=Ger 5 auxpass _ _ +5 run run VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 by by ADP IN _ 5 case _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 head head NOUN NN Number=Sing 6 nmod _ _ +9 of of ADP IN _ 8 case _ _ +10 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +11 investment investment NOUN NN Number=Sing 12 compound _ _ +12 firm firm NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +13 . . PUNCT . _ 5 punct _ _ + +# sent_id = 7 +# text = You wonder if he was manipulating the market with his bombing targets. +1 You you PRON PRP Case=Nom|Person=2|PronType=Prs 2 nsubj _ _ +2 wonder wonder VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 0 root _ _ +3 if if SCONJ IN _ 6 mark _ _ +4 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 6 nsubj _ _ +5 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 aux _ _ +6 manipulating manipulate VERB VBG Tense=Pres|VerbForm=Part 2 advcl _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 market market NOUN NN Number=Sing 6 dobj _ _ +9 with with ADP IN _ 6 case _ _ +10 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 12 nmod:poss _ _ +11 bombing bombing NOUN NN Number=Sing 12 compound _ _ +12 targets target NOUN NNS Number=Plur 9 nmod _ SpaceAfter=No +13 . . PUNCT . _ 2 punct _ _ + +# sent_id = 8 +# text = The cells were operating in the Ghazaliyah and al-Jihad districts of the capital. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 cells cell NOUN NNS Number=Plur 4 nsubj _ _ +3 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 4 aux _ _ +4 operating operate VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +5 in in ADP IN _ 4 case _ _ +6 the the DET DT Definite=Def|PronType=Art 12 det _ _ +7 Ghazaliyah Ghazaliyah PROPN NNP Number=Sing 12 compound _ _ +8 and and CONJ CC _ 7 cc _ _ +9 al al PROPN NNP Number=Sing 11 compound _ SpaceAfter=No +10 - - PUNCT HYPH _ 11 punct _ SpaceAfter=No +11 Jihad Jihad PROPN NNP Number=Sing 7 conj _ _ +12 districts district NOUN NNS Number=Plur 5 nmod _ _ +13 of of ADP IN _ 12 case _ _ +14 the the DET DT Definite=Def|PronType=Art 15 det _ _ +15 capital capital NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +16 . . PUNCT . _ 4 punct _ _ + +# sent_id = 9 +# text = Although the announcement was probably made to show progress in identifying and breaking up terror cells, I don't find the news that the Baathists continue to penetrate the Iraqi government very hopeful. +1 Although although SCONJ IN _ 6 mark _ _ +2 the the DET DT Definite=Def|PronType=Art 3 det _ _ +3 announcement announcement NOUN NN Number=Sing 6 nsubjpass _ _ +4 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 6 auxpass _ _ +5 probably probably ADV RB _ 6 advmod _ _ +6 made make VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 21 advcl _ _ +7 to to PART TO _ 8 mark _ _ +8 show show VERB VB VerbForm=Inf 6 xcomp _ _ +9 progress progress NOUN NN Number=Sing 8 dobj _ _ +10 in in SCONJ IN _ 11 mark _ _ +11 identifying identify VERB VBG VerbForm=Ger 9 acl _ _ +12 and and CONJ CC _ 11 cc _ _ +13 breaking break VERB VBG VerbForm=Ger 14 conj _ _ +14 up up ADP RP _ 11 compound:prt _ _ +15 terror terror NOUN NN Number=Sing 16 compound _ _ +16 cells cell NOUN NNS Number=Plur 11 dobj _ SpaceAfter=No +17 , , PUNCT , _ 21 punct _ _ +18 I I PRON PRP Case=Nom|Number=Sing|Person=1|PronType=Prs 21 nsubj _ _ +19 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 21 aux _ SpaceAfter=No +20 n't not PART RB _ 21 neg _ _ +21 find find VERB VB VerbForm=Inf 0 root _ _ +22 the the DET DT Definite=Def|PronType=Art 23 det _ _ +23 news news NOUN NN Number=Sing 21 dobj _ _ +24 that that SCONJ IN _ 27 mark _ _ +25 the the DET DT Definite=Def|PronType=Art 26 det _ _ +26 Baathists Baathists PROPN NNPS Number=Plur 27 nsubj _ _ +27 continue continue VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 23 acl _ _ +28 to to PART TO _ 29 mark _ _ +29 penetrate penetrate VERB VB VerbForm=Inf 27 xcomp _ _ +30 the the DET DT Definite=Def|PronType=Art 32 det _ _ +31 Iraqi iraqi ADJ JJ Degree=Pos 32 amod _ _ +32 government government NOUN NN Number=Sing 29 dobj _ _ +33 very very ADV RB _ 34 advmod _ _ +34 hopeful hopeful ADJ JJ Degree=Pos 21 xcomp _ SpaceAfter=No +35 . . PUNCT . _ 21 punct _ _ + +# sent_id = 10 +# text = It reminds me too much of the ARVN officers who were secretly working for the other side in Vietnam. +1 It it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 2 nsubj _ _ +2 reminds remind VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +3 me I PRON PRP Case=Acc|Number=Sing|Person=1|PronType=Prs 2 dobj _ _ +4 too too ADV RB _ 5 advmod _ _ +5 much much ADV RB _ 2 advmod _ _ +6 of of ADP IN _ 2 case _ _ +7 the the DET DT Definite=Def|PronType=Art 9 det _ _ +8 ARVN ARVN PROPN NNP Number=Sing 9 compound _ _ +9 officers officer NOUN NNS Number=Plur 6 nmod _ _ +10 who who PRON WP PronType=Rel 13 nsubj _ _ +11 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 13 aux _ _ +12 secretly secretly ADV RB _ 13 advmod _ _ +13 working work VERB VBG Tense=Pres|VerbForm=Part 9 acl:relcl _ _ +14 for for ADP IN _ 13 case _ _ +15 the the DET DT Definite=Def|PronType=Art 17 det _ _ +16 other other ADJ JJ Degree=Pos 17 amod _ _ +17 side side NOUN NN Number=Sing 14 nmod _ _ +18 in in ADP IN _ 13 case _ _ +19 Vietnam Vietnam PROPN NNP Number=Sing 18 nmod _ SpaceAfter=No +20 . . PUNCT . _ 2 punct _ _ + +# sent_id = 11 +# text = Al-Zaman : Guerrillas killed a member of the Kurdistan Democratic Party after kidnapping him in Mosul. +1 Al Al PROPN NNP Number=Sing 3 name _ SpaceAfter=No +2 - - PUNCT HYPH _ 3 punct _ SpaceAfter=No +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ _ +4 : : PUNCT : _ 3 punct _ _ +5 Guerrillas guerrilla NOUN NNS Number=Plur 6 nsubj _ _ +6 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ _ +7 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +8 member member NOUN NN Number=Sing 6 dobj _ _ +9 of of ADP IN _ 8 case _ _ +10 the the DET DT Definite=Def|PronType=Art 13 det _ _ +11 Kurdistan Kurdistan PROPN NNP Number=Sing 13 compound _ _ +12 Democratic Democratic PROPN NNP Number=Sing 13 compound _ _ +13 Party Party PROPN NNP Number=Sing 9 nmod _ _ +14 after after SCONJ IN _ 15 mark _ _ +15 kidnapping kidnap VERB VBG VerbForm=Ger 6 advcl _ _ +16 him he PRON PRP Case=Acc|Gender=Masc|Number=Sing|Person=3|PronType=Prs 15 dobj _ _ +17 in in ADP IN _ 15 case _ _ +18 Mosul Mosul PROPN NNP Number=Sing 17 nmod _ SpaceAfter=No +19 . . PUNCT . _ 3 punct _ _ + +# sent_id = 12 +# text = The police commander of Ninevah Province announced that bombings had declined 80 percent in Mosul, whereas there had been a big jump in the number of kidnappings. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 police police NOUN NN Number=Sing 3 compound _ _ +3 commander commander NOUN NN Number=Sing 7 nsubj _ _ +4 of of ADP IN _ 3 case _ _ +5 Ninevah Ninevah PROPN NNP Number=Sing 6 compound _ _ +6 Province Province PROPN NNP Number=Sing 4 nmod _ _ +7 announced announce VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +8 that that SCONJ IN _ 11 mark _ _ +9 bombings bombing NOUN NNS Number=Plur 11 nsubj _ _ +10 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 aux _ _ +11 declined decline VERB VBN Tense=Past|VerbForm=Part 7 ccomp _ _ +12 80 80 NUM CD NumType=Card 13 nummod _ _ +13 percent percent NOUN NN Number=Sing 11 dobj _ _ +14 in in ADP IN _ 11 case _ _ +15 Mosul Mosul PROPN NNP Number=Sing 14 nmod _ SpaceAfter=No +16 , , PUNCT , _ 11 punct _ _ +17 whereas whereas SCONJ IN _ 20 mark _ _ +18 there there PRON EX _ 20 expl _ _ +19 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 20 aux _ _ +20 been be VERB VBN Tense=Past|VerbForm=Part 11 advcl _ _ +21 a a DET DT Definite=Ind|PronType=Art 23 det _ _ +22 big big ADJ JJ Degree=Pos 23 amod _ _ +23 jump jump NOUN NN Number=Sing 20 nsubj _ _ +24 in in ADP IN _ 23 case _ _ +25 the the DET DT Definite=Def|PronType=Art 26 det _ _ +26 number number NOUN NN Number=Sing 24 nmod _ _ +27 of of ADP IN _ 26 case _ _ +28 kidnappings kidnapping NOUN NNS Number=Plur 27 nmod _ SpaceAfter=No +29 . . PUNCT . _ 7 punct _ _ + +# sent_id = 13 +# text = On Wednesday guerrillas had kidnapped a cosmetic surgeon and his wife while they were on their way home. +1 On on ADP IN _ 5 case _ _ +2 Wednesday Wednesday PROPN NNP Number=Sing 1 nmod _ _ +3 guerrillas guerrilla NOUN NNS Number=Plur 5 nsubj _ _ +4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 5 aux _ _ +5 kidnapped kidnap VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +6 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +7 cosmetic cosmetic ADJ JJ Degree=Pos 8 amod _ _ +8 surgeon surgeon NOUN NN Number=Sing 5 dobj _ _ +9 and and CONJ CC _ 8 cc _ _ +10 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 11 nmod:poss _ _ +11 wife wife NOUN NN Number=Sing 8 conj _ _ +12 while while SCONJ IN _ 17 mark _ _ +13 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 17 nsubj _ _ +14 were be VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 17 cop _ _ +15 on on ADP IN _ 5 case _ _ +16 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 17 nmod:poss _ _ +17 way way NOUN NN Number=Sing 15 advcl _ _ +18 home home ADV RB _ 17 advmod _ SpaceAfter=No +19 . . PUNCT . _ 5 punct _ _ + +# sent_id = 14 +# text = In Suwayrah, Kut Province, two car bombs were discovered before they could be detonated. +1 In in ADP IN _ 11 case _ _ +2 Suwayrah Suwayrah PROPN NNP Number=Sing 1 nmod _ SpaceAfter=No +3 , , PUNCT , _ 2 punct _ _ +4 Kut Kut PROPN NNP Number=Sing 5 compound _ _ +5 Province Province PROPN NNP Number=Sing 2 appos _ SpaceAfter=No +6 , , PUNCT , _ 11 punct _ _ +7 two two NUM CD NumType=Card 9 nummod _ _ +8 car car NOUN NN Number=Sing 9 compound _ _ +9 bombs bombs NOUN NN Number=Sing 11 nsubjpass _ _ +10 were be AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 auxpass _ _ +11 discovered discover VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +12 before before SCONJ IN _ 16 mark _ _ +13 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 16 nsubjpass _ _ +14 could could AUX MD VerbForm=Fin 16 aux _ _ +15 be be AUX VB VerbForm=Inf 16 auxpass _ _ +16 detonated detonate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 11 advcl _ SpaceAfter=No +17 . . PUNCT . _ 11 punct _ _ + +# sent_id = 15 +# text = (Kut is in southeastern Iraq and has an overwhelmingly Shiite population, who are on the lookout for Baathist saboteurs and willingly turn them in. +1 ( ( PUNCT -LRB- _ 6 punct _ SpaceAfter=No +2 Kut Kut PROPN NNP Number=Sing 6 nsubj _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +4 in in ADP IN _ 0 case _ _ +5 southeastern southeastern ADJ JJ Degree=Pos 6 amod _ _ +6 Iraq Iraq PROPN NNP Number=Sing 4 root _ _ +7 and and CONJ CC _ 6 cc _ _ +8 has have VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 conj _ _ +9 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +10 overwhelmingly overwhelmingly ADV RB _ 11 advmod _ _ +11 Shiite shiite ADJ JJ Degree=Pos 12 amod _ _ +12 population population NOUN NN Number=Sing 8 dobj _ SpaceAfter=No +13 , , PUNCT , _ 12 punct _ _ +14 who who PRON WP PronType=Rel 18 nsubj _ _ +15 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 18 cop _ _ +16 on on ADP IN _ 12 case _ _ +17 the the DET DT Definite=Def|PronType=Art 18 det _ _ +18 lookout lookout NOUN NN Number=Sing 16 acl:relcl _ _ +19 for for ADP IN _ 18 case _ _ +20 Baathist Baathist PROPN NNP Number=Sing 21 compound _ _ +21 saboteurs saboteur NOUN NNS Number=Plur 19 nmod _ _ +22 and and CONJ CC _ 18 cc _ _ +23 willingly willingly ADV RB _ 24 advmod _ _ +24 turn turn VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 26 conj _ _ +25 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 24 dobj _ _ +26 in in ADP RP _ 18 compound:prt _ SpaceAfter=No +27 . . PUNCT . _ 6 punct _ _ + +# sent_id = 16 +# text = This willingness is the main difference in the number of bombings in the south as opposed to the center-north of the country.) +1 This this DET DT Number=Sing|PronType=Dem 2 det _ _ +2 willingness willingness NOUN NN Number=Sing 6 nsubj _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +4 the the DET DT Definite=Def|PronType=Art 6 det _ _ +5 main main ADJ JJ Degree=Pos 6 amod _ _ +6 difference difference NOUN NN Number=Sing 0 root _ _ +7 in in ADP IN _ 6 case _ _ +8 the the DET DT Definite=Def|PronType=Art 9 det _ _ +9 number number NOUN NN Number=Sing 7 nmod _ _ +10 of of ADP IN _ 9 case _ _ +11 bombings bombing NOUN NNS Number=Plur 10 nmod _ _ +12 in in ADP IN _ 11 case _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 south south NOUN NN Number=Sing 12 nmod _ _ +15 as as SCONJ IN _ 17 case _ _ +16 opposed oppose VERB VBN Tense=Past|VerbForm=Part 15 mwe _ _ +17 to to ADP IN _ 21 mwe _ _ +18 the the DET DT Definite=Def|PronType=Art 21 det _ _ +19 center center NOUN NN Number=Sing 21 compound _ SpaceAfter=No +20 - - PUNCT HYPH _ 21 punct _ SpaceAfter=No +21 north north NOUN NN Number=Sing 14 nmod _ _ +22 of of ADP IN _ 21 case _ _ +23 the the DET DT Definite=Def|PronType=Art 24 det _ _ +24 country country NOUN NN Number=Sing 22 nmod _ SpaceAfter=No +25 . . PUNCT . _ 6 punct _ SpaceAfter=No +26 ) ) PUNCT -RRB- _ 6 punct _ _ + +# sent_id = 17 +# text = In Baghdad Kadhim Talal Husain, assistant dean at the School of Education at Mustansiriyah University, was assassinated with his driver in the Salikh district. +1 In in ADP IN _ 19 case _ _ +2 Baghdad Baghdad PROPN NNP Number=Sing 1 nmod _ _ +3 Kadhim Kadhim PROPN NNP Number=Sing 5 name _ _ +4 Talal Talal PROPN NNP Number=Sing 5 name _ _ +5 Husain Husain PROPN NNP Number=Sing 19 nsubjpass _ SpaceAfter=No +6 , , PUNCT , _ 5 punct _ _ +7 assistant assistant ADJ JJ Degree=Pos 8 amod _ _ +8 dean dean NOUN NN Number=Sing 5 appos _ _ +9 at at ADP IN _ 8 case _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 School School PROPN NNP Number=Sing 9 nmod _ _ +12 of of ADP IN _ 11 case _ _ +13 Education Education PROPN NNP Number=Sing 12 nmod _ _ +14 at at ADP IN _ 11 case _ _ +15 Mustansiriyah Mustansiriyah PROPN NNP Number=Sing 16 compound _ _ +16 University University PROPN NNP Number=Sing 14 nmod _ SpaceAfter=No +17 , , PUNCT , _ 19 punct _ _ +18 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 19 auxpass _ _ +19 assassinated assassinate VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +20 with with ADP IN _ 19 case _ _ +21 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 22 nmod:poss _ _ +22 driver driver NOUN NN Number=Sing 20 nmod _ _ +23 in in ADP IN _ 19 case _ _ +24 the the DET DT Definite=Def|PronType=Art 26 det _ _ +25 Salikh Salikh PROPN NNP Number=Sing 26 compound _ _ +26 district district NOUN NN Number=Sing 23 nmod _ SpaceAfter=No +27 . . PUNCT . _ 19 punct _ _ + +# sent_id = 18 +# text = Guerrillas killed an engineer, Asi Ali, from Tikrit. +1 Guerrillas guerrilla NOUN NNS Number=Plur 2 nsubj _ _ +2 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +3 an a DET DT Definite=Ind|PronType=Art 4 det _ _ +4 engineer engineer NOUN NN Number=Sing 2 dobj _ SpaceAfter=No +5 , , PUNCT , _ 4 punct _ _ +6 Asi Asi PROPN NNP Number=Sing 7 name _ _ +7 Ali Ali PROPN NNP Number=Sing 4 appos _ SpaceAfter=No +8 , , PUNCT , _ 4 punct _ _ +9 from from ADP IN _ 4 case _ _ +10 Tikrit Tikrit PROPN NNP Number=Sing 9 nmod _ SpaceAfter=No +11 . . PUNCT . _ 2 punct _ _ + +# sent_id = 19 +# text = They also killed Shaikh Hamid 'Akkab, a clan elder of a branch of the Dulaim tribe in Tikrit. +1 They they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 3 nsubj _ _ +2 also also ADV RB _ 3 advmod _ _ +3 killed kill VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 Shaikh Shaikh PROPN NNP Number=Sing 6 name _ _ +5 Hamid Hamid PROPN NNP Number=Sing 6 name _ _ +6 'Akkab 'Akkab PROPN NNP Number=Sing 3 dobj _ SpaceAfter=No +7 , , PUNCT , _ 6 punct _ _ +8 a a DET DT Definite=Ind|PronType=Art 10 det _ _ +9 clan clan NOUN NN Number=Sing 10 compound _ _ +10 elder elder NOUN NN Number=Sing 6 appos _ _ +11 of of ADP IN _ 10 case _ _ +12 a a DET DT Definite=Ind|PronType=Art 13 det _ _ +13 branch branch NOUN NN Number=Sing 11 nmod _ _ +14 of of ADP IN _ 13 case _ _ +15 the the DET DT Definite=Def|PronType=Art 17 det _ _ +16 Dulaim Dulaim PROPN NNP Number=Sing 17 compound _ _ +17 tribe tribe NOUN NN Number=Sing 14 nmod _ _ +18 in in ADP IN _ 3 case _ _ +19 Tikrit Tikrit PROPN NNP Number=Sing 18 nmod _ SpaceAfter=No +20 . . PUNCT . _ 3 punct _ _ + +# sent_id = 20 +# text = His mother was also killed in the attack. +1 His he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 mother mother NOUN NN Number=Sing 5 nsubjpass _ _ +3 was be AUX VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 5 auxpass _ _ +4 also also ADV RB _ 5 advmod _ _ +5 killed kill VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 in in ADP IN _ 5 case _ _ +7 the the DET DT Definite=Def|PronType=Art 8 det _ _ +8 attack attack NOUN NN Number=Sing 6 nmod _ SpaceAfter=No +9 . . PUNCT . _ 5 punct _ _ + +# sent_id = 21 +# text = Two other Dulaim leaders have been killed in the past week and a half. +1 Two two NUM CD NumType=Card 4 nummod _ _ +2 other other ADJ JJ Degree=Pos 4 amod _ _ +3 Dulaim Dulaim PROPN NNP Number=Sing 4 compound _ _ +4 leaders leader NOUN NNS Number=Plur 7 nsubjpass _ _ +5 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 7 aux _ _ +6 been be AUX VBN Tense=Past|VerbForm=Part 7 auxpass _ _ +7 killed kill VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +8 in in ADP IN _ 7 case _ _ +9 the the DET DT Definite=Def|PronType=Art 11 det _ _ +10 past past ADJ JJ Degree=Pos 11 amod _ _ +11 week week NOUN NN Number=Sing 8 nmod _ _ +12 and and CONJ CC _ 14 cc _ _ +13 a a DET DT Definite=Ind|PronType=Art 14 det _ _ +14 half half NOUN NN Number=Sing 11 nummod _ SpaceAfter=No +15 . . PUNCT . _ 7 punct _ _ + +# sent_id = 22 +# text = Guerrillas near Hawijah launched an attack that left 6 dead, including 4 Iraqi soldiers. +1 Guerrillas guerrilla NOUN NNS Number=Plur 4 nsubj _ _ +2 near near ADP IN _ 1 case _ _ +3 Hawijah Hawijah PROPN NNP Number=Sing 2 nmod _ _ +4 launched launch VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +5 an a DET DT Definite=Ind|PronType=Art 6 det _ _ +6 attack attack NOUN NN Number=Sing 4 dobj _ _ +7 that that DET WDT PronType=Rel 8 nsubj _ _ +8 left leave VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 acl:relcl _ _ +9 6 6 NUM CD NumType=Card 8 dobj _ _ +10 dead dead ADJ JJ Degree=Pos 8 xcomp _ SpaceAfter=No +11 , , PUNCT , _ 8 punct _ _ +12 including include VERB VBG VerbForm=Ger 15 case _ _ +13 4 4 NUM CD NumType=Card 15 nummod _ _ +14 Iraqi iraqi ADJ JJ Degree=Pos 15 amod _ _ +15 soldiers soldier NOUN NNS Number=Plur 9 nmod _ SpaceAfter=No +16 . . PUNCT . _ 4 punct _ _ + +# sent_id = 23 +# text = One of them was from the Jubur tribe and was deputy commander of the Hawijah garrison. +1 One one NUM CD NumType=Card 8 nsubj _ _ +2 of of ADP IN _ 1 case _ _ +3 them they PRON PRP Case=Acc|Number=Plur|Person=3|PronType=Prs 2 nmod _ _ +4 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 8 cop _ _ +5 from from ADP IN _ 0 case _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 Jubur Jubur PROPN NNP Number=Sing 8 name _ _ +8 tribe tribe NOUN NN Number=Sing 5 root _ _ +9 and and CONJ CC _ 8 cc _ _ +10 was be VERB VBD Mood=Ind|Number=Sing|Person=3|Tense=Past|VerbForm=Fin 12 cop _ _ +11 deputy deputy NOUN NN Number=Sing 12 compound _ _ +12 commander commander NOUN NN Number=Sing 8 conj _ _ +13 of of ADP IN _ 12 case _ _ +14 the the DET DT Definite=Def|PronType=Art 16 det _ _ +15 Hawijah Hawijah PROPN NNP Number=Sing 16 compound _ _ +16 garrison garrison NOUN NN Number=Sing 13 nmod _ SpaceAfter=No +17 . . PUNCT . _ 8 punct _ _ + +# sent_id = 24 +# text = Two hundred members of the Batawi clan of the Dulaim demonstrated in Baghdad on Friday, protesting the killing of their clan elder, Shaikh Kadhim Sarhid and 4 of his sons, by gunmen wearing Iraqi army uniforms. +1 Two two NUM CD NumType=Card 2 compound _ _ +2 hundred hundred NUM CD NumType=Card 3 nummod _ _ +3 members member NOUN NNS Number=Plur 11 nsubj _ _ +4 of of ADP IN _ 3 case _ _ +5 the the DET DT Definite=Def|PronType=Art 7 det _ _ +6 Batawi Batawi PROPN NNP Number=Sing 7 name _ _ +7 clan clan NOUN NN Number=Sing 4 nmod _ _ +8 of of ADP IN _ 7 case _ _ +9 the the DET DT Definite=Def|PronType=Art 10 det _ _ +10 Dulaim Dulaim PROPN NNP Number=Sing 8 nmod _ _ +11 demonstrated demonstrate VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +12 in in ADP IN _ 11 case _ _ +13 Baghdad Baghdad PROPN NNP Number=Sing 12 nmod _ _ +14 on on ADP IN _ 11 case _ _ +15 Friday Friday PROPN NNP Number=Sing 14 nmod _ SpaceAfter=No +16 , , PUNCT , _ 11 punct _ _ +17 protesting protest VERB VBG VerbForm=Ger 11 advcl _ _ +18 the the DET DT Definite=Def|PronType=Art 19 det _ _ +19 killing killing NOUN NN Number=Sing 17 dobj _ _ +20 of of ADP IN _ 19 case _ _ +21 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 23 nmod:poss _ _ +22 clan clan NOUN NN Number=Sing 23 compound _ _ +23 elder elder NOUN NN Number=Sing 20 nmod _ SpaceAfter=No +24 , , PUNCT , _ 23 punct _ _ +25 Shaikh Shaikh PROPN NNP Number=Sing 27 name _ _ +26 Kadhim Kadhim PROPN NNP Number=Sing 27 name _ _ +27 Sarhid Sarhid PROPN NNP Number=Sing 23 appos _ _ +28 and and CONJ CC _ 23 cc _ _ +29 4 4 NUM CD NumType=Card 23 conj _ _ +30 of of ADP IN _ 29 case _ _ +31 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 32 nmod:poss _ _ +32 sons son NOUN NNS Number=Plur 30 nmod _ SpaceAfter=No +33 , , PUNCT , _ 19 punct _ _ +34 by by ADP IN _ 19 case _ _ +35 gunmen gunman NOUN NNS Number=Plur 34 nmod _ _ +36 wearing wear VERB VBG VerbForm=Ger 35 acl _ _ +37 Iraqi iraqi ADJ JJ Degree=Pos 39 amod _ _ +38 army army NOUN NN Number=Sing 39 compound _ _ +39 uniforms uniform NOUN NNS Number=Plur 36 dobj _ SpaceAfter=No +40 . . PUNCT . _ 11 punct _ _ + +# sent_id = 25 +# text = (This is a largely Sunni Arab clan, and some Sunni observers have accused Shiite elements in the government of being behind the assassination; it is more likely the work of Sunni Arab guerrillas punishing the Batawi leaders for cooperating with the Dec. 15 elections.) +1 ( ( PUNCT -LRB- _ 8 punct _ SpaceAfter=No +2 This this PRON DT Number=Sing|PronType=Dem 8 nsubj _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +4 a a DET DT Definite=Ind|PronType=Art 8 det _ _ +5 largely largely ADV RB _ 8 advmod _ _ +6 Sunni sunni ADJ JJ Degree=Pos 8 amod _ _ +7 Arab arab ADJ JJ Degree=Pos 8 amod _ _ +8 clan clan NOUN NN Number=Sing 0 root _ SpaceAfter=No +9 , , PUNCT , _ 8 punct _ _ +10 and and CONJ CC _ 8 cc _ _ +11 some some DET DT _ 13 det _ _ +12 Sunni sunni ADJ JJ Degree=Pos 13 amod _ _ +13 observers observer NOUN NNS Number=Plur 15 nsubj _ _ +14 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 15 aux _ _ +15 accused accuse VERB VBN Tense=Past|VerbForm=Part 8 conj _ _ +16 Shiite shiite ADJ JJ Degree=Pos 17 amod _ _ +17 elements element NOUN NNS Number=Plur 15 dobj _ _ +18 in in ADP IN _ 17 case _ _ +19 the the DET DT Definite=Def|PronType=Art 20 det _ _ +20 government government NOUN NN Number=Sing 18 nmod _ _ +21 of of SCONJ IN _ 25 mark _ _ +22 being be VERB VBG VerbForm=Ger 25 cop _ _ +23 behind behind ADP IN _ 15 case _ _ +24 the the DET DT Definite=Def|PronType=Art 25 det _ _ +25 assassination assassination NOUN NN Number=Sing 23 advcl _ SpaceAfter=No +26 ; ; PUNCT , _ 8 punct _ _ +27 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 32 nsubj _ _ +28 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 32 cop _ _ +29 more more ADV RBR _ 30 advmod _ _ +30 likely likely ADV RB _ 32 advmod _ _ +31 the the DET DT Definite=Def|PronType=Art 32 det _ _ +32 work work NOUN NN Number=Sing 8 parataxis _ _ +33 of of ADP IN _ 32 case _ _ +34 Sunni sunni ADJ JJ Degree=Pos 36 amod _ _ +35 Arab arab ADJ JJ Degree=Pos 36 amod _ _ +36 guerrillas guerrilla NOUN NNS Number=Plur 33 nmod _ _ +37 punishing punish VERB VBG VerbForm=Ger 36 acl _ _ +38 the the DET DT Definite=Def|PronType=Art 40 det _ _ +39 Batawi Batawi PROPN NNP Number=Sing 40 name _ _ +40 leaders leader NOUN NNS Number=Plur 37 dobj _ _ +41 for for SCONJ IN _ 42 mark _ _ +42 cooperating cooperate VERB VBG VerbForm=Ger 40 acl _ _ +43 with with ADP IN _ 42 case _ _ +44 the the DET DT Definite=Def|PronType=Art 47 det _ _ +45 Dec. Dec. PROPN NNP Number=Sing 47 compound _ _ +46 15 15 NUM CD NumType=Card 45 nummod _ _ +47 elections election NOUN NNS Number=Plur 43 nmod _ SpaceAfter=No +48 . . PUNCT . _ 8 punct _ SpaceAfter=No +49 ) ) PUNCT -RRB- _ 8 punct _ _ + +# sent_id = 26 +# text = Al-Zaman : The Iraqi High Electoral Commission on Friday denied a request of the Debaathification Commission to exclude 51 individuals from running on party lists in the Dec. 15 elections on grounds of having been sufficiently involved in Baath activities to warrant their being excluded from civil office. +1 Al Al PROPN NNP Number=Sing 3 name _ SpaceAfter=No +2 - - PUNCT HYPH _ 3 punct _ SpaceAfter=No +3 Zaman Zaman PROPN NNP Number=Sing 0 root _ _ +4 : : PUNCT : _ 3 punct _ _ +5 The the DET DT Definite=Def|PronType=Art 9 det _ _ +6 Iraqi iraqi ADJ JJ Degree=Pos 9 amod _ _ +7 High High PROPN NNP Number=Sing 9 compound _ _ +8 Electoral Electoral PROPN NNP Number=Sing 9 compound _ _ +9 Commission Commission PROPN NNP Number=Sing 12 nsubj _ _ +10 on on ADP IN _ 12 case _ _ +11 Friday Friday PROPN NNP Number=Sing 10 nmod _ _ +12 denied deny VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 parataxis _ _ +13 a a DET DT Definite=Ind|PronType=Art 14 det _ _ +14 request request NOUN NN Number=Sing 12 dobj _ _ +15 of of ADP IN _ 14 case _ _ +16 the the DET DT Definite=Def|PronType=Art 18 det _ _ +17 Debaathification Debaathification PROPN NNP Number=Sing 18 compound _ _ +18 Commission Commission PROPN NNP Number=Sing 15 nmod _ _ +19 to to PART TO _ 20 mark _ _ +20 exclude exclude VERB VB VerbForm=Inf 14 acl _ _ +21 51 51 NUM CD NumType=Card 22 nummod _ _ +22 individuals individual NOUN NNS Number=Plur 20 dobj _ _ +23 from from SCONJ IN _ 24 mark _ _ +24 running run VERB VBG VerbForm=Ger 20 advcl _ _ +25 on on ADP IN _ 24 case _ _ +26 party party NOUN NN Number=Sing 27 compound _ _ +27 lists list NOUN NNS Number=Plur 25 nmod _ _ +28 in in ADP IN _ 27 case _ _ +29 the the DET DT Definite=Def|PronType=Art 32 det _ _ +30 Dec. Dec. PROPN NNP Number=Sing 32 compound _ _ +31 15 15 NUM CD NumType=Card 30 nummod _ _ +32 elections election NOUN NNS Number=Plur 28 nmod _ _ +33 on on ADP IN _ 24 case _ _ +34 grounds grounds NOUN NNS Number=Plur 33 nmod _ _ +35 of of SCONJ IN _ 39 mark _ _ +36 having have AUX VBG VerbForm=Ger 39 aux _ _ +37 been be VERB VBN Tense=Past|VerbForm=Part 39 cop _ _ +38 sufficiently sufficiently ADV RB _ 39 advmod _ _ +39 involved involved ADJ JJ Degree=Pos 34 acl _ _ +40 in in ADP IN _ 39 case _ _ +41 Baath Baath PROPN NNP Number=Sing 42 compound _ _ +42 activities activity NOUN NNS Number=Plur 40 nmod _ _ +43 to to PART TO _ 44 mark _ _ +44 warrant warrant VERB VB VerbForm=Inf 38 xcomp _ _ +45 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 47 nsubjpass _ _ +46 being be AUX VBG VerbForm=Ger 47 auxpass _ _ +47 excluded exclude VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 44 ccomp _ _ +48 from from ADP IN _ 47 case _ _ +49 civil civil ADJ JJ Degree=Pos 50 amod _ _ +50 office office NOUN NN Number=Sing 48 nmod _ SpaceAfter=No +51 . . PUNCT . _ 3 punct _ _ + +# sent_id = 27 +# text = The Commission said it had no legal grounds for such an exclusion. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 Commission commission NOUN NN Number=Sing 3 nsubj _ _ +3 said say VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +4 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ +5 had have VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 3 ccomp _ _ +6 no no DET DT _ 8 neg _ _ +7 legal legal ADJ JJ Degree=Pos 8 amod _ _ +8 grounds grounds NOUN NNS Number=Plur 5 dobj _ _ +9 for for ADP IN _ 8 case _ _ +10 such such DET PDT _ 12 det:predet _ _ +11 an a DET DT Definite=Ind|PronType=Art 12 det _ _ +12 exclusion exclusion NOUN NN Number=Sing 9 nmod _ SpaceAfter=No +13 . . PUNCT . _ 3 punct _ _ + +# sent_id = 28 +# text = This item is a small one and easily missed. +1 This this DET DT Number=Sing|PronType=Dem 2 det _ _ +2 item item NOUN NN Number=Sing 6 nsubj _ _ +3 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 cop _ _ +4 a a DET DT Definite=Ind|PronType=Art 6 det _ _ +5 small small ADJ JJ Degree=Pos 6 amod _ _ +6 one one NOUN NN Number=Sing 0 root _ _ +7 and and CONJ CC _ 6 cc _ _ +8 easily easily ADV RB _ 9 advmod _ _ +9 missed miss VERB VBN Tense=Past|VerbForm=Part 6 conj _ SpaceAfter=No +10 . . PUNCT . _ 6 punct _ _ + +# sent_id = 29 +# text = But in my view it is highly significant. +1 But but CONJ CC _ 8 cc _ _ +2 in in ADP IN _ 8 case _ _ +3 my my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 4 nmod:poss _ _ +4 view view NOUN NN Number=Sing 2 nmod _ _ +5 it it PRON PRP Case=Nom|Gender=Neut|Number=Sing|Person=3|PronType=Prs 8 nsubj _ _ +6 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 8 cop _ _ +7 highly highly ADV RB _ 8 advmod _ _ +8 significant significant ADJ JJ Degree=Pos 0 root _ SpaceAfter=No +9 . . PUNCT . _ 8 punct _ _ + +# sent_id = 30 +# text = The Debaathification Commission had been pushed by Ahmad Chalabi and his Iraqi National Congress very hard, and had pushed many Sunni Arabs into the arms of the guerrillas. +1 The the DET DT Definite=Def|PronType=Art 3 det _ _ +2 Debaathification Debaathification PROPN NNP Number=Sing 3 compound _ _ +3 Commission Commission PROPN NNP Number=Sing 6 nsubjpass _ _ +4 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 6 aux _ _ +5 been be AUX VBN Tense=Past|VerbForm=Part 6 auxpass _ _ +6 pushed push VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +7 by by ADP IN _ 6 case _ _ +8 Ahmad Ahmad PROPN NNP Number=Sing 9 name _ _ +9 Chalabi Chalabi PROPN NNP Number=Sing 7 nmod _ _ +10 and and CONJ CC _ 9 cc _ _ +11 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 14 nmod:poss _ _ +12 Iraqi Iraqi PROPN NNP Number=Sing 14 compound _ _ +13 National National PROPN NNP Number=Sing 14 compound _ _ +14 Congress Congress PROPN NNP Number=Sing 9 conj _ _ +15 very very ADV RB _ 16 advmod _ _ +16 hard hard ADV RB Degree=Pos 6 advmod _ SpaceAfter=No +17 , , PUNCT , _ 6 punct _ _ +18 and and CONJ CC _ 6 cc _ _ +19 had have AUX VBD Mood=Ind|Tense=Past|VerbForm=Fin 20 aux _ _ +20 pushed push VERB VBN Tense=Past|VerbForm=Part 6 conj _ _ +21 many many ADJ JJ Degree=Pos 23 amod _ _ +22 Sunni sunni ADJ JJ Degree=Pos 23 amod _ _ +23 Arabs Arabs PROPN NNPS Number=Plur 20 dobj _ _ +24 into into ADP IN _ 20 case _ _ +25 the the DET DT Definite=Def|PronType=Art 26 det _ _ +26 arms arm NOUN NNS Number=Plur 24 nmod _ _ +27 of of ADP IN _ 26 case _ _ +28 the the DET DT Definite=Def|PronType=Art 29 det _ _ +29 guerrillas guerrilla NOUN NNS Number=Plur 27 nmod _ SpaceAfter=No +30 . . PUNCT . _ 6 punct _ _ + +# sent_id = 31 +# text = Chalabi has been increasingly marginalized within Iraq, however, despite his ties of clientelage with Washington and Tehran. +1 Chalabi Chalabi PROPN NNP Number=Sing 5 nsubjpass _ _ +2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _ +3 been be AUX VBN Tense=Past|VerbForm=Part 5 auxpass _ _ +4 increasingly increasingly ADV RB _ 5 advmod _ _ +5 marginalized marginalize VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 within within ADP IN _ 5 case _ _ +7 Iraq Iraq PROPN NNP Number=Sing 6 nmod _ SpaceAfter=No +8 , , PUNCT , _ 5 punct _ _ +9 however however ADV RB _ 5 advmod _ SpaceAfter=No +10 , , PUNCT , _ 5 punct _ _ +11 despite despite ADP IN _ 5 case _ _ +12 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 13 nmod:poss _ _ +13 ties tie NOUN NNS Number=Plur 11 nmod _ _ +14 of of ADP IN _ 13 case _ _ +15 clientelage clientelage NOUN NN Number=Sing 14 nmod _ _ +16 with with ADP IN _ 15 case _ _ +17 Washington Washington PROPN NNP Number=Sing 16 nmod _ _ +18 and and CONJ CC _ 17 cc _ _ +19 Tehran Tehran PROPN NNP Number=Sing 17 conj _ SpaceAfter=No +20 . . PUNCT . _ 5 punct _ _ + +# sent_id = 32 +# text = He is no longer in the dominant Shiite list, the United Iraqi Alliance, and won't have many seats in the new parliament. +1 He he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 9 nsubj _ _ +2 is be VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 9 cop _ _ +3 no no ADV RB _ 4 neg _ _ +4 longer longer ADV RBR Degree=Cmp 7 advmod _ _ +5 in in ADP IN _ 0 case _ _ +6 the the DET DT Definite=Def|PronType=Art 9 det _ _ +7 dominant dominant ADJ JJ Degree=Pos 9 amod _ _ +8 Shiite shiite ADJ JJ Degree=Pos 9 amod _ _ +9 list list NOUN NN Number=Sing 5 root _ SpaceAfter=No +10 , , PUNCT , _ 9 punct _ _ +11 the the DET DT Definite=Def|PronType=Art 14 det _ _ +12 United United PROPN NNP Number=Sing 14 compound _ _ +13 Iraqi Iraqi PROPN NNP Number=Sing 14 compound _ _ +14 Alliance Alliance PROPN NNP Number=Sing 9 appos _ SpaceAfter=No +15 , , PUNCT , _ 9 punct _ _ +16 and and CONJ CC _ 9 cc _ _ +17 wo will AUX MD VerbForm=Fin 19 aux _ SpaceAfter=No +18 n't not PART RB _ 19 neg _ _ +19 have have VERB VB VerbForm=Inf 9 conj _ _ +20 many many ADJ JJ Degree=Pos 21 amod _ _ +21 seats seat NOUN NNS Number=Plur 19 dobj _ _ +22 in in ADP IN _ 21 case _ _ +23 the the DET DT Definite=Def|PronType=Art 25 det _ _ +24 new new ADJ JJ Degree=Pos 25 amod _ _ +25 parliament parliament NOUN NN Number=Sing 22 nmod _ SpaceAfter=No +26 . . PUNCT . _ 9 punct _ _ + +# sent_id = 33 +# text = Some 2,000 junior officers of the old Baath army have been recalled to duty in recent months, something Chalabi would have blocked if he could have. +1 Some some DET DT _ 4 det _ _ +2 2,000 2,000 NUM CD NumType=Card 4 nummod _ _ +3 junior junior ADJ JJ Degree=Pos 4 amod _ _ +4 officers officer NOUN NNS Number=Plur 12 nsubjpass _ _ +5 of of ADP IN _ 4 case _ _ +6 the the DET DT Definite=Def|PronType=Art 9 det _ _ +7 old old ADJ JJ Degree=Pos 9 amod _ _ +8 Baath Baath PROPN NNP Number=Sing 9 compound _ _ +9 army army NOUN NN Number=Sing 5 nmod _ _ +10 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 12 aux _ _ +11 been be AUX VBN Tense=Past|VerbForm=Part 12 auxpass _ _ +12 recalled recall VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +13 to to ADP IN _ 12 case _ _ +14 duty duty NOUN NN Number=Sing 13 nmod _ _ +15 in in ADP IN _ 12 case _ _ +16 recent recent ADJ JJ Degree=Pos 17 amod _ _ +17 months month NOUN NNS Number=Plur 15 nmod _ SpaceAfter=No +18 , , PUNCT , _ 12 punct _ _ +19 something something NOUN NN Number=Sing 12 nmod:npmod _ _ +20 Chalabi Chalabi PROPN NNP Number=Sing 23 nsubj _ _ +21 would would AUX MD VerbForm=Fin 23 aux _ _ +22 have have AUX VB VerbForm=Inf 23 aux _ _ +23 blocked block VERB VBN Tense=Past|VerbForm=Part 19 acl:relcl _ _ +24 if if SCONJ IN _ 27 mark _ _ +25 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 27 nsubj _ _ +26 could could AUX MD VerbForm=Fin 27 aux _ _ +27 have have VERB VB VerbForm=Inf 23 advcl _ SpaceAfter=No +28 . . PUNCT . _ 12 punct _ _ + +# sent_id = 34 +# text = Now the Electoral Commission is refusing to punish people for mere past Baath Party membership. +1 Now now ADV RB _ 6 advmod _ _ +2 the the DET DT Definite=Def|PronType=Art 4 det _ _ +3 Electoral Electoral PROPN NNP Number=Sing 4 compound _ _ +4 Commission Commission PROPN NNP Number=Sing 6 nsubj _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 6 aux _ _ +6 refusing refuse VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +7 to to PART TO _ 8 mark _ _ +8 punish punish VERB VB VerbForm=Inf 6 xcomp _ _ +9 people people NOUN NNS Number=Plur 8 dobj _ _ +10 for for ADP IN _ 8 case _ _ +11 mere mere ADJ JJ Degree=Pos 15 amod _ _ +12 past past ADJ JJ Degree=Pos 15 amod _ _ +13 Baath Baath PROPN NNP Number=Sing 14 compound _ _ +14 Party Party PROPN NNP Number=Sing 15 compound _ _ +15 membership membership NOUN NN Number=Sing 10 nmod _ SpaceAfter=No +16 . . PUNCT . _ 6 punct _ _ + +# sent_id = 35 +# text = The situation in Iraq is only going to get better this way. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 situation situation NOUN NN Number=Sing 7 nsubj _ _ +3 in in ADP IN _ 2 case _ _ +4 Iraq Iraq PROPN NNP Number=Sing 3 nmod _ _ +5 is be AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 7 aux _ _ +6 only only ADV RB _ 7 advmod _ _ +7 going go VERB VBG Tense=Pres|VerbForm=Part 0 root _ _ +8 to to PART TO _ 9 mark _ _ +9 get get VERB VB VerbForm=Inf 7 xcomp _ _ +10 better better ADJ JJR Degree=Cmp 9 xcomp _ _ +11 this this DET DT Number=Sing|PronType=Dem 12 det _ _ +12 way way NOUN NN Number=Sing 10 dobj _ SpaceAfter=No +13 . . PUNCT . _ 7 punct _ _ + +# sent_id = 36 +# text = If someone committed a crime against humanity, prosecute the person. +1 If if SCONJ IN _ 3 mark _ _ +2 someone someone NOUN NN Number=Sing 3 nsubj _ _ +3 committed commit VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 9 advcl _ _ +4 a a DET DT Definite=Ind|PronType=Art 5 det _ _ +5 crime crime NOUN NN Number=Sing 3 dobj _ _ +6 against against ADP IN _ 5 case _ _ +7 humanity humanity NOUN NN Number=Sing 6 nmod _ SpaceAfter=No +8 , , PUNCT , _ 9 punct _ _ +9 prosecute prosecute VERB VB VerbForm=Inf 0 root _ _ +10 the the DET DT Definite=Def|PronType=Art 11 det _ _ +11 person person NOUN NN Number=Sing 9 dobj _ SpaceAfter=No +12 . . PUNCT . _ 9 punct _ _ + +# sent_id = 37 +# text = If he or she did not, then they should have all the same rights as other Iraqis. +1 If if SCONJ IN _ 5 mark _ _ +2 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 5 nsubj _ _ +3 or or CONJ CC _ 2 cc _ _ +4 she she PRON PRP Case=Nom|Gender=Fem|Number=Sing|Person=3|PronType=Prs 2 conj _ _ +5 did do VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 11 advcl _ _ +6 not not PART RB _ 5 neg _ SpaceAfter=No +7 , , PUNCT , _ 11 punct _ _ +8 then then ADV RB PronType=Dem 11 advmod _ _ +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ _ +10 should should AUX MD VerbForm=Fin 11 aux _ _ +11 have have VERB VB VerbForm=Inf 0 root _ _ +12 all all DET PDT _ 15 det:predet _ _ +13 the the DET DT Definite=Def|PronType=Art 15 det _ _ +14 same same ADJ JJ Degree=Pos 15 amod _ _ +15 rights rights NOUN NNS Number=Plur 11 dobj _ _ +16 as as ADP IN _ 15 case _ _ +17 other other ADJ JJ Degree=Pos 18 amod _ _ +18 Iraqis Iraqis PROPN NNPS Number=Plur 16 nmod _ SpaceAfter=No +19 . . PUNCT . _ 11 punct _ _ + +# sent_id = 38 +# text = Al-Sharq al-Awsat reports that a key eyewitness in the trial of Saddam Hussein for a 1982 massacre at Dujail has died. +1 Al Al PROPN NNP Number=Sing 3 name _ SpaceAfter=No +2 - - PUNCT HYPH _ 3 punct _ SpaceAfter=No +3 Sharq Sharq PROPN NNP Number=Sing 6 name _ _ +4 al al PROPN NNP Number=Sing 6 name _ SpaceAfter=No +5 - - PUNCT HYPH _ 6 punct _ SpaceAfter=No +6 Awsat Awsat PROPN NNP Number=Sing 7 nsubj _ _ +7 reports report VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +8 that that SCONJ IN _ 25 mark _ _ +9 a a DET DT Definite=Ind|PronType=Art 11 det _ _ +10 key key ADJ JJ Degree=Pos 11 amod _ _ +11 eyewitness eyewitness NOUN NN Number=Sing 25 nsubj _ _ +12 in in ADP IN _ 11 case _ _ +13 the the DET DT Definite=Def|PronType=Art 14 det _ _ +14 trial trial NOUN NN Number=Sing 12 nmod _ _ +15 of of ADP IN _ 14 case _ _ +16 Saddam Saddam PROPN NNP Number=Sing 17 name _ _ +17 Hussein Hussein PROPN NNP Number=Sing 15 nmod _ _ +18 for for ADP IN _ 14 case _ _ +19 a a DET DT Definite=Ind|PronType=Art 21 det _ _ +20 1982 1982 NUM CD NumType=Card 21 nummod _ _ +21 massacre massacre NOUN NN Number=Sing 18 nmod _ _ +22 at at ADP IN _ 21 case _ _ +23 Dujail Dujail PROPN NNP Number=Sing 22 nmod _ _ +24 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 25 aux _ _ +25 died die VERB VBN Tense=Past|VerbForm=Part 7 ccomp _ SpaceAfter=No +26 . . PUNCT . _ 7 punct _ _ + +# sent_id = 39 +# text = A team from the court managed to take his deposition before he died. +1 A a DET DT Definite=Ind|PronType=Art 2 det _ _ +2 team team NOUN NN Number=Sing 6 nsubj _ _ +3 from from ADP IN _ 2 case _ _ +4 the the DET DT Definite=Def|PronType=Art 5 det _ _ +5 court court NOUN NN Number=Sing 3 nmod _ _ +6 managed manage VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 0 root _ _ +7 to to PART TO _ 8 mark _ _ +8 take take VERB VB VerbForm=Inf 6 xcomp _ _ +9 his he PRON PRP$ Gender=Masc|Number=Sing|Person=3|Poss=Yes|PronType=Prs 10 nmod:poss _ _ +10 deposition deposition NOUN NN Number=Sing 8 dobj _ _ +11 before before SCONJ IN _ 13 mark _ _ +12 he he PRON PRP Case=Nom|Gender=Masc|Number=Sing|Person=3|PronType=Prs 13 nsubj _ _ +13 died die VERB VBD Mood=Ind|Tense=Past|VerbForm=Fin 8 advcl _ SpaceAfter=No +14 . . PUNCT . _ 6 punct _ _ + +# sent_id = 40 +# text = The trial begins again Nov.28. +1 The the DET DT Definite=Def|PronType=Art 2 det _ _ +2 trial trial NOUN NN Number=Sing 3 nsubj _ _ +3 begins begin VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +4 again again ADV RB _ 3 advmod _ _ +5 Nov. Nov. PROPN NNP Number=Sing 3 nmod:tmod _ SpaceAfter=No +6 28 28 NUM CD NumType=Card 5 nummod _ SpaceAfter=No +7 . . PUNCT . _ 3 punct _ _ + +# sent_id = 41 +# text = In Baghdad the fighting still continues in several areas, mostly in Sadr city and Adhamiya. +1 In in ADP IN _ 6 case _ _ +2 Baghdad Baghdad PROPN NNP Number=Sing 1 nmod _ _ +3 the the DET DT Definite=Def|PronType=Art 4 det _ _ +4 fighting fighting NOUN NN Number=Sing 6 nsubj _ _ +5 still still ADV RB _ 6 advmod _ _ +6 continues continue VERB VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 0 root _ _ +7 in in ADP IN _ 6 case _ _ +8 several several ADJ JJ Degree=Pos 9 amod _ _ +9 areas area NOUN NNS Number=Plur 7 nmod _ SpaceAfter=No +10 , , PUNCT , _ 6 punct _ _ +11 mostly mostly ADV RB _ 14 advmod _ _ +12 in in ADP IN _ 6 case _ _ +13 Sadr Sadr PROPN NNP Number=Sing 14 compound _ _ +14 city city NOUN NN Number=Sing 12 nmod _ _ +15 and and CONJ CC _ 14 cc _ _ +16 Adhamiya Adhamiya PROPN NNP Number=Sing 14 conj _ SpaceAfter=No +17 . . PUNCT . _ 6 punct _ _ + +# sent_id = 42 +# text = Baghdadis don't venture much out of their neighbourhoods any more, you never know where you might get stuck. +1 Baghdadis Baghdadis PROPN NNPS Number=Plur 4 nsubj _ _ +2 do do AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 aux _ SpaceAfter=No +3 n't not PART RB _ 4 neg _ _ +4 venture venture VERB VB VerbForm=Inf 0 root _ _ +5 much much ADV RB _ 4 advmod _ _ +6 out out ADP IN _ 4 case _ _ +7 of of ADP IN _ 6 case _ _ +8 their they PRON PRP$ Number=Plur|Person=3|Poss=Yes|PronType=Prs 9 nmod:poss _ _ +9 neighbourhoods neighbourhood NOUN NNS Number=Plur 7 nmod _ _ +10 any any ADV RB _ 11 advmod _ _ +11 more more ADV RBR _ 4 advmod _ SpaceAfter=No +12 , , PUNCT , _ 4 punct _ _ +13 you you PRON PRP Case=Nom|Person=2|PronType=Prs 15 nsubj _ _ +14 never never ADV RB _ 15 neg _ _ +15 know know VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 ccomp _ _ +16 where where ADV WRB PronType=Int 20 mark _ _ +17 you you PRON PRP Case=Nom|Person=2|PronType=Prs 20 nsubjpass _ _ +18 might might AUX MD VerbForm=Fin 20 aux _ _ +19 get get VERB VB VerbForm=Inf 20 auxpass _ _ +20 stuck stuck ADJ JJ Degree=Pos 15 advcl _ SpaceAfter=No +21 . . PUNCT . _ 4 punct _ _ + +# sent_id = 43 +# text = There has been talk that the night curfew might be implemented again. +1 There there PRON EX _ 3 expl _ _ +2 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 3 aux _ _ +3 been be VERB VBN Tense=Past|VerbForm=Part 0 root _ _ +4 talk talk NOUN NN Number=Sing 3 nsubj _ _ +5 that that SCONJ IN _ 11 mark _ _ +6 the the DET DT Definite=Def|PronType=Art 8 det _ _ +7 night night NOUN NN Number=Sing 8 compound _ _ +8 curfew curfew NOUN NN Number=Sing 11 nsubjpass _ _ +9 might might AUX MD VerbForm=Fin 11 aux _ _ +10 be be AUX VB VerbForm=Inf 11 auxpass _ _ +11 implemented implement VERB VBN Tense=Past|VerbForm=Part 4 acl _ _ +12 again again ADV RB _ 11 advmod _ SpaceAfter=No +13 . . PUNCT . _ 4 punct _ _ + +# sent_id = 44 +# text = My neighbourhood has been surrounded by American troops for three days now, helicopters have been circling over our heads non-stop. +1 My my PRON PRP$ Number=Sing|Person=1|Poss=Yes|PronType=Prs 2 nmod:poss _ _ +2 neighbourhood neighbourhood NOUN NN Number=Sing 5 nsubjpass _ _ +3 has have AUX VBZ Mood=Ind|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin 5 aux _ _ +4 been be AUX VBN Tense=Past|VerbForm=Part 5 auxpass _ _ +5 surrounded surround VERB VBN Tense=Past|VerbForm=Part|Voice=Pass 0 root _ _ +6 by by ADP IN _ 5 case _ _ +7 American american ADJ JJ Degree=Pos 8 amod _ _ +8 troops troops NOUN NNS Number=Plur 6 nmod _ _ +9 for for ADP IN _ 5 case _ _ +10 three three NUM CD NumType=Card 11 nummod _ _ +11 days day NOUN NNS Number=Plur 9 nmod _ _ +12 now now ADV RB _ 5 advmod _ SpaceAfter=No +13 , , PUNCT , _ 5 punct _ _ +14 helicopters helicopter NOUN NNS Number=Plur 17 nsubj _ _ +15 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 17 aux _ _ +16 been be AUX VBN Tense=Past|VerbForm=Part 17 aux _ _ +17 circling circle VERB VBG Tense=Pres|VerbForm=Part 5 ccomp _ _ +18 over over ADP IN _ 17 case _ _ +19 our we PRON PRP$ Number=Plur|Person=1|Poss=Yes|PronType=Prs 20 nmod:poss _ _ +20 heads head NOUN NNS Number=Plur 18 nmod _ _ +21 non-stop non-stop ADV RB _ 17 advmod _ SpaceAfter=No +22 . . PUNCT . _ 5 punct _ _ + +# sent_id = 45 +# text = Fedayeen are now visible on the street and they have become bolder than ever. +1 Fedayeen fedayeen NOUN NNS Number=Plur 4 nsubj _ _ +2 are be VERB VBP Mood=Ind|Tense=Pres|VerbForm=Fin 4 cop _ _ +3 now now ADV RB _ 4 advmod _ _ +4 visible visible ADJ JJ Degree=Pos 0 root _ _ +5 on on ADP IN _ 4 case _ _ +6 the the DET DT Definite=Def|PronType=Art 7 det _ _ +7 street street NOUN NN Number=Sing 5 nmod _ _ +8 and and CONJ CC _ 4 cc _ _ +9 they they PRON PRP Case=Nom|Number=Plur|Person=3|PronType=Prs 11 nsubj _ _ +10 have have AUX VBP Mood=Ind|Tense=Pres|VerbForm=Fin 11 aux _ _ +11 become become VERB VBN Tense=Past|VerbForm=Part 4 conj _ _ +12 bolder bolder ADJ JJR Degree=Cmp 11 xcomp _ _ +13 than than ADP IN _ 12 case _ _ +14 ever ever ADV RB _ 13 nmod _ SpaceAfter=No +15 . . PUNCT . _ 4 punct _ _ + diff --git a/demo/python-demo.sh b/demo/python-demo.sh index aefa17cf..d83e51d9 100755 --- a/demo/python-demo.sh +++ b/demo/python-demo.sh @@ -3,4 +3,4 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH -udapy read.Conllu filename=en-sample.conllu demo.RehangPrepositions write.Conllu > prepositions-up.conllu +udapy read.Conllu files=en-sample.conllu demo.RehangPrepositions write.Conllu > prepositions-up.conllu diff --git a/demo/test/all.in.conllu b/demo/test/all.in.conllu new file mode 100644 index 00000000..e01cdd52 --- /dev/null +++ b/demo/test/all.in.conllu @@ -0,0 +1,626 @@ +# newdoc +# newpar +# sent_id = 1 +# text = Smlouvou o pronájmu služby nekončí +1 Smlouvou smlouva NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 3 nmod _ _ +5 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 2 +# text = Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. +1 Dana Dana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 Rybáková Rybáková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ +3 Firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 11 nsubj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 6 nsubj _ _ +6 podnikají podnikat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 mnohdy mnohdy ADV Db------------- _ 11 advmod _ _ +11 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 15 det _ _ +15 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 12 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 3 +# text = Movitější zahraniční studenti se nespokojí s bydlením na kolejích. +1 Movitější movitý ADJ AAMP1----2A---- Animacy=Anim|Case=Nom|Degree=Cmp|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 studenti student NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +5 nespokojí spokojit VERB VB-P---3P-NA--- Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 s s ADP RR--7---------- AdpType=Prep|Case=Ins 7 case _ _ +7 bydlením bydlení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 obj _ _ +8 na na ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 kolejích kolej NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. +1 Ti ten DET PDMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Dem 5 nsubj _ _ +2 a a CCONJ J^------------- _ 3 cc _ _ +3 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ _ +4 další další ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 amod _ _ +5 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +7 dlouhodobého dlouhodobý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. +1 A a CCONJ J^------------- _ 5 cc _ _ +2 právě právě ADV Db------------- _ 5 advmod:emph _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 dlouhodobé dlouhodobý ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 amod _ _ +5 pronájmy pronájem NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +6 bytů byt NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ _ +7 a a CCONJ J^------------- _ 9 cc _ _ +8 rodinných rodinný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 domů dům NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 conj _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl:pv _ _ +11 specializuje specializovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 11 nsubj _ _ +13 Ubytreal Ubytreal PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 6 +# text = V databance má pouze byty I. kategorie v Praze a jejím okolí. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 databance databanka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 pouze pouze ADV Db------------- _ 5 advmod:emph _ _ +5 byty byt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 3 obj _ _ +6 I I NUM C}------------- NumForm=Roman|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 kategorie kategorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ _ +11 a a CCONJ J^------------- _ 13 cc _ _ +12 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 okolí okolí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 10 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. +1 Výjimku výjimka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +2 tvoří tvořit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 centru centrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 nmod _ _ +6 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kde kde ADV Db------------- PronType=Int,Rel 12 advmod _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 12 expl:pass _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 nabídky nabídka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 12 obl _ _ +12 zařazují zařazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ _ +13 i i CCONJ J^------------- _ 14 advmod:emph _ _ +14 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 12 nsubj:pass _ _ +15 s s ADP RR--7---------- AdpType=Prep|Case=Ins 16 case _ _ +16 vytápěním vytápění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 14 nmod _ _ +17 wavkami wavky NOUN NNFP1-----A---- Case=Nom|Foreign=Yes|Gender=Fem|Number=Plur|Polarity=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. +1 Smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 2 obj _ _ +2 podepisujeme podepisovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 jak jak ADV Db------------- PronType=Int,Rel 5 cc _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pronajímateli pronajímatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 tak tak CCONJ J^------------- _ 9 cc _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +9 nájemci nájemce NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 databanka databanka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ _ +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 jakousi jakýsi DET PZFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Ind 5 det _ _ +5 křižovatkou křižovatka NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 8 ccomp _ _ +6 informací informace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 5 punct _ _ +8 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 spolumajitel spolumajitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +10 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 9 nmod _ _ +11 Michal Michal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 8 nsubj _ _ +12 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 11 flat _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 8 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 10 +# text = Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. +1 Smlouvy smlouva NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 5 nsubj:pass _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 podepisují podepisovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 minimálně minimálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod:emph _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 5 obl _ _ +9 a a CCONJ J^------------- _ 13 cc _ _ +10 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod:emph _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 tři tři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 13 nummod _ _ +13 roky rok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 8 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 2 case _ _ +2 smlouvě smlouva NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux:pass _ _ +4 uvedena uvedený ADJ VsQW---XX-AP--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +5 pevná pevný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 částka částka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj:pass _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kterou který DET P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 12 obj _ _ +9 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 12 nsubj _ _ +10 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ _ +12 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 12 punct _ _ +14 a a CCONJ J^------------- _ 17 cc _ _ +15 ta ten DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 17 nsubj:pass _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl:pass _ _ +17 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. +1 Smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 3 nsubj:pass _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl:pass _ _ +3 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 po po ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uplynutí uplynutí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 7 obl _ _ +6 lhůty lhůta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 prodloužit prodloužit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 ale ale CCONJ J^------------- _ 12 cc _ _ +10 pak pak ADV Db------------- _ 12 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +12 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 3 conj _ _ +13 upravit upravit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 12 csubj _ _ +14 právě právě ADV Db------------- _ 15 advmod:emph _ _ +15 sumu suma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +16 placenou placený ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 16 obj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ _ +20 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 13 conj _ _ +21 v v ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 iobj _ _ +23 například například ADV Db------------- _ 24 advmod:emph _ _ +24 inflaci inflace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 obj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 13 +# text = Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. +1 Nejlevnější levný ADJ AAFS1----3A---- Case=Nom|Degree=Sup|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +3 nezařízená zařízený ADJ AAFS1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Neg 4 amod _ _ +4 garsoniéra garsoniéra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 1 nsubj _ _ +5 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 telefonu telefon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 4 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 11 punct _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 pět pět NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +10 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 11 nummod:gov _ _ +11 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 1 obl _ _ +12 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 11 advmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 14 +# text = Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. +1 Nejdražší drahý ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 pronájem pronájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 10 nsubj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 který který DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 7 obj _ _ +5 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 zatím zatím ADV Db------------- _ 7 advmod _ _ +7 sjednala sjednat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 10 cop _ _ +10 vila vila NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 Klamovce Klamovka PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 16 case _ _ +14 sedm sedm NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 16 nummod:gov _ _ +15 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod:gov _ _ +16 dolarů dolar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +17 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 16 advmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 15 +# text = Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. +1 Dříve brzy ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 2 advmod _ _ +2 tvořili tvořit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 21 ccomp _ _ +3 přes přes ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 50 50 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +5 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 2 obj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ _ +7 klientely klientela NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 cizinci cizinec NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 17 punct _ _ +10 dnes dnes ADV Db------------- _ 17 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +12 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 poměr poměr NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 17 nsubj _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 16 case _ _ +15 domácím domácí ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 16 amod _ _ +16 zájemcům zájemce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 13 nmod _ _ +17 1 1 NUM C=------------- NumForm=Digit|NumType=Card 2 conj _ SpaceAfter=No +18 : : PUNCT Z:------------- _ 19 punct _ SpaceAfter=No +19 1 1 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ _ +21 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +22 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 21 nsubj _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 22 punct _ _ +24 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 22 flat _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 21 punct _ _ + +# sent_id = 16 +# text = Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. +1 Je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 nmod _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 kteří který DET P4MP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ _ +6 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +8 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ _ +9 mimopražské mimopražský ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 10 amod _ _ +10 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +11 ubytování ubytování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 17 +# text = Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. +1 Nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +4 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ _ +5 požadavků požadavek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ _ +6 dostat dostat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +7 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ _ +8 i i CCONJ J^------------- _ 10 advmod:emph _ _ +9 po po ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 telefonu telefon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 13 punct _ _ +12 popřípadě popřípadě ADV Db------------- _ 13 advmod _ _ +13 navštívit navštívit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 acl _ _ +14 kancelář kancelář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +15 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 14 nmod _ _ +16 a a CCONJ J^------------- _ 18 cc _ _ +17 nabídky nabídka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 18 obj _ _ +18 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +19 vytištěné vytištěný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 18 +# text = Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. +1 Klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 3 nsubj _ _ +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 3 obl _ _ +3 určí určit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 jak jak ADV Db------------- PronType=Int,Rel 6 advmod _ _ +6 velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 jaké jaký DET P4FS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Int,Rel 11 det _ _ +11 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 7 dep _ _ +12 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 kterém který DET P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 16 det _ _ +16 patře patro NOUN NNNS6-----A---1 Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +19 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 20 det _ _ +20 vybavením vybavení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ _ +21 a a CCONJ J^------------- _ 25 cc _ _ +22 za za ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 26 obj _ _ +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 expl:pv _ _ +25 chce chtít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +26 pronajmout pronajmout VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 25 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 19 +# text = Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +3 pak pak ADV Db------------- _ 4 advmod _ _ +4 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 buď buď CCONJ J^------------- _ 6 cc _ _ +6 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 která který DET P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 14 nsubj _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl:pv _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ _ +12 požadavky požadavek NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 14 obj _ _ +13 dokonale dokonale ADV Dg-------1A---- Degree=Pos|Polarity=Pos 14 advmod _ _ +14 kryje krýt VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 nebo nebo CCONJ J^------------- _ 17 cc _ _ +17 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 conj _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 21 case _ _ +19 jednou jeden NUM ClFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +20 libovolnou libovolný ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ _ +21 chybou chyba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 20 +# text = To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. +1 To ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ _ +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 že že SCONJ J,------------- _ 7 mark _ _ +5 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +7 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 2 ccomp _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +12 nebo nebo CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 dražší drahý ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 7 conj _ _ +15 apod apod ADV Db------------8 Abbr=Yes 14 advmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 21 +# text = Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ _ +5 i i CCONJ J^------------- _ 6 advmod:emph _ _ +6 telefonicky telefonicky ADV Dg-------1A---- Degree=Pos|Polarity=Pos 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 ale ale CCONJ J^------------- _ 13 cc _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 každém každý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 obl _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl:pv _ _ +13 musí muset VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 osobně osobně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 15 advmod _ _ +15 dostavit dostavit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 13 xcomp _ _ +16 do do ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 kanceláře kancelář NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 15 obl _ _ +18 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 podepsání podepsání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 15 obl _ _ +21 zprostředkovatelské zprostředkovatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 22 +# text = Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. +1 Neuzavíráme uzavírat VERB VB-P---1P-NA--- Mood=Ind|Number=Plur|Person=1|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +3 zprostředkovatelské zprostředkovatelský ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +4 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 1 obj _ _ +5 jako jako SCONJ J,------------- _ 8 mark _ _ +6 jiné jiný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +7 realitní realitní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +8 firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 1 advcl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 13 punct _ _ +10 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 13 nsubj _ _ +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 pronajímatele pronajímatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ _ +13 znamenají znamenat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 29 punct _ _ +15 že že SCONJ J,------------- _ 29 mark _ _ +16 pod pod ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 hrozbou hrozba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +18 pokuty pokuta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 20 case _ _ +20 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 18 nmod _ _ +21 až až PART TT------------- _ 24 advmod:emph _ _ +22 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 24 nummod _ _ +23 měsíčních měsíční ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 24 amod _ _ +24 nájmů nájem NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ _ +26 po po ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +27 určitou určitý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 28 amod _ _ +28 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +29 nesmí smět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 13 ccomp _ _ +30 sám sám DET PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Emp 31 xcomp _ _ +31 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 29 xcomp _ _ +32 klienta klient NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 31 iobj _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +3 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 obl _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +5 stejnou stejný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 pokutu pokuta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 obj _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 platit platit VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +9 i i CCONJ J^------------- _ 10 advmod:emph _ _ +10 kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 pokud pokud SCONJ J,------------- _ 17 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 dané daný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +15 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 17 obl _ _ +16 není být AUX VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +17 schopna schopný ADJ ACQW------A---- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short 7 advcl _ _ +18 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 17 xcomp _ _ +19 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 18 obj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 23 punct _ _ +21 nebo nebo CCONJ J^------------- _ 23 cc _ _ +22 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +23 neměla mít VERB VpQW---XR-NA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 7 conj _ _ +24 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 25 amod _ _ +25 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 26 obj _ _ +26 uzavírat uzavírat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 23 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 24 +# text = Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +2 zprostředkovatelská zprostředkovatelský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +4 pronajímatele pronajímatel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 8 obj _ _ +5 ani ani CCONJ J^------------- _ 6 cc _ _ +6 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 conj _ _ +7 nijak nijak ADV Db------------- PronType=Neg 8 advmod _ _ +8 nezavazuje zavazovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 25 +# text = Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +3 podpisu podpis NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 8 obl _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl:pv _ _ +5 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 6 det _ _ +6 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +7 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod _ _ +8 dostává dostávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 ccomp _ _ +9 do do ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 8 punct _ _ +12 vysvětlil vysvětlit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 12 nsubj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 13 flat _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 26 +# text = Za uzavření smlouvy a zařazení do databáze klient neplatí. +1 Za za ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 uzavření uzavření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +3 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 2 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 zařazení zařazení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 2 conj _ _ +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +9 neplatí platit VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpacesAfter=\s\r\n\r\n + +# newpar +# sent_id = 27 +# text = V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 díky díky ADP RR--3---------- AdpType=Prep|Case=Dat 6 case _ _ +6 Ubytrealu Ubytreal PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 9 obl _ _ +7 jako jako SCONJ J,------------- _ 8 mark _ _ +8 zprostředkovateli zprostředkovatel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 acl _ _ +10 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +11 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ _ +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 dlouhodobý dlouhodobý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 14 amod _ _ +14 pronájem pronájem NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +15 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +18 této tento DET PDFS3---------- Case=Dat|Gender=Fem|Number=Sing|PronType=Dem 19 det _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Number=Sing|Polarity=Pos 17 iobj _ _ +20 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 17 obj _ _ +21 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 22 case _ _ +22 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ _ +23 70 70 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod:gov _ _ +24 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 22 nmod _ _ +25 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 26 amod _ _ +26 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 24 nmod _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 17 punct _ _ + +# sent_id = 28 +# text = Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. +1 Pokud pokud SCONJ J,------------- _ 4 mark _ _ +2 přičiněním přičinění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Ubytrealu Ubytreal PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 advcl _ _ +5 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 nmod _ _ +9 pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +10 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +13 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 obj _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 15 case _ _ +15 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 nmod _ _ +16 100 100 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod:gov _ _ +17 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 15 nmod _ _ +18 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 19 amod _ _ +19 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 29 +# text = Pronajímatel platí víc, protože je to výdělečná činnost. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 víc hodně ADV Dg-------2A---1 Degree=Cmp|Polarity=Pos 2 obj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 9 punct _ _ +5 protože protože SCONJ J,------------- _ 9 mark _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +7 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 9 nsubj _ _ +8 výdělečná výdělečný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 9 amod _ _ +9 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 advcl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 30 +# text = Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. +1 Naše můj DET PSHP1-P1------- Case=Nom|Gender=Fem,Neut|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 4 nsubj _ _ +3 ovšem ovšem CCONJ J^------------- _ 4 cc _ _ +4 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 podpisem podpis NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +6 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +10 a a CCONJ J^------------- _ 11 cc _ _ +11 vyinkasováním vyinkasování NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 conj _ _ +12 odměny odměna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 31 +# text = Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. +1 Svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 2 det _ _ +2 klientům klient NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 3 iobj _ _ +3 poskytujeme poskytovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ _ +4 po po ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 celou celý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +7 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +8 právní právní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 servis servis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 3 punct _ _ +11 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +12 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 11 nsubj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 12 punct _ _ +14 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 12 flat _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 11 punct _ _ \ No newline at end of file diff --git a/demo/test/all.out.conllu b/demo/test/all.out.conllu new file mode 100644 index 00000000..04068472 --- /dev/null +++ b/demo/test/all.out.conllu @@ -0,0 +1,627 @@ +# sent_id = 1 +# text = Smlouvou o pronájmu služby nekončí +# newdoc +# newpar +1 Smlouvou smlouva NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ Coref=7 +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ Coref=2 +4 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 3 nmod _ Coref=30 +5 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpacesAfter=\s\r\n\r\n + +# sent_id = 2 +# text = Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. +# newpar +1 Dana Dana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 Rybáková Rybáková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ +3 Firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 11 nsubj _ Coref=0|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=0 +6 podnikají podnikat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 6 obl _ Coref=5|SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 mnohdy mnohdy ADV Db------------- _ 11 advmod _ _ +11 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ Coref=3 +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 15 det _ Coref=0 +15 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 12 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 3 +# text = Movitější zahraniční studenti se nespokojí s bydlením na kolejích. +1 Movitější movitý ADJ AAMP1----2A---- Animacy=Anim|Case=Nom|Degree=Cmp|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 studenti student NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ Coref=1 +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +5 nespokojí spokojit VERB VB-P---3P-NA--- Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 s s ADP RR--7---------- AdpType=Prep|Case=Ins 7 case _ _ +7 bydlením bydlení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 obj _ _ +8 na na ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 kolejích kolej NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. +1 Ti ten DET PDMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Dem 5 nsubj _ Coref=1 +2 a a CCONJ J^------------- _ 3 cc _ _ +3 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ _ +4 další další ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 amod _ _ +5 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +7 dlouhodobého dlouhodobý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +9 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 8 nmod _ Coref=3|SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. +1 A a CCONJ J^------------- _ 5 cc _ _ +2 právě právě ADV Db------------- _ 5 advmod:emph _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 dlouhodobé dlouhodobý ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 amod _ _ +5 pronájmy pronájem NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ Coref=2 +6 bytů byt NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ Coref=3 +7 a a CCONJ J^------------- _ 9 cc _ _ +8 rodinných rodinný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 domů dům NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 conj _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl:pv _ _ +11 specializuje specializovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 11 nsubj _ Coref=4 +13 Ubytreal Ubytreal PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 6 +# text = V databance má pouze byty I. kategorie v Praze a jejím okolí. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 databance databanka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ Coref=8 +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=4 +4 pouze pouze ADV Db------------- _ 5 advmod:emph _ _ +5 byty byt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 3 obj _ _ +6 I I NUM C}------------- NumForm=Roman|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 kategorie kategorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ Coref=5 +11 a a CCONJ J^------------- _ 13 cc _ _ +12 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 13 det _ Coref=5 +13 okolí okolí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 10 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. +1 Výjimku výjimka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +2 tvoří tvořit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 centru centrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 nmod _ Coref=6 +6 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ Coref=5|SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kde kde ADV Db------------- PronType=Int,Rel 12 advmod _ Coref=6 +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 12 expl:pass _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 nabídky nabídka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 12 obl _ _ +12 zařazují zařazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ _ +13 i i CCONJ J^------------- _ 14 advmod:emph _ _ +14 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 12 nsubj:pass _ _ +15 s s ADP RR--7---------- AdpType=Prep|Case=Ins 16 case _ _ +16 vytápěním vytápění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 14 nmod _ _ +17 wavkami wavky NOUN NNFP1-----A---- Case=Nom|Foreign=Yes|Gender=Fem|Number=Plur|Polarity=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. +1 Smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 2 obj _ Coref=7 +2 podepisujeme podepisovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=4 +3 jak jak ADV Db------------- PronType=Int,Rel 5 cc _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pronajímateli pronajímatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ Coref=20|SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 tak tak CCONJ J^------------- _ 9 cc _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +9 nájemci nájemce NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ Coref=10|SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ Coref=4 +2 databanka databanka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ Coref=8 +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 jakousi jakýsi DET PZFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Ind 5 det _ _ +5 křižovatkou křižovatka NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 8 ccomp _ _ +6 informací informace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 5 punct _ _ +8 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 spolumajitel spolumajitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +10 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 9 nmod _ Coref=4 +11 Michal Michal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 8 nsubj _ _ +12 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 11 flat _ Coref=15|SpaceAfter=No +13 . . PUNCT Z:------------- _ 8 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 10 +# text = Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. +# newpar +1 Smlouvy smlouva NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 5 nsubj:pass _ Coref=7 +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ Coref=2 +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 podepisují podepisovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 minimálně minimálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod:emph _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 5 obl _ _ +9 a a CCONJ J^------------- _ 13 cc _ Coref=11 +10 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod:emph _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 tři tři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 13 nummod _ _ +13 roky rok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 8 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 2 case _ _ +2 smlouvě smlouva NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=7 +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux:pass _ _ +4 uvedena uvedený ADJ VsQW---XX-AP--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +5 pevná pevný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 částka částka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj:pass _ Coref=9|SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kterou který DET P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 12 obj _ Coref=9 +9 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 12 nsubj _ Coref=10 +10 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ Coref=3 +12 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 12 punct _ _ +14 a a CCONJ J^------------- _ 17 cc _ _ +15 ta ten DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 17 nsubj:pass _ Coref=9 +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl:pass _ _ +17 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. +1 Smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 3 nsubj:pass _ Coref=7 +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl:pass _ _ +3 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 po po ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uplynutí uplynutí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 7 obl _ _ +6 lhůty lhůta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=11 +7 prodloužit prodloužit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 ale ale CCONJ J^------------- _ 12 cc _ _ +10 pak pak ADV Db------------- _ 12 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +12 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 3 conj _ Drop_coref=12 +13 upravit upravit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 12 csubj _ _ +14 právě právě ADV Db------------- _ 15 advmod:emph _ _ +15 sumu suma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ Coref=9 +16 placenou placený ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 16 obj _ Coref=3|SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ Drop_coref=12 +20 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 13 conj _ _ +21 v v ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 iobj _ _ +23 například například ADV Db------------- _ 24 advmod:emph _ _ +24 inflaci inflace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 obj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 13 +# text = Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. +# newpar +1 Nejlevnější levný ADJ AAFS1----3A---- Case=Nom|Degree=Sup|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +3 nezařízená zařízený ADJ AAFS1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Neg 4 amod _ _ +4 garsoniéra garsoniéra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 1 nsubj _ _ +5 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 telefonu telefon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 4 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 11 punct _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 pět pět NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +10 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 11 nummod:gov _ _ +11 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 1 obl _ _ +12 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 11 advmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 14 +# text = Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. +1 Nejdražší drahý ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 pronájem pronájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 10 nsubj _ Coref=13|SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 který který DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 7 obj _ Coref=13 +5 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ Coref=4 +6 zatím zatím ADV Db------------- _ 7 advmod _ _ +7 sjednala sjednat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 10 cop _ _ +10 vila vila NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 Klamovce Klamovka PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 16 case _ _ +14 sedm sedm NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 16 nummod:gov _ _ +15 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod:gov _ _ +16 dolarů dolar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +17 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 16 advmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 15 +# text = Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. +# newpar +1 Dříve brzy ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 2 advmod _ _ +2 tvořili tvořit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 21 ccomp _ _ +3 přes přes ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 50 50 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +5 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 2 obj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ Coref=4 +7 klientely klientela NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 cizinci cizinec NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ Coref=14|SpaceAfter=No +9 , , PUNCT Z:------------- _ 17 punct _ _ +10 dnes dnes ADV Db------------- _ 17 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +12 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 13 det _ Coref=14 +13 poměr poměr NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 17 nsubj _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 16 case _ _ +15 domácím domácí ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 16 amod _ _ +16 zájemcům zájemce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 13 nmod _ _ +17 1 1 NUM C=------------- NumForm=Digit|NumType=Card 2 conj _ SpaceAfter=No +18 : : PUNCT Z:------------- _ 19 punct _ SpaceAfter=No +19 1 1 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ _ +21 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +22 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 21 nsubj _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 22 punct _ _ +24 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 22 flat _ Coref=15|SpaceAfter=No +25 . . PUNCT Z:------------- _ 21 punct _ _ + +# sent_id = 16 +# text = Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. +1 Je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 nmod _ Coref=0|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 kteří který DET P4MP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=0 +6 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +8 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ Coref=0 +9 mimopražské mimopražský ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 10 amod _ _ +10 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +11 ubytování ubytování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ Coref=5|SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 17 +# text = Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. +1 Nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=10 +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +4 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ Coref=10 +5 požadavků požadavek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ _ +6 dostat dostat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 2 xcomp _ Drop_coref=16 +7 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ Drop_coref=16 +8 i i CCONJ J^------------- _ 10 advmod:emph _ _ +9 po po ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 telefonu telefon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 13 punct _ _ +12 popřípadě popřípadě ADV Db------------- _ 13 advmod _ _ +13 navštívit navštívit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 acl _ _ +14 kancelář kancelář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ Coref=21 +15 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 14 nmod _ Coref=4 +16 a a CCONJ J^------------- _ 18 cc _ _ +17 nabídky nabídka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 18 obj _ Coref=16 +18 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +19 vytištěné vytištěný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 18 +# text = Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. +1 Klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 3 nsubj _ Coref=10 +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 3 obl _ Coref=10 +3 určí určit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 jak jak ADV Db------------- PronType=Int,Rel 6 advmod _ _ +6 velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=3|SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 jaké jaký DET P4FS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Int,Rel 11 det _ _ +11 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 7 dep _ _ +12 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ Coref=5|SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 kterém který DET P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 16 det _ _ +16 patře patro NOUN NNNS6-----A---1 Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +19 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 20 det _ _ +20 vybavením vybavení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ _ +21 a a CCONJ J^------------- _ 25 cc _ _ +22 za za ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 26 obj _ Coref=9 +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 expl:pv _ Coref=17 +25 chce chtít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +26 pronajmout pronajmout VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 25 xcomp _ Drop_coref=17|SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 19 +# text = Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=8 +3 pak pak ADV Db------------- _ 4 advmod _ _ +4 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=17 +5 buď buď CCONJ J^------------- _ 6 cc _ _ +6 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ Coref=18|SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 která který DET P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 14 nsubj _ Coref=18 +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl:pv _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ Coref=17 +12 požadavky požadavek NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 14 obj _ _ +13 dokonale dokonale ADV Dg-------1A---- Degree=Pos|Polarity=Pos 14 advmod _ _ +14 kryje krýt VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 nebo nebo CCONJ J^------------- _ 17 cc _ _ +17 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 conj _ Coref=19 +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 21 case _ _ +19 jednou jeden NUM ClFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +20 libovolnou libovolný ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ _ +21 chybou chyba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 20 +# text = To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. +1 To ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ Coref=19 +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 že že SCONJ J,------------- _ 7 mark _ _ +5 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 nsubj _ Coref=3 +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +7 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 2 ccomp _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ Coref=5 +12 nebo nebo CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 dražší drahý ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 7 conj _ _ +15 apod apod ADV Db------------8 Abbr=Yes 14 advmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 21 +# text = Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. +# newpar +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=20 +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=3 +5 i i CCONJ J^------------- _ 6 advmod:emph _ _ +6 telefonicky telefonicky ADV Dg-------1A---- Degree=Pos|Polarity=Pos 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 ale ale CCONJ J^------------- _ 13 cc _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 každém každý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 obl _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl:pv _ _ +13 musí muset VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 osobně osobně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 15 advmod _ _ +15 dostavit dostavit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 13 xcomp _ _ +16 do do ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 kanceláře kancelář NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 15 obl _ Coref=21 +18 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ Coref=4 +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 podepsání podepsání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 15 obl _ _ +21 zprostředkovatelské zprostředkovatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ Coref=25|SpaceAfter=No +23 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 22 +# text = Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. +1 Neuzavíráme uzavírat VERB VB-P---1P-NA--- Mood=Ind|Number=Plur|Person=1|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=22 +2 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +3 zprostředkovatelské zprostředkovatelský ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +4 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 1 obj _ Drop_coref=4 +5 jako jako SCONJ J,------------- _ 8 mark _ _ +6 jiné jiný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +7 realitní realitní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +8 firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 1 advcl _ Coref=22|SpaceAfter=No +9 , , PUNCT Z:------------- _ 13 punct _ _ +10 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 13 nsubj _ Coref=4 +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 pronajímatele pronajímatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ Coref=20 +13 znamenají znamenat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 29 punct _ _ +15 že že SCONJ J,------------- _ 29 mark _ _ +16 pod pod ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 hrozbou hrozba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +18 pokuty pokuta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ Coref=24 +19 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 20 case _ _ +20 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 18 nmod _ _ +21 až až PART TT------------- _ 24 advmod:emph _ _ +22 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 24 nummod _ _ +23 měsíčních měsíční ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 24 amod _ _ +24 nájmů nájem NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ Coref=23 +26 po po ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +27 určitou určitý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 28 amod _ _ +28 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +29 nesmí smět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 13 ccomp _ _ +30 sám sám DET PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Emp 31 xcomp _ _ +31 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 29 xcomp _ Drop_coref=23 +32 klienta klient NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 31 iobj _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 3 det _ Coref=15 +3 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 obl _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +5 stejnou stejný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 pokutu pokuta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 obj _ Coref=24 +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 platit platit VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +9 i i CCONJ J^------------- _ 10 advmod:emph _ _ +10 kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ Coref=22|SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 pokud pokud SCONJ J,------------- _ 17 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 dané daný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +15 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 17 obl _ _ +16 není být AUX VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ Drop_coref=22 +17 schopna schopný ADJ ACQW------A---- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short 7 advcl _ _ +18 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 17 xcomp _ Drop_coref=22 +19 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 18 obj _ Coref=17|SpaceAfter=No +20 , , PUNCT Z:------------- _ 23 punct _ _ +21 nebo nebo CCONJ J^------------- _ 23 cc _ _ +22 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +23 neměla mít VERB VpQW---XR-NA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 7 conj _ _ +24 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 25 amod _ _ +25 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 26 obj _ Coref=4 +26 uzavírat uzavírat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 23 xcomp _ Drop_coref=22|SpaceAfter=No +27 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 24 +# text = Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 3 det _ Coref=4 +2 zprostředkovatelská zprostředkovatelský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ Coref=25 +4 pronajímatele pronajímatel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 8 obj _ Coref=23 +5 ani ani CCONJ J^------------- _ 6 cc _ Coref=26 +6 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 conj _ Coref=17 +7 nijak nijak ADV Db------------- PronType=Neg 8 advmod _ _ +8 nezavazuje zavazovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 25 +# text = Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ Coref=25 +3 podpisu podpis NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 8 obl _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl:pv _ _ +5 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 6 det _ Coref=26 +6 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +7 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod _ _ +8 dostává dostávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 ccomp _ Coref=27 +9 do do ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 obl _ Coref=8|SpaceAfter=No +11 , , PUNCT Z:------------- _ 8 punct _ _ +12 vysvětlil vysvětlit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 12 nsubj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 13 flat _ Coref=15|SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 26 +# text = Za uzavření smlouvy a zařazení do databáze klient neplatí. +1 Za za ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 uzavření uzavření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +3 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 2 nmod _ Coref=25 +4 a a CCONJ J^------------- _ 5 cc _ _ +5 zařazení zařazení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 2 conj _ Coref=27 +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=8 +8 klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ Coref=26 +9 neplatí platit VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 27 +# text = V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 díky díky ADP RR--3---------- AdpType=Prep|Case=Dat 6 case _ _ +6 Ubytrealu Ubytreal PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 9 obl _ Coref=4 +7 jako jako SCONJ J,------------- _ 8 mark _ _ +8 zprostředkovateli zprostředkovatel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 acl _ _ +10 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ Coref=17 +11 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ Coref=7|Drop_coref=17 +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 dlouhodobý dlouhodobý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 14 amod _ _ +14 pronájem pronájem NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ Coref=2 +15 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 nmod _ Coref=3|SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=7 +18 této tento DET PDFS3---------- Case=Dat|Gender=Fem|Number=Sing|PronType=Dem 19 det _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Number=Sing|Polarity=Pos 17 iobj _ Coref=4 +20 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 17 obj _ _ +21 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 22 case _ _ +22 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ _ +23 70 70 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod:gov _ _ +24 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 22 nmod _ _ +25 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 26 amod _ _ +26 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 24 nmod _ Coref=29|SpaceAfter=No +27 . . PUNCT Z:------------- _ 17 punct _ _ + +# sent_id = 28 +# text = Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. +1 Pokud pokud SCONJ J,------------- _ 4 mark _ _ +2 přičiněním přičinění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Ubytrealu Ubytreal PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ Coref=4 +4 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 advcl _ _ +5 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ Coref=7|Drop_coref=28 +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 nmod _ Coref=2 +9 pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ Coref=28 +10 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ Coref=3|SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=28 +13 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 obj _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 15 case _ _ +15 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 nmod _ _ +16 100 100 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod:gov _ _ +17 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 15 nmod _ _ +18 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 19 amod _ _ +19 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 nmod _ Coref=29|SpaceAfter=No +20 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 29 +# text = Pronajímatel platí víc, protože je to výdělečná činnost. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ Coref=28 +2 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 víc hodně ADV Dg-------2A---1 Degree=Cmp|Polarity=Pos 2 obj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 9 punct _ _ +5 protože protože SCONJ J,------------- _ 9 mark _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +7 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 9 nsubj _ _ +8 výdělečná výdělečný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 9 amod _ _ +9 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 advcl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 30 +# text = Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. +1 Naše můj DET PSHP1-P1------- Case=Nom|Gender=Fem,Neut|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ Coref=4 +2 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 4 nsubj _ Coref=30 +3 ovšem ovšem CCONJ J^------------- _ 4 cc _ _ +4 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 podpisem podpis NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +6 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ Coref=7 +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +10 a a CCONJ J^------------- _ 11 cc _ _ +11 vyinkasováním vyinkasování NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 conj _ _ +12 odměny odměna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 31 +# text = Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. +1 Svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 2 det _ _ +2 klientům klient NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 3 iobj _ Coref=26 +3 poskytujeme poskytovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ Drop_coref=4 +4 po po ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 celou celý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +7 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=2 +8 právní právní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 servis servis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 3 punct _ _ +11 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +12 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 11 nsubj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 12 punct _ _ +14 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 12 flat _ Coref=15|SpaceAfter=No +15 . . PUNCT Z:------------- _ 11 punct _ _ + diff --git a/demo/test/auto_result.conllu b/demo/test/auto_result.conllu new file mode 100644 index 00000000..8e8a82d3 --- /dev/null +++ b/demo/test/auto_result.conllu @@ -0,0 +1,627 @@ +# sent_id = 1 +# text = Smlouvou o pronájmu služby nekončí +# newdoc +# newpar +1 Smlouvou smlouva NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 3 nmod _ _ +5 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpacesAfter=\s\r\n\r\n + +# sent_id = 2 +# text = Dana Rybáková Firmy, které podnikají v Praze, mnohdy potřebují byty pro své zaměstnance. +# newpar +1 Dana Dana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 Rybáková Rybáková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ _ +3 Firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 11 nsubj _ Coref=0|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=0 +6 podnikají podnikat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 mnohdy mnohdy ADV Db------------- _ 11 advmod _ _ +11 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +13 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 15 det _ _ +15 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 12 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 3 +# text = Movitější zahraniční studenti se nespokojí s bydlením na kolejích. +1 Movitější movitý ADJ AAMP1----2A---- Animacy=Anim|Case=Nom|Degree=Cmp|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 studenti student NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +5 nespokojí spokojit VERB VB-P---3P-NA--- Aspect=Perf|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 s s ADP RR--7---------- AdpType=Prep|Case=Ins 7 case _ _ +7 bydlením bydlení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 obj _ _ +8 na na ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 kolejích kolej NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Ti a mnozí další hledají možnost dlouhodobého pronájmu bytu. +1 Ti ten DET PDMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Dem 5 nsubj _ _ +2 a a CCONJ J^------------- _ 3 cc _ _ +3 mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ _ +4 další další ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 amod _ _ +5 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +7 dlouhodobého dlouhodobý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = A právě na dlouhodobé pronájmy bytů a rodinných domů se specializuje firma Ubytreal. +1 A a CCONJ J^------------- _ 5 cc _ _ +2 právě právě ADV Db------------- _ 5 advmod:emph _ _ +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 dlouhodobé dlouhodobý ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 amod _ _ +5 pronájmy pronájem NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 11 obj _ _ +6 bytů byt NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ _ +7 a a CCONJ J^------------- _ 9 cc _ _ +8 rodinných rodinný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 domů dům NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 conj _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl:pv _ _ +11 specializuje specializovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 11 nsubj _ _ +13 Ubytreal Ubytreal PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 12 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 6 +# text = V databance má pouze byty I. kategorie v Praze a jejím okolí. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 databance databanka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +3 má mít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 pouze pouze ADV Db------------- _ 5 advmod:emph _ _ +5 byty byt NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 3 obj _ _ +6 I I NUM C}------------- NumForm=Roman|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 kategorie kategorie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ _ +11 a a CCONJ J^------------- _ 13 cc _ _ +12 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 okolí okolí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 10 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Výjimku tvoří byty v centru Prahy, kde se do nabídky zařazují i byty s vytápěním wavkami. +1 Výjimku výjimka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ _ +2 tvoří tvořit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 centru centrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 nmod _ _ +6 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kde kde ADV Db------------- PronType=Int,Rel 12 advmod _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 12 expl:pass _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 nabídky nabídka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 12 obl _ _ +12 zařazují zařazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ _ +13 i i CCONJ J^------------- _ 14 advmod:emph _ _ +14 byty byt NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 12 nsubj:pass _ _ +15 s s ADP RR--7---------- AdpType=Prep|Case=Ins 16 case _ _ +16 vytápěním vytápění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 14 nmod _ _ +17 wavkami wavky NOUN NNFP1-----A---- Case=Nom|Foreign=Yes|Gender=Fem|Number=Plur|Polarity=Pos 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Smlouvy podepisujeme jak s pronajímateli, tak s nájemci. +1 Smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 2 obj _ _ +2 podepisujeme podepisovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 jak jak ADV Db------------- PronType=Int,Rel 5 cc _ _ +4 s s ADP RR--7---------- AdpType=Prep|Case=Ins 5 case _ _ +5 pronajímateli pronajímatel NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 tak tak CCONJ J^------------- _ 9 cc _ _ +8 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +9 nájemci nájemce NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Naše databanka je jakousi křižovatkou informací, řekl spolumajitel firmy Michal Vacek. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 databanka databanka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ _ +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 jakousi jakýsi DET PZFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Ind 5 det _ _ +5 křižovatkou křižovatka NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 8 ccomp _ _ +6 informací informace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 5 punct _ _ +8 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 spolumajitel spolumajitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +10 firmy firma NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 9 nmod _ _ +11 Michal Michal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 8 nsubj _ _ +12 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 11 flat _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 8 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 10 +# text = Smlouvy o pronájmu se podepisují minimálně na jeden a maximálně na tři roky. +# newpar +1 Smlouvy smlouva NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 5 nsubj:pass _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +3 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 podepisují podepisovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 minimálně minimálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod:emph _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 8 case _ _ +8 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 5 obl _ _ +9 a a CCONJ J^------------- _ 13 cc _ _ +10 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod:emph _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 tři tři NUM ClXP4---------- Case=Acc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 13 nummod _ _ +13 roky rok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 8 conj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Ve smlouvě je uvedena pevná částka, kterou nájemce za byt platí, a ta se nemění. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 2 case _ _ +2 smlouvě smlouva NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=1 +3 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux:pass _ _ +4 uvedena uvedený ADJ VsQW---XX-AP--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +5 pevná pevný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 částka částka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj:pass _ Coref=1|SpaceAfter=No +7 , , PUNCT Z:------------- _ 12 punct _ _ +8 kterou který DET P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 12 obj _ Coref=1 +9 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 12 nsubj _ _ +10 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ _ +12 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 12 punct _ _ +14 a a CCONJ J^------------- _ 17 cc _ _ +15 ta ten DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 17 nsubj:pass _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl:pass _ _ +17 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 4 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Smlouva se dá po uplynutí lhůty prodloužit, ale pak je třeba upravit právě sumu placenou za byt, vzít v úvahu například inflaci. +1 Smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 3 nsubj:pass _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 3 expl:pass _ _ +3 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 po po ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uplynutí uplynutí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 7 obl _ _ +6 lhůty lhůta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 prodloužit prodloužit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 ale ale CCONJ J^------------- _ 12 cc _ _ +10 pak pak ADV Db------------- _ 12 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +12 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 3 conj _ _ +13 upravit upravit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 12 csubj _ _ +14 právě právě ADV Db------------- _ 15 advmod:emph _ _ +15 sumu suma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +16 placenou placený ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 16 obj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 20 punct _ _ +20 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 13 conj _ _ +21 v v ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 iobj _ _ +23 například například ADV Db------------- _ 24 advmod:emph _ _ +24 inflaci inflace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 20 obj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 13 +# text = Nejlevnější je nezařízená garsoniéra bez telefonu, za pět tisíc korun měsíčně. +# newpar +1 Nejlevnější levný ADJ AAFS1----3A---- Case=Nom|Degree=Sup|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +3 nezařízená zařízený ADJ AAFS1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Neg 4 amod _ _ +4 garsoniéra garsoniéra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 1 nsubj _ _ +5 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 telefonu telefon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 4 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 11 punct _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 pět pět NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +10 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 11 nummod:gov _ _ +11 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 1 obl _ _ +12 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 11 advmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 14 +# text = Nejdražší pronájem, který firma zatím sjednala, byla vila na Klamovce za sedm tisíc dolarů měsíčně. +1 Nejdražší drahý ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 pronájem pronájem NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 10 nsubj _ Coref=2|SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 který který DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 7 obj _ Coref=2 +5 firma firma NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 zatím zatím ADV Db------------- _ 7 advmod _ _ +7 sjednala sjednat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 7 punct _ _ +9 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 10 cop _ _ +10 vila vila NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 Klamovce Klamovka PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 16 case _ _ +14 sedm sedm NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 16 nummod:gov _ _ +15 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 16 nummod:gov _ _ +16 dolarů dolar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +17 měsíčně měsíčně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 16 advmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 15 +# text = Dříve tvořili přes 50 procent naší klientely cizinci, dnes je jejich poměr k domácím zájemcům 1:1, uvedl M. Vacek. +# newpar +1 Dříve brzy ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 2 advmod _ _ +2 tvořili tvořit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 21 ccomp _ _ +3 přes přes ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 50 50 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +5 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 2 obj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ _ +7 klientely klientela NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 cizinci cizinec NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 17 punct _ _ +10 dnes dnes ADV Db------------- _ 17 advmod _ _ +11 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +12 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 13 det _ _ +13 poměr poměr NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 17 nsubj _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 16 case _ _ +15 domácím domácí ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 16 amod _ _ +16 zájemcům zájemce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 13 nmod _ _ +17 1 1 NUM C=------------- NumForm=Digit|NumType=Card 2 conj _ SpaceAfter=No +18 : : PUNCT Z:------------- _ 19 punct _ SpaceAfter=No +19 1 1 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ _ +21 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +22 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 21 nsubj _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 22 punct _ _ +24 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 22 flat _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 21 punct _ _ + +# sent_id = 16 +# text = Je spousta podnikatelů, kteří hledají pro své mimopražské zaměstnance ubytování v Praze. +1 Je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ _ +3 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 nmod _ Coref=3|SpaceAfter=No +4 , , PUNCT Z:------------- _ 6 punct _ _ +5 kteří který DET P4MP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Int,Rel 6 nsubj _ Coref=3 +6 hledají hledat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +7 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +8 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ _ +9 mimopražské mimopražský ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 10 amod _ _ +10 zaměstnance zaměstnanec NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +11 ubytování ubytování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 Praze Praha PROPN NNFS6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 17 +# text = Nájemce může podle svých požadavků dostat nabídku i po telefonu, popřípadě navštívit kancelář společnosti a nabídky dostane vytištěné. +1 Nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +4 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 5 det _ _ +5 požadavků požadavek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 2 obl _ _ +6 dostat dostat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +7 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ _ +8 i i CCONJ J^------------- _ 10 advmod:emph _ _ +9 po po ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 telefonu telefon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 13 punct _ _ +12 popřípadě popřípadě ADV Db------------- _ 13 advmod _ _ +13 navštívit navštívit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 acl _ _ +14 kancelář kancelář NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +15 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 14 nmod _ _ +16 a a CCONJ J^------------- _ 18 cc _ _ +17 nabídky nabídka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 18 obj _ _ +18 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 13 conj _ _ +19 vytištěné vytištěný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 18 +# text = Klient si určí, jak velký byt, v jaké části Prahy, v kterém patře, s jakým vybavením a za kolik si chce pronajmout. +1 Klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 3 nsubj _ Coref=4 +2 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 3 obl _ _ +3 určí určit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 jak jak ADV Db------------- PronType=Int,Rel 6 advmod _ _ +6 velký velký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=4|SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 jaké jaký DET P4FS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Int,Rel 11 det _ _ +11 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 7 dep _ _ +12 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 kterém který DET P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 16 det _ Coref=4 +16 patře patro NOUN NNNS6-----A---1 Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ Coref=4|SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +19 jakým jaký DET P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 20 det _ Coref=4 +20 vybavením vybavení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 11 conj _ _ +21 a a CCONJ J^------------- _ 25 cc _ _ +22 za za ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 26 obj _ _ +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 expl:pv _ _ +25 chce chtít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +26 pronajmout pronajmout VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 25 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 19 +# text = Z databáze pak dostane buď nabídku, která se s jeho požadavky dokonale kryje, nebo nabídku s jednou libovolnou chybou. +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ Coref=5 +3 pak pak ADV Db------------- _ 4 advmod _ _ +4 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 buď buď CCONJ J^------------- _ 6 cc _ _ +6 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ Coref=5|SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 která který DET P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 14 nsubj _ Coref=5 +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl:pv _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ _ +12 požadavky požadavek NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 14 obj _ _ +13 dokonale dokonale ADV Dg-------1A---- Degree=Pos|Polarity=Pos 14 advmod _ _ +14 kryje krýt VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 17 punct _ _ +16 nebo nebo CCONJ J^------------- _ 17 cc _ _ +17 nabídku nabídka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 conj _ _ +18 s s ADP RR--7---------- AdpType=Prep|Case=Ins 21 case _ _ +19 jednou jeden NUM ClFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 21 nummod _ _ +20 libovolnou libovolný ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 21 amod _ _ +21 chybou chyba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 20 +# text = To znamená, že byt je třeba v jiné části Prahy nebo je dražší apod. +1 To ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ _ +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 7 punct _ _ +4 že že SCONJ J,------------- _ 7 mark _ _ +5 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 nsubj _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 cop _ _ +7 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 2 ccomp _ _ +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 části část NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 10 nmod _ _ +12 nebo nebo CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 dražší drahý ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 7 conj _ _ +15 apod apod ADV Db------------8 Abbr=Yes 14 advmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 21 +# text = Pronajímatel může nabídnout byt i telefonicky, ale v každém případě se musí osobně dostavit do kanceláře společnosti k podepsání zprostředkovatelské smlouvy. +# newpar +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 může moci VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 nabídnout nabídnout VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 byt byt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ _ +5 i i CCONJ J^------------- _ 6 advmod:emph _ _ +6 telefonicky telefonicky ADV Dg-------1A---- Degree=Pos|Polarity=Pos 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 ale ale CCONJ J^------------- _ 13 cc _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +10 každém každý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 obl _ _ +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 expl:pv _ _ +13 musí muset VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 osobně osobně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 15 advmod _ _ +15 dostavit dostavit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 13 xcomp _ _ +16 do do ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 kanceláře kancelář NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 15 obl _ _ +18 společnosti společnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 podepsání podepsání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 15 obl _ _ +21 zprostředkovatelské zprostředkovatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ SpaceAfter=No +23 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 22 +# text = Neuzavíráme exkluzivní zprostředkovatelské smlouvy jako jiné realitní firmy, které pro pronajímatele znamenají, že pod hrozbou pokuty ve výši až tří měsíčních nájmů si po určitou dobu nesmí sám najít klienta. +1 Neuzavíráme uzavírat VERB VB-P---1P-NA--- Mood=Ind|Number=Plur|Person=1|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +3 zprostředkovatelské zprostředkovatelský ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 amod _ _ +4 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 1 obj _ Coref=6 +5 jako jako SCONJ J,------------- _ 8 mark _ _ +6 jiné jiný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +7 realitní realitní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 8 amod _ _ +8 firmy firma NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 1 advcl _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 13 punct _ _ +10 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 13 nsubj _ Coref=6 +11 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 pronajímatele pronajímatel NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ _ +13 znamenají znamenat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 8 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 29 punct _ _ +15 že že SCONJ J,------------- _ 29 mark _ _ +16 pod pod ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 hrozbou hrozba NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +18 pokuty pokuta NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 17 nmod _ _ +19 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 20 case _ _ +20 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 18 nmod _ _ +21 až až PART TT------------- _ 24 advmod:emph _ _ +22 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 24 nummod _ _ +23 měsíčních měsíční ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 24 amod _ _ +24 nájmů nájem NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ _ +26 po po ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +27 určitou určitý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 28 amod _ _ +28 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obl _ _ +29 nesmí smět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 13 ccomp _ _ +30 sám sám DET PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Emp 31 xcomp _ _ +31 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 29 xcomp _ _ +32 klienta klient NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 31 iobj _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Podle mého názoru by stejnou pokutu měla platit i kancelář, pokud v dané době není schopna najít nájemce, nebo by neměla exkluzivní smlouvy uzavírat. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +3 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 obl _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +5 stejnou stejný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 pokutu pokuta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 obj _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +8 platit platit VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +9 i i CCONJ J^------------- _ 10 advmod:emph _ _ +10 kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 7 nsubj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 pokud pokud SCONJ J,------------- _ 17 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 dané daný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 15 amod _ _ +15 době doba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 17 obl _ _ +16 není být AUX VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ _ +17 schopna schopný ADJ ACQW------A---- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Variant=Short 7 advcl _ _ +18 najít najít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 17 xcomp _ _ +19 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 18 obj _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 23 punct _ _ +21 nebo nebo CCONJ J^------------- _ 23 cc _ _ +22 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +23 neměla mít VERB VpQW---XR-NA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 7 conj _ _ +24 exkluzivní exkluzivní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 25 amod _ _ +25 smlouvy smlouva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 26 obj _ _ +26 uzavírat uzavírat VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 23 xcomp _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 24 +# text = Naše zprostředkovatelská smlouva pronajímatele ani nájemce nijak nezavazuje. +1 Naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 3 det _ _ +2 zprostředkovatelská zprostředkovatelský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +4 pronajímatele pronajímatel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 8 obj _ _ +5 ani ani CCONJ J^------------- _ 6 cc _ _ +6 nájemce nájemce NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 conj _ _ +7 nijak nijak ADV Db------------- PronType=Neg 8 advmod _ _ +8 nezavazuje zavazovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 25 +# text = Po jejím podpisu se jeho nabídka okamžitě dostává do databáze, vysvětlil M. Vacek. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jejím jeho DET PSZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ _ +3 podpisu podpis NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 8 obl _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl:pv _ _ +5 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 6 det _ _ +6 nabídka nabídka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nsubj _ _ +7 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 8 advmod _ _ +8 dostává dostávat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 ccomp _ _ +9 do do ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 obl _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 8 punct _ _ +12 vysvětlil vysvětlit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 12 nsubj _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 13 flat _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 26 +# text = Za uzavření smlouvy a zařazení do databáze klient neplatí. +1 Za za ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 uzavření uzavření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +3 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 2 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 zařazení zařazení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 2 conj _ _ +6 do do ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 databáze databáze NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 klient klient NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +9 neplatí platit VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 27 +# text = V případě, že díky Ubytrealu jako zprostředkovateli uzavře nájemce smlouvu na dlouhodobý pronájem bytu, zaplatí této společnosti odměnu ve výši 70 procent měsíčního nájmu. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 díky díky ADP RR--3---------- AdpType=Prep|Case=Dat 6 case _ _ +6 Ubytrealu Ubytreal PROPN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 9 obl _ _ +7 jako jako SCONJ J,------------- _ 8 mark _ _ +8 zprostředkovateli zprostředkovatel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +9 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 acl _ _ +10 nájemce nájemce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 9 nsubj _ _ +11 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ _ +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 dlouhodobý dlouhodobý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 14 amod _ _ +14 pronájem pronájem NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ _ +15 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 9 punct _ _ +17 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +18 této tento DET PDFS3---------- Case=Dat|Gender=Fem|Number=Sing|PronType=Dem 19 det _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Number=Sing|Polarity=Pos 17 iobj _ _ +20 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 17 obj _ _ +21 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 22 case _ _ +22 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ _ +23 70 70 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod:gov _ _ +24 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 22 nmod _ _ +25 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 26 amod _ _ +26 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 24 nmod _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 17 punct _ _ + +# sent_id = 28 +# text = Pokud přičiněním Ubytrealu uzavře smlouvu o dlouhodobém pronájmu pronajímatel bytu, zaplatí odměnu ve výši 100 procent měsíčního nájmu. +1 Pokud pokud SCONJ J,------------- _ 4 mark _ _ +2 přičiněním přičinění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Ubytrealu Ubytreal PROPN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 uzavře uzavřít VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 advcl _ _ +5 smlouvu smlouva NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 obj _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 8 amod _ _ +8 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 nmod _ _ +9 pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +10 bytu byt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 zaplatí zaplatit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +13 odměnu odměna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 obj _ _ +14 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 15 case _ _ +15 výši výše NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 nmod _ _ +16 100 100 NUM C=------------- NumForm=Digit|NumType=Card 17 nummod:gov _ _ +17 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Number=Plur|Polarity=Pos 15 nmod _ _ +18 měsíčního měsíční ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 19 amod _ _ +19 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 29 +# text = Pronajímatel platí víc, protože je to výdělečná činnost. +1 Pronajímatel pronajímatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +2 platí platit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 víc hodně ADV Dg-------2A---1 Degree=Cmp|Polarity=Pos 2 obj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 9 punct _ _ +5 protože protože SCONJ J,------------- _ 9 mark _ _ +6 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +7 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 9 nsubj _ _ +8 výdělečná výdělečný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 9 amod _ _ +9 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 advcl _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 30 +# text = Naše služby ovšem nekončí podpisem smlouvy o dlouhodobém pronájmu a vyinkasováním odměny. +1 Naše můj DET PSHP1-P1------- Case=Nom|Gender=Fem,Neut|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 služby služba NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 4 nsubj _ _ +3 ovšem ovšem CCONJ J^------------- _ 4 cc _ _ +4 nekončí končit VERB VB-P---3P-NA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 podpisem podpis NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ _ +6 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 dlouhodobém dlouhodobý ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 pronájmu pronájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +10 a a CCONJ J^------------- _ 11 cc _ _ +11 vyinkasováním vyinkasování NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 5 conj _ _ +12 odměny odměna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 31 +# text = Svým klientům poskytujeme po celou dobu nájmu právní servis, uvedl M. Vacek. +1 Svým svůj DET P8XP3---------- Case=Dat|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 2 det _ _ +2 klientům klient NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Plur|Polarity=Pos 3 iobj _ _ +3 poskytujeme poskytovat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ _ +4 po po ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 celou celý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 6 amod _ _ +6 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ _ +7 nájmu nájem NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ _ +8 právní právní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 servis servis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 3 punct _ _ +11 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +12 M M PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Polarity=Pos 11 nsubj _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 12 punct _ _ +14 Vacek Vacek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 12 flat _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 11 punct _ _ + diff --git a/demo/train/all.out.conllu b/demo/train/all.out.conllu new file mode 100644 index 00000000..593fc91b --- /dev/null +++ b/demo/train/all.out.conllu @@ -0,0 +1,3712 @@ +# sent_id = 1 +# text = Celní unie v ohrožení +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ Coref=1 +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 ohrožení ohrožení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 2 nmod _ _ + +# sent_id = 2 +# text = Nová striktní omezení vlády SR proti česklým exportérům +1 Nová nový ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +2 striktní striktní ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 omezení omezení NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ Coref=13 +4 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ Coref=8 +5 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 4 nmod _ Coref=4 +6 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 8 case _ _ +7 česklým česklý ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 8 amod _ _ +8 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 3 dep _ Coref=14 + +# sent_id = 3 +# text = Z téměř tří desítek smluv upravujících vztahy mezi oběma subjekty celního soustátí jsou okamžitě vypověditelné všechny... +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 téměř téměř ADV Db------------- _ 4 advmod:emph _ _ +3 tří tři NUM ClXP2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 4 nummod _ _ +4 desítek desítka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 15 nmod _ Coref=2 +5 smluv smlouva NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +6 upravujících upravující ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 5 amod _ _ +7 vztahy vztah NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ Drop_coref=0 +8 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 10 case _ _ +9 oběma oba NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 10 nummod _ _ +10 subjekty subjekt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ Coref=0 +11 celního celní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 12 amod _ _ +12 soustátí soustátí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 10 nmod _ Coref=1 +13 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 cop _ _ +14 okamžitě okamžitě ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 vypověditelné vypověditelný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 0 root _ _ +16 všechny všechen PRON PLFP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Tot 15 nsubj _ Coref=2|SpaceAfter=No +17 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 15 punct _ _ + +# sent_id = 4 +# text = Až na jednu jedinou, tu hlavní, která proklamativně zakotvuje existenci Česko - Slovenské celní unie, a která má výpovědní lhůtu jeden rok. +1 Až až PART TT------------- _ 3 advmod:emph _ _ +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 jednu jeden NUM ClFS4---------- Case=Acc|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 0 root _ _ +4 jedinou jediný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 4 punct _ Drop_coref=3 +6 tu ten PRON PDFS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Dem 4 dobj _ _ +7 hlavní hlavní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 11 nsubj _ Coref=3 +10 proklamativně proklamativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 11 advmod _ _ +11 zakotvuje zakotvovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ _ +12 existenci existence NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 dobj _ _ +13 Česko Český ADJ A2--------A---- Hyph=Yes|NameType=Oth|Negative=Pos 17 amod _ Coref=5 +14 - - PUNCT Z:------------- _ 13 punct _ _ +15 Slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ Coref=4 +16 celní celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +17 unie unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ Coref=1|SpaceAfter=No +18 , , PUNCT Z:------------- _ 11 punct _ _ +19 a a CONJ J^------------- _ 11 cc _ _ +20 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 21 nsubj _ Coref=3 +21 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 conj _ _ +22 výpovědní výpovědní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 lhůtu lhůta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 21 dobj _ _ +24 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 25 nummod _ _ +25 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ Coref=7|SpaceAfter=No +26 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 5 +# text = V praxi to znamená, že i kdyby hnedka zítra řekla ČR, že smlouva je pasé, přesto by se teprve v březnu příštího roku mohla legislativně zbavit svých závazků vůči partnerovi z bývalé ČSFR. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +3 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 4 nsubj _ _ +4 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 12 punct _ _ +6 že že SCONJ J,------------- _ 12 mark _ _ +7 i i CONJ J^------------- _ 12 cc _ _ +8-9 kdyby _ _ _ _ _ _ _ _ +8 když když SCONJ J,------------- _ 12 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 12 aux _ _ +10 hnedka hnedka ADV Db------------- _ 12 advmod _ _ +11 zítra zítra ADV Db------------- _ 12 advmod _ _ +12 řekla říci VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 4 ccomp _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 iobj _ Coref=5|SpaceAfter=No +14 , , PUNCT Z:------------- _ 18 punct _ _ +15 že že SCONJ J,------------- _ 18 mark _ _ +16 smlouva smlouva NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 18 nsubj _ Coref=3 +17 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 cop _ _ +18 pasé pasé ADJ AAXXX----1A---- Degree=Pos|Negative=Pos 12 ccomp _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 12 punct _ _ +20 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 12 cc _ _ +21 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 28 aux _ _ +22 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 30 expl _ _ +23 teprve teprve ADV Db------------- _ 25 advmod:emph _ _ +24 v v ADP RR--6---------- AdpType=Prep|Case=Loc 25 case _ _ +25 březnu březen NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +26 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 27 amod _ _ +27 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 25 nmod _ _ +28 mohla moci VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 12 conj _ _ +29 legislativně legislativně ADV Dg-------1A---- Degree=Pos|Negative=Pos 30 advmod _ _ +30 zbavit zbavit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 28 xcomp _ Drop_coref=5 +31 svých svůj DET P8XP2---------- Case=Gen|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 32 det _ Coref=5 +32 závazků závazek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 30 dobj _ _ +33 vůči vůči ADP RR--3---------- AdpType=Prep|Case=Dat 34 case _ _ +34 partnerovi partner NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 32 nmod _ Coref=4 +35 z z ADP RR--2---------- AdpType=Prep|Case=Gen 37 case _ _ +36 bývalé bývalý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 ČSFR ČSFR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 32 nmod _ SpaceAfter=No +38 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 6 +# text = Kazimír Jánoška +1 Kazimír Kazimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 0 root _ _ +2 Jánoška Jánoška PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ _ + +# sent_id = 7 +# text = Na pozadí vývoje v posledních dnech a týdnech se však zdá, že litera výše uvedené mezinárodní smlouvy mezi ČR a SR bude mít co nevidět pouze sílu psaného slova a ničeho jiného. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 pozadí pozadí NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 11 nmod _ _ +3 vývoje vývoj NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 posledních poslední ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 dnech den NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ _ +7 a a CONJ J^------------- _ 6 cc _ _ +8 týdnech týden NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 6 conj _ _ +9 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl _ _ +10 však však CONJ J^------------- _ 11 cc _ _ +11 zdá zdát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 24 punct _ _ +13 že že SCONJ J,------------- _ 24 mark _ _ +14 litera litera NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 24 nsubj _ _ +15 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 16 advmod _ _ +16 uvedené uvedený ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 mezinárodní mezinárodní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 smlouvy smlouva NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ Coref=3|Drop_coref=6 +19 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +20 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 18 nmod _ Coref=5 +21 a a CONJ J^------------- _ 20 cc _ Coref=6 +22 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 20 conj _ Coref=4 +23 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 24 aux _ _ +24 mít mít VERB Vf--------A---- Negative=Pos|VerbForm=Inf 11 csubj _ _ +25 co co ADV Db------------- _ 26 advmod _ _ +26 nevidět vidět VERB Vf--------N---- Negative=Neg|VerbForm=Inf 24 ccomp _ _ +27 pouze pouze ADV Db------------- _ 28 advmod:emph _ _ +28 sílu síla NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ _ +29 psaného psaný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 30 amod _ _ +30 slova slovo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 28 nmod _ _ +31 a a CONJ J^------------- _ 28 cc _ _ +32 ničeho nic PRON PW--2---------- Case=Gen|Negative=Neg|PronType=Neg 28 conj _ _ +33 jiného jiný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 32 amod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 8 +# text = Celní unie bude sice existovat na papíře ještě dalších dvanáct měsíců (a třeba i déle), ale v praxi dostanou vzájemné vztahy punc tvrdosti mezinárodního obchodu. +1 Celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 unie unie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ Coref=1 +3 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 5 aux _ _ +4 sice sice ADV Db------------- _ 5 cc _ _ +5 existovat existovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 papíře papír NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +8 ještě ještě ADV Db------------- _ 10 advmod:emph _ _ +9 dalších další ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 dvanáct dvanáct NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 11 nummod:gov _ _ +11 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 advmod _ Coref=7 +12 ( ( PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +13 a a CONJ J^------------- _ 5 cc _ _ +14 třeba třeba ADV Db------------- _ 16 advmod:emph _ _ +15 i i CONJ J^------------- _ 16 advmod:emph _ _ +16 déle dlouho ADV Dg-------2A---- Degree=Cmp|Negative=Pos 5 conj _ SpaceAfter=No +17 ) ) PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 5 punct _ _ +19 ale ale CONJ J^------------- _ 5 cc _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ _ +22 dostanou dostat VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ _ +23 vzájemné vzájemný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 vztahy vztah NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 22 nsubj _ Coref=0 +25 punc punc NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 22 dobj _ _ +26 tvrdosti tvrdost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 25 nmod _ _ +27 mezinárodního mezinárodní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 9 +# text = Poroste administrativa +1 Poroste růst VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 administrativa administrativa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 1 nsubj _ _ + +# sent_id = 10 +# text = Jistotu v tomto směru dávají nejnovější kroky vlády SR, která se rozhodla zavést již před časem avizovanou desetiprocentní dovozní přirážku na zboží zahraniční provinencie. +1 Jistotu jistota NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 det _ _ +4 směru směr NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +5 dávají dávat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 nejnovější nový ADJ AAIP1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 7 amod _ _ +7 kroky krok NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +8 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ Coref=8 +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ Coref=4|SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 13 nsubj _ Coref=8 +12 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 13 expl _ _ +13 rozhodla rozhodnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 8 acl _ _ +14 zavést zavést VERB Vf--------A---- Negative=Pos|VerbForm=Inf 13 xcomp _ Drop_coref=8 +15 již již ADV Db------------- _ 17 advmod:emph _ _ +16 před před ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 časem čas NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 14 nmod _ _ +18 avizovanou avizovaný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +19 desetiprocentní desetiprocentní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +20 dovozní dovozní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 přirážku přirážka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 14 dobj _ _ +22 na na ADP RR--4---------- AdpType=Prep|Case=Acc 23 case _ _ +23 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 21 nmod _ _ +24 zahraniční zahraniční_,a ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 25 amod _ _ +25 provinencie provinencie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Byť má na tento krok určité právo (jako člen GATT), v daném okamžiku však vyznívá jako tvrdé politické rozhodnutí vlády, která se snaží velice rezolutními administrativními kroky zredukovat mnohamilionové pasívum v obchodní výměně s ČR. +1 Byť byť SCONJ J,------------- _ 2 mark _ _ +2 má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 advcl _ Drop_coref=8 +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +4 tento tento DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 5 det _ _ +5 krok krok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=8|Drop_coref=8 +6 určité určitý ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 právo právo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 2 dobj _ Drop_coref=8 +8 ( ( PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +9 jako jako SCONJ J,------------- _ 10 mark _ _ +10 člen člen NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 xcomp _ _ +11 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 10 nmod _ Coref=10|SpaceAfter=No +12 ) ) PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 2 punct _ _ +14 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +15 daném daný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 16 amod _ _ +16 okamžiku okamžik NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ _ +17 však však CONJ J^------------- _ 18 cc _ _ +18 vyznívá vyznívat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=9 +19 jako jako SCONJ J,------------- _ 22 mark _ _ +20 tvrdé tvrdý ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +21 politické politický ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 22 amod _ _ +22 rozhodnutí rozhodnutí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 18 advcl _ Coref=8 +23 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ Coref=8|SpaceAfter=No +24 , , PUNCT Z:------------- _ 27 punct _ _ +25 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 27 nsubj _ Coref=8 +26 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 27 expl _ _ +27 snaží snažit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 22 acl _ _ +28 velice velice ADV Db------------- _ 29 advmod _ _ +29 rezolutními rezolutní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +30 administrativními administrativní ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 31 amod _ _ +31 kroky krok NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 32 nmod _ _ +32 zredukovat zredukovat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 27 xcomp _ Drop_coref=8 +33 mnohamilionové mnohomiliónový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 34 amod _ _ +34 pasívum pasívum_,x NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 32 dobj _ _ +35 v v ADP RR--6---------- AdpType=Prep|Case=Loc 37 case _ _ +36 obchodní obchodní ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 37 amod _ _ +37 výměně výměna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 34 nmod _ _ +38 s s ADP RR--7---------- AdpType=Prep|Case=Ins 39 case _ _ +39 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 37 nmod _ Coref=5|SpaceAfter=No +40 . . PUNCT Z:------------- _ 18 punct _ _ + +# sent_id = 12 +# text = Podle regulí GATT lze toto opatření přijmout maximálně na období šesti měsíců a pouze u vybraných položek. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 regulí regule NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 nmod _ _ +3 GATT GATT NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 2 nmod _ Coref=10 +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=11 +5 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 6 det _ _ +6 opatření opatření NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ Coref=9 +7 přijmout přijmout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 4 csubj _ _ +8 maximálně maximálně ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod:emph _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 období období NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +11 šesti šest NUM Cn-P2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card 12 nummod _ _ +12 měsíců měsíc NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 10 nmod _ _ +13 a a CONJ J^------------- _ 10 cc _ Drop_coref=11 +14 pouze pouze ADV Db------------- _ 17 advmod:emph _ _ +15 u u ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +16 vybraných vybraný ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +17 položek položka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 13 +# text = Tato skutečnost však nic nemění na faktu, že nadcházející týdny a měsíce budou znamenat neúměrně zvýšené nároky na administrativu podnikatelů při rozvíjení jejich obchodních aktivit se slovenskými partnery. +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 skutečnost skutečnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ Coref=11 +3 však však CONJ J^------------- _ 5 cc _ _ +4 nic nic PRON PW--4---------- Case=Acc|Negative=Neg|PronType=Neg 5 dobj _ _ +5 nemění měnit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 faktu fakt NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 15 punct _ _ +9 že že SCONJ J,------------- _ 15 mark _ _ +10 nadcházející nadcházející ADJ AGIP1-----A---- Animacy=Inan|Aspect=Imp|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 11 amod _ _ +11 týdny týden NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ _ +12 a a CONJ J^------------- _ 11 cc _ _ +13 měsíce měsíc NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 budou být AUX VB-P---3F-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 15 aux _ _ +15 znamenat znamenat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +16 neúměrně úměrně ADV Dg-------1N---- Degree=Pos|Negative=Neg 17 advmod _ _ +17 zvýšené zvýšený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +18 nároky nárok NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +19 na na ADP RR--4---------- AdpType=Prep|Case=Acc 20 case _ _ +20 administrativu administrativa NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +21 podnikatelů podnikatel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ Coref=12 +22 při při ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +23 rozvíjení rozvíjení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +24 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 26 det _ Coref=12 +25 obchodních obchodní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 26 amod _ _ +26 aktivit aktivita NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 23 nmod _ _ +27 se s ADP RV--7---------- AdpType=Voc|Case=Ins 29 case _ _ +28 slovenskými slovenský ADJ AAMP7----1A---- Animacy=Anim|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 29 amod _ Coref=4 +29 partnery partner NOUN NNMP7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 26 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 14 +# text = Pravidla pro příští týdny +1 Pravidla pravidlo NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 0 root _ _ +2 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +3 příští příští ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 amod _ _ +4 týdny týden NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ + +# sent_id = 15 +# text = Již několik dnů je všeobecně známo, že ochranářská opatření slovenské vlády proti českým exportérům se dotýkají zejména oblasti obchodu s potravinami a zemědělskými produkty. +1 Již již ADV Db------------- _ 2 advmod:emph _ _ +2 několik několik DET Ca--4---------- Case=Acc|NumType=Card|PronType=Dem,Ind 3 det:numgov _ _ +3 dnů den NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 advmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +5 všeobecně všeobecně ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +6 známo známý ADJ ACNS------A---- Gender=Neut|Negative=Pos|Number=Sing|Variant=Short 0 root _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 17 punct _ _ +8 že že SCONJ J,------------- _ 17 mark _ _ +9 ochranářská ochranářský ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 10 amod _ _ +10 opatření opatření NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 17 nsubj _ Coref=13 +11 slovenské slovenský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ Coref=4 +12 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=8 +13 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +14 českým český ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ Coref=5 +15 exportérům exportér NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ Coref=14 +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 dotýkají dotýkat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 csubj _ _ +18 zejména zejména ADV Db------------- _ 19 advmod:emph _ _ +19 oblasti oblast NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 17 dobj _ _ +20 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 s s ADP RR--7---------- AdpType=Prep|Case=Ins 22 case _ _ +22 potravinami potravina NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 20 nmod _ Coref=16 +23 a a CONJ J^------------- _ 19 cc _ _ +24 zemědělskými zemědělský ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 produkty produkt NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 19 conj _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 16 +# text = Našemu listu se podařilo získat od představitelů slovenského Úřadu pro normalizaci, metrologii a zkušebnictví (ÚNMS SR) informaci o technickém zajištění propouštění potravinářských výrobků do SR. +1 Našemu můj DET PSZS3-P1------- Case=Dat|Gender=Masc,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 2 det _ _ +2 listu list NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 dobj _ Coref=15 +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 podařilo podařit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ Drop_coref=15 +6 od od ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 představitelů představitel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 iobj _ _ +8 slovenského slovenský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ Coref=4 +9 Úřadu úřad NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +10 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 normalizaci normalizace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 11 punct _ _ +13 metrologii metrologie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 conj _ _ +14 a a CONJ J^------------- _ 11 cc _ _ +15 zkušebnictví zkušebnictví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 11 conj _ _ +16 ( ( PUNCT Z:------------- _ 9 punct _ Coref=18|SpaceAfter=No +17 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 9 dep _ _ +18 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 17 nmod _ Coref=4|SpaceAfter=No +19 ) ) PUNCT Z:------------- _ 9 punct _ _ +20 informaci informace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +21 o o ADP RR--6---------- AdpType=Prep|Case=Loc 23 case _ _ +22 technickém technický ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 23 amod _ _ +23 zajištění zajištění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 20 nmod _ _ +24 propouštění propouštění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 23 nmod _ _ +25 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 nmod _ Coref=16 +27 do do ADP RR--2---------- AdpType=Prep|Case=Gen 28 case _ _ +28 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 24 nmod _ Coref=4|SpaceAfter=No +29 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 17 +# text = Z rozhodujících opatření, která by měla plně vstoupit v platnost po 1. dubnu vyjímáme: +1 Z z ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 rozhodujících rozhodující ADJ AGNP2-----A---- Aspect=Imp|Case=Gen|Gender=Neut|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 3 amod _ _ +3 opatření opatření NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 16 nmod _ Coref=13|SpaceAfter=No +4 , , PUNCT Z:------------- _ 7 punct _ _ +5 která který PRON P4NP1---------- Case=Nom|Gender=Neut|Number=Plur|PronType=Int,Rel 7 nsubj _ Coref=13 +6 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 7 aux _ _ +7 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 3 acl _ _ +8 plně plně ADV Dg-------1A---- Degree=Pos|Negative=Pos 9 advmod _ _ +9 vstoupit vstoupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 7 xcomp _ _ +10 v v ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 platnost platnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Drop_coref=13 +12 po po ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +13 1 1 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ +15 dubnu duben NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=19 +16 vyjímáme vyjímat VERB VB-P---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=15|SpaceAfter=No +17 : : PUNCT Z:------------- _ 16 punct _ _ + +# sent_id = 18 +# text = 1) +1 1 1 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 19 +# text = Do 31. března platí v plném rozsahu postup podle dohody ÚNMZ ČR a ÚNMS SR, na jejímž základě český výrobce (slovenský dovozce) získá na základě schválení české zkušebny a rozhodnutí Ministerstva zdravotnictví SR na ÚNMS SR potvrzení o platnosti rozhodnutí i na území SR. +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 31 31 NUM C=------------- NumForm=Digit|NumType=Card 4 nummod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +5 platí platit VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 plném plný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 rozsahu rozsah NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +9 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +10 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 dohody dohoda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ Drop_coref=17 +12 ÚNMZ ÚNMZ PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 11 nmod _ _ +13 ČR ČR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 12 nmod _ Coref=5 +14 a a CONJ J^------------- _ 12 cc _ Coref=17 +15 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 12 conj _ Coref=18 +16 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 15 nmod _ Coref=4|SpaceAfter=No +17 , , PUNCT Z:------------- _ 27 punct _ _ +18 na na ADP RR--6---------- AdpType=Prep|Case=Loc 20 case _ _ +19 jejímž jenž DET P1ZS6FS3------- Case=Loc|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Rel 20 det _ Coref=17 +20 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 27 nmod _ _ +21 český český ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 22 amod _ Coref=5 +22 výrobce výrobce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 27 nsubj _ _ +23 ( ( PUNCT Z:------------- _ 25 punct _ SpaceAfter=No +24 slovenský slovenský ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ Coref=4 +25 dovozce dovozce NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 22 appos _ SpaceAfter=No +26 ) ) PUNCT Z:------------- _ 25 punct _ _ +27 získá získat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 11 acl _ _ +28 na na ADP RR--6---------- AdpType=Prep|Case=Loc 30 case _ _ +29 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 28 mwe _ _ +30 schválení schválení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +31 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 32 amod _ Coref=5 +32 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 30 nmod _ Coref=20 +33 a a CONJ J^------------- _ 30 cc _ _ +34 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 30 conj _ _ +35 Ministerstva ministerstvo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 34 nmod _ _ +36 zdravotnictví zdravotnictví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 35 nmod _ _ +37 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 35 nmod _ Coref=4 +38 na na ADP RR--6---------- AdpType=Prep|Case=Loc 39 case _ _ +39 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 35 nmod _ Coref=18 +40 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 39 nmod _ Coref=4 +41 potvrzení potvrzení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 27 dobj _ _ +42 o o ADP RR--6---------- AdpType=Prep|Case=Loc 43 case _ _ +43 platnosti platnost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 41 nmod _ _ +44 rozhodnutí rozhodnutí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 43 nmod _ _ +45 i i CONJ J^------------- _ 44 cc _ _ +46 na na ADP RR--6---------- AdpType=Prep|Case=Loc 47 case _ _ +47 území území NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 44 conj _ _ +48 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 47 nmod _ Coref=4|SpaceAfter=No +49 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 20 +# text = 2) Od 1. dubna nebude ÚNMS SR rozhodnutí české zkušebny potvrzovat. +1 2 2 NUM C=------------- NumForm=Digit|NumType=Card 13 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 13 punct _ _ +3 Od od ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +4 1 1 NUM C=------------- NumForm=Digit|NumType=Card 6 nummod _ SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ +6 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ Coref=19 +7 nebude být AUX VB-S---3F-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 13 aux _ _ +8 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 13 nsubj _ Coref=18 +9 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 8 nmod _ Coref=4 +10 rozhodnutí rozhodnutí NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 13 dobj _ _ +11 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ Coref=5 +12 zkušebny zkušebna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=20 +13 potvrzovat potvrzovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ Coref=21|SpaceAfter=No +14 . . PUNCT Z:------------- _ 13 punct _ _ + +# sent_id = 21 +# text = Tato funkce přejde na příslušnou slovenskou zkušebnu (SPPI - Slovenskou potravinářskou a zemědělskou inspekci), která bude vydávat na základě dodaných podkladů příslušné certifikáty. +1 Tato tento DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 2 det _ _ +2 funkce funkce NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ Coref=21 +3 přejde přejít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +5 příslušnou příslušný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +6 slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ Coref=4 +7 zkušebnu zkušebna NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +8 ( ( PUNCT Z:------------- _ 9 punct _ Coref=22|SpaceAfter=No +9 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 7 appos _ _ +10 - - PUNCT Z:------------- _ 9 punct _ _ +11 Slovenskou slovenský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ Coref=4 +12 potravinářskou potravinářský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 zemědělskou zemědělský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 conj _ _ +15 inspekci inspekce NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 conj _ SpaceAfter=No +16 ) ) PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ Coref=22 +19 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +20 vydávat vydávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 acl _ _ +21 na na ADP RR--6---------- AdpType=Prep|Case=Loc 24 case _ _ +22 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 21 mwe _ _ +23 dodaných dodaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ _ +24 podkladů podklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +25 příslušné příslušný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 certifikáty certifikát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 20 dobj _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 22 +# text = 3) +1 3 3 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 23 +# text = Dosud vydaná rozhodnutí z doby trvání federace platí a toto zboží lze do SR dodávat i nadále, avšak po vydání příslušného certifikátu SPPI. +1 Dosud dosud ADV Db------------- _ 2 advmod _ _ +2 vydaná vydaný ADJ AANP1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 3 amod _ _ +3 rozhodnutí rozhodnutí NOUN NNNP1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Plur 8 nsubj _ _ +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 doby doba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 trvání trvání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 5 nmod _ _ +7 federace federace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +8 platí platit VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +9 a a CONJ J^------------- _ 8 cc _ _ +10 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 11 det _ _ +11 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 15 dobj _ _ +12 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 conj _ Drop_coref=23 +13 do do ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +14 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 11 nmod _ Coref=4 +15 dodávat dodávat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 12 csubj _ _ +16 i i CONJ J^------------- _ 17 advmod:emph _ _ +17 nadále nadále ADV Db------------- _ 12 advmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 12 punct _ _ +19 avšak avšak CONJ J^------------- _ 12 cc _ Drop_coref=23 +20 po po ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 vydání vydání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 12 conj _ Coref=24 +22 příslušného příslušný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 23 amod _ _ +23 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 21 nmod _ _ +24 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 23 nmod _ Coref=22|SpaceAfter=No +25 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 24 +# text = 4) +1 4 4 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 25 +# text = Usnesením vlády SR je koordinací všech akcí souvisejících se zajištěním certifikace dovážených potravinářských výrobků pověřen ÚNMS SR. +1 Usnesením usnesení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 0 root _ Coref=25 +2 vlády vláda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ Coref=8 +3 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 2 nmod _ Coref=4 +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 cop _ _ +5 koordinací koordinace NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 15 dobj _ _ +6 všech všechen PRON PLXP2---------- Case=Gen|Number=Plur|PronType=Tot 7 nmod _ _ +7 akcí akce NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ _ +8 souvisejících související ADJ AGFP2-----A---- Aspect=Imp|Case=Gen|Gender=Fem|Negative=Pos|Number=Plur|Tense=Pres|VerbForm=Part|Voice=Act 7 amod _ _ +9 se s ADP RV--7---------- AdpType=Voc|Case=Ins 10 case _ _ +10 zajištěním zajištění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 8 dobj _ _ +11 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=24 +12 dovážených dovážený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +13 potravinářských potravinářský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 11 nmod _ Coref=16 +15 pověřen pověřit VERB VsYS---XX-AP--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 1 csubj _ _ +16 ÚNMS ÚNMS PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Foreign|Gender=Masc|NameType=Com|Negative=Pos 15 nsubjpass _ Coref=18 +17 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 16 nmod _ Coref=4|SpaceAfter=No +18 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 26 +# text = Jedná se o usnesení číslo 64 ze dne 1. února 1994. +1 Jedná jednat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 expl _ _ +3 o o ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 usnesení usnesení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ Coref=25 +5 číslo číslo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +6 64 64 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ _ +7 ze z ADP RV--2---------- AdpType=Voc|Case=Gen 8 case _ _ +8 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 února únor NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +12 1994 1994 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +13 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 27 +# text = Na tomto úřadě lze získat i potřebné informace. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 tomto tento DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 3 det _ _ +3 úřadě úřad NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=18 +4 lze lze VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=26 +5 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 csubj _ Drop_coref=26 +6 i i CONJ J^------------- _ 8 advmod:emph _ _ +7 potřebné potřebný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 informace informace NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 28 +# text = 5) Slovenská celní správa bude vyžadovat u každé jednotlivé dodávky originální rozhodnutí či certifikátu. +1 5 5 NUM C=------------- NumForm=Digit|NumType=Card 7 nmod _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 7 punct _ _ +3 Slovenská slovenský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ Coref=4 +4 celní celní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 správa správa NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 7 nsubj _ _ +6 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 7 aux _ _ +7 vyžadovat vyžadovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ Coref=27 +8 u u ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +9 každé každý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +10 jednotlivé jednotlivý ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ _ +11 dodávky dodávka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +12 originální originální ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 13 amod _ _ +13 rozhodnutí rozhodnutí NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 7 dobj _ _ +14 či či CONJ J^------------- _ 13 cc _ _ +15 certifikátu certifikát NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 conj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 29 +# text = Tento postup si vyžádá v praxi zhotovování ověřených kopií. +1 Tento tento DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 2 det _ _ +2 postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ Coref=27 +3 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 vyžádá vyžádat VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +6 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +7 zhotovování zhotovování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 dobj _ _ +8 ověřených ověřený ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 9 amod _ _ +9 kopií kopie NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 30 +# text = 6) +1 6 6 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 31 +# text = Povinnost certifikace těchto výrobků vznikla na základě novelizace paragrafu 47 celního zákona 618/1992 SB., novelizovaného v zákoně 325 článek 8 ve znění zákona číslo 165/1993 Sb. +1 Povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +2 certifikace certifikace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 1 nmod _ Coref=24 +3 těchto tento DET PDXP2---------- Case=Gen|Number=Plur|PronType=Dem 4 det _ _ +4 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ Coref=16 +5 vznikla vzniknout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 6 mwe _ _ +8 novelizace novelizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +9 paragrafu paragraf NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +10 47 47 NUM C=------------- NumForm=Digit|NumType=Card 9 nummod _ _ +11 celního celní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +13 618 618 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +14 / / PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +15 1992 1992 NUM C=------------- NumForm=Digit|NumType=Card 13 compound _ _ +16 SB Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 12 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 16 punct _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 19 punct _ _ +19 novelizovaného novelizovaný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +20 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +21 zákoně zákon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +22 325 325 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod _ _ +23 článek článek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 8 8 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ _ +25 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 26 case _ _ +26 znění znění NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +27 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +28 číslo číslo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 27 nmod _ _ +29 165 165 NUM C=------------- NumForm=Digit|NumType=Card 28 nummod _ SpaceAfter=No +30 / / PUNCT Z:------------- _ 31 punct _ SpaceAfter=No +31 1993 1993 NUM C=------------- NumForm=Digit|NumType=Card 29 compound _ _ +32 Sb Sb NOUN NNFXX-----A---8 Abbr=Yes|Gender=Fem|Negative=Pos 27 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 32 +# text = 7) +1 7 7 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 33 +# text = Ve všech případech vzniká od 1. dubna povinnost, aby při přechodu slovenských hranic byla dodávka vybavena originálem nebo ověřenou kopií certifikátu SPPI. +1 Ve v ADP RV--6---------- AdpType=Voc|Case=Loc 3 case _ _ +2 všech všechen PRON PLXP6---------- Case=Loc|Number=Plur|PronType=Tot 3 nmod _ _ +3 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 4 nmod _ _ +4 vzniká vznikat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=28 +5 od od ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +6 1 1 NUM C=------------- NumForm=Digit|NumType=Card 8 nummod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ +8 dubna duben NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=19 +9 povinnost povinnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ Drop_coref=28|SpaceAfter=No +10 , , PUNCT Z:------------- _ 19 punct _ _ +11-12 aby _ _ _ _ _ _ _ _ +11 aby aby SCONJ J,------------- _ 19 mark _ _ +12 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 19 aux _ _ +13 při při ADP RR--6---------- AdpType=Prep|Case=Loc 14 case _ _ +14 přechodu přechod NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +15 slovenských slovenský ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ Coref=4 +16 hranic hranice NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +17 byla být AUX VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 19 auxpass _ _ +18 dodávka dodávka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 19 nsubjpass _ _ +19 vybavena vybavit VERB VsQW---XX-AP--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 9 acl _ Coref=31 +20 originálem originál NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +21 nebo nebo CONJ J^------------- _ 20 cc _ _ +22 ověřenou ověřený ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ _ +23 kopií kopie NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 20 conj _ _ +24 certifikátu certifikát NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +25 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 24 nmod _ Coref=22|SpaceAfter=No +26 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 34 +# text = 8) +1 8 8 NUM C=------------- NumForm=Digit|NumType=Card 0 root _ SpaceAfter=No +2 ) ) PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 35 +# text = Stejné požadavky jako na dovážené výrobky bude SPPI uplatňovat i u výrobků tuzemských. +1 Stejné stejný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ Drop_coref=30 +2 požadavky požadavek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ Coref=31 +3 jako jako SCONJ J,------------- _ 6 mark _ _ +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +5 dovážené dovážený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 6 amod _ _ +6 výrobky výrobek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dep _ _ +7 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 9 aux _ _ +8 SPPI SPPI PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 9 nsubj _ Coref=29 +9 uplatňovat uplatňovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 0 root _ _ +10 i i CONJ J^------------- _ 12 advmod:emph _ _ +11 u u ADP RR--2---------- AdpType=Prep|Case=Gen 12 case _ _ +12 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ _ +13 tuzemských tuzemský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 12 amod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 36 +# text = Text k foto +1 Text text NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +2 k k ADP RR--3---------- AdpType=Prep|Case=Dat 3 case _ _ +3 foto foto NOUN NNNXX-----A---- Gender=Neut|Negative=Pos 1 nmod _ _ + +# sent_id = 37 +# text = ŽE BY NOVÁ CESTA JAK ŘEŠIT PROBLÉMY CELNÍ UNIE? +1 ŽE že SCONJ J,------------- _ 2 mark _ _ +2 BY být VERB Vc------------- Mood=Cnd|VerbForm=Fin 0 root _ _ +3 NOVÁ nový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 CESTA cesta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 nsubj _ Drop_coref=32 +5 JAK jak ADV Db------------- _ 6 advmod _ _ +6 ŘEŠIT řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 4 acl _ Drop_coref=32 +7 PROBLÉMY problém NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 6 dobj _ _ +8 CELNÍ celní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 UNIE unie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ SpaceAfter=No +10 ? ? PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 38 +# text = Což o to, zkusit se to může. +1 Což což INTJ II------------- _ 0 root _ _ +2 o o ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dep _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 zkusit zkusit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +7 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 8 nsubj _ _ +8 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 39 +# text = Ale šance je přesto minimální. +1 Ale ale CONJ J^------------- _ 5 cc _ _ +2 šance šance NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +4 přesto přesto ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +5 minimální minimální ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 1 +# text = "Nemoc - hrnec" a peníze +# newdoc +# newpar +1 " " PUNCT Z:------------- _ 2 punct _ SpaceAfter=No +2 Nemoc nemoc NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 0 root _ Coref=38 +3 - - PUNCT Z:------------- _ 4 punct _ _ +4 hrnec hrnec NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 appos _ SpaceAfter=No +5 " " PUNCT Z:------------- _ 4 punct _ _ +6 a a CCONJ J^------------- _ 7 cc _ _ +7 peníze peníze NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 conj _ SpacesAfter=\s\r\n\r\n + +# sent_id = 2 +# text = Na lidské důvěřivosti se dá vydělat hodně, jak o tom svědčí činnost některých zásilkových služeb. +# newpar +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 lidské lidský ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 důvěřivosti důvěřivost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 obj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pass _ _ +5 dá dát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 vydělat vydělat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 5 xcomp _ Coref=33 +7 hodně hodně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 6 advmod _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 jak jak ADV Db------------- PronType=Int,Rel 12 advmod _ _ +10 o o ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 tom ten DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 12 obj _ Coref=33 +12 svědčí svědčit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 advcl _ _ +13 činnost činnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 12 nsubj _ _ +14 některých některý DET PZXP2---------- Case=Gen|Number=Plur|PronType=Ind 16 det _ _ +15 zásilkových zásilkový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 16 amod _ _ +16 služeb služba NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 13 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 3 +# text = Postup je přitom jednoduchý: Barevnými katalogy a slogany nalákat - vlastně přesvědčit - o výhodné koupi zboží. +1 Postup postup NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +3 přitom přitom ADV Db------------- _ 4 advmod _ _ +4 jednoduchý jednoduchý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +5 : : PUNCT Z:------------- _ 6 punct _ _ +6 Barevnými barevný ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 4 conj _ _ +7 katalogy katalog NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 10 obl _ _ +8 a a CCONJ J^------------- _ 9 cc _ _ +9 slogany slogan NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Plur|Polarity=Pos 7 conj _ _ +10 nalákat nalákat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 6 appos _ _ +11 - - PUNCT Z:------------- _ 13 punct _ _ +12 vlastně vlastně ADV Db------------- _ 13 advmod _ _ +13 přesvědčit přesvědčit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 6 appos _ _ +14 - - PUNCT Z:------------- _ 17 punct _ _ +15 o o ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 výhodné výhodný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 17 amod _ _ +17 koupi koupě NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 13 obj _ _ +18 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 17 nmod _ Coref=34|SpaceAfter=No +19 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 4 +# text = Aby akce dostala punc solidnosti, tak nechybí upozornění, že v případě nespokojenosti se zbožím ho mohou zákazníci vrátit a pak dostanou své peníze zpět. +1-2 Aby _ _ _ _ _ _ _ _ +1 Aby aby SCONJ J,------------- _ 4 mark _ _ +2 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 4 aux _ _ +3 akce akce NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 nsubj _ _ +4 dostala dostat VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 9 advcl _ _ +5 punc punc NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 obj _ _ +6 solidnosti solidnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 4 punct _ _ +8 tak tak ADV Db------------- PronType=Dem 9 advmod _ _ +9 nechybí chybět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +10 upozornění upozornění NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 9 nsubj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 19 punct _ _ +12 že že SCONJ J,------------- _ 19 mark _ _ +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +14 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 13 fixed _ _ +15 nespokojenosti spokojenost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg 19 obl _ _ +16 se s ADP RV--7---------- AdpType=Voc|Case=Ins 17 case _ _ +17 zbožím zboží NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 15 nmod _ Coref=34 +18 ho on PRON PHZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 21 obj _ Coref=34 +19 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 acl _ _ +20 zákazníci zákazník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 19 nsubj _ Coref=35 +21 vrátit vrátit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 19 xcomp _ _ +22 a a CCONJ J^------------- _ 24 cc _ _ +23 pak pak ADV Db------------- _ 24 advmod _ _ +24 dostanou dostat VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 19 conj _ _ +25 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 26 det _ Coref=35 +26 peníze peníze NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 24 obj _ _ +27 zpět zpět ADV Db------------- _ 24 advmod _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 5 +# text = Jako vějička navíc působí i malý dárek a případná velká výhra ve formě zájezdu, auta či milionu korun. +1 Jako jako SCONJ J,------------- _ 2 mark _ _ +2 vějička vějička NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 4 dep _ _ +3 navíc navíc ADV Db------------- _ 4 advmod _ _ +4 působí působit VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 i i CCONJ J^------------- _ 7 cc _ _ +6 malý malý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 dárek dárek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 conj _ Coref=57 +8 a a CCONJ J^------------- _ 11 cc _ _ +9 případná případný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 11 amod _ _ +10 velká velký ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 11 amod _ _ +11 výhra výhra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 2 conj _ _ +12 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 14 case _ _ +13 formě forma NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 12 fixed _ _ +14 zájezdu zájezd NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 11 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 auta auto NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 14 conj _ _ +17 či či CCONJ J^------------- _ 18 cc _ _ +18 milionu milión NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 14 conj _ _ +19 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 18 nmod _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 6 +# text = Kdo se nechal nachytat, ví o této praxi své. +1 Kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 3 nsubj _ Coref=36 +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl:pv _ Coref=36 +3 nechal nechat VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 6 csubj _ _ +4 nachytat nachytat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 3 xcomp _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 3 punct _ _ +6 ví vědět VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 o o ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +8 této tento DET PDFS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Dem 9 det _ _ +9 praxi praxe NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 iobj _ _ +10 své svůj DET P8NS4---------1 Case=Acc|Gender=Neut|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 6 obj _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 7 +# text = Známe příběhy o pánvích, které jsou zdraví škodlivé, spousta důvěřivých naletěla na biohrnce nabízené zásilkovými firmami Axiom, Jana a Markest. +# newpar +1 Známe znát VERB VB-P---1P-AA--- Mood=Ind|Number=Plur|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 příběhy příběh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 1 obj _ _ +3 o o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 pánvích pánev NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 2 nmod _ Coref=37|SpaceAfter=No +5 , , PUNCT Z:------------- _ 9 punct _ _ +6 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 9 nsubj _ Coref=37 +7 jsou být AUX VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +8 zdraví zdraví NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +9 škodlivé škodlivý ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 4 acl _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 13 punct _ _ +11 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 13 nsubj _ _ +12 důvěřivých důvěřivý ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 11 amod _ _ +13 naletěla naletět VERB VpQW---XR-AA--- Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ _ +14 na na ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +15 biohrnce biohrnec NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 13 obl _ Coref=38 +16 nabízené nabízený ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 18 amod _ _ +17 zásilkovými zásilkový ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 18 amod _ _ +18 firmami firma NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 13 obl _ Coref=41 +19 Axiom axiom PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 18 nmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 21 punct _ _ +21 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 19 conj _ _ +22 a a CCONJ J^------------- _ 23 cc _ Drop_coref=42 +23 Markest Markest PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 19 conj _ Coref=43|SpaceAfter=No +24 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 8 +# text = Institut pro testování a certifikaci ve Zlíně přitom kromě jiného zjistil, že při používání biohrnce dochází ke spálení povrchového laku, takže se uvolňují nebezpečné sloučeniny chromu a olova, které mají karcinogenní účinky, způsobují vývojové genetické vady, škodlivě působí na nervový systém, trávící trakt, cévy i ledviny. +1 Institut institut NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 11 nsubj _ _ +2 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 testování testování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 certifikaci certifikace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 3 conj _ _ +6 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 7 case _ _ +7 Zlíně Zlín PROPN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|NameType=Geo|Number=Sing|Polarity=Pos 1 nmod _ _ +8 přitom přitom ADV Db------------- _ 11 advmod _ _ +9 kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +10 jiného jiný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 11 obl _ _ +11 zjistil zjistit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 17 punct _ _ +13 že že SCONJ J,------------- _ 17 mark _ _ +14 při při ADP RR--6---------- AdpType=Prep|Case=Loc 15 case _ _ +15 používání používání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 17 obl _ _ +16 biohrnce biohrnec NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 15 nmod _ Coref=38 +17 dochází docházet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 11 ccomp _ _ +18 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 19 case _ _ +19 spálení spálení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 17 obj _ _ +20 povrchového povrchový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 21 amod _ _ +21 laku lak NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 19 nmod _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 25 punct _ _ +23 takže takže SCONJ J,------------- _ 25 mark _ _ +24 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 25 expl:pv _ _ +25 uvolňují uvolňovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 advcl _ Coref=40 +26 nebezpečné bezpečný ADJ AAFP1----1N---- Case=Nom|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Neg 27 amod _ _ +27 sloučeniny sloučenina NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Number=Plur|Polarity=Pos 25 nsubj _ Coref=39 +28 chromu chróm NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 27 nmod _ _ +29 a a CCONJ J^------------- _ 30 cc _ _ +30 olova olovo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 28 conj _ SpaceAfter=No +31 , , PUNCT Z:------------- _ 33 punct _ _ +32 které který DET P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 33 nsubj _ Coref=39 +33 mají mít VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 27 acl _ _ +34 karcinogenní karcinogenní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 35 amod _ _ +35 účinky účinek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 33 obj _ Drop_coref=39|SpaceAfter=No +36 , , PUNCT Z:------------- _ 33 punct _ _ +37 způsobují způsobovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 25 conj _ _ +38 vývojové vývojový ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 40 amod _ _ +39 genetické genetický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 40 amod _ _ +40 vady vada NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 37 obj _ SpaceAfter=No +41 , , PUNCT Z:------------- _ 43 punct _ _ +42 škodlivě škodlivě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 43 advmod _ _ +43 působí působit VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 37 conj _ _ +44 na na ADP RR--4---------- AdpType=Prep|Case=Acc 46 case _ _ +45 nervový nervový ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 46 amod _ _ +46 systém systém NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 43 obj _ SpaceAfter=No +47 , , PUNCT Z:------------- _ 49 punct _ _ +48 trávící trávící ADJ AGIS4-----A---- Animacy=Inan|Aspect=Imp|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 49 amod _ _ +49 trakt trakt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 46 conj _ SpaceAfter=No +50 , , PUNCT Z:------------- _ 51 punct _ _ +51 cévy céva NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 46 conj _ _ +52 i i CCONJ J^------------- _ 53 cc _ _ +53 ledviny ledvina NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 46 conj _ SpaceAfter=No +54 . . PUNCT Z:------------- _ 11 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 9 +# text = Útok na zdraví zákazníků je podpořen i útokem na peněženku. +# newpar +1 Útok útok NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 6 nsubj _ Coref=40 +2 na na ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +3 zdraví zdraví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ _ +4 zákazníků zákazník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 3 nmod _ Coref=35 +5 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ _ +6 podpořen podpořený ADJ VsYS---XX-AP--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +7 i i CCONJ J^------------- _ 8 advmod:emph _ _ +8 útokem útok NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 6 obl _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 peněženku peněženka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 10 +# text = Axiom nabízí biohrnec (rozumějte "nemoc - hrnec") za 599 korun, Jana už za 945 korun a Markest si svoji (ne)solidnost cení na 1209 korun. +1 Axiom Axiom PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 2 nsubj _ Coref=41 +2 nabízí nabízet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 biohrnec biohrnec NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obj _ Coref=38 +4 ( ( PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +5 rozumějte rozumět VERB Vi-P---2--A---- Aspect=Imp|Mood=Imp|Number=Plur|Person=2|Polarity=Pos|VerbForm=Fin 2 parataxis _ Drop_coref=60 +6 " " PUNCT Z:------------- _ 7 punct _ SpaceAfter=No +7 nemoc nemoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obj _ _ +8 - - PUNCT Z:------------- _ 9 punct _ _ +9 hrnec hrnec NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 7 appos _ Coref=38|SpaceAfter=No +10 " " PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 ) ) PUNCT Z:------------- _ 5 punct _ _ +12 za za ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 599 599 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 2 obl _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 2 conj _ Coref=42 +17 už už ADV Db------------- _ 19 advmod:emph _ _ +18 za za ADP RR--4---------- AdpType=Prep|Case=Acc 20 case _ _ +19 945 945 NUM C=------------- NumForm=Digit|NumType=Card 20 nummod:gov _ _ +20 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 16 orphan _ _ +21 a a CCONJ J^------------- _ 29 cc _ Drop_coref=38 +22 Markest Markest PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Com|Number=Sing|Polarity=Pos 29 nsubj _ Coref=43 +23 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 29 obl _ _ +24 svoji svůj DET P8FS4---------- Case=Acc|Gender=Fem|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 28 det _ Coref=43 +25 ( ( PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +26 ne ne PART TT------------- _ 28 advmod:emph _ SpaceAfter=No +27 ) ) PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +28 solidnost solidnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 29 obj _ _ +29 cení cenit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +30 na na ADP RR--4---------- AdpType=Prep|Case=Acc 32 case _ _ +31 1209 1209 NUM C=------------- NumForm=Digit|NumType=Card 32 nummod:gov _ _ +32 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 29 obl _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 29 punct _ _ + +# sent_id = 11 +# text = Ještě výraznější rozdíl je ve srovnání cen mezi zásilkovým a klasickým obchodem. +1 Ještě ještě ADV Db------------- _ 2 advmod:emph _ _ +2 výraznější výrazný ADJ AAIS1----2A---- Animacy=Inan|Case=Nom|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 3 amod _ _ +3 rozdíl rozdíl NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 7 case _ _ +6 srovnání srovnání NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 5 fixed _ Drop_coref=44 +7 cen cena NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 4 obl _ Coref=44 +8 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 12 case _ _ +9 zásilkovým zásilkový ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 12 amod _ _ +10 a a CCONJ J^------------- _ 11 cc _ Drop_coref=52 +11 klasickým klasický ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 conj _ _ +12 obchodem obchod NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ Coref=47|SpaceAfter=No +13 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Například v pražských obchodech je k mání český kráječ na vajíčka za 67 korun, zahraniční za 75 a 95 korun, ale Jana si tohoto pomocníka do kuchyně cení na 345 korun. +1 Například například ADV Db------------- _ 4 advmod:emph _ _ +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 pražských pražský ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 4 amod _ _ +4 obchodech obchod NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 5 obl _ _ +5 je být VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 k k ADP RR--3---------- AdpType=Prep|Case=Dat 7 case _ _ +7 mání mání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 5 obl _ _ +8 český český ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 kráječ kráječ NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 5 nsubj _ Coref=45 +10 na na ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +11 vajíčka vajíčko NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Number=Plur|Polarity=Pos 9 nmod _ _ +12 za za ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +13 67 67 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 9 nmod _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 16 punct _ _ +16 zahraniční zahraniční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 5 conj _ _ +17 za za ADP RR--4---------- AdpType=Prep|Case=Acc 21 case _ _ +18 75 75 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +19 a a CCONJ J^------------- _ 20 cc _ _ +20 95 95 NUM C=------------- NumForm=Digit|NumType=Card 18 conj _ _ +21 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 16 orphan _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 30 punct _ _ +23 ale ale CCONJ J^------------- _ 30 cc _ _ +24 Jana Jana PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 30 nsubj _ _ +25 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 30 obl _ _ +26 tohoto tento DET PDMS4---------- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 27 det _ _ +27 pomocníka pomocník NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 30 obj _ Coref=45 +28 do do ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +29 kuchyně kuchyně NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 27 nmod _ _ +30 cení cený VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ _ +31 na na ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +32 345 345 NUM C=------------- NumForm=Digit|NumType=Card 33 nummod:gov _ _ +33 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 30 obl _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 5 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 13 +# text = Nikdo nemůže chránit zákazníka před p důvěřivostí, naivností až hloupostí v případě, že je ochoten zaplatit za zaslané zboží více, než co stojí v běžných prodejnách. +# newpar +1 Nikdo nikdo PRON PWM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Neg 2 nsubj _ _ +2 nemůže moci VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 chránit chránit VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +4 zákazníka zákazník NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 3 obj _ Coref=35 +5 před před ADP RR--7---------- AdpType=Prep|Case=Ins 6 case _ _ +6 p podnik NOUN NNFSX-----A---8 Abbr=Yes|Foreign=Yes|Gender=Fem|Number=Sing|Polarity=Pos 3 iobj _ _ +7 důvěřivostí důvěřivost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 3 obl _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 9 punct _ _ +9 naivností naivnost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 7 conj _ _ +10 až až CCONJ J^------------- _ 11 cc _ _ +11 hloupostí hloupost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Number=Sing|Polarity=Pos 7 conj _ _ +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 3 obl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 17 punct _ _ +15 že že SCONJ J,------------- _ 17 mark _ _ +16 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 cop _ Drop_coref=35 +17 ochoten ochotný ADJ ACYS------A---- Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short 13 acl _ _ +18 zaplatit zaplatit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 17 xcomp _ Drop_coref=35 +19 za za ADP RR--4---------- AdpType=Prep|Case=Acc 21 case _ _ +20 zaslané zaslaný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 21 amod _ _ +21 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 18 obj _ Coref=46 +22 více hodně ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 18 advmod _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 26 punct _ _ +24 než než SCONJ J,------------- _ 26 mark _ _ +25 co co PRON PQ--4---------- Animacy=Inan|Case=Acc|PronType=Int,Rel 26 obj _ _ +26 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 22 advcl _ Drop_coref=46 +27 v v ADP RR--6---------- AdpType=Prep|Case=Loc 29 case _ _ +28 běžných běžný ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 29 amod _ _ +29 prodejnách prodejna NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Number=Plur|Polarity=Pos 26 obl _ Coref=47|SpaceAfter=No +30 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 14 +# text = U výrobků ohrožujících zdraví spotřebitelů dochází však ke spáchání trestného činu ohrožování zdraví potravinami a jinými potřebami. +1 U u ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 výrobků výrobek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +3 ohrožujících ohrožující ADJ AGIP2-----A---- Animacy=Inan|Aspect=Imp|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 2 amod _ _ +4 zdraví zdraví NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 3 obj _ _ +5 spotřebitelů spotřebitel NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 4 nmod _ Coref=35 +6 dochází docházet VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 však však CCONJ J^------------- _ 6 cc _ _ +8 ke k ADP RV--3---------- AdpType=Voc|Case=Dat 9 case _ _ +9 spáchání spáchání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 6 obj _ _ +10 trestného trestný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 11 amod _ _ +11 činu čin NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 nmod _ _ +12 ohrožování ohrožování NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 11 nmod _ _ +13 zdraví zdraví NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 12 nmod _ _ +14 potravinami potravina NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 12 nmod _ _ +15 a a CCONJ J^------------- _ 17 cc _ _ +16 jinými jiný ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 17 amod _ _ +17 potřebami potřeba NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 14 conj _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 15 +# text = Trestného činu se však dopouští i ten, kdo poškozuje spotřebitele tím, že ho šidí na jakosti, nebo kdo uvede ve větším rozsahu na trh výrobky a přitom zatají jejich podstatné vady. +1 Trestného trestný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 2 amod _ _ +2 činu čin NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 5 obj _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +4 však však CCONJ J^------------- _ 5 cc _ _ +5 dopouští dopouštět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 i i CCONJ J^------------- _ 7 advmod:emph _ _ +7 ten ten DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 5 nsubj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 10 punct _ _ +9 kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 10 nsubj _ Coref=48 +10 poškozuje poškozovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 7 acl _ _ +11 spotřebitele spotřebitel NOUN NNMS4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 10 obj _ Coref=35 +12 tím ten DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 10 obl _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 16 punct _ _ +14 že že SCONJ J,------------- _ 16 mark _ _ +15 ho on PRON PHZS4--3------- Case=Acc|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 16 obj _ Coref=35 +16 šidí šidit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 12 acl _ Drop_coref=48 +17 na na ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +18 jakosti jakost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 16 obl _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 22 punct _ _ +20 nebo nebo CCONJ J^------------- _ 22 cc _ _ +21 kdo kdo PRON PKM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|PronType=Int,Rel 22 nsubj _ _ +22 uvede uvést VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 conj _ _ +23 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 25 case _ _ +24 větším velký ADJ AAIS6----2A---- Animacy=Inan|Case=Loc|Degree=Cmp|Gender=Masc|Number=Sing|Polarity=Pos 25 amod _ _ +25 rozsahu rozsah NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 22 obl _ _ +26 na na ADP RR--4---------- AdpType=Prep|Case=Acc 27 case _ _ +27 trh trh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 22 obl _ _ +28 výrobky výrobek NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 22 obj _ Coref=49 +29 a a CCONJ J^------------- _ 31 cc _ _ +30 přitom přitom ADV Db------------- _ 31 advmod _ _ +31 zatají zatajit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 conj _ _ +32 jejich jeho DET PSXXXXP3------- Number[psor]=Plur|Person=3|Poss=Yes|PronType=Prs 34 det _ Coref=49 +33 podstatné podstatný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 34 amod _ _ +34 vady vada NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Number=Plur|Polarity=Pos 31 obj _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 16 +# text = Volání po novém zákonu na ochranu spotřebitele je sice oprávněné, ale je třeba zároveň vzít v úvahu, že i dnes jsou zákony na ochranu spotřebitele. +1 Volání volání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 10 nsubj _ _ +2 po po ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 novém nový ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 4 amod _ _ +4 zákonu zákon NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 1 nmod _ _ +5 na na ADP RR--4---------- AdpType=Prep|Case=Acc 6 case _ _ +6 ochranu ochrana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 4 nmod _ Coref=51 +7 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 6 nmod _ Coref=35 +8 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 cop _ _ +9 sice sice ADV Db------------- _ 10 cc _ _ +10 oprávněné oprávněný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 14 punct _ _ +12 ale ale CCONJ J^------------- _ 14 cc _ _ +13 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +14 třeba třeba ADJ ACNS------A---- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short 10 conj _ Drop_coref=50 +15 zároveň zároveň ADV Db------------- _ 16 advmod _ _ +16 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 14 csubj _ Drop_coref=50 +17 v v ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 16 iobj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 23 punct _ _ +20 že že SCONJ J,------------- _ 23 mark _ _ +21 i i CCONJ J^------------- _ 22 advmod:emph _ _ +22 dnes dnes ADV Db------------- _ 23 advmod _ _ +23 jsou být VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 16 ccomp _ _ +24 zákony zákon NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 23 nsubj _ Coref=54 +25 na na ADP RR--4---------- AdpType=Prep|Case=Acc 26 case _ _ +26 ochranu ochrana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 24 nmod _ Coref=51 +27 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 26 nmod _ Coref=35|SpaceAfter=No +28 . . PUNCT Z:------------- _ 10 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 17 +# text = Řada lidí se však soudit nechce a nechce také naletět. +# newpar +1 Řada řada NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 6 nsubj _ _ +2 lidí člověk NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 1 nmod _ Coref=35 +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl:pv _ _ +4 však však CCONJ J^------------- _ 6 cc _ _ +5 soudit soudit VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 6 xcomp _ _ +6 nechce chtít VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 a a CCONJ J^------------- _ 8 cc _ _ +8 nechce chtít VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 6 conj _ _ +9 také také ADV Db------------- _ 10 advmod _ _ +10 naletět naletět VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 8 xcomp _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 18 +# text = Co by měli při uvažování o koupi prostřednictvím zásilkového obchodu vzít v úvahu: +1 Co co PRON PQ--4---------- Animacy=Inan|Case=Acc|PronType=Int,Rel 3 obj _ _ +2 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 3 aux _ _ +3 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +4 při při ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +5 uvažování uvažování NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 3 obl _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 koupi koupě NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 5 nmod _ _ +8 prostřednictvím prostřednictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Number=Sing|Polarity=Pos 10 case _ _ +9 zásilkového zásilkový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 10 amod _ _ +10 obchodu obchod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 7 nmod _ Coref=52 +11 vzít vzít VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 3 xcomp _ Drop_coref=35 +12 v v ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +13 úvahu úvaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 11 obj _ SpaceAfter=No +14 : : PUNCT Z:------------- _ 3 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 19 +# text = * Vyžadovat vždy u výrobku zkoušku zdravotní nezávadnosti a bezpečnosti ve státní zkušebně, jak to vyplývá ze zákona, +# newpar +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 Vyžadovat vyžadovat VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ _ +3 vždy vždy ADV Db------------- PronType=Tot 2 advmod _ _ +4 u u ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 výrobku výrobek NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 2 obl _ Coref=58 +6 zkoušku zkouška NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 2 obj _ Coref=53 +7 zdravotní zdravotní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 8 amod _ _ +8 nezávadnosti závadnost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Neg 6 nmod _ _ +9 a a CCONJ J^------------- _ 10 cc _ _ +10 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 8 conj _ _ +11 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 13 case _ _ +12 státní státní ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 13 amod _ _ +13 zkušebně zkušebna NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 6 nmod _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 17 punct _ _ +15 jak jak ADV Db------------- PronType=Int,Rel 17 advmod _ _ +16 to ten DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 17 nsubj _ Coref=53 +17 vyplývá vyplývat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 2 parataxis _ _ +18 ze z ADP RV--2---------- AdpType=Voc|Case=Gen 19 case _ _ +19 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 17 obl _ Coref=54|SpaceAfter=No +20 , , PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 20 +# text = * vycházet z toho, že úkryt za P.O. +# newpar +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 vycházet vycházet VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ _ +3 z z ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +4 toho ten DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 7 det _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 7 punct _ _ +6 že že SCONJ J,------------- _ 7 mark _ _ +7 úkryt úkryt NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 2 nsubj _ _ +8 za za ADP RR--4---------- AdpType=Prep|Case=Acc 11 case _ _ +9 P Post ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|Foreign=Yes|Polarity=Pos 11 amod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 O Office NOUN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Foreign=Yes|Gender=Masc|Polarity=Pos 7 nmod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 21 +# text = Box je téměř dokonalý, takže adresu případných podvodníků půjde zjistit jen s velkými obtížemi - to připomínám kvůli vrácení peněz, +1 Box box NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ _ +2 je být AUX VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 4 cop _ _ +3 téměř téměř ADV Db------------- _ 4 advmod:emph _ _ +4 dokonalý dokonalý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 0 root _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 10 punct _ _ +6 takže takže SCONJ J,------------- _ 10 mark _ _ +7 adresu adresa NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 11 obj _ _ +8 případných případný ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 9 amod _ _ +9 podvodníků podvodník NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 7 nmod _ _ +10 půjde jít VERB VB-S---3F-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Fut|VerbForm=Fin|Voice=Act 4 advcl _ Drop_coref=55 +11 zjistit zjistit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 10 csubj _ Drop_coref=55 +12 jen jen PART TT------------- _ 15 advmod:emph _ _ +13 s s ADP RR--7---------- AdpType=Prep|Case=Ins 15 case _ _ +14 velkými velký ADJ AAFP7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Number=Plur|Polarity=Pos 15 amod _ _ +15 obtížemi obtíž NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Number=Plur|Polarity=Pos 11 obl _ _ +16 - - PUNCT Z:------------- _ 18 punct _ _ +17 to ten DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 18 obj _ Coref=55 +18 připomínám připomínat VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=1|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 10 parataxis _ Drop_coref=62 +19 kvůli kvůli ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 vrácení vrácení NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Number=Sing|Polarity=Pos 18 obl _ _ +21 peněz peníze NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 20 nmod _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 4 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 22 +# text = * nenechat se nalákat na malý dárek při objednávce zboží, protože ten jste si určitě zaplatili, +# newpar +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 nenechat nechat VERB Vf--------N---- Aspect=Imp|Polarity=Neg|VerbForm=Inf 0 root _ Drop_coref=56 +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 2 expl:pv _ Coref=56 +4 nalákat nalákat VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 2 xcomp _ _ +5 na na ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +6 malý malý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 7 amod _ _ +7 dárek dárek NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 4 obl _ Coref=57 +8 při při ADP RR--6---------- AdpType=Prep|Case=Loc 9 case _ _ +9 objednávce objednávka NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Number=Sing|Polarity=Pos 4 obl _ _ +10 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 9 nmod _ Coref=58|SpaceAfter=No +11 , , PUNCT Z:------------- _ 17 punct _ _ +12 protože protože SCONJ J,------------- _ 17 mark _ _ +13 ten ten DET PDIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Dem 17 obj _ Coref=57 +14 jste být AUX VB-P---2P-AA--- Mood=Ind|Number=Plur|Person=2|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 17 aux _ _ +15 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 17 obl _ Coref=59 +16 určitě určitě ADV Dg-------1A---- Degree=Pos|Polarity=Pos 17 advmod _ _ +17 zaplatili zaplatit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 4 advcl _ Drop_coref=60|SpaceAfter=No +18 , , PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 23 +# text = * věnovat čas na průzkum v obchodech, kolik vlastně zboží běžně stojí. +# newpar +1 * * PUNCT Z:------------- _ 2 punct _ _ +2 věnovat věnovat VERB Vf--------A---- Aspect=Imp|Polarity=Pos|VerbForm=Inf 0 root _ Drop_coref=61 +3 čas čas NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obj _ Drop_coref=61 +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 průzkum průzkum NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 2 obl _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 obchodech obchod NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 5 nmod _ Coref=47|SpaceAfter=No +8 , , PUNCT Z:------------- _ 13 punct _ _ +9 kolik kolik DET C?--4---------- Case=Acc|NumType=Card|PronType=Int,Rel 13 obj _ _ +10 vlastně vlastně ADV Db------------- _ 13 advmod _ _ +11 zboží zboží NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 13 nsubj _ Coref=58 +12 běžně běžně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 13 advmod _ _ +13 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 5 acl _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 2 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 24 +# text = Shrnuto a podtrženo: Buďte opatrní. +# newpar +1 Shrnuto shrnutý ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ _ +2 a a CCONJ J^------------- _ 3 cc _ _ +3 podtrženo podtržený ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 1 conj _ SpaceAfter=No +4 : : PUNCT Z:------------- _ 6 punct _ _ +5 Buďte být AUX Vi-P---2--A---- Mood=Imp|Number=Plur|Person=2|Polarity=Pos|VerbForm=Fin 6 cop _ Drop_coref=59 +6 opatrní opatrný ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 1 conj _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 1 punct _ SpacesAfter=\s\r\n\r\n + +# sent_id = 25 +# text = Kamil Lánský +# newpar +1 Kamil Kamil PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Number=Sing|Polarity=Pos 0 root _ _ +2 Lánský Lánský PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Number=Sing|Polarity=Pos 1 flat _ Coref=62 + +# sent_id = 1 +# text = Není vhodné, aby politická strana měla svůj deník +1 Není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +2 vhodné vhodný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 8 punct _ _ +4-5 aby _ _ _ _ _ _ _ _ +4 aby aby SCONJ J,------------- _ 8 mark _ _ +5 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 8 aux _ _ +6 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 8 nsubj _ Coref=63 +8 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 2 csubj _ _ +9 svůj svůj DET P8IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 10 det _ Coref=63 +10 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 8 dobj _ Coref=76 + +# sent_id = 2 +# text = Premiér Václav Klaus odpovídá v pravidelné rubrice na aktuální otázky redaktorky Lidových novin Evy Martínkové o Domníváte se, že se vám podaří přesvědčit koaliční partnery o nutnosti přijmout ústavní zákon o vyrovnaném rozpočtu? +1 Premiér premiér NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Václav Václav PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 4 nsubj _ _ +3 Klaus Klaus PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ Coref=64 +4 odpovídá odpovídat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +6 pravidelné pravidelný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 rubrice rubrika NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +8 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +9 aktuální aktuální ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 otázky otázka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +11 redaktorky redaktorka NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ _ +12 Lidových lidový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 11 nmod _ Coref=72 +14 Evy Eva PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 10 nmod _ _ +15 Martínkové Martínková PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 14 name _ _ +16 o o ADP RR--4---------- AdpType=Prep|Case=Acc 17 case _ _ +17 Domníváte Domnívát PRON Co------------1 NumType=Mult|PronType=Dem,Ind 4 advmod _ Drop_coref=64 +18 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 23 punct _ _ +20 že že SCONJ J,------------- _ 23 mark _ _ +21 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ _ +22 vám ty PRON PP-P3--2------- Case=Dat|Number=Plur|Person=2|PronType=Prs 23 dobj _ Coref=64 +23 podaří podařit VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 acl _ Coref=66 +24 přesvědčit přesvědčit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 csubj _ Drop_coref=64 +25 koaliční koaliční ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 26 amod _ _ +26 partnery partner NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 24 dobj _ Coref=69 +27 o o ADP RR--6---------- AdpType=Prep|Case=Loc 28 case _ _ +28 nutnosti nutnost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 26 nmod _ Drop_coref=65 +29 přijmout přijmout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 28 acl _ Drop_coref=65 +30 ústavní ústavní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 31 amod _ _ +31 zákon zákon NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 29 dobj _ Coref=70 +32 o o ADP RR--6---------- AdpType=Prep|Case=Loc 34 case _ _ +33 vyrovnaném vyrovnaný ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 34 amod _ _ +34 rozpočtu rozpočet NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ SpaceAfter=No +35 ? ? PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 3 +# text = O tom nemohu spekulovat zejména proto, že nejde pouze o věcnou stránku správnosti či nesprávnosti této iniciativy. +1 O o ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 tom ten PRON PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 dobj _ Coref=66 +3 nemohu moci VERB VB-S---1P-NA--1 Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 spekulovat spekulovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 3 xcomp _ Drop_coref=64 +5 zejména zejména ADV Db------------- _ 6 advmod:emph _ _ +6 proto proto ADV Db------------- _ 3 advmod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 9 punct _ _ +8 že že SCONJ J,------------- _ 9 mark _ _ +9 nejde jít VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 advcl _ _ +10 pouze pouze ADV Db------------- _ 13 advmod:emph _ _ +11 o o ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +12 věcnou věcný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 amod _ _ +13 stránku stránka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 9 dobj _ Coref=68 +14 správnosti správnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +15 či či CONJ J^------------- _ 14 cc _ _ +16 nesprávnosti správnost NOUN NNFS2-----N---- Case=Gen|Gender=Fem|Negative=Neg|Number=Sing 14 conj _ _ +17 této tento DET PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 18 det _ _ +18 iniciativy iniciativa NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ Coref=65|SpaceAfter=No +19 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 4 +# text = Má to samozřejmě i stránku politickou, prestižní a já mám obavu, že druhá stránka může zvítězit nad tou první a že koaliční partneři mohou být proti zejména z důvodu druhého. +1 Má mít VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 1 nsubj _ Coref=65 +3 samozřejmě samozřejmě ADV Dg-------1A---- Degree=Pos|Negative=Pos 1 cc _ _ +4 i i CONJ J^------------- _ 5 advmod:emph _ _ +5 stránku stránka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 1 dobj _ Coref=67 +6 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 6 punct _ _ +8 prestižní prestižní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 conj _ _ +9 a a CONJ J^------------- _ 6 cc _ _ +10 já já PRON PP-S1--1------- Case=Nom|Number=Sing|Person=1|PronType=Prs 6 conj _ Coref=64 +11 mám mít VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +12 obavu obava NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 11 dobj _ Drop_coref=64|SpaceAfter=No +13 , , PUNCT Z:------------- _ 17 punct _ _ +14 že že SCONJ J,------------- _ 17 mark _ _ +15 druhá druhý ADJ CrFS1---------- Case=Nom|Gender=Fem|Number=Sing|NumType=Ord 16 amod _ _ +16 stránka stránka NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 17 nsubj _ Coref=67 +17 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 12 acl _ _ +18 zvítězit zvítězit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 17 xcomp _ _ +19 nad nad ADP RR--7---------- AdpType=Prep|Case=Ins 20 case _ _ +20 tou ten PRON PDFS7---------- Case=Ins|Gender=Fem|Number=Sing|PronType=Dem 18 dobj _ Coref=68 +21 první první ADJ CrFS7---------- Case=Ins|Gender=Fem|Number=Sing|NumType=Ord 20 amod _ _ +22 a a CONJ J^------------- _ 17 cc _ _ +23 že že SCONJ J,------------- _ 26 mark _ _ +24 koaliční koaliční ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 partneři partner NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 26 nsubj _ Coref=69 +26 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 conj _ _ +27 být být VERB Vf--------A---- Negative=Pos|VerbForm=Inf 26 xcomp _ _ +28 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 32 case _ _ +29 zejména zejména ADV Db------------- _ 32 advmod:emph _ _ +30 z z ADP RR--2---------- AdpType=Prep|Case=Gen 32 case _ _ +31 důvodu důvod NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 30 mwe _ Coref=67 +32 druhého druhý ADJ CrIS2---------- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|NumType=Ord 27 nmod _ SpaceAfter=No +33 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 5 +# text = Ale toto téma je vážné, myslím, že patří mezi jedno z hlavních témat naší současnosti, a proto jsem se pokusil systematicky utřídit argumenty a napsat to do svého pondělního příspěvku do Lidových novin. +1 Ale ale CONJ J^------------- _ 5 cc _ _ +2 toto tento DET PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 3 det _ _ +3 téma téma NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ Coref=70 +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +5 vážné vážný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 5 conj _ Drop_coref=64|SpaceAfter=No +8 , , PUNCT Z:------------- _ 10 punct _ _ +9 že že SCONJ J,------------- _ 10 mark _ _ +10 patří patřit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 ccomp _ Drop_coref=70 +11 mezi mezi ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 jedno jeden NUM ClNS4---------- Case=Acc|Gender=Neut|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 10 advmod _ _ +13 z z ADP RR--2---------- AdpType=Prep|Case=Gen 15 case _ _ +14 hlavních hlavní ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 15 amod _ _ +15 témat téma NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 12 nmod _ _ +16 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 17 det _ _ +17 současnosti současnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 15 nmod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 5 punct _ _ +19 a a CONJ J^------------- _ 5 cc _ _ +20 proto proto CONJ J^------------- _ 5 cc _ _ +21 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 23 aux _ _ +22 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 23 expl _ _ +23 pokusil pokusit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ Drop_coref=64 +24 systematicky systematicky ADV Dg-------1A---- Degree=Pos|Negative=Pos 25 advmod _ _ +25 utřídit utřídit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 xcomp _ _ +26 argumenty argument NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 25 dobj _ Coref=71 +27 a a CONJ J^------------- _ 25 cc _ Drop_coref=64 +28 napsat napsat VERB Vf--------A---- Negative=Pos|VerbForm=Inf 25 conj _ _ +29 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 28 dobj _ Coref=71 +30 do do ADP RR--2---------- AdpType=Prep|Case=Gen 33 case _ _ +31 svého svůj DET P8ZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 33 det _ Coref=64 +32 pondělního pondělní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 33 amod _ _ +33 příspěvku příspěvek NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +34 do do ADP RR--2---------- AdpType=Prep|Case=Gen 36 case _ _ +35 Lidových lidový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 36 amod _ _ +36 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 33 nmod _ Coref=72|SpaceAfter=No +37 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 6 +# text = Myslím, že teď, v krátké odpovědi, bych to zploštil, zkrátil, a to není třeba. o +1 Myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=64|SpaceAfter=No +2 , , PUNCT Z:------------- _ 12 punct _ _ +3 že že SCONJ J,------------- _ 12 mark _ _ +4 teď teď ADV Db------------- _ 12 advmod _ SpaceAfter=No +5 , , PUNCT Z:------------- _ 8 punct _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 krátké krátký ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 odpovědi odpověď NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 8 punct _ _ +10 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 12 aux _ _ +11 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 12 dobj _ Coref=71 +12 zploštil zploštit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 ccomp _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 1 punct _ Drop_coref=64 +14 zkrátil zkrátit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ SpaceAfter=No +15 , , PUNCT Z:------------- _ 1 punct _ _ +16 a a CONJ J^------------- _ 1 cc _ _ +17 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 19 nsubj _ Coref=64 +18 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 19 cop _ _ +19 třeba třeba ADJ ACNS------A---- Gender=Neut|Negative=Pos|Number=Sing|Variant=Short 1 conj _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 1 punct _ _ +21 o o PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 7 +# text = Postrádá ODS jako pravicová strana na novinovém trhu nezávislý deník, který by dostatečně tlumočil její postoje vůči společnosti? +1 Postrádá postrádat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 1 nsubj _ Coref=74 +3 jako jako SCONJ J,------------- _ 5 mark _ _ +4 pravicová pravicový ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 xcomp _ _ +6 na na ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 novinovém novinový ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ _ +8 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +9 nezávislý závislý ADJ AAIS4----1N---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Neg|Number=Sing 10 amod _ _ +10 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ Coref=73|SpaceAfter=No +11 , , PUNCT Z:------------- _ 15 punct _ _ +12 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 15 nsubj _ Coref=73 +13 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 15 aux _ _ +14 dostatečně dostatečně ADV Dg-------1A---- Degree=Pos|Negative=Pos 15 advmod _ _ +15 tlumočil tlumočit VERB VpYS---XR-AA--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 10 acl _ _ +16 její jeho DET PSXP4FS3------- Case=Acc|Gender[psor]=Fem|Number=Plur|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 17 det _ Coref=74 +17 postoje postoj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ _ +18 vůči vůči ADP RR--3---------- AdpType=Prep|Case=Dat 19 case _ _ +19 společnosti společnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 17 nmod _ SpaceAfter=No +20 ? ? PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 8 +# text = Hovoří se v těchto dnech o propojení, které údajně existuje mezi ODS a deníkem Telegraf. +1 Hovoří hovořit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 1 auxpass:reflex _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 těchto tento DET PDXP6---------- Case=Loc|Number=Plur|PronType=Dem 5 det _ _ +5 dnech den NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +6 o o ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 propojení propojení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ Coref=75|SpaceAfter=No +8 , , PUNCT Z:------------- _ 11 punct _ _ +9 které který PRON P4NS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Int,Rel 11 nsubj _ Coref=75 +10 údajně údajně ADV Dg-------1A---- Degree=Pos|Negative=Pos 11 advmod _ _ +11 existuje existovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 7 acl _ _ +12 mezi mezi ADP RR--7---------- AdpType=Prep|Case=Ins 13 case _ _ +13 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 11 nmod _ Coref=74 +14 a a CONJ J^------------- _ 13 cc _ _ +15 deníkem deník NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 13 conj _ Coref=85 +16 Telegraf Telegraf PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 15 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 9 +# text = ODS opravdu nechybí žádný takový deník. +1 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 3 dobj _ Coref=74 +2 opravdu opravdu ADV Db------------- _ 3 cc _ _ +3 nechybí chybět VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 žádný žádný DET PWYS1---------- Case=Nom|Gender=Masc|Negative=Neg|Number=Sing|PronType=Neg 6 det _ _ +5 takový takový DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 6 det _ _ +6 deník deník NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ Coref=73|SpaceAfter=No +7 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 10 +# text = Mnohokrát jsme se přesvědčili všichni, že není vhodné, aby politická strana měla svůj deník. +1 Mnohokrát mnohokrát PRON Co------------- NumType=Mult|PronType=Dem,Ind 4 dobj _ _ +2 jsme být AUX VB-P---1P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 přesvědčili přesvědčit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 všichni všechen PRON PLMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Tot 4 nsubj _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 že že SCONJ J,------------- _ 9 mark _ _ +8 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ _ +9 vhodné vhodný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 4 ccomp _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 15 punct _ _ +11-12 aby _ _ _ _ _ _ _ _ +11 aby aby SCONJ J,------------- _ 15 mark _ _ +12 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 15 aux _ _ +13 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ Coref=63 +15 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 9 csubj _ _ +16 svůj svůj DET P8IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Poss=Yes|PronType=Prs|Reflex=Yes 17 det _ Coref=63 +17 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ Coref=76|SpaceAfter=No +18 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 11 +# text = O nic takového neusilujeme. +1 O o ADP RR--4---------- AdpType=Prep|Case=Acc 2 case _ _ +2 nic nic PRON PW--4---------- Case=Acc|Negative=Neg|PronType=Neg 4 dobj _ _ +3 takového takový PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 2 amod _ _ +4 neusilujeme usilovat VERB VB-P---1P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Plur|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=74|SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 12 +# text = Důvody jsou dva. +1 Důvody důvod NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ _ +2 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 cop _ _ +3 dva dva NUM ClYP1---------- Case=Nom|Gender=Masc|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 0 root _ SpaceAfter=No +4 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 13 +# text = Na trhu s deníky a týdeníky je podle mého názoru taková pluralita a taková konkurence, že není sebemenším problémem se s jakýmkoliv názorem dostat do těchto sdělovacích prostředků, a proto pootáčet jeden deník tím či oním směrem by bylo podle mého názoru naprosto zbytečné a myslím, že o to nikdo neusiluje ani v jiné politické straně. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +3 s s ADP RR--7---------- AdpType=Prep|Case=Ins 4 case _ _ +4 deníky deník NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +5 a a CONJ J^------------- _ 4 cc _ Coref=78 +6 týdeníky týdeník NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ _ +7 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 12 cop _ _ +8 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +9 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 10 det _ Coref=64 +10 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +11 taková takový DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 12 det _ _ +12 pluralita pluralita NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 taková takový DET PDFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Dem 15 det _ _ +15 konkurence konkurence NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 conj _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 že že SCONJ J,------------- _ 20 mark _ _ +18 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 20 cop _ _ +19 sebemenším sebemenší ADJ AAIS7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 20 amod _ _ +20 problémem problém NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 15 acl _ Drop_coref=77 +21 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 25 expl _ _ +22 s s ADP RR--7---------- AdpType=Prep|Case=Ins 24 case _ _ +23 jakýmkoliv jakýkoliv DET PZZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Ind 24 det _ _ +24 názorem názor NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 25 nmod _ _ +25 dostat dostat VERB Vf--------A---- Negative=Pos|VerbForm=Inf 20 csubj _ Drop_coref=77 +26 do do ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +27 těchto tento DET PDXP2---------- Case=Gen|Number=Plur|PronType=Dem 29 det _ _ +28 sdělovacích sdělovací ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 29 amod _ _ +29 prostředků prostředek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 25 nmod _ Coref=78|SpaceAfter=No +30 , , PUNCT Z:------------- _ 20 punct _ _ +31 a a CONJ J^------------- _ 20 cc _ _ +32 proto proto CONJ J^------------- _ 20 cc _ _ +33 pootáčet pootáčet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 46 csubj _ Coref=79 +34 jeden jeden NUM ClIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 35 nummod _ _ +35 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 33 dobj _ _ +36 tím ten DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 39 det _ _ +37 či či CONJ J^------------- _ 36 cc _ _ +38 oním onen PRON PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 36 conj _ _ +39 směrem směr NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 33 nmod _ _ +40 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 46 aux _ _ +41 bylo být VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 46 cop _ _ +42 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 44 case _ _ +43 mého můj DET PSZS2-S1------- Case=Gen|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 44 det _ Coref=64 +44 názoru názor NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 46 nmod _ _ +45 naprosto naprosto ADV Db------------- _ 46 advmod _ _ +46 zbytečné zbytečný ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 20 conj _ _ +47 a a CONJ J^------------- _ 46 cc _ _ +48 myslím myslit VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 46 conj _ Drop_coref=64|SpaceAfter=No +49 , , PUNCT Z:------------- _ 54 punct _ _ +50 že že SCONJ J,------------- _ 54 mark _ _ +51 o o ADP RR--4---------- AdpType=Prep|Case=Acc 52 case _ _ +52 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 54 dobj _ Coref=79 +53 nikdo nikdo PRON PWM-1---------- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Neg|PronType=Neg 54 nsubj _ _ +54 neusiluje usilovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 48 ccomp _ _ +55 ani ani CONJ J^------------- _ 59 advmod:emph _ _ +56 v v ADP RR--6---------- AdpType=Prep|Case=Loc 59 case _ _ +57 jiné jiný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 59 amod _ _ +58 politické politický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 59 amod _ _ +59 straně strana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 54 nmod _ SpaceAfter=No +60 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 14 +# text = Obdobný pocit mám ohledně demonopolizovaného rozhlasu. +1 Obdobný obdobný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ _ +3 mám mít VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=64 +4 ohledně ohledně ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +5 demonopolizovaného demonopolizovaný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 rozhlasu rozhlas NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 15 +# text = Nemám identický pocit u tiskových kanceláří, kde monopol té jedné jediné je stále velmi výrazný, a také ohledně televize tento pocit nemám. +1 Nemám mít VERB VB-S---1P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 identický identický ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ Drop_coref=80 +4 u u ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +5 tiskových tiskový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 6 amod _ _ +6 kanceláří kancelář NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 1 nmod _ Coref=81|SpaceAfter=No +7 , , PUNCT Z:------------- _ 16 punct _ _ +8 kde kde ADV Db------------- _ 16 advmod _ Coref=81 +9 monopol monopol NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 16 nsubj _ _ +10 té ten PRON PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 9 nmod _ _ +11 jedné jeden NUM ClFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 12 nummod _ _ +12 jediné jediný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +13 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 16 cop _ _ +14 stále stále ADV Db------------- _ 16 advmod _ _ +15 velmi velmi ADV Db------------- _ 16 advmod _ _ +16 výrazný výrazný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 acl _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 1 punct _ _ +18 a a CONJ J^------------- _ 1 cc _ Drop_coref=80 +19 také také ADV Db------------- _ 24 advmod _ _ +20 ohledně ohledně ADP RR--2---------- AdpType=Prep|Case=Gen 21 case _ _ +21 televize televize NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 24 nmod _ _ +22 tento tento PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 24 nsubj _ _ +23 pocit pocit NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 24 dobj _ Drop_coref=80 +24 nemám mít VERB VB-S---1P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 16 +# text = Může možná vznikat někde jistý problém z hlediska okresních novin, ale ani tam se mi to nezdá tak dramatické, protože každý si může koupit celostátní deník a nemůže se vymlouvat, že je vázán na Nové Příbramsko, Sedlčansko, Benešovsko či Vlašimsko. +1 Může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 možná možná ADV Db------------- _ 1 cc _ _ +3 vznikat vznikat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 1 xcomp _ _ +4 někde někde ADV Db------------- _ 1 advmod _ _ +5 jistý jistý ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 problém problém NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 1 nsubj _ _ +7 z z ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +8 hlediska hledisko NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 7 mwe _ _ +9 okresních okresní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 6 nmod _ Coref=82|SpaceAfter=No +11 , , PUNCT Z:------------- _ 1 punct _ _ +12 ale ale CONJ J^------------- _ 1 cc _ _ +13 ani ani CONJ J^------------- _ 14 advmod:emph _ _ +14 tam tam ADV Db------------- _ 18 advmod _ Coref=82 +15 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 18 expl _ _ +16 mi já PRON PH-S3--1------- Case=Dat|Number=Sing|Person=1|PronType=Prs|Variant=Short 18 dobj _ Coref=80 +17 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 18 nsubj _ _ +18 nezdá zdát VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +19 tak tak ADV Db------------- _ 20 advmod _ _ +20 dramatické dramatický ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 18 dobj _ SpaceAfter=No +21 , , PUNCT Z:------------- _ 25 punct _ _ +22 protože protože SCONJ J,------------- _ 25 mark _ _ +23 každý každý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 nsubj _ Coref=83 +24 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 26 iobj _ Coref=83 +25 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 advcl _ _ +26 koupit koupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 25 xcomp _ _ +27 celostátní celostátní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 26 dobj _ _ +29 a a CONJ J^------------- _ 1 cc _ _ +30 nemůže moci VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +31 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 32 expl _ _ +32 vymlouvat vymlouvat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 30 xcomp _ Coref=84|SpaceAfter=No +33 , , PUNCT Z:------------- _ 36 punct _ _ +34 že že SCONJ J,------------- _ 36 mark _ _ +35 je být AUX VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 36 auxpass _ _ +36 vázán vázat VERB VsYS---XX-AP--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 32 ccomp _ Drop_coref=83 +37 na na ADP RR--4---------- AdpType=Prep|Case=Acc 39 case _ _ +38 Nové nový ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 39 amod _ _ +39 Příbramsko Příbramsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 36 dobj _ SpaceAfter=No +40 , , PUNCT Z:------------- _ 39 punct _ _ +41 Sedlčansko Sedlčansko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ SpaceAfter=No +42 , , PUNCT Z:------------- _ 39 punct _ _ +43 Benešovsko Benešovsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ _ +44 či či CONJ J^------------- _ 39 cc _ _ +45 Vlašimsko Vlašimsko PROPN NNNS4-----A---- Case=Acc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 39 conj _ SpaceAfter=No +46 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 17 +# text = Ani těmto argumentům nevěřím. +1 Ani ani CONJ J^------------- _ 3 advmod:emph _ _ +2 těmto tento DET PDXP3---------- Case=Dat|Number=Plur|PronType=Dem 3 det _ _ +3 argumentům argument NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 4 dobj _ Coref=84 +4 nevěřím věřit VERB VB-S---1P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=80|SpaceAfter=No +5 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 18 +# text = o +1 o o PUNCT Z:------------- _ 0 punct _ _ + +# sent_id = 19 +# text = Odmítáte tedy tvrzení, že se ODS snaží získat vliv na deník Telegraf? +1 Odmítáte odmítat VERB VB-P---2P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=80 +2 tedy tedy ADV Db------------- _ 1 cc _ _ +3 tvrzení tvrzení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 že že SCONJ J,------------- _ 8 mark _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl _ _ +7 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 8 nsubj _ Coref=74 +8 snaží snažit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 acl _ _ +9 získat získat VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 8 xcomp _ Drop_coref=74 +10 vliv vliv NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 9 dobj _ Drop_coref=74 +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ Coref=85 +13 Telegraf Telegraf PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Pro|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +14 ? ? PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 20 +# text = Již jsem několikrát řekl, že kdybych měl na celém spektru novin hledat deník, o kterém bych si myslel, že je dlouhodobě mým postojům nejbližší, tak by to byl Telegraf. +1 Již již ADV Db------------- _ 4 advmod _ _ +2 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 4 aux _ _ +3 několikrát několikrát PRON Co------------- NumType=Mult|PronType=Dem,Ind 4 advmod _ _ +4 řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Drop_coref=80|SpaceAfter=No +5 , , PUNCT Z:------------- _ 34 punct _ _ +6 že že SCONJ J,------------- _ 34 mark _ _ +7-8 kdybych _ _ _ _ _ _ _ _ +7 když když SCONJ J,------------- _ 9 mark _ _ +8 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 9 aux _ _ +9 měl mít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 34 advcl _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +11 celém celý ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 12 amod _ _ +12 spektru spektrum NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ _ +13 novin noviny NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 12 nmod _ Coref=78 +14 hledat hledat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 9 xcomp _ Drop_coref=80 +15 deník deník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 14 dobj _ Coref=86|SpaceAfter=No +16 , , PUNCT Z:------------- _ 21 punct _ _ +17 o o ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +18 kterém který PRON P4ZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 21 iobj _ Coref=86 +19 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 21 aux _ _ +20 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 21 expl _ _ +21 myslel myslet VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 15 acl _ Drop_coref=80|SpaceAfter=No +22 , , PUNCT Z:------------- _ 28 punct _ _ +23 že že SCONJ J,------------- _ 28 mark _ _ +24 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 28 cop _ Drop_coref=86 +25 dlouhodobě dlouhodobě ADV Dg-------1A---- Degree=Pos|Negative=Pos 28 advmod _ _ +26 mým můj DET PSXP3-S1------- Case=Dat|Number=Plur|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 27 det _ Coref=80 +27 postojům postoj NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 28 dobj _ _ +28 nejbližší blízký ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 21 ccomp _ SpaceAfter=No +29 , , PUNCT Z:------------- _ 9 punct _ _ +30 tak tak ADV Db------------- _ 34 advmod _ _ +31 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 34 aux _ _ +32 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 34 nsubj _ Coref=86 +33 byl být VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 34 cop _ Coref=87 +34 Telegraf Telegraf NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 ccomp _ Coref=85|SpaceAfter=No +35 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 21 +# text = Takže myšlenku, že bych měl motivaci, aby se toto změnilo, považuji za zcela lichou. +1 Takže takže SCONJ J,------------- _ 15 mark _ _ +2 myšlenku myšlenka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 15 dobj _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 že že SCONJ J,------------- _ 6 mark _ _ +5 bych být AUX Vc-S---1------- Mood=Cnd|Number=Sing|Person=1|VerbForm=Fin 6 aux _ _ +6 měl mít VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 2 acl _ Drop_coref=80 +7 motivaci motivace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 dobj _ Drop_coref=80|SpaceAfter=No +8 , , PUNCT Z:------------- _ 13 punct _ _ +9-10 aby _ _ _ _ _ _ _ _ +9 aby aby SCONJ J,------------- _ 13 mark _ _ +10 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 13 aux _ _ +11 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 13 expl _ _ +12 toto tento PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 13 nsubj _ Coref=87 +13 změnilo změnit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 7 acl _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 6 punct _ _ +15 považuji považovat VERB VB-S---1P-AA--1 Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=80 +16 za za ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +17 zcela zcela ADV Db------------- _ 18 advmod _ _ +18 lichou lichý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 iobj _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 15 punct _ _ + +# sent_id = 22 +# text = S nikým jsem tam nekonverzoval, žádný politický orgán ODS se tímto tématem nezabýval. +1 S s ADP RR--7---------- AdpType=Prep|Case=Ins 2 case _ _ +2 nikým nikdo PRON PWM-7---------- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Neg|PronType=Neg 5 dobj _ _ +3 jsem být AUX VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 5 aux _ _ +4 tam tam ADV Db------------- _ 5 advmod _ Coref=85 +5 nekonverzoval konverzovat VERB VpYS---XR-NA--- Aspect=Imp|Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Drop_coref=80|SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 žádný žádný DET PWYS1---------- Case=Nom|Gender=Masc|Negative=Neg|Number=Sing|PronType=Neg 9 det _ _ +8 politický politický ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 orgán orgán NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 14 nsubj _ _ +10 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 9 nmod _ Coref=74 +11 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 expl _ _ +12 tímto tento DET PDZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Dem 13 det _ _ +13 tématem téma NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ Coref=74 +14 nezabýval zabývat VERB VpYS---XR-NA--- Aspect=Imp|Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 23 +# text = o +1 o o PUNCT Z:------------- _ 0 punct _ _ + +# sent_id = 24 +# text = Jaký máte názor na účast nezávislých kandidátů v komunálních volbách? +1 Jaký jaký DET P4IS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|PronType=Int,Rel 3 det _ _ +2 máte mít VERB VB-P---2P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=2|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=80 +3 názor názor NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 2 dobj _ Drop_coref=80 +4 na na ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 účast účast NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ _ +6 nezávislých závislý ADJ AAMP2----1N---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 7 amod _ _ +7 kandidátů kandidát NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ Coref=92 +8 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +9 komunálních komunální ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ SpaceAfter=No +11 ? ? PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 25 +# text = ODS odedávna zastávala názor, který je stoprocentně i názorem mým, že základní entitou naší politické scény je politická strana, a že pokus nahrazovat politickou stranu něčím jiným je vždycky trochu zvláštností. +1 ODS ODS PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 3 nsubj _ Coref=74 +2 odedávna odedávna ADV Db------------- _ 3 advmod _ _ +3 zastávala zastávat VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +4 názor názor NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ Drop_coref=74|SpaceAfter=No +5 , , PUNCT Z:------------- _ 10 punct _ _ +6 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 10 nsubj _ Coref=74 +7 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 10 cop _ _ +8 stoprocentně stoprocentně ADV Dg-------1A---- Degree=Pos|Negative=Pos 10 advmod _ _ +9 i i CONJ J^------------- _ 10 advmod:emph _ _ +10 názorem názor NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 4 acl _ _ +11 mým můj DET PSZS7-S1------- Case=Ins|Gender=Masc,Neut|Number=Sing|Number[psor]=Sing|Person=1|Poss=Yes|PronType=Prs 10 det _ Coref=80|SpaceAfter=No +12 , , PUNCT Z:------------- _ 15 punct _ _ +13 že že SCONJ J,------------- _ 15 mark _ _ +14 základní základní_,s ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 entitou entita NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 10 acl _ Coref=94 +16 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 18 det _ _ +17 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 scény scéna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 15 nmod _ Coref=95 +19 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 cop _ _ +20 politická politický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ Coref=63|SpaceAfter=No +22 , , PUNCT Z:------------- _ 15 punct _ _ +23 a a CONJ J^------------- _ 15 cc _ _ +24 že že SCONJ J,------------- _ 34 mark _ _ +25 pokus pokus NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 34 nsubj _ Drop_coref=88 +26 nahrazovat nahrazovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 25 acl _ Drop_coref=88 +27 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 26 dobj _ Coref=63 +29 něčím něco PRON PZ--7---------- Case=Ins|PronType=Ind 26 nmod _ _ +30 jiným jiný ADJ AANS7----1A---- Case=Ins|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 29 amod _ _ +31 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 34 cop _ _ +32 vždycky vždycky ADV Db------------- _ 34 advmod _ _ +33 trochu trochu ADV Db------------- _ 34 advmod _ _ +34 zvláštností zvláštnost NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 26 +# text = Důvodů je mnoho, primární ten, že v kandidátovi politické strany volí občan nejen konkrétní osobu, ale i politickou stranu, která je jeho zázemím. +1 Důvodů důvod NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nsubj _ _ +2 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 mnoho mnoho DET Ca--1---------- Case=Nom|NumType=Card|PronType=Dem,Ind 1 det:numgov _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 2 punct _ _ +5 primární primární ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 conj _ _ +6 ten ten PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 2 conj _ SpaceAfter=No +7 , , PUNCT Z:------------- _ 13 punct _ _ +8 že že SCONJ J,------------- _ 13 mark _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 kandidátovi kandidát NOUN NNMS6-----A---- Animacy=Anim|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ Coref=90 +11 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 12 amod _ _ +12 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=63 +13 volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ _ +14 občan občan NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 13 nsubj _ Coref=91 +15 nejen nejen PART TT------------- _ 17 advmod:emph _ _ +16 konkrétní konkrétní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 17 amod _ _ +17 osobu osoba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 dobj _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 17 punct _ _ +19 ale ale CONJ J^------------- _ 17 cc _ _ +20 i i CONJ J^------------- _ 22 advmod:emph _ _ +21 politickou politický ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 22 amod _ _ +22 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 17 conj _ Coref=89|SpaceAfter=No +23 , , PUNCT Z:------------- _ 27 punct _ _ +24 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 27 nsubj _ Coref=89 +25 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 27 cop _ _ +26 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 27 det _ Coref=90 +27 zázemím zázemí NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 22 acl _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 27 +# text = Volí určitý konzistentní politický program. +1 Volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=91 +2 určitý určitý ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +3 konzistentní konzistentní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +4 politický politický ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 amod _ _ +5 program program NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dobj _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 28 +# text = Volí chování této strany a nevolí pouze hezký, případně méně půvabný obličej kandidáta, za kterým nic nestojí. +1 Volí volit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +2 chování chování NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 1 dobj _ _ +3 této tento DET PDFS2---------- Case=Gen|Gender=Fem|Number=Sing|PronType=Dem 4 det _ _ +4 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ Coref=89 +5 a a CONJ J^------------- _ 1 cc _ Drop_coref=91 +6 nevolí volit VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 conj _ _ +7 pouze pouze ADV Db------------- _ 8 advmod:emph _ _ +8 hezký hezký ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 8 punct _ _ +10 případně případně ADV Dg-------1A---- Degree=Pos|Negative=Pos 8 cc _ _ +11 méně málo ADV Dg-------2A---- Degree=Cmp|Negative=Pos 12 advmod _ _ +12 půvabný půvabný ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 conj _ _ +13 obličej obličej NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 6 dobj _ Coref=93 +14 kandidáta kandidát NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ Coref=92|SpaceAfter=No +15 , , PUNCT Z:------------- _ 19 punct _ _ +16 za za ADP RR--7---------- AdpType=Prep|Case=Ins 17 case _ _ +17 kterým který PRON P4ZS7---------- Case=Ins|Gender=Masc,Neut|Number=Sing|PronType=Int,Rel 19 advmod _ Coref=93 +18 nic nic PRON PW--1---------- Case=Nom|Negative=Neg|PronType=Neg 19 nsubj _ _ +19 nestojí stát VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 14 acl _ SpaceAfter=No +20 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 29 +# text = Není ničím vázán, může své postoje libovolně měnit. +1 Není být AUX VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 auxpass _ _ +2 ničím nic PRON PW--7---------- Case=Ins|Negative=Neg|PronType=Neg 3 nmod _ _ +3 vázán vázat VERB VsYS---XX-AP--- Aspect=Imp|Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 0 root _ Drop_coref=92|SpaceAfter=No +4 , , PUNCT Z:------------- _ 3 punct _ _ +5 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 conj _ _ +6 své svůj DET P8YP4---------1 Case=Acc|Gender=Masc|Number=Plur|Poss=Yes|PronType=Prs|Reflex=Yes 7 det _ _ +7 postoje postoj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ _ +8 libovolně libovolně ADV Dg-------1A---- Degree=Pos|Negative=Pos 9 advmod _ _ +9 měnit měnit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 5 xcomp _ Drop_coref=92|SpaceAfter=No +10 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 30 +# text = To je naše dlouhodobé přesvědčení, a proto vždy budeme preferovat politické strany jako základní entitu politické scény oproti individualizovaným nezávislým kandidátům. +1 To ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 5 nsubj _ _ +2 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 5 cop _ _ +3 naše můj DET PSHS1-P1------- Case=Nom|Gender=Fem,Neut|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 5 det _ Coref=74 +4 dlouhodobé dlouhodobý ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 5 amod _ _ +5 přesvědčení přesvědčení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ _ +7 a a CONJ J^------------- _ 5 cc _ _ +8 proto proto CONJ J^------------- _ 5 cc _ _ +9 vždy vždy ADV Db------------- _ 11 advmod _ _ +10 budeme být AUX VB-P---1F-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=1|Tense=Fut|VerbForm=Fin|Voice=Act 11 aux _ _ +11 preferovat preferovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 5 conj _ Drop_coref=74 +12 politické politický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 strany strana NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 11 dobj _ Coref=63 +14 jako jako SCONJ J,------------- _ 16 mark _ _ +15 základní základní_,s ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ _ +16 entitu entita NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 13 xcomp _ Coref=94 +17 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 scény scéna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 16 nmod _ Coref=95 +19 oproti oproti ADP RR--3---------- AdpType=Prep|Case=Dat 22 case _ _ +20 individualizovaným individualizovaný ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 22 amod _ _ +21 nezávislým závislý ADJ AAMP3----1N---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 22 amod _ _ +22 kandidátům kandidát NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 18 nmod _ Coref=92|SpaceAfter=No +23 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 31 +# text = Na druhé straně vím, že v řadě malých obcí nejsou zaběhnuté politické strany, jednotlivec není schopen stranu vytvořit či založit její odbočku. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 druhé druhý ADJ CrFS6---------- Case=Loc|Gender=Fem|Number=Sing|NumType=Ord 3 amod _ _ +3 straně strana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +4 vím vědět VERB VB-S---1P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=80|SpaceAfter=No +5 , , PUNCT Z:------------- _ 11 punct _ _ +6 že že SCONJ J,------------- _ 11 mark _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 řadě řada NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ _ +9 malých malý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 obcí obec NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 8 nmod _ Coref=98 +11 nejsou být VERB VB-P---3P-NA--- Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 4 ccomp _ _ +12 zaběhnuté zaběhnutý ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 14 amod _ _ +13 politické politický ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 14 amod _ _ +14 strany strana NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 11 nsubj _ Coref=63|SpaceAfter=No +15 , , PUNCT Z:------------- _ 18 punct _ Coref=97 +16 jednotlivec jednotlivec NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 18 nsubj _ Coref=96 +17 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 18 cop _ _ +18 schopen schopný ADJ ACYS------A---- Gender=Masc|Negative=Pos|Number=Sing|Variant=Short 14 acl _ _ +19 stranu strana NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 dobj _ Coref=63 +20 vytvořit vytvořit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 18 xcomp _ _ +21 či či CONJ J^------------- _ 20 cc _ Drop_coref=96 +22 založit založit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 20 conj _ _ +23 její jeho DET PSFSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 24 det _ Coref=63 +24 odbočku odbočka NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 22 dobj _ SpaceAfter=No +25 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 32 +# text = To znamená, že bude kandidovat bez podpory politické strany. +1 To ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 2 nsubj _ Coref=97 +2 znamená znamenat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 že že SCONJ J,------------- _ 6 mark _ _ +5 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 6 aux _ _ +6 kandidovat kandidovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 ccomp _ Drop_coref=96 +7 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +8 podpory podpora NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +9 politické politický ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +10 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ Coref=63|SpaceAfter=No +11 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 33 +# text = V realitě malých obcí není důvod proti tomu vystupovat. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 realitě realita NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +3 malých malý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 4 amod _ _ +4 obcí obec NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 2 nmod _ Coref=98 +5 není být VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 důvod důvod NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ Drop_coref=99 +7 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 8 case _ _ +8 tomu ten PRON PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 9 advmod _ Coref=96 +9 vystupovat vystupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 6 acl _ Drop_coref=99|SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 1 +# text = Paragrafy +# newdoc +# newpar +1 Paragrafy paragraf NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 0 root _ SpacesAfter=\s\n\n + +# sent_id = 2 +# text = V nakladatelství Olympia odebral již soudně trestaný osmadvacetiletý podnikatel z Prahy časopisy za 25 000 Kč, které dosud nezaplatil. +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 nakladatelství nakladatelství NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 4 obl _ _ +3 Olympia Olympia PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Com|Number=Sing|Polarity=Pos 2 nmod _ _ +4 odebral odebrat VERB VpYS---XR-AA--- Gender=Masc|Number=Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 již již ADV Db------------- _ 6 advmod:emph _ _ +6 soudně soudně ADV Dg-------1A---- Degree=Pos|Polarity=Pos 4 advmod _ _ +7 trestaný trestaný ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +8 osmadvacetiletý osmadvacetiletý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 9 amod _ _ +9 podnikatel podnikatel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 4 nsubj _ Coref=101 +10 z z ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 Prahy Praha PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 9 nmod _ _ +12 časopisy časopis NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Plur|Polarity=Pos 4 obj _ Coref=100 +13 za za ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +14 25 25 NUM C=------------- NumForm=Digit|NumType=Card 15 nummod _ _ +15 000 000 NUM C=------------- NumForm=Digit|NumType=Card 4 obl _ _ +16 Kč Kč NOUN NNFXX-----A---- Gender=Fem|Polarity=Pos 15 nmod _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 20 punct _ _ +18 které který DET P4YP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Int,Rel 20 obj _ Coref=100 +19 dosud dosud ADV Db------------- PronType=Dem 20 advmod _ _ +20 nezaplatil zaplatit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 15 acl _ Drop_coref=101|SpaceAfter=No +21 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 3 +# text = Kriminalisté zjistili, že nejméně v jedenácti případech neuhradil zboží za milion a půl korun odebrané na fakturu. +1 Kriminalisté kriminalista NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 2 nsubj _ _ +2 zjistili zjistit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 9 punct _ _ +4 že že SCONJ J,------------- _ 9 mark _ _ +5 nejméně málo ADV Dg-------3A---- Degree=Sup|Polarity=Pos 8 advmod:emph _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +7 jedenácti jedenáct NUM Cn-P6---------- Case=Loc|Number=Plur|NumForm=Word|NumType=Card 8 nummod _ _ +8 případech případ NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 9 obl _ _ +9 neuhradil uhradit VERB VpYS---XR-NA--- Aspect=Perf|Gender=Masc|Number=Sing|Polarity=Neg|Tense=Past|VerbForm=Part|Voice=Act 2 ccomp _ Drop_coref=101 +10 zboží zboží NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 9 obj _ _ +11 za za ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 milion milión NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 10 nmod _ _ +13 a a CCONJ J^------------- _ 14 cc _ _ +14 půl půl NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 12 conj _ _ +15 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 12 nmod _ _ +16 odebrané odebraný ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 10 amod _ _ +17 na na ADP RR--4---------- AdpType=Prep|Case=Acc 18 case _ _ +18 fakturu faktura NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 16 obl _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 1 +# text = Literatura, v níž se doba nevidí +1 Literatura literatura NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ Coref=102|SpaceAfter=No +2 , , PUNCT Z:------------- _ 7 punct _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 níž jenž PRON P9FS6---------- Case=Loc|Gender=Fem|Number=Sing|PrepCase=Pre|PronType=Rel 7 nmod _ Coref=102 +5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 7 auxpass:reflex _ Coref=103 +6 doba doba NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 7 nsubj _ Coref=103 +7 nevidí vidět VERB VB-S---3P-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 1 acl _ _ + +# sent_id = 2 +# text = Petr Matoušek, Liblice Letošní pátý ročník semináře určeného zahraničním překladatelům a znalcům české literatury hostí od pondělního večera kultovní místo české literatury, zámeček v Liblicích u Mělníka. +1 Petr Petr PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 16 nsubj _ _ +2 Matoušek Matoušek PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ SpaceAfter=No +3 , , PUNCT Z:------------- _ 1 punct _ _ +4 Liblice Liblice PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 1 dep _ Coref=106 +5 Letošní letošní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +6 pátý pátý ADJ CrIS4---------- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|NumType=Ord 7 amod _ _ +7 ročník ročník NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 dep _ Coref=109 +8 semináře seminář NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +9 určeného určený ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 8 amod _ _ +10 zahraničním zahraniční ADJ AAMP3----1A---- Animacy=Anim|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +11 překladatelům překladatel NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 9 dobj _ _ +12 a a CONJ J^------------- _ 11 cc _ Coref=110 +13 znalcům znalec NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ Coref=104 +15 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ Coref=105 +16 hostí hostit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +17 od od ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +18 pondělního pondělní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 večera večer NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ _ +20 kultovní kultovní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 19 amod _ _ +21 místo místo ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +22 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 23 amod _ Coref=104 +23 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 20 nmod _ Coref=105|SpaceAfter=No +24 , , PUNCT Z:------------- _ 16 punct _ Coref=107 +25 zámeček zámeček NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 16 conj _ _ +26 v v ADP RR--6---------- AdpType=Prep|Case=Loc 27 case _ _ +27 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 25 nmod _ Coref=106 +28 u u ADP RR--2---------- AdpType=Prep|Case=Gen 29 case _ _ +29 Mělníka Mělník PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 27 nmod _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 16 punct _ _ + +# sent_id = 3 +# text = Zde se roku 1963 uskutečnila pověstná kafkovská konference, zde na ni v zájmu o pražskou německou literaturu záhy po listopadových událostech navázala konference werfelovská. +1 Zde zde ADV Db------------- _ 5 advmod _ Coref=107 +2 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 auxpass:reflex _ _ +3 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 5 nmod _ _ +4 1963 1963 NUM C=------------- NumForm=Digit|NumType=Card 3 nummod _ _ +5 uskutečnila uskutečnit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 pověstná pověstný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +7 kafkovská kafkovský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 konference konference NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ Coref=108|SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 zde zde ADV Db------------- _ 23 advmod _ _ +11 na na ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 ni on PRON P5FS4--3------- Case=Acc|Gender=Fem|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 23 nmod _ Coref=108 +13 v v ADP RR--6---------- AdpType=Prep|Case=Loc 18 case _ _ +14 zájmu zájem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 13 mwe _ _ +15 o o ADP RR--4---------- AdpType=Prep|Case=Acc 13 mwe _ _ +16 pražskou pražský ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 německou německý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +18 literaturu literatura NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 23 nmod _ _ +19 záhy záhy ADV Db------------- _ 23 advmod _ _ +20 po po ADP RR--6---------- AdpType=Prep|Case=Loc 22 case _ _ +21 listopadových listopadový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 událostech událost_,a NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 23 nmod _ _ +23 navázala navázat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ _ +24 konference konference NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 23 nsubj _ _ +25 werfelovská werfelovský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 24 amod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Pětidenního semináře, který bude zakončen ve Znojmě, se účastní čtyřicet bohemistů z různých částí světa. +1 Pětidenního pětidenní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 semináře seminář NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 dobj _ Coref=109|SpaceAfter=No +3 , , PUNCT Z:------------- _ 6 punct _ _ +4 který který PRON P4YS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Int,Rel 6 nsubjpass _ Coref=109 +5 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 6 auxpass _ _ +6 zakončen zakončit VERB VsYS---XX-AP--- Gender=Masc|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 2 acl _ _ +7 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 8 case _ _ +8 Znojmě Znojmo PROPN NNNS6-----A---- Case=Loc|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 6 punct _ _ +10 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 11 expl _ _ +11 účastní účastnit VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +12 čtyřicet čtyřicet NUM Cn-S1---------- Case=Nom|Number=Sing|NumForm=Word|NumType=Card 13 nummod:gov _ _ +13 bohemistů bohemista NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 11 nsubj _ Coref=110 +14 z z ADP RR--2---------- AdpType=Prep|Case=Gen 16 case _ _ +15 různých různý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 částí část NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 13 nmod _ _ +17 světa svět NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 11 punct _ _ + +# sent_id = 5 +# text = V Liblicích mají možnost seznámit se s nejnovějším vývojem na poli naší literatury. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 3 nmod _ Coref=106 +3 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=110 +4 možnost možnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 3 dobj _ Drop_coref=110 +5 seznámit seznámit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 4 acl _ Drop_coref=110 +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 expl _ _ +7 s s ADP RR--7---------- AdpType=Prep|Case=Ins 9 case _ _ +8 nejnovějším nový ADJ AAIS7----3A---- Animacy=Inan|Case=Ins|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 vývojem vývoj NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 5 dobj _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 poli pole NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ _ +12 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 13 det _ Coref=104 +13 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ Coref=105|SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 6 +# text = Pro přizvané hosty z různých literárních institucí a periodik je to zároveň zajímavá příležitost pozorovat, jak obor reflektuje sám sebe. +1 Pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 3 case _ _ +2 přizvané přizvaný ADJ AAMP4----1A---- Animacy=Anim|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +3 hosty host NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ Coref=111 +4 z z ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +5 různých různý ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +6 literárních literární ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +7 institucí instituce NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 3 nmod _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 periodik periodikum NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 7 conj _ _ +10 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 14 cop _ _ +11 to ten PRON PDNS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Dem 14 nsubj _ _ +12 zároveň zároveň ADV Db------------- _ 14 advmod _ _ +13 zajímavá zajímavý ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 příležitost příležitost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 0 root _ _ +15 pozorovat pozorovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 14 acl _ Drop_coref=111|SpaceAfter=No +16 , , PUNCT Z:------------- _ 19 punct _ _ +17 jak jak ADV Db------------- _ 19 advmod _ _ +18 obor obor NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 19 nsubj _ Coref=112 +19 reflektuje reflektovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 ccomp _ _ +20 sám sám PRON PLYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Tot 18 xcomp _ _ +21 sebe se PRON P6-X4---------- Case=Acc|PronType=Prs|Reflex=Yes 19 dobj _ Coref=112|SpaceAfter=No +22 . . PUNCT Z:------------- _ 14 punct _ _ + +# sent_id = 7 +# text = Účastníci setkání velice ocenili nedávno vydanou přehledovou studii Panorama české literatury. +1 Účastníci účastník NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ Coref=110 +2 setkání setkání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 1 nmod _ Coref=109 +3 velice velice ADV Db------------- _ 4 advmod _ _ +4 ocenili ocenit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 nedávno nedávno ADV Db------------- _ 6 advmod _ _ +6 vydanou vydaný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +7 přehledovou přehledový ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 8 amod _ _ +8 studii studie NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +9 Panorama Panorama PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Com|Negative=Pos|Number=Sing 8 nmod _ Coref=113 +10 české český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 11 amod _ Coref=104 +11 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Coref=105|SpaceAfter=No +12 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 8 +# text = O její metodologické výstavbě promluvili autoři Jan Schneider a Lubomír Machala z olomoucké univerzity. +1 O o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +2 její jeho DET PSFSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 4 det _ Coref=113 +3 metodologické metodologický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 výstavbě výstavba NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +5 promluvili promluvit VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 autoři autor NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ _ +7 Jan Jan PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 6 nmod _ _ +8 Schneider Schneider PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 a a CONJ J^------------- _ 7 cc _ _ +10 Lubomír Lubomír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 7 conj _ _ +11 Machala Machala PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 10 name _ Coref=114 +12 z z ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +13 olomoucké olomoucký ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 14 amod _ _ +14 univerzity univerzita NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 9 +# text = Machala zároveň v Liblicích představil zajímavá díla poslední doby (práce Daniely Hodrové, Michala Viewegha, Jáchyma Topola, avšak i Martina Nezvala či Maxi Marysko). +1 Machala Machala PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 5 nsubj _ Coref=114 +2 zároveň zároveň ADV Db------------- _ 5 advmod _ _ +3 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 Liblicích Liblice PROPN NNFP6-----A---- Case=Loc|Gender=Fem|NameType=Geo|Negative=Pos|Number=Plur 5 nmod _ Coref=106 +5 představil představit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 zajímavá zajímavý ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 7 amod _ _ +7 díla dílo NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 5 dobj _ _ +8 poslední poslední ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 9 amod _ _ +9 doby doba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 nmod _ _ +10 ( ( PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +11 práce práce NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 7 appos _ _ +12 Daniely Daniela PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 11 nmod _ _ +13 Hodrové Hodrová PROPN NNFS2-----A---- Case=Gen|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 12 name _ SpaceAfter=No +14 , , PUNCT Z:------------- _ 12 punct _ _ +15 Michala Michal PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +16 Viewegha Viewegh PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 15 name _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 12 punct _ _ +18 Jáchyma Jáchym PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +19 Topola Topol PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 18 name _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 12 punct _ _ +21 avšak avšak CONJ J^------------- _ 12 cc _ _ +22 i i CONJ J^------------- _ 23 advmod:emph _ _ +23 Martina Martin PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 12 conj _ _ +24 Nezvala Nezval PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 23 name _ _ +25 či či CONJ J^------------- _ 23 cc _ _ +26 Maxi Maxi PROPN NNXXX-----A---- NameType=Giv|Negative=Pos 27 nmod _ _ +27 Marysko Marysko PROPN NNXXX-----A---- NameType=Sur|Negative=Pos 23 conj _ SpaceAfter=No +28 ) ) PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 10 +# text = Literární kritik Milan Jungmann shrnul kritické interpretace zásadních textů tohoto období (Jak se dělá chlapec, Nesmrtelnost, Čekání na tmu, čekání na světlo, Památník a Sestra). +1 Literární literární ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 2 amod _ _ +2 kritik kritik NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +3 Milan Milan PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nsubj _ _ +4 Jungmann Jungmann PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 3 name _ Coref=115 +5 shrnul shrnout VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 kritické kritický ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 7 amod _ _ +7 interpretace interpretace NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ _ +8 zásadních zásadní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 9 amod _ _ +9 textů text NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ _ +10 tohoto tento DET PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 11 det _ _ +11 období období NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ Coref=103 +12 ( ( PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +13 Jak jak ADV Db------------- _ 15 advmod _ _ +14 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 15 auxpass:reflex _ _ +15 dělá dělat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 acl _ _ +16 chlapec chlapec NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 15 nsubj _ SpaceAfter=No +17 , , PUNCT Z:------------- _ 15 punct _ _ +18 Nesmrtelnost nesmrtelnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 15 punct _ _ +20 Čekání čekání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 15 conj _ _ +21 na na ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 tmu tma NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 20 nmod _ SpaceAfter=No +23 , , PUNCT Z:------------- _ 15 punct _ _ +24 čekání čekání NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 15 conj _ _ +25 na na ADP RR--4---------- AdpType=Prep|Case=Acc 26 case _ _ +26 světlo světlo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 24 nmod _ SpaceAfter=No +27 , , PUNCT Z:------------- _ 15 punct _ _ +28 Památník památník NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 15 conj _ _ +29 a a CONJ J^------------- _ 15 cc _ _ +30 Sestra sestra NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 conj _ SpaceAfter=No +31 ) ) PUNCT Z:------------- _ 15 punct _ SpaceAfter=No +32 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 11 +# text = Připomněl také doposud neúspěšnou snahu naší literatury, aby doba poznala sama sebe. +1 Připomněl připomenout VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Drop_coref=115 +2 také také ADV Db------------- _ 1 advmod _ _ +3 doposud doposud ADV Db------------- _ 4 advmod _ _ +4 neúspěšnou úspěšný ADJ AAFS4----1N---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Neg|Number=Sing 5 amod _ _ +5 snahu snaha NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 1 dobj _ _ +6 naší můj DET PSFS2-P1------- Case=Gen|Gender=Fem|Number=Sing|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 7 det _ Coref=104 +7 literatury literatura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ Coref=105|SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9-10 aby _ _ _ _ _ _ _ _ +9 aby aby SCONJ J,------------- _ 12 mark _ _ +10 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 12 aux _ _ +11 doba doba NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 nsubj _ Coref=103 +12 poznala poznat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 acl _ _ +13 sama sám PRON PLFS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Tot 11 xcomp _ _ +14 sebe se PRON P6-X4---------- Case=Acc|PronType=Prs|Reflex=Yes 12 dobj _ Coref=103|SpaceAfter=No +15 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 12 +# text = Nad Jungmannovými tezemi se živě diskutovalo. +1 Nad nad ADP RR--7---------- AdpType=Prep|Case=Ins 3 case _ _ +2 Jungmannovými Jungmannův ADJ AUFP7M--------- Case=Ins|Gender=Fem|Gender[psor]=Masc|NameType=Sur|Number=Plur|Poss=Yes 3 amod _ Coref=115 +3 tezemi teze NOUN NNFP7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Plur 6 dobj _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 6 auxpass:reflex _ _ +5 živě živě ADV Dg-------1A---- Degree=Pos|Negative=Pos 6 advmod _ _ +6 diskutovalo diskutovat VERB VpNS---XR-AA--- Aspect=Imp|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +7 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 13 +# text = Podvečerní debata se týkala otázek překladatelské tvorby a státního grantového projektu Literatura a autoři České repbuliky. +1 Podvečerní podvečerní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 debata debata NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ _ +3 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 4 expl _ _ +4 týkala týkat VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 otázek otázka NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 dobj _ _ +6 překladatelské překladatelský ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 tvorby tvorba NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 5 nmod _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 státního státní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +10 grantového grantový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 11 amod _ _ +11 projektu projekt NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ Coref=116 +12 Literatura literatura NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 11 nmod _ _ +13 a a CONJ J^------------- _ 12 cc _ _ +14 autoři autor NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 12 conj _ _ +15 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ Coref=104 +16 repbuliky repbulika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 12 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 14 +# text = V jeho rámci se příští rok chystá ministerstvo kultury podporovat vydávání knih našich autorů ve světě. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 3 det _ Coref=116 +3 rámci rámec NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 7 expl _ _ +5 příští příští ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +7 chystá chystat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +8 ministerstvo ministerstvo NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 7 nsubj _ Coref=117 +9 kultury kultura NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ _ +10 podporovat podporovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 7 xcomp _ Drop_coref=117 +11 vydávání vydávání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 10 dobj _ _ +12 knih kniha NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 11 nmod _ _ +13 našich můj DET PSXP2-P1------- Case=Gen|Number=Plur|Number[psor]=Plur|Person=1|Poss=Yes|PronType=Prs 14 det _ Coref=104 +14 autorů autor NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +15 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 16 case _ _ +16 světě svět NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 15 +# text = Dnes bude na pořadu liblického setkání téma současného jazyka a jeho proměn včetně postižení aktuálních pravopisných bojů. +1 Dnes dnes ADV Db------------- _ 7 advmod _ _ +2 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 7 auxpass _ _ +3 na na ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +4 pořadu pořad NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +5 liblického liblický ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 6 amod _ Coref=106 +6 setkání setkání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ Coref=109 +7 téma téma NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 0 root _ _ +8 současného současný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 9 amod _ _ +9 jazyka jazyk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=118 +10 a a CONJ J^------------- _ 9 cc _ _ +11 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 12 det _ Coref=118 +12 proměn proměna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 9 conj _ _ +13 včetně včetně ADP RR--2---------- AdpType=Prep|Case=Gen 14 case _ _ +14 postižení postižení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 7 nmod _ _ +15 aktuálních aktuální ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +16 pravopisných pravopisný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +17 bojů boj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 7 punct _ _ + +# sent_id = 1 +# text = Navrhnout adepty na řád může každý +1 Navrhnout navrhnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 5 xcomp _ _ +2 adepty adept NOUN NNMP4-----A---- Animacy=Anim|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 1 dobj _ Coref=121 +3 na na ADP RR--4---------- AdpType=Prep|Case=Acc 4 case _ _ +4 řád řád NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ Coref=119 +5 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 každý každý ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ + +# sent_id = 2 +# text = Praha - +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Výtvarnou podobu nového Řádu T. G. Masaryka včera veřejnosti představila Kancelář prezidenta republiky. +1 Výtvarnou výtvarný ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 podobu podoba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ Coref=120 +3 nového nový ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 4 amod _ _ +4 Řádu řád NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ Coref=119 +5 T T PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 4 nmod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 name _ SpaceAfter=No +8 . . PUNCT Z:------------- _ 7 punct _ _ +9 Masaryka Masaryk PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 5 name _ _ +10 včera včera ADV Db------------- _ 12 advmod _ _ +11 veřejnosti veřejnost NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 12 dobj _ _ +12 představila představit VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +13 Kancelář kancelář NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 12 nsubj _ _ +14 prezidenta prezident NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 13 nmod _ _ +15 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 12 punct _ _ + +# sent_id = 4 +# text = Jejím autorem je Vladimír Oppl. Návrhy kandidátů na první udělovaná česká státní vyznamenání mohou stálé parlamentní komisi předkládat do 31. března letošního roku prostřednictvím poslanců i občané. +1 Jejím jeho DET PSZS7FS3------- Case=Ins|Gender=Masc,Neut|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 2 det _ Coref=120 +2 autorem autor NOUN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 cop _ _ +4 Vladimír Vladimír PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 15 nsubj _ _ +5 Oppl Oppl PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 4 name _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 4 punct _ _ +7 Návrhy návrh NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ Coref=122 +8 kandidátů kandidát NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 7 nmod _ Coref=121 +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 14 case _ _ +10 první první ADJ CrNP4---------- Case=Acc|Gender=Neut|Number=Plur|NumType=Ord 14 amod _ _ +11 udělovaná udělovaný ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +12 česká český ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +13 státní státní ADJ AANP4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 14 amod _ _ +14 vyznamenání vyznamenání NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 7 nmod _ Coref=123 +15 mohou moci VERB VB-P---3P-AA--1 Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 csubj _ _ +16 stálé stálý ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ _ +17 parlamentní parlamentní ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ Coref=126 +18 komisi komise NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 19 dobj _ _ +19 předkládat předkládat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 xcomp _ _ +20 do do ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +21 31 31 NUM C=------------- NumForm=Digit|NumType=Card 23 nummod _ SpaceAfter=No +22 . . PUNCT Z:------------- _ 21 punct _ _ +23 března březen NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 19 nmod _ _ +24 letošního letošní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 25 amod _ _ +25 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 23 nmod _ _ +26 prostřednictvím prostřednictví NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 27 case _ _ +27 poslanců poslanec NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ _ +28 i i CONJ J^------------- _ 29 advmod:emph _ _ +29 občané občan NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 15 nsubj _ SpaceAfter=No +30 . . PUNCT Z:------------- _ 15 punct _ _ + +# sent_id = 5 +# text = Návrh musí obsahovat jméno a příjmení kandidáta, jeho tituly, životopis, osobní údaje a důvod ocenění, rovněž i druh vyznamenání, třídu a stupeň. +1 Návrh návrh NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ Coref=122 +2 musí muset VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 obsahovat obsahovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 2 xcomp _ _ +4 jméno jméno NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 3 dobj _ _ +5 a a CONJ J^------------- _ 4 cc _ _ +6 příjmení příjmení NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 4 conj _ _ +7 kandidáta kandidát NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ Coref=121|SpaceAfter=No +8 , , PUNCT Z:------------- _ 4 punct _ _ +9 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 10 det _ Coref=121 +10 tituly titul NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 4 punct _ _ +12 životopis životopis NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 4 punct _ _ +14 osobní osobní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 amod _ _ +15 údaje údaj NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 4 conj _ _ +16 a a CONJ J^------------- _ 4 cc _ _ +17 důvod důvod NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +18 ocenění ocenění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 17 nmod _ Drop_coref=121|SpaceAfter=No +19 , , PUNCT Z:------------- _ 4 punct _ _ +20 rovněž rovněž ADV Db------------- _ 22 advmod:emph _ _ +21 i i CONJ J^------------- _ 22 advmod:emph _ _ +22 druh druh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ _ +23 vyznamenání vyznamenání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 22 nmod _ Coref=123|SpaceAfter=No +24 , , PUNCT Z:------------- _ 4 punct _ _ +25 třídu třída NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 conj _ _ +26 a a CONJ J^------------- _ 4 cc _ _ +27 stupeň stupeň NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 4 conj _ SpaceAfter=No +28 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 6 +# text = U vyznamenaných in memoriam by nemělo chybět datum úmrtí dotyčného a příbuzenský vztah k osobě, která bude vyznamenání přejímat. +1 U u ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +2 vyznamenaných vyznamenaný ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 4 foreign _ Coref=124 +3 in in ADP RR--X---------- AdpType=Prep|Foreign=Foreign 4 foreign _ _ +4 memoriam memoriam ADV Db------------- Foreign=Foreign 6 advmod _ _ +5 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 6 aux _ _ +6 nemělo mít VERB VpNS---XR-NA--- Gender=Neut|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 chybět chybět VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 6 xcomp _ _ +8 datum datum NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 nsubj _ _ +9 úmrtí úmrtí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 8 nmod _ _ +10 dotyčného dotyčný ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ Coref=124 +11 a a CONJ J^------------- _ 10 cc _ _ +12 příbuzenský příbuzenský ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 conj _ _ +13 vztah vztah NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +14 k k ADP RR--3---------- AdpType=Prep|Case=Dat 15 case _ _ +15 osobě osoba NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ Coref=125|SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 20 nsubj _ Coref=125 +18 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 20 aux _ _ +19 vyznamenání vyznamenání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 20 dobj _ Coref=123 +20 přejímat přejímat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 15 acl _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 7 +# text = Do dnešního dne do sněmovny přišlo na deset návrhů, chybí jim však výše uvedené náležitosti. +1 Do do ADP RR--2---------- AdpType=Prep|Case=Gen 3 case _ _ +2 dnešního dnešní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 dne den NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +4 do do ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 sněmovny sněmovna NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 3 nmod _ Coref=126 +6 přišlo přijít VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 deset deset NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 9 nummod:gov _ _ +9 návrhů návrh NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ Coref=127|SpaceAfter=No +10 , , PUNCT Z:------------- _ 6 punct _ _ +11 chybí chybět VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 conj _ _ +12 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 11 dobj _ Coref=127 +13 však však CONJ J^------------- _ 6 cc _ _ +14 výše vysoko ADV Dg-------2A---1 Degree=Cmp|Negative=Pos 15 advmod _ _ +15 uvedené uvedený ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 náležitosti náležitost NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 11 nsubj _ SpaceAfter=No +17 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 8 +# text = Nejbližšími řádovými dny jsou 28. říjen a 1. leden příštího roku. +1 Nejbližšími blízký ADJ AAIP7----3A---- Animacy=Inan|Case=Ins|Degree=Sup|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ _ +2 řádovými řádový ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 3 amod _ Coref=123 +3 dny den NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 0 root _ _ +4 jsou být VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 cop _ _ +5 28 28 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ SpaceAfter=No +6 . . PUNCT Z:------------- _ 5 punct _ _ +7 říjen říjen NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 3 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 1 1 NUM C=------------- NumForm=Digit|NumType=Card 11 nummod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 9 punct _ _ +11 leden leden NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 conj _ _ +12 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +13 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ SpaceAfter=No +14 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 1 +# text = Vedoucí postavení ANC se potvrzuje Johannesburg - +1 Vedoucí vedoucí ADJ AGNS1-----A---- Aspect=Imp|Case=Nom|Gender=Neut|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 2 amod _ _ +2 postavení postavení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ Coref=128 +3 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 2 nmod _ Coref=129 +4 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 5 auxpass:reflex _ _ +5 potvrzuje potvrzovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 Johannesburg Johannesburg PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 5 nsubj _ _ +7 - - PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 2 +# text = Po sečtení zhruba třetiny hlasů se v prvních mnohorasových volbách v Jihoafrické republice potvrzuje vedoucí postavení Afrického národního kongresu (ANC) vedeného Nelsonem Mandelou. +1 Po po ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 sečtení sečtení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 14 nmod _ _ +3 zhruba zhruba ADV Db------------- _ 4 advmod:emph _ _ +4 třetiny třetina NUM CyFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumType=Frac 5 nummod _ _ +5 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ _ +6 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 14 auxpass:reflex _ _ +7 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +8 prvních první ADJ CrFP6---------- Case=Loc|Gender=Fem|Number=Plur|NumType=Ord 10 amod _ _ +9 mnohorasových mnohorasový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ Coref=131 +11 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +12 Jihoafrické jihoafrický ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 13 amod _ _ +13 republice republika NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ Coref=135 +14 potvrzuje potvrzovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +15 vedoucí vedoucí ADJ AGNS1-----A---- Aspect=Imp|Case=Nom|Gender=Neut|Negative=Pos|Number=Sing|Tense=Pres|VerbForm=Part|Voice=Act 16 amod _ _ +16 postavení postavení NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 14 nsubj _ Coref=128 +17 Afrického africký ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +18 národního národní ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 kongresu kongres NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ _ +20 ( ( PUNCT Z:------------- _ 21 punct _ Coref=129|SpaceAfter=No +21 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 19 appos _ SpaceAfter=No +22 ) ) PUNCT Z:------------- _ 21 punct _ _ +23 vedeného vedený ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +24 Nelsonem Nelson PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 23 dobj _ _ +25 Mandelou Mandela PROPN NNMS7-----A---- Animacy=Anim|Case=Ins|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 24 name _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 14 punct _ _ + +# sent_id = 3 +# text = Zisk ANC však zatím nedosahuje předpokládaných 60 procent hlasů. +1 Zisk zisk NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ _ +2 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 1 nmod _ Coref=129 +3 však však CONJ J^------------- _ 5 cc _ _ +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 nedosahuje dosahovat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 předpokládaných předpokládaný ADJ AANP2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Plur 7 amod _ _ +7 60 60 NUM C=------------- NumForm=Digit|NumType=Card 8 nummod:gov _ _ +8 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 5 dobj _ _ +9 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Podle údajů Nezávislé volební komise, které byly zveřejněny po sečtení sedmi z předpokládaných 23 milionů volebních lístků, se pro ANC dosud vyslovilo zhruba 56,9 procenta voličů. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 údajů údaj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 nmod _ Coref=130 +3 Nezávislé závislý ADJ AAFS2----1N---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Neg|Number=Sing 5 amod _ _ +4 volební volební ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 komise komise NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ SpaceAfter=No +6 , , PUNCT Z:------------- _ 9 punct _ _ +7 které který PRON P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 9 nsubjpass _ Coref=130 +8 byly být AUX VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 9 auxpass _ _ +9 zveřejněny zveřejnit VERB VsTP---XX-AP--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|VerbForm=Part|Voice=Pass 5 acl _ _ +10 po po ADP RR--6---------- AdpType=Prep|Case=Loc 11 case _ _ +11 sečtení sečtení NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 9 nmod _ _ +12 sedmi sedm NUM Cn-P2---------- Case=Gen|Number=Plur|NumForm=Word|NumType=Card 11 nummod _ Coref=132 +13 z z ADP RR--2---------- AdpType=Prep|Case=Gen 16 case _ _ +14 předpokládaných předpokládaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 16 amod _ _ +15 23 23 NUM C=------------- NumForm=Digit|NumType=Card 16 nummod _ _ +16 milionů milión NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +17 volebních volební ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ Coref=131 +18 lístků lístek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 nmod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 9 punct _ _ +20 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +21 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 22 case _ _ +22 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 24 nmod _ Coref=129 +23 dosud dosud ADV Db------------- _ 24 advmod _ _ +24 vyslovilo vyslovit VERB VpNS---XR-AA--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +25 zhruba zhruba ADV Db------------- _ 26 advmod:emph _ _ +26 56 56 NUM C=------------- NumForm=Digit|NumType=Card 29 nummod:gov _ SpaceAfter=No +27 , , PUNCT Z:------------- _ 26 punct _ SpaceAfter=No +28 9 9 NUM C=------------- NumForm=Digit|NumType=Card 26 conj _ _ +29 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 24 nsubj _ _ +30 voličů volič NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 29 nmod _ SpaceAfter=No +31 . . PUNCT Z:------------- _ 24 punct _ _ + +# sent_id = 5 +# text = Na druhém místě je Národní strana prezidenta de Klerka s 28,2 procenta hlasů následována zulskou Stranou svobody Inkatha (IFP) se sedmi procenty. +1 Na na ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 druhém druhý ADJ CrNS6---------- Case=Loc|Gender=Neut|Number=Sing|NumType=Ord 3 amod _ _ +3 místě místo NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 4 nmod _ _ +4 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +5 Národní národní ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ _ +6 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 4 nsubj _ Coref=133 +7 prezidenta prezident NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +8 de de ADP RR--1---------- AdpType=Prep|Case=Nom|Foreign=Foreign 7 nmod _ _ +9 Klerka Klerk PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 6 nmod _ _ +10 s s ADP RR--7---------- AdpType=Prep|Case=Ins 11 case _ _ +11 28 28 NUM C=------------- NumForm=Digit|NumType=Card 4 advmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 4 punct _ SpaceAfter=No +13 2 2 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ _ +14 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 16 nsubj _ _ +15 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ Coref=132 +16 následována následovat VERB VsQW---XX-AP--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 4 conj _ Drop_coref=133 +17 zulskou zulský ADJ AAFS7----1A---- Case=Ins|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 18 amod _ Coref=142 +18 Stranou strana NOUN NNFS7-----A---- Case=Ins|Gender=Fem|Negative=Pos|Number=Sing 16 dobj _ _ +19 svobody svoboda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +20 Inkatha Inkatha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 18 nmod _ _ +21 ( ( PUNCT Z:------------- _ 22 punct _ Coref=141|SpaceAfter=No +22 IFP IFP PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 18 appos _ SpaceAfter=No +23 ) ) PUNCT Z:------------- _ 22 punct _ _ +24 se s ADP RV--7---------- AdpType=Voc|Case=Ins 26 case _ _ +25 sedmi sedm NUM Cn-P7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card 26 nummod _ _ +26 procenty procento NOUN NNNP7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Plur 22 nmod _ SpaceAfter=No +27 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 6 +# text = Bělošská separatistická Svobodná fronta získala prozatím celostátně podporu 3,3 procenta, ale v některých oblastech se vyrovnala Národní straně. +1 Bělošská bělošský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +2 separatistická separatistický ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +3 Svobodná svobodný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 fronta fronta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 5 nsubj _ _ +5 získala získat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 prozatím prozatím ADV Db------------- _ 5 advmod _ _ +7 celostátně celostátně ADV Dg-------1A---- Degree=Pos|Negative=Pos 5 advmod _ _ +8 podporu podpora NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ _ +9 3 3 NUM C=------------- NumForm=Digit|NumType=Card 12 nummod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 9 punct _ SpaceAfter=No +11 3 3 NUM C=------------- NumForm=Digit|NumType=Card 9 conj _ _ +12 procenta procento NOUN NNNP4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Plur 8 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 5 punct _ _ +14 ale ale CONJ J^------------- _ 5 cc _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 některých některý DET PZXP6---------- Case=Loc|Number=Plur|PronType=Ind 17 det _ _ +17 oblastech oblast NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 19 nmod _ _ +18 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 19 expl _ _ +19 vyrovnala vyrovnat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 conj _ _ +20 Národní národní ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 21 amod _ _ +21 straně strana NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 19 dobj _ Coref=133|SpaceAfter=No +22 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 7 +# text = Bělošská liberální strana, která po léta apartheidu v JAR brojila proti rasistickému uspořádání v zemi, v prvních mnohorasových volbách získala podle prozatímních výsledků jen slabou podporu. +1 Bělošská bělošský ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +2 liberální liberální ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 3 amod _ _ +3 strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 22 nsubj _ Coref=134|SpaceAfter=No +4 , , PUNCT Z:------------- _ 11 punct _ _ +5 která který PRON P4FS1---------- Case=Nom|Gender=Fem|Number=Sing|PronType=Int,Rel 11 nsubj _ Coref=134 +6 po po ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +7 léta rok NOUN NNNP4-----A---2 Case=Acc|Gender=Neut|Negative=Pos|Number=Plur|Style=Arch 11 nmod _ _ +8 apartheidu apartheid NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ Coref=137 +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 JAR jaro NOUN NNNP6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Plur 8 nmod _ Coref=135 +11 brojila brojit VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 3 acl _ _ +12 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 14 case _ _ +13 rasistickému rasistický ADJ AANS3----1A---- Case=Dat|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 14 amod _ _ +14 uspořádání uspořádání NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 11 dobj _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 zemi země NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 14 nmod _ Coref=135|SpaceAfter=No +17 , , PUNCT Z:------------- _ 11 punct _ _ +18 v v ADP RR--6---------- AdpType=Prep|Case=Loc 21 case _ _ +19 prvních první ADJ CrFP6---------- Case=Loc|Gender=Fem|Number=Plur|NumType=Ord 21 amod _ _ +20 mnohorasových mnohorasový ADJ AAFP6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 21 amod _ _ +21 volbách volba NOUN NNFP6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Plur 22 nmod _ Coref=131 +22 získala získat VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +23 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 25 case _ _ +24 prozatímních prozatímní ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 výsledků výsledek NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 22 nmod _ Coref=130 +26 jen jen PART TT------------- _ 28 advmod:emph _ _ +27 slabou slabý ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 28 amod _ _ +28 podporu podpora NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 22 dobj _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 22 punct _ _ + +# sent_id = 8 +# text = Částečné výsledky voleb zatím Demokratické straně, jejíž jediná poslankyně v parlamentu, Helen Suzmanová, po 13 let vedla osamocený boj proti apartheidu, přinesly jen 2,6 procenta voličských hlasů. +1 Částečné částečný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 0 root _ Coref=130 +3 voleb volba NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 2 nmod _ Coref=131 +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 Demokratické demokratický ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 6 amod _ _ +6 straně strana NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ Coref=134|SpaceAfter=No +7 , , PUNCT Z:------------- _ 26 punct _ _ +8 jejíž jenž DET P1FSXFS3------- Gender=Fem|Gender[psor]=Fem|Number=Sing|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Rel 10 det _ Coref=134 +9 jediná jediný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 10 amod _ _ +10 poslankyně poslankyně NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 26 nsubj _ _ +11 v v ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 parlamentu parlament NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ SpaceAfter=No +13 , , PUNCT Z:------------- _ 10 punct _ Coref=136 +14 Helen Helen PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Negative=Pos|Number=Sing 10 conj _ _ +15 Suzmanová Suzmanová PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Negative=Pos|Number=Sing 14 name _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 20 punct _ _ +17 po po ADP RR--4---------- AdpType=Prep|Case=Acc 19 case _ _ +18 13 13 NUM C=------------- NumForm=Digit|NumType=Card 19 nummod:gov _ _ +19 let rok NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 20 advmod _ _ +20 vedla vést VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 14 acl _ _ +21 osamocený osamocený ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 22 amod _ _ +22 boj boj NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 20 dobj _ Drop_coref=136 +23 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 24 case _ _ +24 apartheidu apartheid NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 22 nmod _ Coref=137|SpaceAfter=No +25 , , PUNCT Z:------------- _ 20 punct _ _ +26 přinesly přinést VERB VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 6 acl _ _ +27 jen jen PART TT------------- _ 28 advmod:emph _ _ +28 2 2 NUM C=------------- NumForm=Digit|NumType=Card 31 nummod:gov _ SpaceAfter=No +29 , , PUNCT Z:------------- _ 28 punct _ SpaceAfter=No +30 6 6 NUM C=------------- NumForm=Digit|NumType=Card 28 conj _ _ +31 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 26 dobj _ _ +32 voličských voličský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 33 amod _ _ +33 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 31 nmod _ Coref=132|SpaceAfter=No +34 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = Jak ukazují zatím předběžné výsledky, dosud nejméně úspěšný je ANC v provincii Západní Kapsko, kde obdržel zhruba 26 procent proti 56,9 procenta hlasů Národní strany a v provincii KwaZulu/Natal, kde podle očekávání zatím se 70,4 procenta hlasů vítězí Butheleziho Strana svobody Inkatha. +1 Jak jak ADV Db------------- _ 2 advmod _ _ +2 ukazují ukazovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 parataxis _ Drop_coref=138 +3 zatím zatím ADV Db------------- _ 2 advmod _ _ +4 předběžné předběžný ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 2 nsubj _ Coref=130|SpaceAfter=No +6 , , PUNCT Z:------------- _ 2 punct _ _ +7 dosud dosud ADV Db------------- _ 9 advmod _ _ +8 nejméně málo ADV Dg-------3A---- Degree=Sup|Negative=Pos 9 advmod _ _ +9 úspěšný úspěšný ADJ AAIS1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 0 root _ _ +10 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 9 cop _ Coref=138 +11 ANC ANC PROPN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|NameType=Com|Negative=Pos 9 nsubj _ Coref=129 +12 v v ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +13 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Coref=139 +14 Západní západní ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 15 amod _ _ +15 Kapsko Kapsko PROPN NNNS1-----A---- Case=Nom|Gender=Neut|NameType=Geo|Negative=Pos|Number=Sing 13 nmod _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 18 punct _ _ +17 kde kde ADV Db------------- _ 18 advmod _ Coref=139 +18 obdržel obdržet VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 13 acl _ Drop_coref=129 +19 zhruba zhruba ADV Db------------- _ 20 advmod:emph _ _ +20 26 26 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +21 procent procento NOUN NNNP2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Plur 18 nsubj _ _ +22 proti proti ADP RR--3---------- AdpType=Prep|Case=Dat 26 case _ _ +23 56 56 NUM C=------------- NumForm=Digit|NumType=Card 26 nummod:gov _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 23 punct _ SpaceAfter=No +25 9 9 NUM C=------------- NumForm=Digit|NumType=Card 23 conj _ _ +26 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 21 nmod _ _ +27 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 26 nmod _ _ +28 Národní národní ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 29 amod _ _ +29 strany strana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 27 nmod _ Coref=133 +30 a a CONJ J^------------- _ 18 cc _ _ +31 v v ADP RR--6---------- AdpType=Prep|Case=Loc 32 case _ _ +32 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 18 conj _ Coref=140 +33 KwaZulu Kwazulu ADJ AAXXX----1A---- Degree=Pos|NameType=Geo|Negative=Pos 32 amod _ SpaceAfter=No +34 / / PUNCT Z:------------- _ 33 punct _ SpaceAfter=No +35 Natal Natal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 33 conj _ SpaceAfter=No +36 , , PUNCT Z:------------- _ 47 punct _ _ +37 kde kde ADV Db------------- _ 47 advmod _ Coref=140 +38 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 39 case _ _ +39 očekávání očekávání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 47 nmod _ _ +40 zatím zatím ADV Db------------- _ 47 advmod _ _ +41 se s ADP RV--7---------- AdpType=Voc|Case=Ins 45 case _ _ +42 70 70 NUM C=------------- NumForm=Digit|NumType=Card 45 nummod:gov _ SpaceAfter=No +43 , , PUNCT Z:------------- _ 42 punct _ SpaceAfter=No +44 4 4 NUM C=------------- NumForm=Digit|NumType=Card 42 conj _ _ +45 procenta procento NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 47 advmod _ _ +46 hlasů hlas NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 45 nmod _ _ +47 vítězí vítězit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 32 acl _ _ +48 Butheleziho Buthelezi PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 49 nmod _ _ +49 Strana strana NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 47 nsubj _ Coref=141 +50 svobody svoboda NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 49 nmod _ _ +51 Inkatha Inkatha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 49 nmod _ SpaceAfter=No +52 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 10 +# text = Dosavadní výsledky signalizují, že IFP se těší v provincii KwaZulu/Natal nejen tradiční podpoře zulských obyvatel provincie, ale také tamních bělochů a obyvatel indického původu. +1 Dosavadní dosavadní ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výsledky výsledek NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ Coref=130 +3 signalizují signalizovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 8 punct _ _ +5 že že SCONJ J,------------- _ 8 mark _ _ +6 IFP IFP PROPN NNFXX-----A---8 Abbr=Yes|Foreign=Foreign|Gender=Fem|NameType=Com|Negative=Pos 8 nsubj _ Coref=141 +7 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 expl _ _ +8 těší těšit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 3 ccomp _ _ +9 v v ADP RR--6---------- AdpType=Prep|Case=Loc 10 case _ _ +10 provincii provincie NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 8 nmod _ Coref=140 +11 KwaZulu Kwazulu ADJ AAXXX----1A---- Degree=Pos|NameType=Geo|Negative=Pos 10 amod _ SpaceAfter=No +12 / / PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +13 Natal Natal PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 11 conj _ _ +14 nejen nejen PART TT------------- _ 16 advmod:emph _ _ +15 tradiční tradiční ADJ AAFS3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 16 amod _ _ +16 podpoře podpora NOUN NNFS3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Sing 8 dobj _ _ +17 zulských zulský ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ Coref=142 +18 obyvatel obyvatel NOUN NNMP2-----A---1 Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 nmod _ _ +19 provincie provincie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ Coref=140|SpaceAfter=No +20 , , PUNCT Z:------------- _ 16 punct _ _ +21 ale ale CONJ J^------------- _ 16 cc _ _ +22 také také ADV Db------------- _ 24 advmod:emph _ _ +23 tamních tamní ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 24 amod _ Coref=140 +24 bělochů běloch NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 16 conj _ _ +25 a a CONJ J^------------- _ 24 cc _ _ +26 obyvatel obyvatel NOUN NNMP2-----A---1 Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 24 conj _ _ +27 indického indický ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 28 amod _ _ +28 původu původ NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ SpaceAfter=No +29 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 1 +# text = Prezident Bush o nynější roli OSN PODPORA MYŠLENKY MÍROVÝCH SIL RYCHLÉHO ZÁSAHU +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nmod _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 0 root _ Coref=149 +3 o o ADP RR--6---------- AdpType=Prep|Case=Loc 5 case _ _ +4 nynější nynější ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 5 amod _ _ +5 roli role NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +6 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 5 nmod _ Coref=143 +7 PODPORA PODPORA PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 5 nmod _ _ +8 MYŠLENKY myšlenka PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ _ +9 MÍROVÝCH mírový ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 10 amod _ _ +10 SIL síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ Coref=153 +11 RYCHLÉHO rychlý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 ZÁSAHU zásah NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ + +# sent_id = 2 +# text = New York - Spojené státy požádají o zvláštní zasedání Rady bezpečnosti OSN, které by se zabývalo posílením schopnosti Organizace spojených národů předcházet vojenským konfliktům, omezit je a řešit. +1 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 2 amod _ _ +2 York York PROPN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 0 root _ Coref=147 +3 - - PUNCT Z:------------- _ 2 punct _ _ +4 Spojené spojený ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 státy stát NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 6 nsubj _ Coref=148 +6 požádají požádat VERB VB-P---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 2 conj _ Coref=146 +7 o o ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 zvláštní zvláštní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 9 amod _ _ +9 zasedání zasedání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 6 dobj _ Coref=144 +10 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 9 nmod _ Coref=151 +11 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 10 nmod _ Coref=143|SpaceAfter=No +13 , , PUNCT Z:------------- _ 17 punct _ _ +14 které který PRON P4NS1---------- Case=Nom|Gender=Neut|Number=Sing|PronType=Int,Rel 17 nsubj _ Coref=144 +15 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 17 aux _ _ +16 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 17 expl _ _ +17 zabývalo zabývat VERB VpNS---XR-AA--- Aspect=Imp|Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 9 acl _ _ +18 posílením posílení NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 17 dobj _ _ +19 schopnosti schopnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 18 nmod _ _ +20 Organizace organizace NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 19 nmod _ Coref=143 +21 spojených spojený ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 22 amod _ _ +22 národů národ NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 20 nmod _ _ +23 předcházet předcházet VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 19 acl _ _ +24 vojenským vojenský ADJ AAIP3----1A---- Animacy=Inan|Case=Dat|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 25 amod _ _ +25 konfliktům konflikt NOUN NNIP3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 23 dobj _ Coref=145|SpaceAfter=No +26 , , PUNCT Z:------------- _ 23 punct _ _ +27 omezit omezit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 conj _ _ +28 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 27 dobj _ Coref=145 +29 a a CONJ J^------------- _ 23 cc _ Drop_coref=143 +30 řešit řešit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 23 conj _ Drop_coref=145|SpaceAfter=No +31 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 3 +# text = Oznámil to včera v New Yorku americký prezident George Bush v den zahájení všeobecné rozpravy na 47. zasedání Valného shromáždění OSN. +1 Oznámil oznámit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Coref=150 +2 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 dobj _ Coref=146 +3 včera včera ADV Db------------- _ 1 advmod _ _ +4 v v ADP RR--6---------- AdpType=Prep|Case=Loc 6 case _ _ +5 New New ADJ AAXXX----1A---- Degree=Pos|Foreign=Foreign|NameType=Geo|Negative=Pos 6 amod _ _ +6 Yorku York PROPN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|NameType=Geo|Negative=Pos|Number=Sing 1 nmod _ Coref=147 +7 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 8 amod _ Coref=148 +8 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +9 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 1 nsubj _ _ +10 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 9 name _ Coref=149 +11 v v ADP RR--4---------- AdpType=Prep|Case=Acc 12 case _ _ +12 den den NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +13 zahájení zahájení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 12 nmod _ _ +14 všeobecné všeobecný ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 15 amod _ _ +15 rozpravy rozprava NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 13 nmod _ _ +16 na na ADP RR--6---------- AdpType=Prep|Case=Loc 19 case _ _ +17 47 47 NUM C=------------- NumForm=Digit|NumType=Card 19 nummod _ SpaceAfter=No +18 . . PUNCT Z:------------- _ 17 punct _ _ +19 zasedání zasedání NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +20 Valného valný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 21 amod _ _ +21 shromáždění shromáždění NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +22 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 21 nmod _ Coref=143|SpaceAfter=No +23 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 4 +# text = Prezident USA kromě toho vyzval Radu, aby poskytla bezpečnostní záruky všem členským zemím, které nemají jaderné zbraně. +1 Prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 5 nsubj _ Coref=149 +2 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 1 nmod _ Coref=148 +3 kromě kromě ADP RR--2---------- AdpType=Prep|Case=Gen 4 case _ _ +4 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 5 advmod _ Coref=150 +5 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +6 Radu rada NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 iobj _ Coref=151|SpaceAfter=No +7 , , PUNCT Z:------------- _ 10 punct _ _ +8-9 aby _ _ _ _ _ _ _ _ +8 aby aby SCONJ J,------------- _ 10 mark _ _ +9 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 10 aux _ _ +10 poskytla poskytnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 5 ccomp _ Drop_coref=151 +11 bezpečnostní bezpečnostní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 12 amod _ _ +12 záruky záruka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 10 dobj _ Drop_coref=151 +13 všem všechen PRON PLXP3---------- Case=Dat|Number=Plur|PronType=Tot 15 nmod _ _ +14 členským členský ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 15 amod _ _ +15 zemím země NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 10 iobj _ Coref=152|SpaceAfter=No +16 , , PUNCT Z:------------- _ 18 punct _ _ +17 které který PRON P4FP1---------- Case=Nom|Gender=Fem|Number=Plur|PronType=Int,Rel 18 nsubj _ Coref=152 +18 nemají mít VERB VB-P---3P-NA--- Mood=Ind|Negative=Neg|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 15 acl _ _ +19 jaderné jaderný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 20 amod _ _ +20 zbraně zbraň NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 18 dobj _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 5 +# text = George Bush podpořil návrh generálního tajemníka OSN Butruse Butruse-Ghálího, aby členské země udržovaly stálé, zvlášť připravené síly schopné velmi rychle zasáhnout na pokyn Rady bezpečnosti kdekoli na světě. +1 George George PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Foreign=Foreign|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 3 nsubj _ _ +2 Bush Bush PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 1 name _ Coref=149 +3 podpořil podpořit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Coref=154 +4 návrh návrh NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 3 dobj _ Coref=155 +5 generálního generální ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 tajemníka tajemník NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +7 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 6 nmod _ Coref=143 +8 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 4 nmod _ _ +9 Butruse Butrus PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Geo,Giv,Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +10 - - PUNCT Z:------------- _ 8 punct _ SpaceAfter=No +11 Ghálího Ghálí PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 8 name _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 17 punct _ _ +13-14 aby _ _ _ _ _ _ _ _ +13 aby aby SCONJ J,------------- _ 17 mark _ _ +14 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 17 aux _ _ +15 členské členský ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 16 amod _ _ +16 země země NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 17 nsubj _ _ +17 udržovaly udržovat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Imp|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 4 acl _ _ +18 stálé stálý ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ SpaceAfter=No +19 , , PUNCT Z:------------- _ 18 punct _ _ +20 zvlášť zvlášť ADV Db------------- _ 21 advmod _ _ +21 připravené připravený ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 18 conj _ _ +22 síly síla NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 17 dobj _ Coref=153 +23 schopné schopný ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +24 velmi velmi ADV Db------------- _ 25 advmod _ _ +25 rychle rychle ADV Dg-------1A---- Degree=Pos|Negative=Pos 26 advmod _ _ +26 zasáhnout zasáhnout VERB Vf--------A---- Negative=Pos|VerbForm=Inf 23 xcomp _ Drop_coref=153 +27 na na ADP RR--4---------- AdpType=Prep|Case=Acc 28 case _ _ +28 pokyn pokyn NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 26 nmod _ _ +29 Rady rada NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 28 nmod _ Coref=151 +30 bezpečnosti bezpečnost NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 29 nmod _ _ +31 kdekoli kdekoliv ADV Db------------1 _ 26 advmod _ _ +32 na na ADP RR--6---------- AdpType=Prep|Case=Loc 33 case _ _ +33 světě svět NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ SpaceAfter=No +34 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 6 +# text = V té souvislosti nabídl americký prezident pomoc USA k výcviku sil OSN a vyzval ostatní státy, aby se k tomuto úsilí přidaly. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 3 case _ _ +2 té ten DET PDFS6---------- Case=Loc|Gender=Fem|Number=Sing|PronType=Dem 3 det _ _ +3 souvislosti souvislost NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ Coref=154 +4 nabídl nabídnout VERB VpYS---XR-AA--1 Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 americký americký ADJ AAMS1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ Coref=148 +6 prezident prezident NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 nsubj _ Coref=149 +7 pomoc pomoc NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 4 dobj _ _ +8 USA USA PROPN NNIPX-----A---- Animacy=Inan|Gender=Masc|NameType=Geo|Negative=Pos|Number=Plur 7 nmod _ Coref=148 +9 k k ADP RR--3---------- AdpType=Prep|Case=Dat 10 case _ _ +10 výcviku výcvik NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +11 sil síla NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 10 nmod _ Coref=153 +12 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 11 nmod _ Coref=143 +13 a a CONJ J^------------- _ 4 cc _ _ +14 vyzval vyzvat VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ _ +15 ostatní ostatní ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 16 amod _ _ +16 státy stát NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 14 iobj _ Coref=156|SpaceAfter=No +17 , , PUNCT Z:------------- _ 24 punct _ _ +18-19 aby _ _ _ _ _ _ _ _ +18 aby aby SCONJ J,------------- _ 24 mark _ _ +19 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 24 aux _ _ +20 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +21 k k ADP RR--3---------- AdpType=Prep|Case=Dat 23 case _ _ +22 tomuto tento DET PDZS3---------- Case=Dat|Gender=Masc,Neut|Number=Sing|PronType=Dem 23 det _ _ +23 úsilí úsilí NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ Coref=155 +24 přidaly přidat VERB VpTP---XR-AA--- Animacy=Inan|Aspect=Perf|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 14 ccomp _ Drop_coref=156|SpaceAfter=No +25 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 7 +# text = Podle G. Bushe stojí světové společenství a OSN nyní před třemi naléhavými úkoly: udržet dnešní mír a zabránit zítřejším válkám, zabránit šíření zbraní hromadného ničení a zajistit blahobyt pro všechny na základě zásad volného trhu a ochrany životního prostředí. +1 Podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 2 case _ _ +2 G G PROPN NNMXX-----A---8 Abbr=Yes|Animacy=Anim|Gender=Masc|NameType=Giv|Negative=Pos 5 nmod _ SpaceAfter=No +3 . . PUNCT Z:------------- _ 2 punct _ _ +4 Bushe Bush PROPN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 2 name _ Coref=149 +5 stojí stát VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 světové světový ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 7 amod _ _ +7 společenství společenství NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 5 nsubj _ _ +8 a a CONJ J^------------- _ 7 cc _ _ +9 OSN OSN PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos 7 conj _ Coref=143 +10 nyní nyní ADV Db------------- _ 5 advmod _ _ +11 před před ADP RR--7---------- AdpType=Prep|Case=Ins 14 case _ _ +12 třemi tři NUM ClXP7---------- Case=Ins|Number=Plur|NumForm=Word|NumType=Card|NumValue=1,2,3 14 nummod _ _ +13 naléhavými naléhavý ADJ AAIP7----1A---- Animacy=Inan|Case=Ins|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 14 amod _ _ +14 úkoly úkol NOUN NNIP7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ Drop_coref=157|SpaceAfter=No +15 : : PUNCT Z:------------- _ 5 punct _ _ +16 udržet udržet VERB Vf--------A---- Negative=Pos|VerbForm=Inf 5 conj _ _ +17 dnešní dnešní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 18 amod _ _ +18 mír mír NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 16 dobj _ _ +19 a a CONJ J^------------- _ 16 cc _ _ +20 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +21 zítřejším zítřejší ADJ AAFP3----1A---- Case=Dat|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 22 amod _ _ +22 válkám válka NOUN NNFP3-----A---- Case=Dat|Gender=Fem|Negative=Pos|Number=Plur 20 dobj _ Coref=145|SpaceAfter=No +23 , , PUNCT Z:------------- _ 16 punct _ _ +24 zabránit zabránit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +25 šíření šíření NOUN NNNS3-----A---- Case=Dat|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +26 zbraní zbraň NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 25 nmod _ _ +27 hromadného hromadný ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 28 amod _ _ +28 ničení ničení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 26 nmod _ _ +29 a a CONJ J^------------- _ 16 cc _ Drop_coref=157 +30 zajistit zajistit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 16 conj _ _ +31 blahobyt blahobyt NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 30 dobj _ _ +32 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +33 všechny všechen PRON PLYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Tot 31 nmod _ _ +34 na na ADP RR--6---------- AdpType=Prep|Case=Loc 36 case _ _ +35 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 34 mwe _ _ +36 zásad zásada NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 30 nmod _ _ +37 volného volný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 38 amod _ _ +38 trhu trh NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 36 nmod _ _ +39 a a CONJ J^------------- _ 38 cc _ _ +40 ochrany ochrana NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 38 conj _ _ +41 životního životní ADJ AANS2----1A---- Case=Gen|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 42 amod _ _ +42 prostředí prostředí NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 40 nmod _ SpaceAfter=No +43 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 1 +# text = V průkazu nemusí být zapsáno státní občanství +# newdoc +# newpar +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 průkazu průkaz NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 3 obl _ Coref=159 +3 nemusí muset VERB VB-S---3P-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 být být AUX Vf--------A---- Polarity=Pos|VerbForm=Inf 5 aux:pass _ _ +5 zapsáno zapsaný ADJ VsNS---XX-AP--- Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 3 obj _ _ +6 státní státní ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 7 amod _ _ +7 občanství občanství NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Number=Sing|Polarity=Pos 3 nsubj _ Coref=160|SpacesAfter=\s\r\n\r\n + +# sent_id = 2 +# text = Praha - +# newpar +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Number=Sing|Polarity=Pos 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Občané České republiky dosud nejsou povinni dát si vyznačit do občanského průkazu státní příslušnost. +1 Občané občan NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 6 nsubj _ Coref=158 +2 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 3 amod _ _ +3 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 1 nmod _ Coref=164 +4 dosud dosud ADV Db------------- PronType=Dem 6 advmod _ _ +5 nejsou být AUX VB-P---3P-NA--- Mood=Ind|Number=Plur|Person=3|Polarity=Neg|Tense=Pres|VerbForm=Fin|Voice=Act 6 cop _ Coref=161 +6 povinni povinný ADJ ACMP------A---- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Variant=Short 0 root _ _ +7 dát dát VERB Vf--------A---- Polarity=Pos|VerbForm=Inf 6 xcomp _ Drop_coref=158 +8 si se PRON P7-X3---------- Case=Dat|PronType=Prs|Reflex=Yes|Variant=Short 9 obl _ Coref=158 +9 vyznačit vyznačit VERB Vf--------A---- Aspect=Perf|Polarity=Pos|VerbForm=Inf 7 xcomp _ _ +10 do do ADP RR--2---------- AdpType=Prep|Case=Gen 12 case _ _ +11 občanského občanský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 12 amod _ _ +12 průkazu průkaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 9 obl _ Coref=159 +13 státní státní ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 14 amod _ _ +14 příslušnost příslušnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 9 obj _ Coref=160|SpaceAfter=No +15 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 4 +# text = Řekla to zástupkyně tiskového mluvčího ministerstva vnitra Beáta Berníková. +1 Řekla říci VERB VpQW---XR-AA--- Aspect=Perf|Gender=Fem,Neut|Number=Plur,Sing|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +2 to ten DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 1 obj _ Coref=161 +3 zástupkyně zástupkyně NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 8 nmod _ _ +4 tiskového tiskový ADJ AAMS2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 5 amod _ _ +5 mluvčího mluvčí NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 3 nmod _ _ +6 ministerstva ministerstvo NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 5 nmod _ _ +7 vnitra vnitro NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Number=Sing|Polarity=Pos 6 nmod _ _ +8 Beáta Beáta PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Giv|Number=Sing|Polarity=Pos 1 nsubj _ _ +9 Berníková Berníková PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Sur|Number=Sing|Polarity=Pos 8 flat _ SpaceAfter=No +10 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 5 +# text = Záznam o státním občanství do nynějších občanských průkazů zapisuje policie na základě dokladů prokazujících toto občanství. +1 Záznam záznam NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 9 obj _ _ +2 o o ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 státním státní ADJ AANS6----1A---- Case=Loc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 4 amod _ _ +4 občanství občanství NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Number=Sing|Polarity=Pos 1 nmod _ Coref=160 +5 do do ADP RR--2---------- AdpType=Prep|Case=Gen 8 case _ _ +6 nynějších nynější ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 8 amod _ _ +7 občanských občanský ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 8 amod _ _ +8 průkazů průkaz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 1 nmod _ Coref=159 +9 zapisuje zapisovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +10 policie policie NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 9 nsubj _ _ +11 na na ADP RR--6---------- AdpType=Prep|Case=Loc 13 case _ _ +12 základě základ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 11 fixed _ _ +13 dokladů doklad NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos 9 obl _ _ +14 prokazujících prokazující ADJ AGIP2-----A---- Animacy=Inan|Aspect=Imp|Case=Gen|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Pres|VerbForm=Part|Voice=Act 13 amod _ _ +15 toto tento DET PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 16 det _ _ +16 občanství občanství NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 14 obj _ Coref=160|SpaceAfter=No +17 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 6 +# text = Pokud držiteli občanského průkazu vyprší jeho platnost, nebude mu již tento průkaz prodloužen. +1 Pokud pokud SCONJ J,------------- _ 5 mark _ _ +2 držiteli držitel NOUN NNMS3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Number=Sing|Polarity=Pos 5 obl _ Coref=162 +3 občanského občanský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 4 amod _ _ +4 průkazu průkaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Number=Sing|Polarity=Pos 2 nmod _ Coref=159 +5 vyprší vypršet VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 14 advcl _ _ +6 jeho jeho DET PSXXXZS3------- Gender[psor]=Masc,Neut|Number[psor]=Sing|Person=3|Poss=Yes|PronType=Prs 7 det _ Coref=159 +7 platnost platnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Number=Sing|Polarity=Pos 5 nsubj _ SpaceAfter=No +8 , , PUNCT Z:------------- _ 5 punct _ _ +9 nebude být AUX VB-S---3F-NA--- Mood=Ind|Number=Sing|Person=3|Polarity=Neg|Tense=Fut|VerbForm=Fin|Voice=Act 14 aux:pass _ _ +10 mu on PRON PHZS3--3------- Case=Dat|Gender=Masc,Neut|Number=Sing|Person=3|PronType=Prs|Variant=Short 14 obj _ Coref=162 +11 již již ADV Db------------- _ 14 advmod _ _ +12 tento tento DET PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 13 det _ _ +13 průkaz průkaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 14 nsubj:pass _ Coref=159 +14 prodloužen prodloužený ADJ VsYS---XX-AP--- Gender=Masc|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 0 root _ SpaceAfter=No +15 . . PUNCT Z:------------- _ 14 punct _ _ + +# sent_id = 7 +# text = Občan v takovém případě dostane průkaz nový - identifikační kartu. +1 Občan občan NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Number=Sing|Polarity=Pos 5 nsubj _ Coref=162 +2 v v ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 takovém takový DET PDZS6---------- Case=Loc|Gender=Masc,Neut|Number=Sing|PronType=Dem 4 det _ _ +4 případě případ NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 5 obl _ _ +5 dostane dostat VERB VB-S---3P-AA--- Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 průkaz průkaz NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Number=Sing|Polarity=Pos 5 obj _ _ +7 nový nový ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 6 amod _ _ +8 - - PUNCT Z:------------- _ 10 punct _ _ +9 identifikační identifikační ADJ AAFS4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 10 amod _ _ +10 kartu karta NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 6 appos _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 8 +# text = Staré občanské průkazy zatím platí po dobu, na niž byly vydány. +1 Staré starý ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +2 občanské občanský ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Number=Plur|Polarity=Pos 3 amod _ _ +3 průkazy průkaz NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Number=Plur|Polarity=Pos 5 nsubj _ Coref=159 +4 zatím zatím ADV Db------------- _ 5 advmod _ _ +5 platí platit VERB VB-P---3P-AA--- Mood=Ind|Number=Plur|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 po po ADP RR--4---------- AdpType=Prep|Case=Acc 7 case _ _ +7 dobu doba NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Number=Sing|Polarity=Pos 5 obl _ Coref=163|SpaceAfter=No +8 , , PUNCT Z:------------- _ 12 punct _ _ +9 na na ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 niž jenž PRON P9FS4---------- Case=Acc|Gender=Fem|Number=Sing|PrepCase=Pre|PronType=Rel 12 obl _ Coref=163 +11 byly být AUX VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 12 aux:pass _ _ +12 vydány vydaný ADJ VsTP---XX-AP--- Animacy=Inan|Aspect=Perf|Gender=Fem,Masc|Number=Plur|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 7 amod _ Drop_coref=159|SpaceAfter=No +13 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 9 +# text = Stále více organizací a firem vyžaduje po zájemcích o zaměstnání, aby měli v občanském průkazu vyznačeno státní občanství České republiky. +1 Stále stále ADV Db------------- _ 2 advmod _ _ +2 více hodně ADV Dg-------2A---- Degree=Cmp|Polarity=Pos 6 nsubj _ _ +3 organizací organizace NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 2 nmod _ _ +4 a a CCONJ J^------------- _ 5 cc _ _ +5 firem firma NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Number=Plur|Polarity=Pos 3 conj _ _ +6 vyžaduje vyžadovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Number=Sing|Person=3|Polarity=Pos|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +7 po po ADP RR--6---------- AdpType=Prep|Case=Loc 8 case _ _ +8 zájemcích zájemce NOUN NNMP6-----A---- Animacy=Anim|Case=Loc|Gender=Masc|Number=Plur|Polarity=Pos 6 obl _ _ +9 o o ADP RR--4---------- AdpType=Prep|Case=Acc 10 case _ _ +10 zaměstnání zaměstnání NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 8 nmod _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 14 punct _ _ +12-13 aby _ _ _ _ _ _ _ _ +12 aby aby SCONJ J,------------- _ 14 mark _ _ +13 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 14 aux _ _ +14 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Number=Plur|Polarity=Pos|Tense=Past|VerbForm=Part|Voice=Act 6 ccomp _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 17 case _ _ +16 občanském občanský ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Number=Sing|Polarity=Pos 17 amod _ _ +17 průkazu průkaz NOUN NNIS6-----A---1 Animacy=Inan|Case=Loc|Gender=Masc|Number=Sing|Polarity=Pos 14 obl _ _ +18 vyznačeno vyznačený ADJ VsNS---XX-AP--- Aspect=Perf|Gender=Neut|Number=Sing|Polarity=Pos|Variant=Short|VerbForm=Part|Voice=Pass 14 xcomp _ _ +19 státní státní ADJ AANS4----1A---- Case=Acc|Degree=Pos|Gender=Neut|Number=Sing|Polarity=Pos 20 amod _ _ +20 občanství občanství NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Number=Sing|Polarity=Pos 18 obj _ _ +21 České český ADJ AAFS2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Number=Sing|Polarity=Pos 22 amod _ _ +22 republiky republika NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Number=Sing|Polarity=Pos 20 nmod _ Coref=164|SpaceAfter=No +23 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 1 +# text = Výrobci nápojů mají obavy z povinného výkupu lahví +1 Výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 3 nsubj _ Coref=165 +2 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ Coref=166 +3 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 obavy obava NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 3 dobj _ Drop_coref=165 +5 z z ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +6 povinného povinný ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 7 amod _ _ +7 výkupu výkup NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +8 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ Coref=169 + +# sent_id = 2 +# text = Praha (jkl) - +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 ( ( PUNCT Z:------------- _ 1 punct _ SpaceAfter=No +3 jkl jkl PROPN NNXXX-----A---8 Abbr=Yes|NameType=Sur|Negative=Pos 1 dep _ SpaceAfter=No +4 ) ) PUNCT Z:------------- _ 1 punct _ _ +5 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Někteří výrobci nealkoholických nápojů mají obavy, že novela zákona o ochraně spotřebitele může některé z nich přivést k bankrotu. +1 Někteří některý DET PZMP1---------- Animacy=Anim|Case=Nom|Gender=Masc|Number=Plur|PronType=Ind 2 det _ _ +2 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ Coref=165 +3 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 4 amod _ _ +4 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ Coref=166 +5 mají mít VERB VB-P---3P-AA--- Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +6 obavy obava NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ Coref=165|Drop_coref=165|SpaceAfter=No +7 , , PUNCT Z:------------- _ 14 punct _ _ +8 že že SCONJ J,------------- _ 14 mark _ _ +9 novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 14 nsubj _ Coref=167 +10 zákona zákon NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ _ +11 o o ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +12 ochraně ochrana NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 10 nmod _ _ +13 spotřebitele spotřebitel NOUN NNMS2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +14 může moci VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ _ +15 některé některý PRON PZYP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Ind 18 dobj _ _ +16 z z ADP RR--2---------- AdpType=Prep|Case=Gen 17 case _ _ +17 nich on PRON P5XP2--3------- Case=Gen|Number=Plur|Person=3|PrepCase=Pre|PronType=Prs 15 nmod _ Coref=165 +18 přivést přivést VERB Vf--------A---- Negative=Pos|VerbForm=Inf 14 xcomp _ _ +19 k k ADP RR--3---------- AdpType=Prep|Case=Dat 20 case _ _ +20 bankrotu bankrot NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 5 punct _ _ + +# sent_id = 4 +# text = Novela, kterou v sobotu schválil parlament, totiž ukládá výrobcům i dodavatelům povinnost vykupovat vratné obaly bez omezení množství i bez toho, aby je vázali na nákup zboží. +1 Novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 10 nsubj _ Coref=167|SpaceAfter=No +2 , , PUNCT Z:------------- _ 6 punct _ _ +3 kterou který PRON P4FS4---------- Case=Acc|Gender=Fem|Number=Sing|PronType=Int,Rel 6 dobj _ Coref=167 +4 v v ADP RR--4---------- AdpType=Prep|Case=Acc 5 case _ _ +5 sobotu sobota NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ _ +6 schválil schválit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 acl _ _ +7 parlament parlament NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 6 nsubj _ Coref=175|SpaceAfter=No +8 , , PUNCT Z:------------- _ 6 punct _ _ +9 totiž totiž ADV Db------------- _ 10 cc _ _ +10 ukládá ukládat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +11 výrobcům výrobce NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 10 iobj _ Coref=170 +12 i i CONJ J^------------- _ 11 cc _ Coref=168 +13 dodavatelům dodavatel NOUN NNMP3-----A---- Animacy=Anim|Case=Dat|Gender=Masc|Negative=Pos|Number=Plur 11 conj _ _ +14 povinnost povinnost NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 10 dobj _ Drop_coref=168 +15 vykupovat vykupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 14 acl _ Drop_coref=168 +16 vratné vratný ADJ AAIP4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 17 amod _ _ +17 obaly obal NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 15 dobj _ Coref=169 +18 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +19 omezení omezení NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 15 nmod _ _ +20 množství množství NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 19 nmod _ _ +21 i i CONJ J^------------- _ 19 cc _ _ +22 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 23 case _ _ +23 toho ten PRON PDZS2---------- Case=Gen|Gender=Masc,Neut|Number=Sing|PronType=Dem 19 conj _ SpaceAfter=No +24 , , PUNCT Z:------------- _ 28 punct _ _ +25-26 aby _ _ _ _ _ _ _ _ +25 aby aby SCONJ J,------------- _ 28 mark _ _ +26 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 28 aux _ _ +27 je on PRON PPXP4--3------- Case=Acc|Number=Plur|Person=3|PronType=Prs 28 dobj _ Coref=169 +28 vázali vázat VERB VpMP---XR-AA--- Animacy=Anim|Aspect=Imp|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 23 acl _ Drop_coref=168 +29 na na ADP RR--4---------- AdpType=Prep|Case=Acc 30 case _ _ +30 nákup nákup NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 28 nmod _ _ +31 zboží zboží NOUN NNNS2-----A---- Case=Gen|Gender=Neut|Negative=Pos|Number=Sing 30 nmod _ SpaceAfter=No +32 . . PUNCT Z:------------- _ 10 punct _ _ + +# sent_id = 5 +# text = Předseda Svazu výrobců nealkoholických nápojů Zdeněk Švehla uvedl, že je největší přebytek lahví o objemu 0,33 litru. +1 Předseda předseda NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +2 Svazu svaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ Coref=174 +3 výrobců výrobce NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 nmod _ Coref=170 +4 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 5 amod _ _ +5 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ Coref=166 +6 Zdeněk Zdeněk PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 8 nsubj _ _ +7 Švehla Švehla PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 6 name _ Coref=172 +8 uvedl uvést VERB VpYS---XR-AA--- Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +9 , , PUNCT Z:------------- _ 11 punct _ _ +10 že že SCONJ J,------------- _ 11 mark _ _ +11 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 8 ccomp _ _ +12 největší velký ADJ AAIS1----3A---- Animacy=Inan|Case=Nom|Degree=Sup|Gender=Masc|Negative=Pos|Number=Sing 13 amod _ _ +13 přebytek přebytek NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 11 nsubj _ _ +14 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 13 nmod _ Coref=171 +15 o o ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 objemu objem NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 14 nmod _ _ +17 0 0 NUM C=------------- NumForm=Digit|NumType=Card 20 nummod _ SpaceAfter=No +18 , , PUNCT Z:------------- _ 17 punct _ SpaceAfter=No +19 33 33 NUM C=------------- NumForm=Digit|NumType=Card 17 conj _ _ +20 litru l`litr NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 16 nmod _ SpaceAfter=No +21 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 6 +# text = V oběhu je jich podle něho na šest milionů navíc. +1 V v ADP RR--6---------- AdpType=Prep|Case=Loc 2 case _ _ +2 oběhu oběh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +3 je být VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +4 jich on PRON PPXP2--3------- Case=Gen|Number=Plur|Person=3|PronType=Prs 3 nsubj _ Coref=171 +5 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 6 case _ _ +6 něho on PRON P5ZS2--3------1 Case=Gen|Gender=Masc,Neut|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 3 nmod _ Coref=172 +7 na na ADP RR--4---------- AdpType=Prep|Case=Acc 9 case _ _ +8 šest šest NUM Cn-S4---------- Case=Acc|Number=Sing|NumForm=Word|NumType=Card 9 nummod:gov _ _ +9 milionů milión NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 advmod _ _ +10 navíc navíc ADV Db------------- _ 9 nmod _ SpaceAfter=No +11 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Mnozí výrobci totiž začali plnit limonády do jiných lahví, ale původní láhve už nevykoupili. +1 Mnozí mnohý ADJ AAMP1----1A---- Animacy=Anim|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 amod _ _ +2 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 4 nsubj _ Coref=173 +3 totiž totiž ADV Db------------- _ 4 cc _ _ +4 začali začít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +5 plnit plnit VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 4 xcomp _ Drop_coref=173 +6 limonády limonáda NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 5 dobj _ _ +7 do do ADP RR--2---------- AdpType=Prep|Case=Gen 9 case _ _ +8 jiných jiný ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 9 amod _ _ +9 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 5 nmod _ SpaceAfter=No +10 , , PUNCT Z:------------- _ 4 punct _ _ +11 ale ale CONJ J^------------- _ 4 cc _ _ +12 původní původní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 13 amod _ _ +13 láhve láhev NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 15 dobj _ Coref=171 +14 už už ADV Db------------- _ 15 advmod _ _ +15 nevykoupili vykoupit VERB VpMP---XR-NA--- Animacy=Anim|Aspect=Perf|Gender=Masc|Negative=Neg|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 4 conj _ SpaceAfter=No +16 . . PUNCT Z:------------- _ 4 punct _ _ + +# sent_id = 8 +# text = Svaz sdružuje 30 tuzemských výrobců nealkoholických nápojů z celkových asi 60. +1 Svaz svaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 2 nsubj _ Coref=174 +2 sdružuje sdružovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Drop_coref=174 +3 30 30 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod:gov _ _ +4 tuzemských tuzemský ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 výrobců výrobce NOUN NNMP2-----A---- Animacy=Anim|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 2 dobj _ Coref=170 +6 nealkoholických alkoholický ADJ AAIP2----1N---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Neg|Number=Plur 7 amod _ _ +7 nápojů nápoj NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 5 nmod _ Coref=166 +8 z z ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +9 celkových celkový ADJ AAMP2----1A---- Animacy=Anim|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 11 amod _ _ +10 asi asi PART TT------------- _ 11 advmod:emph _ _ +11 60 60 NUM C=------------- NumForm=Digit|NumType=Card 5 nummod _ SpaceAfter=No +12 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 9 +# text = "Kdyby výrobci museli vykoupit všechny lahve, zůstane jim spousta peněz blokovaných v obalech a hrozí jim bankrot," tvrdí Zdeněk Švehla. +1 " " PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +2-3 Kdyby _ _ _ _ _ _ _ _ +2 Když když SCONJ J,------------- _ 5 mark _ _ +3 by být AUX Vc------------- Mood=Cnd|Person=3|VerbForm=Fin 5 aux _ _ +4 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 5 nsubj _ Coref=170 +5 museli muset VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 10 advcl _ _ +6 vykoupit vykoupit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 5 xcomp _ _ +7 všechny všechen PRON PLFP4---------- Case=Acc|Gender=Fem|Number=Plur|PronType=Tot 8 nmod _ _ +8 lahve lahev NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 6 dobj _ Coref=169|SpaceAfter=No +9 , , PUNCT Z:------------- _ 5 punct _ _ +10 zůstane zůstat VERB VB-S---3P-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 23 ccomp _ _ +11 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 10 dobj _ Coref=170 +12 spousta spousta NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 10 nsubj _ _ +13 peněz peníze NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 12 nmod _ _ +14 blokovaných blokovaný ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 13 amod _ _ +15 v v ADP RR--6---------- AdpType=Prep|Case=Loc 16 case _ _ +16 obalech obal NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 14 nmod _ Coref=169 +17 a a CONJ J^------------- _ 10 cc _ Coref=176 +18 hrozí hrozit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 10 conj _ _ +19 jim on PRON PPXP3--3------- Case=Dat|Number=Plur|Person=3|PronType=Prs 18 dobj _ Coref=170 +20 bankrot bankrot NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 18 nsubj _ SpaceAfter=No +21 , , PUNCT Z:------------- _ 10 punct _ SpaceAfter=No +22 " " PUNCT Z:------------- _ 10 punct _ _ +23 tvrdí tvrdit VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +24 Zdeněk Zdeněk PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 23 nsubj _ _ +25 Švehla Švehla PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 24 name _ Coref=172|SpaceAfter=No +26 . . PUNCT Z:------------- _ 23 punct _ _ + +# sent_id = 10 +# text = Řekl, že ve stejném duchu předal svaz připomínky parlamentu, ale ten na to vůbec nebral zřetel. +1 Řekl říci VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Drop_coref=172|SpaceAfter=No +2 , , PUNCT Z:------------- _ 7 punct _ _ +3 že že SCONJ J,------------- _ 7 mark _ _ +4 ve v ADP RV--6---------- AdpType=Voc|Case=Loc 6 case _ _ +5 stejném stejný ADJ AAMS6----1A---- Animacy=Anim|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 6 amod _ _ +6 duchu duch NOUN NNMS6-----A---1 Animacy=Anim|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +7 předal předat VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 ccomp _ _ +8 svaz svaz NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 nsubj _ Coref=174 +9 připomínky připomínka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 7 dobj _ _ +10 parlamentu parlament NOUN NNIS3-----A---- Animacy=Inan|Case=Dat|Gender=Masc|Negative=Pos|Number=Sing 9 nmod _ Coref=175|SpaceAfter=No +11 , , PUNCT Z:------------- _ 1 punct _ _ +12 ale ale CONJ J^------------- _ 1 cc _ _ +13 ten ten PRON PDYS1---------- Case=Nom|Gender=Masc|Number=Sing|PronType=Dem 17 nsubj _ Coref=175 +14 na na ADP RR--4---------- AdpType=Prep|Case=Acc 15 case _ _ +15 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 17 iobj _ Coref=176 +16 vůbec vůbec ADV Db------------- _ 17 advmod:emph _ _ +17 nebral brát VERB VpYS---XR-NA--- Gender=Masc|Negative=Neg|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 1 conj _ _ +18 zřetel zřetel NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 17 dobj _ Drop_coref=175|SpaceAfter=No +19 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 11 +# text = Předseda Českého svazu pivovarů a sladoven Antonín Kratochvíle naopak nepředpokládá, že by novela měla na pivovary negativní dopad. +1 Předseda předseda NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 7 nmod _ _ +2 Českého český ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 3 amod _ _ +3 svazu svaz NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 1 nmod _ _ +4 pivovarů pivovar NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 3 nmod _ Coref=177 +5 a a CONJ J^------------- _ 4 cc _ _ +6 sladoven sladovna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 4 conj _ _ +7 Antonín Antonín PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 10 nsubj _ _ +8 Kratochvíle Kratochvíle PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 7 name _ Coref=178 +9 naopak naopak ADV Db------------- _ 10 advmod _ _ +10 nepředpokládá předpokládat VERB VB-S---3P-NA--- Aspect=Imp|Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ SpaceAfter=No +11 , , PUNCT Z:------------- _ 15 punct _ _ +12 že že SCONJ J,------------- _ 15 mark _ _ +13 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 15 aux _ _ +14 novela novela NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ Coref=167 +15 měla mít VERB VpQW---XR-AA--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 10 ccomp _ _ +16 na na ADP RR--4---------- AdpType=Prep|Case=Acc 17 case _ _ +17 pivovary pivovar NOUN NNIP4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Plur 19 nmod _ Coref=177 +18 negativní negativní ADJ AAIS4----1A---- Animacy=Inan|Case=Acc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 19 amod _ _ +19 dopad dopad NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 15 dobj _ Drop_coref=167|SpaceAfter=No +20 . . PUNCT Z:------------- _ 10 punct _ _ + +# sent_id = 12 +# text = Běžné pivní láhve by se podle něho měly vykupovat bez problémů a na vykupování speciálních firemních lahví by se prodejci a výrobci měli dohodnout smluvně. +1 Běžné běžný ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 3 amod _ _ +2 pivní pivní ADJ AAFP1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 3 amod _ _ +3 láhve láhev NOUN NNFP1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Plur 8 nsubj _ _ +4 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 8 aux _ _ +5 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 8 auxpass:reflex _ _ +6 podle podle ADP RR--2---------- AdpType=Prep|Case=Gen 7 case _ _ +7 něho on PRON P5ZS2--3------1 Case=Gen|Gender=Masc,Neut|Number=Sing|Person=3|PrepCase=Pre|PronType=Prs 8 nmod _ Coref=178 +8 měly mít VERB VpTP---XR-AA--- Animacy=Inan|Gender=Fem,Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +9 vykupovat vykupovat VERB Vf--------A---- Aspect=Imp|Negative=Pos|VerbForm=Inf 8 xcomp _ _ +10 bez bez ADP RR--2---------- AdpType=Prep|Case=Gen 11 case _ _ +11 problémů problém NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 9 nmod _ _ +12 a a CONJ J^------------- _ 8 cc _ _ +13 na na ADP RR--6---------- AdpType=Prep|Case=Loc 14 case _ _ +14 vykupování vykupování NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 24 dobj _ _ +15 speciálních speciální ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +16 firemních firemní ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 17 amod _ _ +17 lahví lahev NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +18 by být AUX Vc------------- Mood=Cnd|VerbForm=Fin 23 aux _ _ +19 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 24 expl _ _ +20 prodejci prodejce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 23 nsubj _ _ +21 a a CONJ J^------------- _ 20 cc _ Coref=179 +22 výrobci výrobce NOUN NNMP1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 20 conj _ Coref=177 +23 měli mít VERB VpMP---XR-AA--- Animacy=Anim|Gender=Masc|Negative=Pos|Number=Plur|Tense=Past|VerbForm=Part|Voice=Act 8 conj _ _ +24 dohodnout dohodnout VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 23 xcomp _ Drop_coref=179 +25 smluvně smluvně ADV Dg-------1A---- Degree=Pos|Negative=Pos 24 advmod _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 13 +# text = "Jako spotřebitel novelu vítám," dodal. +1 " " PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +2 Jako jako SCONJ J,------------- _ 3 mark _ _ +3 spotřebitel spotřebitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 4 xcomp _ _ +4 novelu novela NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 5 dobj _ Coref=167 +5 vítám vítat VERB VB-S---1P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=1|Tense=Pres|VerbForm=Fin|Voice=Act 8 ccomp _ Drop_coref=178|SpaceAfter=No +6 , , PUNCT Z:------------- _ 5 punct _ SpaceAfter=No +7 " " PUNCT Z:------------- _ 5 punct _ _ +8 dodal dodat VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 8 punct _ _ + +# sent_id = 1 +# text = JLV potřebují modernizaci +1 JLV JLV NOUN NNIXX-----A---8 Abbr=Yes|Animacy=Inan|Gender=Masc|Negative=Pos 2 nsubj _ Coref=180 +2 potřebují potřebovat VERB VB-P---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Plur|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ _ +3 modernizaci modernizace NOUN NNFS4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Sing 2 dobj _ Coref=181 + +# sent_id = 2 +# text = Praha - +1 Praha Praha PROPN NNFS1-----A---- Case=Nom|Gender=Fem|NameType=Geo|Negative=Pos|Number=Sing 0 root _ _ +2 - - PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 3 +# text = Podnik Jídelní a lůžkové vozy (JLV) potřebuje vládní záruky na nákup nových restauračních a lůžkových vozů. +1 Podnik podnik NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 9 nsubj _ Coref=180 +2 Jídelní jídelní ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +3 a a CONJ J^------------- _ 2 cc _ _ +4 lůžkové lůžkový ADJ AAIP1----1A---- Animacy=Inan|Case=Nom|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 2 conj _ _ +5 vozy vůz NOUN NNIP1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Plur 1 nmod _ _ +6 ( ( PUNCT Z:------------- _ 7 punct _ SpaceAfter=No +7 JLV JLV NOUN NNIXX-----A---- Abbr=Yes|Animacy=Inan|Gender=Masc|Negative=Pos 5 appos _ SpaceAfter=No +8 ) ) PUNCT Z:------------- _ 7 punct _ _ +9 potřebuje potřebovat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 0 root _ Coref=182 +10 vládní vládní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 11 amod _ _ +11 záruky záruka NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 9 dobj _ _ +12 na na ADP RR--4---------- AdpType=Prep|Case=Acc 13 case _ _ +13 nákup nákup NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 11 nmod _ Coref=181 +14 nových nový ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +15 restauračních restaurační ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 18 amod _ _ +16 a a CONJ J^------------- _ 15 cc _ _ +17 lůžkových lůžkový ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 15 conj _ _ +18 vozů vůz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 13 nmod _ SpaceAfter=No +19 . . PUNCT Z:------------- _ 9 punct _ _ + +# sent_id = 4 +# text = Včera na valné hromadě to zdůraznil ředitel Jiří Paul. +1 Včera včera ADV Db------------- _ 6 advmod _ _ +2 na na ADP RR--6---------- AdpType=Prep|Case=Loc 4 case _ _ +3 valné valný ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 4 amod _ _ +4 hromadě hromada NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 6 nmod _ Coref=185 +5 to ten PRON PDNS4---------- Case=Acc|Gender=Neut|Number=Sing|PronType=Dem 6 dobj _ Coref=182 +6 zdůraznil zdůraznit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +7 ředitel ředitel NOUN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 8 nmod _ _ +8 Jiří Jiří PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Giv|Negative=Pos|Number=Sing 6 nsubj _ _ +9 Paul Paul PROPN NNMS1-----A---- Animacy=Anim|Case=Nom|Gender=Masc|NameType=Sur|Negative=Pos|Number=Sing 8 name _ Coref=183|SpaceAfter=No +10 . . PUNCT Z:------------- _ 6 punct _ _ + +# sent_id = 5 +# text = Upozornil, že stávajících 211 vozů Českých drah a Železnic SR, které společnost používá, od poloviny příštího roku nebude moci překročit západní hranice. +1 Upozornil upozornit VERB VpYS---XR-AA--- Aspect=Perf|Gender=Masc|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ Drop_coref=183|SpaceAfter=No +2 , , PUNCT Z:------------- _ 22 punct _ _ +3 že že SCONJ J,------------- _ 22 mark _ _ +4 stávajících stávající ADJ AAIP2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 5 amod _ _ +5 211 211 NUM C=------------- NumForm=Digit|NumType=Card 6 nummod:gov _ _ +6 vozů vůz NOUN NNIP2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Plur 22 nsubj _ Coref=184 +7 Českých český ADJ AAFP2----1A---- Case=Gen|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 8 amod _ _ +8 drah dráha NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 6 nmod _ _ +9 a a CONJ J^------------- _ 8 cc _ _ +10 Železnic železnice NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 8 conj _ _ +11 SR SR PROPN NNFXX-----A---8 Abbr=Yes|Gender=Fem|NameType=Geo|Negative=Pos 10 nmod _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 15 punct _ _ +13 které který PRON P4YP4---------- Case=Acc|Gender=Masc|Number=Plur|PronType=Int,Rel 15 dobj _ Coref=184 +14 společnost společnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 15 nsubj _ Coref=180 +15 používá používat VERB VB-S---3P-AA--- Aspect=Imp|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 6 acl _ SpaceAfter=No +16 , , PUNCT Z:------------- _ 15 punct _ _ +17 od od ADP RR--2---------- AdpType=Prep|Case=Gen 18 case _ _ +18 poloviny polovina NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 22 nmod _ _ +19 příštího příští ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 20 amod _ _ +20 roku rok NOUN NNIS2-----A---1 Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 18 nmod _ _ +21 nebude být AUX VB-S---3F-NA--- Mood=Ind|Negative=Neg|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 22 aux _ _ +22 moci moci VERB Vf--------A---- Negative=Pos|VerbForm=Inf 1 ccomp _ _ +23 překročit překročit VERB Vf--------A---- Aspect=Perf|Negative=Pos|VerbForm=Inf 22 xcomp _ _ +24 západní západní ADJ AAFP4----1A---- Case=Acc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Plur 25 amod _ _ +25 hranice hranice NOUN NNFP4-----A---- Case=Acc|Gender=Fem|Negative=Pos|Number=Plur 23 dobj _ SpaceAfter=No +26 . . PUNCT Z:------------- _ 1 punct _ _ + +# sent_id = 6 +# text = Valná hromada rozhodla, že většina z loňského čistého zisku 2,34 milionu korun bude převedena do rezerv, o zbylých 675 tisících korun se rozhodne až společně se ziskem za rok 1993. +1 Valná valný ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 hromada hromada NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 3 nsubj _ Coref=185 +3 rozhodla rozhodnout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ SpaceAfter=No +4 , , PUNCT Z:------------- _ 17 punct _ _ +5 že že SCONJ J,------------- _ 17 mark _ _ +6 většina většina NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 17 nsubjpass _ _ +7 z z ADP RR--2---------- AdpType=Prep|Case=Gen 10 case _ _ +8 loňského loňský ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 amod _ _ +9 čistého čistý ADJ AAIS2----1A---- Animacy=Inan|Case=Gen|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 10 amod _ _ +10 zisku zisk NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 6 nmod _ _ +11 2 2 NUM C=------------- NumForm=Digit|NumType=Card 14 nummod:gov _ SpaceAfter=No +12 , , PUNCT Z:------------- _ 11 punct _ SpaceAfter=No +13 34 34 NUM C=------------- NumForm=Digit|NumType=Card 11 conj _ _ +14 milionu milión NOUN NNIS2-----A---- Animacy=Inan|Case=Gen|Gender=Masc|Negative=Pos|Number=Sing 10 nmod _ _ +15 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 14 nmod _ _ +16 bude být AUX VB-S---3F-AA--- Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Fut|VerbForm=Fin|Voice=Act 17 auxpass _ _ +17 převedena převést VERB VsQW---XX-AP--- Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|VerbForm=Part|Voice=Pass 3 ccomp _ _ +18 do do ADP RR--2---------- AdpType=Prep|Case=Gen 19 case _ _ +19 rezerv rezerva NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 17 nmod _ SpaceAfter=No +20 , , PUNCT Z:------------- _ 17 punct _ _ +21 o o ADP RR--6---------- AdpType=Prep|Case=Loc 24 case _ _ +22 zbylých zbylý ADJ AAIP6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Plur 23 amod _ _ +23 675 675 NUM C=------------- NumForm=Digit|NumType=Card 24 nummod _ _ +24 tisících tisíc NOUN NNIP6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Plur 27 dobj _ _ +25 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 24 nmod _ _ +26 se se PRON P7-X4---------- Case=Acc|PronType=Prs|Reflex=Yes|Variant=Short 27 auxpass:reflex _ _ +27 rozhodne rozhodnout VERB VB-S---3P-AA--- Aspect=Perf|Mood=Ind|Negative=Pos|Number=Sing|Person=3|Tense=Pres|VerbForm=Fin|Voice=Act 17 conj _ _ +28 až až PART TT------------- _ 29 advmod:emph _ _ +29 společně společně ADV Dg-------1A---- Degree=Pos|Negative=Pos 27 advmod _ _ +30 se s ADP RV--7---------- AdpType=Voc|Case=Ins 31 case _ _ +31 ziskem zisk NOUN NNIS7-----A---- Animacy=Inan|Case=Ins|Gender=Masc|Negative=Pos|Number=Sing 29 nmod _ _ +32 za za ADP RR--4---------- AdpType=Prep|Case=Acc 33 case _ _ +33 rok rok NOUN NNIS4-----A---- Animacy=Inan|Case=Acc|Gender=Masc|Negative=Pos|Number=Sing 31 nmod _ _ +34 1993 1993 NUM C=------------- NumForm=Digit|NumType=Card 33 nummod _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 3 punct _ _ + +# sent_id = 7 +# text = Společnost vznikla osamostatněním od ČSD v květnu 1992. +1 Společnost společnost NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 2 nsubj _ Coref=180 +2 vznikla vzniknout VERB VpQW---XR-AA--1 Aspect=Perf|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +3 osamostatněním osamostatnění NOUN NNNS7-----A---- Case=Ins|Gender=Neut|Negative=Pos|Number=Sing 2 nmod _ _ +4 od od ADP RR--2---------- AdpType=Prep|Case=Gen 5 case _ _ +5 ČSD ČSD PROPN NNFPX-----A---8 Abbr=Yes|Gender=Fem|NameType=Com|Negative=Pos|Number=Plur 3 nmod _ _ +6 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +7 květnu květen NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 3 nmod _ _ +8 1992 1992 NUM C=------------- NumForm=Digit|NumType=Card 7 nummod _ SpaceAfter=No +9 . . PUNCT Z:------------- _ 2 punct _ _ + +# sent_id = 8 +# text = Dosažená cena jedné akcie v nominální hodnotě tisíc korun na mimoburzovním trhu RM-Systém činila v prvním kole 687 korun, pro druhé kolo bylo cenové rozpětí stanoveno na 374 až 624 korun. +1 Dosažená dosažený ADJ AAFS1----1A---- Case=Nom|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 2 amod _ _ +2 cena cena NOUN NNFS1-----A---- Case=Nom|Gender=Fem|Negative=Pos|Number=Sing 16 nsubj _ _ +3 jedné jeden NUM ClFS2---------- Case=Gen|Gender=Fem|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 4 nummod _ _ +4 akcie akcie NOUN NNFS2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Sing 2 nmod _ _ +5 v v ADP RR--6---------- AdpType=Prep|Case=Loc 7 case _ _ +6 nominální nominální ADJ AAFS6----1A---- Case=Loc|Degree=Pos|Gender=Fem|Negative=Pos|Number=Sing 7 amod _ _ +7 hodnotě hodnota NOUN NNFS6-----A---- Case=Loc|Gender=Fem|Negative=Pos|Number=Sing 4 nmod _ _ +8 tisíc tisíc NUM ClXS2---------- Case=Gen|Number=Sing|NumForm=Word|NumType=Card|NumValue=1,2,3 9 nummod:gov _ _ +9 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 7 nmod _ _ +10 na na ADP RR--6---------- AdpType=Prep|Case=Loc 12 case _ _ +11 mimoburzovním mimoburzovní ADJ AAIS6----1A---- Animacy=Inan|Case=Loc|Degree=Pos|Gender=Masc|Negative=Pos|Number=Sing 12 amod _ _ +12 trhu trh NOUN NNIS6-----A---- Animacy=Inan|Case=Loc|Gender=Masc|Negative=Pos|Number=Sing 4 nmod _ _ +13 RM RM ADJ AAXXX----1A---8 Abbr=Yes|Degree=Pos|NameType=Com|Negative=Pos 15 amod _ SpaceAfter=No +14 - - PUNCT Z:------------- _ 13 punct _ SpaceAfter=No +15 Systém systém NOUN NNIS1-----A---- Animacy=Inan|Case=Nom|Gender=Masc|Negative=Pos|Number=Sing 12 nmod _ _ +16 činila činit VERB VpQW---XR-AA--- Aspect=Imp|Gender=Fem,Neut|Negative=Pos|Number=Plur,Sing|Tense=Past|VerbForm=Part|Voice=Act 0 root _ _ +17 v v ADP RR--6---------- AdpType=Prep|Case=Loc 19 case _ _ +18 prvním první ADJ CrNS6---------- Case=Loc|Gender=Neut|Number=Sing|NumType=Ord 19 amod _ _ +19 kole kolo NOUN NNNS6-----A---- Case=Loc|Gender=Neut|Negative=Pos|Number=Sing 16 nmod _ _ +20 687 687 NUM C=------------- NumForm=Digit|NumType=Card 21 nummod:gov _ _ +21 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 16 dobj _ SpaceAfter=No +22 , , PUNCT Z:------------- _ 16 punct _ _ +23 pro pro ADP RR--4---------- AdpType=Prep|Case=Acc 25 case _ _ +24 druhé druhý ADJ CrNS4---------- Case=Acc|Gender=Neut|Number=Sing|NumType=Ord 25 amod _ _ +25 kolo kolo NOUN NNNS4-----A---- Case=Acc|Gender=Neut|Negative=Pos|Number=Sing 29 nmod _ _ +26 bylo být VERB VpNS---XR-AA--- Gender=Neut|Negative=Pos|Number=Sing|Tense=Past|VerbForm=Part|Voice=Act 29 cop _ _ +27 cenové cenový ADJ AANS1----1A---- Case=Nom|Degree=Pos|Gender=Neut|Negative=Pos|Number=Sing 28 amod _ _ +28 rozpětí rozpětí NOUN NNNS1-----A---- Case=Nom|Gender=Neut|Negative=Pos|Number=Sing 29 nsubj _ _ +29 stanoveno stanovit VERB VsNS---XX-AP--- Aspect=Perf|Gender=Neut|Negative=Pos|Number=Sing|VerbForm=Part|Voice=Pass 16 conj _ _ +30 na na ADP RR--4---------- AdpType=Prep|Case=Acc 34 case _ _ +31 374 374 NUM C=------------- NumForm=Digit|NumType=Card 34 nummod:gov _ _ +32 až až CONJ J^------------- _ 31 cc _ _ +33 624 624 NUM C=------------- NumForm=Digit|NumType=Card 31 conj _ _ +34 korun koruna NOUN NNFP2-----A---- Case=Gen|Gender=Fem|Negative=Pos|Number=Plur 29 advmod _ SpaceAfter=No +35 . . PUNCT Z:------------- _ 16 punct _ _ + From 15ac4a37b7ccab7cf29748edf6e2fff3b81ca8b0 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:43:22 +0200 Subject: [PATCH 04/22] Delete conll_add_coref.py --- .../demo/Coreference/CoNLL/conll_add_coref.py | 104 ------------------ 1 file changed, 104 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_add_coref.py diff --git a/udapi/block/demo/Coreference/CoNLL/conll_add_coref.py b/udapi/block/demo/Coreference/CoNLL/conll_add_coref.py deleted file mode 100644 index 2a49c65b..00000000 --- a/udapi/block/demo/Coreference/CoNLL/conll_add_coref.py +++ /dev/null @@ -1,104 +0,0 @@ -# Jan Faryad -# 30. 4. 2017 -# -# adding detected coreference to the plain (without coreference) conll-u file (outp) - -from auxiliaries import join_with_separator - -class CoNLL_add_coreference: - def __init__( self, input, output): - self.input = input - self.output = output - self.list_of_coreferents = [] - - def add_coreference( self, list_of_triplets): # void - """ - list of triplets ( pronoun id, candidate id, bool ~ are coreferents ) - main method for adding detected coreference information - """ - self.build_clusters( list_of_triplets) - - iterator = 0 - para_id = 0 - sent_id = 0 - for line in self.input: - if ( len( self.list_of_coreferents) > iterator ): - actual_coreferent = self.list_of_coreferents[ iterator ] - else: - actual_coreferent = None - - fields = line.split( '\t') - if ( line[0] == '#' ): # comment line beginning with # - if ( len( fields) == 4 and fields[1] == '$' ): # new sentence with paragraph and sentence id - para_id = int( fields[2]) - sent_id = int( fields[3]) - self.output.write( line) - elif ( line != ' \n' ): # not a blank line -> record line - try: - word_id = int( fields[0]) - if ( actual_coreferent != None and actual_coreferent.id == ( para_id, sent_id, word_id ) ): - misc = fields[-1] # adding to the last column - coref_info = "Coref=" + str( actual_coreferent.cluster_id) - if ( misc == "_\n" or misc == "_" ): # no other information in the column - new_misc = coref_info + "\n" - else: # adding to another information - new_misc = misc[:-1] + "|" + coref_info + "\n" # [:-1] ... except newline - new_line = join_with_separator( fields[:-1] + [ new_misc ], '\t') # rebuildng the line with the new last column - self.output.write( new_line) - iterator += 1 - #actual_coreferent = self.list_of_coreferents[ iterator ] - continue - self.output.write( line) - except: # range line - self.output.write( line) - else: # blank line - self.output.write( line) - - def build_clusters( self, list_of_triplets): # triplets( pronoun id, referent id, bool - are coreferents?) - for triplet in list_of_triplets: - if ( triplet[2] ): # if they are coreferents - # obtaining Coreferents from ids - pronoun = self.get_coreferent( triplet[0]) # these methos fill list of coreferents - referent = self.get_coreferent( triplet[1]) - # connection between Coreferents - pronoun.add_coreferent( referent) - referent.add_coreferent( pronoun) - - # adding cluster id to all Coreferents in the cluster - cluster_id = 0 - for coref in self.list_of_coreferents: - if ( coref.cluster_id == -1 ): # if the cluster still doesn't have an id - coref.rewrite_cluster_id( cluster_id) # recursion - cluster_id += 1 - - def get_coreferent( self, coreferent_id): # -> Coreferent - """ - returns Coreferent by id - either existing or it newly created - """ - for i in range( len( self.list_of_coreferents)): - if ( coreferent_id < self.list_of_coreferents[i].id ): # new coreferent in the middle - coreferent = Coreferent( coreferent_id) - self.list_of_coreferents = self.list_of_coreferents[:i] + [ coreferent ] + self.list_of_coreferents[i:] - return coreferent - elif ( coreferent_id == self.list_of_coreferents[i].id ): # existing coreferent - return self.list_of_coreferents[i] - coreferent = Coreferent( coreferent_id) # new coreferent at the end - self.list_of_coreferents.append( coreferent) - return coreferent - -class Coreferent: - def __init__( self, id): # id ... triplet ( para id, sent id, word id ) - self.id = id - self.coreferents = [] - self.cluster_id = -1 - def add_coreferent( self, coreferent): # void - if ( coreferent not in self.coreferents ): - self.coreferents.append( coreferent) - def rewrite_cluster_id( self, new_cluster_id): # void - """ - recursive method for setting cluster id to all coreferents in the cluster - """ - if ( self.cluster_id != new_cluster_id ): - self.cluster_id = new_cluster_id - for coref in self.coreferents: - coref.rewrite_cluster_id( self.cluster_id) \ No newline at end of file From 2daeec9ae102b69cc82b624248ab66a4d2ab03c0 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:43:51 +0200 Subject: [PATCH 05/22] Delete conll_api.py --- .../block/demo/Coreference/CoNLL/conll_api.py | 230 ------------------ 1 file changed, 230 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_api.py diff --git a/udapi/block/demo/Coreference/CoNLL/conll_api.py b/udapi/block/demo/Coreference/CoNLL/conll_api.py deleted file mode 100644 index e945d23f..00000000 --- a/udapi/block/demo/Coreference/CoNLL/conll_api.py +++ /dev/null @@ -1,230 +0,0 @@ -# Jan Faryad -# 20. 4. 2017 -# -# static class for serving as interface for operations over processed document - -from math import fabs - -class CoNLL_API: - """ - static class for serving as interface for operations over processed document - """ - # NODE API - # fields getters - def get_id( node): # -> int ( -1 for range nodes ) - return node.id - def get_form( node): # -> string - return node.form - def get_lemma( node): # -> string - return node.lemma - def get_upostag( node): # -> string - return node.upostag - def get_xpostag( node): # -> string, NOT USED (language specific) - return node.xpostag - def get_feats( node): # -> list of features, feature = pair (name=string, list of values), value = string - return node.feats - def get_head( node): # -> Node - return node.head - def get_deprel( node): # -> string - return node.deprel - def get_deps( node): # -> list of secondary dependencies, = pair ( head=Node, name=string) - return node.deps - def get_misc( node): # -> list of other information, = pair (name=string, value=string) - return node.misc - - def get_full_id( node): # -> triplet of ints - """ - unique node id in the whole document - """ - para_id = node.sentence.paragraph.number - sent_id = node.sentence.number - return ( para_id, sent_id, node.id ) - - def has_upostag( node, list_of_possible_upostags): # -> bool - """ - controls if the node's upostag is on of the possible ones - """ - return ( node.upostag in list_of_possible_upostags ) - def has_feature( node, feature_name, list_of_possible_values): # -> bool - """ - controls if the node has the given feature and if one of it's values is possible - """ - for feat in node.feats: - if ( feat[0] == feature_name ): - # if the intersection of the present and possible values is non-empty - return ( len( set( feat[1]) & set( list_of_possible_values) ) > 0 ) - # for value in feat[1]: - # if ( value in list_of_possible_values ): - # return True - return False - def has_deprel( node, list_of_possible_deprels): # -> bool - """ - controls if the node's dependecy relation is on of the possible ones - """ - return ( node.deprel in list_of_possible_deprels ) - def get_features_by_name( node, name): # -> list of strings - """ - returns the list of values of the given feature (empty if the feature is ont present) - """ - for feat in node.feats: - if ( feat[0] == name ): - return feat[1] - return [] - def get_misc_by_name( node, name): # -> string - """ - returns value of the given misc - """ - for misc in node.misc: - if ( misc[0] == name ): - return misc[1] - return None - - - def is_leaf( node): # -> bool - return ( node.subnodes == [] ) - def is_range_node( node): # -> bool - return ( node.depth == -1 ) - def get_depth( node): # -> int ( -1 for range nodes ) - return node.depth - def get_subnodes_number( node): # -> int - return len( node.subnodes) - def get_subnodes( node): # -> list of Nodes - return node.subnodes - def get_root_path( node): # -> list of Nodes - return node.root_path - def get_sentence( node): # -> Sentence - return node.sentence - - # SENTENCE, PARAGRAPH AND DOCUMENT API - def get_root( sent): # -> Node - return sent.root - def get_depth( sent): # -> int - return sent.depth - def get_nodes_number( sent): # -> int - return sent.nodes_number - def get_nodes( sent): # -> list of Nodes - return sent.nodes - - def get_sentences( para): # -> list of Sentences - return para.sentences - def get_paragraphs( doc): # -> list of Paragraphs - return doc.paragraphs - - def previous_paragraph( para): # -> Paragraph, None for the first paragraph in the document - index_of_previous = para.number - 2 # list indeces from 0 - if ( index_of_previous >= 0 ): - return para.document.paragraphs[ index_of_previous ] - def next_paragraph( para): # -> Paragraph, None for the last paragraph in the document - index_of_next = para.number # list indeces from 0 - if ( index_of_next < len( para.document.paragraphs) ): - return para.document.paragraphs[ index_of_next ] - def previous_sentence( sent): # -> Sentence, None for the first sentence in the paragraph - index_of_previous = sent.number - 2 # list indeces from 0 - if ( index_of_previous >= 0 ): - return sent.paragraph.sentences[ index_of_previous ] - else: - prev_para = CoNLL_API.previous_paragraph( sent.paragraph) # possibly in the previous paragraph - if ( prev_para != None ): - return prev_para.sentences[-1] - def next_sentence( sent): # -> Sentence, None for the last sentence in the paragraph - index_of_next = sent.number # list indeces from 0 - if ( index_of_next < len( sent.paragraph.sentences) ): - return sent.paragraph.sentences[ index_of_next ] - else: - next_para = CoNLL_API.next_paragraph( sent.paragraph) # possibly in the next paragraph - if ( next_para != None ): - return next_para.sentences[0] - - # TWO NODES RELATION - def in_same_sentence( node_1, node_2): # -> bool - return ( node_1.sentence == node_2.sentence ) - def in_same_paragraph( node_1, node_2): # -> bool - return ( node_1.sentence.paragraph == node_2.sentence.paragraph ) - def surface_node_distance( node_1, node_2): # -> int - """ - surface distance of two words in the sentence, -1 if they are not the the same sentence - """ - if ( not CoNLL_API.in_same_sentence( node_1, node_2) ): - return -1 - values = [ fabs( node_1.id_range[0] - node_1.id_range[1] ), # general, works also for range nodes - fabs( node_1.id_range[1] - node_1.id_range[0] ) # don't know, which one come first - ] - return int( round( min( values))) - def surface_sentence_distance( node_1, node_2): # -> int - """ - surface distance of the sentences of two words in the paragraph, -1 if they are not the the same paragraph - """ - if ( not CoNLL_API.in_same_paragraph( node_1, node_2) ): - return -1 - return int( round( fabs( node_1.sentence.number - node_2.sentence.number))) - def surface_paragraph_distance( node_1, node_2): # -> int - """ - surface distance of the paragraphs of two words in the documet - """ - return int( round( fabs( node_1.sentence.paragraph.number - node_2.sentence.paragraph.number))) - def depth_distance( node_1, node_2): # -> int - """ - difference of depths - """ - return int( round( fabs( CoNLL_API.get_depth( node_1) - CoNLL_API.get_depth( node_2)))) - def is_supernode_of( node_1, node_2): # -> bool - return ( node_1 in node_2.root_path) - def closest_common_supernode( node_1, node_2): # -> Node - """ - first common supernode (coming upwards from the given nodes) - """ - if ( not CoNLL_API.in_same_sentence( node_1, node_2) or CoNLL_API.is_range_node( node_1) or CoNLL_API.is_range_node( node_2) ): - return None # not in the same sentence or one of the nodes is a range node - ccs = node_1.sentence.root # == node_2.sentence.root - ran = min( len( node_1.root_path), len( node_2.root_path)) # meaningful only to the lower depth of the nodes - for i in range( ran): - if ( node_1.root_path[i] == node_2.root_path[i] ): - ccs = node_1.root_path[i] - else: - return ccs - return ccs # == one of the given nodes - def ccs_depth( node_1, node_2): # -> int - """ - depth of the closest common supernode, -1 if they don't have a ccs - """ - ccs = CoNLL_API.closest_common_supernode( node_1, node_2) - if ( ccs == None ): - return -1 - return CoNLL_API.get_depth( ccs) - def compound_distance( node_1, node_2): # -> int - """ - sum of sistances from ccs, -1 if no ccs exist - """ - ccs = CoNLL_API.closest_common_supernode( node_1, node_2) - if ( ccs == None ): - return -1 - return CoNLL_API.depth_distance( node_1, ccs) + CoNLL_API.depth_distance( node_2, ccs) - - # TARGET - def are_coreferents( node, candidate): # -> bool - """ - if two nodes are in the same coreference cluster - """ - coref_1 = CoNLL_API.get_misc_by_name( node, "Coref") - drop_coref_1 = CoNLL_API.get_misc_by_name( node, "Drop_coref") - coref_2 = CoNLL_API.get_misc_by_name( candidate, "Coref") - drop_coref_2 = CoNLL_API.get_misc_by_name( candidate, "Drop_coref") - for c in [ coref_1, drop_coref_1 ]: - if ( c != None and c in [ coref_2, drop_coref_2 ] ): - return True - return False - - - - - - - - - - - - - - - From 0675a824e32cf63b955fcd4fc1153cf2c6be34fa Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:44:20 +0200 Subject: [PATCH 06/22] Delete conll_api.pyc --- .../block/demo/Coreference/CoNLL/conll_api.pyc | Bin 13118 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_api.pyc diff --git a/udapi/block/demo/Coreference/CoNLL/conll_api.pyc b/udapi/block/demo/Coreference/CoNLL/conll_api.pyc deleted file mode 100644 index a1a6219cc97f44dac53d8d58d7a34018ee224376..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 13118 zcmd5?TXP&o74F$x*^(^ZuW}q`?AX!zs@NofN|}(vPEsaDF{2pA1~ZJdXQh#MXV%lR zwnW(vRN#rCc!n2vp{N3W0gpWMZ}8bx?@AS1l ze)mC3lG2xixUBSLA+9KIv3Z3u`T?407e6KovZ&>@I)O26 zJ4sy=rca}I*$s>v#aWoPgH|XPl3tkN-Xu0|@-$4{UYfK*V?yofq}A_+aV9TpQ4fma zCdb;1=DAX<3M$153s#+KAR}F=R-EXti9RKb`4Oo3pl#;6=4!XyzS`=?(bd*Z=lk>R z`F4=52YPkBuY+E6rMI4~B(Xi2U+N^S$MZVuCi6FwG;D`y7`H;uP}liZ5_dX2p1F!= zsNKt9=0{K!a7lKQ^UB;ea5v!U3jZF>Ym~fCVm$Ir4i13cF8337rW1C%!FbrG10nmu z!l51TPnGKT5-9KTcxJFCpFz&VksZ!q?f+p8ITOcrFbC>UI}9>29w`)hBrKfR0spk( zl`ybgXlzzY4o>cXdwMV(_R_F39{8s*KF!$jaB2rLApUrIOzKm3QF3s4hun7~(;5%@ z1^48@9pawxh=;`AOCW6gU3JuIO}%i6Q_wZ_9H(dzpzEq#&ttTC4-ZK^XOe)>`=lSb zjL>eRkr%kxO6WdYNjl-i;Ln?z6lzB93~~ZSUr88yK^iQlL2pF@Z`|)Lg{jA&+a#l6 zdl}t2??X%$nlAv|ME9t&g2J)4`^Xd`Bx0Bb?MyZHJ2Os;3>SxhyB8f6T;TY4R{`JW z=q}+y+L5J62MJYMfFq7`#?51g8zG^J-Nar)Krqn~a82USly9&aMt9fb=oYP6P@TwR ze$w`f$Nc=IX4IIi1g039`eqZ7MvJngJ}^)SUUxvOeUd|V>(Tq_MO{6|(!f!(1hA&k zX_YxDgGS1NVfJf#Qd1y4#DO~>V{!6iTHVj6tsKEDp((-I3T_wt3HHm;(=c`!F#2ie z1~Ig`O{|H3ltC&_gHAt$sEk`+TD~~KC@NwKD?08`_TYi3R4o5Zm}Q*lr$NVr_8wl& zX3*qA`f<<=v*UbdSafz|yUYTAT2{7hw!qJAKky-#FAuYfTeFJBO0nl8j13YfBpV+QlC=KAW zxL{c%R|WuojJ5KtDETs%O?=vbs+2qpp}<&*(Ge2?>Tj;PxhL7E>CLd)%hn4IROr9B zo(xO5kgoQ^R+>(A7fm1V)3j*nv3Cx{DD{+iwyb-s{ThF1T@30Y^j8X7IO_ijca%dG z#e~f@yu3uFz+JE|oVJCUfw;V{@)ZkKUytG~V%rPwHWij0;q!QLlsIzDNF2#>f#GfR zZN!kG=RqA7-K~NhbP>LK!+M_n!t|FI+{Tp8F@1;(R+T|}k<5^9RW0eam1L z1EnrHaoBRUGM?0qIAbDd5HE*50lkNg;ptE^A{9>CrXYjz@UEhJJnS=1$=3zh%6*&+ zv%WzRndRPLfG;M%8@xBzTt+jVSscd5oJFD2zRg)5pnG^eFB8T1Cc(^Oa1uY6?@Uju9>DJmy>>j&0hlvtdvhh|Z&)MiCW+1*S*a z<)1GoN(wf^5Hn!GV1&w)F*u7$&5hY~b}$z%7|M!BJ{hK~*h(4YT)6YWxm2vgLz7`7 zF2i+INkZauf^{UU$7|~Ggi7Zm1(Es^I%gMkv20n0_&DXAS9(~skn&KmZRCB(YZCH5 z;5DxCA}kQsq_B~OPotzi($ySyB(NlsaVuz^px2gyoV{FO6qzx_CVAL5K-fIYB7-sp zPiri!A-8#~R61YvR4DO93$|K7Y;4}cHx2_MX<-3O9IlPj`%_goW(7zeJvks#&It<$ z!6?<`OPp9hUaBrApR6|IX2}Ctmc$wui;TKT?~(?LSdry=#r5ZaUfIN*RXR@qWL3cX zHXB0geZuA<8oTPE-}7#vv1LifS*A2fv!jNW3RbwZb#xkL3QF{AU+qw#WdxN6bwc(< zx2a`tldBWC=0OoRfcuqzYYTAJXequ0Yp+~cSV$!oAHwxBULC^qQ}hY0rK*e)R~m>6 zTwwY$bmW*)MRQC!!{QK38DTA^u*%gc@(EkJ#)8bhR*~07IYqJ>#lAuH#V=<0 zOY{}Nw3rwF%iOrFXXl3Mznvb4fyF!Tlo@)Iul2)s*!Ml2;uukumiv7>wK5?63gZvX zjds99M&`Bx0?S8E43mWCs40VQH?WRm{aAK1SVzk#xQ`Q1|LPJts+)LeSvEvqE~w%{ zzHmF}w10Umh;~udcue1Z9idTw3$V{2<)CMY`z%Q{zn+ldTp^^(?v-nK`EA_|P zj#6H~;YGVEMtN+o!Vu%Ru3_=i$gnH0}vY}R+yJ$+Fwlprtri2u` zX4ow*lfZeS)s% zwCMdNh~L8FCB!;v=if&WN~w1aY&p{KhBZ^1&)c{#M$Kd*D!i6B{Q*70IF<2_IRT8` zM!s@`)_#NLF=Zd)RQ6+d)Ok%GpVo0%j0Ml1%DGsxq7<0!ip>8EV#o!~V0(gH67L}W z>QodUeOJOE9i!MEaz8kKY_79slCF_7j8bUCPi)7oeasXN+poBK>(M*vg>|fx>Ul#p zX>l(p?$!P-e-F>`>L&?f<|6*x=YK)gFjkc+*N#%`Rkf0C7hB%tyxk^x_|aj%_bg!S zY^OaLsTzsv6heXlI-=&SB>ywqz%*c93}#WU;#2eexCf`{65)YOV64Mgb3TK=1wMk$bBA-s;xeOcZPeV6w0cH6r z$zSr7t$2iVXyI)*)=fGE_M|o~B44su#!%@vV7X$_n>L!*M;I;AKRH^d4j9;*)#$vV@<%lO;o;SCHF; zL)?+%@I{W#^u1MmZVbEW8+EA?gC z54|%WY_dpAl!bK*->gJB$U^x-N?wA+=nO9F@~!9~ruO3X;fvSB$Bnek$UuiRkDW6= z$2G z2@C|oW18Uc{T}_NcZ3bs!rm!1{M^qw&t{Iz1vY~J6;cvU=%T!9Y_79;ht0cezQyK! zHaFPNls&46Ei`>b>NcCt*+_i)f)w{~J$@hK-Dg7^^&YShugEPS?xL z@DfW2pm~U9SAAD~s_HHKpm1K@<8oh-rwR| From 2433c6d0cb1031c3e071abf1295765479abb7c3d Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:44:36 +0200 Subject: [PATCH 07/22] Delete conll_node.py --- .../demo/Coreference/CoNLL/conll_node.py | 130 ------------------ 1 file changed, 130 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_node.py diff --git a/udapi/block/demo/Coreference/CoNLL/conll_node.py b/udapi/block/demo/Coreference/CoNLL/conll_node.py deleted file mode 100644 index 2ed3eed3..00000000 --- a/udapi/block/demo/Coreference/CoNLL/conll_node.py +++ /dev/null @@ -1,130 +0,0 @@ -# Jan Faryad -# 20. 4. 2017 -# -# node class of processor has it's own file - -class Node: - def __init__( self, sentence, record_line): - self.sentence = sentence - self.process_record_line( record_line) - self.subnodes = [] - self.depth = -1 # remains to be set -1 for auxiliary nodes such as range nodes, which are not included in the tree - self.root_path = [] - def process_record_line( self, record_line): - if ( record_line[-1] == '\n' ): - record_line = record_line[:-1] - fields = record_line.split( '\t') - #if ( len(fields) < 10 ): - # print(record_line) - self.set_id( fields[0]) # each record line should have 10 fields - self.set_form( fields[1]) - self.set_lemma( fields[2]) - self.set_upostag( fields[3]) - self.set_xpostag( fields[4]) - self.set_feats( fields[5]) - self.set_head_number( fields[6]) # only a number, pointer wil be set after processing of all sentence nodes - self.set_deprel( fields[7]) - self.set_deps_numbers( fields[8]) # the same as for head - self.set_misc( fields[9]) - def set_id( self, id_string): - try: - self.id = int( id_string) - self.id_range = ( self.id, self.id) - except: - self.id = -1 - range = id_string.split( '-') - if ( len( range) == 2 ): # range nodes - try: - self.id_range = ( int( range[0]), int( range[1]) ) - except: - self.id_range = ( -1, -1) - def set_form( self, form): - self.form = form - def set_lemma( self, lemma): - self.lemma = lemma - def set_upostag( self, upostag): - self.upostag = upostag - def set_xpostag( self, xpostag): - self.xpostag = xpostag - def set_feats( self, feats): - self.feats = [] # list of features - if ( feats == "_" ): - return - split_feats = feats.split( '|') - for feat in split_feats: - split_feat = feat.split( '=') - name = split_feat[0] - values = split_feat[1].split( ',') # there can be more values for one feature - feature = ( name, values) - self.feats.append( feature) - def set_head_number( self, head): - if ( head == "_"): - self.head_number = -1 # for range nodes - else: - self.head_number = int( head) - if ( self.head_number == 0 ): # root - self.sentence.set_root( self) - def set_head( self): - """ - called after creation of all nodes in a sentence - creates a pointer to head node according to head number and add this node to its head's list of subnodes - """ - self.head = self.sentence.get_node_by_id( self.head_number) # None for root and range nodes - if ( self.head != None): - self.head.add_subnode( self) - def set_deprel( self, deprel): - self.deprel = deprel - def set_deps_numbers( self, deps): - """ - deps ... secondary dependencies - """ - self.deps = [] - if ( deps == "_" ): - return - split_deps = deps.split( '|') - for dep in split_deps: - split_dep = dep.split( ':') # deps have for node_id:dep_name - s_head_number = int( split_dep[0]) # only a number, not an object, for now - s_deprel = split_dep[1] - s_dependency = ( s_head_number, s_deprel) - self.deps.append( s_dependency) - def set_deps( self): - """ - called after creation of all nodes in a sentence - creates pointers to secondary heads in form ( sec_head_pointer, dep_name ) - """ - new_deps = [] - for pair in self.deps: - s_head = self.sentence.get_node_by_id( pair[0]) - s_dependency = ( s_head, pair[1]) - new_deps.append( s_dependency) - self.deps = new_deps - def set_misc( self, misc): - """ - any other information - here will be marked the coreference - """ - self.misc = [] - if ( misc == "_" ): - return - split_misc = misc.split( '|') - for misc in split_misc: - split_misc = misc.split( '=') - name = split_misc[0] - value = split_misc[1] - miscellaneous = ( name, value) - self.misc.append( miscellaneous) - def set_depth_and_path( self, head_depth, root_path): - """ - called after setting of heads and subnodes - sets depths and root paths of nodes recursively - """ - self.depth = head_depth + 1 # increasing the depth - self.root_path = root_path + [ self ] # expanding the path - for subnode in self.subnodes: - subnode.set_depth_and_path( self.depth, self.root_path) # recursion - def add_subnode( self, subnode): # void - """ - called from subnode itself, when setting its head (= this node) - """ - self.subnodes.append( subnode) From 681a8a5326df5d72b664c7bc879c656cd993be06 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:44:50 +0200 Subject: [PATCH 08/22] Delete conll_node.pyc --- .../block/demo/Coreference/CoNLL/conll_node.pyc | Bin 6579 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_node.pyc diff --git a/udapi/block/demo/Coreference/CoNLL/conll_node.pyc b/udapi/block/demo/Coreference/CoNLL/conll_node.pyc deleted file mode 100644 index 3fd83a98356ccc3b01637a77cb409ec35b16adbc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6579 zcmcgw>yF&E6{hC4tJz)eIxdoI;IwMcV#lbxgEYvG+=Ip~P$U_kG7u*&3_&~M?8w$g zW04bk3vYiU?IQ$8e)K8&HhqmgK>K}%9BG;uMVlZqHo1p~q)492cMjS8=fSWzzW&)% z`Ck`*-$yYopvv&StFl1-MX4{9`s^Os9d&2aL!V_esWRP64Z!#fiuoFqR_b2B4`AxO zj{n9ze5@m!9zV>kzRG$+3{=(^Vn<~IA$C=^BSfgOT_J`l3x(KI*-(gmmF)>}pt5}- zuBhxlh(ncK5#mT?heBLc@tx5THaF!dSvn{mpqSTDJq^@Tr4kTIJpkQNUj`~Tmv$mY zV0Tw}4vwH83w~mf{|moSAEe#o=X7axIo0+W8q2zxYGaaGPpdjhioDcr(CVy&_>ASW zOfT)+hM?-IvdJ>F^AR^FQZ~An#gwkylVk_98KP1_7#yI4!IXkn%T;9h4=^B8n9nh^{;;F!mwh|B3{)wd55&SC z=gUqj_N=FlDSGMwY>2+!GP=STw2YoGc3MVX7`rWFAdIkO>NG~nkD6Gai(ia^>GAD zuhxa7U-+i+Lrk-QMQ)~Ik1=-_^8m8XS+0xBY|{*5O7(zyeF>Ecj$nR=-K)X3|25`F z*^4>;4aCJrS+P5q7oAyZ`nq`hOl%OYezz=D5CpJXKPXTS1iGA|!YLg%0K;h3->8cd z`7SKgnJyP;%(ngPqp#$%ut%)jQD}bp=o?iA>Qk{Oiq%<^r2*Y?76i%}lt7Ij%?8|v zeU;XVu{n#$v!qVTa~;zLEC&?2Y_%tbgfYg}d3i2|C&Ra@MH=7BDCT)oD(D7>!7=I( zf1ktO6BN-PkHsPyq}m&h7Ku?zlM!nHO8SXN$(iYO@V9y@dh!hv!!4`-_XGq8aqf*H zP)1ul!af%K70UNJ0xj4h(#9cvy6r>IP;UL8LwFe7IKXjl5W(g!R$@NJ5YeIO9V}zqzlPAk{Uf4tGg|531%fyKb88O92<1dCGDFoqoJ8gRC4&lfRZkk zy39sAo%7sZfN~*?A<+l1o}cI>uBzN#QMbopQKbA`TrzCQU$8A%;O;$8JxT=p{D6C<#I#kd9L+BD+?OeXQqF;}4c%@*3*#{hmz zFx|n*FEMxn(s{$)KyD6}+!Tbn+6bVtMU9(e1E!q8tS>6ePz)Pxn@H*Llj_I61jo-| zEdsW~_ueMH9|7Tk@AO87xJLPSG@++dPjHg=t$iKgAgY-XZIFkzQP)fvVJgtdH6B}s@5>55JTu=mK}}Q*#Tg@OGx7MOr^Z_`~1`@oN1d z)QsIgg7_6I(JHuoui|Tg0|HU61SzTB$Ak?Gka0K2qXkIjCeBa3E{e3&)oQzs3)irZ z8H#i7{-%2moqJQubnV8y3H(qT5{(y}S3+4J&V3tRe%g&3 zyz;n!!TUk0y#MfL)1^$fU@|NC+Di**?1jds@bebfKDq9sg zNn%P<9^hhT<}tI$n0Od7WXDWFV_tw_Ch+mESur(|pc%hMivAT-IkI+pSfREMzOk~R zv6_fP5Dvnla6jz$e|zChxC{D9xECIV;l%Ba0X;_9(9M>%E4p~wN&j8hHn;I_kjbvn From 921eb7d268a34bf3e369ea37e99a90c75bb206d6 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:45:05 +0200 Subject: [PATCH 09/22] Delete conll_processor.py --- .../demo/Coreference/CoNLL/conll_processor.py | 111 ------------------ 1 file changed, 111 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_processor.py diff --git a/udapi/block/demo/Coreference/CoNLL/conll_processor.py b/udapi/block/demo/Coreference/CoNLL/conll_processor.py deleted file mode 100644 index 3ce7d9bb..00000000 --- a/udapi/block/demo/Coreference/CoNLL/conll_processor.py +++ /dev/null @@ -1,111 +0,0 @@ -# Jan Faryad -# 20. 4. 2017 -# -# processing a conll-u document for obtaining data for feature vectors easily - -from conll_node import Node - -class CoNLL_processor: - def __init__( self, input): - self.input = input - def process_document( self): - document = Document() - para_id = 0 - actual_sentence = Sentence( 0, None) # so that it's existence needn't be controlled - for line in self.input: - if ( line[0] == '#' ): # comment line beginning with # - fields = line.split( '\t') - if ( len( fields) == 4 and fields[1] == '$' ): # new sentence with paragraph and sentence id - new_para_id = int( fields[2]) - if ( para_id != new_para_id ): # new paragraph - para_id = new_para_id - actual_paragraph = Paragraph( para_id, document) - document.paragraphs.append( actual_paragraph) - actual_sentence.finalize() # things that can be done only after creation of all nodes - sent_id = int( fields[3]) - actual_sentence = Sentence( sent_id, actual_paragraph) - actual_paragraph.add_sentence(actual_sentence) - elif ( line != ' \n' ): # not a blank line -> record line - node = Node( actual_sentence, line) - actual_sentence.add_node( node) - return document -class Document: - """ - root object of the whole processed document, contains paragraphs - """ - def __init__( self): - self.paragraphs = [] - def add_paragraph( self, paragraph): # void - self.paragraphs.append( paragraph) -class Paragraph: - """ - children of document, contain sentences - """ - def __init__( self, number, document): - self.number = number - self.sentences = [] - self.document = document - def add_sentence( self, sentence): # void - self.sentences.append( sentence) -class Sentence: - """ - children of paragraphs, contain nodes - """ - def __init__( self, number, paragraph): - self.number = number - self.nodes = [] - self.paragraph = paragraph - self.root = None - self.depth = 0 - self.nodes_number = 0 - def add_node( self, node): # void - self.nodes.append( node) - def get_node_by_id( self, id): # -> Node - """ - used by getting a head of a node by head id - called from head and deps setting, see node file - """ - if ( id == 0 or id == -1 ): # root and range nodes don't have a head - root has head_id = 0, range nodes -1, - # but there's no node with id = 0 - return None - for node in self.nodes: # it has to be searched, because there could be also range nodes, so index in list != node id - if ( node.id == id ): - return node - for node in self.nodes: # if there isn't an exact node, only a range node - if ( node.id_range[0] <= id and node.id_range[1] >= id ): - return node - def set_root( self, node): # void - """ - called by the root itself, see node file - """ - self.root = node - def finalize( self): # void - """ - things that can be done only after creation of all nodes - - creates pointers to heads (both primary and secondary) of all nodes - up to now there were only head ids - sets node depths and paths recursively from root - sets sentence depth and number of nodes - """ - for node in self.nodes: # heads - node.set_head() - node.set_deps() - if ( self.root != None ): # depths and paths - self.root.set_depth_and_path( 0, []) # root's "head" has depth = 0 and and empty path - - for node in self.nodes: - if ( node.depth > self.depth ): # depth of the sentence = maximum node depth - self.depth = node.depth - if ( node.id > self.nodes_number ): # number of real nodes in the sentence - not range nodes - self.nodes_number = node.id - - - - - - - - - - - From fae5ae5a78c100eb4a53adb65f6a4d0de6cf47b9 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Sat, 8 Jul 2017 18:52:50 +0200 Subject: [PATCH 10/22] Delete conll_processor.pyc --- .../demo/Coreference/CoNLL/conll_processor.pyc | Bin 5540 -> 0 bytes 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/conll_processor.pyc diff --git a/udapi/block/demo/Coreference/CoNLL/conll_processor.pyc b/udapi/block/demo/Coreference/CoNLL/conll_processor.pyc deleted file mode 100644 index e71716c74ad5d617c158912f8f1548dd09295222..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5540 zcmc&&TXWmS6+YlaBI%oIWipoPwy5K{%)~a6JoKSS(~jkbPAAr6zz0n{lR+V1DS`n3 z3cHM@jNBKeza>AQKddv!bEf^i0}yoOB-7@BhO~>_gWa>|zUQ$0-L*lscl)zg>ZgtO zpV92!&?WfyBomo?^3)SAX-RTLlD2#;@%RDR_Ax|G0hiCr<;`=YqCi|3`4Z4v&R^X zqKO^N?Zf$G@-SZJ>BIP|(Q-5yO``HVN@k;F5-rjPi*q+E@@g_V&WiYpQDWxB=%6Ug z#FQqF4aVSe6c>4xt+{=Oojn{AhH0L92bI8Jz=PhwM zfLva*47V({86IJ+WR7NLdw3s>)vsle6#3>Rj7A8*=`6SJwEd9!WHNcZ3wDoBL<`pr7 z=I|9|E8rozGg;BN4G0ei(?s1Virq5G8bnHVmgYu}o}?yAth<6exp@|@_U&L^?`vp< zUcn*AA!5o-iNJfa&Oy@Z*buIGCizzV)a!d&-VJXDe>c24=&$O0*BdBg7xNq58{Uxg ztJuOYkLD%}RWD&UFOp@3X}|@+ZFFn**U^SzKtQ{s=~)u8<@H+u#UG>T!_SYCHt$0TH7(T z$VO{8K(oI=*CYzHLBk|)&%v^hX{?Qc+cb*i%lWY>)fO7;!7je4=c&mDcQCDB7;H3T zYAm~tLsi&<5ZU)$&5!;U2Y8D-TylUO5!aX0+L$(FN58=7?~wwkPrOSeAN&@;DwK2K zn!JtLI_;VVu5G;&^e~Un^l5DULri}(4fSxL~20io-YNN`yhV*nbe$9~d%z!QyFfGzNg7=Yr zOw7VfHS^JBVdYkreTbXan%tD3b#UtM(JT|Q%7^GjKi8Aq29isj6#Npf%`OKxGEoR(+bCDclF}*P-5&c|3{>pq1WZ*Jx<4`_vGm8 z!)Dogt7Rw|QH*e@C*>2}2~fKNb!*W0^obntAa!p0CCE|pW-7C^NLG%|{S)I{nxFWQ zKQ&RpxF4x`^P57_q}dZkS%zJcvY1!jq8tg2Sy>rt^|@&yTL)es(^BY*!BAeNc5bZ@mfni}`e z-}`}k;lJxe1V9-QAbbhFGxWem&K=}f~UQVP_o ztb@DgUnM6%uX1+# zo5DdX6cjl>j&lFlAUDd5kDnjT{b=G$>BpssTv}+}1Sfgvf}pQ8m~@#zMNpu+H6?Hs z>PXff9v5zkG9sPh#}J=>Wep051haS4DOX7S2mW%weR=VWHdCSmVW-5@4qIJKJQ>=t zl|SkYVHNWta#QP Date: Sat, 8 Jul 2017 18:53:35 +0200 Subject: [PATCH 11/22] Delete coref_prediction.py --- udapi/block/demo/Coreference/CoNLL/coref_prediction.py | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 udapi/block/demo/Coreference/CoNLL/coref_prediction.py diff --git a/udapi/block/demo/Coreference/CoNLL/coref_prediction.py b/udapi/block/demo/Coreference/CoNLL/coref_prediction.py deleted file mode 100644 index 5c064e49..00000000 --- a/udapi/block/demo/Coreference/CoNLL/coref_prediction.py +++ /dev/null @@ -1,6 +0,0 @@ -# Jan Faryad -# 4. 7. 2017 - -from udapi.core.block import Block - -class Coref_prediction( Block): From e70e7d35c19b04d86ba9f6d149efdfebf0583ac1 Mon Sep 17 00:00:00 2001 From: Jankus1994 Date: Mon, 10 Jul 2017 19:29:24 +0200 Subject: [PATCH 12/22] Changes in scripts so that less changes to udapi are necessary --- demo/coref_evaluation.sh | 4 +- demo/coref_onto.sh | 30 +- demo/coref_pdt.sh | 31 +- demo/coref_prediction.sh | 15 +- demo/coref_training.sh | 2 +- demo/model.txt | Bin 1191668 -> 1188609 bytes demo/test/auto.conllu | 627 +++++++++++++++++++++++ demo/test/gold.conllu | 627 +++++++++++++++++++++++ demo/test/ln94204_7.auto.conllu | 627 +++++++++++++++++++++++ demo/test/ln94204_7.in.conllu | 626 +++++++++++++++++++++++ demo/test/ln94204_7.out.conllu | 627 +++++++++++++++++++++++ demo/train/cmpr9410_001.out.conllu | 765 +++++++++++++++++++++++++++++ demo/train/cmpr9410_032.out.conllu | 591 ++++++++++++++++++++++ demo/train/ln94206_32.out.conllu | 736 +++++++++++++++++++++++++++ demo/train/ln94206_62.out.conllu | 53 ++ demo/train/ln94210_105.out.conllu | 325 ++++++++++++ demo/train/ln95048_134.out.conllu | 158 ++++++ demo/train/lnd94103_052.out.conllu | 297 +++++++++++ demo/train/mf920922_131.out.conllu | 213 ++++++++ demo/train/mf930713_046.out.conllu | 144 ++++++ demo/train/mf930713_085.out.conllu | 267 ++++++++++ demo/train/mf930713_118.out.conllu | 163 ++++++ 22 files changed, 6917 insertions(+), 11 deletions(-) create mode 100644 demo/test/auto.conllu create mode 100644 demo/test/gold.conllu create mode 100644 demo/test/ln94204_7.auto.conllu create mode 100644 demo/test/ln94204_7.in.conllu create mode 100644 demo/test/ln94204_7.out.conllu create mode 100644 demo/train/cmpr9410_001.out.conllu create mode 100644 demo/train/cmpr9410_032.out.conllu create mode 100644 demo/train/ln94206_32.out.conllu create mode 100644 demo/train/ln94206_62.out.conllu create mode 100644 demo/train/ln94210_105.out.conllu create mode 100644 demo/train/ln95048_134.out.conllu create mode 100644 demo/train/lnd94103_052.out.conllu create mode 100644 demo/train/mf920922_131.out.conllu create mode 100644 demo/train/mf930713_046.out.conllu create mode 100644 demo/train/mf930713_085.out.conllu create mode 100644 demo/train/mf930713_118.out.conllu diff --git a/demo/coref_evaluation.sh b/demo/coref_evaluation.sh index 299d09c6..215939b3 100644 --- a/demo/coref_evaluation.sh +++ b/demo/coref_evaluation.sh @@ -3,4 +3,6 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH -python ../udapi/block/demo/Coreference/CoNLL/conll_evaluator.py test/all.out.conllu test/auto_result.conllu # gold vs auto data +cat test/*.out.conllu > test/gold.conllu +cat test/*.auto.conllu > test/auto.conllu +udapy read.Conllu files='test/gold.conllu test/auto.conllu' demo.Coreference.CoNLL.Conll_pokus diff --git a/demo/coref_onto.sh b/demo/coref_onto.sh index 9d96a5ed..314dd33c 100644 --- a/demo/coref_onto.sh +++ b/demo/coref_onto.sh @@ -3,7 +3,31 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH +list="list" + +ls onto_train/*.in.conllu | sed 's:.*/\(.*\).in.conllu:\1:' > $list +while read name +do + input="onto_train/$name.in.conllu" + output="train/$name.out.conllu" + udapy read.Conllu files=$input demo.Coreference.OntoNotes.Onto_main write.Conllu > $output +done < $list +rm $list + + + +ls onto_test/*.in.conllu | sed 's:.*/\(.*\).in.conllu:\1:' > $list +while read name +do + input="onto_test/$name.in.conllu" + plain_output="test/$name.in.conllu" + coref_output="test/$name.out.conllu" + cp $input $plain_output + udapy read.Conllu files=$input demo.Coreference.OntoNotes.Onto_main write.Conllu > $coref_output +done < $list +rm $list + # adding coreference information from onf files to conllu files -udapy read.Conllu files='!onto_train/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > train/all.out.conllu # training files with coreference -cat onto_test/*.in.conllu > test/all.in.conllu # testing files without coreference -udapy read.Conllu files='!onto_test/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) +#udapy read.Conllu files='!onto_train/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > train/all.out.conllu # training files with coreference +#cat onto_test/*.in.conllu > test/all.in.conllu # testing files without coreference +#udapy read.Conllu files='!onto_test/*.in.conllu' demo.Coreference.OntoNotes.Onto_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) diff --git a/demo/coref_pdt.sh b/demo/coref_pdt.sh index b32a7280..f9d391ae 100644 --- a/demo/coref_pdt.sh +++ b/demo/coref_pdt.sh @@ -3,7 +3,32 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH + +list="list" + +ls pdt_train/*.in.conll | sed 's:.*/\(.*\).in.conll:\1:' > $list +while read name +do + input="pdt_train/$name.in.conll" + output="train/$name.out.conllu" + udapy read.Conllu files=$input demo.Coreference.PDT.Pdt_main write.Conllu > $output +done < $list +rm $list + + + +ls pdt_test/*.in.conll | sed 's:.*/\(.*\).in.conll:\1:' > $list +while read name +do + input="pdt_test/$name.in.conll" + plain_output="test/$name.in.conllu" + coref_output="test/$name.out.conllu" + cp $input $plain_output + udapy read.Conllu files=$input demo.Coreference.PDT.Pdt_main write.Conllu > $coref_output +done < $list +rm $list + # adding coreference information from pdt files to conllu files -udapy read.Conllu files='!pdt_train/*.in.conll' demo.Coreference.PDT.Pdt_main write.Conllu > train/all.out.conllu # training files with coreference -cat pdt_test/*.in.conll > test/all.in.conllu # testing files without coreference -udapy read.Conllu files='!pdt_test/*.in.conll' demo.Coreference.PDT.Pdt_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) + # training files with coreference +#cat pdt_test/*.in.conll > test/all.in.conllu # testing files without coreference +#udapy read.Conllu files='!pdt_test/*.in.conll' demo.Coreference.PDT.Pdt_main write.Conllu > test/all.out.conllu # testing files with coreference (for evaluation) diff --git a/demo/coref_prediction.sh b/demo/coref_prediction.sh index 22c86390..86645dc9 100644 --- a/demo/coref_prediction.sh +++ b/demo/coref_prediction.sh @@ -3,6 +3,15 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH -udapy read.Conllu files='!test/all.in.conllu' demo.Coreference.CoNLL.Conll_prediction_selector | # selection of feature of the predicted file -python3 ../udapi/block/demo/Coreference/Other/predictor.py model.txt | # prediction using a saved model -udapy read.Conllu files='!test/all.in.conllu' demo.Coreference.CoNLL.Conll_coref_adder write.Conllu > test/auto_result.conllu # adding of coref information to the predicted file +list="list" + +ls test/*.in.conllu | sed 's:.*/\(.*\).in.conllu:\1:' > $list +while read name +do + file="test/$name.in.conllu" + auto="test/$name.auto.conllu" + udapy read.Conllu files=$file demo.Coreference.CoNLL.Conll_prediction_selector | # selection of feature of the predicted file + python3 ../udapi/block/demo/Coreference/Other/predictor.py model.txt | # prediction using a saved model + udapy read.Conllu files=$file demo.Coreference.CoNLL.Conll_coref_adder write.Conllu > $auto # adding of coref information to the predicted file +done < $list +rm $list diff --git a/demo/coref_training.sh b/demo/coref_training.sh index 48a03605..9966fa7e 100644 --- a/demo/coref_training.sh +++ b/demo/coref_training.sh @@ -3,4 +3,4 @@ export PATH=../bin:$PATH export PYTHONPATH=../:$PYTHONPATH -udapy read.Conllu files='!train/all.out.conllu' demo.Coreference.CoNLL.Conll_training_selector | python ../udapi/block/demo/Coreference/Other/trainer.py model.txt +udapy read.Conllu files='!train/*.out.conllu' demo.Coreference.CoNLL.Conll_training_selector | python ../udapi/block/demo/Coreference/Other/trainer.py model.txt diff --git a/demo/model.txt b/demo/model.txt index 33d09bebd5d23f68735a72b7e21f97c5f45133ed..d79b9d287e4f72fe8b0d7cc90105eb090c1a8e84 100644 GIT binary patch literal 1188609 zcmeFUU9+e8d6hRKBiS0q#Jm{@0VhC$%!|MTh)G;U0mTVZOsZUTaX8g8YIzz-GuquF zyF{U?aA5Gq}12_VmT4 zU;p&k^WXpEqt9Nv{QAe=e){s|^KU-?`03}*Kl}8(_dnqBuYYoQ_Ts&}cYf=?+`apQ zyDxq1$*+F;;s4*g`=$54{NyX2e)u0h`{?D}pLze?Ctv#T`*&ad_zU~(=O2Cj)9-!f zyWjutyU#!V;>q_u_@ViiFJ3(T{(pG!^t<2v;pSJq*!<-m-2KYeo_zTmpMU?m&+fkZ z@sBF+{m8v{_ui8)J^!7%Uw!|b_uu_*cmKoh-Tm6v-v6a1@BZ%HpZ(y25B}|+eDOa& z`aj-(=kvS&@uMeSe)-AMFD8Ed-~F54{G+=+_vFi;z4*qn7k7XD$-Dph?k_y~m6zZ9 z=tqC%-Cz946Q6$L=?}lk5mui_U-|M^b&tN6x;c$2@^+TJ#g zPrY_ey(_le6wf$JA|+`qu} z-{+6}pU?Gm*DrAW0@p8a{Q?jB3#9+OnDU4Hx<7sGRejH^diPKN^6US0{Q}o7aQy<; zFL3<=*DrAW0@p8a%U|Gi`+wiv_xIlS{w@F6-E!+~`@7$^zxS5^u1vPB-*@sWUCi|h zT))82`vtE5{`h&n%9UNe!0Yh~wEz6J`|I&nUSE0r0@p8a{Q}o7aQy<;FL3<=*DrAW z0@p8a{Q~d2bN&Bsu73-zU*OI81@8Ml&-b;z-QDsJ{ZDxNeOvya|DNl;*Yg*+{=IrV z|G8aXef6D*x>785U{to+Fz4N;5oc$f9{V6y7{k&&C-D%u? z?Y4J)e=OhO@4Ec;3tYdz^$Wadzrgk1w{O}%(d+NIeu1C;1+M>`|Lkw_HYAVrpZjC| zuD9XeiR*8?eu3*3xPF1_7r1_b$My?6*8g|GtNN~2_3mT)_u~4V>le6wf$JBzeu0Pm z1&;pjpQF8p{p)V`+S~T`-tL!syO*wiZ{F^I{?}iB{Q}o7aQy+iVs zcE3RT=W+J#uW5Vc?cK+t=JD+gXQhXxyYtImzrf}fNdJCqHZJ!11+HJ0cCP#N3tYdz>;DV9>HmH3rvH7f|G$B6)?aY_`}Su2^Su6=*XtL! z{`0r{=aqi1luy^s_NVXMihJF@_f~)Reec}rcfHll*}wOpzT=_Z@$d1f-t~99>Hbas zogd5J_gKE;P5<}#`unb5;Q9rwU*L851+M?S@Vfkyy1w)J1+HJrU!8~!O@e`EUvuKyggU+5R#-`3x6`gc#c^edn3r`^Y%zpa1wWBKQD z{r->TpTy(-j_co($NkUe`ntF47r6fOc-w#8_x*d`dY?V?w!g-;cKrgc*DrAW=iv4F z=k-uu>whooAL=`{@4PPGx&6Byn!kR>hyKNX{NDAuznb6udiDARu3zB#1+HJqa4{hI5whyDfHKksx;`9ppG(f5z`9_sI!zVoL19n-(};(qZj@V5N>kp9k;|KeZm zXRm1|J@Ago?^ljd`^*^ua z-jut|UwQkL?e}l_^u@Q@N&Al_Pk(31AIo=N-*No{*DrAW0&mJMaQ*k~oAFQbvHx>? z?BDlh{9Ew${S{BX`t;ks|JjS@pMUb5yTAP8&piF!=bzpEl_$Uc;mdD*``ObMpMLlU z&tANI{@JH@fAz^%{?XTe`**(n+jsxdldpW|+2=2we|-1Xo_zH?&p-XvXMgzeThH(Q z=O@4N@wcD8eEICPu_d-rH_95?tgjzo%i4UZ+HLe z@7?{)uf6|EPu~5{cYo`H4?g&}fAYou{OJF9|DDh8{`N33e<{qG+Kds{=JuXfA@nYU;X0m`R0c&pZ}+4cYp8wzwzW(Km6wN z&wtqYK z#gFyx{>^W`|7-vC?stFs_xid27XSBu@#EO~bK##8(&J=Lj&euIr|~Z$0kTw(C26=XmZ`?n&W&PdOZSlzghGx6RXgX{Yhi-jwru z^ibdJryM+hNN8|OP7olR_EJs{Z5(%$9=grxS=m9; zeVQkZeKc{-@$T8fq3ND-dT8Ugqx8^iPA}K=Z3H*e3bHE}6-9}ka`quZR`R?oge-|Fw+KF!V9Z}$@K zT|7KWj&5^$sQdPbBS+n{heOjn<@C_TaYyN)Dd&zRj@(KQ<&H?PgqCBE&aUdp{U<=n$h`%{ixYwD-mef!kg=IpwMN8!+vw>!P0^iepx)ptDF zcDj&1=RNKyIl9g1CEe~Ne!CB!_EJvI+W2%&x%a0& z?WKIWYcB1j+^F6Hjy;ZbsQo73Cs*>~t${T@D*gN7*}boK zw!8kGX@APGkJ3ZQn>OBeJlgiTo41EUxufJ$o%Z0+wm;>(Ll5=c{wPNe^=|U!?cL*! z`riDs2Z!Ej*E{T^zS~bZ_wdvHlw;RA?N2%HoQOJ$rw5yThBaZ=8Ai*5_{Zj=g!jIeR$NcY8Ri zx#sD^q0aH>luJB$)Ao+ttZP)kdjydnx z!>62kQ}^xZJGW0<%2Pk_El+p9V^43Z-f4cj4?o>K%5C3Ce9O~)`rY(V_sCJ-o2R$c zw(I+LAKp97)3dtQ?&j^?pL*{!KixIgc71o>KJm`&r#t5Cy=xEe+#W8e`R3D3%iFH+ zZ7qbcW})IGd4^~vG!R^Rbf_qLurdU(`%^4pw!ls=kr?n&Ll zTT_3Uvj>m2a!(4+ed^&*`bo`AJsg_$Q|?~!@`h2a{73b z98EcQ)Lil@Pdnu3v=4{UPue)&@z%7Ta{AnpCr9C}?GA6Qd3vaMa;v%KTic+`3FChj(tDxRj@U;>nwO*WUehH;;F(`PAFyeuqAq?&Q|g zgX4~-oO@IEn{RvR-gbRYJ1zH)z5COYe7d`|#7G{4=4Z@a$JL(`oc zg-^QW;H_z&93H>bqy5(N-9CM1;!@5Ica%KolyjdR>U;9$?WeuOk#Be5QFf-f?QMC! zqxHC3=_iFx_mtB^6GuMf%+o`;C!KQc(?fl?pK_^pw(nhg_EF#M6PI%O+)?tRiA%Y6 zrrfm0UQ+Ma({rA@dHZQ^%CV289{H4mw;t`cp6~Yl4t(NT&K+eh>6CMy9_qXOl%of4 z<(?Ei-O1sS!X>4b?#|(@=Ir5}+ry#U?a8fM&b+<%@ly`oy6qq3w>`dd+Ji&sCrw<+ z+2M|oC!KP)?r-1S@_g^K2Zz#6I_2oYTe&BNPxqE@`$ze0kMC|h?pFFq;nUqYyw#jN zyz}JYt%)ax$8UAo-*WKQ_I>b;^PL{*d-JWw-FkL6^&jgyd@tXZJh|09-|dg`+aB+> zp6~YTSf`wO_@n*S<8I~Mr10rZZVr#aC2gGVc+|Vwoc^}A<=Z>lt?8Y{(L>GKC$8nb z$HECOZ}AlJMr)+Il9g1CEe~NzU`;pHc#)6pWSPH z?kMk~XLI^i_EGM5beq#ln)b|}}t+iQ34CqCudK0D~P zzvXZBj^Ca7^uGI3&OQ9J-#G3l`{*{Omvp7H_SlcwG_Py6I&_on?R*S?Fpm3=hbr+MPoM-%59@18we)7EQu?p0oJ1w8?o#j$L<>|ZOQFGgzK0TD&>U;C8?>oNj`c4n^-G0j*<)^*&ed*3V zYOZ;DsCja$IeU2L_Haqf+q*Ztn`?gij(L20$9Hw$B_qLyS z=l0%hck_7nnom9Qq;1!Cc3SRx^X#JL$(y>@eA`R+w(EP^X}Ncr-|oS0cg?fY)V=1} zn{rd$d-S&Io#wau@NL(3dRz5Q^V@y+w(C2+t$L^V?LK_l^_`v-&I(7Ke9O6`-b;Dn z5>MXLyUnv_jy$RP=F<*2ebjmK-xJoU`m)3Y|t_vXDn^=;Sp``SJFj=#q{&AV^!K6mH#aA>>3S>0>i{i$!e zzE5|}dB+~!dGh4ww4XR~tM|D(w}(U99nR`r^X}WzN4Yl-hnjDBx_if--d4TSy!Xv> zCr8PrntJ3(+djQ5M-Schr#$=UwAZ+Fzpr=LwWjYNhsRHq9y;y8O?z-C{iIXQeR`^R7Aaq(}K}kM~>8cYAiMQ_em7(SGVV$D_QPbjrC;5B1&tC`S+VuKkpw z2XEz`6h7Tsezf0uzT2noN?gj>;f|6gopSEeLw!%)eDmy>BTssi-}ZQa+uQQfci6Sk zPYR#zv6Zz zPYR#z&duAK$4@zUlpac+bjsbj-`@4ze)~P{9FNjZI_2n_w}-P%Irs3>e&f=8oAX_$ z`}T=Dnjh_Lzsv8qZ*LxtCO+M_eA*#L)9$VETff5|>hHv(i94F79`B)W=r*Uf)$|TK z?GA?~KIQb#DF<&&{gk^u_0zqxTiC}+r7l6{gzMn5|?tn zo4BL-(VoA{o?UC=oa5;yPu|o!=Gz?}4kbrZ&K;d{@YZSnESLHz_jlsqQF3&f(@VPD zOMKf;y=|V}AwRp<`rJ|8MbGB+t?Z-R@#r?Emo)8}Kg*?l%KiS-r@fS?U3k>oHg|vO z(>v}bF6C$YZ8zPwxxW+74oZ%0b9za)dx_uf!>7HJ)3Y`{-Ba#;`_xPMv_Iw2J1O_> z)KB-$a;cy4>GzvUdntDx-}rP-dD>09b9?qs-|;A%)%WI8-@U|7nhOxYToQpY~Fo`iUoR>fPq2du_*e z@1}do>HFS1y{)!g-_w5Md~ZIz)AF|K`*siBJN9sByTe)CYo5M2@}%aQPdhE2?lz9Q zmG{Y$Z#nm-(|6c0PmXd&ohMI@x=-HJz2?)Nd**y^-hI4#)7xs>^}X#U-nqSZ z+uc0gz2;MoJZanYot>8Z-aNagdGe<2HQ)Bqz3uv*c3SS8=C^zB+g7l;cPr20F_RTlXyXMG~9_6<^-rx47{FLK6tVjE)N1oL0+tYL2JUw*EZ#nkS zZNKr{*+Ll+#al=Ubls zv02LDQAy6N}e=v&h6Pt zId|((e%s^SX%7yipLEKd?WcEA?)PrZc^^N02OdqmZO$H=`rJ`-coZ(_lsntsz5{Pf z-$4$K-|DnK<n-A{Wd_un<;+`}L3 zZ+laI%K7{0q1=;BxwHMF@6bcjcaTrH#83NEj(4on{*+_iygi(C%F#1#4`-cnsdu*T zU3>OX-|eTId-$XMX%7zN-K10QY=8TXdHb{9<39VS@6AtpaOkaey~950yZup)9_n5D zDM!z|J)CvQrQWnZ<<7p7`Yq@CQ1kXvjvl;~ds6sxCx=T4*OWe-J-Kzt(L2g-duQLH zpY-VWuy?dS?ZKhEn{>+2hqrQ13ZL%I;jQNE;hi^651sOjOZVwJ?x)^1ztt}9qTaRN za`0B~CQpyMJ-Kzt(VOycR(7UJ|Gs#3r|-a_^pj3G`tVlnN#WBy<@C_Rkxx1E^ib|e z&vIw`>ARfY>YcMY^wIR4zT;7P_9<^1ca$CUY@Yh;qlqI&;jQfspEz<99wkS~lO~QF zZGAW^J#suc%@fBCnmBS4-rDZ)i6ckht?dq7Mpdo_5I5)Su>Qha7Et zaH#oP<=(Y#@1(nTnom3AXxnM`v_p<=cigjQj~pdGs%eKDZToPj`CH}QwQujFyLXyT zJLG8FY4^0_ym{V%L!IN%DQDh2-|^^{rxi_u!}fDaWpL+MjaX$4~oHj$P}t zf0jGj_jf0M_8s@}Nz->Yr|;a}oW1$vx4kJp<<5RrdMD+6@75gq>{_``mA?6HKJ8Dr z^!~JOF8S-7^vnF>{7w1Y_&d;F{8zv8&Xi-vyggjg)Z6BMC-u$Y;jP@KO5gl8pZ3iq zpWZh=<=n$h`%{ix>$Jb+;H`c?d3x!d^84zsYfayga{B4+e9BKb@8hTav)tJ}-;1Wb zl+#1ca%cN|2b%U$P7j@O@YZR6%6T6@?N2#&t6cR3y-#Ue0MM1 z;ZSqU(?iXZTg^4^zPUzU}%x-8JW(=G~wAw(I+J*PM5ncOUN_ zIqG}!^tRe|eP`b}-r9KXD1Cg=#5uS3Ub~yeyVpFut+rj?*-trltNG^Lx2KPCZypXc z-|}?#jy*kV<9u)4`%~X`eV^`{^G@^bPkr0UlX&O${{D1N zIep)orpQ)zdZ+ocPtOWZo_x!>H=Vx2j(KvF zJL)`na@2kDrtUT0_R_uW`aaz;=bh%=$Gb<4`rbS}t9$Kk-rjwD<9u(P-L1A=-?#hl z-f5oRR@<)cX&=rCPmV{)QSzgjcAVR%_ux=C`=dF%q_=+O=w9lz?{?3gJ~>K0Rrl=K zAxFul>YhD2~&a-{F0KpS`(uhi^LFNnF}DZ%=QVyXU@r3*v`z2p7n)6O>Moox>uWoN4H*|S5Ak~d9!%hNr*2am$pJ5P7Gsiqxr^j3S` zVITE9`NX$8-EaL4dw$Q}obUGL@o3_?Cr!O=?tS;|;mJ|*rtm1dz4LU3n`+vb=85zB z=9+hZ>bJY*{SJ4Od-HIpdGe<2HQ)Bqz3uuw-7)8#=H17;M~?d5JUy#>?QY)QeSG75 zZ=T()wq4)1`|#drp59j5uJ7A@c<(e%FRA-*&h6pQc89aN*F1f5-W-L%H6k5 zy_8S;=8{kEq&)4kyzR9+`;BY&=?+}dTfdX`wt4#AmS6Au{9h>jF3{HQ#*dIme@I*Z0(Ojz_(dJUnX7IUY6NeCj#Jqtjh@)IH~T)O_;rs5$3& z)O_-d_Z^R>UFYy&a}sSQ+~^_ zk8b<$?kDe@zIDo_-r2r)?b%0tx1VyUH|Hyu&`~d-CS(r@h2E-|laD zzc=-_ekbjv+}}CnQg7Pda^~&*J@_dHkJ3ZQlTNu?_x*13yg%g<-|}?dzMFQ)(YEV5 zy{&qu`RzV@+x4B^R=v~wb|1d&`c5xt;+@-juiee#-D{p+QupDU+b52Es@`pWx@)fO z`tJVJd#Cy7uDQ1ByZck`9eeMzyLr5O&8HrD(zfe++G)9Wns0mQ-gbRYJLHLXZciUg z_mroed3$Cr^yx&WnU2EdW;qgXybj~_O?9lZF^IG%JCg2J(PT^+ulR*(|4wve-C=7@AgxU z9=w%%QuuUt4sSJQ5APh`?um2HKJ~VF+HE`BlX|!LwA1po>wDWvckeWxc3R$ceP^%b zzBkVD^rO?4#z%o4VKhb`O5L zYn~mHJL)|7mUC}<^xd}W`}NLG|04c9e){^(JM9jiIC3jJlsi7@QH~y(_Q|IlJW3BG zpX#TPp>4?gX1N8zm8o6>``Cr7!X5~sQ!e$U{VB&g=I!CEXSuWe>G$0F9lwj8z5|bLdsBYO@f|2VlsswT zQqB%{lzgi0;nB3?yFI;W4u__`?{H|l!&%+4hj(tDxRj@U;>l6^sPp8>QTNH4y4O5= z=A8T9Jbl!B%hTOE_Vl*uo#wau@NL(3dQIKi`n2yIbG|q4KHfcY)c5A;C8dwTH4lfH zCvWOr^KCEP+ph2IoXt}|?VHD2={KckF6D6T4rg`GzVW`>x4pz~d+cm`TfV*HJv>T3 zY2s4uohf&=H+^TyrSF;ck8<=-e~0~)qi5b8&N}7X!%zEDj$P}tKjplSKic2+ruRrl=Ej=AR34!Qd&Ph8^3QTnL!*V~#wj`R3D3%iFH+(>?c^_pbSLH`jdH zao&7;$M?3E?%rwMJMbuXJW8IlacA#-H|@1N-Mw$`o_*tePrmKagG0%uI_<%sZ9j1- z_uj3!w0~dkuxs^q*uy(d-n{*^mpF2Et=yBs`##MRH{COb_pUvhb;`MiKic2+wtV|O z@8MDUNv9lrcq{j$@Y}n4_TEc(a+Dq(b&hYE`s7yj$nn;rclYdH)jRE7eY< zJ2`4T<#1N>)4O~2(;YbX@o3`6QS;gEtGw-Tw{G93pL*P)RV_29VMryR}-Z-sMiZw_yD4-bb=Y7TF0{l;@=2ah_(qvld>4v*49ohP4i z@4%tlQF4?#sX09Ao^yM6=gB)yedqL0-|gX0?oAW#9B=hL_mumdJUQyUfMx^vv&`VHs1H-y@$7^{xoL~9&hD-RN14Cw{lMkKfS}F^z6x}>OLOzPRh;M zyN5>`?|bsz!=vt{+?>68cx&smJ9}_=EBB+y9(}x(dsBMmoa3$TC7*ia^zc^hN0mML zcq{j#${u|@N{*(y-QB}m**U80(Z^f4A653~y_Bc@#;1GA(>pCsdnxzcSuXWc?)UAdy~Z8Ax1PVZ`Lvhv zwwLbHy~L&5?ruW@z z+|hgM@f~m|xi#HymGjZ2=_O6QlzZnaced~ENj|-k^0d?Pw3qU>m+sTO z#vQ%4Ui$8or@fS?otCG)lzZF&JwwC5gNQuFri zP4DKKKl)DV`Q66*p1gOPPdhDdyS{Jt;JsrHhqgPM)xGB3pZd1z`*hcwcba#9>f5gG z(_M4kY2N**Z@a!vcg=aHdH1Kj?fTAc%DG$3+c%#3wrAd+-K~13`L^#qymNavwB6yX z?ln)}9C=dn&8MA~w_V@cUb=gy`RR_i>8?5N;1lQEo<7>{a8~!4r*F==@6FRk&6A_) z?%bX}n(ir2J@fYTw(6bc**8a?)O_=4r{!(e_vxN{&3o5;x|?f0?Kp3~z2ke^OLy-y zpLWRIPkG`J-|}?#JNERp>Ye7d`|xeocY0g(PV?-WBTs7H-o12BIep)or?=I%>$~^Q z-rFAgsCj(5!=Z_9dAhTk)IEFm+TA?fJ$rNM4wp3b$djf$a(eit@YZRsalUWgNqy(` z+jro-lRUgN@#OIMq;N@7kDMNUs`Sv-n{wWvhx%?m0OZSx1LlZ|n<>0MH``g}>-*V>d{rBRh96U-7B~Lo#=)+sNCx!RD z<=j#Co8R`P{FLMS%-h3R8`tjanZu(~&OANTcRZT7ZJzd=r`^QCqvr4^9O~SD%F#pV zq0a5696c-jsnUl}o*adrs(Z;hXFuiKQFF;n9}+p1kwve&W1`x6+>~efZ?bQTVC4m%MZK zQ|`ODK@+e zK6mHIo5!Q>rQDpodw8_*+!LSf@K*S#(uYr;9EC?y&fRJrZ*_0$*`tTIazCo<(Z{3Y zXv(=Kbq|lam-5EBhqrns`P3t)hqrP+s_fCnqvYr|Pd#?5@JE$B`gkk%rm06xA8+M8 zRr>JBlcVrx%Y9GY`E(!7>OH*Gy{%`D9^T5`3U@Yd{ad}0c6i@+JPLT^dM=es>SO7H`-w>sTRT+00&iA#CvH$L4{?sxEwPxq9wyVbOp^6fr++DkdTt){({ zr+s+T+%`}Bv;&{+NAqou??6+Zd(+fUdD?4yx~Dw7)AH$F;!^H+6SvL1Yk#Y~w8MMp zo^pCyO?xTd?!&jec4r4oe9GyeiF0nh?Khr#()7Ohv)tMK^n21fDWC36x%5uTy=$L( zDR&>=_;gP>yIY;^O}X@b>Zd&Iv^?#lyzQm?bZ^RS-#NSM_tIX<-Jkll*Y18N@hRW- z*+IAcDR0hx`@Z{Af9rS7?xnu}p2Tf)@7kZ;OMTwqj*_F>oLv2cD-@JS9D0i#x&8NP5i6b{}4~MpU;#$vldv>knns0sI z@om?4dZ_RATka@7?WONaeR8XJns?vceeTZf;m~%6v%1$jeRJeV%{QNRTHbbj-|oSC z#~uz%_mroed3$F(T~KHBbZR`;5Bf9l(=?`=2n z&h5S1?&k6CHBWD=ZP)khKD>9Dr?=I%>-%;e-aF0H+iKhOeY+3uo#yFnwe9-OzH@sx z)c5A;ZME(CzTJoSPV@Av?zOvl`_yk7y~MRV-PyG!KIQa%w}(U1J>{*(-P-ox&Dp~x zO?=APX?Hj@@hNXT?$)*kZ_XYrY2s7PPP@aQiBEa!akn1bOTBI0zK6Y}t@$KC^@>#=_Nh8m-^{F=c%7^_oqJX zr9ADzqvp1``*?Oxa&(*1OL}%M_5EJrwz+rl?4ac6HmA4Mv+vMH)BEXuG~f38U8z6i zQa|P1#lxfI=r*T^rapJHalYHL)3o*4z3p?K?o2s$t<(OL^FDssZ`{#)>-jqypYADV zf2-5I#HHNdk+_tne&f?U<$ed>_;gP>yIW0rDc|nHr@fTZ+iKcNdD@3Z&295(f6ASG z|Li;N+i$-w@!p;Kw3qU<+xT=(Iq&#xzvYhd(_Z?%X@AQd<)^*v-@~reJI%Mg@A$Us zJ3X}B6X%{iy{&qu`L^#qymNavwB6yX?ltfJ)VE#V*-bfjtNG^LpZd1z`*hcwcba#9 z>f5gG(_M4kX`a40@}%aQPdhDdyS}%*boY+Ed+lx>?_Trtw%T@mZ~KXNZtvZ6PdRK3 zns?vceeTZf;m~%6v%1&3`}Xd0cWw`dwmY2Fz2@DY`nK!)bl04Bnsw$B_q5+Q-9}Z@a#?y>$0Z^WHJf-FfoPTi^WD!=b!mZFhKccoYtGj!(Mn!CSr0 zoxFKC6yEB)J-lY^x=|so_KO}+Jm#Q zGgbQV$&;h-sPm(q9?Jev^$y;;-KS44d2$p!DV!Ca+@2ieK2`UUCr7>S{HUjg`W<^X zD;&8!Im&&i?j`S>{giV@%_UEc(x0k($&;hgeK_}$cb@v>R`-)9N4?X$d&!fd+gnwDWvckeWxcF5gNdEydJ-qgFzZ};H0 zyXM(x>R$70FWuX&?`fyy-f6z=rF+};z3srG@XaTVe5&mo-`j5Do!fi2-Oc0OYo6X# z+ph2Ir<}XheDm&4ecSbYx@*om&AUJKZP)kv-t~L-yg$to*LHmOPV@9p^W;t4YrgHJ zd)xIr?X=uG&9}XDZ@a#yotAs2`L>ttZP)j-Lk^ERPo5lgpS-Di%}@8*j_>TIoI9F0 z=l1l`c89aN*Zi&f?D<`CG~LNj_^G;Q&ki|Cp0shkR_;mReNQEX9}w4Zv;@o4+LEeCJC)jMg2_tKqw z%E4Qw{VC^t{I=hC-|;B#CY^Hb(?fl4e%qV!Q;zS0w{lMk@4NHloqGpAlhRL0FWpm44^15Tl!HgP`Doj(6a#+>^qmd&`gZQ_ndbz18=my_BbSkMi3d?{9lkzH#Zk&C}n(4w^V} z)I7P>T=LG@NjZ1a93F*Bnz)p+)9!F+;#1yw+^uOZ<@DPf4o!T@TaUXn?WLT4yThT0 zPkHLWqi|@-xufRrC|uISrF^>sKi!*h>{?SlslPc`kOJnc5V-PxUT@Yd8%x%*R} z_HLE)9chm{I_2Q4sh@K9r#|hae7b8c?WNp(eB;}_?L1V!eaH0PxQF_C9_k(b-lpk$ zQr`B`J?*8u?WA7H**kl0J8hpn+W2;#?!YBY@1#8Kv^?#l+eF7z*=_g4xo1x=Y2uyRd#~N$ z%{4#mB`)QD7Y20;``o7(V_fGTlw%T@m-|oYEr+Io?ZM(it_uXrr-J{&LpLlYV z??Ig>Pma3Z@^tr(J-w}Zr}^zZeB1S%-d4TS{B|F{?fOn{tKMn8?bAo$n};gw zV^7ZtXN4nAzUACe@1;C(i6?LB-R9d~y0=~5(++v!o!iq#+a1p8Ui0oxecSb&UFY_2 zsPE0w+iKhOeY+3uo#yE!rH{fjpEz>VJLIVE&C}az+x5NeC*HZeciY`O-o57OZME(C z&VI_dTg^A`KHfcY)c5A;ZME(C-uB^9_~zkI^DR$z@7U8znt12--fMUBc=wv0_TbRA z>pQ)zdZ&5sC!QR2&%SYI@6-3vJLIVMnom7)lpTBWq~`72y%5qX@AP`j(K}H>y%5qvwiQ{vyb|2KjrAbTe&BNPxqA5LlZ|n z<=|0zD0$K;ceel7-r;*t{yuy1q~`729Qnn-o6XQ%(;} z9Ql-kN9m#DQ{DEa{85e`+WwBjwVXS8^qpz%zTRQiI{mK3r91DXd&;LhI5h2%PdRw& z(SGWYqr7KNZcSXu>2pWPlTJDM@K)|g;iva4&+e^zx8CDBt?eE7DF<(z_8WKf-g?{b zZF}wR_mZFPOu6kl(_J{L-{bBa@4G!*(`m19NAIoY?{9p%r`-Ga#;1GA+1=`NZ_1_j zQ$OX~9r(1Da(Y`$dnr%*jZgQKr*~RD-J5dhz0^xue|iR^RQ-CqM0-<<9o`{7HJ)3Y`{-Ba#;`_xPMv~Mo?^iImt4teUOy!E(GwY|g6l!LdXe#+g)H$L4{&hA#H zds8mGpZY2H4jk$`KHaxDdr5D-_olsb^!G_U|2~aN_mq2o>eF7zr@Q8+dsEK)_|#81 zJ@hP>`rEvHPuiom)wGxLwBPu2PkDNWJoQpe51n%G*3?hA`%^#NOB^|x-c9#yp7zOa zwU>6zzT;iIm3NZD-`Cx{>AjYxyZ7zg+j{TWr#9rN~ZNzL24#~t;(`PSoZJ-h3^_wnZJryM==_HfoImwIRW-c5e` z&XnUF^Y(DoDMt_9$~`H3x;r;-ZyrD8;8A)g`BYnvyS44ZH;y~Jm3vb7baxJKHD?d+ zJb8F);>qFhNfVcH@0{h%_WeD0@7lv9HE-`8chvXhx4kXT`>n^_NK z96gl1q(?b=Xxb+~%F#pFOFHG~!&|v0g-`dEAMLjuck6w954*gFZ+ev9_V|u%Z^}=( z^c~awl;a(g9!fsd*5ht%`|yq94sYe26yEn~p1A3rx#Zv0clbTFe?L6RPSPpoK0VZT z`ze=tXZzkwe)`Uo;~jV__oVQ?x12lbzWtO-y=i~S@eaI|ds6sxZ~4*wvTuwu_i9%^tq$tNv9lrcq{j$@Y6dyO3$7go!+M$yGhf|G*8_0J@@U|NjZ1a z93F*3o!i4DHIGlq4tKn@-Oc0OvxiGM<;~f9zul+&bjO^1d#~}WpYGnZPd(@M>{#K* z@z!>SheOHHluz$)R`1%Iw@-Y^>7Tu`gQmTdw;p$t9jotnD?R7QCqCuuv^$*DJ$v)^ zjpvTiw0l)*`MWG z-}mI(ce$5%aw~muytUoUYjb$eNW!I_U^U2dAxh}aA>>3q4214yw$w# zQ@`CwJh_$cAjezV9lmkxKHY&sy=xDbbj!2TdhN~*n)sBr9`~f)wNE|r#&buvJ@}^V zqwx0RXu3Pcqx8{~Pw#L|-?n%7J*Iy*9J=kpPxZ0B-AEJ03Nk{FFD>yx%j=J>}`X<=H_~KjrkS zQ{J4tckL6Oa`&fxy4Sd)_tx{@(fD*vx%csnPxq9wyVdF5luPfYe#*By@M$mQ^tPJz zQl9o3pYAD7@3efnH|5fMsh{%g4t&~6IlZl>y_9eF;nQBq>1{RbrF^>&pY~Et4~4UG zN4evzzT2Bme%d?Bo$d4eZ71DR&hA#zUdp%o@M$mQ^tPJzQoh}XPkSk+XKj4Cr`-GY zsh9F;-(2$Pos_2?^3+Rt>v5lIdxxDV2X9UNl)H~_e7dKc-K|ddrd)bI^;7O0IMjE1 zx^Hv#lHPjnO?&6)?~{7|eHxeUDfj-=r@fRZP0>I_2Q4sh@K9r+&JZIC3<-o9^2@?UUbXFYTOtr|nMn+m7#e zbo$PeV;7}|p3SHIqa3}Y{2eG99-ZciV+TzfISOxWclg9Pw|AdA${jtMr#|~=;>b~W zYq~qPXUBQ+35jpebo1@Pdnu3cGrB`AxGWY`m{riZg*+Xyr4tq)cE*v>Zp0si4PL8JiX`Xh-(dk~|(hfPA z`qMn^kfYPR#HAf_H1)~htiIz>cs!bN?nzUR98G=a@F;itlqb%7;%=4mUefkXx~ILA zryX)M^~vE-a`aX?dr8|n>7Mpdo_5Gl_fu{TpLlW<{-~xMa`fmvy|hD)!Z(FS;q6nN zIQXWiPmZ>oc27Ix=yWIXx5}sAVUG7v-?u*PkfYvBxjB5|$x-;Dns&(1qx+ z6wV4yjz_mSy`*g~-Mt5gru*64ef#!)yL&JBwv+B@FXd^69NqTKd#8E&a430FbIqq6 za{8$A;gwV^1$>;+@-juiee#-D`f@gG1Y{@AS6no#wau@NL(3dR90q9C`9B z=Z<`-yLPx=+8GKI$Gh>brg7$gR_U;@E3L;GOsdt-Cd+wR@y?OWX?vbOuH%~9A`*6@eA`R+w(EP^X}NcrZ+q$9c70Df}t+Dm!bgGbG!e9Apk-`|sb`krl`_Q}ug(YLaXa>rZS z9UcxPM^nxnZQR-WV|^$6T`A}9K&KqMHTAc-ckR#arT(qo@m})jds5zZQZMD+OI*rt z-Dj`8*Y49DxTNWwX`VR0m$;O>KlN!Z<0Nqg;!;izy%qP^cKG{}rteL8+96N9l&4A=ed?!t+MjZd?H#_m zeOJ4;ormiCJJP!;r;koKcx&pXeA=IK(|5d=eA-KS+G%;(OL^N%_q3Pt?GF5OZ_2T2 zP5qS9KYM4#>Ro$ya+Ex2#X z{nT@gM|n4C;!^INTXAit-Thto*5huapA_ErX`Z<0p1I_w@3^0OM;+sx+bN1~W?ybk&NGq6_NP5Kw0+-{^A0`Kcl*RS$D{1nlUt{pd-!dC z%O8Db+vB@X`cs|u;Lzzl+_tynr|+<9rJoeu_msnNN6C|JIrH{s-*KOP)c5AMy)DoC z+uoF)a(o9$4<(;!>v6ZXefTM7-ahR#F5St|v`?Nma;tmX$&)tj?45Uy?$AToo2q;E z-f4I9c=zn#(01Q)@F@Ez`BYnvyS44ZH!j_${V8|$9rvg2!lB-=Ph85U{iB?F`04k+ zqthN7N`t&{aJ3>=iM!T z-#xy^%DYM7(>>+%(8Q5XIrH>T?n$Sd`}9!X?Wdf3_@n*QbB;%OH|dnSbw9nk%^&K! z(mUkS?}kI^C!KQc(?fl?pK|ozt=yBsr+dq{{VmV?x9WKZkEZv0heM}#bIr4lns0f! zd&i#MR=v~wb|1d&`c5w?JPOx*;>f2ueTO~sOOf>_nK$V969Ry*0Yn8 zJru5aIMh6OQ}>!rd+wR@y?OVizU}%x-8JW(=G~wAw(EP_O}uk^@3y;nynD^lOG+Pw zYaR|Y-|}?#jy*kV<9u)4`%~X`eV^`{^G@^h&2974Pdi(lou=N!qwc5N96s?WZ$0iw zy^C*}_Q>hut?5pVx@X_GbSFo>Yd_`O!*Baj-kd$}H*G!c)}y=Z&`;huymiXaGj9)P zopPynw(s5KAKN=;zvpZ}{Z8cUqvT1a9DVclaMmg39{y;*^|)JkHz~aD(>!t0J#)!V z-*Lb7xLdtr5AWRG93C}qKjl(y+MjaQJN^ZJ+PB}4yY;76e%8VN>}8f5?WZ1j()LyK zrX0L=+HV|p_LC>Ky61cH^w7kSCobjgH4fhDUh*kt&v$av_vBNacD6bDXzKe8hx%?0 zXEoP+>-&yxyS~#y+dXma+0)yqckI2_?&k6CHJ^IqN!zaPX{Y7hX@0v0zuh&@4$2*M zo;*3~K6z93n&0lhZ+Fe79dgvY=IL#Gg*E~B--D`fj*LHmOZo8Yu zyVpFut+rj?xBKwkX`bFz+ph2IpUqQ0?VHD=^w5-ZN6q0;xTJ|oIXm1@@}!ANIXmqR zhbBJd^tPJzZk6*rX^%VFIPNGtH09jU#F1O+q1^G-c87;U$7gm- zj!rpvYwD-meSG8FeYyjeG`*AZwA1pmm-4g+kD5#QQO-SldS{!z>OFri9_9N`=k`;M zo|Qg2y_>gZha7D=cQp05Tj86g9yxuymHSlb!zb@N@#I$blP5>LW8XO6@mB9PPaiIM zauoikdIxVkx=)Wi`;^03&9^%|3U5!2Ztw8ubO$bJ+Dm!bao+me(bo4pdGFy-_gdcW z?7>;NPnAA=^5iJ|QS}ZU^=`|#qx6#}N8y{oqwvX-qwv^N>K(o( zY5I)9^ibdNXydq}?vbP1t-dGUa_%Va;8ExHi6gg8`-x+3dN6Srr@MFT z>21|J&9{B}D17s9sQH$syLasAZPh!?w|)2Fo!i5q?G9&kuX+0B$dj74cQ4&jPT%+D z>1}noYc9Q$IOq1>o8HYefApQ!^Sh1bzU`T}XLqaKX@0v8-*$bcw^i>n?|t*WD^rO?4#yep6=eUr?*w_G~f2=qwvkcq2^nj?%uJdw^i>n-}c>y zcWw`dwmY2Fz2@ngBTs7H-o12BIep)or?=JVuDSG1;+)%iZ+bV^{Lyz>&+j&#`?hD^ zp53i_r}^zZeB1S%-d4TSy!Xxfj&I!dp7@mW9ai)9=JAa?dUwyB_tCTWTkWLpaBk20 z==PrYl=BXnIOq1Q&mEoiryRT1)Sq(GK6{N%_ms11o$}`FkM6o>f9rSBUdsJF_$@!} z9o=OgZ9DDG4x0Fs)3a`Q`mLAlDNnnNr-yF&Y47MR`{;D%EH~{>zboyfoLy_<(>>+h z$8Y&*@8~Z3XxnLbcAB=Gc5nOK+fKW)W2J}s-u$+=<#~VFgG1?0b=reN+y0dE4n5R& z`ze=t)Bcou=y&)otG~k@-g)!%(8l|odd~5vckHK}d-!R8%CU>mL&=j)xwHL;dWY{k z`rfv;<&S>fV||D3Liziqy6tUwzN7Vgw`a$Cl%t1w*M7>mhdWCO$wjxjw#WO^9vn(P>6CMy9_qV&;!;kZJ4!y)ZEwr-9n&5hO26rpH)o&TNnFak zGv&_q?&}?Pt^Qtnc<1X++{17C zTmE|I$G^b#cY{ay9jChOZF#<9+ne%J&fh@~<(_oP-MT-07Y5~DPkV4^+vRTF-W+$7d(tWAK0Va;( z9`CmvcPss*@agUx-fGSsewxG4L&>MQ?QMC!qxHC3={Kd?x4kXT zd($2qO2292(>>*WFL5cK_RZN(_vvlh zL+MX-+Ji&e{*?0$J=AymDVKWF{*-&Dcl{*+@E zrH7IyopNXU5A_b;dGx()Z_6M3zQ_6w--Yt`O?BJb@_fg(H|3`s-+|IY$&*gGTlc5$ z!lCIq$fq1UN)IJZI_2D_hx*=p>N&@wx7uZgT`Tvg(r-K*I_0MvyVhyn96QeO+)?tW zPJ3|ZbRTZogG1?0we@_rPwz}Q_vxX&+fO<7@Z0`Te%pJf@4N4Jj{e<8ziZm#yR7t^ z(rX-dc$7TplsnsR@A!^KdEcHqsd+p~uX#9Y>N%(9+#U{XcQ_Otb&hZ9e&Ws9yVvgU z=9;I6nxE$G*|U?h@#&uOqwmo3u05Q!arbpkyW8A<4?gX*d+X6hr@T3P_Rw~Rv$|(* z9>3+x+q0Xr@#&uOv+sDz9;Wpd-vMiJl;KfIJDgp=bk-1 zwB6xQc+@$*sr!jHXYXFSn@_&&wEJ|o?X-J($9dan_vzkr=PY-&|F--+{+;aoJJ>fq z-Ba#;{Fa~gZnfKX+MVx36Q6Q=)+uk!{^)M&-TEE&P~NvEPnvk=&3oTG_mro5^qm zyK{J}IeU2L$-`R{PY#ctDm}FIrkr=^p}sfYdfcsNcim^7+@9Pz<>=}`=}~^#n{s@o zd3!kPmV>u?*B*YF!_h;@r#kJyq0@c1X%7yiKh@Ur-9EiD<=m%-`ffkv+{17CNBM2< zp}z0F-#PksAN{UrkMFY5Z%VIm+~HC3q*Lx}|L8mP(DWTCPd)OaY0o)*a(i-=J4&AP zC`S)X`_7N@+aB*udvGZIq(?b=Xxb-FT*}>R9K3bg+w#0O?ZKh+n>Ie(Q||W?m-1=f zoc(m4-j?6?*hlFnopSWyt=yZ^YaDlYlzgh&-j?S(rad^6{#2(uIJE6gIq%RzeYc-- zsW>R-`n=K z{L$}wtnct$D1YBnx4kXTcWir8e#-G3C_R)s>6E*5fBG&Qn!ba4%E6=bQ1YZx&V72Q z@6AtpaOkae*~f zdw8_%-xrs5Z~Z;(o%CMnIdA>MyJw$z^40!r41-cX+FN_VC-BUefJe;@RhpI>)0^4!)`P;K@;PH09i_ ziQnelwcqYdd2{xB2RTYURrl=Kac&Qn)Vw{tZB8%gb}#YXH)jw3|FOphJCa4qjwAa2 zf8B!y(YP!Svb8<(yi@gR#FR|Z+8+7pyXU_3%5yi_G0EYhAwI+}k~7KUqai-TFOoCK z@X-(-;upz5=ayf0?<`$A z_N~{h@71?&?VY8oZ{K?D`d)qe*50vp-kSWYPp|m8SNYn{>(0%L5EuTB| zuJtuny=%X6<*)ayz1qQtwO77-+V%a~BL}@>P0n;~>DBigy>@-4_e$?r zd+&O8Zt3eg-dR28t=+dK54kT*4m!X5x_{kaujt*SYiIdu*Z0>w^4_r~2iKjP>7F%t z`%BYdjb_tMMv{a?T1_t22{OD~^0^j`Uut2{oW5AB!6hwd-G z?%uJc_e$?9z4qxt@=KG0&M&|2-m#|lO7ASa_T49M-W&ZHvtBvw@U?%