rere 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.classpath +260 -0
- data/.gitignore +28 -0
- data/.project +14 -0
- data/.ruby-version +1 -0
- data/.settings/org.eclim.prefs +3 -0
- data/.settings/org.eclipse.jdt.core.prefs +5 -0
- data/.settings/org.eclipse.jdt.ui.prefs +2 -0
- data/Gemfile +7 -0
- data/LICENSE +22 -0
- data/README.md +44 -0
- data/Rakefile +65 -0
- data/bin/solr +61 -0
- data/example/config/solr.yml +23 -0
- data/example/log/.gitkeep +0 -0
- data/example/solr/README.txt +63 -0
- data/example/solr/collection1/README.txt +50 -0
- data/example/solr/collection1/conf/admin-extra.html +24 -0
- data/example/solr/collection1/conf/admin-extra.menu-bottom.html +25 -0
- data/example/solr/collection1/conf/admin-extra.menu-top.html +25 -0
- data/example/solr/collection1/conf/currency.xml +67 -0
- data/example/solr/collection1/conf/elevate.xml +38 -0
- data/example/solr/collection1/conf/lang/contractions_ca.txt +8 -0
- data/example/solr/collection1/conf/lang/contractions_fr.txt +15 -0
- data/example/solr/collection1/conf/lang/contractions_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/contractions_it.txt +23 -0
- data/example/solr/collection1/conf/lang/hyphenations_ga.txt +5 -0
- data/example/solr/collection1/conf/lang/stemdict_nl.txt +6 -0
- data/example/solr/collection1/conf/lang/stoptags_ja.txt +420 -0
- data/example/solr/collection1/conf/lang/stopwords_ar.txt +125 -0
- data/example/solr/collection1/conf/lang/stopwords_bg.txt +193 -0
- data/example/solr/collection1/conf/lang/stopwords_ca.txt +220 -0
- data/example/solr/collection1/conf/lang/stopwords_cz.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_da.txt +108 -0
- data/example/solr/collection1/conf/lang/stopwords_de.txt +292 -0
- data/example/solr/collection1/conf/lang/stopwords_el.txt +78 -0
- data/example/solr/collection1/conf/lang/stopwords_en.txt +54 -0
- data/example/solr/collection1/conf/lang/stopwords_es.txt +354 -0
- data/example/solr/collection1/conf/lang/stopwords_eu.txt +99 -0
- data/example/solr/collection1/conf/lang/stopwords_fa.txt +313 -0
- data/example/solr/collection1/conf/lang/stopwords_fi.txt +95 -0
- data/example/solr/collection1/conf/lang/stopwords_fr.txt +184 -0
- data/example/solr/collection1/conf/lang/stopwords_ga.txt +110 -0
- data/example/solr/collection1/conf/lang/stopwords_gl.txt +161 -0
- data/example/solr/collection1/conf/lang/stopwords_hi.txt +235 -0
- data/example/solr/collection1/conf/lang/stopwords_hu.txt +209 -0
- data/example/solr/collection1/conf/lang/stopwords_hy.txt +46 -0
- data/example/solr/collection1/conf/lang/stopwords_id.txt +359 -0
- data/example/solr/collection1/conf/lang/stopwords_it.txt +301 -0
- data/example/solr/collection1/conf/lang/stopwords_ja.txt +127 -0
- data/example/solr/collection1/conf/lang/stopwords_lv.txt +172 -0
- data/example/solr/collection1/conf/lang/stopwords_nl.txt +117 -0
- data/example/solr/collection1/conf/lang/stopwords_no.txt +192 -0
- data/example/solr/collection1/conf/lang/stopwords_pt.txt +251 -0
- data/example/solr/collection1/conf/lang/stopwords_ro.txt +233 -0
- data/example/solr/collection1/conf/lang/stopwords_ru.txt +241 -0
- data/example/solr/collection1/conf/lang/stopwords_sv.txt +131 -0
- data/example/solr/collection1/conf/lang/stopwords_th.txt +119 -0
- data/example/solr/collection1/conf/lang/stopwords_tr.txt +212 -0
- data/example/solr/collection1/conf/lang/userdict_ja.txt +29 -0
- data/example/solr/collection1/conf/mapping-FoldToASCII.txt +3813 -0
- data/example/solr/collection1/conf/mapping-ISOLatin1Accent.txt +246 -0
- data/example/solr/collection1/conf/protwords.txt +21 -0
- data/example/solr/collection1/conf/schema.xml +1125 -0
- data/example/solr/collection1/conf/scripts.conf +24 -0
- data/example/solr/collection1/conf/solrconfig.xml +1816 -0
- data/example/solr/collection1/conf/spellings.txt +2 -0
- data/example/solr/collection1/conf/stopwords.txt +14 -0
- data/example/solr/collection1/conf/synonyms.txt +29 -0
- data/example/solr/collection1/conf/update-script.js +53 -0
- data/example/solr/collection1/conf/velocity/VM_global_library.vm +170 -0
- data/example/solr/collection1/conf/velocity/browse.vm +50 -0
- data/example/solr/collection1/conf/velocity/cluster.vm +9 -0
- data/example/solr/collection1/conf/velocity/clusterResults.vm +12 -0
- data/example/solr/collection1/conf/velocity/debug.vm +17 -0
- data/example/solr/collection1/conf/velocity/did_you_mean.vm +4 -0
- data/example/solr/collection1/conf/velocity/facet_fields.vm +15 -0
- data/example/solr/collection1/conf/velocity/facet_pivot.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_queries.vm +3 -0
- data/example/solr/collection1/conf/velocity/facet_ranges.vm +15 -0
- data/example/solr/collection1/conf/velocity/facets.vm +5 -0
- data/example/solr/collection1/conf/velocity/footer.vm +17 -0
- data/example/solr/collection1/conf/velocity/head.vm +32 -0
- data/example/solr/collection1/conf/velocity/header.vm +3 -0
- data/example/solr/collection1/conf/velocity/hit.vm +11 -0
- data/example/solr/collection1/conf/velocity/hitGrouped.vm +24 -0
- data/example/solr/collection1/conf/velocity/join-doc.vm +4 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.css +48 -0
- data/example/solr/collection1/conf/velocity/jquery.autocomplete.js +763 -0
- data/example/solr/collection1/conf/velocity/layout.vm +20 -0
- data/example/solr/collection1/conf/velocity/main.css +208 -0
- data/example/solr/collection1/conf/velocity/product-doc.vm +27 -0
- data/example/solr/collection1/conf/velocity/query.vm +42 -0
- data/example/solr/collection1/conf/velocity/queryGroup.vm +19 -0
- data/example/solr/collection1/conf/velocity/querySpatial.vm +40 -0
- data/example/solr/collection1/conf/velocity/richtext-doc.vm +114 -0
- data/example/solr/collection1/conf/velocity/suggest.vm +3 -0
- data/example/solr/collection1/conf/velocity/tabs.vm +6 -0
- data/example/solr/collection1/conf/xslt/example.xsl +132 -0
- data/example/solr/collection1/conf/xslt/example_atom.xsl +67 -0
- data/example/solr/collection1/conf/xslt/example_rss.xsl +66 -0
- data/example/solr/collection1/conf/xslt/luke.xsl +337 -0
- data/example/solr/collection1/conf/xslt/updateXml.xsl +70 -0
- data/example/solr/collection1/data/index/segments.gen +0 -0
- data/example/solr/collection1/data/index/segments_1 +0 -0
- data/example/solr/data/development/index/segments.gen +0 -0
- data/example/solr/data/development/index/segments_1 +0 -0
- data/example/solr/solr.xml +53 -0
- data/example/solr/zoo.cfg +17 -0
- data/lib/rere.rb +66 -0
- data/lib/rere/railtie.rb +8 -0
- data/lib/rere/server.rb +380 -0
- data/lib/rere/tasks/solr.rake +47 -0
- data/lib/rere/version.rb +3 -0
- data/pom.xml +168 -0
- data/rere.gemspec +26 -0
- data/server/README.txt +78 -0
- data/server/cloud-scripts/zkcli.bat +12 -0
- data/server/cloud-scripts/zkcli.sh +14 -0
- data/server/contexts/solr-jetty-context.xml +8 -0
- data/server/etc/create-solrtest.keystore.sh +37 -0
- data/server/etc/jetty.xml +205 -0
- data/server/etc/logging.properties +38 -0
- data/server/etc/solrtest.keystore +0 -0
- data/server/etc/webdefault.xml +527 -0
- data/server/exampledocs/books.csv +11 -0
- data/server/exampledocs/books.json +51 -0
- data/server/exampledocs/gb18030-example.xml +32 -0
- data/server/exampledocs/hd.xml +56 -0
- data/server/exampledocs/ipod_other.xml +60 -0
- data/server/exampledocs/ipod_video.xml +40 -0
- data/server/exampledocs/manufacturers.xml +75 -0
- data/server/exampledocs/mem.xml +77 -0
- data/server/exampledocs/money.xml +65 -0
- data/server/exampledocs/monitor.xml +35 -0
- data/server/exampledocs/monitor2.xml +34 -0
- data/server/exampledocs/mp500.xml +43 -0
- data/server/exampledocs/post.jar +0 -0
- data/server/exampledocs/post.sh +30 -0
- data/server/exampledocs/sd500.xml +38 -0
- data/server/exampledocs/solr.xml +38 -0
- data/server/exampledocs/test_utf8.sh +93 -0
- data/server/exampledocs/utf8-example.xml +42 -0
- data/server/exampledocs/vidcard.xml +62 -0
- data/server/lib/ext/jcl-over-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/jul-to-slf4j-1.6.6.jar +0 -0
- data/server/lib/ext/log4j-1.2.16.jar +0 -0
- data/server/lib/ext/slf4j-api-1.6.6.jar +0 -0
- data/server/lib/ext/slf4j-log4j12-1.6.6.jar +0 -0
- data/server/lib/jetty-continuation-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-deploy-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-http-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-io-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-jmx-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-security-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-server-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-servlet-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-util-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-webapp-8.1.8.v20121106.jar +0 -0
- data/server/lib/jetty-xml-8.1.8.v20121106.jar +0 -0
- data/server/lib/servlet-api-3.0.jar +0 -0
- data/server/resources/log4j.properties +19 -0
- data/server/solr/README.txt +63 -0
- data/server/solr/solr.xml +53 -0
- data/server/solr/zoo.cfg +17 -0
- data/server/start.jar +0 -0
- data/server/webapps/solr.war +0 -0
- data/solr/lib/solr-winds-0.1.jar +0 -0
- metadata +284 -0
@@ -0,0 +1,110 @@
|
|
1
|
+
|
2
|
+
a
|
3
|
+
ach
|
4
|
+
ag
|
5
|
+
agus
|
6
|
+
an
|
7
|
+
aon
|
8
|
+
ar
|
9
|
+
arna
|
10
|
+
as
|
11
|
+
b'
|
12
|
+
ba
|
13
|
+
beirt
|
14
|
+
bhúr
|
15
|
+
caoga
|
16
|
+
ceathair
|
17
|
+
ceathrar
|
18
|
+
chomh
|
19
|
+
chtó
|
20
|
+
chuig
|
21
|
+
chun
|
22
|
+
cois
|
23
|
+
céad
|
24
|
+
cúig
|
25
|
+
cúigear
|
26
|
+
d'
|
27
|
+
daichead
|
28
|
+
dar
|
29
|
+
de
|
30
|
+
deich
|
31
|
+
deichniúr
|
32
|
+
den
|
33
|
+
dhá
|
34
|
+
do
|
35
|
+
don
|
36
|
+
dtí
|
37
|
+
dá
|
38
|
+
dár
|
39
|
+
dó
|
40
|
+
faoi
|
41
|
+
faoin
|
42
|
+
faoina
|
43
|
+
faoinár
|
44
|
+
fara
|
45
|
+
fiche
|
46
|
+
gach
|
47
|
+
gan
|
48
|
+
go
|
49
|
+
gur
|
50
|
+
haon
|
51
|
+
hocht
|
52
|
+
i
|
53
|
+
iad
|
54
|
+
idir
|
55
|
+
in
|
56
|
+
ina
|
57
|
+
ins
|
58
|
+
inár
|
59
|
+
is
|
60
|
+
le
|
61
|
+
leis
|
62
|
+
lena
|
63
|
+
lenár
|
64
|
+
m'
|
65
|
+
mar
|
66
|
+
mo
|
67
|
+
mé
|
68
|
+
na
|
69
|
+
nach
|
70
|
+
naoi
|
71
|
+
naonúr
|
72
|
+
ná
|
73
|
+
ní
|
74
|
+
níor
|
75
|
+
nó
|
76
|
+
nócha
|
77
|
+
ocht
|
78
|
+
ochtar
|
79
|
+
os
|
80
|
+
roimh
|
81
|
+
sa
|
82
|
+
seacht
|
83
|
+
seachtar
|
84
|
+
seachtó
|
85
|
+
seasca
|
86
|
+
seisear
|
87
|
+
siad
|
88
|
+
sibh
|
89
|
+
sinn
|
90
|
+
sna
|
91
|
+
sé
|
92
|
+
sí
|
93
|
+
tar
|
94
|
+
thar
|
95
|
+
thú
|
96
|
+
triúr
|
97
|
+
trí
|
98
|
+
trína
|
99
|
+
trínár
|
100
|
+
tríocha
|
101
|
+
tú
|
102
|
+
um
|
103
|
+
ár
|
104
|
+
é
|
105
|
+
éis
|
106
|
+
í
|
107
|
+
ó
|
108
|
+
ón
|
109
|
+
óna
|
110
|
+
ónár
|
@@ -0,0 +1,161 @@
|
|
1
|
+
# galican stopwords
|
2
|
+
a
|
3
|
+
aínda
|
4
|
+
alí
|
5
|
+
aquel
|
6
|
+
aquela
|
7
|
+
aquelas
|
8
|
+
aqueles
|
9
|
+
aquilo
|
10
|
+
aquí
|
11
|
+
ao
|
12
|
+
aos
|
13
|
+
as
|
14
|
+
así
|
15
|
+
á
|
16
|
+
ben
|
17
|
+
cando
|
18
|
+
che
|
19
|
+
co
|
20
|
+
coa
|
21
|
+
comigo
|
22
|
+
con
|
23
|
+
connosco
|
24
|
+
contigo
|
25
|
+
convosco
|
26
|
+
coas
|
27
|
+
cos
|
28
|
+
cun
|
29
|
+
cuns
|
30
|
+
cunha
|
31
|
+
cunhas
|
32
|
+
da
|
33
|
+
dalgunha
|
34
|
+
dalgunhas
|
35
|
+
dalgún
|
36
|
+
dalgúns
|
37
|
+
das
|
38
|
+
de
|
39
|
+
del
|
40
|
+
dela
|
41
|
+
delas
|
42
|
+
deles
|
43
|
+
desde
|
44
|
+
deste
|
45
|
+
do
|
46
|
+
dos
|
47
|
+
dun
|
48
|
+
duns
|
49
|
+
dunha
|
50
|
+
dunhas
|
51
|
+
e
|
52
|
+
el
|
53
|
+
ela
|
54
|
+
elas
|
55
|
+
eles
|
56
|
+
en
|
57
|
+
era
|
58
|
+
eran
|
59
|
+
esa
|
60
|
+
esas
|
61
|
+
ese
|
62
|
+
eses
|
63
|
+
esta
|
64
|
+
estar
|
65
|
+
estaba
|
66
|
+
está
|
67
|
+
están
|
68
|
+
este
|
69
|
+
estes
|
70
|
+
estiven
|
71
|
+
estou
|
72
|
+
eu
|
73
|
+
é
|
74
|
+
facer
|
75
|
+
foi
|
76
|
+
foron
|
77
|
+
fun
|
78
|
+
había
|
79
|
+
hai
|
80
|
+
iso
|
81
|
+
isto
|
82
|
+
la
|
83
|
+
las
|
84
|
+
lle
|
85
|
+
lles
|
86
|
+
lo
|
87
|
+
los
|
88
|
+
mais
|
89
|
+
me
|
90
|
+
meu
|
91
|
+
meus
|
92
|
+
min
|
93
|
+
miña
|
94
|
+
miñas
|
95
|
+
moi
|
96
|
+
na
|
97
|
+
nas
|
98
|
+
neste
|
99
|
+
nin
|
100
|
+
no
|
101
|
+
non
|
102
|
+
nos
|
103
|
+
nosa
|
104
|
+
nosas
|
105
|
+
noso
|
106
|
+
nosos
|
107
|
+
nós
|
108
|
+
nun
|
109
|
+
nunha
|
110
|
+
nuns
|
111
|
+
nunhas
|
112
|
+
o
|
113
|
+
os
|
114
|
+
ou
|
115
|
+
ó
|
116
|
+
ós
|
117
|
+
para
|
118
|
+
pero
|
119
|
+
pode
|
120
|
+
pois
|
121
|
+
pola
|
122
|
+
polas
|
123
|
+
polo
|
124
|
+
polos
|
125
|
+
por
|
126
|
+
que
|
127
|
+
se
|
128
|
+
senón
|
129
|
+
ser
|
130
|
+
seu
|
131
|
+
seus
|
132
|
+
sexa
|
133
|
+
sido
|
134
|
+
sobre
|
135
|
+
súa
|
136
|
+
súas
|
137
|
+
tamén
|
138
|
+
tan
|
139
|
+
te
|
140
|
+
ten
|
141
|
+
teñen
|
142
|
+
teño
|
143
|
+
ter
|
144
|
+
teu
|
145
|
+
teus
|
146
|
+
ti
|
147
|
+
tido
|
148
|
+
tiña
|
149
|
+
tiven
|
150
|
+
túa
|
151
|
+
túas
|
152
|
+
un
|
153
|
+
unha
|
154
|
+
unhas
|
155
|
+
uns
|
156
|
+
vos
|
157
|
+
vosa
|
158
|
+
vosas
|
159
|
+
voso
|
160
|
+
vosos
|
161
|
+
vós
|
@@ -0,0 +1,235 @@
|
|
1
|
+
# Also see http://www.opensource.org/licenses/bsd-license.html
|
2
|
+
# See http://members.unine.ch/jacques.savoy/clef/index.html.
|
3
|
+
# This file was created by Jacques Savoy and is distributed under the BSD license.
|
4
|
+
# Note: by default this file also contains forms normalized by HindiNormalizer
|
5
|
+
# for spelling variation (see section below), such that it can be used whether or
|
6
|
+
# not you enable that feature. When adding additional entries to this list,
|
7
|
+
# please add the normalized form as well.
|
8
|
+
अंदर
|
9
|
+
अत
|
10
|
+
अपना
|
11
|
+
अपनी
|
12
|
+
अपने
|
13
|
+
अभी
|
14
|
+
आदि
|
15
|
+
आप
|
16
|
+
इत्यादि
|
17
|
+
इन
|
18
|
+
इनका
|
19
|
+
इन्हीं
|
20
|
+
इन्हें
|
21
|
+
इन्हों
|
22
|
+
इस
|
23
|
+
इसका
|
24
|
+
इसकी
|
25
|
+
इसके
|
26
|
+
इसमें
|
27
|
+
इसी
|
28
|
+
इसे
|
29
|
+
उन
|
30
|
+
उनका
|
31
|
+
उनकी
|
32
|
+
उनके
|
33
|
+
उनको
|
34
|
+
उन्हीं
|
35
|
+
उन्हें
|
36
|
+
उन्हों
|
37
|
+
उस
|
38
|
+
उसके
|
39
|
+
उसी
|
40
|
+
उसे
|
41
|
+
एक
|
42
|
+
एवं
|
43
|
+
एस
|
44
|
+
ऐसे
|
45
|
+
और
|
46
|
+
कई
|
47
|
+
कर
|
48
|
+
करता
|
49
|
+
करते
|
50
|
+
करना
|
51
|
+
करने
|
52
|
+
करें
|
53
|
+
कहते
|
54
|
+
कहा
|
55
|
+
का
|
56
|
+
काफ़ी
|
57
|
+
कि
|
58
|
+
कितना
|
59
|
+
किन्हें
|
60
|
+
किन्हों
|
61
|
+
किया
|
62
|
+
किर
|
63
|
+
किस
|
64
|
+
किसी
|
65
|
+
किसे
|
66
|
+
की
|
67
|
+
कुछ
|
68
|
+
कुल
|
69
|
+
के
|
70
|
+
को
|
71
|
+
कोई
|
72
|
+
कौन
|
73
|
+
कौनसा
|
74
|
+
गया
|
75
|
+
घर
|
76
|
+
जब
|
77
|
+
जहाँ
|
78
|
+
जा
|
79
|
+
जितना
|
80
|
+
जिन
|
81
|
+
जिन्हें
|
82
|
+
जिन्हों
|
83
|
+
जिस
|
84
|
+
जिसे
|
85
|
+
जीधर
|
86
|
+
जैसा
|
87
|
+
जैसे
|
88
|
+
जो
|
89
|
+
तक
|
90
|
+
तब
|
91
|
+
तरह
|
92
|
+
तिन
|
93
|
+
तिन्हें
|
94
|
+
तिन्हों
|
95
|
+
तिस
|
96
|
+
तिसे
|
97
|
+
तो
|
98
|
+
था
|
99
|
+
थी
|
100
|
+
थे
|
101
|
+
दबारा
|
102
|
+
दिया
|
103
|
+
दुसरा
|
104
|
+
दूसरे
|
105
|
+
दो
|
106
|
+
द्वारा
|
107
|
+
न
|
108
|
+
नहीं
|
109
|
+
ना
|
110
|
+
निहायत
|
111
|
+
नीचे
|
112
|
+
ने
|
113
|
+
पर
|
114
|
+
पर
|
115
|
+
पहले
|
116
|
+
पूरा
|
117
|
+
पे
|
118
|
+
फिर
|
119
|
+
बनी
|
120
|
+
बही
|
121
|
+
बहुत
|
122
|
+
बाद
|
123
|
+
बाला
|
124
|
+
बिलकुल
|
125
|
+
भी
|
126
|
+
भीतर
|
127
|
+
मगर
|
128
|
+
मानो
|
129
|
+
मे
|
130
|
+
में
|
131
|
+
यदि
|
132
|
+
यह
|
133
|
+
यहाँ
|
134
|
+
यही
|
135
|
+
या
|
136
|
+
यिह
|
137
|
+
ये
|
138
|
+
रखें
|
139
|
+
रहा
|
140
|
+
रहे
|
141
|
+
ऱ्वासा
|
142
|
+
लिए
|
143
|
+
लिये
|
144
|
+
लेकिन
|
145
|
+
व
|
146
|
+
वर्ग
|
147
|
+
वह
|
148
|
+
वह
|
149
|
+
वहाँ
|
150
|
+
वहीं
|
151
|
+
वाले
|
152
|
+
वुह
|
153
|
+
वे
|
154
|
+
वग़ैरह
|
155
|
+
संग
|
156
|
+
सकता
|
157
|
+
सकते
|
158
|
+
सबसे
|
159
|
+
सभी
|
160
|
+
साथ
|
161
|
+
साबुत
|
162
|
+
साभ
|
163
|
+
सारा
|
164
|
+
से
|
165
|
+
सो
|
166
|
+
ही
|
167
|
+
हुआ
|
168
|
+
हुई
|
169
|
+
हुए
|
170
|
+
है
|
171
|
+
हैं
|
172
|
+
हो
|
173
|
+
होता
|
174
|
+
होती
|
175
|
+
होते
|
176
|
+
होना
|
177
|
+
होने
|
178
|
+
# additional normalized forms of the above
|
179
|
+
अपनि
|
180
|
+
जेसे
|
181
|
+
होति
|
182
|
+
सभि
|
183
|
+
तिंहों
|
184
|
+
इंहों
|
185
|
+
दवारा
|
186
|
+
इसि
|
187
|
+
किंहें
|
188
|
+
थि
|
189
|
+
उंहों
|
190
|
+
ओर
|
191
|
+
जिंहें
|
192
|
+
वहिं
|
193
|
+
अभि
|
194
|
+
बनि
|
195
|
+
हि
|
196
|
+
उंहिं
|
197
|
+
उंहें
|
198
|
+
हें
|
199
|
+
वगेरह
|
200
|
+
एसे
|
201
|
+
रवासा
|
202
|
+
कोन
|
203
|
+
निचे
|
204
|
+
काफि
|
205
|
+
उसि
|
206
|
+
पुरा
|
207
|
+
भितर
|
208
|
+
हे
|
209
|
+
बहि
|
210
|
+
वहां
|
211
|
+
कोइ
|
212
|
+
यहां
|
213
|
+
जिंहों
|
214
|
+
तिंहें
|
215
|
+
किसि
|
216
|
+
कइ
|
217
|
+
यहि
|
218
|
+
इंहिं
|
219
|
+
जिधर
|
220
|
+
इंहें
|
221
|
+
अदि
|
222
|
+
इतयादि
|
223
|
+
हुइ
|
224
|
+
कोनसा
|
225
|
+
इसकि
|
226
|
+
दुसरे
|
227
|
+
जहां
|
228
|
+
अप
|
229
|
+
किंहों
|
230
|
+
उनकि
|
231
|
+
भि
|
232
|
+
वरग
|
233
|
+
हुअ
|
234
|
+
जेसा
|
235
|
+
नहिं
|