├── .editorconfig ├── .gitattributes ├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .php_cs ├── .psh.yaml.dist ├── .scrutinizer.yml ├── .scss_lint.yml ├── .stylelintrc.json ├── .travis.yml ├── ChangeLog-3.1.md ├── LICENSE.md ├── README.md ├── Vagrantfile ├── bin ├── clear-webcache.php ├── dbsv-update.php ├── dbupdate.php ├── okapi-update.php ├── php-cs-fixer ├── provision.sh ├── upload-crowdin.php └── upload-crowdin.sh ├── codecov.yml ├── dev-ops ├── docker │ ├── actions │ │ ├── .init-database.sh │ │ ├── .init-user-data.sh │ │ ├── composer.sh │ │ ├── import-demo-data.sh │ │ ├── init-symfony-frontend.sh │ │ ├── init.sh │ │ ├── sf-migrations.sh │ │ ├── ssh.sh │ │ ├── start-clean.sh │ │ ├── start.sh │ │ ├── stop.sh │ │ ├── unit-fast.sh │ │ └── unit.sh │ └── templates │ │ ├── .env.local │ │ ├── parameters.yml.tpl │ │ └── swiftmailer.yaml.tpl ├── local.team-opencaching.de │ ├── OkapiHelper.php │ ├── actions │ │ ├── .git-checkout.sh │ │ ├── .init-database.sh │ │ ├── composer.sh │ │ ├── db-update.sh │ │ ├── import-demo-data.sh │ │ ├── import-sql-static.sh │ │ ├── import-stored-proc.sh │ │ ├── import-translations.sh │ │ ├── init.sh │ │ ├── okapi-update.sh │ │ ├── sf-migrations.sh │ │ ├── unit-fast.sh │ │ ├── unit.sh │ │ └── update-okapi-package.sh │ └── templates │ │ ├── config2-settings.inc.tpl.php │ │ ├── lib-settings.inc.tpl.php │ │ └── parameters.yml.tpl ├── test.opencaching.de │ └── actions │ │ ├── .check-git-status.sh │ │ ├── .getlocal.sh │ │ ├── .git-checkout.sh │ │ ├── activate-maintenance.sh │ │ ├── deactivate-maintenance.sh │ │ ├── git-status.sh │ │ ├── reset.sh │ │ ├── update-quick.sh │ │ └── update.sh ├── travis-ci │ └── actions │ │ ├── ci.sh │ │ ├── code-style.sh │ │ ├── composer.sh │ │ ├── init.sh │ │ └── unit.sh └── www.opencaching.de │ └── actions │ ├── .check-git-status.sh │ ├── .git-checkout.sh │ ├── activate-maintenance.sh │ ├── deactivate-maintenance.sh │ ├── git-status.sh │ ├── reset.sh │ ├── update-quick.sh │ └── update.sh ├── doc ├── GPL.txt ├── browser-stack.png ├── cookies.txt ├── customized-libs.txt ├── directories.txt ├── edit-permissions.txt ├── install.html ├── replication.txt ├── sentry.png └── settings.txt ├── docker-compose.override.yml ├── docker-compose.yml ├── docker ├── httpd │ ├── Dockerfile │ └── vhost.conf ├── mariadb │ ├── Dockerfile │ └── mariadb.cnf └── php-fpm │ └── php-ini-overrides.ini ├── htdocs ├── 404.php ├── a.php ├── activation.php ├── addtolist.php ├── adminhistory.php ├── adminreports.php ├── admins.php ├── adminuser.php ├── adoptcache.php ├── api │ └── ping.php ├── app │ ├── .htaccess │ ├── AppCache.php │ ├── AppKernel.php │ ├── Migrations │ │ ├── Version20160607213541.php │ │ ├── Version20170221215409.php │ │ ├── Version20170510222222.php │ │ ├── Version20170516084212.php │ │ ├── Version20170526212910.php │ │ ├── Version20170830005500.php │ │ ├── Version20171007113730.php │ │ ├── Version20171007113841.php │ │ ├── Version20190211224434.php │ │ ├── Version201912003190000.php │ │ ├── Version202006011578325.php │ │ └── Version20200616183000.php │ ├── Resources │ │ ├── translations │ │ │ ├── constants.en.yml │ │ │ ├── messages.en.yml │ │ │ └── validators.en.yml │ │ └── views │ │ │ └── import │ │ │ └── logs │ │ │ └── index.html.twig │ ├── autoload.php │ └── config │ │ ├── config.yml │ │ ├── config_dev.yml │ │ ├── config_prod.yml │ │ ├── config_test.yml │ │ ├── parameters.yml.dist │ │ ├── routing.yml │ │ ├── routing_dev.yml │ │ ├── security.yml │ │ └── services.xml ├── apple-touch-icon.png ├── articles.php ├── bin │ ├── .htaccess │ └── console ├── cachelist.php ├── cachelists.php ├── change_statpic.php ├── childwp.php ├── composer.json ├── composer.lock ├── config2 │ ├── .htaccess │ ├── index.html │ ├── locale.inc.php │ ├── nodetext │ │ ├── 1.txt │ │ ├── 7-no.txt │ │ ├── 7.txt │ │ └── README │ ├── settings-dev.inc.php │ ├── settings-dist-common.inc.php │ ├── settings-dist.inc.php │ ├── settings-sample-dev.inc.php │ ├── settings-sample.inc.php │ └── verify-settings.inc.php ├── coordinates.php ├── crowdin.yaml ├── dbmaintain.php ├── doc │ ├── index.html │ ├── license.txt │ └── xml │ │ ├── index.php │ │ └── xml11.htm ├── download │ ├── index.html │ └── zip │ │ ├── index.html │ │ └── ocxml11 │ │ └── index.html ├── editcache.php ├── editdesc.php ├── editlog.php ├── event_attendance.php ├── favicon.ico ├── html │ ├── error.php │ └── index.html ├── ignore.php ├── imagebrowser.php ├── images │ ├── amnesius_cr_new.gif │ ├── amnesius_gx_fat.gif │ ├── amnesius_gx_fat1.gif │ ├── amnesius_gx_fat2.gif │ ├── cachemaps │ │ ├── index.html │ │ └── na.gif │ ├── coyote_red_oc01.gif │ ├── coyote_red_oc01a.gif │ ├── coyote_red_og1.jpg │ ├── dull_Entwurf2.gif │ ├── dull_Entwurf3.gif │ ├── dull_Entwurf4.gif │ ├── dull_entwurf_sun.gif │ ├── dull_entwurf_sun_klein.gif │ ├── dwj.gif │ ├── favicon.gif │ ├── flag │ │ ├── CZ.png │ │ ├── DE.png │ │ ├── EN.png │ │ ├── ES.png │ │ ├── FR.png │ │ ├── IT.png │ │ ├── JA.png │ │ ├── NL.png │ │ ├── NO.png │ │ ├── PL.png │ │ ├── RU.png │ │ ├── SE.png │ │ └── index.html │ ├── flags │ │ ├── ad.gif │ │ ├── ae.gif │ │ ├── af.gif │ │ ├── ag.gif │ │ ├── ai.gif │ │ ├── al.gif │ │ ├── am.gif │ │ ├── an.gif │ │ ├── ao.gif │ │ ├── ar.gif │ │ ├── as.gif │ │ ├── at.gif │ │ ├── au.gif │ │ ├── aw.gif │ │ ├── ax.gif │ │ ├── az.gif │ │ ├── ba.gif │ │ ├── bb.gif │ │ ├── bd.gif │ │ ├── be.gif │ │ ├── bf.gif │ │ ├── bg.gif │ │ ├── bh.gif │ │ ├── bi.gif │ │ ├── bj.gif │ │ ├── bm.gif │ │ ├── bn.gif │ │ ├── bo.gif │ │ ├── br.gif │ │ ├── bs.gif │ │ ├── bt.gif │ │ ├── bv.gif │ │ ├── bw.gif │ │ ├── by.gif │ │ ├── bz.gif │ │ ├── ca.gif │ │ ├── catalonia.gif │ │ ├── cc.gif │ │ ├── cd.gif │ │ ├── cf.gif │ │ ├── cg.gif │ │ ├── ch.gif │ │ ├── ci.gif │ │ ├── ck.gif │ │ ├── cl.gif │ │ ├── cm.gif │ │ ├── cn.gif │ │ ├── co.gif │ │ ├── cr.gif │ │ ├── cs.gif │ │ ├── cu.gif │ │ ├── cv.gif │ │ ├── cx.gif │ │ ├── cy.gif │ │ ├── cz.gif │ │ ├── de.gif │ │ ├── dj.gif │ │ ├── dk.gif │ │ ├── dm.gif │ │ ├── do.gif │ │ ├── dz.gif │ │ ├── ec.gif │ │ ├── ee.gif │ │ ├── eg.gif │ │ ├── eh.gif │ │ ├── en.gif │ │ ├── england.gif │ │ ├── er.gif │ │ ├── es.gif │ │ ├── et.gif │ │ ├── europeanunion.gif │ │ ├── fam.gif │ │ ├── fi.gif │ │ ├── fj.gif │ │ ├── fk.gif │ │ ├── fm.gif │ │ ├── fo.gif │ │ ├── fr.gif │ │ ├── ga.gif │ │ ├── gb.gif │ │ ├── gd.gif │ │ ├── ge.gif │ │ ├── gf.gif │ │ ├── gh.gif │ │ ├── gi.gif │ │ ├── gl.gif │ │ ├── gm.gif │ │ ├── gn.gif │ │ ├── gp.gif │ │ ├── gq.gif │ │ ├── gr.gif │ │ ├── gs.gif │ │ ├── gt.gif │ │ ├── gu.gif │ │ ├── gw.gif │ │ ├── gy.gif │ │ ├── hk.gif │ │ ├── hm.gif │ │ ├── hn.gif │ │ ├── hr.gif │ │ ├── ht.gif │ │ ├── hu.gif │ │ ├── id.gif │ │ ├── ie.gif │ │ ├── il.gif │ │ ├── in.gif │ │ ├── index.html │ │ ├── io.gif │ │ ├── iq.gif │ │ ├── ir.gif │ │ ├── is.gif │ │ ├── it.gif │ │ ├── jm.gif │ │ ├── jo.gif │ │ ├── jp.gif │ │ ├── ke.gif │ │ ├── kg.gif │ │ ├── kh.gif │ │ ├── ki.gif │ │ ├── km.gif │ │ ├── kn.gif │ │ ├── kp.gif │ │ ├── kr.gif │ │ ├── kw.gif │ │ ├── ky.gif │ │ ├── kz.gif │ │ ├── la.gif │ │ ├── lb.gif │ │ ├── lc.gif │ │ ├── li.gif │ │ ├── lk.gif │ │ ├── lr.gif │ │ ├── ls.gif │ │ ├── lt.gif │ │ ├── lu.gif │ │ ├── lv.gif │ │ ├── ly.gif │ │ ├── ma.gif │ │ ├── mc.gif │ │ ├── md.gif │ │ ├── me.gif │ │ ├── mg.gif │ │ ├── mh.gif │ │ ├── mk.gif │ │ ├── ml.gif │ │ ├── mm.gif │ │ ├── mn.gif │ │ ├── mo.gif │ │ ├── mp.gif │ │ ├── mq.gif │ │ ├── mr.gif │ │ ├── ms.gif │ │ ├── mt.gif │ │ ├── mu.gif │ │ ├── mv.gif │ │ ├── mw.gif │ │ ├── mx.gif │ │ ├── my.gif │ │ ├── mz.gif │ │ ├── na.gif │ │ ├── nc.gif │ │ ├── ne.gif │ │ ├── nf.gif │ │ ├── ng.gif │ │ ├── ni.gif │ │ ├── nl.gif │ │ ├── no.gif │ │ ├── np.gif │ │ ├── nr.gif │ │ ├── nu.gif │ │ ├── nz.gif │ │ ├── om.gif │ │ ├── pa.gif │ │ ├── pe.gif │ │ ├── pf.gif │ │ ├── pg.gif │ │ ├── ph.gif │ │ ├── pk.gif │ │ ├── pl.gif │ │ ├── pm.gif │ │ ├── pn.gif │ │ ├── pr.gif │ │ ├── ps.gif │ │ ├── pt.gif │ │ ├── pw.gif │ │ ├── py.gif │ │ ├── qa.gif │ │ ├── re.gif │ │ ├── ro.gif │ │ ├── rs.gif │ │ ├── ru.gif │ │ ├── rw.gif │ │ ├── sa.gif │ │ ├── sb.gif │ │ ├── sc.gif │ │ ├── scotland.gif │ │ ├── sd.gif │ │ ├── se.gif │ │ ├── sg.gif │ │ ├── sh.gif │ │ ├── si.gif │ │ ├── sj.gif │ │ ├── sk.gif │ │ ├── sl.gif │ │ ├── sm.gif │ │ ├── sn.gif │ │ ├── so.gif │ │ ├── sr.gif │ │ ├── st.gif │ │ ├── sv.gif │ │ ├── sy.gif │ │ ├── sz.gif │ │ ├── tc.gif │ │ ├── td.gif │ │ ├── tf.gif │ │ ├── tg.gif │ │ ├── th.gif │ │ ├── tj.gif │ │ ├── tk.gif │ │ ├── tl.gif │ │ ├── tm.gif │ │ ├── tn.gif │ │ ├── to.gif │ │ ├── tr.gif │ │ ├── tt.gif │ │ ├── tv.gif │ │ ├── tw.gif │ │ ├── tz.gif │ │ ├── ua.gif │ │ ├── ug.gif │ │ ├── um.gif │ │ ├── us.gif │ │ ├── uy.gif │ │ ├── uz.gif │ │ ├── va.gif │ │ ├── vc.gif │ │ ├── ve.gif │ │ ├── vg.gif │ │ ├── vi.gif │ │ ├── vn.gif │ │ ├── vu.gif │ │ ├── wales.gif │ │ ├── wf.gif │ │ ├── ws.gif │ │ ├── ye.gif │ │ ├── yt.gif │ │ ├── za.gif │ │ ├── zm.gif │ │ └── zw.gif │ ├── garmin.png │ ├── geologo.png │ ├── icons │ │ ├── icon_smile.gif │ │ ├── icon_smile_8ball.gif │ │ ├── icon_smile_angry.gif │ │ ├── icon_smile_approve.gif │ │ ├── icon_smile_big.gif │ │ ├── icon_smile_blackeye.gif │ │ ├── icon_smile_blush.gif │ │ ├── icon_smile_clown.gif │ │ ├── icon_smile_cool.gif │ │ ├── icon_smile_dead.gif │ │ ├── icon_smile_disapprove.gif │ │ ├── icon_smile_dissapprove.gif │ │ ├── icon_smile_evil.gif │ │ ├── icon_smile_kisses.gif │ │ ├── icon_smile_question.gif │ │ ├── icon_smile_sad.gif │ │ ├── icon_smile_shock.gif │ │ ├── icon_smile_shy.gif │ │ ├── icon_smile_sleepy.gif │ │ ├── icon_smile_tongue.gif │ │ ├── icon_smile_wink.gif │ │ └── smilies.txt │ ├── index.htm │ ├── index.html │ ├── logo_new_small.gif │ ├── newlogo-license.txt │ ├── newlogo.png │ ├── nici_O_Gx.gif │ ├── no_image_license.png │ ├── npa.gif │ ├── nuts-3.gif │ ├── ocstats1.gif │ ├── ocstats1_prev.jpg │ ├── ocstats2.gif │ ├── ocstats2_prev.jpg │ ├── ocstats3.gif │ ├── ocstats3_prev.jpg │ ├── ocstats4.gif │ ├── ocstats4_prev.jpg │ ├── ocstats4a_prev.jpg │ ├── ocstats5.gif │ ├── ocstats5_prev.jpg │ ├── ocstats5a_prev.jpg │ ├── ocstats6.gif │ ├── ocstats6_prev.jpg │ ├── ocstats7-8_license.txt │ ├── ocstats7.gif │ ├── ocstats7_prev.jpg │ ├── ocstats8.gif │ ├── ocstats8_prev.jpg │ ├── ocstats8a_prev.jpg │ ├── ok.gif │ ├── rating-plus.gif │ ├── rating-star-shadow.png │ ├── rating-star.gif │ ├── redcross.gif │ ├── statpics │ │ └── index.html │ ├── tops-formula.png │ ├── trans.gif │ ├── ueber.jpg │ ├── ueber_oc.jpg │ └── uploads │ │ ├── 157995B3-404C-11EB-96DF-0242AC120002.jpg │ │ ├── 32BE89C5-3FE0-11EB-96DF-0242AC120002.png │ │ ├── EF2CFA7A-3FDF-11EB-96DF-0242AC120002.jpg │ │ ├── deleted │ │ └── .htaccess │ │ ├── htaccess-image-redirect │ │ ├── index.htm │ │ ├── index.html │ │ └── thumbs │ │ └── index.html ├── index.php ├── lang │ ├── .htaccess │ ├── de │ │ ├── expressions.inc.php │ │ ├── index.html │ │ ├── ocstyle │ │ │ ├── editcache.inc.php │ │ │ ├── editcache.tpl.php │ │ │ ├── editdesc.inc.php │ │ │ ├── editdesc.tpl.php │ │ │ ├── email │ │ │ │ ├── de │ │ │ │ │ ├── notify_newcache.email │ │ │ │ │ ├── notify_newoconly.email │ │ │ │ │ ├── removed_log.email │ │ │ │ │ └── watchlist.email │ │ │ │ ├── en │ │ │ │ │ ├── notify_newcache.email │ │ │ │ │ ├── notify_newoconly.email │ │ │ │ │ ├── removed_log.email │ │ │ │ │ └── watchlist.email │ │ │ │ ├── fr │ │ │ │ │ ├── notify_newcache.email │ │ │ │ │ ├── notify_newoconly.email │ │ │ │ │ ├── removed_log.email │ │ │ │ │ └── watchlist.email │ │ │ │ ├── index.html │ │ │ │ └── it │ │ │ │ │ ├── notify_newcache.email │ │ │ │ │ ├── notify_newoconly.email │ │ │ │ │ ├── removed_log.email │ │ │ │ │ └── watchlist.email │ │ │ ├── error.tpl.php │ │ │ ├── images │ │ │ │ ├── .htaccess │ │ │ │ ├── README │ │ │ │ ├── action │ │ │ │ │ ├── 16x16-adddesc.png │ │ │ │ │ ├── 16x16-addimage.png │ │ │ │ │ ├── 16x16-addpodcast.png │ │ │ │ │ ├── 16x16-encrypt.png │ │ │ │ │ ├── 16x16-ignore.png │ │ │ │ │ ├── 16x16-ignorenot.png │ │ │ │ │ ├── 16x16-imagetext.png │ │ │ │ │ ├── 16x16-log.png │ │ │ │ │ ├── 16x16-print.png │ │ │ │ │ ├── 16x16-properties.png │ │ │ │ │ ├── 16x16-showall.png │ │ │ │ │ ├── 16x16-watch.png │ │ │ │ │ ├── 16x16-watchnot.png │ │ │ │ │ └── index.html │ │ │ │ ├── cache │ │ │ │ │ ├── 16x16-drivein.gif │ │ │ │ │ ├── 16x16-event.gif │ │ │ │ │ ├── 16x16-mathe.gif │ │ │ │ │ ├── 16x16-moving.gif │ │ │ │ │ ├── 16x16-multi.gif │ │ │ │ │ ├── 16x16-mystery.gif │ │ │ │ │ ├── 16x16-traditional.gif │ │ │ │ │ ├── 16x16-unknown.gif │ │ │ │ │ ├── 16x16-virtual.gif │ │ │ │ │ ├── 16x16-webcam.gif │ │ │ │ │ ├── 22x22-traditional.gif │ │ │ │ │ ├── challenge-a-dnf.png │ │ │ │ │ ├── challenge-a-found.png │ │ │ │ │ ├── challenge-a-owner.png │ │ │ │ │ ├── challenge-a.png │ │ │ │ │ ├── challenge-d-dnf.png │ │ │ │ │ ├── challenge-d-found.png │ │ │ │ │ ├── challenge-d-owner.png │ │ │ │ │ ├── challenge-d.png │ │ │ │ │ ├── challenge-i-bw.png │ │ │ │ │ ├── challenge-i.png │ │ │ │ │ ├── challenge-n-dnf.png │ │ │ │ │ ├── challenge-n-found.png │ │ │ │ │ ├── challenge-n-owner.png │ │ │ │ │ ├── challenge-n.png │ │ │ │ │ ├── challenge-s-dnf.png │ │ │ │ │ ├── challenge-s-found.png │ │ │ │ │ ├── challenge-s-owner.png │ │ │ │ │ ├── challenge-s.png │ │ │ │ │ ├── challenge.png │ │ │ │ │ ├── drivein-a-dnf.gif │ │ │ │ │ ├── drivein-a-found.gif │ │ │ │ │ ├── drivein-a-owner.gif │ │ │ │ │ ├── drivein-a.gif │ │ │ │ │ ├── drivein-n-dnf.gif │ │ │ │ │ ├── drivein-n-found.gif │ │ │ │ │ ├── drivein-n-owner.gif │ │ │ │ │ ├── drivein-n.gif │ │ │ │ │ ├── drivein-s-dnf.gif │ │ │ │ │ ├── drivein-s-found.gif │ │ │ │ │ ├── drivein-s-owner.gif │ │ │ │ │ ├── drivein-s.gif │ │ │ │ │ ├── drivein.gif │ │ │ │ │ ├── edu-a-dnf.png │ │ │ │ │ ├── edu-a-found.png │ │ │ │ │ ├── edu-a-owner.png │ │ │ │ │ ├── edu-a.png │ │ │ │ │ ├── edu-d-dnf.png │ │ │ │ │ ├── edu-d-found.png │ │ │ │ │ ├── edu-d-owner.png │ │ │ │ │ ├── edu-d.png │ │ │ │ │ ├── edu-i-bw.png │ │ │ │ │ ├── edu-i.png │ │ │ │ │ ├── edu-n-dnf.png │ │ │ │ │ ├── edu-n-found.png │ │ │ │ │ ├── edu-n-owner.png │ │ │ │ │ ├── edu-n.png │ │ │ │ │ ├── edu-s-dnf.png │ │ │ │ │ ├── edu-s-found.png │ │ │ │ │ ├── edu-s-owner.png │ │ │ │ │ ├── edu-s.png │ │ │ │ │ ├── edu.png │ │ │ │ │ ├── event-a-dnf.gif │ │ │ │ │ ├── event-a-found.gif │ │ │ │ │ ├── event-a-owner.gif │ │ │ │ │ ├── event-a.gif │ │ │ │ │ ├── event-n-dnf.gif │ │ │ │ │ ├── event-n-found.gif │ │ │ │ │ ├── event-n-owner.gif │ │ │ │ │ ├── event-n.gif │ │ │ │ │ ├── event-rand1.gif │ │ │ │ │ ├── event-rand2.gif │ │ │ │ │ ├── event-rand3.gif │ │ │ │ │ ├── event-rand4.gif │ │ │ │ │ ├── event-s-dnf.gif │ │ │ │ │ ├── event-s-found.gif │ │ │ │ │ ├── event-s-owner.gif │ │ │ │ │ ├── event-s.gif │ │ │ │ │ ├── event.gif │ │ │ │ │ ├── guestbook-a-dnf.png │ │ │ │ │ ├── guestbook-a-found.png │ │ │ │ │ ├── guestbook-a-owner.png │ │ │ │ │ ├── guestbook-a.png │ │ │ │ │ ├── guestbook-d-dnf.png │ │ │ │ │ ├── guestbook-d-found.png │ │ │ │ │ ├── guestbook-d-owner.png │ │ │ │ │ ├── guestbook-d.png │ │ │ │ │ ├── guestbook-i-bw.png │ │ │ │ │ ├── guestbook-i.png │ │ │ │ │ ├── guestbook-n-dnf.png │ │ │ │ │ ├── guestbook-n-found.png │ │ │ │ │ ├── guestbook-n-owner.png │ │ │ │ │ ├── guestbook-n.png │ │ │ │ │ ├── guestbook-s-dnf.png │ │ │ │ │ ├── guestbook-s-found.png │ │ │ │ │ ├── guestbook-s-owner.png │ │ │ │ │ ├── guestbook-s.png │ │ │ │ │ ├── guestbook.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── mathe-a-dnf.gif │ │ │ │ │ ├── mathe-a-found.gif │ │ │ │ │ ├── mathe-a-owner.gif │ │ │ │ │ ├── mathe-a.gif │ │ │ │ │ ├── mathe-n-dnf.gif │ │ │ │ │ ├── mathe-n-found.gif │ │ │ │ │ ├── mathe-n-owner.gif │ │ │ │ │ ├── mathe-n.gif │ │ │ │ │ ├── mathe-s-dnf.gif │ │ │ │ │ ├── mathe-s-found.gif │ │ │ │ │ ├── mathe-s-owner.gif │ │ │ │ │ ├── mathe-s.gif │ │ │ │ │ ├── mathe.gif │ │ │ │ │ ├── mocache.gif │ │ │ │ │ ├── moving-a-dnf.gif │ │ │ │ │ ├── moving-a-found.gif │ │ │ │ │ ├── moving-a-owner.gif │ │ │ │ │ ├── moving-a.gif │ │ │ │ │ ├── moving-n-dnf.gif │ │ │ │ │ ├── moving-n-found.gif │ │ │ │ │ ├── moving-n-owner.gif │ │ │ │ │ ├── moving-n.gif │ │ │ │ │ ├── moving-s-dnf.gif │ │ │ │ │ ├── moving-s-found.gif │ │ │ │ │ ├── moving-s-owner.gif │ │ │ │ │ ├── moving-s.gif │ │ │ │ │ ├── moving.gif │ │ │ │ │ ├── multi-a-dnf.gif │ │ │ │ │ ├── multi-a-found.gif │ │ │ │ │ ├── multi-a-owner.gif │ │ │ │ │ ├── multi-a.gif │ │ │ │ │ ├── multi-n-dnf.gif │ │ │ │ │ ├── multi-n-found.gif │ │ │ │ │ ├── multi-n-owner.gif │ │ │ │ │ ├── multi-n.gif │ │ │ │ │ ├── multi-s-dnf.gif │ │ │ │ │ ├── multi-s-found.gif │ │ │ │ │ ├── multi-s-owner.gif │ │ │ │ │ ├── multi-s.gif │ │ │ │ │ ├── multi.gif │ │ │ │ │ ├── mystery-a-dnf.gif │ │ │ │ │ ├── mystery-a-found.gif │ │ │ │ │ ├── mystery-a-owner.gif │ │ │ │ │ ├── mystery-a.gif │ │ │ │ │ ├── mystery-n-dnf.gif │ │ │ │ │ ├── mystery-n-found.gif │ │ │ │ │ ├── mystery-n-owner.gif │ │ │ │ │ ├── mystery-n.gif │ │ │ │ │ ├── mystery-s-dnf.gif │ │ │ │ │ ├── mystery-s-found.gif │ │ │ │ │ ├── mystery-s-owner.gif │ │ │ │ │ ├── mystery-s.gif │ │ │ │ │ ├── mystery.gif │ │ │ │ │ ├── newevent.gif │ │ │ │ │ ├── podcache-a-dnf.png │ │ │ │ │ ├── podcache-a-found.png │ │ │ │ │ ├── podcache-a-owner.png │ │ │ │ │ ├── podcache-a.png │ │ │ │ │ ├── podcache-d-dnf.png │ │ │ │ │ ├── podcache-d-found.png │ │ │ │ │ ├── podcache-d-owner.png │ │ │ │ │ ├── podcache-d.png │ │ │ │ │ ├── podcache-i-bw.png │ │ │ │ │ ├── podcache-i.png │ │ │ │ │ ├── podcache-n-dnf.png │ │ │ │ │ ├── podcache-n-found.png │ │ │ │ │ ├── podcache-n-owner.png │ │ │ │ │ ├── podcache-n.png │ │ │ │ │ ├── podcache-s-dnf.png │ │ │ │ │ ├── podcache-s-found.png │ │ │ │ │ ├── podcache-s-owner.png │ │ │ │ │ ├── podcache-s.png │ │ │ │ │ ├── podcache.png │ │ │ │ │ ├── traditional-a-dnf.gif │ │ │ │ │ ├── traditional-a-found.gif │ │ │ │ │ ├── traditional-a-owner.gif │ │ │ │ │ ├── traditional-a.gif │ │ │ │ │ ├── traditional-n-dnf.gif │ │ │ │ │ ├── traditional-n-found.gif │ │ │ │ │ ├── traditional-n-owner.gif │ │ │ │ │ ├── traditional-n.gif │ │ │ │ │ ├── traditional-s-dnf.gif │ │ │ │ │ ├── traditional-s-found.gif │ │ │ │ │ ├── traditional-s-owner.gif │ │ │ │ │ ├── traditional-s.gif │ │ │ │ │ ├── traditional.gif │ │ │ │ │ ├── unknown-a-dnf.gif │ │ │ │ │ ├── unknown-a-found.gif │ │ │ │ │ ├── unknown-a-owner.gif │ │ │ │ │ ├── unknown-a.gif │ │ │ │ │ ├── unknown-n-dnf.gif │ │ │ │ │ ├── unknown-n-found.gif │ │ │ │ │ ├── unknown-n-owner.gif │ │ │ │ │ ├── unknown-n.gif │ │ │ │ │ ├── unknown-s-dnf.gif │ │ │ │ │ ├── unknown-s-found.gif │ │ │ │ │ ├── unknown-s-owner.gif │ │ │ │ │ ├── unknown-s.gif │ │ │ │ │ ├── unknown.gif │ │ │ │ │ ├── virtual-a-dnf.gif │ │ │ │ │ ├── virtual-a-found.gif │ │ │ │ │ ├── virtual-a-owner.gif │ │ │ │ │ ├── virtual-a.gif │ │ │ │ │ ├── virtual-n-dnf.gif │ │ │ │ │ ├── virtual-n-found.gif │ │ │ │ │ ├── virtual-n-owner.gif │ │ │ │ │ ├── virtual-n.gif │ │ │ │ │ ├── virtual-s-dnf.gif │ │ │ │ │ ├── virtual-s-found.gif │ │ │ │ │ ├── virtual-s-owner.gif │ │ │ │ │ ├── virtual-s.gif │ │ │ │ │ ├── virtual.gif │ │ │ │ │ ├── webcam-a-dnf.gif │ │ │ │ │ ├── webcam-a-found.gif │ │ │ │ │ ├── webcam-a-owner.gif │ │ │ │ │ ├── webcam-a.gif │ │ │ │ │ ├── webcam-n-dnf.gif │ │ │ │ │ ├── webcam-n-found.gif │ │ │ │ │ ├── webcam-n-owner.gif │ │ │ │ │ ├── webcam-n.gif │ │ │ │ │ ├── webcam-s-dnf.gif │ │ │ │ │ ├── webcam-s-found.gif │ │ │ │ │ ├── webcam-s-owner.gif │ │ │ │ │ ├── webcam-s.gif │ │ │ │ │ └── webcam.gif │ │ │ │ ├── description │ │ │ │ │ ├── 16x16-visitors.png │ │ │ │ │ ├── 22x22-decrypted.png │ │ │ │ │ ├── 22x22-description.png │ │ │ │ │ ├── 22x22-encrypted.png │ │ │ │ │ ├── 22x22-geokret.gif │ │ │ │ │ ├── 22x22-image.png │ │ │ │ │ ├── 22x22-location.png │ │ │ │ │ ├── 22x22-logs.png │ │ │ │ │ ├── 22x22-misc.png │ │ │ │ │ ├── 22x22-utility.png │ │ │ │ │ ├── 32x32-profile.png │ │ │ │ │ ├── index.html │ │ │ │ │ └── podcache-mp3.png │ │ │ │ ├── difficulty │ │ │ │ │ ├── diff-10.gif │ │ │ │ │ ├── diff-15.gif │ │ │ │ │ ├── diff-20.gif │ │ │ │ │ ├── diff-25.gif │ │ │ │ │ ├── diff-30.gif │ │ │ │ │ ├── diff-35.gif │ │ │ │ │ ├── diff-40.gif │ │ │ │ │ ├── diff-45.gif │ │ │ │ │ ├── diff-50.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── terr-10.gif │ │ │ │ │ ├── terr-15.gif │ │ │ │ │ ├── terr-20.gif │ │ │ │ │ ├── terr-25.gif │ │ │ │ │ ├── terr-30.gif │ │ │ │ │ ├── terr-35.gif │ │ │ │ │ ├── terr-40.gif │ │ │ │ │ ├── terr-45.gif │ │ │ │ │ └── terr-50.gif │ │ │ │ ├── index.html │ │ │ │ ├── log │ │ │ │ │ ├── 16x16-attended.png │ │ │ │ │ ├── 16x16-dnf.png │ │ │ │ │ ├── 16x16-found.png │ │ │ │ │ ├── 16x16-go.png │ │ │ │ │ ├── 16x16-note.png │ │ │ │ │ ├── 16x16-stop.png │ │ │ │ │ ├── 16x16-trash.png │ │ │ │ │ ├── 16x16-will_attend.png │ │ │ │ │ └── index.html │ │ │ │ ├── misc │ │ │ │ │ ├── 16x16-email.png │ │ │ │ │ ├── 16x16-home.png │ │ │ │ │ ├── 22x22-home.png │ │ │ │ │ ├── 32x32-home.png │ │ │ │ │ ├── 32x32-impressum.png │ │ │ │ │ ├── 32x32-news.png │ │ │ │ │ ├── 32x32-searchresults.png │ │ │ │ │ ├── 32x32-statistic.png │ │ │ │ │ ├── 32x32-statistic2.png │ │ │ │ │ ├── 32x32-tools.png │ │ │ │ │ ├── 32x32-winner.png │ │ │ │ │ ├── 32x32-world.png │ │ │ │ │ ├── hint-link.gif │ │ │ │ │ ├── hint.gif │ │ │ │ │ └── index.html │ │ │ │ ├── profile │ │ │ │ │ ├── 22x22-email.png │ │ │ │ │ ├── 22x22-home.png │ │ │ │ │ ├── 32x32-email.png │ │ │ │ │ ├── 32x32-home.png │ │ │ │ │ ├── 32x32-profile.png │ │ │ │ │ ├── 32x32-security.png │ │ │ │ │ ├── 32x32-statistic.png │ │ │ │ │ ├── 32x32-statistic2.png │ │ │ │ │ └── index.html │ │ │ │ └── rating │ │ │ │ │ ├── index.html │ │ │ │ │ ├── rat-0.gif │ │ │ │ │ ├── rat-1.gif │ │ │ │ │ ├── rat-2.gif │ │ │ │ │ ├── rat-3.gif │ │ │ │ │ ├── rat-4.gif │ │ │ │ │ └── rat-5.gif │ │ │ ├── index.html │ │ │ ├── lib │ │ │ │ ├── icons.inc.php │ │ │ │ ├── index.html │ │ │ │ └── menu.php │ │ │ ├── login.tpl.php │ │ │ ├── main.tpl.php │ │ │ ├── newcache.inc.php │ │ │ ├── newcache.tpl.php │ │ │ ├── newdesc.inc.php │ │ │ ├── newdesc.tpl.php │ │ │ ├── redirect.tpl.php │ │ │ ├── removedesc.inc.php │ │ │ ├── removedesc.tpl.php │ │ │ ├── removelog.inc.php │ │ │ ├── removelog_cacheowner.tpl.php │ │ │ ├── removelog_logowner.tpl.php │ │ │ └── varset.inc.php │ │ └── stdstyle │ │ │ └── images │ │ │ ├── .htaccess │ │ │ ├── README │ │ │ ├── cache │ │ │ ├── README │ │ │ ├── drivein-s.gif │ │ │ ├── drivein.gif │ │ │ ├── event-s.gif │ │ │ ├── event.gif │ │ │ ├── mathe-s.gif │ │ │ ├── mathe.gif │ │ │ ├── moving-s.gif │ │ │ ├── moving.gif │ │ │ ├── multi-s.gif │ │ │ ├── multi.gif │ │ │ ├── mystery-s.gif │ │ │ ├── mystery.gif │ │ │ ├── traditional-s.gif │ │ │ ├── traditional.gif │ │ │ ├── unknown-s.gif │ │ │ ├── unknown.gif │ │ │ ├── virtual-s.gif │ │ │ ├── virtual.gif │ │ │ ├── webcam-s.gif │ │ │ └── webcam.gif │ │ │ ├── description │ │ │ ├── 22x22-description.png │ │ │ └── index.html │ │ │ └── difficulty │ │ │ ├── diff-10.gif │ │ │ ├── diff-15.gif │ │ │ ├── diff-20.gif │ │ │ ├── diff-25.gif │ │ │ ├── diff-30.gif │ │ │ ├── diff-35.gif │ │ │ ├── diff-40.gif │ │ │ ├── diff-45.gif │ │ │ ├── diff-50.gif │ │ │ ├── index.html │ │ │ ├── terr-10.gif │ │ │ ├── terr-15.gif │ │ │ ├── terr-20.gif │ │ │ ├── terr-25.gif │ │ │ ├── terr-30.gif │ │ │ ├── terr-35.gif │ │ │ ├── terr-40.gif │ │ │ ├── terr-45.gif │ │ │ └── terr-50.gif │ └── index.html ├── lib │ ├── .htaccess │ ├── auth.inc.php │ ├── clicompatbase.inc.php │ ├── common.inc.php │ ├── consts-common.inc.php │ ├── consts.inc.php │ ├── index.html │ ├── login.class.php │ ├── settings-dev.inc.php │ ├── settings-dist.inc.php │ └── settings-sample-dev.inc.php ├── lib2 │ ├── .htaccess │ ├── Cronjobs.class.php │ ├── Net │ │ ├── IDNA2.php │ │ └── IDNA2 │ │ │ ├── Exception.php │ │ │ └── Exception │ │ │ └── Nameprep.php │ ├── OcHTMLPurifier.class.php │ ├── OcSmarty.class.php │ ├── RSSParser.class.php │ ├── charset.inc.php │ ├── cli.inc.php │ ├── common.inc.php │ ├── const.inc.php │ ├── db.inc.php │ ├── edithelper.inc.php │ ├── error.inc.php │ ├── errorhandler.inc.php │ ├── imagebmp.inc.php │ ├── index.html │ ├── logic │ │ ├── attribute.class.php │ │ ├── cache.class.php │ │ ├── cacheIcon.class.php │ │ ├── cachedesc.class.php │ │ ├── cachelist.class.php │ │ ├── cachelog.class.php │ │ ├── const.inc.php │ │ ├── coordinate.class.php │ │ ├── countriesList.class.php │ │ ├── cracklib.inc.php │ │ ├── data-license.inc.php │ │ ├── geodb.class.php │ │ ├── geomath.class.php │ │ ├── getNew.class.php │ │ ├── gis.class.php │ │ ├── index.html │ │ ├── labels.inc.php │ │ ├── logpics.class.php │ │ ├── logtypes.inc.php │ │ ├── mailcheck.class.php │ │ ├── npas.inc.php │ │ ├── oconly81.inc.php │ │ ├── picture.class.php │ │ ├── statpic.class.php │ │ ├── user.class.php │ │ └── useroptions.class.php │ ├── login.class.php │ ├── mail.class.php │ ├── menu.class.php │ ├── pager.class.php │ ├── rowEditor.class.php │ ├── search │ │ ├── ftsearch.inc.php │ │ ├── search.gpx.inc.php │ │ ├── search.html.inc.php │ │ ├── search.inc.php │ │ ├── search.kml.inc.php │ │ ├── search.loc.inc.php │ │ ├── search.map2.inc.php │ │ ├── search.ov2.inc.php │ │ ├── search.ovl.inc.php │ │ ├── search.txt.inc.php │ │ └── search.xml.inc.php │ ├── smiley.inc.php │ ├── sqldebugger.class.php │ ├── ss_zip.class.php │ ├── throttle.inc.php │ ├── translate.class.php │ ├── translateAccess.php │ ├── translate_filescan.class.php │ ├── translationHandler.class.php │ ├── util.inc.php │ └── web.inc.php ├── log.php ├── login.php ├── mailto.php ├── maintenance.html ├── map2.php ├── mydetails.php ├── myhome.php ├── myignores.php ├── mylists.php ├── myprofile.php ├── mystatpic.php ├── mytop5.php ├── mywatches.php ├── newcache.php ├── newcaches.php ├── newcachesrest.php ├── newdesc.php ├── newemail.php ├── newlogpics.php ├── newlogs.php ├── newlogsrest.php ├── newpw.php ├── ocmap.php ├── oconly81.php ├── ocstats.php ├── okapi │ ├── .htaccess │ ├── index.php │ └── meta.php ├── okapi_settings.php ├── ownerlogs.php ├── ownlogs.php ├── picture.php ├── query.php ├── recommendations.php ├── register.php ├── remindemail.php ├── removedesc.php ├── removelog.php ├── reportcache.php ├── resource2 │ ├── index.html │ ├── misc │ │ ├── datalicensemail.html │ │ ├── google-earth │ │ │ ├── drivein.png │ │ │ ├── event.png │ │ │ ├── index.html │ │ │ ├── locationless.png │ │ │ ├── math.png │ │ │ ├── moving.png │ │ │ ├── multi.png │ │ │ ├── myst.png │ │ │ ├── search.result.caches.kml.head.xml │ │ │ ├── tradi.png │ │ │ ├── unknown.png │ │ │ ├── virtual.png │ │ │ └── webcam.png │ │ ├── index.html │ │ ├── map │ │ │ ├── CacheMarker.js │ │ │ └── dragzoom_packed.js │ │ ├── mapsource │ │ │ ├── index.html │ │ │ └── opencachingde.wlx │ │ └── mozilla │ │ │ ├── OpencachingDE.png │ │ │ ├── OpencachingDE.src │ │ │ └── README │ ├── ocstyle │ │ ├── css │ │ │ ├── blank.gif │ │ │ ├── iepngfix.htc │ │ │ ├── klaro.css │ │ │ ├── seasons │ │ │ │ ├── background-autumn.jpg │ │ │ │ ├── background-spring.jpg │ │ │ │ ├── background-summer.jpg │ │ │ │ ├── background-winter.jpg │ │ │ │ ├── bg-langstripe-autumn-map.png │ │ │ │ ├── bg-langstripe-autumn.png │ │ │ │ ├── bg-langstripe-spring-map.png │ │ │ │ ├── bg-langstripe-spring.png │ │ │ │ ├── bg-langstripe-summer-map.png │ │ │ │ ├── bg-langstripe-summer.png │ │ │ │ ├── bg-langstripe-winter-map.png │ │ │ │ ├── bg-langstripe-winter.png │ │ │ │ ├── style_autumn.css │ │ │ │ ├── style_langstripe_autumn.css │ │ │ │ ├── style_langstripe_spring.css │ │ │ │ ├── style_langstripe_summer.css │ │ │ │ ├── style_langstripe_winter.css │ │ │ │ ├── style_spring.css │ │ │ │ ├── style_summer.css │ │ │ │ └── style_winter.css │ │ │ ├── shadowAlpha.png │ │ │ ├── style_oc404.css │ │ │ ├── style_print.css │ │ │ ├── style_screen.css │ │ │ └── style_screen_msie.css │ │ ├── fonts │ │ │ └── dejavu │ │ │ │ ├── AUTHORS │ │ │ │ ├── BUGS │ │ │ │ ├── LICENSE │ │ │ │ ├── NEWS │ │ │ │ ├── README │ │ │ │ ├── fontconfig │ │ │ │ ├── 20-unhint-small-dejavu-sans-mono.conf │ │ │ │ ├── 20-unhint-small-dejavu-sans.conf │ │ │ │ ├── 20-unhint-small-dejavu-serif.conf │ │ │ │ ├── 57-dejavu-sans-mono.conf │ │ │ │ ├── 57-dejavu-sans.conf │ │ │ │ └── 57-dejavu-serif.conf │ │ │ │ ├── langcover.txt │ │ │ │ ├── status.txt │ │ │ │ ├── ttf │ │ │ │ ├── DejaVuSans-Bold.ttf │ │ │ │ ├── DejaVuSans-BoldOblique.ttf │ │ │ │ ├── DejaVuSans-ExtraLight.ttf │ │ │ │ ├── DejaVuSans-Oblique.ttf │ │ │ │ ├── DejaVuSans.ttf │ │ │ │ ├── DejaVuSansCondensed-Bold.ttf │ │ │ │ ├── DejaVuSansCondensed-BoldOblique.ttf │ │ │ │ ├── DejaVuSansCondensed-Oblique.ttf │ │ │ │ ├── DejaVuSansCondensed.ttf │ │ │ │ ├── DejaVuSansMono-Bold.ttf │ │ │ │ ├── DejaVuSansMono-BoldOblique.ttf │ │ │ │ ├── DejaVuSansMono-Oblique.ttf │ │ │ │ ├── DejaVuSansMono.ttf │ │ │ │ ├── DejaVuSerif-Bold.ttf │ │ │ │ ├── DejaVuSerif-BoldItalic.ttf │ │ │ │ ├── DejaVuSerif-Italic.ttf │ │ │ │ ├── DejaVuSerif.ttf │ │ │ │ ├── DejaVuSerifCondensed-Bold.ttf │ │ │ │ ├── DejaVuSerifCondensed-BoldItalic.ttf │ │ │ │ ├── DejaVuSerifCondensed-Italic.ttf │ │ │ │ └── DejaVuSerifCondensed.ttf │ │ │ │ └── unicover.txt │ │ ├── images │ │ │ ├── action │ │ │ │ ├── 15x13-logout.png │ │ │ │ ├── 16x16-adddesc.png │ │ │ │ ├── 16x16-addimage.png │ │ │ │ ├── 16x16-delete.png │ │ │ │ ├── 16x16-encrypt.png │ │ │ │ ├── 16x16-find.png │ │ │ │ ├── 16x16-ignore.png │ │ │ │ ├── 16x16-ignorenot.png │ │ │ │ ├── 16x16-imagetext.png │ │ │ │ ├── 16x16-log.png │ │ │ │ ├── 16x16-print.png │ │ │ │ ├── 16x16-properties.png │ │ │ │ ├── 16x16-showall.png │ │ │ │ ├── 16x16-watch.png │ │ │ │ ├── 16x16-watchnot.png │ │ │ │ ├── 18x16-offer.png │ │ │ │ └── index.html │ │ │ ├── attributes │ │ │ │ ├── 4family-allowed.png │ │ │ │ ├── 4family-disabled.png │ │ │ │ ├── 4family-forbidden.png │ │ │ │ ├── 4family-nosearch.png │ │ │ │ ├── 4family-notrecommended.png │ │ │ │ ├── 4family-recommended.png │ │ │ │ ├── aircraft-disabled.png │ │ │ │ ├── aircraft-no.png │ │ │ │ ├── aircraft.png │ │ │ │ ├── animals-disabled.png │ │ │ │ ├── animals-no.png │ │ │ │ ├── animals.png │ │ │ │ ├── arith_prob-disabled.png │ │ │ │ ├── arith_prob-no.png │ │ │ │ ├── arith_prob.png │ │ │ │ ├── ask-disabled.png │ │ │ │ ├── ask-no.png │ │ │ │ ├── ask.png │ │ │ │ ├── available-disabled.png │ │ │ │ ├── available-no.png │ │ │ │ ├── available.png │ │ │ │ ├── bicycles.png │ │ │ │ ├── blind-people-disabled.png │ │ │ │ ├── blind-people-no.png │ │ │ │ ├── blind-people.png │ │ │ │ ├── boat-disabled.png │ │ │ │ ├── boat-no.png │ │ │ │ ├── boat.png │ │ │ │ ├── calendar-disabled.png │ │ │ │ ├── calendar-no.png │ │ │ │ ├── calendar.png │ │ │ │ ├── campfires.png │ │ │ │ ├── camping.png │ │ │ │ ├── car-disabled.png │ │ │ │ ├── car-no.png │ │ │ │ ├── car.png │ │ │ │ ├── cat1_dummy.png │ │ │ │ ├── cat2_dummy.png │ │ │ │ ├── cat3_dummy.png │ │ │ │ ├── cave-disabled.png │ │ │ │ ├── cave-no.png │ │ │ │ ├── cave.png │ │ │ │ ├── cliff-disabled.png │ │ │ │ ├── cliff-no.png │ │ │ │ ├── cliff.png │ │ │ │ ├── climbing-disabled.png │ │ │ │ ├── climbing-no.png │ │ │ │ ├── climbing.png │ │ │ │ ├── compass-disabled.png │ │ │ │ ├── compass-no.png │ │ │ │ ├── compass.png │ │ │ │ ├── convert.sh │ │ │ │ ├── cross-35x35-rectangle.png │ │ │ │ ├── cross-35x35-round.png │ │ │ │ ├── cross-40x35-triangle.png │ │ │ │ ├── crosscountryski.png │ │ │ │ ├── danger-disabled.png │ │ │ │ ├── danger-no.png │ │ │ │ ├── danger.png │ │ │ │ ├── date-disabled.png │ │ │ │ ├── date-no.png │ │ │ │ ├── date.png │ │ │ │ ├── day-disabled.png │ │ │ │ ├── day-no.png │ │ │ │ ├── day.png │ │ │ │ ├── dogs.png │ │ │ │ ├── family_allow.png │ │ │ │ ├── family_forbid.png │ │ │ │ ├── family_notrec.png │ │ │ │ ├── family_rec.png │ │ │ │ ├── fee-disabled.png │ │ │ │ ├── fee-no.png │ │ │ │ ├── fee.png │ │ │ │ ├── firstaid-disabled.png │ │ │ │ ├── firstaid-no.png │ │ │ │ ├── firstaid.png │ │ │ │ ├── flashlight-disabled.png │ │ │ │ ├── flashlight-no.png │ │ │ │ ├── flashlight.png │ │ │ │ ├── fuelstation.png │ │ │ │ ├── hiking-disabled.png │ │ │ │ ├── hiking-no.png │ │ │ │ ├── hiking.png │ │ │ │ ├── horses.png │ │ │ │ ├── hunting-disabled.png │ │ │ │ ├── hunting-no.png │ │ │ │ ├── hunting.png │ │ │ │ ├── index.html │ │ │ │ ├── indoor-disabled.png │ │ │ │ ├── indoor-no.png │ │ │ │ ├── indoor.png │ │ │ │ ├── interestsign-disabled.png │ │ │ │ ├── interestsign-no.png │ │ │ │ ├── interestsign.png │ │ │ │ ├── jeeps.png │ │ │ │ ├── kids-disabled.png │ │ │ │ ├── kids-no.png │ │ │ │ ├── kids.png │ │ │ │ ├── letter-disabled.png │ │ │ │ ├── letter-no.png │ │ │ │ ├── letter.png │ │ │ │ ├── mine-disabled.png │ │ │ │ ├── mine-no.png │ │ │ │ ├── mine.png │ │ │ │ ├── motorcycles.png │ │ │ │ ├── moving-disabled.png │ │ │ │ ├── moving-no.png │ │ │ │ ├── moving.png │ │ │ │ ├── mtbs.png │ │ │ │ ├── naturschutz-disabled.png │ │ │ │ ├── naturschutz-no.png │ │ │ │ ├── naturschutz.png │ │ │ │ ├── night-disabled.png │ │ │ │ ├── night-no.png │ │ │ │ ├── night.png │ │ │ │ ├── nogps-disabled.png │ │ │ │ ├── nogps-no.png │ │ │ │ ├── nogps.png │ │ │ │ ├── oconly-disabled.png │ │ │ │ ├── oconly-no.png │ │ │ │ ├── oconly.png │ │ │ │ ├── offtrail.png │ │ │ │ ├── othercache-disabled.png │ │ │ │ ├── othercache-no.png │ │ │ │ ├── othercache.png │ │ │ │ ├── overnight-disabled.png │ │ │ │ ├── overnight-no.png │ │ │ │ ├── overnight.png │ │ │ │ ├── parking-disabled.png │ │ │ │ ├── parking-no.png │ │ │ │ ├── parking.png │ │ │ │ ├── phone-disabled.png │ │ │ │ ├── phone-no.png │ │ │ │ ├── phone.png │ │ │ │ ├── picnic.png │ │ │ │ ├── plants-disabled.png │ │ │ │ ├── plants-no.png │ │ │ │ ├── plants.png │ │ │ │ ├── public-disabled.png │ │ │ │ ├── public-no.png │ │ │ │ ├── public.png │ │ │ │ ├── quads.png │ │ │ │ ├── rappeling-disabled.png │ │ │ │ ├── rappeling-no.png │ │ │ │ ├── rappeling.png │ │ │ │ ├── restaurant.png │ │ │ │ ├── restrooms-disabled.png │ │ │ │ ├── restrooms-no.png │ │ │ │ ├── restrooms.png │ │ │ │ ├── riddle-disabled.png │ │ │ │ ├── riddle-no.png │ │ │ │ ├── riddle.png │ │ │ │ ├── safari-disabled.png │ │ │ │ ├── safari-no.png │ │ │ │ ├── safari.png │ │ │ │ ├── scuba-disabled.png │ │ │ │ ├── scuba-no.png │ │ │ │ ├── scuba.png │ │ │ │ ├── season_snow-disabled.png │ │ │ │ ├── season_snow-no.png │ │ │ │ ├── season_snow.png │ │ │ │ ├── snow-disabled.png │ │ │ │ ├── snow-no.png │ │ │ │ ├── snow.png │ │ │ │ ├── snowmobiles.png │ │ │ │ ├── steep-disabled.png │ │ │ │ ├── steep-no.png │ │ │ │ ├── steep.png │ │ │ │ ├── stroller.png │ │ │ │ ├── submerged-disabled.png │ │ │ │ ├── submerged-no.png │ │ │ │ ├── submerged.png │ │ │ │ ├── swimming-disabled.png │ │ │ │ ├── swimming-no.png │ │ │ │ ├── swimming.png │ │ │ │ ├── thorn-disabled.png │ │ │ │ ├── thorn-no.png │ │ │ │ ├── thorn.png │ │ │ │ ├── ticks-disabled.png │ │ │ │ ├── ticks-no.png │ │ │ │ ├── ticks.png │ │ │ │ ├── tide-disabled.png │ │ │ │ ├── tide-no.png │ │ │ │ ├── tide.png │ │ │ │ ├── time-disabled.png │ │ │ │ ├── time-no.png │ │ │ │ ├── time.png │ │ │ │ ├── tools-disabled.png │ │ │ │ ├── tools-no.png │ │ │ │ ├── tools.png │ │ │ │ ├── train-disabled.png │ │ │ │ ├── train-no.png │ │ │ │ ├── train.png │ │ │ │ ├── ultravioletlight.png │ │ │ │ ├── wading-disabled.png │ │ │ │ ├── wading-no.png │ │ │ │ ├── wading.png │ │ │ │ ├── water-disabled.png │ │ │ │ ├── water-no.png │ │ │ │ ├── water.png │ │ │ │ ├── webcam-disabled.png │ │ │ │ ├── webcam-no.png │ │ │ │ ├── webcam.png │ │ │ │ ├── wheelchair-disabled.png │ │ │ │ ├── wheelchair-no.png │ │ │ │ ├── wheelchair.png │ │ │ │ ├── wiki-disabled.png │ │ │ │ ├── wiki-no.png │ │ │ │ ├── wiki.png │ │ │ │ ├── wwwlink-disabled.png │ │ │ │ ├── wwwlink-no.png │ │ │ │ ├── wwwlink.png │ │ │ │ ├── z-no.png │ │ │ │ ├── z-sign_allowed.png │ │ │ │ ├── z-sign_cond.png │ │ │ │ ├── z-sign_danger.png │ │ │ │ ├── z-sign_forb.png │ │ │ │ ├── z-sign_notrec.png │ │ │ │ ├── z-sign_props.png │ │ │ │ └── z-sign_rec.png │ │ │ ├── bg-langstripe.png │ │ │ ├── cacheicon │ │ │ │ ├── 16x16-1.gif │ │ │ │ ├── 16x16-1.png │ │ │ │ ├── 16x16-10.gif │ │ │ │ ├── 16x16-10.png │ │ │ │ ├── 16x16-11.gif │ │ │ │ ├── 16x16-12.gif │ │ │ │ ├── 16x16-13.gif │ │ │ │ ├── 16x16-14.gif │ │ │ │ ├── 16x16-2.gif │ │ │ │ ├── 16x16-2.png │ │ │ │ ├── 16x16-3.gif │ │ │ │ ├── 16x16-3.png │ │ │ │ ├── 16x16-4.gif │ │ │ │ ├── 16x16-4.png │ │ │ │ ├── 16x16-5.gif │ │ │ │ ├── 16x16-5.png │ │ │ │ ├── 16x16-6.gif │ │ │ │ ├── 16x16-6.png │ │ │ │ ├── 16x16-7.gif │ │ │ │ ├── 16x16-7.png │ │ │ │ ├── 16x16-8.gif │ │ │ │ ├── 16x16-8.png │ │ │ │ ├── 16x16-9.gif │ │ │ │ ├── 16x16-9.png │ │ │ │ ├── 16x16-drivein.gif │ │ │ │ ├── 16x16-drivein.png │ │ │ │ ├── 16x16-event.gif │ │ │ │ ├── 16x16-event.png │ │ │ │ ├── 16x16-mathe.gif │ │ │ │ ├── 16x16-mathe.png │ │ │ │ ├── 16x16-moving.gif │ │ │ │ ├── 16x16-moving.png │ │ │ │ ├── 16x16-multi.gif │ │ │ │ ├── 16x16-multi.png │ │ │ │ ├── 16x16-mystery.gif │ │ │ │ ├── 16x16-mystery.png │ │ │ │ ├── 16x16-traditional.gif │ │ │ │ ├── 16x16-traditional.png │ │ │ │ ├── 16x16-unknown.gif │ │ │ │ ├── 16x16-unknown.png │ │ │ │ ├── 16x16-virtual.gif │ │ │ │ ├── 16x16-virtual.png │ │ │ │ ├── 16x16-webcam.gif │ │ │ │ ├── 16x16-webcam.png │ │ │ │ ├── 20x20-1.png │ │ │ │ ├── 20x20-10.png │ │ │ │ ├── 20x20-11.png │ │ │ │ ├── 20x20-12.png │ │ │ │ ├── 20x20-13.png │ │ │ │ ├── 20x20-14.png │ │ │ │ ├── 20x20-15.png │ │ │ │ ├── 20x20-2.png │ │ │ │ ├── 20x20-3.png │ │ │ │ ├── 20x20-4.png │ │ │ │ ├── 20x20-5.png │ │ │ │ ├── 20x20-6.png │ │ │ │ ├── 20x20-7.png │ │ │ │ ├── 20x20-8.png │ │ │ │ ├── 20x20-9.png │ │ │ │ ├── 22x20-traditional.png │ │ │ │ ├── 22x22-drivein.png │ │ │ │ ├── 22x22-event.png │ │ │ │ ├── 22x22-mathe.png │ │ │ │ ├── 22x22-moving.png │ │ │ │ ├── 22x22-multi.png │ │ │ │ ├── 22x22-mystery.png │ │ │ │ ├── 22x22-traditional.gif │ │ │ │ ├── 22x22-traditional.png │ │ │ │ ├── 22x22-unknown.png │ │ │ │ ├── 22x22-virtual.png │ │ │ │ ├── 22x22-webcam.png │ │ │ │ ├── cache-rated.gif │ │ │ │ ├── cache │ │ │ │ │ ├── 16x16-9.gif │ │ │ │ │ ├── 16x16-9.png │ │ │ │ │ ├── 16x16-challenge.png │ │ │ │ │ ├── 16x16-drivein.gif │ │ │ │ │ ├── 16x16-drivein.png │ │ │ │ │ ├── 16x16-edu.png │ │ │ │ │ ├── 16x16-event.gif │ │ │ │ │ ├── 16x16-event.png │ │ │ │ │ ├── 16x16-guestbook.png │ │ │ │ │ ├── 16x16-mathe.gif │ │ │ │ │ ├── 16x16-mathe.png │ │ │ │ │ ├── 16x16-moving.gif │ │ │ │ │ ├── 16x16-moving.png │ │ │ │ │ ├── 16x16-multi.gif │ │ │ │ │ ├── 16x16-multi.png │ │ │ │ │ ├── 16x16-mystery.gif │ │ │ │ │ ├── 16x16-mystery.png │ │ │ │ │ ├── 16x16-podcache.png │ │ │ │ │ ├── 16x16-traditional.gif │ │ │ │ │ ├── 16x16-traditional.png │ │ │ │ │ ├── 16x16-unknown.gif │ │ │ │ │ ├── 16x16-unknown.png │ │ │ │ │ ├── 16x16-virtual.gif │ │ │ │ │ ├── 16x16-virtual.png │ │ │ │ │ ├── 16x16-webcam.gif │ │ │ │ │ ├── 16x16-webcam.png │ │ │ │ │ ├── 22x22-event.png │ │ │ │ │ ├── 22x22-traditional.gif │ │ │ │ │ └── 22x22-traditional.png │ │ │ │ ├── challenge-a-dnf.png │ │ │ │ ├── challenge-a-found.png │ │ │ │ ├── challenge-a-owner.png │ │ │ │ ├── challenge-a.png │ │ │ │ ├── challenge-d-dnf.png │ │ │ │ ├── challenge-d-found.png │ │ │ │ ├── challenge-d-owner.png │ │ │ │ ├── challenge-d.png │ │ │ │ ├── challenge-i-bw.png │ │ │ │ ├── challenge-i.png │ │ │ │ ├── challenge-n-dnf.png │ │ │ │ ├── challenge-n-found.png │ │ │ │ ├── challenge-n-owner.png │ │ │ │ ├── challenge-n.png │ │ │ │ ├── challenge-s-dnf.png │ │ │ │ ├── challenge-s-found.png │ │ │ │ ├── challenge-s-owner.png │ │ │ │ ├── challenge-s.png │ │ │ │ ├── challenge.png │ │ │ │ ├── drivein-a-dnf.gif │ │ │ │ ├── drivein-a-dnf.png │ │ │ │ ├── drivein-a-found.gif │ │ │ │ ├── drivein-a-found.png │ │ │ │ ├── drivein-a-owner.gif │ │ │ │ ├── drivein-a-owner.png │ │ │ │ ├── drivein-a.gif │ │ │ │ ├── drivein-a.png │ │ │ │ ├── drivein-grey.gif │ │ │ │ ├── drivein-grey.png │ │ │ │ ├── drivein-n-dnf.gif │ │ │ │ ├── drivein-n-dnf.png │ │ │ │ ├── drivein-n-found.gif │ │ │ │ ├── drivein-n-found.png │ │ │ │ ├── drivein-n-owner.gif │ │ │ │ ├── drivein-n-owner.png │ │ │ │ ├── drivein-n.gif │ │ │ │ ├── drivein-n.png │ │ │ │ ├── drivein-s-dnf.gif │ │ │ │ ├── drivein-s-dnf.png │ │ │ │ ├── drivein-s-found.gif │ │ │ │ ├── drivein-s-found.png │ │ │ │ ├── drivein-s-owner.gif │ │ │ │ ├── drivein-s-owner.png │ │ │ │ ├── drivein-s.gif │ │ │ │ ├── drivein-s.png │ │ │ │ ├── drivein.gif │ │ │ │ ├── drivein.png │ │ │ │ ├── edu-a-dnf.png │ │ │ │ ├── edu-a-found.png │ │ │ │ ├── edu-a-owner.png │ │ │ │ ├── edu-a.png │ │ │ │ ├── edu-d-dnf.png │ │ │ │ ├── edu-d-found.png │ │ │ │ ├── edu-d-owner.png │ │ │ │ ├── edu-d.png │ │ │ │ ├── edu-i-bw.png │ │ │ │ ├── edu-i.png │ │ │ │ ├── edu-n-dnf.png │ │ │ │ ├── edu-n-found.png │ │ │ │ ├── edu-n-owner.png │ │ │ │ ├── edu-n.png │ │ │ │ ├── edu-s-dnf.png │ │ │ │ ├── edu-s-found.png │ │ │ │ ├── edu-s-owner.png │ │ │ │ ├── edu-s.png │ │ │ │ ├── edu.png │ │ │ │ ├── event-a-dnf.gif │ │ │ │ ├── event-a-dnf.png │ │ │ │ ├── event-a-found.gif │ │ │ │ ├── event-a-found.png │ │ │ │ ├── event-a-owner.gif │ │ │ │ ├── event-a-owner.png │ │ │ │ ├── event-a.gif │ │ │ │ ├── event-a.png │ │ │ │ ├── event-grey.gif │ │ │ │ ├── event-grey.png │ │ │ │ ├── event-n-dnf.gif │ │ │ │ ├── event-n-dnf.png │ │ │ │ ├── event-n-found.gif │ │ │ │ ├── event-n-found.png │ │ │ │ ├── event-n-owner.gif │ │ │ │ ├── event-n-owner.png │ │ │ │ ├── event-n.gif │ │ │ │ ├── event-n.png │ │ │ │ ├── event-s-dnf.gif │ │ │ │ ├── event-s-dnf.png │ │ │ │ ├── event-s-found.gif │ │ │ │ ├── event-s-found.png │ │ │ │ ├── event-s-owner.gif │ │ │ │ ├── event-s-owner.png │ │ │ │ ├── event-s.gif │ │ │ │ ├── event-s.png │ │ │ │ ├── event.gif │ │ │ │ ├── event.png │ │ │ │ ├── guestbook-a-dnf.png │ │ │ │ ├── guestbook-a-found.png │ │ │ │ ├── guestbook-a-owner.png │ │ │ │ ├── guestbook-a.png │ │ │ │ ├── guestbook-d-dnf.png │ │ │ │ ├── guestbook-d-found.png │ │ │ │ ├── guestbook-d-owner.png │ │ │ │ ├── guestbook-d.png │ │ │ │ ├── guestbook-i-bw.png │ │ │ │ ├── guestbook-i.png │ │ │ │ ├── guestbook-n-dnf.png │ │ │ │ ├── guestbook-n-found.png │ │ │ │ ├── guestbook-n-owner.png │ │ │ │ ├── guestbook-n.png │ │ │ │ ├── guestbook-s-dnf.png │ │ │ │ ├── guestbook-s-found.png │ │ │ │ ├── guestbook-s-owner.png │ │ │ │ ├── guestbook-s.png │ │ │ │ ├── guestbook.png │ │ │ │ ├── index.html │ │ │ │ ├── map-drivein.png │ │ │ │ ├── map-event.png │ │ │ │ ├── map-mathe.png │ │ │ │ ├── map-moving.png │ │ │ │ ├── map-multi.png │ │ │ │ ├── map-mystery.png │ │ │ │ ├── map-traditional.png │ │ │ │ ├── map-unknown.png │ │ │ │ ├── map-virtual.png │ │ │ │ ├── map-webcam.png │ │ │ │ ├── mathe-a-dnf.gif │ │ │ │ ├── mathe-a-dnf.png │ │ │ │ ├── mathe-a-found.gif │ │ │ │ ├── mathe-a-found.png │ │ │ │ ├── mathe-a-owner.gif │ │ │ │ ├── mathe-a-owner.png │ │ │ │ ├── mathe-a.gif │ │ │ │ ├── mathe-a.png │ │ │ │ ├── mathe-grey.gif │ │ │ │ ├── mathe-grey.png │ │ │ │ ├── mathe-n-dnf.gif │ │ │ │ ├── mathe-n-dnf.png │ │ │ │ ├── mathe-n-found.gif │ │ │ │ ├── mathe-n-found.png │ │ │ │ ├── mathe-n-owner.gif │ │ │ │ ├── mathe-n-owner.png │ │ │ │ ├── mathe-n.gif │ │ │ │ ├── mathe-n.png │ │ │ │ ├── mathe-s-dnf.gif │ │ │ │ ├── mathe-s-dnf.png │ │ │ │ ├── mathe-s-found.gif │ │ │ │ ├── mathe-s-found.png │ │ │ │ ├── mathe-s-owner.gif │ │ │ │ ├── mathe-s-owner.png │ │ │ │ ├── mathe-s.gif │ │ │ │ ├── mathe-s.png │ │ │ │ ├── mathe.gif │ │ │ │ ├── mathe.png │ │ │ │ ├── mocache.gif │ │ │ │ ├── mocache.png │ │ │ │ ├── moving-a-dnf.gif │ │ │ │ ├── moving-a-dnf.png │ │ │ │ ├── moving-a-found.gif │ │ │ │ ├── moving-a-found.png │ │ │ │ ├── moving-a-owner.gif │ │ │ │ ├── moving-a-owner.png │ │ │ │ ├── moving-a.gif │ │ │ │ ├── moving-a.png │ │ │ │ ├── moving-grey.gif │ │ │ │ ├── moving-grey.png │ │ │ │ ├── moving-n-dnf.gif │ │ │ │ ├── moving-n-dnf.png │ │ │ │ ├── moving-n-found.gif │ │ │ │ ├── moving-n-found.png │ │ │ │ ├── moving-n-owner.gif │ │ │ │ ├── moving-n-owner.png │ │ │ │ ├── moving-n.gif │ │ │ │ ├── moving-n.png │ │ │ │ ├── moving-s-dnf.gif │ │ │ │ ├── moving-s-dnf.png │ │ │ │ ├── moving-s-found.gif │ │ │ │ ├── moving-s-found.png │ │ │ │ ├── moving-s-owner.gif │ │ │ │ ├── moving-s-owner.png │ │ │ │ ├── moving-s.gif │ │ │ │ ├── moving-s.png │ │ │ │ ├── moving.gif │ │ │ │ ├── moving.png │ │ │ │ ├── multi-a-dnf.gif │ │ │ │ ├── multi-a-dnf.png │ │ │ │ ├── multi-a-found.gif │ │ │ │ ├── multi-a-found.png │ │ │ │ ├── multi-a-owner.gif │ │ │ │ ├── multi-a-owner.png │ │ │ │ ├── multi-a.gif │ │ │ │ ├── multi-a.png │ │ │ │ ├── multi-grey.gif │ │ │ │ ├── multi-grey.png │ │ │ │ ├── multi-n-dnf.gif │ │ │ │ ├── multi-n-dnf.png │ │ │ │ ├── multi-n-found.gif │ │ │ │ ├── multi-n-found.png │ │ │ │ ├── multi-n-owner.gif │ │ │ │ ├── multi-n-owner.png │ │ │ │ ├── multi-n.gif │ │ │ │ ├── multi-n.png │ │ │ │ ├── multi-s-dnf.gif │ │ │ │ ├── multi-s-dnf.png │ │ │ │ ├── multi-s-found.gif │ │ │ │ ├── multi-s-found.png │ │ │ │ ├── multi-s-owner.gif │ │ │ │ ├── multi-s-owner.png │ │ │ │ ├── multi-s.gif │ │ │ │ ├── multi-s.png │ │ │ │ ├── multi.gif │ │ │ │ ├── multi.png │ │ │ │ ├── mystery-a-dnf.gif │ │ │ │ ├── mystery-a-dnf.png │ │ │ │ ├── mystery-a-found.gif │ │ │ │ ├── mystery-a-owner.gif │ │ │ │ ├── mystery-a-owner.png │ │ │ │ ├── mystery-a.gif │ │ │ │ ├── mystery-a.png │ │ │ │ ├── mystery-grey.gif │ │ │ │ ├── mystery-grey.png │ │ │ │ ├── mystery-n-dnf.gif │ │ │ │ ├── mystery-n-dnf.png │ │ │ │ ├── mystery-n-found.gif │ │ │ │ ├── mystery-n-found.png │ │ │ │ ├── mystery-n-owner.gif │ │ │ │ ├── mystery-n-owner.png │ │ │ │ ├── mystery-n.gif │ │ │ │ ├── mystery-n.png │ │ │ │ ├── mystery-s-dnf.gif │ │ │ │ ├── mystery-s-dnf.png │ │ │ │ ├── mystery-s-found.gif │ │ │ │ ├── mystery-s-found.png │ │ │ │ ├── mystery-s-owner.gif │ │ │ │ ├── mystery-s-owner.png │ │ │ │ ├── mystery-s.gif │ │ │ │ ├── mystery-s.png │ │ │ │ ├── mystery.gif │ │ │ │ ├── mystery.png │ │ │ │ ├── mystery_a-found.png │ │ │ │ ├── newevent.gif │ │ │ │ ├── newevent.png │ │ │ │ ├── podcache-a-dnf.png │ │ │ │ ├── podcache-a-found.png │ │ │ │ ├── podcache-a-owner.png │ │ │ │ ├── podcache-a.png │ │ │ │ ├── podcache-d-dnf.png │ │ │ │ ├── podcache-d-found.png │ │ │ │ ├── podcache-d-owner.png │ │ │ │ ├── podcache-d.png │ │ │ │ ├── podcache-i-bw.png │ │ │ │ ├── podcache-i.png │ │ │ │ ├── podcache-n-dnf.png │ │ │ │ ├── podcache-n-found.png │ │ │ │ ├── podcache-n-owner.png │ │ │ │ ├── podcache-n.png │ │ │ │ ├── podcache-s-dnf.png │ │ │ │ ├── podcache-s-found.png │ │ │ │ ├── podcache-s-owner.png │ │ │ │ ├── podcache-s.png │ │ │ │ ├── podcache.png │ │ │ │ ├── tmp.gif │ │ │ │ ├── traditional-a-dnf.gif │ │ │ │ ├── traditional-a-dnf.png │ │ │ │ ├── traditional-a-found.gif │ │ │ │ ├── traditional-a-found.png │ │ │ │ ├── traditional-a-owner.gif │ │ │ │ ├── traditional-a-owner.png │ │ │ │ ├── traditional-a.gif │ │ │ │ ├── traditional-a.png │ │ │ │ ├── traditional-grey.gif │ │ │ │ ├── traditional-grey.png │ │ │ │ ├── traditional-n-dnf.gif │ │ │ │ ├── traditional-n-dnf.png │ │ │ │ ├── traditional-n-found.gif │ │ │ │ ├── traditional-n-found.png │ │ │ │ ├── traditional-n-owner.gif │ │ │ │ ├── traditional-n-owner.png │ │ │ │ ├── traditional-n.gif │ │ │ │ ├── traditional-n.png │ │ │ │ ├── traditional-s-dnf.gif │ │ │ │ ├── traditional-s-dnf.png │ │ │ │ ├── traditional-s-found.gif │ │ │ │ ├── traditional-s-found.png │ │ │ │ ├── traditional-s-owner.gif │ │ │ │ ├── traditional-s-owner.png │ │ │ │ ├── traditional-s.gif │ │ │ │ ├── traditional-s.png │ │ │ │ ├── traditional.gif │ │ │ │ ├── traditional.png │ │ │ │ ├── unknown-a-dnf.gif │ │ │ │ ├── unknown-a-dnf.png │ │ │ │ ├── unknown-a-found.gif │ │ │ │ ├── unknown-a-found.png │ │ │ │ ├── unknown-a-owner.gif │ │ │ │ ├── unknown-a-owner.png │ │ │ │ ├── unknown-a.gif │ │ │ │ ├── unknown-a.png │ │ │ │ ├── unknown-grey.gif │ │ │ │ ├── unknown-grey.png │ │ │ │ ├── unknown-n-dnf.gif │ │ │ │ ├── unknown-n-dnf.png │ │ │ │ ├── unknown-n-found.gif │ │ │ │ ├── unknown-n-found.png │ │ │ │ ├── unknown-n-owner.gif │ │ │ │ ├── unknown-n-owner.png │ │ │ │ ├── unknown-n.gif │ │ │ │ ├── unknown-n.png │ │ │ │ ├── unknown-s-dnf.gif │ │ │ │ ├── unknown-s-dnf.png │ │ │ │ ├── unknown-s-found.gif │ │ │ │ ├── unknown-s-found.png │ │ │ │ ├── unknown-s-owner.gif │ │ │ │ ├── unknown-s-owner.png │ │ │ │ ├── unknown-s.gif │ │ │ │ ├── unknown-s.png │ │ │ │ ├── unknown.gif │ │ │ │ ├── unknown.png │ │ │ │ ├── virtual-a-dnf.gif │ │ │ │ ├── virtual-a-dnf.png │ │ │ │ ├── virtual-a-found.gif │ │ │ │ ├── virtual-a-found.png │ │ │ │ ├── virtual-a-owner.gif │ │ │ │ ├── virtual-a-owner.png │ │ │ │ ├── virtual-a.gif │ │ │ │ ├── virtual-a.png │ │ │ │ ├── virtual-grey.gif │ │ │ │ ├── virtual-grey.png │ │ │ │ ├── virtual-n-dnf.gif │ │ │ │ ├── virtual-n-dnf.png │ │ │ │ ├── virtual-n-found.gif │ │ │ │ ├── virtual-n-found.png │ │ │ │ ├── virtual-n-owner.gif │ │ │ │ ├── virtual-n-owner.png │ │ │ │ ├── virtual-n.gif │ │ │ │ ├── virtual-n.png │ │ │ │ ├── virtual-s-dnf.gif │ │ │ │ ├── virtual-s-dnf.png │ │ │ │ ├── virtual-s-found.gif │ │ │ │ ├── virtual-s-found.png │ │ │ │ ├── virtual-s-owner.gif │ │ │ │ ├── virtual-s-owner.png │ │ │ │ ├── virtual-s.gif │ │ │ │ ├── virtual-s.png │ │ │ │ ├── virtual.gif │ │ │ │ ├── virtual.png │ │ │ │ ├── webcam-a-dnf.gif │ │ │ │ ├── webcam-a-dnf.png │ │ │ │ ├── webcam-a-found.gif │ │ │ │ ├── webcam-a-found.png │ │ │ │ ├── webcam-a-owner.gif │ │ │ │ ├── webcam-a-owner.png │ │ │ │ ├── webcam-a.gif │ │ │ │ ├── webcam-a.png │ │ │ │ ├── webcam-grey.gif │ │ │ │ ├── webcam-grey.png │ │ │ │ ├── webcam-n-dnf.gif │ │ │ │ ├── webcam-n-dnf.png │ │ │ │ ├── webcam-n-found.gif │ │ │ │ ├── webcam-n-found.png │ │ │ │ ├── webcam-n-owner.gif │ │ │ │ ├── webcam-n-owner.png │ │ │ │ ├── webcam-n.gif │ │ │ │ ├── webcam-n.png │ │ │ │ ├── webcam-s-dnf.gif │ │ │ │ ├── webcam-s-dnf.png │ │ │ │ ├── webcam-s-found.gif │ │ │ │ ├── webcam-s-found.png │ │ │ │ ├── webcam-s-owner.gif │ │ │ │ ├── webcam-s-owner.png │ │ │ │ ├── webcam-s.gif │ │ │ │ ├── webcam-s.png │ │ │ │ ├── webcam.gif │ │ │ │ └── webcam.png │ │ │ ├── cachestatus │ │ │ │ ├── 16x16-go.png │ │ │ │ ├── 16x16-locked-invisible.png │ │ │ │ ├── 16x16-locked.png │ │ │ │ ├── 16x16-stop.png │ │ │ │ ├── 16x16-trash.png │ │ │ │ ├── 16x16-wait.png │ │ │ │ ├── 32x32-archived.png │ │ │ │ ├── 32x32-disabled.png │ │ │ │ ├── 32x32-locked.png │ │ │ │ ├── index.html │ │ │ │ ├── listing-outdated.png │ │ │ │ └── needs-maintenance.png │ │ │ ├── cs.jpg │ │ │ ├── darkbluetransparent.png │ │ │ ├── de.jpg │ │ │ ├── description │ │ │ │ ├── 16x16-rss.png │ │ │ │ ├── 16x16-visitors.png │ │ │ │ ├── 20x20-cache-note.png │ │ │ │ ├── 20x20-compass.png │ │ │ │ ├── 22x22-decrypted.png │ │ │ │ ├── 22x22-description.png │ │ │ │ ├── 22x22-encrypted.png │ │ │ │ ├── 22x22-geokret.gif │ │ │ │ ├── 22x22-geokret.png │ │ │ │ ├── 22x22-image.png │ │ │ │ ├── 22x22-location.png │ │ │ │ ├── 22x22-logs.png │ │ │ │ ├── 22x22-misc.png │ │ │ │ ├── 22x22-podcast.png │ │ │ │ ├── 22x22-tools.png │ │ │ │ ├── 22x22-utility.png │ │ │ │ ├── 32x32-geokret.gif │ │ │ │ ├── 32x32-geokret.png │ │ │ │ ├── 32x32-get-podcast.png │ │ │ │ ├── 32x32-profile.png │ │ │ │ ├── 32x32-rss.png │ │ │ │ └── index.html │ │ │ ├── difficulty │ │ │ │ ├── diff-10.gif │ │ │ │ ├── diff-15.gif │ │ │ │ ├── diff-20.gif │ │ │ │ ├── diff-25.gif │ │ │ │ ├── diff-30.gif │ │ │ │ ├── diff-35.gif │ │ │ │ ├── diff-40.gif │ │ │ │ ├── diff-45.gif │ │ │ │ ├── diff-50.gif │ │ │ │ ├── index.html │ │ │ │ ├── terr-10.gif │ │ │ │ ├── terr-15.gif │ │ │ │ ├── terr-20.gif │ │ │ │ ├── terr-25.gif │ │ │ │ ├── terr-30.gif │ │ │ │ ├── terr-35.gif │ │ │ │ ├── terr-40.gif │ │ │ │ ├── terr-45.gif │ │ │ │ └── terr-50.gif │ │ │ ├── direction │ │ │ │ ├── 16x16-0deg.png │ │ │ │ ├── 16x16-112.5deg.png │ │ │ │ ├── 16x16-135deg.png │ │ │ │ ├── 16x16-157.5deg.png │ │ │ │ ├── 16x16-180deg.png │ │ │ │ ├── 16x16-202.5deg.png │ │ │ │ ├── 16x16-22.5deg.png │ │ │ │ ├── 16x16-225deg.png │ │ │ │ ├── 16x16-247.5deg.png │ │ │ │ ├── 16x16-270deg.png │ │ │ │ ├── 16x16-292.5deg.png │ │ │ │ ├── 16x16-315deg.png │ │ │ │ ├── 16x16-337.5deg.png │ │ │ │ ├── 16x16-360deg.png │ │ │ │ ├── 16x16-45deg.png │ │ │ │ ├── 16x16-67.5deg.png │ │ │ │ ├── 16x16-90deg.png │ │ │ │ └── direction-source.png │ │ │ ├── es.jpg │ │ │ ├── fr.jpg │ │ │ ├── head │ │ │ │ ├── palacio_de_cristal.jpg │ │ │ │ ├── pano2014-0001.jpg │ │ │ │ ├── pano2014-0002.jpg │ │ │ │ ├── pano2014-0003.jpg │ │ │ │ ├── pano2014-0004.jpg │ │ │ │ ├── pano2014-0005.jpg │ │ │ │ ├── pano2014-0006.jpg │ │ │ │ ├── pano2014-0007.jpg │ │ │ │ ├── pano2014-0008.jpg │ │ │ │ ├── pano970-0001.jpg │ │ │ │ ├── pano970-0002.jpg │ │ │ │ ├── pano970-0003.jpg │ │ │ │ ├── pano970-0004.jpg │ │ │ │ ├── pano970-0005.jpg │ │ │ │ ├── pano970-0006.jpg │ │ │ │ ├── pano970-0007.jpg │ │ │ │ ├── pano970-0008.jpg │ │ │ │ ├── pano970-0009.jpg │ │ │ │ ├── pano970-0010.jpg │ │ │ │ ├── pano970-0011.jpg │ │ │ │ ├── pano970-0012.jpg │ │ │ │ ├── pano970-0013.jpg │ │ │ │ ├── pano970-0014.jpg │ │ │ │ ├── pano970-0015.jpg │ │ │ │ ├── pano970-0016.jpg │ │ │ │ ├── pano970-0017.jpg │ │ │ │ ├── pano970-0018.jpg │ │ │ │ ├── pano970-0019.jpg │ │ │ │ ├── pano970-0020.jpg │ │ │ │ ├── pano970-0021.jpg │ │ │ │ ├── pano970-0022.jpg │ │ │ │ ├── pano970-0023.jpg │ │ │ │ ├── pano970-0024.jpg │ │ │ │ ├── pano970-0026.jpg │ │ │ │ ├── pano970-0027.jpg │ │ │ │ ├── pano970-0028.jpg │ │ │ │ ├── pano970-0029.jpg │ │ │ │ ├── pano970-0030.jpg │ │ │ │ ├── pano970-0031.jpg │ │ │ │ ├── pano970-0033.jpg │ │ │ │ ├── pano970-0034.jpg │ │ │ │ ├── pano970-0035.jpg │ │ │ │ ├── pano970-0036.jpg │ │ │ │ ├── pano970-0037.jpg │ │ │ │ ├── pano970-0038.jpg │ │ │ │ ├── pano970-0039.jpg │ │ │ │ ├── pano970-0040.jpg │ │ │ │ ├── pano970-0041.jpg │ │ │ │ ├── pano970-0042.jpg │ │ │ │ ├── pano970-0043.jpg │ │ │ │ ├── pano970-0044.jpg │ │ │ │ ├── pano970-0045.jpg │ │ │ │ ├── pano970-0046.jpg │ │ │ │ ├── pano970-0047.jpg │ │ │ │ ├── pano970-0048.jpg │ │ │ │ ├── pano970-0049.jpg │ │ │ │ ├── pano970-0050.jpg │ │ │ │ ├── pano970-0051.jpg │ │ │ │ ├── pano970-0052.jpg │ │ │ │ ├── pano970-0053.jpg │ │ │ │ ├── pano970-0054.jpg │ │ │ │ ├── pano970-0055.jpg │ │ │ │ ├── pano970-0056.jpg │ │ │ │ ├── pano970-0057.jpg │ │ │ │ ├── pano970-0058.jpg │ │ │ │ ├── pano970-0059.jpg │ │ │ │ ├── pano970-0060.jpg │ │ │ │ ├── pano970-0061.jpg │ │ │ │ ├── pano970-0062.jpg │ │ │ │ ├── pano970-0063.jpg │ │ │ │ ├── pano970-0064.jpg │ │ │ │ ├── pano970-0065.jpg │ │ │ │ ├── pano970-0066.jpg │ │ │ │ ├── pano970-0067.jpg │ │ │ │ ├── pano970-0068.jpg │ │ │ │ ├── pano970-0069.jpg │ │ │ │ ├── pano970-0070.jpg │ │ │ │ ├── pano970-0071.jpg │ │ │ │ ├── pano970-0072.jpg │ │ │ │ ├── pano970-0073.jpg │ │ │ │ ├── pano970-0074.jpg │ │ │ │ ├── pano970-0075.jpg │ │ │ │ ├── pano970-f01-crumstadt.jpg │ │ │ │ ├── pano970-f02-la-palma.jpg │ │ │ │ ├── pano970-f04-woerrstadt.jpg │ │ │ │ ├── pano970-f05-bodenheim.jpg │ │ │ │ ├── pano970-f06-essenheim.jpg │ │ │ │ ├── pano970-f07-nackenheim.jpg │ │ │ │ ├── pano970-f08-mainz.jpg │ │ │ │ ├── pano970-f10-teide.jpg │ │ │ │ ├── pano970-f11-norderney.jpg │ │ │ │ ├── pano970-f13-moerfelden.jpg │ │ │ │ ├── panorama-rheinlandpfalz-bingen-nahe.jpg │ │ │ │ ├── pantano_de_san_juan.jpg │ │ │ │ ├── parque_lineal_de_manzanares.jpg │ │ │ │ ├── rheinromantik_panorama1.jpg │ │ │ │ └── rotator.php │ │ │ ├── index.html │ │ │ ├── log │ │ │ │ ├── 16x16-active.png │ │ │ │ ├── 16x16-archived.png │ │ │ │ ├── 16x16-attended.png │ │ │ │ ├── 16x16-disabled.png │ │ │ │ ├── 16x16-dnf.png │ │ │ │ ├── 16x16-found.png │ │ │ │ ├── 16x16-listing-outdated-no.png │ │ │ │ ├── 16x16-listing-outdated.png │ │ │ │ ├── 16x16-locked-invisible.png │ │ │ │ ├── 16x16-locked.png │ │ │ │ ├── 16x16-moved.png │ │ │ │ ├── 16x16-needs-maintenance-no.png │ │ │ │ ├── 16x16-needs-maintenance.png │ │ │ │ ├── 16x16-none.png │ │ │ │ ├── 16x16-note.png │ │ │ │ ├── 16x16-will_attend.png │ │ │ │ └── index.html │ │ │ ├── map │ │ │ │ ├── 32x32-left.png │ │ │ │ ├── 32x32-right.png │ │ │ │ ├── 35x35-configure.png │ │ │ │ ├── 35x35-fullscreen.png │ │ │ │ ├── 35x35-gpx-download.png │ │ │ │ ├── 35x35-no-gpx-download.png │ │ │ │ ├── 35x35-normalscreen.png │ │ │ │ ├── 35x35-star.png │ │ │ │ ├── 48x48-fullscreen.png │ │ │ │ ├── caches1 │ │ │ │ │ ├── 24x24-cachetype-1-inactive.png │ │ │ │ │ ├── 24x24-cachetype-1-oconly.png │ │ │ │ │ ├── 24x24-cachetype-1.png │ │ │ │ │ ├── 24x24-cachetype-10-inactive.png │ │ │ │ │ ├── 24x24-cachetype-10-oconly.png │ │ │ │ │ ├── 24x24-cachetype-10.png │ │ │ │ │ ├── 24x24-cachetype-11-inactive.png │ │ │ │ │ ├── 24x24-cachetype-11-oconly.png │ │ │ │ │ ├── 24x24-cachetype-11.png │ │ │ │ │ ├── 24x24-cachetype-12-inactive.png │ │ │ │ │ ├── 24x24-cachetype-12-oconly.png │ │ │ │ │ ├── 24x24-cachetype-12.png │ │ │ │ │ ├── 24x24-cachetype-13-inactive.png │ │ │ │ │ ├── 24x24-cachetype-13-oconly.png │ │ │ │ │ ├── 24x24-cachetype-13.png │ │ │ │ │ ├── 24x24-cachetype-14-inactive.png │ │ │ │ │ ├── 24x24-cachetype-14-oconly.png │ │ │ │ │ ├── 24x24-cachetype-14.png │ │ │ │ │ ├── 24x24-cachetype-15-inactive.png │ │ │ │ │ ├── 24x24-cachetype-15-oconly.png │ │ │ │ │ ├── 24x24-cachetype-15.png │ │ │ │ │ ├── 24x24-cachetype-2-inactive.png │ │ │ │ │ ├── 24x24-cachetype-2-oconly.png │ │ │ │ │ ├── 24x24-cachetype-2.png │ │ │ │ │ ├── 24x24-cachetype-3-inactive.png │ │ │ │ │ ├── 24x24-cachetype-3-oconly.png │ │ │ │ │ ├── 24x24-cachetype-3.png │ │ │ │ │ ├── 24x24-cachetype-4-inactive.png │ │ │ │ │ ├── 24x24-cachetype-4-oconly.png │ │ │ │ │ ├── 24x24-cachetype-4.png │ │ │ │ │ ├── 24x24-cachetype-5-inactive.png │ │ │ │ │ ├── 24x24-cachetype-5-oconly.png │ │ │ │ │ ├── 24x24-cachetype-5.png │ │ │ │ │ ├── 24x24-cachetype-6-inactive.png │ │ │ │ │ ├── 24x24-cachetype-6-oconly.png │ │ │ │ │ ├── 24x24-cachetype-6.png │ │ │ │ │ ├── 24x24-cachetype-7-inactive.png │ │ │ │ │ ├── 24x24-cachetype-7-oconly.png │ │ │ │ │ ├── 24x24-cachetype-7.png │ │ │ │ │ ├── 24x24-cachetype-8-inactive.png │ │ │ │ │ ├── 24x24-cachetype-8-oconly.png │ │ │ │ │ ├── 24x24-cachetype-8.png │ │ │ │ │ ├── 24x24-cachetype-9-inactive.png │ │ │ │ │ ├── 24x24-cachetype-9-oconly.png │ │ │ │ │ ├── 24x24-cachetype-9.png │ │ │ │ │ ├── 24x24-found-inactive.png │ │ │ │ │ ├── 24x24-found-oconly.png │ │ │ │ │ ├── 24x24-found.png │ │ │ │ │ ├── 24x24-notfound-inactive.png │ │ │ │ │ ├── 24x24-notfound-oconly.png │ │ │ │ │ ├── 24x24-notfound.png │ │ │ │ │ ├── 24x24-owned-inactive.png │ │ │ │ │ ├── 24x24-owned-oconly.png │ │ │ │ │ └── 24x24-owned.png │ │ │ │ ├── caches2 │ │ │ │ │ ├── cachetype-1-inactive.png │ │ │ │ │ ├── cachetype-1-oconly.png │ │ │ │ │ ├── cachetype-1.png │ │ │ │ │ ├── cachetype-10-inactive.png │ │ │ │ │ ├── cachetype-10-oconly.png │ │ │ │ │ ├── cachetype-10.png │ │ │ │ │ ├── cachetype-2-inactive.png │ │ │ │ │ ├── cachetype-2-oconly.png │ │ │ │ │ ├── cachetype-2.png │ │ │ │ │ ├── cachetype-3-inactive.png │ │ │ │ │ ├── cachetype-3-oconly.png │ │ │ │ │ ├── cachetype-3.png │ │ │ │ │ ├── cachetype-4-inactive.png │ │ │ │ │ ├── cachetype-4-oconly.png │ │ │ │ │ ├── cachetype-4.png │ │ │ │ │ ├── cachetype-5-inactive.png │ │ │ │ │ ├── cachetype-5-oconly.png │ │ │ │ │ ├── cachetype-5.png │ │ │ │ │ ├── cachetype-6-inactive.png │ │ │ │ │ ├── cachetype-6-oconly.png │ │ │ │ │ ├── cachetype-6.png │ │ │ │ │ ├── cachetype-7-inactive.png │ │ │ │ │ ├── cachetype-7-oconly.png │ │ │ │ │ ├── cachetype-7.png │ │ │ │ │ ├── cachetype-8-inactive.png │ │ │ │ │ ├── cachetype-8-oconly.png │ │ │ │ │ ├── cachetype-8.png │ │ │ │ │ ├── cachetype-9-inactive.png │ │ │ │ │ ├── cachetype-9-oconly.png │ │ │ │ │ ├── cachetype-9.png │ │ │ │ │ ├── found-inactive.png │ │ │ │ │ ├── found-oconly.png │ │ │ │ │ ├── found.png │ │ │ │ │ ├── notfound-inactive.png │ │ │ │ │ ├── notfound-oconly.png │ │ │ │ │ ├── notfound.png │ │ │ │ │ ├── owned-inactive.png │ │ │ │ │ ├── owned-oconly.png │ │ │ │ │ ├── owned.png │ │ │ │ │ ├── prototype-blank.png │ │ │ │ │ ├── prototype.png │ │ │ │ │ ├── wp_final.png │ │ │ │ │ ├── wp_note.png │ │ │ │ │ ├── wp_parking.png │ │ │ │ │ ├── wp_path.png │ │ │ │ │ ├── wp_poi.png │ │ │ │ │ └── wp_reference.png │ │ │ │ ├── caches3 │ │ │ │ │ ├── 24x24-cachetype-1-inactive.png │ │ │ │ │ ├── 24x24-cachetype-1-oconly.png │ │ │ │ │ ├── 24x24-cachetype-1.png │ │ │ │ │ ├── 24x24-cachetype-10-inactive.png │ │ │ │ │ ├── 24x24-cachetype-10-oconly.png │ │ │ │ │ ├── 24x24-cachetype-10.png │ │ │ │ │ ├── 24x24-cachetype-11-inactive.png │ │ │ │ │ ├── 24x24-cachetype-11-oconly.png │ │ │ │ │ ├── 24x24-cachetype-11.png │ │ │ │ │ ├── 24x24-cachetype-12-inactive.png │ │ │ │ │ ├── 24x24-cachetype-12-oconly.png │ │ │ │ │ ├── 24x24-cachetype-12.png │ │ │ │ │ ├── 24x24-cachetype-13-inactive.png │ │ │ │ │ ├── 24x24-cachetype-13-oconly.png │ │ │ │ │ ├── 24x24-cachetype-13.png │ │ │ │ │ ├── 24x24-cachetype-14-inactive.png │ │ │ │ │ ├── 24x24-cachetype-14-oconly.png │ │ │ │ │ ├── 24x24-cachetype-14.png │ │ │ │ │ ├── 24x24-cachetype-15-inactive.png │ │ │ │ │ ├── 24x24-cachetype-15-oconly.png │ │ │ │ │ ├── 24x24-cachetype-15.png │ │ │ │ │ ├── 24x24-cachetype-2-inactive.png │ │ │ │ │ ├── 24x24-cachetype-2-oconly.png │ │ │ │ │ ├── 24x24-cachetype-2.png │ │ │ │ │ ├── 24x24-cachetype-3-inactive.png │ │ │ │ │ ├── 24x24-cachetype-3-oconly.png │ │ │ │ │ ├── 24x24-cachetype-3.png │ │ │ │ │ ├── 24x24-cachetype-4-inactive.png │ │ │ │ │ ├── 24x24-cachetype-4-oconly.png │ │ │ │ │ ├── 24x24-cachetype-4.png │ │ │ │ │ ├── 24x24-cachetype-5-inactive.png │ │ │ │ │ ├── 24x24-cachetype-5-oconly.png │ │ │ │ │ ├── 24x24-cachetype-5.png │ │ │ │ │ ├── 24x24-cachetype-6-inactive.png │ │ │ │ │ ├── 24x24-cachetype-6-oconly.png │ │ │ │ │ ├── 24x24-cachetype-6.png │ │ │ │ │ ├── 24x24-cachetype-7-inactive.png │ │ │ │ │ ├── 24x24-cachetype-7-oconly.png │ │ │ │ │ ├── 24x24-cachetype-7.png │ │ │ │ │ ├── 24x24-cachetype-8-inactive.png │ │ │ │ │ ├── 24x24-cachetype-8-oconly.png │ │ │ │ │ ├── 24x24-cachetype-8.png │ │ │ │ │ ├── 24x24-cachetype-9-inactive.png │ │ │ │ │ ├── 24x24-cachetype-9-oconly.png │ │ │ │ │ ├── 24x24-cachetype-9.png │ │ │ │ │ ├── 24x24-found-inactive.png │ │ │ │ │ ├── 24x24-found-oconly.png │ │ │ │ │ ├── 24x24-found.png │ │ │ │ │ ├── 24x24-notfound-inactive.png │ │ │ │ │ ├── 24x24-notfound-oconly.png │ │ │ │ │ ├── 24x24-notfound.png │ │ │ │ │ ├── 24x24-owned-inactive.png │ │ │ │ │ ├── 24x24-owned-oconly.png │ │ │ │ │ └── 24x24-owned.png │ │ │ │ └── coordinate-marker.png │ │ │ ├── media │ │ │ │ ├── 16x16-Instagram.png │ │ │ │ ├── 16x16-facebook.png │ │ │ │ ├── 16x16-feed.png │ │ │ │ ├── 16x16-github.png │ │ │ │ ├── 16x16-mattermost.png │ │ │ │ ├── 16x16-slack.png │ │ │ │ ├── 16x16-twitter.png │ │ │ │ ├── 22x22-feed.png │ │ │ │ ├── 32x32-Instagram.png │ │ │ │ ├── 32x32-facebook.png │ │ │ │ ├── 32x32-feed.png │ │ │ │ ├── 32x32-mattermost.png │ │ │ │ ├── 32x32-slack.png │ │ │ │ ├── 32x32-twitter.png │ │ │ │ ├── cc-by-nc-nd-small.png │ │ │ │ ├── telegram.png │ │ │ │ └── whatsapp.png │ │ │ ├── misc │ │ │ │ ├── 15x15-oc.png │ │ │ │ ├── 15x21-oc.png │ │ │ │ ├── 16x16-ajax-loader.gif │ │ │ │ ├── 16x16-email.png │ │ │ │ ├── 16x16-flag-checker.png │ │ │ │ ├── 16x16-footprints.png │ │ │ │ ├── 16x16-help.png │ │ │ │ ├── 16x16-home.png │ │ │ │ ├── 16x16-list.png │ │ │ │ ├── 16x16-locked.png │ │ │ │ ├── 16x16-wp_reference.png │ │ │ │ ├── 22x22-compass.png │ │ │ │ ├── 22x22-email.png │ │ │ │ ├── 22x22-event.png │ │ │ │ ├── 22x22-home.png │ │ │ │ ├── 22x22-list.png │ │ │ │ ├── 22x22-maintenance.png │ │ │ │ ├── 22x22-news.png │ │ │ │ ├── 22x22-pictures.png │ │ │ │ ├── 22x22-statistic.png │ │ │ │ ├── 22x22-traditional.gif │ │ │ │ ├── 22x22-traditional.png │ │ │ │ ├── 22x22-winner.png │ │ │ │ ├── 25x25-world.png │ │ │ │ ├── 32x32-add-cache.png │ │ │ │ ├── 32x32-checked.png │ │ │ │ ├── 32x32-event.png │ │ │ │ ├── 32x32-gears.png │ │ │ │ ├── 32x32-globi.png │ │ │ │ ├── 32x32-help.png │ │ │ │ ├── 32x32-home.png │ │ │ │ ├── 32x32-ignore.png │ │ │ │ ├── 32x32-impressum.png │ │ │ │ ├── 32x32-list.png │ │ │ │ ├── 32x32-logs.png │ │ │ │ ├── 32x32-news.png │ │ │ │ ├── 32x32-pictures.gif │ │ │ │ ├── 32x32-pictures.png │ │ │ │ ├── 32x32-profile.png │ │ │ │ ├── 32x32-search.png │ │ │ │ ├── 32x32-searchresults.png │ │ │ │ ├── 32x32-statistic.png │ │ │ │ ├── 32x32-statistic2.png │ │ │ │ ├── 32x32-tools.png │ │ │ │ ├── 32x32-traditional.png │ │ │ │ ├── 32x32-verein.png │ │ │ │ ├── 32x32-warning.png │ │ │ │ ├── 32x32-watched.png │ │ │ │ ├── 32x32-winner.png │ │ │ │ ├── 32x32-world.png │ │ │ │ ├── 40x22-oconly.png │ │ │ │ ├── bg-gradient-blue.png │ │ │ │ ├── bg-gradient-grey.png │ │ │ │ ├── donate.gif │ │ │ │ ├── empty.png │ │ │ │ ├── hint-link.gif │ │ │ │ ├── hint.gif │ │ │ │ ├── index.html │ │ │ │ ├── is_oconly.png │ │ │ │ ├── is_oconly_small.png │ │ │ │ ├── linkicon.png │ │ │ │ ├── wp_final.png │ │ │ │ ├── wp_note.png │ │ │ │ ├── wp_parking.png │ │ │ │ ├── wp_path.png │ │ │ │ ├── wp_poi.png │ │ │ │ ├── wp_prototype.png │ │ │ │ └── wp_reference.png │ │ │ ├── navigation │ │ │ │ ├── 15x15-close.png │ │ │ │ ├── 15x15-smallclose.png │ │ │ │ ├── 16x16-browse-first-inactive.png │ │ │ │ ├── 16x16-browse-first.png │ │ │ │ ├── 16x16-browse-last-inactive.png │ │ │ │ ├── 16x16-browse-last.png │ │ │ │ ├── 16x16-browse-next-inactive.png │ │ │ │ ├── 16x16-browse-next.png │ │ │ │ ├── 16x16-browse-prev-inactive.png │ │ │ │ ├── 16x16-browse-prev.png │ │ │ │ ├── 19x19-close.png │ │ │ │ └── 23x23-close.png │ │ │ ├── nodes │ │ │ │ ├── oc-ad.png │ │ │ │ ├── oc-al.png │ │ │ │ ├── oc-at.png │ │ │ │ ├── oc-ba.png │ │ │ │ ├── oc-be.png │ │ │ │ ├── oc-bg.png │ │ │ │ ├── oc-by.png │ │ │ │ ├── oc-ch.png │ │ │ │ ├── oc-cy.png │ │ │ │ ├── oc-cz.png │ │ │ │ ├── oc-de.png │ │ │ │ ├── oc-dk.png │ │ │ │ ├── oc-ee.png │ │ │ │ ├── oc-es.png │ │ │ │ ├── oc-eu.png │ │ │ │ ├── oc-fi.png │ │ │ │ ├── oc-fr.png │ │ │ │ ├── oc-ge.png │ │ │ │ ├── oc-gr.png │ │ │ │ ├── oc-hr.png │ │ │ │ ├── oc-hu.png │ │ │ │ ├── oc-ie.png │ │ │ │ ├── oc-is.png │ │ │ │ ├── oc-it.png │ │ │ │ ├── oc-jp.png │ │ │ │ ├── oc-li.png │ │ │ │ ├── oc-lt.png │ │ │ │ ├── oc-lu.png │ │ │ │ ├── oc-lv.png │ │ │ │ ├── oc-mc.png │ │ │ │ ├── oc-md.png │ │ │ │ ├── oc-mk.png │ │ │ │ ├── oc-mt.png │ │ │ │ ├── oc-nl.png │ │ │ │ ├── oc-no.png │ │ │ │ ├── oc-org-uk.png │ │ │ │ ├── oc-pl.png │ │ │ │ ├── oc-pt.png │ │ │ │ ├── oc-ro.png │ │ │ │ ├── oc-rs.png │ │ │ │ ├── oc-ru.png │ │ │ │ ├── oc-se.png │ │ │ │ ├── oc-si.png │ │ │ │ ├── oc-sk.png │ │ │ │ ├── oc-sm.png │ │ │ │ ├── oc-tr.png │ │ │ │ ├── oc-ua.png │ │ │ │ ├── oc-uk.png │ │ │ │ ├── oc-us.png │ │ │ │ └── oc-va.png │ │ │ ├── oc_404.png │ │ │ ├── oc_logo.png │ │ │ ├── oc_logo.txt │ │ │ ├── oclogo │ │ │ │ ├── 16x16-oc_logo.png │ │ │ │ ├── apple-touch-icon-ipad-retina.png │ │ │ │ ├── apple-touch-icon-ipad.png │ │ │ │ ├── apple-touch-icon-iphone-retina.png │ │ │ │ ├── apple-touch-icon-iphone.png │ │ │ │ ├── license.txt │ │ │ │ ├── oc-team-comment.png │ │ │ │ ├── oc_head_alpha3.png │ │ │ │ ├── oc_head_alpha3_generic.png │ │ │ │ ├── oc_international_logo.png │ │ │ │ ├── oc_logo.png │ │ │ │ └── oc_logo_alpha3.png │ │ │ ├── page │ │ │ │ ├── listheader-bg.png │ │ │ │ ├── nav2-bg.png │ │ │ │ ├── nav2-sel-bg.png │ │ │ │ ├── nav3-title-bg.png │ │ │ │ ├── nav4-bg.png │ │ │ │ └── section-bg.png │ │ │ ├── pl.jpg │ │ │ ├── profile │ │ │ │ ├── 22x22-email.png │ │ │ │ ├── 22x22-home.png │ │ │ │ ├── 32x22-profile.png │ │ │ │ ├── 32x32-adopt.png │ │ │ │ ├── 32x32-email.png │ │ │ │ ├── 32x32-home.png │ │ │ │ ├── 32x32-profile.png │ │ │ │ ├── 32x32-security.png │ │ │ │ ├── 32x32-statistic.png │ │ │ │ ├── 32x32-statistic2.png │ │ │ │ └── index.html │ │ │ ├── rating │ │ │ │ ├── index.html │ │ │ │ ├── rat-0.gif │ │ │ │ ├── rat-1.gif │ │ │ │ ├── rat-2.gif │ │ │ │ ├── rat-3.gif │ │ │ │ ├── rat-4.gif │ │ │ │ └── rat-5.gif │ │ │ ├── sv.jpg │ │ │ ├── thumb │ │ │ │ ├── de │ │ │ │ │ ├── thumb404_1.gif │ │ │ │ │ ├── thumb404_2.gif │ │ │ │ │ ├── thumbextern_1.gif │ │ │ │ │ ├── thumbextern_2.gif │ │ │ │ │ ├── thumbintern_1.gif │ │ │ │ │ ├── thumbintern_2.gif │ │ │ │ │ ├── thumbspoiler_1.gif │ │ │ │ │ ├── thumbspoiler_2.gif │ │ │ │ │ ├── thumbunknown_1.gif │ │ │ │ │ └── thumbunknown_2.gif │ │ │ │ ├── en │ │ │ │ │ ├── thumb404_1.gif │ │ │ │ │ ├── thumb404_2.gif │ │ │ │ │ ├── thumbextern_1.gif │ │ │ │ │ ├── thumbextern_2.gif │ │ │ │ │ ├── thumbintern_1.gif │ │ │ │ │ ├── thumbintern_2.gif │ │ │ │ │ ├── thumbspoiler_1.gif │ │ │ │ │ ├── thumbspoiler_2.gif │ │ │ │ │ ├── thumbunknown_1.gif │ │ │ │ │ └── thumbunknown_2.gif │ │ │ │ ├── fr │ │ │ │ │ ├── thumb404_1.gif │ │ │ │ │ ├── thumb404_2.gif │ │ │ │ │ ├── thumbextern_1.gif │ │ │ │ │ ├── thumbextern_2.gif │ │ │ │ │ ├── thumbintern_1.gif │ │ │ │ │ ├── thumbintern_2.gif │ │ │ │ │ ├── thumbspoiler_1.gif │ │ │ │ │ ├── thumbspoiler_2.gif │ │ │ │ │ ├── thumbunknown_1.gif │ │ │ │ │ └── thumbunknown_2.gif │ │ │ │ ├── index.html │ │ │ │ ├── sample.svg │ │ │ │ └── vorlage.psd │ │ │ └── viewcache │ │ │ │ ├── 14x19-gps-device.png │ │ │ │ ├── 16x16-addscore.png │ │ │ │ ├── 16x16-dnf.png │ │ │ │ ├── 16x16-edit_cache.png │ │ │ │ ├── 16x16-found.png │ │ │ │ ├── 16x16-info.png │ │ │ │ ├── 16x16-maintenance.png │ │ │ │ ├── 16x16-maintenance_shifted.png │ │ │ │ ├── 16x16-note.png │ │ │ │ ├── 16x16-pictures.png │ │ │ │ ├── 16x16-save.png │ │ │ │ ├── 16x16-search.png │ │ │ │ ├── 16x16-visitors.png │ │ │ │ ├── 16x16-watch.png │ │ │ │ ├── arrow_in.png │ │ │ │ ├── arrow_roundtrip.png │ │ │ │ ├── arrow_switch.png │ │ │ │ ├── attributes.png │ │ │ │ ├── binact.png │ │ │ │ ├── box.png │ │ │ │ ├── cache-rate.png │ │ │ │ ├── crypt.png │ │ │ │ ├── date.png │ │ │ │ ├── decrypt.png │ │ │ │ ├── describe.png │ │ │ │ ├── gk.png │ │ │ │ ├── have-found.png │ │ │ │ ├── ignore-16.png │ │ │ │ ├── ignore-18.png │ │ │ │ ├── kompass.png │ │ │ │ ├── link.png │ │ │ │ ├── list-18.png │ │ │ │ ├── list-add-18.png │ │ │ │ ├── loader.gif │ │ │ │ ├── logs.png │ │ │ │ ├── map.png │ │ │ │ ├── new-entry-18.png │ │ │ │ ├── npa.gif │ │ │ │ ├── npa.png │ │ │ │ ├── package_green.png │ │ │ │ ├── page.png │ │ │ │ ├── picture.png │ │ │ │ ├── print-18.png │ │ │ │ ├── rating-star.gif │ │ │ │ ├── rating-star.png │ │ │ │ ├── report-problem-18.png │ │ │ │ ├── stat1.png │ │ │ │ ├── time.png │ │ │ │ ├── tools.png │ │ │ │ ├── watch-18.png │ │ │ │ └── world.png │ │ └── js │ │ │ ├── debug.js │ │ │ ├── editor.js │ │ │ ├── enlargeit │ │ │ ├── LICENSE.TXT │ │ │ ├── bact.png │ │ │ ├── binact.png │ │ │ ├── enlargeit.js │ │ │ ├── enlargeit_source.js │ │ │ ├── flvPlayer.swf │ │ │ ├── loader.gif │ │ │ ├── minuscur.cur │ │ │ ├── minusmovecur.cur │ │ │ ├── original-pluscur.cur │ │ │ ├── player.swf │ │ │ └── pluscur.cur │ │ │ ├── klaro.js │ │ │ ├── klaro_config.js │ │ │ ├── rot13.js │ │ │ ├── search.js │ │ │ ├── session.js │ │ │ ├── tip_balloon.js │ │ │ ├── tip_centerwindow.js │ │ │ ├── tools.js │ │ │ └── wz_tooltip.js │ ├── stdstyle │ │ ├── images │ │ │ ├── README │ │ │ ├── attributes │ │ │ │ ├── Kopie von season_snow.png │ │ │ │ ├── aircraft-disabled.png │ │ │ │ ├── aircraft-no.png │ │ │ │ ├── aircraft.png │ │ │ │ ├── animals-disabled.png │ │ │ │ ├── animals-no.png │ │ │ │ ├── animals.png │ │ │ │ ├── arith_prob-disabled.png │ │ │ │ ├── arith_prob-no.png │ │ │ │ ├── arith_prob.png │ │ │ │ ├── ask-disabled.png │ │ │ │ ├── ask-no.png │ │ │ │ ├── ask.png │ │ │ │ ├── available-disabled.png │ │ │ │ ├── available-no.png │ │ │ │ ├── available.png │ │ │ │ ├── bicycles.png │ │ │ │ ├── boat-disabled.png │ │ │ │ ├── boat-no.png │ │ │ │ ├── boat.png │ │ │ │ ├── campfires.png │ │ │ │ ├── camping.png │ │ │ │ ├── car-disabled.png │ │ │ │ ├── car-no.png │ │ │ │ ├── car.png │ │ │ │ ├── cat1_dummy.png │ │ │ │ ├── cat2_dummy.png │ │ │ │ ├── cat3_dummy.png │ │ │ │ ├── cave-disabled.png │ │ │ │ ├── cave-no.png │ │ │ │ ├── cave.png │ │ │ │ ├── cliff-disabled.png │ │ │ │ ├── cliff-no.png │ │ │ │ ├── cliff.png │ │ │ │ ├── climbing-disabled.png │ │ │ │ ├── climbing-no.png │ │ │ │ ├── climbing.png │ │ │ │ ├── compass-disabled.png │ │ │ │ ├── compass-no.png │ │ │ │ ├── compass.png │ │ │ │ ├── convert.sh │ │ │ │ ├── cross-35x35-rectangle.png │ │ │ │ ├── cross-35x35-round.png │ │ │ │ ├── cross-40x35-triangle.png │ │ │ │ ├── danger-disabled.png │ │ │ │ ├── danger-no.png │ │ │ │ ├── danger.png │ │ │ │ ├── date-disabled.png │ │ │ │ ├── date-no.png │ │ │ │ ├── date.png │ │ │ │ ├── day-disabled.png │ │ │ │ ├── day-no.png │ │ │ │ ├── day.png │ │ │ │ ├── dogs.png │ │ │ │ ├── family_allow.png │ │ │ │ ├── family_forbid.png │ │ │ │ ├── family_notrec.png │ │ │ │ ├── family_rec.png │ │ │ │ ├── fee-disabled.png │ │ │ │ ├── fee-no.png │ │ │ │ ├── fee.png │ │ │ │ ├── firstaid-disabled.png │ │ │ │ ├── firstaid-no.png │ │ │ │ ├── firstaid.png │ │ │ │ ├── flashlight-disabled.png │ │ │ │ ├── flashlight-no.png │ │ │ │ ├── flashlight.png │ │ │ │ ├── hiking-disabled.png │ │ │ │ ├── hiking-no.png │ │ │ │ ├── hiking.png │ │ │ │ ├── horses.png │ │ │ │ ├── hunting-disabled.png │ │ │ │ ├── hunting-no.png │ │ │ │ ├── hunting.png │ │ │ │ ├── index.html │ │ │ │ ├── indoor-disabled.png │ │ │ │ ├── indoor-no.png │ │ │ │ ├── indoor.png │ │ │ │ ├── interestsign-disabled.png │ │ │ │ ├── interestsign-no.png │ │ │ │ ├── interestsign.png │ │ │ │ ├── jeeps.png │ │ │ │ ├── kids-disabled.png │ │ │ │ ├── kids-no.png │ │ │ │ ├── kids.png │ │ │ │ ├── letter-disabled.png │ │ │ │ ├── letter-no.png │ │ │ │ ├── letter.png │ │ │ │ ├── mine-disabled.png │ │ │ │ ├── mine-no.png │ │ │ │ ├── mine.png │ │ │ │ ├── motorcycles.png │ │ │ │ ├── moving-disabled.png │ │ │ │ ├── moving-no.png │ │ │ │ ├── moving.png │ │ │ │ ├── mtbs.png │ │ │ │ ├── naturschutz-disabled.png │ │ │ │ ├── naturschutz-no.png │ │ │ │ ├── naturschutz.png │ │ │ │ ├── night-disabled.png │ │ │ │ ├── night-no.png │ │ │ │ ├── night.png │ │ │ │ ├── nogps-disabled.png │ │ │ │ ├── nogps-no.png │ │ │ │ ├── nogps.png │ │ │ │ ├── oconly-disabled.png │ │ │ │ ├── oconly-no.png │ │ │ │ ├── oconly.png │ │ │ │ ├── offtrail.png │ │ │ │ ├── othercache-disabled.png │ │ │ │ ├── othercache-no.png │ │ │ │ ├── othercache.png │ │ │ │ ├── overnight-disabled.png │ │ │ │ ├── overnight-no.png │ │ │ │ ├── overnight.png │ │ │ │ ├── parking-disabled.png │ │ │ │ ├── parking-no.png │ │ │ │ ├── parking.png │ │ │ │ ├── phone-disabled.png │ │ │ │ ├── phone-no.png │ │ │ │ ├── phone.png │ │ │ │ ├── picnic.png │ │ │ │ ├── plants-disabled.png │ │ │ │ ├── plants-no.png │ │ │ │ ├── plants.png │ │ │ │ ├── public-disabled.png │ │ │ │ ├── public-no.png │ │ │ │ ├── public.png │ │ │ │ ├── quads.png │ │ │ │ ├── rappeling-disabled.png │ │ │ │ ├── rappeling-no.png │ │ │ │ ├── rappeling.png │ │ │ │ ├── restrooms-disabled.png │ │ │ │ ├── restrooms-no.png │ │ │ │ ├── restrooms.png │ │ │ │ ├── riddle-disabled.png │ │ │ │ ├── riddle-no.png │ │ │ │ ├── riddle.png │ │ │ │ ├── scuba-disabled.png │ │ │ │ ├── scuba-no.png │ │ │ │ ├── scuba.png │ │ │ │ ├── season_snow-disabled.png │ │ │ │ ├── season_snow-no.png │ │ │ │ ├── season_snow.png │ │ │ │ ├── snow-disabled.png │ │ │ │ ├── snow-no.png │ │ │ │ ├── snow.png │ │ │ │ ├── snowmobiles.png │ │ │ │ ├── steep-disabled.png │ │ │ │ ├── steep-no.png │ │ │ │ ├── steep.png │ │ │ │ ├── stroller.png │ │ │ │ ├── submerged-disabled.png │ │ │ │ ├── submerged-no.png │ │ │ │ ├── submerged.png │ │ │ │ ├── swimming-disabled.png │ │ │ │ ├── swimming-no.png │ │ │ │ ├── swimming.png │ │ │ │ ├── thorn-disabled.png │ │ │ │ ├── thorn-no.png │ │ │ │ ├── thorn.png │ │ │ │ ├── ticks-disabled.png │ │ │ │ ├── ticks-no.png │ │ │ │ ├── ticks.png │ │ │ │ ├── tide-disabled.png │ │ │ │ ├── tide-no.png │ │ │ │ ├── tide.png │ │ │ │ ├── time-disabled.png │ │ │ │ ├── time-no.png │ │ │ │ ├── time.png │ │ │ │ ├── tools-disabled.png │ │ │ │ ├── tools-no.png │ │ │ │ ├── tools.png │ │ │ │ ├── train-disabled.png │ │ │ │ ├── train-no.png │ │ │ │ ├── train.png │ │ │ │ ├── wading-disabled.png │ │ │ │ ├── wading-no.png │ │ │ │ ├── wading.png │ │ │ │ ├── water-disabled.png │ │ │ │ ├── water-no.png │ │ │ │ ├── water.png │ │ │ │ ├── webcam-disabled.png │ │ │ │ ├── webcam-no.png │ │ │ │ ├── webcam.png │ │ │ │ ├── wheelchair.png │ │ │ │ ├── wiki-disabled.png │ │ │ │ ├── wiki-no.png │ │ │ │ ├── wiki.png │ │ │ │ ├── wwwlink-disabled.png │ │ │ │ ├── wwwlink-no.png │ │ │ │ └── wwwlink.png │ │ │ ├── cacheicon │ │ │ │ ├── 16x16-drivein.gif │ │ │ │ ├── 16x16-event.gif │ │ │ │ ├── 16x16-mathe.gif │ │ │ │ ├── 16x16-moving.gif │ │ │ │ ├── 16x16-multi.gif │ │ │ │ ├── 16x16-mystery.gif │ │ │ │ ├── 16x16-traditional.gif │ │ │ │ ├── 16x16-unknown.gif │ │ │ │ ├── 16x16-virtual.gif │ │ │ │ ├── 16x16-webcam.gif │ │ │ │ ├── 22x22-traditional.gif │ │ │ │ ├── cache-rated.gif │ │ │ │ ├── drivein-a-dnf.gif │ │ │ │ ├── drivein-a-found.gif │ │ │ │ ├── drivein-a-owner.gif │ │ │ │ ├── drivein-a.gif │ │ │ │ ├── drivein-n-dnf.gif │ │ │ │ ├── drivein-n-found.gif │ │ │ │ ├── drivein-n-owner.gif │ │ │ │ ├── drivein-n.gif │ │ │ │ ├── drivein-s-dnf.gif │ │ │ │ ├── drivein-s-found.gif │ │ │ │ ├── drivein-s-owner.gif │ │ │ │ ├── drivein-s.gif │ │ │ │ ├── drivein.gif │ │ │ │ ├── event-a-dnf.gif │ │ │ │ ├── event-a-found.gif │ │ │ │ ├── event-a-owner.gif │ │ │ │ ├── event-a.gif │ │ │ │ ├── event-n-dnf.gif │ │ │ │ ├── event-n-found.gif │ │ │ │ ├── event-n-owner.gif │ │ │ │ ├── event-n.gif │ │ │ │ ├── event-rand1.gif │ │ │ │ ├── event-rand2.gif │ │ │ │ ├── event-rand3.gif │ │ │ │ ├── event-rand4.gif │ │ │ │ ├── event-s-dnf.gif │ │ │ │ ├── event-s-found.gif │ │ │ │ ├── event-s-owner.gif │ │ │ │ ├── event-s.gif │ │ │ │ ├── event.gif │ │ │ │ ├── index.html │ │ │ │ ├── mathe-a-dnf.gif │ │ │ │ ├── mathe-a-found.gif │ │ │ │ ├── mathe-a-owner.gif │ │ │ │ ├── mathe-a.gif │ │ │ │ ├── mathe-n-dnf.gif │ │ │ │ ├── mathe-n-found.gif │ │ │ │ ├── mathe-n-owner.gif │ │ │ │ ├── mathe-n.gif │ │ │ │ ├── mathe-s-dnf.gif │ │ │ │ ├── mathe-s-found.gif │ │ │ │ ├── mathe-s-owner.gif │ │ │ │ ├── mathe-s.gif │ │ │ │ ├── mathe.gif │ │ │ │ ├── mocache.gif │ │ │ │ ├── moving-a-dnf.gif │ │ │ │ ├── moving-a-found.gif │ │ │ │ ├── moving-a-owner.gif │ │ │ │ ├── moving-a.gif │ │ │ │ ├── moving-n-dnf.gif │ │ │ │ ├── moving-n-found.gif │ │ │ │ ├── moving-n-owner.gif │ │ │ │ ├── moving-n.gif │ │ │ │ ├── moving-s-dnf.gif │ │ │ │ ├── moving-s-found.gif │ │ │ │ ├── moving-s-owner.gif │ │ │ │ ├── moving-s.gif │ │ │ │ ├── moving.gif │ │ │ │ ├── multi-a-dnf.gif │ │ │ │ ├── multi-a-found.gif │ │ │ │ ├── multi-a-owner.gif │ │ │ │ ├── multi-a.gif │ │ │ │ ├── multi-n-dnf.gif │ │ │ │ ├── multi-n-found.gif │ │ │ │ ├── multi-n-owner.gif │ │ │ │ ├── multi-n.gif │ │ │ │ ├── multi-s-dnf.gif │ │ │ │ ├── multi-s-found.gif │ │ │ │ ├── multi-s-owner.gif │ │ │ │ ├── multi-s.gif │ │ │ │ ├── multi.gif │ │ │ │ ├── mystery-a-dnf.gif │ │ │ │ ├── mystery-a-found.gif │ │ │ │ ├── mystery-a-owner.gif │ │ │ │ ├── mystery-a.gif │ │ │ │ ├── mystery-n-dnf.gif │ │ │ │ ├── mystery-n-found.gif │ │ │ │ ├── mystery-n-owner.gif │ │ │ │ ├── mystery-n.gif │ │ │ │ ├── mystery-s-dnf.gif │ │ │ │ ├── mystery-s-found.gif │ │ │ │ ├── mystery-s-owner.gif │ │ │ │ ├── mystery-s.gif │ │ │ │ ├── mystery.gif │ │ │ │ ├── newevent.gif │ │ │ │ ├── tmp.gif │ │ │ │ ├── traditional-a-dnf.gif │ │ │ │ ├── traditional-a-found.gif │ │ │ │ ├── traditional-a-owner.gif │ │ │ │ ├── traditional-a.gif │ │ │ │ ├── traditional-n-dnf.gif │ │ │ │ ├── traditional-n-found.gif │ │ │ │ ├── traditional-n-owner.gif │ │ │ │ ├── traditional-n.gif │ │ │ │ ├── traditional-s-dnf.gif │ │ │ │ ├── traditional-s-found.gif │ │ │ │ ├── traditional-s-owner.gif │ │ │ │ ├── traditional-s.gif │ │ │ │ ├── traditional.gif │ │ │ │ ├── unknown-a-dnf.gif │ │ │ │ ├── unknown-a-found.gif │ │ │ │ ├── unknown-a-owner.gif │ │ │ │ ├── unknown-a.gif │ │ │ │ ├── unknown-n-dnf.gif │ │ │ │ ├── unknown-n-found.gif │ │ │ │ ├── unknown-n-owner.gif │ │ │ │ ├── unknown-n.gif │ │ │ │ ├── unknown-s-dnf.gif │ │ │ │ ├── unknown-s-found.gif │ │ │ │ ├── unknown-s-owner.gif │ │ │ │ ├── unknown-s.gif │ │ │ │ ├── unknown.gif │ │ │ │ ├── virtual-a-dnf.gif │ │ │ │ ├── virtual-a-found.gif │ │ │ │ ├── virtual-a-owner.gif │ │ │ │ ├── virtual-a.gif │ │ │ │ ├── virtual-n-dnf.gif │ │ │ │ ├── virtual-n-found.gif │ │ │ │ ├── virtual-n-owner.gif │ │ │ │ ├── virtual-n.gif │ │ │ │ ├── virtual-s-dnf.gif │ │ │ │ ├── virtual-s-found.gif │ │ │ │ ├── virtual-s-owner.gif │ │ │ │ ├── virtual-s.gif │ │ │ │ ├── virtual.gif │ │ │ │ ├── webcam-a-dnf.gif │ │ │ │ ├── webcam-a-found.gif │ │ │ │ ├── webcam-a-owner.gif │ │ │ │ ├── webcam-a.gif │ │ │ │ ├── webcam-n-dnf.gif │ │ │ │ ├── webcam-n-found.gif │ │ │ │ ├── webcam-n-owner.gif │ │ │ │ ├── webcam-n.gif │ │ │ │ ├── webcam-s-dnf.gif │ │ │ │ ├── webcam-s-found.gif │ │ │ │ ├── webcam-s-owner.gif │ │ │ │ ├── webcam-s.gif │ │ │ │ └── webcam.gif │ │ │ ├── cachestatus │ │ │ │ ├── 16x16-go.png │ │ │ │ ├── 16x16-stop.png │ │ │ │ ├── 16x16-trash.png │ │ │ │ └── index.html │ │ │ ├── google-earth │ │ │ │ ├── README │ │ │ │ ├── drivein.png │ │ │ │ ├── event.png │ │ │ │ ├── index.html │ │ │ │ ├── locationless.png │ │ │ │ ├── math.png │ │ │ │ ├── moving.png │ │ │ │ ├── multi.png │ │ │ │ ├── myst.png │ │ │ │ ├── tradi.png │ │ │ │ ├── unknown.png │ │ │ │ ├── virtual.png │ │ │ │ └── webcam.png │ │ │ ├── index.html │ │ │ └── logtype │ │ │ │ ├── 16x16-dnf.png │ │ │ │ ├── 16x16-found.png │ │ │ │ ├── 16x16-go.png │ │ │ │ ├── 16x16-note.png │ │ │ │ ├── 16x16-stop.png │ │ │ │ ├── 16x16-trash.png │ │ │ │ └── index.html │ │ └── index.html │ └── tinymce │ │ ├── config │ │ ├── content.css │ │ ├── desc.js.php │ │ ├── index.html │ │ ├── list.js.php │ │ ├── log.js.php │ │ └── user.js.php │ │ ├── langs │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── ch.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── ia.js │ │ ├── id.js │ │ ├── ii.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kl.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sc.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── tw.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── vi.js │ │ ├── zh.js │ │ └── zu.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advhr │ │ │ ├── css │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── rule.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── rule.htm │ │ ├── advimage │ │ │ ├── css │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ └── sample.gif │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── advlink │ │ │ ├── css │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── advlink.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── link.htm │ │ ├── advlist │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── langs │ │ │ │ └── en.js │ │ ├── bbcode │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── js │ │ │ │ └── emotions.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── example │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── example.gif │ │ │ ├── js │ │ │ │ └── dialog.js │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ ├── fullpage │ │ │ ├── css │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js │ │ │ │ └── fullpage.js │ │ │ └── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ ├── fullscreen │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins │ │ │ │ └── clearlooks2 │ │ │ │ │ ├── img │ │ │ │ │ ├── alert.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── buttons.gif │ │ │ │ │ ├── confirm.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ └── vertical.gif │ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── flash.gif │ │ │ │ ├── flv_player.swf │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── media.htm │ │ ├── nonbreaking │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ ├── pagebreak.gif │ │ │ │ └── trans.gif │ │ ├── paste │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── searchreplace.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ └── wline.gif │ │ ├── style │ │ │ ├── css │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── props.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── props.htm │ │ ├── tabfocus │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table │ │ │ ├── cell.htm │ │ │ ├── css │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template │ │ │ ├── blank.htm │ │ │ ├── css │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── template.js │ │ │ ├── langs │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh_dlg.js │ │ │ │ └── zu_dlg.js │ │ │ └── template.htm │ │ ├── visualchars │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordcount │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras │ │ │ ├── abbr.htm │ │ │ ├── acronym.htm │ │ │ ├── attributes.htm │ │ │ ├── cite.htm │ │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ │ ├── del.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── ins.htm │ │ │ ├── js │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ │ └── langs │ │ │ ├── ar_dlg.js │ │ │ ├── az_dlg.js │ │ │ ├── be_dlg.js │ │ │ ├── bg_dlg.js │ │ │ ├── bn_dlg.js │ │ │ ├── br_dlg.js │ │ │ ├── bs_dlg.js │ │ │ ├── ca_dlg.js │ │ │ ├── ch_dlg.js │ │ │ ├── cs_dlg.js │ │ │ ├── cy_dlg.js │ │ │ ├── da_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── dv_dlg.js │ │ │ ├── el_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── es_dlg.js │ │ │ ├── et_dlg.js │ │ │ ├── eu_dlg.js │ │ │ ├── fa_dlg.js │ │ │ ├── fi_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── gl_dlg.js │ │ │ ├── gu_dlg.js │ │ │ ├── he_dlg.js │ │ │ ├── hi_dlg.js │ │ │ ├── hr_dlg.js │ │ │ ├── hu_dlg.js │ │ │ ├── hy_dlg.js │ │ │ ├── ia_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── ii_dlg.js │ │ │ ├── is_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── ka_dlg.js │ │ │ ├── kl_dlg.js │ │ │ ├── ko_dlg.js │ │ │ ├── lb_dlg.js │ │ │ ├── lt_dlg.js │ │ │ ├── lv_dlg.js │ │ │ ├── mk_dlg.js │ │ │ ├── ml_dlg.js │ │ │ ├── mn_dlg.js │ │ │ ├── ms_dlg.js │ │ │ ├── nb_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── nn_dlg.js │ │ │ ├── no_dlg.js │ │ │ ├── pl_dlg.js │ │ │ ├── ps_dlg.js │ │ │ ├── pt_dlg.js │ │ │ ├── ro_dlg.js │ │ │ ├── ru_dlg.js │ │ │ ├── sc_dlg.js │ │ │ ├── se_dlg.js │ │ │ ├── si_dlg.js │ │ │ ├── sk_dlg.js │ │ │ ├── sl_dlg.js │ │ │ ├── sq_dlg.js │ │ │ ├── sr_dlg.js │ │ │ ├── sv_dlg.js │ │ │ ├── ta_dlg.js │ │ │ ├── te_dlg.js │ │ │ ├── th_dlg.js │ │ │ ├── tr_dlg.js │ │ │ ├── tt_dlg.js │ │ │ ├── tw_dlg.js │ │ │ ├── uk_dlg.js │ │ │ ├── ur_dlg.js │ │ │ ├── vi_dlg.js │ │ │ ├── zh_dlg.js │ │ │ └── zu_dlg.js │ │ ├── themes │ │ ├── advanced │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ └── icons.gif │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── zu.js │ │ │ │ └── zu_dlg.js │ │ │ ├── link.htm │ │ │ ├── skins │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── img │ │ │ └── icons.gif │ │ │ ├── langs │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── ch.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── ia.js │ │ │ ├── id.js │ │ │ ├── ii.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── kl.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sc.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── tw.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── vi.js │ │ │ ├── zh.js │ │ │ └── zu.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── content.css │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ ├── content.css │ │ │ ├── img │ │ │ └── button_bg.png │ │ │ └── ui.css │ │ ├── tiny_mce.js │ │ ├── tiny_mce_gzip.js │ │ ├── tiny_mce_gzip.php │ │ ├── tiny_mce_popup.js │ │ ├── tiny_mce_src.js │ │ └── utils │ │ ├── editable_selects.js │ │ ├── form_utils.js │ │ ├── mctabs.js │ │ └── validate.js ├── restorecaches.php ├── robots-dist.txt ├── search.php ├── searchplugin.php ├── sitemap.php ├── src │ ├── .htaccess │ ├── Oc │ │ ├── AbstractController.php │ │ ├── Account │ │ │ └── Subscriber │ │ │ │ └── MenuSubscriber.php │ │ ├── Changelog │ │ │ ├── Controller │ │ │ │ └── ChangelogController.php │ │ │ └── Subscriber │ │ │ │ └── MenuSubscriber.php │ │ ├── Command │ │ │ ├── AbstractCommand.php │ │ │ ├── ClearWebCacheCommand.php │ │ │ ├── CodeCoverageCommand.php │ │ │ ├── CodeSnifferCommand.php │ │ │ ├── CreateWebCacheCommand.php │ │ │ ├── ExportLegacyTranslationCommand.php │ │ │ ├── ImportLegacyTranslationCommand.php │ │ │ ├── JournaldPostfixLogsCommand.php │ │ │ └── OkapiCronjobsCommand.php │ │ ├── Country │ │ │ ├── CountryEntity.php │ │ │ ├── CountryRepository.php │ │ │ └── CountryService.php │ │ ├── FieldNotes │ │ │ ├── Context │ │ │ │ └── HandleFormContext.php │ │ │ ├── Controller │ │ │ │ └── FieldNotesController.php │ │ │ ├── Enum │ │ │ │ └── LogType.php │ │ │ ├── Exception │ │ │ │ └── FileFormatException.php │ │ │ ├── Form │ │ │ │ ├── UploadFormData.php │ │ │ │ ├── UploadFormDataFactory.php │ │ │ │ └── UploadType.php │ │ │ ├── Import │ │ │ │ ├── Context │ │ │ │ │ └── ImportContext.php │ │ │ │ ├── FileParser.php │ │ │ │ ├── ImportService.php │ │ │ │ ├── Importer.php │ │ │ │ └── StructMapper.php │ │ │ ├── Persistence │ │ │ │ ├── FieldNoteEntity.php │ │ │ │ ├── FieldNoteRepository.php │ │ │ │ └── FieldNoteService.php │ │ │ ├── Struct │ │ │ │ └── FieldNote.php │ │ │ ├── Subscriber │ │ │ │ └── MenuSubscriber.php │ │ │ └── Validator │ │ │ │ └── Constraints │ │ │ │ ├── DateTime.php │ │ │ │ ├── DateTimeValidator.php │ │ │ │ ├── LogType.php │ │ │ │ └── LogTypeValidator.php │ │ ├── GeoCache │ │ │ ├── Controller │ │ │ │ ├── GeoCacheController.php │ │ │ │ └── GeoCacheFileController.php │ │ │ ├── Enum │ │ │ │ ├── GeoCacheType.php │ │ │ │ ├── LogType.php │ │ │ │ ├── NeedMaintenance.php │ │ │ │ └── WaypointType.php │ │ │ ├── Exception │ │ │ │ └── UnknownWaypointTypeException.php │ │ │ ├── Persistence │ │ │ │ ├── GeoCache │ │ │ │ │ ├── GeoCacheEntity.php │ │ │ │ │ ├── GeoCacheRepository.php │ │ │ │ │ └── GeoCacheService.php │ │ │ │ └── GeoCacheLog │ │ │ │ │ ├── GeoCacheLogEntity.php │ │ │ │ │ ├── GeoCacheLogRepository.php │ │ │ │ │ └── GeoCacheLogService.php │ │ │ ├── Reports.php │ │ │ ├── StatisticPicture.php │ │ │ └── Util.php │ │ ├── GlobalContext │ │ │ ├── GlobalContext.php │ │ │ ├── GlobalContextFactory.php │ │ │ ├── Provider │ │ │ │ └── LanguageProvider.php │ │ │ └── Subscriber │ │ │ │ └── GlobalContextSubscriber.php │ │ ├── Import │ │ │ └── Logs │ │ │ │ └── Controller │ │ │ │ └── ImportLogsController.php │ │ ├── Index │ │ │ ├── Controller │ │ │ │ └── IndexController.php │ │ │ └── Subscriber │ │ │ │ └── MenuSubscriber.php │ │ ├── Language │ │ │ ├── LanguageEntity.php │ │ │ ├── LanguageRepository.php │ │ │ └── LanguageService.php │ │ ├── Libse │ │ │ ├── Cache │ │ │ │ └── ManagerCache.php │ │ │ ├── CacheNote │ │ │ │ ├── HandlerCacheNote.php │ │ │ │ └── PresenterCacheNote.php │ │ │ ├── ChildWp │ │ │ │ ├── AddPresenterChildWp.php │ │ │ │ ├── ControllerChildWp.php │ │ │ │ ├── DeletePresenterChildWp.php │ │ │ │ ├── EditPresenterChildWp.php │ │ │ │ ├── HandlerChildWp.php │ │ │ │ ├── PresenterChildWp.php │ │ │ │ └── TypeChildWp.php │ │ │ ├── Coordinate │ │ │ │ ├── CoordinateCoordinate.php │ │ │ │ ├── FormatterCoordinate.php │ │ │ │ ├── PresenterCoordinate.php │ │ │ │ └── TypeCoordinate.php │ │ │ ├── Http │ │ │ │ └── RequestHttp.php │ │ │ ├── Language │ │ │ │ └── TranslatorLanguage.php │ │ │ └── Validator │ │ │ │ ├── AlwaysValidValidator.php │ │ │ │ ├── ArrayValidator.php │ │ │ │ ├── IntegerValidator.php │ │ │ │ ├── NumericValidator.php │ │ │ │ ├── RealValidator.php │ │ │ │ └── RegexValidator.php │ │ ├── Menu │ │ │ ├── Event │ │ │ │ └── MenuEvent.php │ │ │ ├── MenuBuilder.php │ │ │ ├── MenuEnum.php │ │ │ └── Renderer │ │ │ │ └── MainRenderer.php │ │ ├── Page │ │ │ ├── Controller │ │ │ │ └── PageController.php │ │ │ ├── Exception │ │ │ │ ├── PageNotFoundException.php │ │ │ │ └── PageTranslationNotFoundException.php │ │ │ ├── PageProvider.php │ │ │ ├── PageStruct.php │ │ │ ├── Persistence │ │ │ │ ├── BlockEntity.php │ │ │ │ ├── BlockRepository.php │ │ │ │ ├── BlockService.php │ │ │ │ ├── PageEntity.php │ │ │ │ ├── PageRepository.php │ │ │ │ └── PageService.php │ │ │ └── Subscriber │ │ │ │ └── MenuSubscriber.php │ │ ├── Postfix │ │ │ ├── JournalLogs.php │ │ │ └── LogEntity.php │ │ ├── Repository │ │ │ ├── AbstractEntity.php │ │ │ ├── EntityInterface.php │ │ │ └── Exception │ │ │ │ ├── RecordAlreadyExistsException.php │ │ │ │ ├── RecordNotFoundException.php │ │ │ │ ├── RecordNotPersistedException.php │ │ │ │ └── RecordsNotFoundException.php │ │ ├── Session │ │ │ ├── SessionDataCookie.php │ │ │ └── SessionDataInterface.php │ │ ├── Translation │ │ │ ├── CrowdinExport.php │ │ │ ├── CrowdinImport.php │ │ │ └── TranslationStruct.php │ │ ├── User │ │ │ ├── UserEntity.php │ │ │ ├── UserProvider.php │ │ │ ├── UserRepository.php │ │ │ └── UserService.php │ │ ├── Util │ │ │ ├── CBench.php │ │ │ └── ProcessSync.php │ │ └── Validator │ │ │ ├── Constraints │ │ │ ├── PersistedWaypoint.php │ │ │ ├── PersistedWaypointValidator.php │ │ │ ├── Waypoint.php │ │ │ └── WaypointValidator.php │ │ │ ├── Exception │ │ │ └── ValidationException.php │ │ │ └── Validator.php │ └── OcLegacy │ │ ├── Admin │ │ └── Gdpr │ │ │ └── GdprHandler.php │ │ ├── Cache │ │ └── WebCache.php │ │ ├── Cronjobs │ │ ├── PublishCaches.php │ │ └── SiteMaps.php │ │ ├── Editor │ │ └── EditorConstants.php │ │ ├── GeoCache │ │ └── Recommendation.php │ │ ├── Map │ │ └── StaticMap.php │ │ ├── Security │ │ └── LegacyAuthenticator.php │ │ ├── SmartyPlugins │ │ ├── block.nocache.php │ │ ├── block.t.php │ │ ├── function.array_search.php │ │ ├── function.coordinput.php │ │ ├── function.count.php │ │ ├── function.instr.php │ │ ├── function.rand.php │ │ ├── function.repeat.php │ │ ├── function.season.php │ │ ├── function.translation.php │ │ ├── modifier.base64encode.php │ │ ├── modifier.escapejs.php │ │ ├── modifier.format_hour.php │ │ ├── modifier.hyperlink.php │ │ ├── modifier.nbsp.php │ │ ├── modifier.rot13html.php │ │ ├── modifier.smiley.php │ │ ├── modifier.sprintf.php │ │ ├── modifier.stripcrlf.php │ │ ├── modifier.urlencode.php │ │ └── prefilter.t.php │ │ ├── Template │ │ └── LegacyTemplateTrait.php │ │ ├── Translation │ │ └── TranslationService.php │ │ ├── User │ │ └── LegacyUser.php │ │ └── Util │ │ ├── PasswordCrypt.php │ │ └── SiteMapXml.php ├── static_map.php ├── statpics │ └── htaccess-dist ├── symfony_app.php ├── templates2 │ ├── .htaccess │ ├── index.html │ ├── mail │ │ ├── index.html │ │ ├── newemail.tpl │ │ ├── newpw.tpl │ │ ├── register.tpl │ │ ├── remindemail.tpl │ │ ├── sql_error.tpl │ │ ├── sql_warn.tpl │ │ ├── sys_main.tpl │ │ └── usercontactmail.tpl │ └── ocstyle │ │ ├── activation.tpl │ │ ├── addtolist.tpl │ │ ├── adminhistory.tpl │ │ ├── adminreports.tpl │ │ ├── admins.tpl │ │ ├── adminuser.tpl │ │ ├── adminuser │ │ └── gdpr_deletion.tpl │ │ ├── adoptcache.tpl │ │ ├── articles.tpl │ │ ├── articles │ │ ├── DE │ │ │ ├── cacheinfo.tpl │ │ │ ├── changelog.tpl │ │ │ ├── contact.tpl │ │ │ ├── donations.tpl │ │ │ ├── dsb.tpl │ │ │ ├── geocaching.tpl │ │ │ ├── htmltags.tpl │ │ │ ├── impressum.tpl │ │ │ ├── index.html │ │ │ ├── team.tpl │ │ │ ├── terms.tpl │ │ │ └── verein.tpl │ │ ├── EN │ │ │ ├── cacheinfo.tpl │ │ │ ├── changelog.tpl │ │ │ ├── contact.tpl │ │ │ ├── donations.tpl │ │ │ ├── dsb.tpl │ │ │ ├── geocaching.tpl │ │ │ ├── htmltags.tpl │ │ │ ├── impressum.tpl │ │ │ ├── index.html │ │ │ ├── team.tpl │ │ │ └── verein.tpl │ │ ├── ES │ │ │ ├── cacheinfo.tpl │ │ │ ├── geocaching.tpl │ │ │ └── index.html │ │ └── IT │ │ │ ├── cacheinfo.tpl │ │ │ ├── geocaching.tpl │ │ │ └── index.html │ │ ├── articles_res_attributes.tpl │ │ ├── cache_note.tpl │ │ ├── cachelists.tpl │ │ ├── change_statpic.tpl │ │ ├── childwp.tpl │ │ ├── coordinate_input.tpl │ │ ├── coordinates.tpl │ │ ├── dbmaintain.tpl │ │ ├── error.tpl │ │ ├── event_attendance.tpl │ │ ├── header │ │ └── cookie_notice.tpl │ │ ├── imagebrowser.tpl │ │ ├── index.html │ │ ├── log_cache.tpl │ │ ├── login.tpl │ │ ├── mailto.tpl │ │ ├── map2.tpl │ │ ├── mydescription.tpl │ │ ├── mydetails.tpl │ │ ├── myhome.tpl │ │ ├── myignores.tpl │ │ ├── mylists.tpl │ │ ├── myprofile.tpl │ │ ├── mystatpic.tpl │ │ ├── mytop5.tpl │ │ ├── mywatches.tpl │ │ ├── newcaches.tpl │ │ ├── newcachesrest.tpl │ │ ├── newemail.tpl │ │ ├── newlogpics.tpl │ │ ├── newlogs.tpl │ │ ├── newlogsrest.tpl │ │ ├── newpw.tpl │ │ ├── oconly81.tpl │ │ ├── ownerlogs.tpl │ │ ├── ownlogs.tpl │ │ ├── picture.tpl │ │ ├── query.tpl │ │ ├── recommendations.tpl │ │ ├── register.tpl │ │ ├── remindemail.tpl │ │ ├── reportcache.tpl │ │ ├── res_attribgroup.tpl │ │ ├── res_attribute.tpl │ │ ├── res_cacheicon.tpl │ │ ├── res_cacheicon_15.tpl │ │ ├── res_cacheicon_22.tpl │ │ ├── res_cachelist_link.tpl │ │ ├── res_cachelists.tpl │ │ ├── res_cachestatus.tpl │ │ ├── res_cachestatus_span.tpl │ │ ├── res_cachetypestats.tpl │ │ ├── res_countrylinks.tpl │ │ ├── res_difficon.tpl │ │ ├── res_logentry.tpl │ │ ├── res_logentry_logitem.tpl │ │ ├── res_logflags.tpl │ │ ├── res_logpicture.tpl │ │ ├── res_logpictures.tpl │ │ ├── res_logtype.tpl │ │ ├── res_newcaches.tpl │ │ ├── res_newevents.tpl │ │ ├── res_newratings.tpl │ │ ├── res_oconly.tpl │ │ ├── res_oconly81.tpl │ │ ├── res_pager.tpl │ │ ├── res_passworderror.tpl │ │ ├── res_rssparser.tpl │ │ ├── res_state_warning.tpl │ │ ├── res_terricon.tpl │ │ ├── res_userstats.tpl │ │ ├── restorecaches.tpl │ │ ├── search.result.caches.row.tpl │ │ ├── search.result.caches.tpl │ │ ├── search.tpl │ │ ├── search.tpl.inc.php │ │ ├── search_selectlocid.tpl │ │ ├── sitemap.tpl │ │ ├── start.tpl │ │ ├── symfony.tpl │ │ ├── sys_breadcrumb.tpl │ │ ├── sys_main.tpl │ │ ├── sys_oc404.tpl │ │ ├── sys_outofservice.tpl │ │ ├── sys_sqldebugger.tpl │ │ ├── sys_submenu.tpl │ │ ├── sys_topmenu.tpl │ │ ├── tops.tpl │ │ ├── translate.tpl │ │ ├── usertops.tpl │ │ ├── verifyemail.tpl │ │ ├── viewcache.tpl │ │ ├── viewcache_print.tpl │ │ ├── viewlogs.tpl │ │ ├── viewprofile.tpl │ │ └── viewprofile_pics.tpl ├── theme │ ├── frontend │ │ ├── images │ │ │ ├── logo │ │ │ │ ├── globi.png │ │ │ │ ├── globi_cache.png │ │ │ │ └── qr-code-oc-logo.png │ │ │ ├── logo_white.png │ │ │ ├── markers │ │ │ │ └── small-blue.png │ │ │ └── profile_unknown.png │ │ ├── js │ │ │ ├── files.json │ │ │ ├── jquery.plugin-base.js │ │ │ ├── jquery.responsive.js │ │ │ ├── jquery.state-manager.js │ │ │ └── plugins │ │ │ │ └── jquery.hello-world.js │ │ ├── scss │ │ │ ├── _common.scss │ │ │ ├── _global.scss │ │ │ ├── _mixins │ │ │ │ └── _position.scss │ │ │ ├── _settings.scss │ │ │ ├── _settings_legacy.scss │ │ │ ├── all.scss │ │ │ ├── blocks │ │ │ │ ├── _legacy │ │ │ │ │ └── flash-messages │ │ │ │ │ │ └── flash-messages.scss │ │ │ │ ├── flash-messages │ │ │ │ │ └── flash-messages.scss │ │ │ │ ├── header │ │ │ │ │ ├── header-items.scss │ │ │ │ │ └── header.scss │ │ │ │ ├── kitchensink │ │ │ │ │ └── kitchensink.scss │ │ │ │ ├── main │ │ │ │ │ ├── main-inner-content.scss │ │ │ │ │ └── main.scss │ │ │ │ ├── navigation │ │ │ │ │ ├── navigation-item.scss │ │ │ │ │ ├── navigation-items.scss │ │ │ │ │ └── navigation.scss │ │ │ │ ├── sidebar │ │ │ │ │ └── sidebar.scss │ │ │ │ └── site │ │ │ │ │ └── site.scss │ │ │ ├── legacy.scss │ │ │ └── lib │ │ │ │ └── bootstrap │ │ │ │ └── type.scss │ │ └── views │ │ │ ├── _components │ │ │ ├── flash-messages │ │ │ │ ├── flash-message.html.twig │ │ │ │ └── flash-messages.html.twig │ │ │ ├── footer │ │ │ │ └── footer.html.twig │ │ │ ├── header │ │ │ │ └── header.html.twig │ │ │ ├── kitchensink │ │ │ │ └── color.html.twig │ │ │ ├── navigation │ │ │ │ └── navigation.html.twig │ │ │ ├── sidebar │ │ │ │ └── sidebar.html.twig │ │ │ └── topnavigation.html.twig │ │ │ ├── base.html.twig │ │ │ ├── changelog │ │ │ └── index.html.twig │ │ │ ├── field-notes │ │ │ └── index.html.twig │ │ │ ├── importer │ │ │ └── logs.html.twig │ │ │ ├── index │ │ │ └── legacy │ │ │ │ ├── base.html.twig │ │ │ │ ├── page-title.html.twig │ │ │ │ └── page.html.twig │ │ │ ├── kitchensink │ │ │ └── index.html.twig │ │ │ ├── macros │ │ │ └── geocache.html.twig │ │ │ ├── page │ │ │ ├── fallback.html.twig │ │ │ └── index.html.twig │ │ │ └── partials │ │ │ └── flash-messages.html.twig │ └── img │ │ └── background.jpg ├── thumbs.php ├── tops.php ├── translate.php ├── usertops.php ├── util │ ├── notification │ │ ├── .htaccess │ │ ├── run_notify.php │ │ └── settings-dist.inc.php │ └── watchlist │ │ ├── .htaccess │ │ ├── runwatch.php │ │ └── settings-dist.inc.php ├── util2 │ ├── .htaccess │ ├── cron │ │ ├── .htaccess │ │ ├── fill_search_index.php │ │ ├── index.html │ │ ├── modules │ │ │ ├── .htaccess │ │ │ ├── autoarchive_caches.class.php │ │ │ ├── cache_location.class.php │ │ │ ├── cache_npa_areas.class.php │ │ │ ├── cache_waypoint_pool.class.php │ │ │ ├── cleanup_temptables.class.php │ │ │ ├── geokrety.class.php │ │ │ ├── index.html │ │ │ ├── orphan_cleanup.class.php │ │ │ ├── picture_cleanup.class.php │ │ │ ├── publish_caches.class.php │ │ │ ├── purge_logs.class.php │ │ │ ├── push_waypoint_reports.class.php │ │ │ ├── rating_tops.class.php │ │ │ ├── replicate.class.php │ │ │ ├── replication_monitor.class.php │ │ │ ├── search_index.class.php │ │ │ ├── sitemaps.class.php │ │ │ ├── slave_cleanup.class.php │ │ │ └── user_delete.class.php │ │ └── runcron.php │ ├── geodb │ │ ├── .htaccess │ │ └── make_searchindex.php │ ├── geokrety │ │ ├── .htaccess │ │ ├── check-waypoints.php │ │ ├── fix-waypoints.php │ │ └── save-gkstate.php │ ├── gns │ │ ├── .htaccess │ │ ├── gns_import.php │ │ ├── mkadmtxt.php │ │ └── mksearchindex.php │ ├── google-earth │ │ ├── .htaccess │ │ ├── caches-en.php │ │ ├── caches.php │ │ ├── index.html │ │ ├── opencaching-en.kml │ │ └── opencaching.kml │ ├── index.html │ └── stats │ │ ├── .htaccess │ │ ├── index.html │ │ ├── owner.php │ │ └── rank.php ├── var │ ├── .htaccess │ ├── cache2 │ │ ├── .htaccess │ │ ├── geokrety │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── html_purifier │ │ │ ├── .htaccess │ │ │ └── index.html │ │ ├── index.html │ │ ├── smarty │ │ │ └── .htaccess │ │ ├── staticmap │ │ │ └── .gitkeep │ │ └── translate │ │ │ ├── .htaccess │ │ │ └── index.html │ ├── crowdin │ │ └── .gitkeep │ ├── errorlog │ │ └── .htaccess │ ├── logs │ │ └── .htaccess │ └── okapi │ │ ├── .htaccess │ │ └── index.html ├── verifyemail.php ├── viewcache.php ├── viewlogs.php └── viewprofile.php ├── htdocs_symfony ├── .env ├── .env.test ├── .gitignore ├── .stylelintignore ├── .stylelintrc.json ├── assets │ ├── app │ │ ├── images │ │ │ ├── .gitignore │ │ │ └── head │ │ │ │ ├── oc_titelbild_lostplace.jpg │ │ │ │ └── oc_titelbild_norwegen.jpg │ │ ├── oc-style.js │ │ └── styles │ │ │ ├── lib │ │ │ └── _variables.scss │ │ │ └── oc-style.scss │ ├── backend │ │ ├── backend.js │ │ ├── images │ │ │ └── .gitignore │ │ └── styles │ │ │ └── app.scss │ ├── bs4 │ │ ├── bs4.js │ │ └── style │ │ │ └── bs4.scss │ └── shared.js ├── bin │ ├── console │ └── phpunit ├── composer.json ├── composer.lock ├── config │ ├── bundles.php │ ├── packages │ │ ├── admin_lte.php │ │ ├── assets.php │ │ ├── cache.php │ │ ├── dev │ │ │ ├── debug.php │ │ │ ├── maker.php │ │ │ ├── monolog.php │ │ │ └── web_profiler.php │ │ ├── doctrine.php │ │ ├── doctrine_migrations.php │ │ ├── framework.php │ │ ├── mailer.php │ │ ├── notifier.php │ │ ├── prod │ │ │ ├── deprecations.php │ │ │ ├── doctrine.php │ │ │ ├── monolog.php │ │ │ ├── routing.php │ │ │ └── webpack_encore.php │ │ ├── routing.php │ │ ├── security.php │ │ ├── sensio_framework_extra.php │ │ ├── test │ │ │ ├── framework.php │ │ │ ├── monolog.php │ │ │ ├── twig.php │ │ │ ├── validator.php │ │ │ ├── web_profiler.php │ │ │ └── webpack_encore.php │ │ ├── translation.php │ │ ├── twig.php │ │ ├── validator.php │ │ └── webpack_encore.php │ ├── preload.php │ ├── routes.php │ ├── routes │ │ ├── annotations.php │ │ └── dev │ │ │ ├── framework.php │ │ │ └── web_profiler.php │ └── services.php ├── migrations │ ├── .gitignore │ ├── Version20201014195236.php │ ├── Version20210810190121.php │ ├── Version20210811130713.php │ ├── Version20210811184533.php │ ├── Version20210811184716.php │ ├── Version20210929190700.php │ ├── Version20211124201800.php │ ├── Version20221213143312.php │ └── Version20230404180000.php ├── package.json ├── phpunit.xml.dist ├── postcss.config.js ├── public │ ├── build │ │ └── oc-style.css │ ├── favicon.ico │ ├── images │ │ ├── cacheTypes │ │ │ ├── drivein-active-found.svg │ │ │ ├── drivein-active-notfound.svg │ │ │ ├── drivein-active-owned.svg │ │ │ ├── drivein-active-untried-oconly-border.svg │ │ │ ├── drivein-active-untried.svg │ │ │ ├── drivein-archived-found.svg │ │ │ ├── drivein-archived-notfound.svg │ │ │ ├── drivein-archived-owned.svg │ │ │ ├── drivein-archived-untried.svg │ │ │ ├── drivein-inactive-found.svg │ │ │ ├── drivein-inactive-notfound.svg │ │ │ ├── drivein-inactive-owned.svg │ │ │ ├── drivein-inactive-untried.svg │ │ │ ├── event-active-found.svg │ │ │ ├── event-active-notfound.svg │ │ │ ├── event-active-owned.svg │ │ │ ├── event-active-untried-oconly-border.svg │ │ │ ├── event-active-untried.svg │ │ │ ├── event-archived-found.svg │ │ │ ├── event-archived-notfound.svg │ │ │ ├── event-archived-owned.svg │ │ │ ├── event-archived-untried.svg │ │ │ ├── event-inactive-found.svg │ │ │ ├── event-inactive-notfound.svg │ │ │ ├── event-inactive-owned.svg │ │ │ ├── event-inactive-untried.svg │ │ │ ├── mathe-active-found.svg │ │ │ ├── mathe-active-notfound.svg │ │ │ ├── mathe-active-owned.svg │ │ │ ├── mathe-active-untried-oconly-border.svg │ │ │ ├── mathe-active-untried.svg │ │ │ ├── mathe-archived-found.svg │ │ │ ├── mathe-archived-notfound.svg │ │ │ ├── mathe-archived-owned.svg │ │ │ ├── mathe-archived-untried.svg │ │ │ ├── mathe-inactive-found.svg │ │ │ ├── mathe-inactive-notfound.svg │ │ │ ├── mathe-inactive-owned.svg │ │ │ ├── mathe-inactive-untried.svg │ │ │ ├── moving-active-found.svg │ │ │ ├── moving-active-notfound.svg │ │ │ ├── moving-active-owned.svg │ │ │ ├── moving-active-untried-oconly-border.svg │ │ │ ├── moving-active-untried.svg │ │ │ ├── moving-archived-found.svg │ │ │ ├── moving-archived-notfound.svg │ │ │ ├── moving-archived-owned.svg │ │ │ ├── moving-archived-untried.svg │ │ │ ├── moving-inactive-found.svg │ │ │ ├── moving-inactive-notfound.svg │ │ │ ├── moving-inactive-owned.svg │ │ │ ├── moving-inactive-untried.svg │ │ │ ├── multi-active-found.svg │ │ │ ├── multi-active-notfound.svg │ │ │ ├── multi-active-owned.svg │ │ │ ├── multi-active-untried-oconly-border.svg │ │ │ ├── multi-active-untried.svg │ │ │ ├── multi-archived-found.svg │ │ │ ├── multi-archived-notfound.svg │ │ │ ├── multi-archived-owned.svg │ │ │ ├── multi-archived-untried.svg │ │ │ ├── multi-inactive-found.svg │ │ │ ├── multi-inactive-notfound.svg │ │ │ ├── multi-inactive-owned.svg │ │ │ ├── multi-inactive-untried.svg │ │ │ ├── mystery-active-found.svg │ │ │ ├── mystery-active-notfound.svg │ │ │ ├── mystery-active-owned.svg │ │ │ ├── mystery-active-untried-oconly-border.svg │ │ │ ├── mystery-active-untried.svg │ │ │ ├── mystery-archived-found.svg │ │ │ ├── mystery-archived-notfound.svg │ │ │ ├── mystery-archived-owned.svg │ │ │ ├── mystery-archived-untried.svg │ │ │ ├── mystery-inactive-found.svg │ │ │ ├── mystery-inactive-notfound.svg │ │ │ ├── mystery-inactive-owned.svg │ │ │ ├── mystery-inactive-untried.svg │ │ │ ├── traditional-active-found.svg │ │ │ ├── traditional-active-notfound.svg │ │ │ ├── traditional-active-owned.svg │ │ │ ├── traditional-active-untried-oconly-border.svg │ │ │ ├── traditional-active-untried.svg │ │ │ ├── traditional-archived-found.svg │ │ │ ├── traditional-archived-notfound.svg │ │ │ ├── traditional-archived-owned.svg │ │ │ ├── traditional-archived-untried.svg │ │ │ ├── traditional-inactive-found.svg │ │ │ ├── traditional-inactive-notfound.svg │ │ │ ├── traditional-inactive-owned.svg │ │ │ ├── traditional-inactive-untried.svg │ │ │ ├── unknown-active-found.svg │ │ │ ├── unknown-active-notfound.svg │ │ │ ├── unknown-active-owned.svg │ │ │ ├── unknown-active-untried-oconly-border.svg │ │ │ ├── unknown-active-untried.svg │ │ │ ├── unknown-archived-found.svg │ │ │ ├── unknown-archived-notfound.svg │ │ │ ├── unknown-archived-owned.svg │ │ │ ├── unknown-archived-untried.svg │ │ │ ├── unknown-inactive-found.svg │ │ │ ├── unknown-inactive-notfound.svg │ │ │ ├── unknown-inactive-owned.svg │ │ │ ├── unknown-inactive-untried.svg │ │ │ ├── virtual-active-found.svg │ │ │ ├── virtual-active-notfound.svg │ │ │ ├── virtual-active-owned.svg │ │ │ ├── virtual-active-untried-oconly-border.svg │ │ │ ├── virtual-active-untried.svg │ │ │ ├── virtual-archived-found.svg │ │ │ ├── virtual-archived-notfound.svg │ │ │ ├── virtual-archived-owned.svg │ │ │ ├── virtual-archived-untried.svg │ │ │ ├── virtual-inactive-found.svg │ │ │ ├── virtual-inactive-notfound.svg │ │ │ ├── virtual-inactive-owned.svg │ │ │ ├── virtual-inactive-untried.svg │ │ │ ├── webcam-active-found.svg │ │ │ ├── webcam-active-notfound.svg │ │ │ ├── webcam-active-owned.svg │ │ │ ├── webcam-active-untried-oconly-border.svg │ │ │ ├── webcam-active-untried.svg │ │ │ ├── webcam-archived-found.svg │ │ │ ├── webcam-archived-notfound.svg │ │ │ ├── webcam-archived-owned.svg │ │ │ ├── webcam-archived-untried.svg │ │ │ ├── webcam-inactive-found.svg │ │ │ ├── webcam-inactive-notfound.svg │ │ │ ├── webcam-inactive-owned.svg │ │ │ └── webcam-inactive-untried.svg │ │ ├── flags │ │ │ ├── cz.svg │ │ │ ├── de.svg │ │ │ ├── es.svg │ │ │ ├── fr.svg │ │ │ ├── pl.svg │ │ │ └── sv.svg │ │ ├── logTypes │ │ │ ├── active.svg │ │ │ ├── archived.svg │ │ │ ├── attended.svg │ │ │ ├── dnf.svg │ │ │ ├── found.svg │ │ │ ├── listing_outdated-no.svg │ │ │ ├── listing_outdated-yes.svg │ │ │ ├── locked_invisible.svg │ │ │ ├── moved.svg │ │ │ ├── needs_maintenance-no.svg │ │ │ ├── needs_maintenance-yes.svg │ │ │ ├── note.svg │ │ │ └── will_attend.svg │ │ └── ratings │ │ │ ├── difficulty-10.svg │ │ │ ├── difficulty-15.svg │ │ │ ├── difficulty-20.svg │ │ │ ├── difficulty-25.svg │ │ │ ├── difficulty-30.svg │ │ │ ├── difficulty-35.svg │ │ │ ├── difficulty-40.svg │ │ │ ├── difficulty-45.svg │ │ │ ├── difficulty-50.svg │ │ │ ├── terrain-10.svg │ │ │ ├── terrain-15.svg │ │ │ ├── terrain-20.svg │ │ │ ├── terrain-25.svg │ │ │ ├── terrain-30.svg │ │ │ ├── terrain-35.svg │ │ │ ├── terrain-40.svg │ │ │ ├── terrain-45.svg │ │ │ └── terrain-50.svg │ └── index.php ├── src │ ├── Command │ │ └── TestCommand.php │ ├── Components │ │ └── Subscriber │ │ │ └── MenuSubscriber.php │ ├── Controller │ │ ├── App │ │ │ ├── CachesController.php │ │ │ ├── CoordinatesController.php │ │ │ ├── IndexController.php │ │ │ ├── KitchensinkController.php │ │ │ ├── MailerController.php │ │ │ ├── MapsController.php │ │ │ ├── OCOnly81Controller.php │ │ │ ├── RolesController.php │ │ │ ├── SecurityController.php │ │ │ ├── UserController.php │ │ │ └── UserLoginBlockController.php │ │ └── Backend │ │ │ ├── CachesControllerBackend.php │ │ │ ├── CoordinatesControllerBackend.php │ │ │ ├── IndexControllerBackend.php │ │ │ ├── MailerControllerBackend.php │ │ │ ├── MapsControllerBackend.php │ │ │ ├── OCOnly81ControllerBackend.php │ │ │ ├── RolesControllerBackend.php │ │ │ ├── SecurityControllerBackend.php │ │ │ ├── SupportControllerBackend.php │ │ │ └── UserControllerBackend.php │ ├── Entity │ │ ├── CountriesEntity.php │ │ ├── GeoCacheAdoptionsEntity.php │ │ ├── GeoCacheCoordinatesEntity.php │ │ ├── GeoCacheIgnoreEntity.php │ │ ├── GeoCacheLogsArchivedEntity.php │ │ ├── GeoCacheLogsEntity.php │ │ ├── GeoCacheRatingEntity.php │ │ ├── GeoCacheReportReasonsEntity.php │ │ ├── GeoCacheReportStatusEntity.php │ │ ├── GeoCacheReportsEntity.php │ │ ├── GeoCacheSizeEntity.php │ │ ├── GeoCacheStatusEntity.php │ │ ├── GeoCacheStatusModifiedEntity.php │ │ ├── GeoCacheTypeEntity.php │ │ ├── GeoCacheVisitsEntity.php │ │ ├── GeoCacheWatchesEntity.php │ │ ├── GeoCachesAttributesEntity.php │ │ ├── GeoCachesEntity.php │ │ ├── LogTypesEntity.php │ │ ├── NodesEntity.php │ │ ├── PicturesEntity.php │ │ ├── SecurityRoleHierarchyEntity.php │ │ ├── SecurityRolesEntity.php │ │ ├── SupportBonuscachesEntity.php │ │ ├── SupportListingCommentsEntity.php │ │ ├── SupportListingInfosEntity.php │ │ ├── SupportUserCommentsEntity.php │ │ ├── SupportUserRelationsEntity.php │ │ ├── UserEntity.php │ │ ├── UserLoginBlockEntity.php │ │ └── UserRolesEntity.php │ ├── Form │ │ ├── CachesFormType.php │ │ ├── CoordinatesFormType.php │ │ ├── RolesSearchUser.php │ │ ├── SimpleForm.php │ │ ├── SupportBonusCachesAssignment.php │ │ ├── SupportCommentField.php │ │ ├── SupportImportGPX.php │ │ ├── SupportSQLFlexForm.php │ │ ├── SupportSearchCaches.php │ │ ├── SupportUserAccountDetails.php │ │ ├── UserActivationForm.php │ │ ├── UserLoginBlockConfirm.php │ │ └── UserRegistrationForm.php │ ├── Kernel.php │ ├── Repository │ │ ├── .gitignore │ │ ├── AbstractEntity.php │ │ ├── CacheAdoptionsRepository.php │ │ ├── CacheCoordinatesRepository.php │ │ ├── CacheIgnoreRepository.php │ │ ├── CacheLogsArchivedRepository.php │ │ ├── CacheLogsRepository.php │ │ ├── CacheRatingRepository.php │ │ ├── CacheReportReasonsRepository.php │ │ ├── CacheReportStatusRepository.php │ │ ├── CacheReportsRepository.php │ │ ├── CacheSizeRepository.php │ │ ├── CacheStatusModifiedRepository.php │ │ ├── CacheStatusRepository.php │ │ ├── CacheTypeRepository.php │ │ ├── CacheVisitsRepository.php │ │ ├── CacheWatchesRepository.php │ │ ├── CachesAttributesRepository.php │ │ ├── CachesRepository.php │ │ ├── CoordinatesRepository.php │ │ ├── CountriesRepository.php │ │ ├── EntityInterface.php │ │ ├── Exception │ │ │ ├── RecordAlreadyExistsException.php │ │ │ ├── RecordNotFoundException.php │ │ │ ├── RecordNotPersistedException.php │ │ │ └── RecordsNotFoundException.php │ │ ├── LogTypesRepository.php │ │ ├── MailerRepository.php │ │ ├── MapsRepository.php │ │ ├── NodesRepository.php │ │ ├── OCOnly81Repository.php │ │ ├── PicturesRepository.php │ │ ├── SecurityRoleHierarchyRepository.php │ │ ├── SecurityRolesRepository.php │ │ ├── SupportBonuscachesRepository.php │ │ ├── SupportListingCommentsRepository.php │ │ ├── SupportListingInfosRepository.php │ │ ├── SupportUserCommentsRepository.php │ │ ├── SupportUserRelationsRepository.php │ │ ├── SupportVandalismRepository.php │ │ ├── UserLoginBlockRepository.php │ │ ├── UserRepository.php │ │ └── UserRolesRepository.php │ ├── Security │ │ ├── LoginFormAuthenticator.php │ │ ├── RoleHierarchyBuilder.php │ │ ├── RoleHierarchyFactory.php │ │ ├── UserProvider.php │ │ └── Voter │ │ │ └── UserVoter.php │ ├── Twig │ │ └── AppExtension.php │ └── User │ │ └── UserService.php ├── symfony.lock ├── templates │ ├── app │ │ ├── base.html.twig │ │ ├── caches │ │ │ ├── index.html.twig │ │ │ ├── search.html.twig │ │ │ └── view_listing.html.twig │ │ ├── coordinates │ │ │ ├── coordinateMatcher.html.twig │ │ │ └── index.html.twig │ │ ├── index │ │ │ └── index.html.twig │ │ ├── maps │ │ │ ├── index.html.twig │ │ │ ├── maps.const.js │ │ │ └── maps.leaflet.js │ │ ├── oconly81 │ │ │ └── index.html.twig │ │ └── user │ │ │ ├── detailview.html.twig │ │ │ ├── index.html.twig │ │ │ └── showuserloginblock.html.twig │ ├── backend │ │ ├── base.html.twig │ │ ├── index │ │ │ └── index.html.twig │ │ ├── roles │ │ │ ├── index.html.twig │ │ │ ├── team.assignment.html.twig │ │ │ └── team.roles.html.twig │ │ └── support │ │ │ ├── bonusCaches.html.twig │ │ │ ├── bonusCachesAssignment.html.twig │ │ │ ├── cacheHistory.html.twig │ │ │ ├── databaseQueries.html.twig │ │ │ ├── index.html.twig │ │ │ ├── insertDateAndUsernameButton.js │ │ │ ├── occ.html.twig │ │ │ ├── occ_gpx_import.html.twig │ │ │ ├── reportedCacheDetails.html.twig │ │ │ ├── reportedCaches.html.twig │ │ │ ├── searchedCaches.html.twig │ │ │ ├── support.header.html.twig │ │ │ ├── userDetails.html.twig │ │ │ ├── vandalism.html.twig │ │ │ └── vandalismFinish.html.twig │ ├── base.html.twig │ ├── index │ │ ├── base.html.twig │ │ └── index.html.twig │ ├── kitchensink │ │ ├── block │ │ │ ├── bootstrap.html │ │ │ └── oc4.html │ │ ├── index.html.twig │ │ ├── kitchensink-bootstrap.html.twig │ │ └── kitchensink-oc.html.twig │ └── security │ │ ├── accountActivation.html.twig │ │ ├── login.html.twig │ │ ├── register.html.twig │ │ └── registerDone.html.twig ├── tests │ └── bootstrap.php ├── translations │ └── .gitignore ├── webpack.config.js └── yarn.lock ├── local ├── devel │ ├── Entities │ │ ├── AttributeCategoriesEntity.php │ │ ├── AttributeCategoriesEntityTest.php │ │ ├── AttributeGroupsEntity.php │ │ ├── AttributeGroupsEntityTest.php │ │ ├── CoordinatesEntity.php │ │ ├── CoordinatesEntityTest.php │ │ ├── CoordinatesTypeEntity.php │ │ ├── CoordinatesTypeEntityTest.php │ │ ├── CountriesEntity.php │ │ ├── CountriesEntityTest.php │ │ ├── CountriesListDefaultEntity.php │ │ ├── CountriesListDefaultEntityTest.php │ │ ├── CountriesOptionsEntity.php │ │ ├── CountriesOptionsEntityTest.php │ │ ├── EmailUserEntity.php │ │ ├── EmailUserEntityTest.php │ │ ├── FieldNoteEntity.php │ │ ├── FieldNoteEntityTest.php │ │ ├── GeoCacheAdoptionEntity.php │ │ ├── GeoCacheAdoptionEntityTest.php │ │ ├── GeoCacheAdoptionsEntity.php │ │ ├── GeoCacheAdoptionsEntityTest.php │ │ ├── GeoCacheAttribEntity.php │ │ ├── GeoCacheAttribEntityTest.php │ │ ├── GeoCacheCoordinatesEntity.php │ │ ├── GeoCacheCoordinatesEntityTest.php │ │ ├── GeoCacheCountriesEntity.php │ │ ├── GeoCacheCountriesEntityTest.php │ │ ├── GeoCacheDescEntity.php │ │ ├── GeoCacheDescEntityTest.php │ │ ├── GeoCacheDescModifiedEntity.php │ │ ├── GeoCacheDescModifiedEntityTest.php │ │ ├── GeoCacheIgnoreEntity.php │ │ ├── GeoCacheIgnoreEntityTest.php │ │ ├── GeoCacheListBookmarksEntity.php │ │ ├── GeoCacheListBookmarksEntityTest.php │ │ ├── GeoCacheListItemsEntity.php │ │ ├── GeoCacheListItemsEntityTest.php │ │ ├── GeoCacheListWatchesEntity.php │ │ ├── GeoCacheListWatchesEntityTest.php │ │ ├── GeoCacheListsEntity.php │ │ ├── GeoCacheListsEntityTest.php │ │ ├── GeoCacheLocationEntity.php │ │ ├── GeoCacheLocationEntityTest.php │ │ ├── GeoCacheLogsArchivedEntity.php │ │ ├── GeoCacheLogsArchivedEntityTest.php │ │ ├── GeoCacheLogsEntity.php │ │ ├── GeoCacheLogsEntityTest.php │ │ ├── GeoCacheLogsModifiedEntity.php │ │ ├── GeoCacheLogsModifiedEntityTest.php │ │ ├── GeoCacheLogsRestoredEntity.php │ │ ├── GeoCacheLogsRestoredEntityTest.php │ │ ├── GeoCacheLogtypeEntity.php │ │ ├── GeoCacheLogtypeEntityTest.php │ │ ├── GeoCacheMapsEntity.php │ │ ├── GeoCacheMapsEntityTest.php │ │ ├── GeoCacheNpaAreasEntity.php │ │ ├── GeoCacheNpaAreasEntityTest.php │ │ ├── GeoCacheRatingEntity.php │ │ ├── GeoCacheRatingEntityTest.php │ │ ├── GeoCacheReportReasonsEntity.php │ │ ├── GeoCacheReportReasonsEntityTest.php │ │ ├── GeoCacheReportStatusEntity.php │ │ ├── GeoCacheReportStatusEntityTest.php │ │ ├── GeoCacheReportsEntity.php │ │ ├── GeoCacheReportsEntityTest.php │ │ ├── GeoCacheSizeEntity.php │ │ ├── GeoCacheSizeEntityTest.php │ │ ├── GeoCacheStatusEntity.php │ │ ├── GeoCacheStatusEntityTest.php │ │ ├── GeoCacheStatusModifiedEntity.php │ │ ├── GeoCacheStatusModifiedEntityTest.php │ │ ├── GeoCacheTypeEntity.php │ │ ├── GeoCacheTypeEntityTest.php │ │ ├── GeoCacheVisitsEntity.php │ │ ├── GeoCacheVisitsEntityTest.php │ │ ├── GeoCacheWatchesEntity.php │ │ ├── GeoCacheWatchesEntityTest.php │ │ ├── GeoCacheWaypointPoolEntity.php │ │ ├── GeoCacheWaypointPoolEntityTest.php │ │ ├── GeoCachesAttributesEntity.php │ │ ├── GeoCachesAttributesEntityTest.php │ │ ├── GeoCachesAttributesModifiedEntity.php │ │ ├── GeoCachesAttributesModifiedEntityTest.php │ │ ├── GeoCachesEntity.php │ │ ├── GeoCachesEntityTest.php │ │ ├── GeoCachesModifiedEntity.php │ │ ├── GeoCachesModifiedEntityTest.php │ │ ├── GeodbAreasEntity.php │ │ ├── GeodbAreasEntityTest.php │ │ ├── GeodbChangelogEntity.php │ │ ├── GeodbChangelogEntityTest.php │ │ ├── GeodbCoordinatesEntity.php │ │ ├── GeodbCoordinatesEntityTest.php │ │ ├── GeodbFloatdataEntity.php │ │ ├── GeodbFloatdataEntityTest.php │ │ ├── GeodbHierarchiesEntity.php │ │ ├── GeodbHierarchiesEntityTest.php │ │ ├── GeodbIntdataEntity.php │ │ ├── GeodbIntdataEntityTest.php │ │ ├── GeodbLocationsEntity.php │ │ ├── GeodbLocationsEntityTest.php │ │ ├── GeodbPolygonsEntity.php │ │ ├── GeodbPolygonsEntityTest.php │ │ ├── GeodbSearchEntity.php │ │ ├── GeodbSearchEntityTest.php │ │ ├── GeodbTextdataEntity.php │ │ ├── GeodbTextdataEntityTest.php │ │ ├── GeodbTypeNamesEntity.php │ │ ├── GeodbTypeNamesEntityTest.php │ │ ├── GkItemEntity.php │ │ ├── GkItemEntityTest.php │ │ ├── GkItemTypeEntity.php │ │ ├── GkItemTypeEntityTest.php │ │ ├── GkItemWaypointEntity.php │ │ ├── GkItemWaypointEntityTest.php │ │ ├── GkMoveEntity.php │ │ ├── GkMoveEntityTest.php │ │ ├── GkMoveTypeEntity.php │ │ ├── GkMoveTypeEntityTest.php │ │ ├── GkMoveWaypointEntity.php │ │ ├── GkMoveWaypointEntityTest.php │ │ ├── GkUserEntity.php │ │ ├── GkUserEntityTest.php │ │ ├── GnsLocationsEntity.php │ │ ├── GnsLocationsEntityTest.php │ │ ├── GnsSearchEntity.php │ │ ├── GnsSearchEntityTest.php │ │ ├── HelppagesEntity.php │ │ ├── HelppagesEntityTest.php │ │ ├── LanguagesEntity.php │ │ ├── LanguagesEntityTest.php │ │ ├── LanguagesListDefaultEntity.php │ │ ├── LanguagesListDefaultEntityTest.php │ │ ├── LogTypesEntity.php │ │ ├── LogTypesEntityTest.php │ │ ├── LogTypesTextEntity.php │ │ ├── LogTypesTextEntityTest.php │ │ ├── LogentriesEntity.php │ │ ├── LogentriesEntityTest.php │ │ ├── LogentriesTypesEntity.php │ │ ├── LogentriesTypesEntityTest.php │ │ ├── LoginsEntity.php │ │ ├── LoginsEntityTest.php │ │ ├── Map2DataEntity.php │ │ ├── Map2DataEntityTest.php │ │ ├── Map2ResultEntity.php │ │ ├── Map2ResultEntityTest.php │ │ ├── MapresultDataEntity.php │ │ ├── MapresultDataEntityTest.php │ │ ├── MapresultEntity.php │ │ ├── MapresultEntityTest.php │ │ ├── MigrationVersionsEntity.php │ │ ├── MigrationVersionsEntityTest.php │ │ ├── Mp3Entity.php │ │ ├── Mp3EntityTest.php │ │ ├── NodesEntity.php │ │ ├── NodesEntityTest.php │ │ ├── NotifyWaitingEntity.php │ │ ├── NotifyWaitingEntityTest.php │ │ ├── NpaAreasEntity.php │ │ ├── NpaAreasEntityTest.php │ │ ├── NpaTypesEntity.php │ │ ├── NpaTypesEntityTest.php │ │ ├── NutsCodesEntity.php │ │ ├── NutsCodesEntityTest.php │ │ ├── NutsLayerEntity.php │ │ ├── NutsLayerEntityTest.php │ │ ├── ObjectTypesEntity.php │ │ ├── ObjectTypesEntityTest.php │ │ ├── OkapiAuthorizationsEntity.php │ │ ├── OkapiAuthorizationsEntityTest.php │ │ ├── OkapiCacheEntity.php │ │ ├── OkapiCacheEntityTest.php │ │ ├── OkapiCacheReadsEntity.php │ │ ├── OkapiCacheReadsEntityTest.php │ │ ├── OkapiClogEntity.php │ │ ├── OkapiClogEntityTest.php │ │ ├── OkapiConsumersEntity.php │ │ ├── OkapiConsumersEntityTest.php │ │ ├── OkapiNoncesEntity.php │ │ ├── OkapiNoncesEntityTest.php │ │ ├── OkapiSearchResultsEntity.php │ │ ├── OkapiSearchResultsEntityTest.php │ │ ├── OkapiSearchSetsEntity.php │ │ ├── OkapiSearchSetsEntityTest.php │ │ ├── OkapiStatsHourlyEntity.php │ │ ├── OkapiStatsHourlyEntityTest.php │ │ ├── OkapiStatsMonthlyEntity.php │ │ ├── OkapiStatsMonthlyEntityTest.php │ │ ├── OkapiStatsTempEntity.php │ │ ├── OkapiStatsTempEntityTest.php │ │ ├── OkapiSubmittedObjectsEntity.php │ │ ├── OkapiSubmittedObjectsEntityTest.php │ │ ├── OkapiTileCachesEntity.php │ │ ├── OkapiTileCachesEntityTest.php │ │ ├── OkapiTileStatusEntity.php │ │ ├── OkapiTileStatusEntityTest.php │ │ ├── OkapiTokensEntity.php │ │ ├── OkapiTokensEntityTest.php │ │ ├── OkapiVarsEntity.php │ │ ├── OkapiVarsEntityTest.php │ │ ├── PageBlockEntity.php │ │ ├── PageBlockEntityTest.php │ │ ├── PageEntity.php │ │ ├── PageEntityTest.php │ │ ├── PicturesEntity.php │ │ ├── PicturesEntityTest.php │ │ ├── ProfileOptionsEntity.php │ │ ├── ProfileOptionsEntityTest.php │ │ ├── PwDictEntity.php │ │ ├── PwDictEntityTest.php │ │ ├── QueriesEntity.php │ │ ├── QueriesEntityTest.php │ │ ├── RatingTopsEntity.php │ │ ├── RatingTopsEntityTest.php │ │ ├── RemovedObjectsEntity.php │ │ ├── RemovedObjectsEntityTest.php │ │ ├── ReplicationEntity.php │ │ ├── ReplicationEntityTest.php │ │ ├── ReplicationNotimportedEntity.php │ │ ├── ReplicationNotimportedEntityTest.php │ │ ├── ReplicationOverwriteEntity.php │ │ ├── ReplicationOverwriteEntityTest.php │ │ ├── ReplicationOverwritetypesEntity.php │ │ ├── ReplicationOverwritetypesEntityTest.php │ │ ├── SavedTextsEntity.php │ │ ├── SavedTextsEntityTest.php │ │ ├── SearchDoublesEntity.php │ │ ├── SearchDoublesEntityTest.php │ │ ├── SearchIgnoreEntity.php │ │ ├── SearchIgnoreEntityTest.php │ │ ├── SearchIndexEntity.php │ │ ├── SearchIndexEntityTest.php │ │ ├── SearchIndexTimesEntity.php │ │ ├── SearchIndexTimesEntityTest.php │ │ ├── StatCacheListsEntity.php │ │ ├── StatCacheListsEntityTest.php │ │ ├── StatCacheLogsEntity.php │ │ ├── StatCacheLogsEntityTest.php │ │ ├── StatCachesEntity.php │ │ ├── StatCachesEntityTest.php │ │ ├── StatUserEntity.php │ │ ├── StatUserEntityTest.php │ │ ├── StatpicsEntity.php │ │ ├── StatpicsEntityTest.php │ │ ├── SysCronEntity.php │ │ ├── SysCronEntityTest.php │ │ ├── SysLoginsEntity.php │ │ ├── SysLoginsEntityTest.php │ │ ├── SysMenuEntity.php │ │ ├── SysMenuEntityTest.php │ │ ├── SysReplExcludeEntity.php │ │ ├── SysReplExcludeEntityTest.php │ │ ├── SysReplSlavesEntity.php │ │ ├── SysReplSlavesEntityTest.php │ │ ├── SysReplTimestampEntity.php │ │ ├── SysReplTimestampEntityTest.php │ │ ├── SysSessionsEntity.php │ │ ├── SysSessionsEntityTest.php │ │ ├── SysTemptablesEntity.php │ │ ├── SysTemptablesEntityTest.php │ │ ├── SysTransEntity.php │ │ ├── SysTransEntityTest.php │ │ ├── SysTransRefEntity.php │ │ ├── SysTransRefEntityTest.php │ │ ├── SysTransTextEntity.php │ │ ├── SysTransTextEntityTest.php │ │ ├── SysconfigEntity.php │ │ ├── SysconfigEntityTest.php │ │ ├── TownsEntity.php │ │ ├── TownsEntityTest.php │ │ ├── UserDelegatesEntity.php │ │ ├── UserDelegatesEntityTest.php │ │ ├── UserEntity.php │ │ ├── UserEntityTest.php │ │ ├── UserOptionsEntity.php │ │ ├── UserOptionsEntityTest.php │ │ ├── UserStatpicEntity.php │ │ ├── UserStatpicEntityTest.php │ │ ├── WatchesLogqueueEntity.php │ │ ├── WatchesLogqueueEntityTest.php │ │ ├── WatchesNotifiedEntity.php │ │ ├── WatchesNotifiedEntityTest.php │ │ ├── WatchesWaitingEntity.php │ │ ├── WatchesWaitingEntityTest.php │ │ ├── WatchesWaitingtypesEntity.php │ │ ├── WatchesWaitingtypesEntityTest.php │ │ ├── WaypointReportsEntity.php │ │ ├── WaypointReportsEntityTest.php │ │ ├── XmlsessionDataEntity.php │ │ ├── XmlsessionDataEntityTest.php │ │ ├── XmlsessionEntity.php │ │ └── XmlsessionEntityTest.php │ ├── Repositories │ │ ├── AttributeCategoriesRepository.php │ │ ├── AttributeGroupsRepository.php │ │ ├── CacheAdoptionRepository.php │ │ ├── CacheAdoptionsRepository.php │ │ ├── CacheAttribRepository.php │ │ ├── CacheCoordinatesRepository.php │ │ ├── CacheCountriesRepository.php │ │ ├── CacheDescModifiedRepository.php │ │ ├── CacheDescRepository.php │ │ ├── CacheIgnoreRepository.php │ │ ├── CacheListBookmarksRepository.php │ │ ├── CacheListItemsRepository.php │ │ ├── CacheListWatchesRepository.php │ │ ├── CacheListsRepository.php │ │ ├── CacheLocationRepository.php │ │ ├── CacheLogsArchivedRepository.php │ │ ├── CacheLogsModifiedRepository.php │ │ ├── CacheLogsRepository.php │ │ ├── CacheLogsRestoredRepository.php │ │ ├── CacheLogtypeRepository.php │ │ ├── CacheMapsRepository.php │ │ ├── CacheNpaAreasRepository.php │ │ ├── CacheRatingRepository.php │ │ ├── CacheReportReasonsRepository.php │ │ ├── CacheReportStatusRepository.php │ │ ├── CacheReportsRepository.php │ │ ├── CacheSizeRepository.php │ │ ├── CacheStatusModifiedRepository.php │ │ ├── CacheStatusRepository.php │ │ ├── CacheTypeRepository.php │ │ ├── CacheVisitsRepository.php │ │ ├── CacheWatchesRepository.php │ │ ├── CacheWaypointPoolRepository.php │ │ ├── CachesAttributesModifiedRepository.php │ │ ├── CachesAttributesRepository.php │ │ ├── CachesModifiedRepository.php │ │ ├── CachesRepository.php │ │ ├── CoordinatesRepository.php │ │ ├── CoordinatesTypeRepository.php │ │ ├── CountriesListDefaultRepository.php │ │ ├── CountriesOptionsRepository.php │ │ ├── CountriesRepository.php │ │ ├── EmailUserRepository.php │ │ ├── FieldNoteRepository.php │ │ ├── GeodbAreasRepository.php │ │ ├── GeodbChangelogRepository.php │ │ ├── GeodbCoordinatesRepository.php │ │ ├── GeodbFloatdataRepository.php │ │ ├── GeodbHierarchiesRepository.php │ │ ├── GeodbIntdataRepository.php │ │ ├── GeodbLocationsRepository.php │ │ ├── GeodbPolygonsRepository.php │ │ ├── GeodbSearchRepository.php │ │ ├── GeodbTextdataRepository.php │ │ ├── GeodbTypeNamesRepository.php │ │ ├── GkItemRepository.php │ │ ├── GkItemTypeRepository.php │ │ ├── GkItemWaypointRepository.php │ │ ├── GkMoveRepository.php │ │ ├── GkMoveTypeRepository.php │ │ ├── GkMoveWaypointRepository.php │ │ ├── GkUserRepository.php │ │ ├── GnsLocationsRepository.php │ │ ├── GnsSearchRepository.php │ │ ├── HelppagesRepository.php │ │ ├── LanguagesListDefaultRepository.php │ │ ├── LanguagesRepository.php │ │ ├── LogTypesRepository.php │ │ ├── LogTypesTextRepository.php │ │ ├── LogentriesRepository.php │ │ ├── LogentriesTypesRepository.php │ │ ├── LoginsRepository.php │ │ ├── Map2DataRepository.php │ │ ├── Map2ResultRepository.php │ │ ├── MapresultDataRepository.php │ │ ├── MapresultRepository.php │ │ ├── MigrationVersionsRepository.php │ │ ├── Mp3Repository.php │ │ ├── NodesRepository.php │ │ ├── NotifyWaitingRepository.php │ │ ├── NpaAreasRepository.php │ │ ├── NpaTypesRepository.php │ │ ├── NutsCodesRepository.php │ │ ├── NutsLayerRepository.php │ │ ├── ObjectTypesRepository.php │ │ ├── OkapiAuthorizationsRepository.php │ │ ├── OkapiCacheReadsRepository.php │ │ ├── OkapiCacheRepository.php │ │ ├── OkapiClogRepository.php │ │ ├── OkapiConsumersRepository.php │ │ ├── OkapiNoncesRepository.php │ │ ├── OkapiSearchResultsRepository.php │ │ ├── OkapiSearchSetsRepository.php │ │ ├── OkapiStatsHourlyRepository.php │ │ ├── OkapiStatsMonthlyRepository.php │ │ ├── OkapiStatsTempRepository.php │ │ ├── OkapiSubmittedObjectsRepository.php │ │ ├── OkapiTileCachesRepository.php │ │ ├── OkapiTileStatusRepository.php │ │ ├── OkapiTokensRepository.php │ │ ├── OkapiVarsRepository.php │ │ ├── PageBlockRepository.php │ │ ├── PageRepository.php │ │ ├── PicturesRepository.php │ │ ├── ProfileOptionsRepository.php │ │ ├── PwDictRepository.php │ │ ├── QueriesRepository.php │ │ ├── RatingTopsRepository.php │ │ ├── RemovedObjectsRepository.php │ │ ├── ReplicationNotimportedRepository.php │ │ ├── ReplicationOverwriteRepository.php │ │ ├── ReplicationOverwritetypesRepository.php │ │ ├── ReplicationRepository.php │ │ ├── SavedTextsRepository.php │ │ ├── SearchDoublesRepository.php │ │ ├── SearchIgnoreRepository.php │ │ ├── SearchIndexRepository.php │ │ ├── SearchIndexTimesRepository.php │ │ ├── StatCacheListsRepository.php │ │ ├── StatCacheLogsRepository.php │ │ ├── StatCachesRepository.php │ │ ├── StatUserRepository.php │ │ ├── StatpicsRepository.php │ │ ├── SysCronRepository.php │ │ ├── SysLoginsRepository.php │ │ ├── SysMenuRepository.php │ │ ├── SysReplExcludeRepository.php │ │ ├── SysReplSlavesRepository.php │ │ ├── SysReplTimestampRepository.php │ │ ├── SysSessionsRepository.php │ │ ├── SysTemptablesRepository.php │ │ ├── SysTransRefRepository.php │ │ ├── SysTransRepository.php │ │ ├── SysTransTextRepository.php │ │ ├── SysconfigRepository.php │ │ ├── TownsRepository.php │ │ ├── UserDelegatesRepository.php │ │ ├── UserOptionsRepository.php │ │ ├── UserRepository.php │ │ ├── UserStatpicRepository.php │ │ ├── WatchesLogqueueRepository.php │ │ ├── WatchesNotifiedRepository.php │ │ ├── WatchesWaitingRepository.php │ │ ├── WatchesWaitingtypesRepository.php │ │ ├── WaypointReportsRepository.php │ │ ├── XmlsessionDataRepository.php │ │ └── XmlsessionRepository.php │ ├── faker_example.php │ ├── generator.php │ └── strip_private_data.php ├── mailing │ ├── email-addresslist.php │ └── mailing.php ├── maintenance │ ├── cleanup_coordinates.php │ ├── email_recovery.php │ └── init_user_languages.php ├── ocxml11client │ ├── index.php │ ├── settings-dist.php │ └── xml2array.inc.php ├── prodsys │ ├── README │ ├── phpzip.php │ ├── purge_master_logs.php │ └── replication_monitor.sh └── stat │ ├── coordstat.php │ └── newimages.php ├── php-cs-fixer ├── phpunit.xml.dist ├── psh.phar ├── sql ├── db-changes.txt ├── dump_v158.sql ├── modification-dates.txt ├── static-data │ ├── attribute_categories.sql │ ├── attribute_groups.sql │ ├── cache_attrib.sql │ ├── cache_logtype.sql │ ├── cache_report_reasons.sql │ ├── cache_report_status.sql │ ├── cache_size.sql │ ├── cache_status.sql │ ├── cache_type.sql │ ├── coordinates_type.sql │ ├── countries.sql │ ├── countries_list_default.sql │ ├── countries_options.sql │ ├── helppages.sql │ ├── languages.sql │ ├── languages_list_default.sql │ ├── log_types.sql │ ├── logentries_types.sql │ ├── nodes.sql │ ├── nuts_codes.sql │ ├── object_types.sql │ ├── old │ │ └── data.sql │ ├── profile_options.sql │ ├── pw_dict.bz2 │ ├── pwlist.php │ ├── replication_overwritetypes.sql │ ├── search_ignore.sql │ ├── static-data.txt │ ├── statpics.sql │ ├── sys_menu.sql │ ├── sys_trans.sql │ ├── sys_trans_ref.sql │ ├── sys_trans_text_00.sql │ ├── sys_trans_text_de.sql │ ├── sys_trans_text_en.sql │ ├── sys_trans_text_es.sql │ ├── sys_trans_text_fr.sql │ ├── sys_trans_text_it.sql │ ├── sys_trans_text_nl.sql │ ├── sys_trans_text_pl.sql │ ├── sys_trans_text_ru.sql │ ├── towns.sql │ └── watches_waitingtypes.sql ├── stored-proc │ ├── maintain-113.inc.php │ ├── maintain-114.inc.php │ ├── maintain-115.inc.php │ ├── maintain-153.inc.php │ ├── maintain-161.inc.php │ ├── maintain-163.inc.php │ ├── maintain-current.inc.php │ └── maintain.php ├── tables │ ├── !tables.txt │ ├── attribute_categories.sql │ ├── attribute_groups.sql │ ├── cache_adoption.sql │ ├── cache_adoptions.sql │ ├── cache_attrib.sql │ ├── cache_coordinates.sql │ ├── cache_countries.sql │ ├── cache_desc.sql │ ├── cache_desc_modified.sql │ ├── cache_ignore.sql │ ├── cache_list_bookmarks.sql │ ├── cache_list_items.sql │ ├── cache_list_watches.sql │ ├── cache_lists.sql │ ├── cache_location.sql │ ├── cache_logs.sql │ ├── cache_logs_archived.sql │ ├── cache_logs_modified.sql │ ├── cache_logs_restored.sql │ ├── cache_logtype.sql │ ├── cache_maps.sql │ ├── cache_npa_areas.sql │ ├── cache_rating.sql │ ├── cache_report_reasons.sql │ ├── cache_report_status.sql │ ├── cache_reports.sql │ ├── cache_size.sql │ ├── cache_status.sql │ ├── cache_status_modified.sql │ ├── cache_type.sql │ ├── cache_visits.sql │ ├── cache_watches.sql │ ├── cache_waypoint_pool.sql │ ├── caches.sql │ ├── caches_attributes.sql │ ├── caches_attributes_modified.sql │ ├── caches_modified.sql │ ├── coordinates.sql │ ├── coordinates_type.sql │ ├── countries.sql │ ├── countries_list_default.sql │ ├── countries_options.sql │ ├── email_user.sql │ ├── geodb_coordinates.sql │ ├── geodb_hierarchies.sql │ ├── geodb_locations.sql │ ├── geodb_search.sql │ ├── geodb_textdata.sql │ ├── gk_item.sql │ ├── gk_item_type.sql │ ├── gk_item_waypoint.sql │ ├── gk_move.sql │ ├── gk_move_type.sql │ ├── gk_move_waypoint.sql │ ├── gk_user.sql │ ├── gns_locations.sql │ ├── gns_search.sql │ ├── helppages.sql │ ├── languages.sql │ ├── languages_list_default.sql │ ├── log_types.sql │ ├── log_types_text.sql │ ├── logentries.sql │ ├── logentries_types.sql │ ├── map2_data.sql │ ├── map2_result.sql │ ├── mp3.sql │ ├── nodes.sql │ ├── notify_waiting.sql │ ├── npa_areas.sql │ ├── npa_types.sql │ ├── nuts_codes.sql │ ├── nuts_layer.sql │ ├── object_types.sql │ ├── pictures.sql │ ├── pictures_modified.sql │ ├── profile_options.sql │ ├── pw_dict.sql │ ├── queries.sql │ ├── rating_tops.sql │ ├── removed_objects.sql │ ├── replication.sql │ ├── replication_notimported.sql │ ├── replication_overwrite.sql │ ├── replication_overwritetypes.sql │ ├── saved_texts.sql │ ├── search_doubles.sql │ ├── search_ignore.sql │ ├── search_index.sql │ ├── search_index_times.sql │ ├── stat_cache_lists.sql │ ├── stat_cache_logs.sql │ ├── stat_caches.sql │ ├── stat_user.sql │ ├── statpics.sql │ ├── sys_cron.sql │ ├── sys_logins.sql │ ├── sys_menu.sql │ ├── sys_repl_exclude.sql │ ├── sys_repl_slaves.sql │ ├── sys_repl_timestamp.sql │ ├── sys_sessions.sql │ ├── sys_temptables.sql │ ├── sys_trans.sql │ ├── sys_trans_ref.sql │ ├── sys_trans_text.sql │ ├── sysconfig.sql │ ├── towns.sql │ ├── user.sql │ ├── user_delegates.sql │ ├── user_options.sql │ ├── user_statpic.sql │ ├── watches_logqueue.sql │ ├── watches_notified.sql │ ├── watches_waiting.sql │ ├── watches_waitingtypes.sql │ ├── waypoint_reports.sql │ ├── xmlsession.sql │ └── xmlsession_data.sql └── user_content_sample.sql └── tests ├── Frontend ├── AbstractFrontendTest.php └── Login │ └── LoginTest.php ├── Modules ├── AbstractModuleTest.php ├── App │ └── AppKernelTest.php ├── Lib2 │ ├── Logic │ │ ├── CoordinateTest.php │ │ └── PasswordEncryptionTest.php │ ├── OcHTMLPurifierTest.php │ └── UtilIncTest.php ├── Oc │ ├── Account │ │ └── Subscriber │ │ │ └── MenuSubscriberTest.php │ ├── Changelog │ │ ├── Controller │ │ │ └── ChangelogControllerTest.php │ │ └── Subscriber │ │ │ └── MenuSubscriberTest.php │ ├── Country │ │ ├── CountryEntityTest.php │ │ └── CountryServiceTest.php │ ├── GeoCache │ │ └── Controller │ │ │ └── GeoCacheFileControllerTest.php │ ├── GlobalContext │ │ ├── GlobalContextFactoryTest.php │ │ ├── GlobalContextTest.php │ │ ├── Provider │ │ │ └── LanguageProviderTest.php │ │ └── Subscriber │ │ │ └── GlobalContextSubscriberTest.php │ ├── Language │ │ ├── LanguageEntityTest.php │ │ └── LanguageServiceTest.php │ ├── Page │ │ └── Persistence │ │ │ ├── BlockEntityTest.php │ │ │ ├── BlockServiceTest.php │ │ │ ├── PageEntityTest.php │ │ │ └── PageServiceTest.php │ ├── Postfix │ │ └── LogEntityTest.php │ ├── Session │ │ └── SessionDataCookieTest.php │ ├── User │ │ ├── UserEntityTest.php │ │ ├── UserProviderTest.php │ │ └── UserServiceTest.php │ └── Util │ │ ├── CBenchTest.php │ │ └── ProcessSyncTest.php ├── OcLegacy │ ├── ContainerTest.php │ ├── SmartyPlugins │ │ ├── CoordInputTest.php │ │ ├── CountTest.php │ │ ├── FunctionArraySearchTest.php │ │ ├── InstrTest.php │ │ ├── ModifierBase64EncodeTest.php │ │ ├── ModifierEscapeJsTest.php │ │ ├── ModifierFormatHourTest.php │ │ ├── ModifierHyperlinkTest.php │ │ ├── ModifierNbspTest.php │ │ ├── ModifierRot13Test.php │ │ ├── ModifierSmileyTest.php │ │ ├── ModifierSprintfTest.php │ │ ├── ModifierStripCrLfTest.php │ │ ├── ModifierUrlEncodeTest.php │ │ ├── RandTest.php │ │ ├── RepeatTest.php │ │ ├── SeasonTest.php │ │ └── TranslationTest.php │ ├── Translation │ │ └── TranslationServiceTest.php │ └── Util │ │ ├── PasswordCryptTest.php │ │ └── SiteMapXmlTest.php ├── Okapi │ ├── Integration │ │ ├── PackageTest.php │ │ └── Services │ │ │ ├── ApiSrvTest.php │ │ │ └── AttrsTest.php │ ├── OkapiClient.php │ └── OkapiCredentialsTrait.php └── TestCase.php ├── OcCodeStyle └── Sniffs │ └── WhiteSpace │ └── MemberVarSpacingSniff.php ├── Utils ├── ConfigLoaderDummy.php └── SmartyDummy.php ├── bootstrap.php ├── fixtures ├── FieldNotes │ ├── fieldnotes_working.txt │ ├── fieldnotes_wrong_date_format.txt │ └── fieldnotes_wrong_file_format.txt └── JournalPostfixLogs │ └── journalctl.json └── ruleset.xml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.gitignore -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.php_cs -------------------------------------------------------------------------------- /.psh.yaml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.psh.yaml.dist -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.scss_lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.scss_lint.yml -------------------------------------------------------------------------------- /.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "stylelint-config-standard" 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/.travis.yml -------------------------------------------------------------------------------- /ChangeLog-3.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/ChangeLog-3.1.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/Vagrantfile -------------------------------------------------------------------------------- /bin/clear-webcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/clear-webcache.php -------------------------------------------------------------------------------- /bin/dbsv-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/dbsv-update.php -------------------------------------------------------------------------------- /bin/dbupdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/dbupdate.php -------------------------------------------------------------------------------- /bin/okapi-update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/okapi-update.php -------------------------------------------------------------------------------- /bin/php-cs-fixer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/php-cs-fixer -------------------------------------------------------------------------------- /bin/provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/provision.sh -------------------------------------------------------------------------------- /bin/upload-crowdin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/upload-crowdin.php -------------------------------------------------------------------------------- /bin/upload-crowdin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/bin/upload-crowdin.sh -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/codecov.yml -------------------------------------------------------------------------------- /dev-ops/docker/actions/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/composer.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/init.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/ssh.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/start-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/start-clean.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/start.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/stop.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/unit-fast.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/unit-fast.sh -------------------------------------------------------------------------------- /dev-ops/docker/actions/unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/actions/unit.sh -------------------------------------------------------------------------------- /dev-ops/docker/templates/.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/docker/templates/.env.local -------------------------------------------------------------------------------- /dev-ops/local.team-opencaching.de/actions/.git-checkout.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev-ops/test.opencaching.de/actions/activate-maintenance.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | touch ./htdocs/maintenance.enable 4 | -------------------------------------------------------------------------------- /dev-ops/test.opencaching.de/actions/deactivate-maintenance.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm ./htdocs/maintenance.enable 4 | -------------------------------------------------------------------------------- /dev-ops/travis-ci/actions/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/travis-ci/actions/ci.sh -------------------------------------------------------------------------------- /dev-ops/travis-ci/actions/composer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/travis-ci/actions/composer.sh -------------------------------------------------------------------------------- /dev-ops/travis-ci/actions/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/travis-ci/actions/init.sh -------------------------------------------------------------------------------- /dev-ops/travis-ci/actions/unit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/dev-ops/travis-ci/actions/unit.sh -------------------------------------------------------------------------------- /doc/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/GPL.txt -------------------------------------------------------------------------------- /doc/browser-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/browser-stack.png -------------------------------------------------------------------------------- /doc/cookies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/cookies.txt -------------------------------------------------------------------------------- /doc/customized-libs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/customized-libs.txt -------------------------------------------------------------------------------- /doc/directories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/directories.txt -------------------------------------------------------------------------------- /doc/edit-permissions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/edit-permissions.txt -------------------------------------------------------------------------------- /doc/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/install.html -------------------------------------------------------------------------------- /doc/replication.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/replication.txt -------------------------------------------------------------------------------- /doc/sentry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/sentry.png -------------------------------------------------------------------------------- /doc/settings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/doc/settings.txt -------------------------------------------------------------------------------- /docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker-compose.override.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/httpd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker/httpd/Dockerfile -------------------------------------------------------------------------------- /docker/httpd/vhost.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker/httpd/vhost.conf -------------------------------------------------------------------------------- /docker/mariadb/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker/mariadb/Dockerfile -------------------------------------------------------------------------------- /docker/mariadb/mariadb.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker/mariadb/mariadb.cnf -------------------------------------------------------------------------------- /docker/php-fpm/php-ini-overrides.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/docker/php-fpm/php-ini-overrides.ini -------------------------------------------------------------------------------- /htdocs/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/404.php -------------------------------------------------------------------------------- /htdocs/a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/a.php -------------------------------------------------------------------------------- /htdocs/activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/activation.php -------------------------------------------------------------------------------- /htdocs/addtolist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/addtolist.php -------------------------------------------------------------------------------- /htdocs/adminhistory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/adminhistory.php -------------------------------------------------------------------------------- /htdocs/adminreports.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/adminreports.php -------------------------------------------------------------------------------- /htdocs/admins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/admins.php -------------------------------------------------------------------------------- /htdocs/adminuser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/adminuser.php -------------------------------------------------------------------------------- /htdocs/adoptcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/adoptcache.php -------------------------------------------------------------------------------- /htdocs/api/ping.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/api/ping.php -------------------------------------------------------------------------------- /htdocs/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/.htaccess -------------------------------------------------------------------------------- /htdocs/app/AppCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/AppCache.php -------------------------------------------------------------------------------- /htdocs/app/AppKernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/AppKernel.php -------------------------------------------------------------------------------- /htdocs/app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/autoload.php -------------------------------------------------------------------------------- /htdocs/app/config/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/config.yml -------------------------------------------------------------------------------- /htdocs/app/config/config_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/config_dev.yml -------------------------------------------------------------------------------- /htdocs/app/config/config_prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/config_prod.yml -------------------------------------------------------------------------------- /htdocs/app/config/config_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/config_test.yml -------------------------------------------------------------------------------- /htdocs/app/config/parameters.yml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/parameters.yml.dist -------------------------------------------------------------------------------- /htdocs/app/config/routing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/routing.yml -------------------------------------------------------------------------------- /htdocs/app/config/routing_dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/routing_dev.yml -------------------------------------------------------------------------------- /htdocs/app/config/security.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/security.yml -------------------------------------------------------------------------------- /htdocs/app/config/services.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/app/config/services.xml -------------------------------------------------------------------------------- /htdocs/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/apple-touch-icon.png -------------------------------------------------------------------------------- /htdocs/articles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/articles.php -------------------------------------------------------------------------------- /htdocs/bin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/bin/.htaccess -------------------------------------------------------------------------------- /htdocs/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/bin/console -------------------------------------------------------------------------------- /htdocs/cachelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/cachelist.php -------------------------------------------------------------------------------- /htdocs/cachelists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/cachelists.php -------------------------------------------------------------------------------- /htdocs/change_statpic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/change_statpic.php -------------------------------------------------------------------------------- /htdocs/childwp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/childwp.php -------------------------------------------------------------------------------- /htdocs/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/composer.json -------------------------------------------------------------------------------- /htdocs/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/composer.lock -------------------------------------------------------------------------------- /htdocs/config2/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/.htaccess -------------------------------------------------------------------------------- /htdocs/config2/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/config2/locale.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/locale.inc.php -------------------------------------------------------------------------------- /htdocs/config2/nodetext/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/nodetext/1.txt -------------------------------------------------------------------------------- /htdocs/config2/nodetext/7-no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/nodetext/7-no.txt -------------------------------------------------------------------------------- /htdocs/config2/nodetext/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/nodetext/7.txt -------------------------------------------------------------------------------- /htdocs/config2/nodetext/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/nodetext/README -------------------------------------------------------------------------------- /htdocs/config2/settings-dev.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/settings-dev.inc.php -------------------------------------------------------------------------------- /htdocs/config2/settings-dist.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/config2/settings-dist.inc.php -------------------------------------------------------------------------------- /htdocs/coordinates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/coordinates.php -------------------------------------------------------------------------------- /htdocs/crowdin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/crowdin.yaml -------------------------------------------------------------------------------- /htdocs/dbmaintain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/dbmaintain.php -------------------------------------------------------------------------------- /htdocs/doc/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htdocs/doc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OpencachingDeutschland/oc-server3/HEAD/htdocs/doc/license.txt -------------------------------------------------------------------------------- /htdocs/doc/xml/index.php: -------------------------------------------------------------------------------- 1 |