David Münch

Menu
  • Home
  • Internal
    • F-Limette User Manual [de]
    • F-Limette User Manual [en]
    • Step-by-step setup for the SGT working environment
    • Summary of articles on situation recognition

F-Limette User Manual [en]

F-Limette User Manual

F-Limette[(flimette>F-Limette: Homepage of F-Limette)] is basically an extension of Prolog that adds a temporal aspect as well as Fuzziness[(prolog>http://en.wikipedia.org/wiki/Prolog: Introduction to Prolog from Wikipedia)]. The former allows for the assignment of predicates not only with values ​​{0,1}, but also with real numbers in [0,1]. Thus, concepts such as “little” or “moderate” can be implemented.

Syntax

  • and: »,«
  • or: »;«
  • Command Line end: ».«
  • Implication: »:-« (←), »-:« (→)

> Another F-limette-manual can be found here :[(flimetteman>F-Limette Manual: F-Limette Documentation(pdf) )] .

Examples

# Tips/Tricks

# Issue all output without Interaction
set(stop, +i).
# Always issue one more output
set(stop, 1).
# Output the next result
;
# Define statements(assertions). The following statement can be interpreted as follows: 
#    assert that at time 0 :has_status(seby, 32)
asserta(0 ! has_status(seby, 32)).
# similarly: at time 0 : has_status(andy, 33)
asserta(0 ! has_status(andy, 33)).
asserta(0 ! has_status(davy, 13)).
# With different time points
asserta(1 ! has_status(andy, 34)).
asserta(2 ! has_status(andy, 35)).
asserta(3 ! has_status(andy, +i)).
# Introduce Fuzziness. If not specified, it defaults to 1.
asserta(0.5 | 1 ! has_status(davy, 14)).
asserta(0.6 | 1 ! has_status(davy, 13)).
asserta(0.9 | 2 ! has_status(davy, 14)).
asserta(0.1 | 2 ! has_status(davy, 13)).

# Query limette as follows: "with what Fuzziness" | at what timepoint ? which statement statement. 
# Here: Fuzziness: eps (ε, also works)| timepoint 0 ? Who is 33?
eps | 0 ? has_status(_,33).
# Expected Answer: andy

# Return all those with age > 14 at time point 0
eps | 0 ? has_status(Name,Age), Age > 14.

# Find the time point at which there is one with age 35. 
eps | event findall[L] Name -: has_status(Name,35).

# Other Examples
eps | event findall[L] Name -: has_status(Name,13).
0.5 | event findall[L] Name -: has_status(Name,13).

Example 2

The following examples are from the book [ [(ref:Schaefer1997)]

Page 153ff:

/* "When is it absolutely true that any car is packed at any location?" */
?- event parken_an_ort(Pkw,Ort).

F-LIMETTE in Linux

Under Linux,the C++ Source code is available from the Homepage [(ref:Schaefer1997)]. Compile with gcc-4.4 after making the following changes:

limette/Makefile
- 	cd $(RLHOME) && configure
+	cd $(RLHOME) && ./configure

limette/scanner.l
+ %option noyywrap

limString.cc
- #include <strstream.h>
+ #include <strstream>
+ using namespace std;

limString.hh
- #include <stream.h>
+ #include <iostream>
+ using namespace std;

cppmod.cc
- #include <stream.h>
+ #include <iostream>
+ using namespace std;

limTerm.hh
- #include <stream.h>
+ #include <iostream>
+ using namespace std;
+ class limSubst;

limCommand.hh
- #include <strstream.h>
+ #include <strstream>
+ using namespace std;

Examples 3 3:Getting Started with F-LIMETTE

Starting and Closing:

user@computer:Limette/limette > ll limette2
-rwxrwxr-x 1 user user 1674968 2011-06-29 19:03 limette2
user@computer:Limette/limette > ./limette2
<0> :-) author.
	Karl H. Schaefer
<0> :-) version.
	LIMETTE-2 Jun 29 2011 19:03:48
<0> :-) quit.
:-| good bye.
user@computer:Limette/limette >

Facts and Queries A knowledge base (KB) is a collection of facts. In F-Limette they always look like this: always(bird(chicken)). always(animal(lion)). always(animal(zebra)).

Where always() stands for time from minus infinity to plus infinity, and is just an alias for: -i : +i !

Requests are entered directly into F-Limette, e.g.: bird(chicken).

Note: :- bird(chicken) corresponds to yes even if after entering ”;” even if it follows a no (*the rest of the text s unineteligible for me*)

<0> :-) assertz(always(animal(lion))).
<0> :-) assertz(always(animal(zebra))).
<0> :-) asserta(always(bird(chicken))).
<0> :-) list.
       1: -i : +i ! bird(chicken).
       2: -i : +i ! animal(lion).
       3: -i : +i ! animal(zebra).
<1> :-) animal(Var).
:- animal(lion);
:- animal(zebra);
no
<2> :-) bird(chicken).
:- bird(chicken);
no
<3> :-) bird(car).
no
<3> :-) history.
    <0> animal(Var) [STOPPED]
    <1> bird(chicken) [STOPPED]
    <2> bird(car) [STOPPED]
<3> :-)

Rules All birds are animals. And that is of course true round the clock ;-) That is bird(X) follows from animal(X):

always(animal(X) :- bird(X)).

It is not necessary to always type this. It can be loaded in a File.

user@computer:Limette/limette > more ../Daten/limette_files/test_file.lim 
always(bird(chicken)).
always(animal(lion)).
always(animal(zebra)).
always(animal(X) :- bird(X)).

The directory specified with cd must be a constant, i.e. start with a lower case character. Be sure to pass the appropriate characters in-between ‘ ‘ e.g. ‘..’, ‘Data’, limette_files or ‘limette_files’

If you add the file name without the .lim extension, the contents of the file are appended to the current module.

user@computer:Limette/limette > ./limette2
<0> :-) pwd.
	/home/user/Programme/Limette/limette
<0> :-) cd('..').
<0> :-) cd('Daten').
<0> :-) cd(limette_files).
<0> :-) add('test_file').
<0> :-) list.
       1: -i : +i ! bird(chicken).
       2: -i : +i ! animal(lion).
       3: -i : +i ! animal(zebra).
       4: -i : +i ! (animal(_0) :- bird(_0)).
<0> :-) animal(chicken).
:- animal(chicken);
no
<1> :-) modules.
	test_file
<1> :-) where.
	test_file

A few other Parameters can be set. We now want the debug-mode:

The one can gradually “creep” by going through the evaluations or leave the trace to display all the steps at once.

<2> :-) get.
	alpha    = [ 1, 1, 1, 1, 0 ]
	answer   = formula
	cycles   = off
	debug    = off
	defcheck = on
	gates    = delay
	limits   = +i
	narrow   = off
	print    = normal
	queue    = depth
	stop     = 1
	store    = proof
	trace    = off
	memo     = off
<2> :-) set(debug,on).
<2> :-) get(debug).
	debug    = on
<2> :-) animal(chicken).
(   8)    1 Call: animal(chicken) : ?
:-( debugger command must be one of abort, creep, fail, leap, skip, trace.
(   8)    1 Call: animal(chicken) : trace
(  10)    2 Call: bird(chicken)
(  10)    2 Exit: bird(chicken)
(   8)    1 Exit: animal(chicken)
:- animal(chicken);
no
<3> :-) animal(chicken).
(  13)    1 Call: animal(chicken) : creep
(  15)    2 Call: bird(chicken) : creep
(  15)    2 Exit: bird(chicken)
(  13)    1 Exit: animal(chicken)
:- animal(chicken);
no

Changes can be saved: File name should not contain illegal characters ‘test_file.lim’.

<4> :-) asserta(always(bird(eagle))).
<4> :-) animal(X).
:- animal(lion);
:- animal(zebra);
:- animal(eagle);
:- animal(chicken);
no
<5> :-) where.
	test_file
<5> :-) list(test_file).
       1: -i : +i ! bird(eagle).
       2: -i : +i ! bird(chicken).
       3: -i : +i ! animal(lion).
       4: -i : +i ! animal(zebra).
       5: -i : +i ! (animal(_0) :- bird(_0)).
<5> :-) save(test_file,'test_file.lim').
<5> :-) quit.
:-| good bye.
user@computer:Limette/limette > more ../Daten/limette_files/test_file.lim 
-i : +i ! bird(eagle).
-i : +i ! bird(chicken).
-i : +i ! animal(lion).
-i : +i ! animal(zebra).
-i : +i ! (animal(_0) :- bird(_0)).

References

<refnotes> notes-separator : none </refnotes>

This manual was translated from the German Versionhttp://davidmuench.de/wiki/doku.php?id=internal:f-limette-de: F-Limette Manual by Sebastian Bauer)]

411 thoughts on “F-Limette User Manual [en]”

  1. Pingback: cialis generic
  2. Pingback: Order Viagra Online
  3. Pingback: chloroquine antiviral
  4. Pingback: tylenol stock price
  5. Pingback: ed pills online
  6. Pingback: viagra for sale
  7. Pingback: cialis vs viagra
  8. Pingback: medicine for impotence
  9. Pingback: cheapest ed pills online
  10. Pingback: cialis generic
  11. Pingback: tadalafil
  12. Pingback: canada online pharmacy
  13. Pingback: side effects of viagra
  14. Pingback: rx pharmacy
  15. Pingback: Viagra or cialis
  16. Pingback: vardenafil online pharmacy
  17. Pingback: vardenafil 20 mg
  18. Pingback: online levitra
  19. Pingback: online casino real money paypal
  20. Pingback: sildenafil citrate 20 mg
  21. Pingback: red dog casino
  22. Pingback: free slots online
  23. Pingback: online casinos
  24. Pingback: cialis without a doctor prescription
  25. Pingback: quick cash loans
  26. Pingback: cash loan
  27. Pingback: careprost ophthalmic solution
  28. Pingback: quick cash loans
  29. Pingback: viagra pills
  30. Pingback: 20 cialis
  31. Pingback: cialis 5 mg
  32. Pingback: cialis buy
  33. Pingback: order viagra online
  34. Pingback: cialis generic
  35. Pingback: online casino gambling
  36. Pingback: chumba casino
  37. Pingback: casino gambling
  38. Pingback: viagra pills
  39. Pingback: viagra online canada
  40. Pingback: viagra alternative
  41. Pingback: tadalafil tablets
  42. Pingback: real casino online
  43. Pingback: real money casino games
  44. Pingback: keflex.webbfenix.com
  45. Pingback: au cialis
  46. Pingback: 5mg cialis
  47. Pingback: au cialis
  48. Pingback: US viagra sales
  49. Pingback: buy levitra online australia
  50. Pingback: buy levitra online
  51. Pingback: cialis lust
  52. Pingback: sildenafil drug interactions
  53. Pingback: cialis frequency of use
  54. Pingback: Buy cheap viagra
  55. Pingback: generic everyday cialis
  56. Pingback: essay writing service
  57. Pingback: ordering cialis generic online
  58. Pingback: how does cialis work
  59. Pingback: buy tadalafil
  60. Pingback: cialis mail order australia
  61. Pingback: viagra online
  62. Pingback: how long does it take viagra to work
  63. Pingback: viagra doses
  64. Pingback: viagra over the counter walmart
  65. Pingback: how long for viagra to work
  66. Pingback: how long does albuterol last
  67. Pingback: canadian online pharmacy
  68. Pingback: Adalat
  69. Pingback: viagra generic
  70. Pingback: viagra
  71. Pingback: information on cialis
  72. Pingback: drugs without a doctor's prescription india
  73. Pingback: dosing hydroxychloroquine for covid
  74. Pingback: cvs cenforce cost
  75. Pingback: is 40 mg prednisone high
  76. Pingback: how much is prescription cialis
  77. Pingback: is cialis or viagra better
  78. Pingback: viagra viasaleus
  79. Pingback: chloroquine and coronavirus france
  80. Pingback: medical uses for cefixime
  81. Pingback: peptides vidalista reviews
  82. Pingback: typical cialis prescription strength
  83. Pingback: 75 mg cialis sublingual dosage
  84. Pingback: cialis soft tablet
  85. Pingback: get cialis overnight
  86. Pingback: cialis 10mg
  87. Pingback: monthly cost of cialis without insurance
  88. Pingback: cialis australia online shopping
  89. Pingback: cialis pills without doctor visit
  90. Pingback: sildenafil prescription canada
  91. Pingback: over the counter vidalista
  92. Pingback: how to buy cialis online uk
  93. Pingback: what is the best viagra alternative
  94. Pingback: cialis online from canada
  95. Pingback: cialis generic without prescription
  96. Pingback: cialis 10mg india
  97. Pingback: cialis without presciption in usa
  98. Pingback: non prescription ivermectin
  99. Pingback: prescription cost for tadalafil
  100. Pingback: grqacbvr
  101. Pingback: cialis soft tablet
  102. Pingback: hydroxychloroquine shortage 2020
  103. Pingback: wat doet viagra voor vrouwen
  104. Pingback: where can i buy zithromax azithromycin
  105. Pingback: sildenafil without prescription
  106. Pingback: azithromycin without seeing doctor
  107. Pingback: how does viagra affect you
  108. Pingback: cialis commercials 2010
  109. Pingback: hydroxychloroquine price walmart
  110. Pingback: cost of cialis without insurance
  111. Pingback: viagra without doctor prescription
  112. Pingback: buying online viagra
  113. Pingback: tadalafil without prescription
  114. Pingback: buy cialis tadalafil tablets
  115. Pingback: viagra professional 100mg ebay
  116. Pingback: comprar viagra en andorra contrareembolso
  117. Pingback: cialis sale 20mg
  118. Pingback: plaquenil sanofi aventis
  119. Pingback: mixing viagra and alcohol
  120. Pingback: dapoxetine bph reviews
  121. Pingback: buy cheap cialis uk
  122. Pingback: student essay writing services
  123. Pingback: writing research
  124. Pingback: what to write for my college essay
  125. Pingback: help me with my essay
  126. Pingback: cost of cialis without insurance
  127. Pingback: ethics in business scholarship essay
  128. Pingback: tadalafil buy online without a prescription
  129. Pingback: doctors for hydroxychloroquine
  130. Pingback: buy cialis now
  131. Pingback: tadalafil generic without prescription
  132. Pingback: hydroxychloroquine 200mg dose
  133. Pingback: hydroxychloroquine brands
  134. Pingback: tadalafil 10mg price in india
  135. Pingback: cost of cialis without insurance
  136. Pingback: pediatric albuterol dosing chart
  137. Pingback: cost of cialis without insurance
  138. Pingback: flagyl and c diff
  139. Pingback: amoxicillin 375 mg
  140. Pingback: lasix price uk
  141. Pingback: how to buy tadalafil
  142. Pingback: how much is azithromycin in mexico
  143. Pingback: dapoxetine dosing
  144. Pingback: ivermectin brand
  145. Pingback: buy ventolin online uk
  146. Pingback: buy stromectol uk
  147. Pingback: doxycycline doses
  148. Pingback: prednisolone step down
  149. Pingback: clomid facts
  150. Pingback: priligy meaning
  151. Pingback: diflucan goodrx
  152. Pingback: thyrolar vs synthroid
  153. Pingback: buy cialis without a prescription
  154. Pingback: ivermectin for mange dosage
  155. Pingback: thesis in writing
  156. Pingback: propecia damn show
  157. Pingback: generic metformin
  158. Pingback: paxil warnings
  159. Pingback: hydroxychloroquine (plaquenil
  160. Pingback: buy cheap cialis online
  161. Pingback: vidalista and alcohol side effects
  162. Pingback: hydroxychloroquine 90 mg
  163. Pingback: buy cialis drug
  164. Pingback: tadalafil cheap online
  165. Pingback: hydroxychloroquine africa covid
  166. Pingback: taking cialis soft tabs
  167. Pingback: Zakhar Berkut hd
  168. Pingback: cheap cialis.com
  169. Pingback: 4569987
  170. Pingback: original cialis low price
  171. Pingback: reviews torrent pharmaceuticals sildenafil
  172. Pingback: news news news
  173. Pingback: cialis 5 mg daily price
  174. Pingback: first cash advance rapid city
  175. Pingback: psy
  176. Pingback: psy2022
  177. Pingback: projectio-freid
  178. Pingback: us online pharmacy cialis
  179. Pingback: tretinoin online
  180. Pingback: tadalafil 5mg generic
  181. Pingback: ace cash advance titusville
  182. Pingback: kinoteatrzarya.ru
  183. Pingback: topvideos
  184. Pingback: video
  185. Pingback: buy online generic
  186. Pingback: contents of amoxicillin
  187. Pingback: buy online hydroxychloroquine 200mg
  188. Pingback: buy online generic
  189. Pingback: afisha-kinoteatrov.ru
  190. Pingback: Ukrainskie-serialy
  191. Pingback: site
  192. Pingback: ativan 2mg buy online india
  193. Pingback: how long does cialis keep you hard
  194. Pingback: top
  195. Pingback: do you need a prescription for cialis in canada
  196. Pingback: pharmacy store in india
  197. Pingback: metcare rx pharmacy
  198. Pingback: does cialis work for women
  199. Pingback: cialis duration
  200. Pingback: viagra drink recipe
  201. Pingback: amoxicillin 125 mg tablet
  202. Pingback: cialis 20 mg from canada
  203. Pingback: nps online pharmacy
  204. Pingback: how much is roman careprost
  205. Pingback: soderzhanki-3-sezon-2021.online
  206. Pingback: chelovek-iz-90-h
  207. Pingback: podolsk-region.ru
  208. Pingback: bender na4alo 2021
  209. Pingback: blogery_i_dorogi
  210. Pingback: blogery_i_dorogi 2 blogery_i_dorogi
  211. Pingback: chernaya vodova
  212. Pingback: 66181
  213. Pingback: Porno
  214. Pingback: vechernyy urgant
  215. Pingback: ukraine
  216. Pingback: A3ixW7AS
  217. Pingback: package insert for hydroxychloroquine
  218. Pingback: gidonline-ok-google
  219. Pingback: link
  220. Pingback: KremlinTeam
  221. Pingback: medunitsa.ru
  222. Pingback: kremlin-team.ru
  223. Pingback: psychophysics.ru
  224. Pingback: yesmail.ru
  225. Pingback: Suicide Squad 2
  226. Pingback: psiholog
  227. Pingback: women viagra pills
  228. Pingback: cost of cialis in canada
  229. Pingback: canada food and drugs regulations
  230. Pingback: hizhnyak-07-08-2021
  231. Pingback: how to take viagra
  232. Pingback: https://regcialist.com
  233. Pingback: viagra online canada
  234. Pingback: pharmacy technicians in canada
  235. Pingback: MKsOrb
  236. Pingback: omeprazole in pregnancy
  237. Pingback: escitalopram renal dosing
  238. Pingback: lipitor and orange juice
  239. Pingback: sertraline hcl 50 mg tablet
  240. Pingback: Duna 2021
  241. Pingback: what do duloxetine pills look like
  242. Pingback: 1
  243. Pingback: ivermectin shampoo for head lice
  244. Pingback: ivermectin for covid 2021 update
  245. Pingback: ivermectin for dogs heartworm
  246. Pingback: ivermectin covid studies
  247. Pingback: ivermectin prescription
  248. Pingback: cleantalkorg2.ru
  249. Pingback: amoxicillin
  250. Pingback: lasix medicine
  251. Pingback: gabapentin cost of
  252. Pingback: plaquenil 200mg
  253. Pingback: prednisone 2.5 tablet
  254. Pingback: super avana tablets
  255. Pingback: how to buy modafinil
  256. Pingback: stromectol drug
  257. Pingback: 16 albuterol
  258. Pingback: zithromax cost
  259. Pingback: lasix 500 mg price
  260. Pingback: plaquenil 200mg
  261. Pingback: prednisone 2 mg
  262. Pingback: ventolin tablets
  263. Pingback: zithromax 200mg
  264. Pingback: aabbx.store
  265. Pingback: ne-smotrite-naverx
  266. Pingback: arrogant
  267. Pingback: Dead-Inside
  268. Pingback: cialis professional legitimate
  269. Pingback: cialis buy on line
  270. Pingback: buy viagra from canada
  271. Pingback: generic viagra coupon
  272. Pingback: viagra instructions
  273. Pingback: cost tizanidine
  274. Pingback: olumiant tablet
  275. Pingback: clomid 2017
  276. Pingback: aralen 400 mg
  277. Pingback: cialis soft tabs online
  278. Pingback: generic lumigan
  279. Pingback: 3rpUI4X
  280. Pingback: uliocx
  281. Pingback: 34tfA26
  282. Pingback: 3J6w3bD
  283. Pingback: 3GrvxDp
  284. Pingback: 3rrZhf7
  285. Pingback: 3L1poB8
  286. Pingback: my-vse-mertvy-2022
  287. Pingback: Russia launches Ukraine
  288. Pingback: z.globus-kino.ru
  289. Pingback: yutub
  290. Pingback: smotretonlaynfilmyiserialy.ru
  291. Pingback: mazhor4sezon
  292. Pingback: filmfilmfilmes
  293. Pingback: gRh9UPV
  294. Pingback: 9-05-2022
  295. Pingback: TopGun2022
  296. Pingback: Xvideos
  297. Pingback: XVIDEOSCOM Videos
  298. Pingback: ivanesva
  299. Pingback: Netflix
  300. Pingback: Zvezdy-v-Afrike-2-sezon-14-seriya
  301. Pingback: Krylya-nad-Berlinom
  302. Pingback: FILM
  303. Pingback: designchita.ru
  304. Pingback: YA-krasneyu
  305. Pingback: design-human.ru
  306. Pingback: designmsu.ru
  307. Pingback: vkl-design.ru
  308. Pingback: irida-design.ru
  309. Pingback: Intimsiti-v-obhod-blokirovok
  310. Pingback: moskva psiholog online
  311. Pingback: psy online
  312. Pingback: do-posle-psihologa
  313. Pingback: uels ukrain
  314. Pingback: DPTPtNqS
  315. Pingback: qQ8KZZE6
  316. Pingback: D6tuzANh
  317. Pingback: SHKALA TONOV
  318. Pingback: Øêàëà òîíîâ
  319. Pingback: russianmanagement.com
  320. Pingback: 3Hk12Bl
  321. Pingback: 3NOZC44
  322. Pingback: 01211
  323. Pingback: tor-lyubov-i-grom
  324. Pingback: film-tor-2022
  325. Pingback: hd-tor-2022
  326. Pingback: hdorg2.ru
  327. Pingback: Psikholog
  328. Pingback: netstate.ru
  329. Pingback: tor-lyubov-i-grom.ru
  330. Pingback: chelovek soznaniye mozg
  331. Pingback: bit.ly
  332. Pingback: bucha killings
  333. Pingback: War in Ukraine
  334. Pingback: Ukraine news – live
  335. Pingback: The Latest Ukraine News
  336. Pingback: stats
  337. Pingback: Ukraine-war
  338. Pingback: movies
  339. Pingback: gidonline
  340. Pingback: mir dikogo zapada 4 sezon 4 seriya
  341. Pingback: web
  342. Pingback: film.8filmov.ru
  343. Pingback: Anonymous
  344. Pingback: liusia-8-seriiaonlain
  345. Pingback: smotret-polnyj-film-smotret-v-khoroshem-kachestve
  346. Pingback: filmgoda.ru
  347. Pingback: rodnoe-kino-ru
  348. Pingback: stat.netstate.ru
  349. Pingback: sY5am
  350. Pingback: Dom drakona
  351. Pingback: JGXldbkj
  352. Pingback: aOuSjapt
  353. Pingback: ìûøëåíèå
  354. Pingback: psikholog moskva
  355. Pingback: Usik Dzhoshua 2 2022
  356. Pingback: Dim Drakona 2022
  357. Pingback: TwnE4zl6
  358. Pingback: psy 3CtwvjS
  359. Pingback: lalochesia
  360. Pingback: film onlinee
  361. Pingback: programma peredach na segodnya
  362. Pingback: psycholog-v-moskve.ru
  363. Pingback: psycholog-moskva.ru
  364. Pingback: 3qAIwwN
  365. Pingback: video-2
  366. Pingback: sezons.store
  367. Pingback: socionika-eniostyle.ru
  368. Pingback: psy-news.ru
  369. Pingback: 000-1
  370. Pingback: 3SoTS32
  371. Pingback: 3DGofO7
  372. Pingback: wwwi.odnoklassniki-film.ru
  373. Pingback: rftrip.ru
  374. Pingback: dolpsy.ru
  375. Pingback: kin0shki.ru
  376. Pingback: 3o9cpydyue4s8.ru
  377. Pingback: mb588.ru
  378. Pingback: history-of-ukraine.ru news ukraine
  379. Pingback: newsukraine.ru
  380. Pingback: edu-design.ru
  381. Pingback: tftl.ru
  382. Pingback: brutv
  383. Pingback: site 2023
  384. Pingback: sitestats01
  385. Pingback: 1c789.ru
  386. Pingback: cttdu.ru
  387. Pingback: 1703
  388. Pingback: hdserial2023.ru
  389. Pingback: serialhd2023.ru
  390. Pingback: matchonline2022.ru
  391. Pingback: bit.ly/3OEzOZR
  392. Pingback: bit.ly/3gGFqGq
  393. Pingback: bit.ly/3ARFdXA
  394. Pingback: bit.ly/3ig2UT5
  395. Pingback: bit.ly/3GQNK0J
  396. Pingback: bep5w0Df
  397. Pingback: www
  398. Pingback: icf
  399. Pingback: 24hours-news
  400. Pingback: rusnewsweek
  401. Pingback: uluro-ado
  402. Pingback: irannews.ru
  403. Pingback: klondayk2022
  404. Pingback: tqmFEB3B
  405. Pingback: 2022-film
  406. Pingback: mangalib
  407. Pingback: x
  408. Pingback: 9xflix
  409. Pingback: xnxx
  410. Pingback: 123movies
  411. Pingback: xxx

Leave a Reply Cancel reply

You must be logged in to post a comment.

Recent Posts

  • Reclaimed oak table
  • Pure bedside table
  • Blocks
  • Coffee Table
  • Pure bed

Recent Comments

  • canadian pharmacy viagra on Internal
  • haikudeck.compresentationscheapprescriptiondrugs on Internal
  • order zithromax without prescription on Step-by-step setup for the SGT working environment
  • discount canadian pharmacies on Internal
  • canadian drug on Internal

Archives

  • October 2014
  • September 2014
  • August 2014
  • June 2014
  • May 2014
  • January 2014
  • November 2013
  • January 2013
  • December 2012

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

David Münch

Copyright 2023


I am one theme by SKTThemes.