From 9cd56cee5733fa145e606ac176d607b8a362cc26 Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Thu, 13 Feb 2025 20:30:59 +0100 Subject: [PATCH] Initial import --- .gitea/workflows/build.yaml | 116 +++ .gitignore | 143 ++++ .sdkmanrc | 3 + Dockerfile | 6 + LICENSE | 335 ++++++++ README.md | 66 ++ build.gradle | 67 ++ docs/tin-validator.eu.png | Bin 0 -> 88135 bytes gradle.properties | 21 + gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 43583 bytes gradle/wrapper/gradle-wrapper.properties | 7 + gradlew | 252 ++++++ gradlew.bat | 94 +++ settings.gradle | 1 + .../com/devsoap/tincheck/Application.java | 35 + .../tincheck/ApplicationConfiguration.java | 29 + .../tincheck/countries/Country_AT.java | 77 ++ .../tincheck/countries/Country_BE.java | 53 ++ .../tincheck/countries/Country_BG.java | 57 ++ .../tincheck/countries/Country_CY.java | 55 ++ .../tincheck/countries/Country_CZ.java | 87 ++ .../tincheck/countries/Country_DE.java | 84 ++ .../tincheck/countries/Country_DK.java | 80 ++ .../tincheck/countries/Country_EE.java | 81 ++ .../tincheck/countries/Country_ES.java | 97 +++ .../tincheck/countries/Country_FI.java | 106 +++ .../tincheck/countries/Country_FR.java | 60 ++ .../tincheck/countries/Country_GR.java | 34 + .../tincheck/countries/Country_HR.java | 56 ++ .../tincheck/countries/Country_IT.java | 181 +++++ .../tincheck/countries/Country_LV.java | 66 ++ .../tincheck/countries/Country_NO.java | 108 +++ .../tincheck/countries/Country_PT.java | 57 ++ .../tincheck/countries/Country_SE.java | 86 ++ .../com/devsoap/tincheck/routes/Routes.java | 82 ++ .../routes/requests/TinGenerateRequest.java | 17 + .../routes/requests/TinValidateRequest.java | 15 + .../routes/responses/GenerationResult.java | 18 + .../routes/responses/ValidationResult.java | 10 + .../tincheck/services/TinCheckService.java | 75 ++ .../com/devsoap/tincheck/tin/TinCountry.java | 21 + .../devsoap/tincheck/tin/TinGenerator.java | 18 + .../devsoap/tincheck/tin/TinValidator.java | 27 + src/main/resources/application.yml | 32 + .../resources/public/css/flag-icons.min.css | 1 + src/main/resources/public/css/index.css | 92 +++ src/main/resources/public/flags/1x1/ac.svg | 76 ++ src/main/resources/public/flags/1x1/ad.svg | 148 ++++ src/main/resources/public/flags/1x1/ae.svg | 6 + src/main/resources/public/flags/1x1/af.svg | 81 ++ src/main/resources/public/flags/1x1/ag.svg | 14 + src/main/resources/public/flags/1x1/ai.svg | 758 ++++++++++++++++++ src/main/resources/public/flags/1x1/al.svg | 5 + src/main/resources/public/flags/1x1/am.svg | 5 + src/main/resources/public/flags/1x1/ao.svg | 13 + src/main/resources/public/flags/1x1/aq.svg | 5 + src/main/resources/public/flags/1x1/ar.svg | 32 + src/main/resources/public/flags/1x1/as.svg | 73 ++ src/main/resources/public/flags/1x1/at.svg | 6 + src/main/resources/public/flags/1x1/au.svg | 8 + src/main/resources/public/flags/1x1/aw.svg | 186 +++++ src/main/resources/public/flags/1x1/ax.svg | 18 + src/main/resources/public/flags/1x1/az.svg | 8 + src/main/resources/public/flags/1x1/ba.svg | 12 + src/main/resources/public/flags/1x1/bb.svg | 6 + src/main/resources/public/flags/1x1/bd.svg | 4 + src/main/resources/public/flags/1x1/be.svg | 7 + src/main/resources/public/flags/1x1/bf.svg | 7 + src/main/resources/public/flags/1x1/bg.svg | 7 + src/main/resources/public/flags/1x1/bh.svg | 4 + src/main/resources/public/flags/1x1/bi.svg | 15 + src/main/resources/public/flags/1x1/bj.svg | 14 + src/main/resources/public/flags/1x1/bl.svg | 7 + src/main/resources/public/flags/1x1/bm.svg | 97 +++ src/main/resources/public/flags/1x1/bn.svg | 36 + src/main/resources/public/flags/1x1/bo.svg | 678 ++++++++++++++++ src/main/resources/public/flags/1x1/bq.svg | 5 + src/main/resources/public/flags/1x1/br.svg | 45 ++ src/main/resources/public/flags/1x1/bs.svg | 13 + src/main/resources/public/flags/1x1/bt.svg | 89 ++ src/main/resources/public/flags/1x1/bv.svg | 13 + src/main/resources/public/flags/1x1/bw.svg | 7 + src/main/resources/public/flags/1x1/by.svg | 22 + src/main/resources/public/flags/1x1/bz.svg | 145 ++++ src/main/resources/public/flags/1x1/ca.svg | 4 + src/main/resources/public/flags/1x1/cc.svg | 19 + src/main/resources/public/flags/1x1/cd.svg | 12 + src/main/resources/public/flags/1x1/cefta.svg | 13 + src/main/resources/public/flags/1x1/cf.svg | 15 + src/main/resources/public/flags/1x1/cg.svg | 12 + src/main/resources/public/flags/1x1/ch.svg | 9 + src/main/resources/public/flags/1x1/ci.svg | 7 + src/main/resources/public/flags/1x1/ck.svg | 9 + src/main/resources/public/flags/1x1/cl.svg | 13 + src/main/resources/public/flags/1x1/cm.svg | 15 + src/main/resources/public/flags/1x1/cn.svg | 11 + src/main/resources/public/flags/1x1/co.svg | 7 + src/main/resources/public/flags/1x1/cp.svg | 7 + src/main/resources/public/flags/1x1/cr.svg | 7 + src/main/resources/public/flags/1x1/cu.svg | 13 + src/main/resources/public/flags/1x1/cv.svg | 13 + src/main/resources/public/flags/1x1/cw.svg | 14 + src/main/resources/public/flags/1x1/cx.svg | 15 + src/main/resources/public/flags/1x1/cy.svg | 6 + src/main/resources/public/flags/1x1/cz.svg | 5 + src/main/resources/public/flags/1x1/de.svg | 5 + src/main/resources/public/flags/1x1/dg.svg | 130 +++ src/main/resources/public/flags/1x1/dj.svg | 13 + src/main/resources/public/flags/1x1/dk.svg | 5 + src/main/resources/public/flags/1x1/dm.svg | 152 ++++ src/main/resources/public/flags/1x1/do.svg | 128 +++ src/main/resources/public/flags/1x1/dz.svg | 5 + src/main/resources/public/flags/1x1/ea.svg | 547 +++++++++++++ src/main/resources/public/flags/1x1/ec.svg | 138 ++++ src/main/resources/public/flags/1x1/ee.svg | 7 + src/main/resources/public/flags/1x1/eg.svg | 38 + src/main/resources/public/flags/1x1/eh.svg | 11 + src/main/resources/public/flags/1x1/er.svg | 13 + src/main/resources/public/flags/1x1/es-ct.svg | 4 + src/main/resources/public/flags/1x1/es-ga.svg | 187 +++++ src/main/resources/public/flags/1x1/es-pv.svg | 5 + src/main/resources/public/flags/1x1/es.svg | 547 +++++++++++++ src/main/resources/public/flags/1x1/et.svg | 14 + src/main/resources/public/flags/1x1/eu.svg | 28 + src/main/resources/public/flags/1x1/fi.svg | 5 + src/main/resources/public/flags/1x1/fj.svg | 123 +++ src/main/resources/public/flags/1x1/fk.svg | 89 ++ src/main/resources/public/flags/1x1/fm.svg | 11 + src/main/resources/public/flags/1x1/fo.svg | 12 + src/main/resources/public/flags/1x1/fr.svg | 5 + src/main/resources/public/flags/1x1/ga.svg | 7 + .../resources/public/flags/1x1/gb-eng.svg | 5 + .../resources/public/flags/1x1/gb-nir.svg | 131 +++ .../resources/public/flags/1x1/gb-sct.svg | 4 + .../resources/public/flags/1x1/gb-wls.svg | 9 + src/main/resources/public/flags/1x1/gb.svg | 7 + src/main/resources/public/flags/1x1/gd.svg | 27 + src/main/resources/public/flags/1x1/ge.svg | 6 + src/main/resources/public/flags/1x1/gf.svg | 5 + src/main/resources/public/flags/1x1/gg.svg | 9 + src/main/resources/public/flags/1x1/gh.svg | 6 + src/main/resources/public/flags/1x1/gi.svg | 32 + src/main/resources/public/flags/1x1/gl.svg | 4 + src/main/resources/public/flags/1x1/gm.svg | 9 + src/main/resources/public/flags/1x1/gn.svg | 7 + src/main/resources/public/flags/1x1/gp.svg | 5 + src/main/resources/public/flags/1x1/gq.svg | 23 + src/main/resources/public/flags/1x1/gr.svg | 16 + src/main/resources/public/flags/1x1/gs.svg | 132 +++ src/main/resources/public/flags/1x1/gt.svg | 220 +++++ src/main/resources/public/flags/1x1/gu.svg | 23 + src/main/resources/public/flags/1x1/gw.svg | 15 + src/main/resources/public/flags/1x1/gy.svg | 9 + src/main/resources/public/flags/1x1/hk.svg | 8 + src/main/resources/public/flags/1x1/hm.svg | 8 + src/main/resources/public/flags/1x1/hn.svg | 18 + src/main/resources/public/flags/1x1/hr.svg | 56 ++ src/main/resources/public/flags/1x1/ht.svg | 116 +++ src/main/resources/public/flags/1x1/hu.svg | 7 + src/main/resources/public/flags/1x1/ic.svg | 7 + src/main/resources/public/flags/1x1/id.svg | 4 + src/main/resources/public/flags/1x1/ie.svg | 7 + src/main/resources/public/flags/1x1/il.svg | 14 + src/main/resources/public/flags/1x1/im.svg | 36 + src/main/resources/public/flags/1x1/in.svg | 25 + src/main/resources/public/flags/1x1/io.svg | 130 +++ src/main/resources/public/flags/1x1/iq.svg | 10 + src/main/resources/public/flags/1x1/ir.svg | 219 +++++ src/main/resources/public/flags/1x1/is.svg | 12 + src/main/resources/public/flags/1x1/it.svg | 7 + src/main/resources/public/flags/1x1/je.svg | 44 + src/main/resources/public/flags/1x1/jm.svg | 8 + src/main/resources/public/flags/1x1/jo.svg | 16 + src/main/resources/public/flags/1x1/jp.svg | 11 + src/main/resources/public/flags/1x1/ke.svg | 23 + src/main/resources/public/flags/1x1/kg.svg | 15 + src/main/resources/public/flags/1x1/kh.svg | 61 ++ src/main/resources/public/flags/1x1/ki.svg | 36 + src/main/resources/public/flags/1x1/km.svg | 16 + src/main/resources/public/flags/1x1/kn.svg | 14 + src/main/resources/public/flags/1x1/kp.svg | 15 + src/main/resources/public/flags/1x1/kr.svg | 17 + src/main/resources/public/flags/1x1/kw.svg | 13 + src/main/resources/public/flags/1x1/ky.svg | 109 +++ src/main/resources/public/flags/1x1/kz.svg | 36 + src/main/resources/public/flags/1x1/la.svg | 12 + src/main/resources/public/flags/1x1/lb.svg | 15 + src/main/resources/public/flags/1x1/lc.svg | 8 + src/main/resources/public/flags/1x1/li.svg | 43 + src/main/resources/public/flags/1x1/lk.svg | 22 + src/main/resources/public/flags/1x1/lr.svg | 14 + src/main/resources/public/flags/1x1/ls.svg | 8 + src/main/resources/public/flags/1x1/lt.svg | 7 + src/main/resources/public/flags/1x1/lu.svg | 5 + src/main/resources/public/flags/1x1/lv.svg | 6 + src/main/resources/public/flags/1x1/ly.svg | 13 + src/main/resources/public/flags/1x1/ma.svg | 4 + src/main/resources/public/flags/1x1/mc.svg | 6 + src/main/resources/public/flags/1x1/md.svg | 71 ++ src/main/resources/public/flags/1x1/me.svg | 118 +++ src/main/resources/public/flags/1x1/mf.svg | 5 + src/main/resources/public/flags/1x1/mg.svg | 7 + src/main/resources/public/flags/1x1/mh.svg | 8 + src/main/resources/public/flags/1x1/mk.svg | 5 + src/main/resources/public/flags/1x1/ml.svg | 7 + src/main/resources/public/flags/1x1/mm.svg | 10 + src/main/resources/public/flags/1x1/mn.svg | 14 + src/main/resources/public/flags/1x1/mo.svg | 9 + src/main/resources/public/flags/1x1/mp.svg | 86 ++ src/main/resources/public/flags/1x1/mq.svg | 5 + src/main/resources/public/flags/1x1/mr.svg | 6 + src/main/resources/public/flags/1x1/ms.svg | 25 + src/main/resources/public/flags/1x1/mt.svg | 50 ++ src/main/resources/public/flags/1x1/mu.svg | 8 + src/main/resources/public/flags/1x1/mv.svg | 6 + src/main/resources/public/flags/1x1/mw.svg | 15 + src/main/resources/public/flags/1x1/mx.svg | 378 +++++++++ src/main/resources/public/flags/1x1/my.svg | 18 + src/main/resources/public/flags/1x1/mz.svg | 21 + src/main/resources/public/flags/1x1/na.svg | 16 + src/main/resources/public/flags/1x1/nc.svg | 12 + src/main/resources/public/flags/1x1/ne.svg | 6 + src/main/resources/public/flags/1x1/nf.svg | 11 + src/main/resources/public/flags/1x1/ng.svg | 6 + src/main/resources/public/flags/1x1/ni.svg | 129 +++ src/main/resources/public/flags/1x1/nl.svg | 5 + src/main/resources/public/flags/1x1/no.svg | 7 + src/main/resources/public/flags/1x1/np.svg | 18 + src/main/resources/public/flags/1x1/nr.svg | 12 + src/main/resources/public/flags/1x1/nu.svg | 10 + src/main/resources/public/flags/1x1/nz.svg | 36 + src/main/resources/public/flags/1x1/om.svg | 115 +++ src/main/resources/public/flags/1x1/pa.svg | 13 + src/main/resources/public/flags/1x1/pe.svg | 244 ++++++ src/main/resources/public/flags/1x1/pf.svg | 18 + src/main/resources/public/flags/1x1/pg.svg | 16 + src/main/resources/public/flags/1x1/ph.svg | 8 + src/main/resources/public/flags/1x1/pk.svg | 15 + src/main/resources/public/flags/1x1/pl.svg | 6 + src/main/resources/public/flags/1x1/pm.svg | 5 + src/main/resources/public/flags/1x1/pn.svg | 53 ++ src/main/resources/public/flags/1x1/pr.svg | 13 + src/main/resources/public/flags/1x1/ps.svg | 15 + src/main/resources/public/flags/1x1/pt.svg | 57 ++ src/main/resources/public/flags/1x1/pw.svg | 11 + src/main/resources/public/flags/1x1/py.svg | 156 ++++ src/main/resources/public/flags/1x1/qa.svg | 4 + src/main/resources/public/flags/1x1/re.svg | 7 + src/main/resources/public/flags/1x1/ro.svg | 7 + src/main/resources/public/flags/1x1/rs.svg | 296 +++++++ src/main/resources/public/flags/1x1/ru.svg | 7 + src/main/resources/public/flags/1x1/rw.svg | 13 + src/main/resources/public/flags/1x1/sa.svg | 26 + src/main/resources/public/flags/1x1/sb.svg | 13 + src/main/resources/public/flags/1x1/sc.svg | 7 + src/main/resources/public/flags/1x1/sd.svg | 13 + src/main/resources/public/flags/1x1/se.svg | 4 + src/main/resources/public/flags/1x1/sg.svg | 13 + src/main/resources/public/flags/1x1/sh.svg | 76 ++ src/main/resources/public/flags/1x1/si.svg | 18 + src/main/resources/public/flags/1x1/sj.svg | 7 + src/main/resources/public/flags/1x1/sk.svg | 9 + src/main/resources/public/flags/1x1/sl.svg | 12 + src/main/resources/public/flags/1x1/sm.svg | 73 ++ src/main/resources/public/flags/1x1/sn.svg | 8 + src/main/resources/public/flags/1x1/so.svg | 11 + src/main/resources/public/flags/1x1/sr.svg | 6 + src/main/resources/public/flags/1x1/ss.svg | 8 + src/main/resources/public/flags/1x1/st.svg | 16 + src/main/resources/public/flags/1x1/sv.svg | 594 ++++++++++++++ src/main/resources/public/flags/1x1/sx.svg | 56 ++ src/main/resources/public/flags/1x1/sy.svg | 6 + src/main/resources/public/flags/1x1/sz.svg | 34 + src/main/resources/public/flags/1x1/ta.svg | 76 ++ src/main/resources/public/flags/1x1/tc.svg | 50 ++ src/main/resources/public/flags/1x1/td.svg | 7 + src/main/resources/public/flags/1x1/tf.svg | 15 + src/main/resources/public/flags/1x1/tg.svg | 14 + src/main/resources/public/flags/1x1/th.svg | 7 + src/main/resources/public/flags/1x1/tj.svg | 26 + src/main/resources/public/flags/1x1/tk.svg | 5 + src/main/resources/public/flags/1x1/tl.svg | 13 + src/main/resources/public/flags/1x1/tm.svg | 202 +++++ src/main/resources/public/flags/1x1/tn.svg | 4 + src/main/resources/public/flags/1x1/to.svg | 10 + src/main/resources/public/flags/1x1/tr.svg | 8 + src/main/resources/public/flags/1x1/tt.svg | 7 + src/main/resources/public/flags/1x1/tv.svg | 9 + src/main/resources/public/flags/1x1/tw.svg | 32 + src/main/resources/public/flags/1x1/tz.svg | 15 + src/main/resources/public/flags/1x1/ua.svg | 6 + src/main/resources/public/flags/1x1/ug.svg | 30 + src/main/resources/public/flags/1x1/um.svg | 15 + src/main/resources/public/flags/1x1/un.svg | 16 + src/main/resources/public/flags/1x1/us.svg | 9 + src/main/resources/public/flags/1x1/uy.svg | 28 + src/main/resources/public/flags/1x1/uz.svg | 30 + src/main/resources/public/flags/1x1/va.svg | 479 +++++++++++ src/main/resources/public/flags/1x1/vc.svg | 8 + src/main/resources/public/flags/1x1/ve.svg | 26 + src/main/resources/public/flags/1x1/vg.svg | 63 ++ src/main/resources/public/flags/1x1/vi.svg | 28 + src/main/resources/public/flags/1x1/vn.svg | 11 + src/main/resources/public/flags/1x1/vu.svg | 21 + src/main/resources/public/flags/1x1/wf.svg | 5 + src/main/resources/public/flags/1x1/ws.svg | 7 + src/main/resources/public/flags/1x1/xk.svg | 8 + src/main/resources/public/flags/1x1/xx.svg | 4 + src/main/resources/public/flags/1x1/ye.svg | 7 + src/main/resources/public/flags/1x1/yt.svg | 5 + src/main/resources/public/flags/1x1/za.svg | 17 + src/main/resources/public/flags/1x1/zm.svg | 27 + src/main/resources/public/flags/1x1/zw.svg | 21 + src/main/resources/public/flags/4x3/ac.svg | 76 ++ src/main/resources/public/flags/4x3/ad.svg | 150 ++++ src/main/resources/public/flags/4x3/ae.svg | 6 + src/main/resources/public/flags/4x3/af.svg | 81 ++ src/main/resources/public/flags/4x3/ag.svg | 14 + src/main/resources/public/flags/4x3/ai.svg | 758 ++++++++++++++++++ src/main/resources/public/flags/4x3/al.svg | 5 + src/main/resources/public/flags/4x3/am.svg | 5 + src/main/resources/public/flags/4x3/ao.svg | 13 + src/main/resources/public/flags/4x3/aq.svg | 5 + src/main/resources/public/flags/4x3/ar.svg | 32 + src/main/resources/public/flags/4x3/as.svg | 72 ++ src/main/resources/public/flags/4x3/at.svg | 6 + src/main/resources/public/flags/4x3/au.svg | 8 + src/main/resources/public/flags/4x3/aw.svg | 186 +++++ src/main/resources/public/flags/4x3/ax.svg | 18 + src/main/resources/public/flags/4x3/az.svg | 8 + src/main/resources/public/flags/4x3/ba.svg | 12 + src/main/resources/public/flags/4x3/bb.svg | 6 + src/main/resources/public/flags/4x3/bd.svg | 4 + src/main/resources/public/flags/4x3/be.svg | 7 + src/main/resources/public/flags/4x3/bf.svg | 7 + src/main/resources/public/flags/4x3/bg.svg | 7 + src/main/resources/public/flags/4x3/bh.svg | 4 + src/main/resources/public/flags/4x3/bi.svg | 15 + src/main/resources/public/flags/4x3/bj.svg | 14 + src/main/resources/public/flags/4x3/bl.svg | 5 + src/main/resources/public/flags/4x3/bm.svg | 97 +++ src/main/resources/public/flags/4x3/bn.svg | 36 + src/main/resources/public/flags/4x3/bo.svg | 676 ++++++++++++++++ src/main/resources/public/flags/4x3/bq.svg | 5 + src/main/resources/public/flags/4x3/br.svg | 45 ++ src/main/resources/public/flags/4x3/bs.svg | 13 + src/main/resources/public/flags/4x3/bt.svg | 89 ++ src/main/resources/public/flags/4x3/bv.svg | 13 + src/main/resources/public/flags/4x3/bw.svg | 7 + src/main/resources/public/flags/4x3/by.svg | 20 + src/main/resources/public/flags/4x3/bz.svg | 145 ++++ src/main/resources/public/flags/4x3/ca.svg | 4 + src/main/resources/public/flags/4x3/cc.svg | 19 + src/main/resources/public/flags/4x3/cd.svg | 5 + src/main/resources/public/flags/4x3/cefta.svg | 13 + src/main/resources/public/flags/4x3/cf.svg | 15 + src/main/resources/public/flags/4x3/cg.svg | 12 + src/main/resources/public/flags/4x3/ch.svg | 9 + src/main/resources/public/flags/4x3/ci.svg | 7 + src/main/resources/public/flags/4x3/ck.svg | 9 + src/main/resources/public/flags/4x3/cl.svg | 13 + src/main/resources/public/flags/4x3/cm.svg | 15 + src/main/resources/public/flags/4x3/cn.svg | 11 + src/main/resources/public/flags/4x3/co.svg | 7 + src/main/resources/public/flags/4x3/cp.svg | 7 + src/main/resources/public/flags/4x3/cr.svg | 7 + src/main/resources/public/flags/4x3/cu.svg | 13 + src/main/resources/public/flags/4x3/cv.svg | 13 + src/main/resources/public/flags/4x3/cw.svg | 14 + src/main/resources/public/flags/4x3/cx.svg | 15 + src/main/resources/public/flags/4x3/cy.svg | 6 + src/main/resources/public/flags/4x3/cz.svg | 5 + src/main/resources/public/flags/4x3/de.svg | 5 + src/main/resources/public/flags/4x3/dg.svg | 130 +++ src/main/resources/public/flags/4x3/dj.svg | 13 + src/main/resources/public/flags/4x3/dk.svg | 5 + src/main/resources/public/flags/4x3/dm.svg | 152 ++++ src/main/resources/public/flags/4x3/do.svg | 129 +++ src/main/resources/public/flags/4x3/dz.svg | 5 + src/main/resources/public/flags/4x3/ea.svg | 544 +++++++++++++ src/main/resources/public/flags/4x3/ec.svg | 138 ++++ src/main/resources/public/flags/4x3/ee.svg | 7 + src/main/resources/public/flags/4x3/eg.svg | 38 + src/main/resources/public/flags/4x3/eh.svg | 16 + src/main/resources/public/flags/4x3/er.svg | 8 + src/main/resources/public/flags/4x3/es-ct.svg | 4 + src/main/resources/public/flags/4x3/es-ga.svg | 187 +++++ src/main/resources/public/flags/4x3/es-pv.svg | 5 + src/main/resources/public/flags/4x3/es.svg | 544 +++++++++++++ src/main/resources/public/flags/4x3/et.svg | 14 + src/main/resources/public/flags/4x3/eu.svg | 28 + src/main/resources/public/flags/4x3/fi.svg | 5 + src/main/resources/public/flags/4x3/fj.svg | 120 +++ src/main/resources/public/flags/4x3/fk.svg | 90 +++ src/main/resources/public/flags/4x3/fm.svg | 11 + src/main/resources/public/flags/4x3/fo.svg | 12 + src/main/resources/public/flags/4x3/fr.svg | 5 + src/main/resources/public/flags/4x3/ga.svg | 7 + .../resources/public/flags/4x3/gb-eng.svg | 5 + .../resources/public/flags/4x3/gb-nir.svg | 132 +++ .../resources/public/flags/4x3/gb-sct.svg | 4 + .../resources/public/flags/4x3/gb-wls.svg | 9 + src/main/resources/public/flags/4x3/gb.svg | 7 + src/main/resources/public/flags/4x3/gd.svg | 27 + src/main/resources/public/flags/4x3/ge.svg | 6 + src/main/resources/public/flags/4x3/gf.svg | 5 + src/main/resources/public/flags/4x3/gg.svg | 9 + src/main/resources/public/flags/4x3/gh.svg | 6 + src/main/resources/public/flags/4x3/gi.svg | 32 + src/main/resources/public/flags/4x3/gl.svg | 4 + src/main/resources/public/flags/4x3/gm.svg | 14 + src/main/resources/public/flags/4x3/gn.svg | 7 + src/main/resources/public/flags/4x3/gp.svg | 5 + src/main/resources/public/flags/4x3/gq.svg | 23 + src/main/resources/public/flags/4x3/gr.svg | 16 + src/main/resources/public/flags/4x3/gs.svg | 133 +++ src/main/resources/public/flags/4x3/gt.svg | 220 +++++ src/main/resources/public/flags/4x3/gu.svg | 23 + src/main/resources/public/flags/4x3/gw.svg | 13 + src/main/resources/public/flags/4x3/gy.svg | 9 + src/main/resources/public/flags/4x3/hk.svg | 8 + src/main/resources/public/flags/4x3/hm.svg | 8 + src/main/resources/public/flags/4x3/hn.svg | 18 + src/main/resources/public/flags/4x3/hr.svg | 58 ++ src/main/resources/public/flags/4x3/ht.svg | 116 +++ src/main/resources/public/flags/4x3/hu.svg | 7 + src/main/resources/public/flags/4x3/ic.svg | 7 + src/main/resources/public/flags/4x3/id.svg | 4 + src/main/resources/public/flags/4x3/ie.svg | 7 + src/main/resources/public/flags/4x3/il.svg | 14 + src/main/resources/public/flags/4x3/im.svg | 36 + src/main/resources/public/flags/4x3/in.svg | 25 + src/main/resources/public/flags/4x3/io.svg | 130 +++ src/main/resources/public/flags/4x3/iq.svg | 10 + src/main/resources/public/flags/4x3/ir.svg | 219 +++++ src/main/resources/public/flags/4x3/is.svg | 12 + src/main/resources/public/flags/4x3/it.svg | 7 + src/main/resources/public/flags/4x3/je.svg | 45 ++ src/main/resources/public/flags/4x3/jm.svg | 8 + src/main/resources/public/flags/4x3/jo.svg | 16 + src/main/resources/public/flags/4x3/jp.svg | 11 + src/main/resources/public/flags/4x3/ke.svg | 23 + src/main/resources/public/flags/4x3/kg.svg | 15 + src/main/resources/public/flags/4x3/kh.svg | 61 ++ src/main/resources/public/flags/4x3/ki.svg | 36 + src/main/resources/public/flags/4x3/km.svg | 16 + src/main/resources/public/flags/4x3/kn.svg | 14 + src/main/resources/public/flags/4x3/kp.svg | 15 + src/main/resources/public/flags/4x3/kr.svg | 24 + src/main/resources/public/flags/4x3/kw.svg | 13 + src/main/resources/public/flags/4x3/ky.svg | 109 +++ src/main/resources/public/flags/4x3/kz.svg | 36 + src/main/resources/public/flags/4x3/la.svg | 12 + src/main/resources/public/flags/4x3/lb.svg | 15 + src/main/resources/public/flags/4x3/lc.svg | 8 + src/main/resources/public/flags/4x3/li.svg | 43 + src/main/resources/public/flags/4x3/lk.svg | 22 + src/main/resources/public/flags/4x3/lr.svg | 14 + src/main/resources/public/flags/4x3/ls.svg | 8 + src/main/resources/public/flags/4x3/lt.svg | 7 + src/main/resources/public/flags/4x3/lu.svg | 5 + src/main/resources/public/flags/4x3/lv.svg | 6 + src/main/resources/public/flags/4x3/ly.svg | 13 + src/main/resources/public/flags/4x3/ma.svg | 4 + src/main/resources/public/flags/4x3/mc.svg | 6 + src/main/resources/public/flags/4x3/md.svg | 70 ++ src/main/resources/public/flags/4x3/me.svg | 116 +++ src/main/resources/public/flags/4x3/mf.svg | 5 + src/main/resources/public/flags/4x3/mg.svg | 7 + src/main/resources/public/flags/4x3/mh.svg | 7 + src/main/resources/public/flags/4x3/mk.svg | 5 + src/main/resources/public/flags/4x3/ml.svg | 7 + src/main/resources/public/flags/4x3/mm.svg | 12 + src/main/resources/public/flags/4x3/mn.svg | 14 + src/main/resources/public/flags/4x3/mo.svg | 9 + src/main/resources/public/flags/4x3/mp.svg | 86 ++ src/main/resources/public/flags/4x3/mq.svg | 5 + src/main/resources/public/flags/4x3/mr.svg | 6 + src/main/resources/public/flags/4x3/ms.svg | 33 + src/main/resources/public/flags/4x3/mt.svg | 49 ++ src/main/resources/public/flags/4x3/mu.svg | 8 + src/main/resources/public/flags/4x3/mv.svg | 6 + src/main/resources/public/flags/4x3/mw.svg | 10 + src/main/resources/public/flags/4x3/mx.svg | 382 +++++++++ src/main/resources/public/flags/4x3/my.svg | 26 + src/main/resources/public/flags/4x3/mz.svg | 21 + src/main/resources/public/flags/4x3/na.svg | 16 + src/main/resources/public/flags/4x3/nc.svg | 13 + src/main/resources/public/flags/4x3/ne.svg | 6 + src/main/resources/public/flags/4x3/nf.svg | 9 + src/main/resources/public/flags/4x3/ng.svg | 6 + src/main/resources/public/flags/4x3/ni.svg | 129 +++ src/main/resources/public/flags/4x3/nl.svg | 5 + src/main/resources/public/flags/4x3/no.svg | 7 + src/main/resources/public/flags/4x3/np.svg | 13 + src/main/resources/public/flags/4x3/nr.svg | 12 + src/main/resources/public/flags/4x3/nu.svg | 10 + src/main/resources/public/flags/4x3/nz.svg | 36 + src/main/resources/public/flags/4x3/om.svg | 115 +++ src/main/resources/public/flags/4x3/pa.svg | 14 + src/main/resources/public/flags/4x3/pe.svg | 244 ++++++ src/main/resources/public/flags/4x3/pf.svg | 19 + src/main/resources/public/flags/4x3/pg.svg | 9 + src/main/resources/public/flags/4x3/ph.svg | 6 + src/main/resources/public/flags/4x3/pk.svg | 15 + src/main/resources/public/flags/4x3/pl.svg | 6 + src/main/resources/public/flags/4x3/pm.svg | 5 + src/main/resources/public/flags/4x3/pn.svg | 53 ++ src/main/resources/public/flags/4x3/pr.svg | 13 + src/main/resources/public/flags/4x3/ps.svg | 15 + src/main/resources/public/flags/4x3/pt.svg | 57 ++ src/main/resources/public/flags/4x3/pw.svg | 11 + src/main/resources/public/flags/4x3/py.svg | 157 ++++ src/main/resources/public/flags/4x3/qa.svg | 4 + src/main/resources/public/flags/4x3/re.svg | 5 + src/main/resources/public/flags/4x3/ro.svg | 7 + src/main/resources/public/flags/4x3/rs.svg | 292 +++++++ src/main/resources/public/flags/4x3/ru.svg | 7 + src/main/resources/public/flags/4x3/rw.svg | 13 + src/main/resources/public/flags/4x3/sa.svg | 26 + src/main/resources/public/flags/4x3/sb.svg | 13 + src/main/resources/public/flags/4x3/sc.svg | 7 + src/main/resources/public/flags/4x3/sd.svg | 13 + src/main/resources/public/flags/4x3/se.svg | 4 + src/main/resources/public/flags/4x3/sg.svg | 13 + src/main/resources/public/flags/4x3/sh.svg | 76 ++ src/main/resources/public/flags/4x3/si.svg | 18 + src/main/resources/public/flags/4x3/sj.svg | 7 + src/main/resources/public/flags/4x3/sk.svg | 9 + src/main/resources/public/flags/4x3/sl.svg | 7 + src/main/resources/public/flags/4x3/sm.svg | 75 ++ src/main/resources/public/flags/4x3/sn.svg | 8 + src/main/resources/public/flags/4x3/so.svg | 11 + src/main/resources/public/flags/4x3/sr.svg | 6 + src/main/resources/public/flags/4x3/ss.svg | 8 + src/main/resources/public/flags/4x3/st.svg | 16 + src/main/resources/public/flags/4x3/sv.svg | 594 ++++++++++++++ src/main/resources/public/flags/4x3/sx.svg | 56 ++ src/main/resources/public/flags/4x3/sy.svg | 6 + src/main/resources/public/flags/4x3/sz.svg | 34 + src/main/resources/public/flags/4x3/ta.svg | 76 ++ src/main/resources/public/flags/4x3/tc.svg | 50 ++ src/main/resources/public/flags/4x3/td.svg | 7 + src/main/resources/public/flags/4x3/tf.svg | 15 + src/main/resources/public/flags/4x3/tg.svg | 14 + src/main/resources/public/flags/4x3/th.svg | 7 + src/main/resources/public/flags/4x3/tj.svg | 22 + src/main/resources/public/flags/4x3/tk.svg | 5 + src/main/resources/public/flags/4x3/tl.svg | 13 + src/main/resources/public/flags/4x3/tm.svg | 205 +++++ src/main/resources/public/flags/4x3/tn.svg | 4 + src/main/resources/public/flags/4x3/to.svg | 10 + src/main/resources/public/flags/4x3/tr.svg | 8 + src/main/resources/public/flags/4x3/tt.svg | 5 + src/main/resources/public/flags/4x3/tv.svg | 9 + src/main/resources/public/flags/4x3/tw.svg | 34 + src/main/resources/public/flags/4x3/tz.svg | 13 + src/main/resources/public/flags/4x3/ua.svg | 6 + src/main/resources/public/flags/4x3/ug.svg | 30 + src/main/resources/public/flags/4x3/um.svg | 15 + src/main/resources/public/flags/4x3/un.svg | 16 + src/main/resources/public/flags/4x3/us.svg | 9 + src/main/resources/public/flags/4x3/uy.svg | 28 + src/main/resources/public/flags/4x3/uz.svg | 30 + src/main/resources/public/flags/4x3/va.svg | 479 +++++++++++ src/main/resources/public/flags/4x3/vc.svg | 8 + src/main/resources/public/flags/4x3/ve.svg | 26 + src/main/resources/public/flags/4x3/vg.svg | 63 ++ src/main/resources/public/flags/4x3/vi.svg | 28 + src/main/resources/public/flags/4x3/vn.svg | 11 + src/main/resources/public/flags/4x3/vu.svg | 21 + src/main/resources/public/flags/4x3/wf.svg | 5 + src/main/resources/public/flags/4x3/ws.svg | 7 + src/main/resources/public/flags/4x3/xk.svg | 8 + src/main/resources/public/flags/4x3/xx.svg | 4 + src/main/resources/public/flags/4x3/ye.svg | 7 + src/main/resources/public/flags/4x3/yt.svg | 5 + src/main/resources/public/flags/4x3/za.svg | 17 + src/main/resources/public/flags/4x3/zm.svg | 27 + src/main/resources/public/flags/4x3/zw.svg | 21 + .../public/icons/android-chrome-192x192.png | Bin 0 -> 6546 bytes .../public/icons/android-chrome-512x512.png | Bin 0 -> 20059 bytes .../public/icons/apple-touch-icon.png | Bin 0 -> 5842 bytes .../resources/public/icons/favicon-16x16.png | Bin 0 -> 466 bytes .../resources/public/icons/favicon-32x32.png | Bin 0 -> 873 bytes src/main/resources/public/icons/favicon.ico | Bin 0 -> 15406 bytes src/main/resources/public/manifest.json | 24 + src/main/resources/public/robots.txt | 3 + src/main/resources/views/index.hbs | 92 +++ .../resources/views/validation-result.hbs | 1 + .../com/devsoap/tincheck/TinCountryTest.java | 46 ++ 591 files changed, 26588 insertions(+) create mode 100644 .gitea/workflows/build.yaml create mode 100644 .gitignore create mode 100644 .sdkmanrc create mode 100644 Dockerfile create mode 100644 LICENSE create mode 100644 README.md create mode 100644 build.gradle create mode 100644 docs/tin-validator.eu.png create mode 100644 gradle.properties create mode 100644 gradle/wrapper/gradle-wrapper.jar create mode 100644 gradle/wrapper/gradle-wrapper.properties create mode 100755 gradlew create mode 100644 gradlew.bat create mode 100644 settings.gradle create mode 100644 src/main/java/com/devsoap/tincheck/Application.java create mode 100644 src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_AT.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_BE.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_BG.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_CY.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_CZ.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_DE.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_DK.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_EE.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_ES.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_FI.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_FR.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_GR.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_HR.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_IT.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_LV.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_NO.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_PT.java create mode 100644 src/main/java/com/devsoap/tincheck/countries/Country_SE.java create mode 100644 src/main/java/com/devsoap/tincheck/routes/Routes.java create mode 100644 src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java create mode 100644 src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java create mode 100644 src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java create mode 100644 src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java create mode 100644 src/main/java/com/devsoap/tincheck/services/TinCheckService.java create mode 100644 src/main/java/com/devsoap/tincheck/tin/TinCountry.java create mode 100644 src/main/java/com/devsoap/tincheck/tin/TinGenerator.java create mode 100644 src/main/java/com/devsoap/tincheck/tin/TinValidator.java create mode 100644 src/main/resources/application.yml create mode 100644 src/main/resources/public/css/flag-icons.min.css create mode 100644 src/main/resources/public/css/index.css create mode 100644 src/main/resources/public/flags/1x1/ac.svg create mode 100644 src/main/resources/public/flags/1x1/ad.svg create mode 100644 src/main/resources/public/flags/1x1/ae.svg create mode 100644 src/main/resources/public/flags/1x1/af.svg create mode 100644 src/main/resources/public/flags/1x1/ag.svg create mode 100644 src/main/resources/public/flags/1x1/ai.svg create mode 100644 src/main/resources/public/flags/1x1/al.svg create mode 100644 src/main/resources/public/flags/1x1/am.svg create mode 100644 src/main/resources/public/flags/1x1/ao.svg create mode 100644 src/main/resources/public/flags/1x1/aq.svg create mode 100644 src/main/resources/public/flags/1x1/ar.svg create mode 100644 src/main/resources/public/flags/1x1/as.svg create mode 100644 src/main/resources/public/flags/1x1/at.svg create mode 100644 src/main/resources/public/flags/1x1/au.svg create mode 100644 src/main/resources/public/flags/1x1/aw.svg create mode 100644 src/main/resources/public/flags/1x1/ax.svg create mode 100644 src/main/resources/public/flags/1x1/az.svg create mode 100644 src/main/resources/public/flags/1x1/ba.svg create mode 100644 src/main/resources/public/flags/1x1/bb.svg create mode 100644 src/main/resources/public/flags/1x1/bd.svg create mode 100644 src/main/resources/public/flags/1x1/be.svg create mode 100644 src/main/resources/public/flags/1x1/bf.svg create mode 100644 src/main/resources/public/flags/1x1/bg.svg create mode 100644 src/main/resources/public/flags/1x1/bh.svg create mode 100644 src/main/resources/public/flags/1x1/bi.svg create mode 100644 src/main/resources/public/flags/1x1/bj.svg create mode 100644 src/main/resources/public/flags/1x1/bl.svg create mode 100644 src/main/resources/public/flags/1x1/bm.svg create mode 100644 src/main/resources/public/flags/1x1/bn.svg create mode 100644 src/main/resources/public/flags/1x1/bo.svg create mode 100644 src/main/resources/public/flags/1x1/bq.svg create mode 100644 src/main/resources/public/flags/1x1/br.svg create mode 100644 src/main/resources/public/flags/1x1/bs.svg create mode 100644 src/main/resources/public/flags/1x1/bt.svg create mode 100644 src/main/resources/public/flags/1x1/bv.svg create mode 100644 src/main/resources/public/flags/1x1/bw.svg create mode 100644 src/main/resources/public/flags/1x1/by.svg create mode 100644 src/main/resources/public/flags/1x1/bz.svg create mode 100644 src/main/resources/public/flags/1x1/ca.svg create mode 100644 src/main/resources/public/flags/1x1/cc.svg create mode 100644 src/main/resources/public/flags/1x1/cd.svg create mode 100644 src/main/resources/public/flags/1x1/cefta.svg create mode 100644 src/main/resources/public/flags/1x1/cf.svg create mode 100644 src/main/resources/public/flags/1x1/cg.svg create mode 100644 src/main/resources/public/flags/1x1/ch.svg create mode 100644 src/main/resources/public/flags/1x1/ci.svg create mode 100644 src/main/resources/public/flags/1x1/ck.svg create mode 100644 src/main/resources/public/flags/1x1/cl.svg create mode 100644 src/main/resources/public/flags/1x1/cm.svg create mode 100644 src/main/resources/public/flags/1x1/cn.svg create mode 100644 src/main/resources/public/flags/1x1/co.svg create mode 100644 src/main/resources/public/flags/1x1/cp.svg create mode 100644 src/main/resources/public/flags/1x1/cr.svg create mode 100644 src/main/resources/public/flags/1x1/cu.svg create mode 100644 src/main/resources/public/flags/1x1/cv.svg create mode 100644 src/main/resources/public/flags/1x1/cw.svg create mode 100644 src/main/resources/public/flags/1x1/cx.svg create mode 100644 src/main/resources/public/flags/1x1/cy.svg create mode 100644 src/main/resources/public/flags/1x1/cz.svg create mode 100644 src/main/resources/public/flags/1x1/de.svg create mode 100644 src/main/resources/public/flags/1x1/dg.svg create mode 100644 src/main/resources/public/flags/1x1/dj.svg create mode 100644 src/main/resources/public/flags/1x1/dk.svg create mode 100644 src/main/resources/public/flags/1x1/dm.svg create mode 100644 src/main/resources/public/flags/1x1/do.svg create mode 100644 src/main/resources/public/flags/1x1/dz.svg create mode 100644 src/main/resources/public/flags/1x1/ea.svg create mode 100644 src/main/resources/public/flags/1x1/ec.svg create mode 100644 src/main/resources/public/flags/1x1/ee.svg create mode 100644 src/main/resources/public/flags/1x1/eg.svg create mode 100644 src/main/resources/public/flags/1x1/eh.svg create mode 100644 src/main/resources/public/flags/1x1/er.svg create mode 100644 src/main/resources/public/flags/1x1/es-ct.svg create mode 100644 src/main/resources/public/flags/1x1/es-ga.svg create mode 100644 src/main/resources/public/flags/1x1/es-pv.svg create mode 100644 src/main/resources/public/flags/1x1/es.svg create mode 100644 src/main/resources/public/flags/1x1/et.svg create mode 100644 src/main/resources/public/flags/1x1/eu.svg create mode 100644 src/main/resources/public/flags/1x1/fi.svg create mode 100644 src/main/resources/public/flags/1x1/fj.svg create mode 100644 src/main/resources/public/flags/1x1/fk.svg create mode 100644 src/main/resources/public/flags/1x1/fm.svg create mode 100644 src/main/resources/public/flags/1x1/fo.svg create mode 100644 src/main/resources/public/flags/1x1/fr.svg create mode 100644 src/main/resources/public/flags/1x1/ga.svg create mode 100644 src/main/resources/public/flags/1x1/gb-eng.svg create mode 100644 src/main/resources/public/flags/1x1/gb-nir.svg create mode 100644 src/main/resources/public/flags/1x1/gb-sct.svg create mode 100644 src/main/resources/public/flags/1x1/gb-wls.svg create mode 100644 src/main/resources/public/flags/1x1/gb.svg create mode 100644 src/main/resources/public/flags/1x1/gd.svg create mode 100644 src/main/resources/public/flags/1x1/ge.svg create mode 100644 src/main/resources/public/flags/1x1/gf.svg create mode 100644 src/main/resources/public/flags/1x1/gg.svg create mode 100644 src/main/resources/public/flags/1x1/gh.svg create mode 100644 src/main/resources/public/flags/1x1/gi.svg create mode 100644 src/main/resources/public/flags/1x1/gl.svg create mode 100644 src/main/resources/public/flags/1x1/gm.svg create mode 100644 src/main/resources/public/flags/1x1/gn.svg create mode 100644 src/main/resources/public/flags/1x1/gp.svg create mode 100644 src/main/resources/public/flags/1x1/gq.svg create mode 100644 src/main/resources/public/flags/1x1/gr.svg create mode 100644 src/main/resources/public/flags/1x1/gs.svg create mode 100644 src/main/resources/public/flags/1x1/gt.svg create mode 100644 src/main/resources/public/flags/1x1/gu.svg create mode 100644 src/main/resources/public/flags/1x1/gw.svg create mode 100644 src/main/resources/public/flags/1x1/gy.svg create mode 100644 src/main/resources/public/flags/1x1/hk.svg create mode 100644 src/main/resources/public/flags/1x1/hm.svg create mode 100644 src/main/resources/public/flags/1x1/hn.svg create mode 100644 src/main/resources/public/flags/1x1/hr.svg create mode 100644 src/main/resources/public/flags/1x1/ht.svg create mode 100644 src/main/resources/public/flags/1x1/hu.svg create mode 100644 src/main/resources/public/flags/1x1/ic.svg create mode 100644 src/main/resources/public/flags/1x1/id.svg create mode 100644 src/main/resources/public/flags/1x1/ie.svg create mode 100644 src/main/resources/public/flags/1x1/il.svg create mode 100644 src/main/resources/public/flags/1x1/im.svg create mode 100644 src/main/resources/public/flags/1x1/in.svg create mode 100644 src/main/resources/public/flags/1x1/io.svg create mode 100644 src/main/resources/public/flags/1x1/iq.svg create mode 100644 src/main/resources/public/flags/1x1/ir.svg create mode 100644 src/main/resources/public/flags/1x1/is.svg create mode 100644 src/main/resources/public/flags/1x1/it.svg create mode 100644 src/main/resources/public/flags/1x1/je.svg create mode 100644 src/main/resources/public/flags/1x1/jm.svg create mode 100644 src/main/resources/public/flags/1x1/jo.svg create mode 100644 src/main/resources/public/flags/1x1/jp.svg create mode 100644 src/main/resources/public/flags/1x1/ke.svg create mode 100644 src/main/resources/public/flags/1x1/kg.svg create mode 100644 src/main/resources/public/flags/1x1/kh.svg create mode 100644 src/main/resources/public/flags/1x1/ki.svg create mode 100644 src/main/resources/public/flags/1x1/km.svg create mode 100644 src/main/resources/public/flags/1x1/kn.svg create mode 100644 src/main/resources/public/flags/1x1/kp.svg create mode 100644 src/main/resources/public/flags/1x1/kr.svg create mode 100644 src/main/resources/public/flags/1x1/kw.svg create mode 100644 src/main/resources/public/flags/1x1/ky.svg create mode 100644 src/main/resources/public/flags/1x1/kz.svg create mode 100644 src/main/resources/public/flags/1x1/la.svg create mode 100644 src/main/resources/public/flags/1x1/lb.svg create mode 100644 src/main/resources/public/flags/1x1/lc.svg create mode 100644 src/main/resources/public/flags/1x1/li.svg create mode 100644 src/main/resources/public/flags/1x1/lk.svg create mode 100644 src/main/resources/public/flags/1x1/lr.svg create mode 100644 src/main/resources/public/flags/1x1/ls.svg create mode 100644 src/main/resources/public/flags/1x1/lt.svg create mode 100644 src/main/resources/public/flags/1x1/lu.svg create mode 100644 src/main/resources/public/flags/1x1/lv.svg create mode 100644 src/main/resources/public/flags/1x1/ly.svg create mode 100644 src/main/resources/public/flags/1x1/ma.svg create mode 100644 src/main/resources/public/flags/1x1/mc.svg create mode 100644 src/main/resources/public/flags/1x1/md.svg create mode 100644 src/main/resources/public/flags/1x1/me.svg create mode 100644 src/main/resources/public/flags/1x1/mf.svg create mode 100644 src/main/resources/public/flags/1x1/mg.svg create mode 100644 src/main/resources/public/flags/1x1/mh.svg create mode 100644 src/main/resources/public/flags/1x1/mk.svg create mode 100644 src/main/resources/public/flags/1x1/ml.svg create mode 100644 src/main/resources/public/flags/1x1/mm.svg create mode 100644 src/main/resources/public/flags/1x1/mn.svg create mode 100644 src/main/resources/public/flags/1x1/mo.svg create mode 100644 src/main/resources/public/flags/1x1/mp.svg create mode 100644 src/main/resources/public/flags/1x1/mq.svg create mode 100644 src/main/resources/public/flags/1x1/mr.svg create mode 100644 src/main/resources/public/flags/1x1/ms.svg create mode 100644 src/main/resources/public/flags/1x1/mt.svg create mode 100644 src/main/resources/public/flags/1x1/mu.svg create mode 100644 src/main/resources/public/flags/1x1/mv.svg create mode 100644 src/main/resources/public/flags/1x1/mw.svg create mode 100644 src/main/resources/public/flags/1x1/mx.svg create mode 100644 src/main/resources/public/flags/1x1/my.svg create mode 100644 src/main/resources/public/flags/1x1/mz.svg create mode 100644 src/main/resources/public/flags/1x1/na.svg create mode 100644 src/main/resources/public/flags/1x1/nc.svg create mode 100644 src/main/resources/public/flags/1x1/ne.svg create mode 100644 src/main/resources/public/flags/1x1/nf.svg create mode 100644 src/main/resources/public/flags/1x1/ng.svg create mode 100644 src/main/resources/public/flags/1x1/ni.svg create mode 100644 src/main/resources/public/flags/1x1/nl.svg create mode 100644 src/main/resources/public/flags/1x1/no.svg create mode 100644 src/main/resources/public/flags/1x1/np.svg create mode 100644 src/main/resources/public/flags/1x1/nr.svg create mode 100644 src/main/resources/public/flags/1x1/nu.svg create mode 100644 src/main/resources/public/flags/1x1/nz.svg create mode 100644 src/main/resources/public/flags/1x1/om.svg create mode 100644 src/main/resources/public/flags/1x1/pa.svg create mode 100644 src/main/resources/public/flags/1x1/pe.svg create mode 100644 src/main/resources/public/flags/1x1/pf.svg create mode 100644 src/main/resources/public/flags/1x1/pg.svg create mode 100644 src/main/resources/public/flags/1x1/ph.svg create mode 100644 src/main/resources/public/flags/1x1/pk.svg create mode 100644 src/main/resources/public/flags/1x1/pl.svg create mode 100644 src/main/resources/public/flags/1x1/pm.svg create mode 100644 src/main/resources/public/flags/1x1/pn.svg create mode 100644 src/main/resources/public/flags/1x1/pr.svg create mode 100644 src/main/resources/public/flags/1x1/ps.svg create mode 100644 src/main/resources/public/flags/1x1/pt.svg create mode 100644 src/main/resources/public/flags/1x1/pw.svg create mode 100644 src/main/resources/public/flags/1x1/py.svg create mode 100644 src/main/resources/public/flags/1x1/qa.svg create mode 100644 src/main/resources/public/flags/1x1/re.svg create mode 100644 src/main/resources/public/flags/1x1/ro.svg create mode 100644 src/main/resources/public/flags/1x1/rs.svg create mode 100644 src/main/resources/public/flags/1x1/ru.svg create mode 100644 src/main/resources/public/flags/1x1/rw.svg create mode 100644 src/main/resources/public/flags/1x1/sa.svg create mode 100644 src/main/resources/public/flags/1x1/sb.svg create mode 100644 src/main/resources/public/flags/1x1/sc.svg create mode 100644 src/main/resources/public/flags/1x1/sd.svg create mode 100644 src/main/resources/public/flags/1x1/se.svg create mode 100644 src/main/resources/public/flags/1x1/sg.svg create mode 100644 src/main/resources/public/flags/1x1/sh.svg create mode 100644 src/main/resources/public/flags/1x1/si.svg create mode 100644 src/main/resources/public/flags/1x1/sj.svg create mode 100644 src/main/resources/public/flags/1x1/sk.svg create mode 100644 src/main/resources/public/flags/1x1/sl.svg create mode 100644 src/main/resources/public/flags/1x1/sm.svg create mode 100644 src/main/resources/public/flags/1x1/sn.svg create mode 100644 src/main/resources/public/flags/1x1/so.svg create mode 100644 src/main/resources/public/flags/1x1/sr.svg create mode 100644 src/main/resources/public/flags/1x1/ss.svg create mode 100644 src/main/resources/public/flags/1x1/st.svg create mode 100644 src/main/resources/public/flags/1x1/sv.svg create mode 100644 src/main/resources/public/flags/1x1/sx.svg create mode 100644 src/main/resources/public/flags/1x1/sy.svg create mode 100644 src/main/resources/public/flags/1x1/sz.svg create mode 100644 src/main/resources/public/flags/1x1/ta.svg create mode 100644 src/main/resources/public/flags/1x1/tc.svg create mode 100644 src/main/resources/public/flags/1x1/td.svg create mode 100644 src/main/resources/public/flags/1x1/tf.svg create mode 100644 src/main/resources/public/flags/1x1/tg.svg create mode 100644 src/main/resources/public/flags/1x1/th.svg create mode 100644 src/main/resources/public/flags/1x1/tj.svg create mode 100644 src/main/resources/public/flags/1x1/tk.svg create mode 100644 src/main/resources/public/flags/1x1/tl.svg create mode 100644 src/main/resources/public/flags/1x1/tm.svg create mode 100644 src/main/resources/public/flags/1x1/tn.svg create mode 100644 src/main/resources/public/flags/1x1/to.svg create mode 100644 src/main/resources/public/flags/1x1/tr.svg create mode 100644 src/main/resources/public/flags/1x1/tt.svg create mode 100644 src/main/resources/public/flags/1x1/tv.svg create mode 100644 src/main/resources/public/flags/1x1/tw.svg create mode 100644 src/main/resources/public/flags/1x1/tz.svg create mode 100644 src/main/resources/public/flags/1x1/ua.svg create mode 100644 src/main/resources/public/flags/1x1/ug.svg create mode 100644 src/main/resources/public/flags/1x1/um.svg create mode 100644 src/main/resources/public/flags/1x1/un.svg create mode 100644 src/main/resources/public/flags/1x1/us.svg create mode 100644 src/main/resources/public/flags/1x1/uy.svg create mode 100644 src/main/resources/public/flags/1x1/uz.svg create mode 100644 src/main/resources/public/flags/1x1/va.svg create mode 100644 src/main/resources/public/flags/1x1/vc.svg create mode 100644 src/main/resources/public/flags/1x1/ve.svg create mode 100644 src/main/resources/public/flags/1x1/vg.svg create mode 100644 src/main/resources/public/flags/1x1/vi.svg create mode 100644 src/main/resources/public/flags/1x1/vn.svg create mode 100644 src/main/resources/public/flags/1x1/vu.svg create mode 100644 src/main/resources/public/flags/1x1/wf.svg create mode 100644 src/main/resources/public/flags/1x1/ws.svg create mode 100644 src/main/resources/public/flags/1x1/xk.svg create mode 100644 src/main/resources/public/flags/1x1/xx.svg create mode 100644 src/main/resources/public/flags/1x1/ye.svg create mode 100644 src/main/resources/public/flags/1x1/yt.svg create mode 100644 src/main/resources/public/flags/1x1/za.svg create mode 100644 src/main/resources/public/flags/1x1/zm.svg create mode 100644 src/main/resources/public/flags/1x1/zw.svg create mode 100644 src/main/resources/public/flags/4x3/ac.svg create mode 100644 src/main/resources/public/flags/4x3/ad.svg create mode 100644 src/main/resources/public/flags/4x3/ae.svg create mode 100644 src/main/resources/public/flags/4x3/af.svg create mode 100644 src/main/resources/public/flags/4x3/ag.svg create mode 100644 src/main/resources/public/flags/4x3/ai.svg create mode 100644 src/main/resources/public/flags/4x3/al.svg create mode 100644 src/main/resources/public/flags/4x3/am.svg create mode 100644 src/main/resources/public/flags/4x3/ao.svg create mode 100644 src/main/resources/public/flags/4x3/aq.svg create mode 100644 src/main/resources/public/flags/4x3/ar.svg create mode 100644 src/main/resources/public/flags/4x3/as.svg create mode 100644 src/main/resources/public/flags/4x3/at.svg create mode 100644 src/main/resources/public/flags/4x3/au.svg create mode 100644 src/main/resources/public/flags/4x3/aw.svg create mode 100644 src/main/resources/public/flags/4x3/ax.svg create mode 100644 src/main/resources/public/flags/4x3/az.svg create mode 100644 src/main/resources/public/flags/4x3/ba.svg create mode 100644 src/main/resources/public/flags/4x3/bb.svg create mode 100644 src/main/resources/public/flags/4x3/bd.svg create mode 100644 src/main/resources/public/flags/4x3/be.svg create mode 100644 src/main/resources/public/flags/4x3/bf.svg create mode 100644 src/main/resources/public/flags/4x3/bg.svg create mode 100644 src/main/resources/public/flags/4x3/bh.svg create mode 100644 src/main/resources/public/flags/4x3/bi.svg create mode 100644 src/main/resources/public/flags/4x3/bj.svg create mode 100644 src/main/resources/public/flags/4x3/bl.svg create mode 100644 src/main/resources/public/flags/4x3/bm.svg create mode 100644 src/main/resources/public/flags/4x3/bn.svg create mode 100644 src/main/resources/public/flags/4x3/bo.svg create mode 100644 src/main/resources/public/flags/4x3/bq.svg create mode 100644 src/main/resources/public/flags/4x3/br.svg create mode 100644 src/main/resources/public/flags/4x3/bs.svg create mode 100644 src/main/resources/public/flags/4x3/bt.svg create mode 100644 src/main/resources/public/flags/4x3/bv.svg create mode 100644 src/main/resources/public/flags/4x3/bw.svg create mode 100644 src/main/resources/public/flags/4x3/by.svg create mode 100644 src/main/resources/public/flags/4x3/bz.svg create mode 100644 src/main/resources/public/flags/4x3/ca.svg create mode 100644 src/main/resources/public/flags/4x3/cc.svg create mode 100644 src/main/resources/public/flags/4x3/cd.svg create mode 100644 src/main/resources/public/flags/4x3/cefta.svg create mode 100644 src/main/resources/public/flags/4x3/cf.svg create mode 100644 src/main/resources/public/flags/4x3/cg.svg create mode 100644 src/main/resources/public/flags/4x3/ch.svg create mode 100644 src/main/resources/public/flags/4x3/ci.svg create mode 100644 src/main/resources/public/flags/4x3/ck.svg create mode 100644 src/main/resources/public/flags/4x3/cl.svg create mode 100644 src/main/resources/public/flags/4x3/cm.svg create mode 100644 src/main/resources/public/flags/4x3/cn.svg create mode 100644 src/main/resources/public/flags/4x3/co.svg create mode 100644 src/main/resources/public/flags/4x3/cp.svg create mode 100644 src/main/resources/public/flags/4x3/cr.svg create mode 100644 src/main/resources/public/flags/4x3/cu.svg create mode 100644 src/main/resources/public/flags/4x3/cv.svg create mode 100644 src/main/resources/public/flags/4x3/cw.svg create mode 100644 src/main/resources/public/flags/4x3/cx.svg create mode 100644 src/main/resources/public/flags/4x3/cy.svg create mode 100644 src/main/resources/public/flags/4x3/cz.svg create mode 100644 src/main/resources/public/flags/4x3/de.svg create mode 100644 src/main/resources/public/flags/4x3/dg.svg create mode 100644 src/main/resources/public/flags/4x3/dj.svg create mode 100644 src/main/resources/public/flags/4x3/dk.svg create mode 100644 src/main/resources/public/flags/4x3/dm.svg create mode 100644 src/main/resources/public/flags/4x3/do.svg create mode 100644 src/main/resources/public/flags/4x3/dz.svg create mode 100644 src/main/resources/public/flags/4x3/ea.svg create mode 100644 src/main/resources/public/flags/4x3/ec.svg create mode 100644 src/main/resources/public/flags/4x3/ee.svg create mode 100644 src/main/resources/public/flags/4x3/eg.svg create mode 100644 src/main/resources/public/flags/4x3/eh.svg create mode 100644 src/main/resources/public/flags/4x3/er.svg create mode 100644 src/main/resources/public/flags/4x3/es-ct.svg create mode 100644 src/main/resources/public/flags/4x3/es-ga.svg create mode 100644 src/main/resources/public/flags/4x3/es-pv.svg create mode 100644 src/main/resources/public/flags/4x3/es.svg create mode 100644 src/main/resources/public/flags/4x3/et.svg create mode 100644 src/main/resources/public/flags/4x3/eu.svg create mode 100644 src/main/resources/public/flags/4x3/fi.svg create mode 100644 src/main/resources/public/flags/4x3/fj.svg create mode 100644 src/main/resources/public/flags/4x3/fk.svg create mode 100644 src/main/resources/public/flags/4x3/fm.svg create mode 100644 src/main/resources/public/flags/4x3/fo.svg create mode 100644 src/main/resources/public/flags/4x3/fr.svg create mode 100644 src/main/resources/public/flags/4x3/ga.svg create mode 100644 src/main/resources/public/flags/4x3/gb-eng.svg create mode 100644 src/main/resources/public/flags/4x3/gb-nir.svg create mode 100644 src/main/resources/public/flags/4x3/gb-sct.svg create mode 100644 src/main/resources/public/flags/4x3/gb-wls.svg create mode 100644 src/main/resources/public/flags/4x3/gb.svg create mode 100644 src/main/resources/public/flags/4x3/gd.svg create mode 100644 src/main/resources/public/flags/4x3/ge.svg create mode 100644 src/main/resources/public/flags/4x3/gf.svg create mode 100644 src/main/resources/public/flags/4x3/gg.svg create mode 100644 src/main/resources/public/flags/4x3/gh.svg create mode 100644 src/main/resources/public/flags/4x3/gi.svg create mode 100644 src/main/resources/public/flags/4x3/gl.svg create mode 100644 src/main/resources/public/flags/4x3/gm.svg create mode 100644 src/main/resources/public/flags/4x3/gn.svg create mode 100644 src/main/resources/public/flags/4x3/gp.svg create mode 100644 src/main/resources/public/flags/4x3/gq.svg create mode 100644 src/main/resources/public/flags/4x3/gr.svg create mode 100644 src/main/resources/public/flags/4x3/gs.svg create mode 100644 src/main/resources/public/flags/4x3/gt.svg create mode 100644 src/main/resources/public/flags/4x3/gu.svg create mode 100644 src/main/resources/public/flags/4x3/gw.svg create mode 100644 src/main/resources/public/flags/4x3/gy.svg create mode 100644 src/main/resources/public/flags/4x3/hk.svg create mode 100644 src/main/resources/public/flags/4x3/hm.svg create mode 100644 src/main/resources/public/flags/4x3/hn.svg create mode 100644 src/main/resources/public/flags/4x3/hr.svg create mode 100644 src/main/resources/public/flags/4x3/ht.svg create mode 100644 src/main/resources/public/flags/4x3/hu.svg create mode 100644 src/main/resources/public/flags/4x3/ic.svg create mode 100644 src/main/resources/public/flags/4x3/id.svg create mode 100644 src/main/resources/public/flags/4x3/ie.svg create mode 100644 src/main/resources/public/flags/4x3/il.svg create mode 100644 src/main/resources/public/flags/4x3/im.svg create mode 100644 src/main/resources/public/flags/4x3/in.svg create mode 100644 src/main/resources/public/flags/4x3/io.svg create mode 100644 src/main/resources/public/flags/4x3/iq.svg create mode 100644 src/main/resources/public/flags/4x3/ir.svg create mode 100644 src/main/resources/public/flags/4x3/is.svg create mode 100644 src/main/resources/public/flags/4x3/it.svg create mode 100644 src/main/resources/public/flags/4x3/je.svg create mode 100644 src/main/resources/public/flags/4x3/jm.svg create mode 100644 src/main/resources/public/flags/4x3/jo.svg create mode 100644 src/main/resources/public/flags/4x3/jp.svg create mode 100644 src/main/resources/public/flags/4x3/ke.svg create mode 100644 src/main/resources/public/flags/4x3/kg.svg create mode 100644 src/main/resources/public/flags/4x3/kh.svg create mode 100644 src/main/resources/public/flags/4x3/ki.svg create mode 100644 src/main/resources/public/flags/4x3/km.svg create mode 100644 src/main/resources/public/flags/4x3/kn.svg create mode 100644 src/main/resources/public/flags/4x3/kp.svg create mode 100644 src/main/resources/public/flags/4x3/kr.svg create mode 100644 src/main/resources/public/flags/4x3/kw.svg create mode 100644 src/main/resources/public/flags/4x3/ky.svg create mode 100644 src/main/resources/public/flags/4x3/kz.svg create mode 100644 src/main/resources/public/flags/4x3/la.svg create mode 100644 src/main/resources/public/flags/4x3/lb.svg create mode 100644 src/main/resources/public/flags/4x3/lc.svg create mode 100644 src/main/resources/public/flags/4x3/li.svg create mode 100644 src/main/resources/public/flags/4x3/lk.svg create mode 100644 src/main/resources/public/flags/4x3/lr.svg create mode 100644 src/main/resources/public/flags/4x3/ls.svg create mode 100644 src/main/resources/public/flags/4x3/lt.svg create mode 100644 src/main/resources/public/flags/4x3/lu.svg create mode 100644 src/main/resources/public/flags/4x3/lv.svg create mode 100644 src/main/resources/public/flags/4x3/ly.svg create mode 100644 src/main/resources/public/flags/4x3/ma.svg create mode 100644 src/main/resources/public/flags/4x3/mc.svg create mode 100644 src/main/resources/public/flags/4x3/md.svg create mode 100644 src/main/resources/public/flags/4x3/me.svg create mode 100644 src/main/resources/public/flags/4x3/mf.svg create mode 100644 src/main/resources/public/flags/4x3/mg.svg create mode 100644 src/main/resources/public/flags/4x3/mh.svg create mode 100644 src/main/resources/public/flags/4x3/mk.svg create mode 100644 src/main/resources/public/flags/4x3/ml.svg create mode 100644 src/main/resources/public/flags/4x3/mm.svg create mode 100644 src/main/resources/public/flags/4x3/mn.svg create mode 100644 src/main/resources/public/flags/4x3/mo.svg create mode 100644 src/main/resources/public/flags/4x3/mp.svg create mode 100644 src/main/resources/public/flags/4x3/mq.svg create mode 100644 src/main/resources/public/flags/4x3/mr.svg create mode 100644 src/main/resources/public/flags/4x3/ms.svg create mode 100644 src/main/resources/public/flags/4x3/mt.svg create mode 100644 src/main/resources/public/flags/4x3/mu.svg create mode 100644 src/main/resources/public/flags/4x3/mv.svg create mode 100644 src/main/resources/public/flags/4x3/mw.svg create mode 100644 src/main/resources/public/flags/4x3/mx.svg create mode 100644 src/main/resources/public/flags/4x3/my.svg create mode 100644 src/main/resources/public/flags/4x3/mz.svg create mode 100644 src/main/resources/public/flags/4x3/na.svg create mode 100644 src/main/resources/public/flags/4x3/nc.svg create mode 100644 src/main/resources/public/flags/4x3/ne.svg create mode 100644 src/main/resources/public/flags/4x3/nf.svg create mode 100644 src/main/resources/public/flags/4x3/ng.svg create mode 100644 src/main/resources/public/flags/4x3/ni.svg create mode 100644 src/main/resources/public/flags/4x3/nl.svg create mode 100644 src/main/resources/public/flags/4x3/no.svg create mode 100644 src/main/resources/public/flags/4x3/np.svg create mode 100644 src/main/resources/public/flags/4x3/nr.svg create mode 100644 src/main/resources/public/flags/4x3/nu.svg create mode 100644 src/main/resources/public/flags/4x3/nz.svg create mode 100644 src/main/resources/public/flags/4x3/om.svg create mode 100644 src/main/resources/public/flags/4x3/pa.svg create mode 100644 src/main/resources/public/flags/4x3/pe.svg create mode 100644 src/main/resources/public/flags/4x3/pf.svg create mode 100644 src/main/resources/public/flags/4x3/pg.svg create mode 100644 src/main/resources/public/flags/4x3/ph.svg create mode 100644 src/main/resources/public/flags/4x3/pk.svg create mode 100644 src/main/resources/public/flags/4x3/pl.svg create mode 100644 src/main/resources/public/flags/4x3/pm.svg create mode 100644 src/main/resources/public/flags/4x3/pn.svg create mode 100644 src/main/resources/public/flags/4x3/pr.svg create mode 100644 src/main/resources/public/flags/4x3/ps.svg create mode 100644 src/main/resources/public/flags/4x3/pt.svg create mode 100644 src/main/resources/public/flags/4x3/pw.svg create mode 100644 src/main/resources/public/flags/4x3/py.svg create mode 100644 src/main/resources/public/flags/4x3/qa.svg create mode 100644 src/main/resources/public/flags/4x3/re.svg create mode 100644 src/main/resources/public/flags/4x3/ro.svg create mode 100644 src/main/resources/public/flags/4x3/rs.svg create mode 100644 src/main/resources/public/flags/4x3/ru.svg create mode 100644 src/main/resources/public/flags/4x3/rw.svg create mode 100644 src/main/resources/public/flags/4x3/sa.svg create mode 100644 src/main/resources/public/flags/4x3/sb.svg create mode 100644 src/main/resources/public/flags/4x3/sc.svg create mode 100644 src/main/resources/public/flags/4x3/sd.svg create mode 100644 src/main/resources/public/flags/4x3/se.svg create mode 100644 src/main/resources/public/flags/4x3/sg.svg create mode 100644 src/main/resources/public/flags/4x3/sh.svg create mode 100644 src/main/resources/public/flags/4x3/si.svg create mode 100644 src/main/resources/public/flags/4x3/sj.svg create mode 100644 src/main/resources/public/flags/4x3/sk.svg create mode 100644 src/main/resources/public/flags/4x3/sl.svg create mode 100644 src/main/resources/public/flags/4x3/sm.svg create mode 100644 src/main/resources/public/flags/4x3/sn.svg create mode 100644 src/main/resources/public/flags/4x3/so.svg create mode 100644 src/main/resources/public/flags/4x3/sr.svg create mode 100644 src/main/resources/public/flags/4x3/ss.svg create mode 100644 src/main/resources/public/flags/4x3/st.svg create mode 100644 src/main/resources/public/flags/4x3/sv.svg create mode 100644 src/main/resources/public/flags/4x3/sx.svg create mode 100644 src/main/resources/public/flags/4x3/sy.svg create mode 100644 src/main/resources/public/flags/4x3/sz.svg create mode 100644 src/main/resources/public/flags/4x3/ta.svg create mode 100644 src/main/resources/public/flags/4x3/tc.svg create mode 100644 src/main/resources/public/flags/4x3/td.svg create mode 100644 src/main/resources/public/flags/4x3/tf.svg create mode 100644 src/main/resources/public/flags/4x3/tg.svg create mode 100644 src/main/resources/public/flags/4x3/th.svg create mode 100644 src/main/resources/public/flags/4x3/tj.svg create mode 100644 src/main/resources/public/flags/4x3/tk.svg create mode 100644 src/main/resources/public/flags/4x3/tl.svg create mode 100644 src/main/resources/public/flags/4x3/tm.svg create mode 100644 src/main/resources/public/flags/4x3/tn.svg create mode 100644 src/main/resources/public/flags/4x3/to.svg create mode 100644 src/main/resources/public/flags/4x3/tr.svg create mode 100644 src/main/resources/public/flags/4x3/tt.svg create mode 100644 src/main/resources/public/flags/4x3/tv.svg create mode 100644 src/main/resources/public/flags/4x3/tw.svg create mode 100644 src/main/resources/public/flags/4x3/tz.svg create mode 100644 src/main/resources/public/flags/4x3/ua.svg create mode 100644 src/main/resources/public/flags/4x3/ug.svg create mode 100644 src/main/resources/public/flags/4x3/um.svg create mode 100644 src/main/resources/public/flags/4x3/un.svg create mode 100644 src/main/resources/public/flags/4x3/us.svg create mode 100644 src/main/resources/public/flags/4x3/uy.svg create mode 100644 src/main/resources/public/flags/4x3/uz.svg create mode 100644 src/main/resources/public/flags/4x3/va.svg create mode 100644 src/main/resources/public/flags/4x3/vc.svg create mode 100644 src/main/resources/public/flags/4x3/ve.svg create mode 100644 src/main/resources/public/flags/4x3/vg.svg create mode 100644 src/main/resources/public/flags/4x3/vi.svg create mode 100644 src/main/resources/public/flags/4x3/vn.svg create mode 100644 src/main/resources/public/flags/4x3/vu.svg create mode 100644 src/main/resources/public/flags/4x3/wf.svg create mode 100644 src/main/resources/public/flags/4x3/ws.svg create mode 100644 src/main/resources/public/flags/4x3/xk.svg create mode 100644 src/main/resources/public/flags/4x3/xx.svg create mode 100644 src/main/resources/public/flags/4x3/ye.svg create mode 100644 src/main/resources/public/flags/4x3/yt.svg create mode 100644 src/main/resources/public/flags/4x3/za.svg create mode 100644 src/main/resources/public/flags/4x3/zm.svg create mode 100644 src/main/resources/public/flags/4x3/zw.svg create mode 100644 src/main/resources/public/icons/android-chrome-192x192.png create mode 100644 src/main/resources/public/icons/android-chrome-512x512.png create mode 100644 src/main/resources/public/icons/apple-touch-icon.png create mode 100644 src/main/resources/public/icons/favicon-16x16.png create mode 100644 src/main/resources/public/icons/favicon-32x32.png create mode 100644 src/main/resources/public/icons/favicon.ico create mode 100644 src/main/resources/public/manifest.json create mode 100644 src/main/resources/public/robots.txt create mode 100644 src/main/resources/views/index.hbs create mode 100644 src/main/resources/views/validation-result.hbs create mode 100644 src/test/java/com/devsoap/tincheck/TinCountryTest.java diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..bf03766 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,116 @@ +name: Build & Release +on: + push: + branches: [master] + tags: + - '[0-9]+.[0-9]+.[0-9]+' + +env: + ORG_GRADLE_PROJECT_BUILD_VERSION: ${{ gitea.ref_name }} + ORG_GRADLE_PROJECT_DOCKER_REGISTRY: ${{ secrets.DOCKER_REGISTRY }} + ENDPOINT: services-1 + STACK: tincheck + IMAGE: com.devsoap/tincheck + TAG: ${{ gitea.ref_name }} + RUNNER_TOOL_CACHE: /toolcache + +jobs: + build-application: + runs-on: node20 + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + - name: Configure SSH Agent + uses: webfactory/ssh-agent@v0.8.0 + with: + ssh-private-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + - name: Configure Java project + uses: actions/setup-java@v4 + with: + distribution: 'temurin' + java-version: '17' + cache: 'gradle' + - name: Cache Java dependencies + uses: actions/cache@v3 + env: + cache-name: cache-java-dependencies + with: + path: ~/.gradle + key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/build.gradle') }} + restore-keys: | + ${{ runner.os }}-build-${{ env.cache-name }}- + ${{ runner.os }}-build- + ${{ runner.os }}- + - name: Run Unit tests + run: ./gradlew --info --stacktrace test --fail-fast + - name: Build Distribution + run: ./gradlew --info --stacktrace installDist + - name: Save distribution + uses: actions/upload-artifact@v3 + with: + name: tincheck-${{env.TAG}} + path: build/install/tincheck + + build-docker-image: + if: ${{ needs.build-application.result == 'success' && startsWith(gitea.ref, 'refs/tags/') }} + needs: build-application + runs-on: node20 + container: + image: catthehacker/ubuntu:act-20.04 + steps: + - name: Checkout Docker file + uses: actions/checkout@v4 + with: + ssh-key: ${{ secrets.SSH_DEVSOAP_PRIVATE_KEY }} + sparse-checkout: Dockerfile + sparse-checkout-cone-mode: false + - name: Download distribution + uses: actions/download-artifact@v3 + with: + name: tincheck-${{env.TAG}} + path: dist + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Devsoap Container Registry + uses: docker/login-action@v2 + with: + registry: ${{ secrets.DOCKER_REGISTRY }} + username: ${{ secrets.DOCKER_REGISTRY_USER }} + password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }} + - name: Build core docker image + uses: docker/build-push-action@v4 + with: + file: Dockerfile + push: true + tags: | + ${{secrets.DOCKER_REGISTRY}}/${{env.IMAGE}}:${{env.TAG}} + ${{secrets.DOCKER_REGISTRY}}/${{env.IMAGE}}:latest + + deploy-to-production: + if: ${{ needs.build-docker-image.result == 'success' }} + needs: build-docker-image + runs-on: node20 + steps: + - name: Checkout infrastructure config + run: | + echo "Cloning repository ${{ env.REPOSITORY_URL }}" + git clone -v --depth=1 ${{ env.REPOSITORY_URL }} infra + env: + REPOSITORY_URL: ${{ env.GIT_REPO_USER }}@${{ env.GIT_REPO_INTERNAL }}:${{ env.DEVSOAP_INFRA_GIT_REPO }} + - name: Setup Git config + working-directory: infra + run: | + git config user.email "code@devsoap.com" + git config user.name "Devsoap Code CI/CD" + - name: Update image version + working-directory: infra + run: | + sed -i -r "s|/$IMAGE:(.*?)|/$IMAGE:$TAG|g" $ENDPOINT/$STACK/docker-compose.yml + git diff -U0 + - name: Push changes + working-directory: infra + run: | + git commit -am "Updated $ENDPOINT/$STACK/$IMAGE to $TAG" + git push origin master \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b4b7878 --- /dev/null +++ b/.gitignore @@ -0,0 +1,143 @@ +# Created by https://www.toptal.com/developers/gitignore/api/java,intellij +# Edit at https://www.toptal.com/developers/gitignore?templates=java,intellij + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + +### Intellij Patch ### +# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721 + +# *.iml +# modules.xml +# .idea/misc.xml +# *.ipr + +# Sonarlint plugin +# https://plugins.jetbrains.com/plugin/7973-sonarlint +.idea/**/sonarlint/ + +# SonarQube Plugin +# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin +.idea/**/sonarIssues.xml + +# Markdown Navigator plugin +# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced +.idea/**/markdown-navigator.xml +.idea/**/markdown-navigator-enh.xml +.idea/**/markdown-navigator/ + +# Cache file creation bug +# See https://youtrack.jetbrains.com/issue/JBR-2257 +.idea/$CACHE_FILE$ + +# CodeStream plugin +# https://plugins.jetbrains.com/plugin/12206-codestream +.idea/codestream.xml + +# Azure Toolkit for IntelliJ plugin +# https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij +.idea/**/azureSettings.xml + +### Java ### +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* + +# End of https://www.toptal.com/developers/gitignore/api/java,intellij \ No newline at end of file diff --git a/.sdkmanrc b/.sdkmanrc new file mode 100644 index 0000000..fdfdc92 --- /dev/null +++ b/.sdkmanrc @@ -0,0 +1,3 @@ +# Enable auto-env through the sdkman_auto_env config +# Add key=value pairs of SDKs to use below +java=17.0.0-tem diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..508f10f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM openjdk:17-jdk-alpine +LABEL org.opencontainers.image.authors="john@devsoap.com" +COPY dist/ /app/ +RUN chmod +x /app/bin/* +WORKDIR /app +ENTRYPOINT ["/app/bin/server"] \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..8941241 --- /dev/null +++ b/LICENSE @@ -0,0 +1,335 @@ +Creative Commons Attribution-NoDerivatives 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NoDerivatives 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + + c. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + d. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + e. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + f. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + g. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + h. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + i. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + j. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part; and + + b. produce and reproduce, but not Share, Adapted Material. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material, You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + For the avoidance of doubt, You do not have permission under + this Public License to Share Adapted Material. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database, provided You do not Share + Adapted Material; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..46cfc4a --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ + +# Tax identifier Generator and Validator (tin-validator.eu) + +This project provides a TIN validation and generation tool hosted at https://tin-validator.eu. + +## Screenshots + +![tin-validator.eu](docs/tin-validator.eu.png) + +## Features + +- Tax identifier generation for most European countries +- Tax identifier validation for most European countries + +## API Reference + +#### Validate TIN identifier + +```http + POST /validate +``` + +| Parameter | Type | Description | +| :-------- | :------- | :------------------------- | +| `country` | `string` | **Required**. The ISO country code | +| `value` | `string` | **Required**. The identifier | + +#### Generate TIN identifier + +```http + POST /generate +``` + +| Parameter | Type | Description | +| :-------- | :------- | :-------------------------------- | +| `country` | `string` | **Required**. The ISO country code | +| `dateOfBirth` | `string` | **Required**. Date of birth formatted as *yyyy-mm-dd* | +| `gender` | `string` | **Required**. The gender (m/f) | + + + +## Run Locally + +Clone the project + +```bash + git clone https://code.devsoap.com/john/tin-validator +``` + +Go to the project directory + +```bash + cd tin-validator +``` + +Start the server + +```bash + ./gradlew run +``` + +The server will be running on http://localhost:8080 + +## License + +[CC BY-ND 4.0.](https://creativecommons.org/licenses/by-nd/4.0/) \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..ca620d6 --- /dev/null +++ b/build.gradle @@ -0,0 +1,67 @@ +plugins { + id "java" + id "io.micronaut.application" version "$micronautApplicationVersion" +} + +version = findProperty('BUILD_VERSION') ?: 'latest' +group = "com.devsoap" + +java { + sourceCompatibility = JavaVersion.VERSION_17 + targetCompatibility = JavaVersion.VERSION_17 +} + +repositories { + mavenCentral() +} + +dependencies { + + annotationProcessor 'org.projectlombok:lombok' + testAnnotationProcessor 'org.projectlombok:lombok' + + annotationProcessor(platform("io.micronaut:micronaut-bom:$micronautVersion")) + testAnnotationProcessor(platform("io.micronaut:micronaut-bom:$micronautVersion")) + + implementation(platform("io.micronaut:micronaut-bom:$micronautVersion")) + implementation 'org.projectlombok:lombok' + + implementation 'com.fasterxml.jackson.core:jackson-databind' + implementation 'javax.validation:validation-api' + implementation 'io.micronaut.views:micronaut-views-handlebars' + + implementation "io.github.resilience4j:resilience4j-micronaut:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-ratelimiter:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-consumer:$resilience4jVersion" + implementation "io.github.resilience4j:resilience4j-rxjava3:$resilience4jVersion" + + implementation "ch.qos.logback:logback-classic" + implementation "org.slf4j:jul-to-slf4j:$julToSlf4jVersion" + implementation "org.apache.commons:commons-lang3:$commonsLangVersion" + + runtimeOnly "org.webjars.npm:htmx.org:$htmxVersion" + runtimeOnly "org.webjars.npm:hyperscript.org:$hyperscriptVersion" + + testImplementation 'org.junit.jupiter:junit-jupiter-params' + testImplementation "org.mockito:mockito-junit-jupiter:$mockitoVersion" + testImplementation "org.assertj:assertj-core:$assertJVersion" + testImplementation "org.reflections:reflections:$reflectionsVersion" +} + +application { + mainClass.set("com.devsoap.tincheck.Application") +} + +micronaut { + version "$micronautVersion" + runtime("netty") +} + +wrapper { + gradleVersion = '8.0' +} + +test { + useJUnitPlatform() + failFast = true +} \ No newline at end of file diff --git a/docs/tin-validator.eu.png b/docs/tin-validator.eu.png new file mode 100644 index 0000000000000000000000000000000000000000..c11ca49b6a4f20bdb5c06a5f7ba608bbfbd0487a GIT binary patch literal 88135 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 z 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 Jvn2Ii{U5B~P00WN literal 0 HcmV?d00001 diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..d1e64cf --- /dev/null +++ b/gradle.properties @@ -0,0 +1,21 @@ +micronautApplicationVersion=3.7.0 +micronautVersion=3.8.3 +julToSlf4jVersion=1.7.29 +guavaVersion=31.0.1-jre +resilience4jVersion=2.0.2 +leafletVersion=1.7.1 +rxJavaVersion=3.1.6 +jsonPathVersion=2.7.0 +commonsLangVersion=3.17.0 + +# Webjars +htmxVersion=1.9.2 +hyperscriptVersion=0.9.8 + +# Test dependency versions +mockitoJunitJupiterVersion=3.11.2 +mockitoVersion=3.11.2 +assertJVersion=3.22.0 +dataFakerVersion=1.7.0 +awaitilityVersion=4.2.0 +reflectionsVersion=0.9.12 \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000000000000000000000000000000000000..a4b76b9530d66f5e68d973ea569d8e19de379189 GIT binary patch literal 43583 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 yu?e%!_ptzGB|8GrCfu%p?(_ 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 GZ~q4|mN%#X literal 0 HcmV?d00001 diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..e650f02 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,7 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip +networkTimeout=10000 +validateDistributionUrl=true +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..f5feea6 --- /dev/null +++ b/gradlew @@ -0,0 +1,252 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# SPDX-License-Identifier: Apache-2.0 +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s +' "$PWD" ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..9d21a21 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,94 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem +@rem SPDX-License-Identifier: Apache-2.0 +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..a68cf67 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name="tincheck" \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/Application.java b/src/main/java/com/devsoap/tincheck/Application.java new file mode 100644 index 0000000..759ea7e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/Application.java @@ -0,0 +1,35 @@ +package com.devsoap.tincheck; + +import io.micronaut.runtime.Micronaut; +import lombok.extern.slf4j.Slf4j; +import org.slf4j.bridge.SLF4JBridgeHandler; + +import java.time.LocalDateTime; +import java.util.TimeZone; + +@Slf4j +class Application { + + static { + SLF4JBridgeHandler.removeHandlersForRootLogger(); + SLF4JBridgeHandler.install(); + TimeZone.setDefault(TimeZone.getTimeZone("Europe/Madrid")); + } + + public static void main(String[] args) { + log.info("Running on {}", Runtime.version()); + log.info("Processors: {}, Memory (free/max/total): {}/{}/{}", + Runtime.getRuntime().availableProcessors(), + Runtime.getRuntime().freeMemory(), + Runtime.getRuntime().maxMemory(), + Runtime.getRuntime().totalMemory()); + log.info("Server time-zone set to {}, current time is {}", + TimeZone.getDefault().getDisplayName(), + LocalDateTime.now()); + Micronaut.build(args) + .banner(false) + .eagerInitSingletons(true) + .mainClass(Application.class) + .start(); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java b/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java new file mode 100644 index 0000000..88395c1 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/ApplicationConfiguration.java @@ -0,0 +1,29 @@ +package com.devsoap.tincheck; + +import com.github.jknack.handlebars.Handlebars; +import com.github.jknack.handlebars.helper.ConditionalHelpers; +import com.github.jknack.handlebars.helper.EachHelper; +import com.github.jknack.handlebars.helper.StringHelpers; +import io.micronaut.context.annotation.Factory; +import io.micronaut.context.annotation.Replaces; +import jakarta.inject.Singleton; + +import java.util.Random; + +@Factory +public class ApplicationConfiguration { + + @Singleton + public Random randomGenerator() { + return new Random(); + } + + @Singleton + @Replaces(Handlebars.class) + public Handlebars handlebars() { + return new Handlebars() + .registerHelpers(StringHelpers.class) + .registerHelpers(EachHelper.class) + .registerHelpers(ConditionalHelpers.class); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_AT.java b/src/main/java/com/devsoap/tincheck/countries/Country_AT.java new file mode 100644 index 0000000..c41df8d --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_AT.java @@ -0,0 +1,77 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_AT implements TinCountry { + + private static final int[] WEIGHTS = new int[]{1,2,1,2,1,2,1,2}; + + private final String countryCode = "AT"; + private final String countryName = "Austria"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin) + .replace("/", "") + .replace("-",""); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 9; + } + + @Override + public boolean logicCheck(String tin) { + return extractDigits(tin)[8] == calculateCheckDigit(tin); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + boolean useFullForm = randomGenerator.nextBoolean(); + String tin; + if (useFullForm) { + tin = new StringBuilder() + .append(randomGenerator.ints(2,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .append("-") + .append(randomGenerator.ints(3,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .append("/") + .append(randomGenerator.ints(3,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining())) + .toString(); + } else { + tin = randomGenerator.ints(8,1,10) + .mapToObj(i -> i + "") + .collect(Collectors.joining()); + } + return tin + calculateCheckDigit(cleanTin(tin)); + } + + private int calculateCheckDigit(String tin) { + var digits = extractDigits(tin); + var sum = IntStream.range(0,8) + .map(i -> digits[i] * WEIGHTS[i]) + .map(n -> n > 9 ? (1 + n % 10) : n) + .sum(); + return (100 - sum) % 10; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_BE.java b/src/main/java/com/devsoap/tincheck/countries/Country_BE.java new file mode 100644 index 0000000..4d3529f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_BE.java @@ -0,0 +1,53 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_BE implements TinCountry { + + private final String countryCode = "BE"; + private final String countryName = "Belgium"; + + @Override + public String cleanTin(String tin) { + return tin.replaceAll("\\D", ""); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 11; + } + + @Override + public boolean logicCheck(String tin) { + return tin.substring(9).equals(generateCheckDigit(tin)); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = StringUtils.leftPad((yearOfBirth.getYear() % 100) + "", 2, '0'); + var month = StringUtils.leftPad(yearOfBirth.getMonthValue() + "", 2, '0'); + var day = StringUtils.leftPad(yearOfBirth.getDayOfMonth() + "", 2, '0'); + var rand = randomGenerator.ints(3, 0,10) + .mapToObj(i -> i+"") + .collect(Collectors.joining()); + return year + month + day + rand + generateCheckDigit(year+month+day+rand); + } + + private String generateCheckDigit(String tin) { + var check = 97 - Integer.parseInt(tin.substring(0,9)) % 97; + return StringUtils.leftPad(check+"", 2, '0'); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_BG.java b/src/main/java/com/devsoap/tincheck/countries/Country_BG.java new file mode 100644 index 0000000..442a22b --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_BG.java @@ -0,0 +1,57 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_BG implements TinCountry { + + private final String countryCode = "BG"; + private final String countryName = "Bulgaria"; + + private static final int[] WEIGHTS = new int[]{2,4,8,5,10,9,7,3,6}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = StringUtils.leftPad((yearOfBirth.getYear() % 100) + "", 2, '0'); + + var month = StringUtils.leftPad(yearOfBirth.getMonthValue()+"",2,'0'); + if (yearOfBirth.isBefore(LocalDate.of(1990,1,1))) { + month = StringUtils.leftPad((20 + yearOfBirth.getMonthValue())+"",2,'0'); + } else if(yearOfBirth.isAfter(LocalDate.of(1999,12,31))) { + month = StringUtils.leftPad((40 + yearOfBirth.getMonthValue())+"",2,'0'); + } + + var day = StringUtils.leftPad(yearOfBirth.getDayOfMonth()+"",2,'0'); + var rand = randomGenerator.ints(3, 0,10) + .mapToObj(i -> i+"") + .collect(Collectors.joining()); + return year + month + day + rand + generateCheckDigit(year+month+day+rand); + } + + @Override + public boolean formatCheck(String tin) { + return StringUtils.isNumeric(tin) && tin.length() == 10; + } + + private int generateCheckDigit(String tin) { + var digits = extractDigits(tin); + var sum = IntStream.range(0,9) + .map(i -> digits[i] * WEIGHTS[i]) + .sum() % 11; + return sum == 10 ? 0 : sum; + } + +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_CY.java b/src/main/java/com/devsoap/tincheck/countries/Country_CY.java new file mode 100644 index 0000000..7b68ef1 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_CY.java @@ -0,0 +1,55 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_CY implements TinCountry { + + private final String countryCode = "CY"; + private final String countryName = "Cyprus"; + + private static final int[] CHECK_DIGITS = new int[]{ + 1,0,5,7,9,13,15,17,19,21 + }; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + String tin = randomGenerator.ints(8, 0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return tin + generateCheckLetter(tin); + } + + @Override + public boolean formatCheck(String tin) { + return tin.length() == 9 + && StringUtils.isNumeric(tin.substring(0,8)) + && Character.isAlphabetic(tin.codePointAt(8)); + } + + @Override + public boolean logicCheck(String tin) { + return generateCheckLetter(tin) == tin.charAt(8); + } + + private char generateCheckLetter(String tin) { + int[] numbers = extractDigits(tin.substring(0,8)); + int sum = IntStream.range(0, numbers.length) + .map(i -> i % 2 == 0 ? CHECK_DIGITS[numbers[i]] : numbers[i]) + .sum(); + return (char)((sum % 26) + 65); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java b/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java new file mode 100644 index 0000000..b10f45e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_CZ.java @@ -0,0 +1,87 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.time.format.DateTimeFormatter; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_CZ implements TinCountry { + + private final String countryCode = "CZ"; + private final String countryName = "Czech Republic"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin) + .replace("/", ""); + } + + @Override + public boolean formatCheck(String tin) { + return (tin.length() == 9 && StringUtils.isNumeric(tin)) || + (tin.length() == 10 && StringUtils.isNumeric(tin.substring(0,9))); + } + + @Override + public boolean logicCheck(String tin) { + var month = Integer.parseUnsignedInt(tin.substring(2,4)); + if (month <= 12) { + // nop + } else if(month <= 32) { + month -= 20; + } else if(month <= 62) { + month -= 50; + } else if(month <= 82) { + month -= 70; + } else { + return false; + } + return true; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + return randomGenerator.nextBoolean() ? + generateFormat1(yearOfBirth, gender, randomGenerator) : + generateFormat2(yearOfBirth, gender, randomGenerator); + } + + private String generateFormat1(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = yearOfBirth.format(DateTimeFormatter.ofPattern("yy")); + var month = StringUtils.leftPad(String.valueOf(gender == Gender.MALE ? + yearOfBirth.getMonthValue() : yearOfBirth.getMonthValue() + 50), 2, '0'); + var day = yearOfBirth.format(DateTimeFormatter.ofPattern("dd")); + var digits = yearOfBirth.getYear() <= 1953 ? "999" : + randomGenerator.ints(3,0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return year + month + day + digits; + } + + private String generateFormat2(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var year = yearOfBirth.format(DateTimeFormatter.ofPattern("yy")); + var month = StringUtils.leftPad(String.valueOf( + (gender == Gender.MALE) ? + (randomGenerator.nextBoolean() ? 0 : 20) : + (randomGenerator.nextBoolean() ? 50 : 70) + + yearOfBirth.getMonthValue()), + 2, "0"); + var day = yearOfBirth.format(DateTimeFormatter.ofPattern("dd")); + var digits = yearOfBirth.getYear() <= 1953 ? "999C" : + randomGenerator.ints(3,0,9) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return year + month + day + digits; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_DE.java b/src/main/java/com/devsoap/tincheck/countries/Country_DE.java new file mode 100644 index 0000000..9c0fb26 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_DE.java @@ -0,0 +1,84 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_DE implements TinCountry { + + private final String countryCode = "DE"; + private final String countryName = "Germany"; + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin).replace("/", ""); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + return StringUtils.isDigits(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + if (digits[0] == 0) { + return false; + } + + boolean duplicateFound = false; + for (int i=0; i switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + + var digits = extractDigits(digits1 + digits2); + var sum = calculateChecksum(digits); + if (sum == -1){ + return generate(yearOfBirth, gender, randomGenerator); + } + return String.format("%s-%s%d", digits1, digits2, sum); + } + + private static int calculateChecksum(int[] digits) { + var sum = IntStream.range(0,9).map(i -> digits[i] * WEIGHTS[i]).sum(); + var mod = sum % 11; + return switch (mod) { + case 0 -> 0; + case 1 -> -1; + default -> 11 - mod; + }; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_EE.java b/src/main/java/com/devsoap/tincheck/countries/Country_EE.java new file mode 100644 index 0000000..89d932c --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_EE.java @@ -0,0 +1,81 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_EE implements TinCountry { + + private final String countryCode = "EE"; + private final String countryName = "Estonia"; + + private final int[] WEIGHTS = {1,2,3,4,5,6,7,8,9,1}; + private final int[] ALT_WEIGHTS = {3,4,5,6,7,8,9,1,2,3}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = new int[11]; + digits[0] = randomGenerator.nextInt(6) + 1; + digits[2] = yearOfBirth.getYear() % 10; + digits[1] = (yearOfBirth.getYear() % 100 - digits[2]) / 10; + digits[3] = yearOfBirth.getMonthValue() / 10; + digits[4] = yearOfBirth.getMonthValue() % 10; + digits[5] = yearOfBirth.getDayOfMonth() / 10; + digits[6] = yearOfBirth.getDayOfMonth() % 10; + + var c8910 = randomGenerator.nextInt(711); + digits[7] = c8910 / 100; + digits[8] = c8910 % 100 / 10; + digits[9] = c8910 % 10; + + digits[10] = calculateCheckSum(digits); + + return IntStream.of(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var checksum = calculateCheckSum(digits); + return checksum == digits[10]; + } + + private int calculateCheckSum(int[] digits) { + var sum = IntStream.range(0, 9).map(i -> digits[i] * WEIGHTS[i]).sum(); + var checksum = sum % 11; + + if (checksum == 10) { + sum = IntStream.range(0, 9).map(i -> digits[i] * ALT_WEIGHTS[i]).sum(); + checksum = sum % 11; + } + + if (checksum == 10) { + checksum = 0; + } + return checksum; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_ES.java b/src/main/java/com/devsoap/tincheck/countries/Country_ES.java new file mode 100644 index 0000000..aa81f54 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_ES.java @@ -0,0 +1,97 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +import static org.apache.commons.lang3.StringUtils.*; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_ES implements TinCountry { + + private static final List SPAIN_1_LETTERS = List.of( + 'T', 'R', 'W', 'A', 'G', 'M', 'Y', 'F', 'P', 'D', 'X', + 'B', 'N', 'J', 'Z', 'S', 'Q', 'V', 'H', 'L', 'C', 'K', 'E' + ); + + private static final Map SPAIN_2_LETTERS = Map.of( + 'X','0', + 'Y','1', + 'Z','2', + 'K','0', + 'L','0', + 'M','0' + ); + + private final String countryCode = "ES"; + private final String countryName = "Spain"; + + @Override + public String cleanTin(String tin) { + return leftPad(tin, 9, '0'); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 9) { + return false; + } + return isSpain1(tin) || isSpain2(tin); + } + + @Override + public boolean logicCheck(String tin) { + if (isSpain2(tin)) { + tin = SPAIN_2_LETTERS.get(tin.charAt(0)) + tin.substring(1); + } + var sum = Integer.parseUnsignedInt(tin.substring(0,8)) % SPAIN_1_LETTERS.size(); + return tin.charAt(8) == SPAIN_1_LETTERS.get(sum); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var version1 = randomGenerator.nextBoolean(); + if (version1) { + var zeroes = randomGenerator.nextInt(0,5); + var numbers = randomGenerator + .ints(1,9) + .limit(8 - zeroes) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + var sum = Integer.parseUnsignedInt(numbers) % SPAIN_1_LETTERS.size(); + return numbers + SPAIN_1_LETTERS.get(sum); + } else { + var leadingChar = (Character) SPAIN_2_LETTERS.keySet().toArray()[(randomGenerator.nextInt(0, SPAIN_2_LETTERS.size()))]; + var numbers = randomGenerator + .ints(1,9) + .limit(7) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + + var sum = Integer.parseUnsignedInt(SPAIN_2_LETTERS.get(leadingChar) + numbers) % SPAIN_1_LETTERS.size(); + return leadingChar + numbers + SPAIN_1_LETTERS.get(sum); + } + } + + private boolean isSpain1(String tin) { + return StringUtils.isDigits(tin.substring(0,8)) && SPAIN_1_LETTERS.contains(tin.charAt(8)); + } + + private boolean isSpain2(String tin) { + return StringUtils.isDigits(tin.substring(1,8)) + && SPAIN_2_LETTERS.containsKey(tin.charAt(0)) + && SPAIN_1_LETTERS.contains(tin.charAt(8)); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_FI.java b/src/main/java/com/devsoap/tincheck/countries/Country_FI.java new file mode 100644 index 0000000..8d42fff --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_FI.java @@ -0,0 +1,106 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.Set; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_FI implements TinCountry { + + private static final Set CENTURY = Set.of( '+', '-','A' ); + + private final String countryCode = "FI"; + private final String countryName = "Finland"; + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + var digits = tin.substring(0,6); + if (!StringUtils.isDigits(digits)) { + return false; + } + var century = tin.charAt(6); + if (!CENTURY.contains(century)) { + return false; + } + var digits2 = tin.substring(7,10); + if (!StringUtils.isDigits(digits2)) { + return false; + } + var checkChar = tin.charAt(10); + if( !(Character.isAlphabetic(checkChar) || Character.isDigit(checkChar))) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = tin.substring(0,6); + var digits2 = tin.substring(7,10); + var checkChar = tin.charAt(10); + var calculatedCheckChar = getCheckChar(digits, digits2); + return checkChar == calculatedCheckChar; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + + var century = (int) Math.floor(yearOfBirth.getYear() / 100.00); + var centuryChar = switch (century) { + case 18 -> '+'; + case 19 -> '-'; + case 20 -> 'A'; + default -> throw new IllegalArgumentException("Invalid century"); + }; + + var digits2 = String.format("%03d", randomGenerator.ints(2,899) + .map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + + var calculatedCheckChar = getCheckChar(digits, digits2); + + return digits + centuryChar + digits2 + calculatedCheckChar; + } + + private static char getCheckChar(String digits, String digits2) { + var calculatedCheckNumber = Integer.parseUnsignedInt(digits+digits2); + var calculatedCheckDigit = calculatedCheckNumber % 31; + + if (calculatedCheckDigit < 10) { + return Character.forDigit(calculatedCheckDigit, 10); + } + if (calculatedCheckDigit < 16) { + return (char) ('A' + (calculatedCheckDigit-10)); + } + if (calculatedCheckDigit == 16) { + return 'H'; + } + if (calculatedCheckDigit < 22) { + return (char) ('J' + (calculatedCheckDigit-17)); + } + if (calculatedCheckDigit == 22) { + return 'P'; + } + return (char) ('R' + (calculatedCheckDigit-23)); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_FR.java b/src/main/java/com/devsoap/tincheck/countries/Country_FR.java new file mode 100644 index 0000000..8072cc3 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_FR.java @@ -0,0 +1,60 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Optional; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +import static org.apache.commons.lang3.StringUtils.leftPad; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_FR implements TinCountry { + + private final String countryCode = "FR"; + private final String countryName = "France"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits = randomGenerator.ints(0,10).limit(10).toArray(); + digits[0] = randomGenerator.nextInt(0,3); + var str = IntStream.of(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + return str + calculateCheckDigit(str); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 13) { + return false; + } + return StringUtils.isDigits(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + if (digits[0] < 0 || digits[0] > 3) { + return false; + } + return tin.endsWith(calculateCheckDigit(tin.substring(0, tin.length()-3))); + } + + private static String calculateCheckDigit(String tin) { + return Optional.of(tin) + .map(Long::parseLong) + .map(v -> v % 511) + .map(String::valueOf) + .map(str -> leftPad(str, 3, '0')) + .orElseThrow(); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_GR.java b/src/main/java/com/devsoap/tincheck/countries/Country_GR.java new file mode 100644 index 0000000..f8dca04 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_GR.java @@ -0,0 +1,34 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_GR implements TinCountry { + + private final String countryCode = "GR"; + private final String countryName = "Greece"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + return randomGenerator.ints(9,0,10) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + return tin.length() == 9 && StringUtils.isNumeric(tin); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_HR.java b/src/main/java/com/devsoap/tincheck/countries/Country_HR.java new file mode 100644 index 0000000..822da92 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_HR.java @@ -0,0 +1,56 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_HR implements TinCountry { + + private final String countryCode = "HR"; + private final String countryName = "Croatia"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var tin = randomGenerator.ints(10,0,10) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + return tin + calculateCheckDigit(tin); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + return StringUtils.isNumeric(tin); + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var check = calculateCheckDigit(tin); + return digits[digits.length-1] == check; + } + + private int calculateCheckDigit(String tin) { + var digits = extractDigits(tin); + var rest = 10; + var subtotal = 0; + for(int i=0; i<10; i++) { + subtotal = (digits[i] + rest) % 10; + rest = ((subtotal == 0 ? 10 : subtotal) * 2) % 11; + } + return rest == 1 ? 0 : 11 - rest; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_IT.java b/src/main/java/com/devsoap/tincheck/countries/Country_IT.java new file mode 100644 index 0000000..ebae8a4 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_IT.java @@ -0,0 +1,181 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; +import org.apache.commons.lang3.StringUtils; + +import java.time.LocalDate; +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_IT implements TinCountry { + + private final String countryCode = "IT"; + private final String countryName = "Italy"; + + private static final List< Character> MONTHS = List.of( + 'A','B','C','D','E','H','L','M','P','R','S','T' + ); + + private static final List CHECK_DIGIT = List.of( + 'A','B','C','D','E','F','G','H','I','J','K','L', + 'M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z' + ); + + private static final Map EVEN_POSITION_MAP = new HashMap<>(); + static { + EVEN_POSITION_MAP.put('A', 0); + EVEN_POSITION_MAP.put('B', 1); + EVEN_POSITION_MAP.put('C', 2); + EVEN_POSITION_MAP.put('D', 3); + EVEN_POSITION_MAP.put('E', 4); + EVEN_POSITION_MAP.put('F', 5); + EVEN_POSITION_MAP.put('G', 6); + EVEN_POSITION_MAP.put('H', 7); + EVEN_POSITION_MAP.put('I', 8); + EVEN_POSITION_MAP.put('J', 9); + EVEN_POSITION_MAP.put('K', 10); + EVEN_POSITION_MAP.put('L', 11); + EVEN_POSITION_MAP.put('M', 12); + EVEN_POSITION_MAP.put('N', 13); + EVEN_POSITION_MAP.put('O', 14); + EVEN_POSITION_MAP.put('P', 15); + EVEN_POSITION_MAP.put('Q', 16); + EVEN_POSITION_MAP.put('R', 17); + EVEN_POSITION_MAP.put('S', 18); + EVEN_POSITION_MAP.put('T', 19); + EVEN_POSITION_MAP.put('U', 20); + EVEN_POSITION_MAP.put('V', 21); + EVEN_POSITION_MAP.put('W', 22); + EVEN_POSITION_MAP.put('X', 23); + EVEN_POSITION_MAP.put('Y', 24); + EVEN_POSITION_MAP.put('Z', 25); + EVEN_POSITION_MAP.put('0', 0); + EVEN_POSITION_MAP.put('1', 1); + EVEN_POSITION_MAP.put('2', 2); + EVEN_POSITION_MAP.put('3', 3); + EVEN_POSITION_MAP.put('4', 4); + EVEN_POSITION_MAP.put('5', 5); + EVEN_POSITION_MAP.put('6', 6); + EVEN_POSITION_MAP.put('7', 7); + EVEN_POSITION_MAP.put('8', 8); + EVEN_POSITION_MAP.put('9', 9); + } + + private static final Map ODD_POSITION_MAP = new HashMap<>(); + static { + ODD_POSITION_MAP.put('A', 1); + ODD_POSITION_MAP.put('B', 0); + ODD_POSITION_MAP.put('C', 5); + ODD_POSITION_MAP.put('D', 7); + ODD_POSITION_MAP.put('E', 9); + ODD_POSITION_MAP.put('F', 13); + ODD_POSITION_MAP.put('G', 15); + ODD_POSITION_MAP.put('H', 17); + ODD_POSITION_MAP.put('I', 19); + ODD_POSITION_MAP.put('J', 21); + ODD_POSITION_MAP.put('K', 2); + ODD_POSITION_MAP.put('L', 4); + ODD_POSITION_MAP.put('M', 18); + ODD_POSITION_MAP.put('N', 20); + ODD_POSITION_MAP.put('O', 11); + ODD_POSITION_MAP.put('P', 3); + ODD_POSITION_MAP.put('Q', 6); + ODD_POSITION_MAP.put('R', 8); + ODD_POSITION_MAP.put('S', 12); + ODD_POSITION_MAP.put('T', 14); + ODD_POSITION_MAP.put('U', 16); + ODD_POSITION_MAP.put('V', 10); + ODD_POSITION_MAP.put('W', 22); + ODD_POSITION_MAP.put('X', 25); + ODD_POSITION_MAP.put('Y', 24); + ODD_POSITION_MAP.put('Z', 23); + ODD_POSITION_MAP.put('0', 1); + ODD_POSITION_MAP.put('1', 0); + ODD_POSITION_MAP.put('2', 5); + ODD_POSITION_MAP.put('3', 7); + ODD_POSITION_MAP.put('4', 9); + ODD_POSITION_MAP.put('5', 13); + ODD_POSITION_MAP.put('6', 15); + ODD_POSITION_MAP.put('7', 17); + ODD_POSITION_MAP.put('8', 19); + ODD_POSITION_MAP.put('9', 21); + } + + @Override + public String cleanTin(String tin) { + return TinCountry.super.cleanTin(tin).toUpperCase(); + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var codeList = + EVEN_POSITION_MAP.keySet().stream().map(Object::toString).toList(); + var code = randomGenerator + .ints(6, 0, codeList.size()) + .mapToObj(codeList::get) + .collect(Collectors.joining("")); + var year = StringUtils.leftPad(String.valueOf(yearOfBirth.getYear() % 100),2,'0'); + var month = MONTHS.get(yearOfBirth.getMonthValue() - 1).toString(); + var day = StringUtils.leftPad(String.valueOf(gender == Gender.MALE ? + yearOfBirth.getDayOfMonth() : yearOfBirth.getDayOfMonth() + 40),2,'0'); + var pob = String.format("%s%d%d%d",CHECK_DIGIT.get(randomGenerator.nextInt(0, CHECK_DIGIT.size())), + + randomGenerator.nextInt(0,10), + + randomGenerator.nextInt(0,10), + + randomGenerator.nextInt(0,10)); + var tin = code + year + month + day + pob; + return tin + calculateCheckDigit(tin); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 16) { + return false; + } + + var digits = List.of(6,7,9,10,12,13,14); + for (Integer digit : digits) { + if (!Character.isDigit(tin.charAt(digit))) { + return false; + } + } + + if (!MONTHS.contains(tin.charAt(8))) { + return false; + } + + var age = Integer.parseInt(tin.substring(9,11)); + var isMale = age >= 1 && age <=31; + var isFemale = age >= 41 && age <= 71; + if (!isMale && !isFemale) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + return calculateCheckDigit(tin) == tin.charAt(15); + } + + private static char calculateCheckDigit(String tin) { + var sum = 0; + for (int i = 0; i < 15; i++) { + var c = tin.charAt(i); + var n = (i+1) % 2 == 0 ? EVEN_POSITION_MAP.get(c) : ODD_POSITION_MAP.get(c); + sum += n; + } + sum = sum % CHECK_DIGIT.size(); + return CHECK_DIGIT.get(sum); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_LV.java b/src/main/java/com/devsoap/tincheck/countries/Country_LV.java new file mode 100644 index 0000000..9bbc64f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_LV.java @@ -0,0 +1,66 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.stream.Collectors; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_LV implements TinCountry { + + private final String countryCode = "LV"; + private final String countryName = "Latvia"; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + + var digits = new int[11]; + digits[0] = yearOfBirth.getDayOfMonth() / 10; + digits[1] = yearOfBirth.getDayOfMonth() % 10; + digits[2] = yearOfBirth.getMonthValue() / 10; + digits[3] = yearOfBirth.getMonthValue() % 10; + digits[5] = yearOfBirth.getYear() % 10; + digits[4] = (yearOfBirth.getYear() % 100 - digits[5]) / 10; + + if (yearOfBirth.getYear() < 1900) { + digits[6] = 0; + } else if (yearOfBirth.getYear() < 2000) { + digits[6] = 1; + } else { + digits[6] = 2; + } + + System.arraycopy(randomGenerator.ints(0,10).limit(4).toArray(), 0, digits, 7, 4); + return Arrays.stream(digits).mapToObj(String::valueOf).collect(Collectors.joining()); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + + int day = Integer.parseUnsignedInt(tin.substring(0, 2)); + if (day < 1 || day > 32) { + return false; + } else if (day == 32) { + return true; + } + + int century = Integer.parseUnsignedInt(tin.substring(6, 7)); + return century == 0 || century == 1 || century == 2; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_NO.java b/src/main/java/com/devsoap/tincheck/countries/Country_NO.java new file mode 100644 index 0000000..aa0780e --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_NO.java @@ -0,0 +1,108 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_NO implements TinCountry { + + private final String countryCode = "NO"; + private final String countryName = "Norway"; + + private final LocalDate PERIOD1_START = LocalDate.of(1854,1,1); + private final LocalDate PERIOD2_START = LocalDate.of(1900,1,1); + private final LocalDate PERIOD3_START = LocalDate.of(1940,1,1); + private final LocalDate PERIOD4_START = LocalDate.of(2000,1,1); + + private final LocalDate PERIOD1_END = LocalDate.of(1899,12,31); + private final LocalDate PERIOD2_END = LocalDate.of(1999,12,31); + private final LocalDate PERIOD3_END = LocalDate.of(1999,12,31); + private final LocalDate PERIOD4_END = LocalDate.of(2039,12,31); + + private static final int[] DIGIT1_WEIGHTS = {3,7,6,1,8,9,4,5,2}; + private static final int[] DIGIT2_WEIGHTS = {5,4,3,2,7,6,5,4,3,2}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits1 = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + + IntStream identityNumberStream; + if (isBetween(yearOfBirth, PERIOD1_START, PERIOD1_END)) { + identityNumberStream = randomGenerator.ints(500,748); + } else if (isBetween(yearOfBirth, PERIOD2_START, PERIOD2_END)) { + identityNumberStream = randomGenerator.ints(0,498); + } else if (isBetween(yearOfBirth, PERIOD3_START, PERIOD3_END)) { + identityNumberStream = randomGenerator.ints(900,998); + } else if (isBetween(yearOfBirth, PERIOD4_START, PERIOD4_END)) { + identityNumberStream = randomGenerator.ints(500,998); + } else { + throw new IllegalArgumentException("Year of birth " + yearOfBirth.getYear() + " not supported"); + } + + int identityNumber = identityNumberStream.map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }).findFirst().getAsInt(); + + int[] digits = extractDigits(digits1 + String.format("%03d",identityNumber)); + int checksum1 = calculateChecksum(digits, DIGIT1_WEIGHTS); + + int[] digits2 = Arrays.copyOf(digits, digits.length+1); + digits2[digits.length] = checksum1; + int checksum2 = calculateChecksum(digits2, DIGIT2_WEIGHTS); + + return String.format("%s %03d %d%d", digits1, identityNumber, checksum1, checksum2); + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 11) { + return false; + } + if (!StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + int[] digits = extractDigits(tin); + int checksum1 = calculateChecksum(Arrays.copyOfRange(digits, 0, DIGIT1_WEIGHTS.length), DIGIT1_WEIGHTS); + if (checksum1 != digits[9]) { + return false; + } + int checksum2 = calculateChecksum(Arrays.copyOfRange(digits, 0, DIGIT2_WEIGHTS.length), DIGIT2_WEIGHTS); + if (checksum2 != digits[10]) { + return false; + } + return true; + } + + private boolean isBetween(LocalDate date, LocalDate start, LocalDate end) { + return date.isEqual(start) || date.isEqual(end) || (date.isAfter(start) && date.isBefore(end)); + } + + private static int calculateChecksum(int[] digits, int[] weights) { + if (digits.length != weights.length) { + throw new IllegalArgumentException(String.format("Checksum consists of %d digits, %d given", + weights.length, digits.length)); + } + var sum = IntStream.range(0, weights.length).map(i -> digits[i] * weights[i]).sum(); + var digit = 11 - (sum % 11); + return digit < 10 ? digit : 0; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_PT.java b/src/main/java/com/devsoap/tincheck/countries/Country_PT.java new file mode 100644 index 0000000..34d46d2 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_PT.java @@ -0,0 +1,57 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Random; +import java.util.stream.Collectors; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_PT implements TinCountry { + + private final String countryCode = "PT"; + private final String countryName = "Portugal"; + + private static final int[] WEIGHTS = new int[]{9,8,7,6,5,4,3,2}; + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var digits = randomGenerator.ints(0,10) + .limit(8) + .mapToObj(String::valueOf) + .collect(Collectors.joining()); + var check = calculateCheckDigit(extractDigits(digits)); + return digits + check; + } + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 9 || !StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + var digits = extractDigits(tin); + var check = calculateCheckDigit(digits); + return check == digits[8]; + } + + private static int calculateCheckDigit(int[] digits) { + var sum = IntStream.range(0, WEIGHTS.length).map(i -> WEIGHTS[i] * digits[i]).sum(); + var check = 11 - (sum % 11); + if(check > 9) check = 0; + return check; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/countries/Country_SE.java b/src/main/java/com/devsoap/tincheck/countries/Country_SE.java new file mode 100644 index 0000000..ecee499 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/countries/Country_SE.java @@ -0,0 +1,86 @@ +package com.devsoap.tincheck.countries; + +import com.devsoap.tincheck.tin.TinCountry; +import io.micronaut.core.util.StringUtils; +import jakarta.inject.Singleton; +import lombok.Getter; +import lombok.RequiredArgsConstructor; +import lombok.ToString; + +import java.time.LocalDate; +import java.util.Arrays; +import java.util.Random; +import java.util.Set; +import java.util.stream.IntStream; + +@Getter +@Singleton +@RequiredArgsConstructor +@ToString(of = {"countryCode", "countryName"}) +public class Country_SE implements TinCountry { + + private static final Set SEPARATORS = Set.of('-','+'); + private static final int[] CHECK_NUMBER = {2,1,2,1,2,1,2,1,2}; + + private final String countryCode = "SE"; + private final String countryName = "Sweden"; + + @Override + public boolean formatCheck(String tin) { + if (tin.length() != 10 && tin.length() != 11) { + return false; + } + if (tin.length() == 11) { + var separator = tin.charAt(6); + if (!SEPARATORS.contains(separator)) { + return false; + } + tin = tin.replace(String.valueOf(separator), ""); + } + if (tin.length() != 10 || !StringUtils.isDigits(tin)) { + return false; + } + return true; + } + + @Override + public boolean logicCheck(String tin) { + if (tin.length() == 11) { + tin = tin.substring(0, 6) + tin.substring(7,11); + } + var digits = extractDigits(tin); + var checksum = calculateChecksum(Arrays.copyOfRange(digits,0,9)); + return digits[9] == checksum; + } + + @Override + public String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator) { + var separator = yearOfBirth.until(LocalDate.now()).getYears() >= 100 ? '+' : '-'; + var digits1 = String.format("%02d%02d%02d", yearOfBirth.getDayOfMonth(), yearOfBirth.getMonthValue(), + yearOfBirth.getYear() % 100); + var digits2 = String.format("%03d", randomGenerator.ints(2,899) + .map(n -> switch (gender) { + case MALE -> n % 2 == 0 ? n + 1 : n; + case FEMALE -> n % 2 == 0 ? n : n + 1; + }) + .findFirst() + .getAsInt()); + var digits = extractDigits(digits1 + digits2); + var checksum = calculateChecksum(digits); + return digits1 + separator + digits2 + checksum; + } + + private static int calculateChecksum(int[] digits) { + if (digits.length != 9) { + throw new IllegalArgumentException("Checksum consists of 9 digits"); + } + + var sum = IntStream.range(0,9) + .map(i -> digits[i] * CHECK_NUMBER[i]) + .map(d -> d >= 10 ? (d/10) + (d%10) : d) + .sum(); + + var lastDigit = sum % 10; + return lastDigit == 0 ? 0 : 10 - lastDigit; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/Routes.java b/src/main/java/com/devsoap/tincheck/routes/Routes.java new file mode 100644 index 0000000..af57e55 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/Routes.java @@ -0,0 +1,82 @@ +package com.devsoap.tincheck.routes; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.devsoap.tincheck.routes.requests.TinGenerateRequest; +import com.devsoap.tincheck.routes.requests.TinValidateRequest; +import com.devsoap.tincheck.routes.responses.GenerationResult; +import com.devsoap.tincheck.services.TinCheckService; +import io.github.resilience4j.ratelimiter.RequestNotPermitted; +import io.micronaut.http.HttpRequest; +import io.micronaut.http.HttpResponse; +import io.micronaut.http.MediaType; +import io.micronaut.http.MutableHttpResponse; +import io.micronaut.http.annotation.*; +import io.micronaut.http.annotation.Error; +import io.micronaut.http.server.util.HttpHostResolver; +import io.micronaut.views.View; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +import javax.validation.Valid; +import java.time.LocalDate; +import java.util.Map; + +@Slf4j +@Controller +@RequiredArgsConstructor +@Consumes(MediaType.APPLICATION_FORM_URLENCODED) +@Produces(MediaType.TEXT_HTML) +public class Routes { + + private final TinCheckService service; + private final HttpHostResolver hostResolver; + + @Post("/validate") + @View("validation-result") + public HttpResponse> validate(@Valid TinValidateRequest request, HttpRequest httpRequest) { + var result = service.validateRateLimited(request.country(), request.value()); + return responseWithCorsHeaders(httpRequest, HttpResponse.ok(switch (result.result()) { + case "valid" -> Map.of("class", result.result(), "text", "TIN is valid"); + case "invalid" -> Map.of("class", result.result(), "text", "TIN is invalid"); + default -> Map.of("class", result.result(), "text", "Unknown error"); + })); + } + + @Get + @View("index") + public Map index() { + return Map.of( + "countries", service.getCountryMap(), + "defaultCountry", service.getDefaultCountry().getCountryCode(), + "defaultValue", service.generateRateLimited(service.getDefaultCountry().getCountryCode(), + LocalDate.of(1983, 6,29), TinGenerator.Gender.MALE).value() + ); + } + + @Post("/generate") + @Consumes(MediaType.APPLICATION_JSON) + @Produces(MediaType.APPLICATION_JSON) + public HttpResponse generate(@Valid TinGenerateRequest request, HttpRequest httpRequest){ + return responseWithCorsHeaders(httpRequest, HttpResponse.ok( + service.generateRateLimited(request.country(), request.dateOfBirth(), request.gender()))); + } + + @Error(exception = IllegalArgumentException.class) + public HttpResponse handleInvalidParameters(IllegalArgumentException e) { + log.error("Invalid parameters for request: {}", e.getMessage()); + return HttpResponse.badRequest(e.getMessage()).contentType(MediaType.TEXT_PLAIN); + } + + @Error(exception = RequestNotPermitted.class) + public HttpResponse handleRateLimit(RequestNotPermitted e) { + log.info("Rate limit for request triggered: {}", e.getMessage()); + return HttpResponse.unauthorized().body(Map.of("error", + "Free validations consumed. Please buy subscription for more validations.")); + } + + private HttpResponse responseWithCorsHeaders(HttpRequest httpRequest, MutableHttpResponse response) { + return response + .header( "Access-Control-Allow-Origin", hostResolver.resolve(httpRequest)) + .header("Access-Control-Allow-Methods", "POST,GET,OPTIONS"); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java b/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java new file mode 100644 index 0000000..86d3f7b --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/requests/TinGenerateRequest.java @@ -0,0 +1,17 @@ +package com.devsoap.tincheck.routes.requests; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; +import java.time.LocalDate; + +@Introspected +public record TinGenerateRequest( + @JsonProperty(value = "country", required = true) @NotBlank String country, + @JsonProperty(value = "dateOfBirth", required = true) @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd") @NotNull LocalDate dateOfBirth, + @JsonProperty(value = "gender", required = true) @NotNull TinGenerator.Gender gender +){} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java b/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java new file mode 100644 index 0000000..2c09341 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/requests/TinValidateRequest.java @@ -0,0 +1,15 @@ +package com.devsoap.tincheck.routes.requests; + +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; +import lombok.Getter; +import lombok.RequiredArgsConstructor; + +import javax.validation.constraints.NotBlank; +import javax.validation.constraints.NotNull; + +@Introspected +public record TinValidateRequest( + @JsonProperty("country") @NotNull String country, + @JsonProperty("value") @NotBlank String value +){} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java b/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java new file mode 100644 index 0000000..672401a --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/responses/GenerationResult.java @@ -0,0 +1,18 @@ +package com.devsoap.tincheck.routes.responses; + +import com.devsoap.tincheck.tin.TinGenerator; +import com.fasterxml.jackson.annotation.JsonFormat; +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; +import jdk.jfr.Timestamp; + +import javax.validation.constraints.NotNull; +import java.time.LocalDate; + +@Introspected +public record GenerationResult( + @JsonProperty("value") String value, + @JsonProperty("dateOfBirth") @JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd") @Timestamp LocalDate dateOfBirth, + @JsonProperty("gender") @NotNull TinGenerator.Gender gender, + @JsonProperty("availableTokens") Long tokens +){ } \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java b/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java new file mode 100644 index 0000000..9c668ad --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/routes/responses/ValidationResult.java @@ -0,0 +1,10 @@ +package com.devsoap.tincheck.routes.responses; + +import com.fasterxml.jackson.annotation.JsonProperty; +import io.micronaut.core.annotation.Introspected; + +@Introspected +public record ValidationResult(@JsonProperty("result") String result){ + public static final ValidationResult VALID = new ValidationResult("valid"); + public static final ValidationResult INVALID = new ValidationResult("invalid"); +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/services/TinCheckService.java b/src/main/java/com/devsoap/tincheck/services/TinCheckService.java new file mode 100644 index 0000000..0284c3f --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/services/TinCheckService.java @@ -0,0 +1,75 @@ +package com.devsoap.tincheck.services; + +import com.devsoap.tincheck.tin.TinCountry; +import com.devsoap.tincheck.tin.TinGenerator; +import com.devsoap.tincheck.routes.responses.GenerationResult; +import com.devsoap.tincheck.routes.responses.ValidationResult; +import io.github.resilience4j.micronaut.annotation.RateLimiter; +import jakarta.inject.Singleton; +import lombok.RequiredArgsConstructor; +import lombok.extern.slf4j.Slf4j; + +import javax.annotation.PostConstruct; +import java.time.LocalDate; +import java.util.LinkedHashMap; +import java.util.List; +import java.util.Map; +import java.util.Random; +import java.util.stream.Collectors; + +@Slf4j +@Singleton +@RequiredArgsConstructor +public class TinCheckService { + + private final List countries; + private final Random randomGenerator; + + @PostConstruct + public void printStats() { + log.info("Implemented country codes: {}", countries.stream() + .map(TinCountry::getCountryCode) + .collect(Collectors.toList())); + } + + public ValidationResult validate(String countryCode, String value) { + var valid = getByCountryCode(countryCode).validate(value); + var result = valid ? ValidationResult.VALID : ValidationResult.INVALID; + log.info("Validated TIN {} for country {}. It is {}.", value, countryCode, result.result()); + return result; + } + + public GenerationResult generate(String countryCode, LocalDate dateOfBirth, TinGenerator.Gender gender) { + var value = getByCountryCode(countryCode).generate(dateOfBirth, gender, randomGenerator); + return new GenerationResult(value, dateOfBirth, gender, 0L); + } + + @RateLimiter(name = "tincheck-public") + public ValidationResult validateRateLimited(String countryCode, String value) { + return validate(countryCode, value); + } + + @RateLimiter(name = "tincheck-public") + public GenerationResult generateRateLimited(String countryCode, LocalDate dateOfBirth, TinGenerator.Gender gender) { + return generate(countryCode, dateOfBirth, gender); + } + + public TinCountry getByCountryCode(String countryCode) { + return countries.stream() + .filter(c -> c.getCountryCode().equalsIgnoreCase(countryCode)) + .findFirst() + .orElseThrow(() -> new IllegalArgumentException(String.format("Country \"%s\" not supported.", countryCode))); + } + + public Map getCountryMap() { + return countries.stream() + .sorted() + .collect(Collectors.toMap(TinCountry::getCountryCode, TinCountry::getCountryName, + (e1,e2) -> e1, LinkedHashMap::new)); + } + + public TinCountry getDefaultCountry() { + return countries.stream().sorted().findFirst().orElse(null); + } + +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinCountry.java b/src/main/java/com/devsoap/tincheck/tin/TinCountry.java new file mode 100644 index 0000000..2a4d5be --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinCountry.java @@ -0,0 +1,21 @@ +package com.devsoap.tincheck.tin; + +import java.util.Arrays; + +public interface TinCountry extends TinValidator, TinGenerator, Comparable { + + String getCountryCode(); + + String getCountryName(); + + default int[] extractDigits(String tin) { + return Arrays.stream(tin.split("")) + .mapToInt(c -> Integer.parseUnsignedInt(String.valueOf(c))) + .toArray(); + } + + @Override + default int compareTo(TinCountry o) { + return getCountryCode().compareTo(o.getCountryCode()); + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java b/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java new file mode 100644 index 0000000..128e0eb --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinGenerator.java @@ -0,0 +1,18 @@ +package com.devsoap.tincheck.tin; + +import com.fasterxml.jackson.annotation.JsonValue; +import lombok.RequiredArgsConstructor; + +import java.time.LocalDate; +import java.util.Random; + +public interface TinGenerator { + + String generate(LocalDate yearOfBirth, Gender gender, Random randomGenerator); + + @RequiredArgsConstructor + enum Gender { + MALE ("m"), FEMALE ("f"); + @JsonValue private final String symbol; + } +} \ No newline at end of file diff --git a/src/main/java/com/devsoap/tincheck/tin/TinValidator.java b/src/main/java/com/devsoap/tincheck/tin/TinValidator.java new file mode 100644 index 0000000..c190105 --- /dev/null +++ b/src/main/java/com/devsoap/tincheck/tin/TinValidator.java @@ -0,0 +1,27 @@ +package com.devsoap.tincheck.tin; + +import io.micronaut.core.util.StringUtils; + +public interface TinValidator { + + default String cleanTin(String tin) { + return tin.replace(" ", ""); + } + + default boolean validate(String tin){ + String strippedTin = cleanTin(tin); + return basicCheck(strippedTin) && formatCheck(strippedTin) && logicCheck(strippedTin); + } + + default boolean basicCheck(String tin) { + return StringUtils.hasText(tin); + } + + default boolean formatCheck(String tin){ + return true; + } + + default boolean logicCheck(String tin){ + return true; + } +} \ No newline at end of file diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..757a28b --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,32 @@ +micronaut.application: + name: tincheck + +micronaut.server: + cors.enabled: true + +micronaut.router: + static-resources: + public: + mapping: /** + paths: + - "classpath:public" + - "classpath:META-INF/resources/webjars" + +jackson: + serialization: + writeDatesAsTimestamps: false + mapper: + acceptCaseInsensitiveEnums: true + +resilience4j: + ratelimiter: + enabled: true + configs: + tincheck-public-config: + registerHealthIndicator: false + limitRefreshPeriod: 60s + limitForPeriod: 10 + eventConsumerBufferSize: 100 + instances: + tincheck-public: + baseConfig: tincheck-public-config \ No newline at end of file diff --git a/src/main/resources/public/css/flag-icons.min.css b/src/main/resources/public/css/flag-icons.min.css new file mode 100644 index 0000000..253a649 --- /dev/null +++ b/src/main/resources/public/css/flag-icons.min.css @@ -0,0 +1 @@ +.fib{background-size:contain;background-position:50%;background-repeat:no-repeat}.fi{background-size:contain;background-position:50%;background-repeat:no-repeat;position:relative;display:inline-block;width:1.33333333em;line-height:1em}.fi:before{content:'\00a0'}.fi.fis{width:1em}.fi-xx{background-image:url(../flags/4x3/xx.svg)}.fi-xx.fis{background-image:url(../flags/1x1/xx.svg)}.fi-ad{background-image:url(../flags/4x3/ad.svg)}.fi-ad.fis{background-image:url(../flags/1x1/ad.svg)}.fi-ae{background-image:url(../flags/4x3/ae.svg)}.fi-ae.fis{background-image:url(../flags/1x1/ae.svg)}.fi-af{background-image:url(../flags/4x3/af.svg)}.fi-af.fis{background-image:url(../flags/1x1/af.svg)}.fi-ag{background-image:url(../flags/4x3/ag.svg)}.fi-ag.fis{background-image:url(../flags/1x1/ag.svg)}.fi-ai{background-image:url(../flags/4x3/ai.svg)}.fi-ai.fis{background-image:url(../flags/1x1/ai.svg)}.fi-al{background-image:url(../flags/4x3/al.svg)}.fi-al.fis{background-image:url(../flags/1x1/al.svg)}.fi-am{background-image:url(../flags/4x3/am.svg)}.fi-am.fis{background-image:url(../flags/1x1/am.svg)}.fi-ao{background-image:url(../flags/4x3/ao.svg)}.fi-ao.fis{background-image:url(../flags/1x1/ao.svg)}.fi-aq{background-image:url(../flags/4x3/aq.svg)}.fi-aq.fis{background-image:url(../flags/1x1/aq.svg)}.fi-ar{background-image:url(../flags/4x3/ar.svg)}.fi-ar.fis{background-image:url(../flags/1x1/ar.svg)}.fi-as{background-image:url(../flags/4x3/as.svg)}.fi-as.fis{background-image:url(../flags/1x1/as.svg)}.fi-at{background-image:url(../flags/4x3/at.svg)}.fi-at.fis{background-image:url(../flags/1x1/at.svg)}.fi-au{background-image:url(../flags/4x3/au.svg)}.fi-au.fis{background-image:url(../flags/1x1/au.svg)}.fi-aw{background-image:url(../flags/4x3/aw.svg)}.fi-aw.fis{background-image:url(../flags/1x1/aw.svg)}.fi-ax{background-image:url(../flags/4x3/ax.svg)}.fi-ax.fis{background-image:url(../flags/1x1/ax.svg)}.fi-az{background-image:url(../flags/4x3/az.svg)}.fi-az.fis{background-image:url(../flags/1x1/az.svg)}.fi-ba{background-image:url(../flags/4x3/ba.svg)}.fi-ba.fis{background-image:url(../flags/1x1/ba.svg)}.fi-bb{background-image:url(../flags/4x3/bb.svg)}.fi-bb.fis{background-image:url(../flags/1x1/bb.svg)}.fi-bd{background-image:url(../flags/4x3/bd.svg)}.fi-bd.fis{background-image:url(../flags/1x1/bd.svg)}.fi-be{background-image:url(../flags/4x3/be.svg)}.fi-be.fis{background-image:url(../flags/1x1/be.svg)}.fi-bf{background-image:url(../flags/4x3/bf.svg)}.fi-bf.fis{background-image:url(../flags/1x1/bf.svg)}.fi-bg{background-image:url(../flags/4x3/bg.svg)}.fi-bg.fis{background-image:url(../flags/1x1/bg.svg)}.fi-bh{background-image:url(../flags/4x3/bh.svg)}.fi-bh.fis{background-image:url(../flags/1x1/bh.svg)}.fi-bi{background-image:url(../flags/4x3/bi.svg)}.fi-bi.fis{background-image:url(../flags/1x1/bi.svg)}.fi-bj{background-image:url(../flags/4x3/bj.svg)}.fi-bj.fis{background-image:url(../flags/1x1/bj.svg)}.fi-bl{background-image:url(../flags/4x3/bl.svg)}.fi-bl.fis{background-image:url(../flags/1x1/bl.svg)}.fi-bm{background-image:url(../flags/4x3/bm.svg)}.fi-bm.fis{background-image:url(../flags/1x1/bm.svg)}.fi-bn{background-image:url(../flags/4x3/bn.svg)}.fi-bn.fis{background-image:url(../flags/1x1/bn.svg)}.fi-bo{background-image:url(../flags/4x3/bo.svg)}.fi-bo.fis{background-image:url(../flags/1x1/bo.svg)}.fi-bq{background-image:url(../flags/4x3/bq.svg)}.fi-bq.fis{background-image:url(../flags/1x1/bq.svg)}.fi-br{background-image:url(../flags/4x3/br.svg)}.fi-br.fis{background-image:url(../flags/1x1/br.svg)}.fi-bs{background-image:url(../flags/4x3/bs.svg)}.fi-bs.fis{background-image:url(../flags/1x1/bs.svg)}.fi-bt{background-image:url(../flags/4x3/bt.svg)}.fi-bt.fis{background-image:url(../flags/1x1/bt.svg)}.fi-bv{background-image:url(../flags/4x3/bv.svg)}.fi-bv.fis{background-image:url(../flags/1x1/bv.svg)}.fi-bw{background-image:url(../flags/4x3/bw.svg)}.fi-bw.fis{background-image:url(../flags/1x1/bw.svg)}.fi-by{background-image:url(../flags/4x3/by.svg)}.fi-by.fis{background-image:url(../flags/1x1/by.svg)}.fi-bz{background-image:url(../flags/4x3/bz.svg)}.fi-bz.fis{background-image:url(../flags/1x1/bz.svg)}.fi-ca{background-image:url(../flags/4x3/ca.svg)}.fi-ca.fis{background-image:url(../flags/1x1/ca.svg)}.fi-cc{background-image:url(../flags/4x3/cc.svg)}.fi-cc.fis{background-image:url(../flags/1x1/cc.svg)}.fi-cd{background-image:url(../flags/4x3/cd.svg)}.fi-cd.fis{background-image:url(../flags/1x1/cd.svg)}.fi-cf{background-image:url(../flags/4x3/cf.svg)}.fi-cf.fis{background-image:url(../flags/1x1/cf.svg)}.fi-cg{background-image:url(../flags/4x3/cg.svg)}.fi-cg.fis{background-image:url(../flags/1x1/cg.svg)}.fi-ch{background-image:url(../flags/4x3/ch.svg)}.fi-ch.fis{background-image:url(../flags/1x1/ch.svg)}.fi-ci{background-image:url(../flags/4x3/ci.svg)}.fi-ci.fis{background-image:url(../flags/1x1/ci.svg)}.fi-ck{background-image:url(../flags/4x3/ck.svg)}.fi-ck.fis{background-image:url(../flags/1x1/ck.svg)}.fi-cl{background-image:url(../flags/4x3/cl.svg)}.fi-cl.fis{background-image:url(../flags/1x1/cl.svg)}.fi-cm{background-image:url(../flags/4x3/cm.svg)}.fi-cm.fis{background-image:url(../flags/1x1/cm.svg)}.fi-cn{background-image:url(../flags/4x3/cn.svg)}.fi-cn.fis{background-image:url(../flags/1x1/cn.svg)}.fi-co{background-image:url(../flags/4x3/co.svg)}.fi-co.fis{background-image:url(../flags/1x1/co.svg)}.fi-cr{background-image:url(../flags/4x3/cr.svg)}.fi-cr.fis{background-image:url(../flags/1x1/cr.svg)}.fi-cu{background-image:url(../flags/4x3/cu.svg)}.fi-cu.fis{background-image:url(../flags/1x1/cu.svg)}.fi-cv{background-image:url(../flags/4x3/cv.svg)}.fi-cv.fis{background-image:url(../flags/1x1/cv.svg)}.fi-cw{background-image:url(../flags/4x3/cw.svg)}.fi-cw.fis{background-image:url(../flags/1x1/cw.svg)}.fi-cx{background-image:url(../flags/4x3/cx.svg)}.fi-cx.fis{background-image:url(../flags/1x1/cx.svg)}.fi-cy{background-image:url(../flags/4x3/cy.svg)}.fi-cy.fis{background-image:url(../flags/1x1/cy.svg)}.fi-cz{background-image:url(../flags/4x3/cz.svg)}.fi-cz.fis{background-image:url(../flags/1x1/cz.svg)}.fi-de{background-image:url(../flags/4x3/de.svg)}.fi-de.fis{background-image:url(../flags/1x1/de.svg)}.fi-dj{background-image:url(../flags/4x3/dj.svg)}.fi-dj.fis{background-image:url(../flags/1x1/dj.svg)}.fi-dk{background-image:url(../flags/4x3/dk.svg)}.fi-dk.fis{background-image:url(../flags/1x1/dk.svg)}.fi-dm{background-image:url(../flags/4x3/dm.svg)}.fi-dm.fis{background-image:url(../flags/1x1/dm.svg)}.fi-do{background-image:url(../flags/4x3/do.svg)}.fi-do.fis{background-image:url(../flags/1x1/do.svg)}.fi-dz{background-image:url(../flags/4x3/dz.svg)}.fi-dz.fis{background-image:url(../flags/1x1/dz.svg)}.fi-ec{background-image:url(../flags/4x3/ec.svg)}.fi-ec.fis{background-image:url(../flags/1x1/ec.svg)}.fi-ee{background-image:url(../flags/4x3/ee.svg)}.fi-ee.fis{background-image:url(../flags/1x1/ee.svg)}.fi-eg{background-image:url(../flags/4x3/eg.svg)}.fi-eg.fis{background-image:url(../flags/1x1/eg.svg)}.fi-eh{background-image:url(../flags/4x3/eh.svg)}.fi-eh.fis{background-image:url(../flags/1x1/eh.svg)}.fi-er{background-image:url(../flags/4x3/er.svg)}.fi-er.fis{background-image:url(../flags/1x1/er.svg)}.fi-es{background-image:url(../flags/4x3/es.svg)}.fi-es.fis{background-image:url(../flags/1x1/es.svg)}.fi-et{background-image:url(../flags/4x3/et.svg)}.fi-et.fis{background-image:url(../flags/1x1/et.svg)}.fi-fi{background-image:url(../flags/4x3/fi.svg)}.fi-fi.fis{background-image:url(../flags/1x1/fi.svg)}.fi-fj{background-image:url(../flags/4x3/fj.svg)}.fi-fj.fis{background-image:url(../flags/1x1/fj.svg)}.fi-fk{background-image:url(../flags/4x3/fk.svg)}.fi-fk.fis{background-image:url(../flags/1x1/fk.svg)}.fi-fm{background-image:url(../flags/4x3/fm.svg)}.fi-fm.fis{background-image:url(../flags/1x1/fm.svg)}.fi-fo{background-image:url(../flags/4x3/fo.svg)}.fi-fo.fis{background-image:url(../flags/1x1/fo.svg)}.fi-fr{background-image:url(../flags/4x3/fr.svg)}.fi-fr.fis{background-image:url(../flags/1x1/fr.svg)}.fi-ga{background-image:url(../flags/4x3/ga.svg)}.fi-ga.fis{background-image:url(../flags/1x1/ga.svg)}.fi-gb{background-image:url(../flags/4x3/gb.svg)}.fi-gb.fis{background-image:url(../flags/1x1/gb.svg)}.fi-gd{background-image:url(../flags/4x3/gd.svg)}.fi-gd.fis{background-image:url(../flags/1x1/gd.svg)}.fi-ge{background-image:url(../flags/4x3/ge.svg)}.fi-ge.fis{background-image:url(../flags/1x1/ge.svg)}.fi-gf{background-image:url(../flags/4x3/gf.svg)}.fi-gf.fis{background-image:url(../flags/1x1/gf.svg)}.fi-gg{background-image:url(../flags/4x3/gg.svg)}.fi-gg.fis{background-image:url(../flags/1x1/gg.svg)}.fi-gh{background-image:url(../flags/4x3/gh.svg)}.fi-gh.fis{background-image:url(../flags/1x1/gh.svg)}.fi-gi{background-image:url(../flags/4x3/gi.svg)}.fi-gi.fis{background-image:url(../flags/1x1/gi.svg)}.fi-gl{background-image:url(../flags/4x3/gl.svg)}.fi-gl.fis{background-image:url(../flags/1x1/gl.svg)}.fi-gm{background-image:url(../flags/4x3/gm.svg)}.fi-gm.fis{background-image:url(../flags/1x1/gm.svg)}.fi-gn{background-image:url(../flags/4x3/gn.svg)}.fi-gn.fis{background-image:url(../flags/1x1/gn.svg)}.fi-gp{background-image:url(../flags/4x3/gp.svg)}.fi-gp.fis{background-image:url(../flags/1x1/gp.svg)}.fi-gq{background-image:url(../flags/4x3/gq.svg)}.fi-gq.fis{background-image:url(../flags/1x1/gq.svg)}.fi-gr{background-image:url(../flags/4x3/gr.svg)}.fi-gr.fis{background-image:url(../flags/1x1/gr.svg)}.fi-gs{background-image:url(../flags/4x3/gs.svg)}.fi-gs.fis{background-image:url(../flags/1x1/gs.svg)}.fi-gt{background-image:url(../flags/4x3/gt.svg)}.fi-gt.fis{background-image:url(../flags/1x1/gt.svg)}.fi-gu{background-image:url(../flags/4x3/gu.svg)}.fi-gu.fis{background-image:url(../flags/1x1/gu.svg)}.fi-gw{background-image:url(../flags/4x3/gw.svg)}.fi-gw.fis{background-image:url(../flags/1x1/gw.svg)}.fi-gy{background-image:url(../flags/4x3/gy.svg)}.fi-gy.fis{background-image:url(../flags/1x1/gy.svg)}.fi-hk{background-image:url(../flags/4x3/hk.svg)}.fi-hk.fis{background-image:url(../flags/1x1/hk.svg)}.fi-hm{background-image:url(../flags/4x3/hm.svg)}.fi-hm.fis{background-image:url(../flags/1x1/hm.svg)}.fi-hn{background-image:url(../flags/4x3/hn.svg)}.fi-hn.fis{background-image:url(../flags/1x1/hn.svg)}.fi-hr{background-image:url(../flags/4x3/hr.svg)}.fi-hr.fis{background-image:url(../flags/1x1/hr.svg)}.fi-ht{background-image:url(../flags/4x3/ht.svg)}.fi-ht.fis{background-image:url(../flags/1x1/ht.svg)}.fi-hu{background-image:url(../flags/4x3/hu.svg)}.fi-hu.fis{background-image:url(../flags/1x1/hu.svg)}.fi-id{background-image:url(../flags/4x3/id.svg)}.fi-id.fis{background-image:url(../flags/1x1/id.svg)}.fi-ie{background-image:url(../flags/4x3/ie.svg)}.fi-ie.fis{background-image:url(../flags/1x1/ie.svg)}.fi-il{background-image:url(../flags/4x3/il.svg)}.fi-il.fis{background-image:url(../flags/1x1/il.svg)}.fi-im{background-image:url(../flags/4x3/im.svg)}.fi-im.fis{background-image:url(../flags/1x1/im.svg)}.fi-in{background-image:url(../flags/4x3/in.svg)}.fi-in.fis{background-image:url(../flags/1x1/in.svg)}.fi-io{background-image:url(../flags/4x3/io.svg)}.fi-io.fis{background-image:url(../flags/1x1/io.svg)}.fi-iq{background-image:url(../flags/4x3/iq.svg)}.fi-iq.fis{background-image:url(../flags/1x1/iq.svg)}.fi-ir{background-image:url(../flags/4x3/ir.svg)}.fi-ir.fis{background-image:url(../flags/1x1/ir.svg)}.fi-is{background-image:url(../flags/4x3/is.svg)}.fi-is.fis{background-image:url(../flags/1x1/is.svg)}.fi-it{background-image:url(../flags/4x3/it.svg)}.fi-it.fis{background-image:url(../flags/1x1/it.svg)}.fi-je{background-image:url(../flags/4x3/je.svg)}.fi-je.fis{background-image:url(../flags/1x1/je.svg)}.fi-jm{background-image:url(../flags/4x3/jm.svg)}.fi-jm.fis{background-image:url(../flags/1x1/jm.svg)}.fi-jo{background-image:url(../flags/4x3/jo.svg)}.fi-jo.fis{background-image:url(../flags/1x1/jo.svg)}.fi-jp{background-image:url(../flags/4x3/jp.svg)}.fi-jp.fis{background-image:url(../flags/1x1/jp.svg)}.fi-ke{background-image:url(../flags/4x3/ke.svg)}.fi-ke.fis{background-image:url(../flags/1x1/ke.svg)}.fi-kg{background-image:url(../flags/4x3/kg.svg)}.fi-kg.fis{background-image:url(../flags/1x1/kg.svg)}.fi-kh{background-image:url(../flags/4x3/kh.svg)}.fi-kh.fis{background-image:url(../flags/1x1/kh.svg)}.fi-ki{background-image:url(../flags/4x3/ki.svg)}.fi-ki.fis{background-image:url(../flags/1x1/ki.svg)}.fi-km{background-image:url(../flags/4x3/km.svg)}.fi-km.fis{background-image:url(../flags/1x1/km.svg)}.fi-kn{background-image:url(../flags/4x3/kn.svg)}.fi-kn.fis{background-image:url(../flags/1x1/kn.svg)}.fi-kp{background-image:url(../flags/4x3/kp.svg)}.fi-kp.fis{background-image:url(../flags/1x1/kp.svg)}.fi-kr{background-image:url(../flags/4x3/kr.svg)}.fi-kr.fis{background-image:url(../flags/1x1/kr.svg)}.fi-kw{background-image:url(../flags/4x3/kw.svg)}.fi-kw.fis{background-image:url(../flags/1x1/kw.svg)}.fi-ky{background-image:url(../flags/4x3/ky.svg)}.fi-ky.fis{background-image:url(../flags/1x1/ky.svg)}.fi-kz{background-image:url(../flags/4x3/kz.svg)}.fi-kz.fis{background-image:url(../flags/1x1/kz.svg)}.fi-la{background-image:url(../flags/4x3/la.svg)}.fi-la.fis{background-image:url(../flags/1x1/la.svg)}.fi-lb{background-image:url(../flags/4x3/lb.svg)}.fi-lb.fis{background-image:url(../flags/1x1/lb.svg)}.fi-lc{background-image:url(../flags/4x3/lc.svg)}.fi-lc.fis{background-image:url(../flags/1x1/lc.svg)}.fi-li{background-image:url(../flags/4x3/li.svg)}.fi-li.fis{background-image:url(../flags/1x1/li.svg)}.fi-lk{background-image:url(../flags/4x3/lk.svg)}.fi-lk.fis{background-image:url(../flags/1x1/lk.svg)}.fi-lr{background-image:url(../flags/4x3/lr.svg)}.fi-lr.fis{background-image:url(../flags/1x1/lr.svg)}.fi-ls{background-image:url(../flags/4x3/ls.svg)}.fi-ls.fis{background-image:url(../flags/1x1/ls.svg)}.fi-lt{background-image:url(../flags/4x3/lt.svg)}.fi-lt.fis{background-image:url(../flags/1x1/lt.svg)}.fi-lu{background-image:url(../flags/4x3/lu.svg)}.fi-lu.fis{background-image:url(../flags/1x1/lu.svg)}.fi-lv{background-image:url(../flags/4x3/lv.svg)}.fi-lv.fis{background-image:url(../flags/1x1/lv.svg)}.fi-ly{background-image:url(../flags/4x3/ly.svg)}.fi-ly.fis{background-image:url(../flags/1x1/ly.svg)}.fi-ma{background-image:url(../flags/4x3/ma.svg)}.fi-ma.fis{background-image:url(../flags/1x1/ma.svg)}.fi-mc{background-image:url(../flags/4x3/mc.svg)}.fi-mc.fis{background-image:url(../flags/1x1/mc.svg)}.fi-md{background-image:url(../flags/4x3/md.svg)}.fi-md.fis{background-image:url(../flags/1x1/md.svg)}.fi-me{background-image:url(../flags/4x3/me.svg)}.fi-me.fis{background-image:url(../flags/1x1/me.svg)}.fi-mf{background-image:url(../flags/4x3/mf.svg)}.fi-mf.fis{background-image:url(../flags/1x1/mf.svg)}.fi-mg{background-image:url(../flags/4x3/mg.svg)}.fi-mg.fis{background-image:url(../flags/1x1/mg.svg)}.fi-mh{background-image:url(../flags/4x3/mh.svg)}.fi-mh.fis{background-image:url(../flags/1x1/mh.svg)}.fi-mk{background-image:url(../flags/4x3/mk.svg)}.fi-mk.fis{background-image:url(../flags/1x1/mk.svg)}.fi-ml{background-image:url(../flags/4x3/ml.svg)}.fi-ml.fis{background-image:url(../flags/1x1/ml.svg)}.fi-mm{background-image:url(../flags/4x3/mm.svg)}.fi-mm.fis{background-image:url(../flags/1x1/mm.svg)}.fi-mn{background-image:url(../flags/4x3/mn.svg)}.fi-mn.fis{background-image:url(../flags/1x1/mn.svg)}.fi-mo{background-image:url(../flags/4x3/mo.svg)}.fi-mo.fis{background-image:url(../flags/1x1/mo.svg)}.fi-mp{background-image:url(../flags/4x3/mp.svg)}.fi-mp.fis{background-image:url(../flags/1x1/mp.svg)}.fi-mq{background-image:url(../flags/4x3/mq.svg)}.fi-mq.fis{background-image:url(../flags/1x1/mq.svg)}.fi-mr{background-image:url(../flags/4x3/mr.svg)}.fi-mr.fis{background-image:url(../flags/1x1/mr.svg)}.fi-ms{background-image:url(../flags/4x3/ms.svg)}.fi-ms.fis{background-image:url(../flags/1x1/ms.svg)}.fi-mt{background-image:url(../flags/4x3/mt.svg)}.fi-mt.fis{background-image:url(../flags/1x1/mt.svg)}.fi-mu{background-image:url(../flags/4x3/mu.svg)}.fi-mu.fis{background-image:url(../flags/1x1/mu.svg)}.fi-mv{background-image:url(../flags/4x3/mv.svg)}.fi-mv.fis{background-image:url(../flags/1x1/mv.svg)}.fi-mw{background-image:url(../flags/4x3/mw.svg)}.fi-mw.fis{background-image:url(../flags/1x1/mw.svg)}.fi-mx{background-image:url(../flags/4x3/mx.svg)}.fi-mx.fis{background-image:url(../flags/1x1/mx.svg)}.fi-my{background-image:url(../flags/4x3/my.svg)}.fi-my.fis{background-image:url(../flags/1x1/my.svg)}.fi-mz{background-image:url(../flags/4x3/mz.svg)}.fi-mz.fis{background-image:url(../flags/1x1/mz.svg)}.fi-na{background-image:url(../flags/4x3/na.svg)}.fi-na.fis{background-image:url(../flags/1x1/na.svg)}.fi-nc{background-image:url(../flags/4x3/nc.svg)}.fi-nc.fis{background-image:url(../flags/1x1/nc.svg)}.fi-ne{background-image:url(../flags/4x3/ne.svg)}.fi-ne.fis{background-image:url(../flags/1x1/ne.svg)}.fi-nf{background-image:url(../flags/4x3/nf.svg)}.fi-nf.fis{background-image:url(../flags/1x1/nf.svg)}.fi-ng{background-image:url(../flags/4x3/ng.svg)}.fi-ng.fis{background-image:url(../flags/1x1/ng.svg)}.fi-ni{background-image:url(../flags/4x3/ni.svg)}.fi-ni.fis{background-image:url(../flags/1x1/ni.svg)}.fi-nl{background-image:url(../flags/4x3/nl.svg)}.fi-nl.fis{background-image:url(../flags/1x1/nl.svg)}.fi-no{background-image:url(../flags/4x3/no.svg)}.fi-no.fis{background-image:url(../flags/1x1/no.svg)}.fi-np{background-image:url(../flags/4x3/np.svg)}.fi-np.fis{background-image:url(../flags/1x1/np.svg)}.fi-nr{background-image:url(../flags/4x3/nr.svg)}.fi-nr.fis{background-image:url(../flags/1x1/nr.svg)}.fi-nu{background-image:url(../flags/4x3/nu.svg)}.fi-nu.fis{background-image:url(../flags/1x1/nu.svg)}.fi-nz{background-image:url(../flags/4x3/nz.svg)}.fi-nz.fis{background-image:url(../flags/1x1/nz.svg)}.fi-om{background-image:url(../flags/4x3/om.svg)}.fi-om.fis{background-image:url(../flags/1x1/om.svg)}.fi-pa{background-image:url(../flags/4x3/pa.svg)}.fi-pa.fis{background-image:url(../flags/1x1/pa.svg)}.fi-pe{background-image:url(../flags/4x3/pe.svg)}.fi-pe.fis{background-image:url(../flags/1x1/pe.svg)}.fi-pf{background-image:url(../flags/4x3/pf.svg)}.fi-pf.fis{background-image:url(../flags/1x1/pf.svg)}.fi-pg{background-image:url(../flags/4x3/pg.svg)}.fi-pg.fis{background-image:url(../flags/1x1/pg.svg)}.fi-ph{background-image:url(../flags/4x3/ph.svg)}.fi-ph.fis{background-image:url(../flags/1x1/ph.svg)}.fi-pk{background-image:url(../flags/4x3/pk.svg)}.fi-pk.fis{background-image:url(../flags/1x1/pk.svg)}.fi-pl{background-image:url(../flags/4x3/pl.svg)}.fi-pl.fis{background-image:url(../flags/1x1/pl.svg)}.fi-pm{background-image:url(../flags/4x3/pm.svg)}.fi-pm.fis{background-image:url(../flags/1x1/pm.svg)}.fi-pn{background-image:url(../flags/4x3/pn.svg)}.fi-pn.fis{background-image:url(../flags/1x1/pn.svg)}.fi-pr{background-image:url(../flags/4x3/pr.svg)}.fi-pr.fis{background-image:url(../flags/1x1/pr.svg)}.fi-ps{background-image:url(../flags/4x3/ps.svg)}.fi-ps.fis{background-image:url(../flags/1x1/ps.svg)}.fi-pt{background-image:url(../flags/4x3/pt.svg)}.fi-pt.fis{background-image:url(../flags/1x1/pt.svg)}.fi-pw{background-image:url(../flags/4x3/pw.svg)}.fi-pw.fis{background-image:url(../flags/1x1/pw.svg)}.fi-py{background-image:url(../flags/4x3/py.svg)}.fi-py.fis{background-image:url(../flags/1x1/py.svg)}.fi-qa{background-image:url(../flags/4x3/qa.svg)}.fi-qa.fis{background-image:url(../flags/1x1/qa.svg)}.fi-re{background-image:url(../flags/4x3/re.svg)}.fi-re.fis{background-image:url(../flags/1x1/re.svg)}.fi-ro{background-image:url(../flags/4x3/ro.svg)}.fi-ro.fis{background-image:url(../flags/1x1/ro.svg)}.fi-rs{background-image:url(../flags/4x3/rs.svg)}.fi-rs.fis{background-image:url(../flags/1x1/rs.svg)}.fi-ru{background-image:url(../flags/4x3/ru.svg)}.fi-ru.fis{background-image:url(../flags/1x1/ru.svg)}.fi-rw{background-image:url(../flags/4x3/rw.svg)}.fi-rw.fis{background-image:url(../flags/1x1/rw.svg)}.fi-sa{background-image:url(../flags/4x3/sa.svg)}.fi-sa.fis{background-image:url(../flags/1x1/sa.svg)}.fi-sb{background-image:url(../flags/4x3/sb.svg)}.fi-sb.fis{background-image:url(../flags/1x1/sb.svg)}.fi-sc{background-image:url(../flags/4x3/sc.svg)}.fi-sc.fis{background-image:url(../flags/1x1/sc.svg)}.fi-sd{background-image:url(../flags/4x3/sd.svg)}.fi-sd.fis{background-image:url(../flags/1x1/sd.svg)}.fi-se{background-image:url(../flags/4x3/se.svg)}.fi-se.fis{background-image:url(../flags/1x1/se.svg)}.fi-sg{background-image:url(../flags/4x3/sg.svg)}.fi-sg.fis{background-image:url(../flags/1x1/sg.svg)}.fi-sh{background-image:url(../flags/4x3/sh.svg)}.fi-sh.fis{background-image:url(../flags/1x1/sh.svg)}.fi-si{background-image:url(../flags/4x3/si.svg)}.fi-si.fis{background-image:url(../flags/1x1/si.svg)}.fi-sj{background-image:url(../flags/4x3/sj.svg)}.fi-sj.fis{background-image:url(../flags/1x1/sj.svg)}.fi-sk{background-image:url(../flags/4x3/sk.svg)}.fi-sk.fis{background-image:url(../flags/1x1/sk.svg)}.fi-sl{background-image:url(../flags/4x3/sl.svg)}.fi-sl.fis{background-image:url(../flags/1x1/sl.svg)}.fi-sm{background-image:url(../flags/4x3/sm.svg)}.fi-sm.fis{background-image:url(../flags/1x1/sm.svg)}.fi-sn{background-image:url(../flags/4x3/sn.svg)}.fi-sn.fis{background-image:url(../flags/1x1/sn.svg)}.fi-so{background-image:url(../flags/4x3/so.svg)}.fi-so.fis{background-image:url(../flags/1x1/so.svg)}.fi-sr{background-image:url(../flags/4x3/sr.svg)}.fi-sr.fis{background-image:url(../flags/1x1/sr.svg)}.fi-ss{background-image:url(../flags/4x3/ss.svg)}.fi-ss.fis{background-image:url(../flags/1x1/ss.svg)}.fi-st{background-image:url(../flags/4x3/st.svg)}.fi-st.fis{background-image:url(../flags/1x1/st.svg)}.fi-sv{background-image:url(../flags/4x3/sv.svg)}.fi-sv.fis{background-image:url(../flags/1x1/sv.svg)}.fi-sx{background-image:url(../flags/4x3/sx.svg)}.fi-sx.fis{background-image:url(../flags/1x1/sx.svg)}.fi-sy{background-image:url(../flags/4x3/sy.svg)}.fi-sy.fis{background-image:url(../flags/1x1/sy.svg)}.fi-sz{background-image:url(../flags/4x3/sz.svg)}.fi-sz.fis{background-image:url(../flags/1x1/sz.svg)}.fi-tc{background-image:url(../flags/4x3/tc.svg)}.fi-tc.fis{background-image:url(../flags/1x1/tc.svg)}.fi-td{background-image:url(../flags/4x3/td.svg)}.fi-td.fis{background-image:url(../flags/1x1/td.svg)}.fi-tf{background-image:url(../flags/4x3/tf.svg)}.fi-tf.fis{background-image:url(../flags/1x1/tf.svg)}.fi-tg{background-image:url(../flags/4x3/tg.svg)}.fi-tg.fis{background-image:url(../flags/1x1/tg.svg)}.fi-th{background-image:url(../flags/4x3/th.svg)}.fi-th.fis{background-image:url(../flags/1x1/th.svg)}.fi-tj{background-image:url(../flags/4x3/tj.svg)}.fi-tj.fis{background-image:url(../flags/1x1/tj.svg)}.fi-tk{background-image:url(../flags/4x3/tk.svg)}.fi-tk.fis{background-image:url(../flags/1x1/tk.svg)}.fi-tl{background-image:url(../flags/4x3/tl.svg)}.fi-tl.fis{background-image:url(../flags/1x1/tl.svg)}.fi-tm{background-image:url(../flags/4x3/tm.svg)}.fi-tm.fis{background-image:url(../flags/1x1/tm.svg)}.fi-tn{background-image:url(../flags/4x3/tn.svg)}.fi-tn.fis{background-image:url(../flags/1x1/tn.svg)}.fi-to{background-image:url(../flags/4x3/to.svg)}.fi-to.fis{background-image:url(../flags/1x1/to.svg)}.fi-tr{background-image:url(../flags/4x3/tr.svg)}.fi-tr.fis{background-image:url(../flags/1x1/tr.svg)}.fi-tt{background-image:url(../flags/4x3/tt.svg)}.fi-tt.fis{background-image:url(../flags/1x1/tt.svg)}.fi-tv{background-image:url(../flags/4x3/tv.svg)}.fi-tv.fis{background-image:url(../flags/1x1/tv.svg)}.fi-tw{background-image:url(../flags/4x3/tw.svg)}.fi-tw.fis{background-image:url(../flags/1x1/tw.svg)}.fi-tz{background-image:url(../flags/4x3/tz.svg)}.fi-tz.fis{background-image:url(../flags/1x1/tz.svg)}.fi-ua{background-image:url(../flags/4x3/ua.svg)}.fi-ua.fis{background-image:url(../flags/1x1/ua.svg)}.fi-ug{background-image:url(../flags/4x3/ug.svg)}.fi-ug.fis{background-image:url(../flags/1x1/ug.svg)}.fi-um{background-image:url(../flags/4x3/um.svg)}.fi-um.fis{background-image:url(../flags/1x1/um.svg)}.fi-us{background-image:url(../flags/4x3/us.svg)}.fi-us.fis{background-image:url(../flags/1x1/us.svg)}.fi-uy{background-image:url(../flags/4x3/uy.svg)}.fi-uy.fis{background-image:url(../flags/1x1/uy.svg)}.fi-uz{background-image:url(../flags/4x3/uz.svg)}.fi-uz.fis{background-image:url(../flags/1x1/uz.svg)}.fi-va{background-image:url(../flags/4x3/va.svg)}.fi-va.fis{background-image:url(../flags/1x1/va.svg)}.fi-vc{background-image:url(../flags/4x3/vc.svg)}.fi-vc.fis{background-image:url(../flags/1x1/vc.svg)}.fi-ve{background-image:url(../flags/4x3/ve.svg)}.fi-ve.fis{background-image:url(../flags/1x1/ve.svg)}.fi-vg{background-image:url(../flags/4x3/vg.svg)}.fi-vg.fis{background-image:url(../flags/1x1/vg.svg)}.fi-vi{background-image:url(../flags/4x3/vi.svg)}.fi-vi.fis{background-image:url(../flags/1x1/vi.svg)}.fi-vn{background-image:url(../flags/4x3/vn.svg)}.fi-vn.fis{background-image:url(../flags/1x1/vn.svg)}.fi-vu{background-image:url(../flags/4x3/vu.svg)}.fi-vu.fis{background-image:url(../flags/1x1/vu.svg)}.fi-wf{background-image:url(../flags/4x3/wf.svg)}.fi-wf.fis{background-image:url(../flags/1x1/wf.svg)}.fi-ws{background-image:url(../flags/4x3/ws.svg)}.fi-ws.fis{background-image:url(../flags/1x1/ws.svg)}.fi-ye{background-image:url(../flags/4x3/ye.svg)}.fi-ye.fis{background-image:url(../flags/1x1/ye.svg)}.fi-yt{background-image:url(../flags/4x3/yt.svg)}.fi-yt.fis{background-image:url(../flags/1x1/yt.svg)}.fi-za{background-image:url(../flags/4x3/za.svg)}.fi-za.fis{background-image:url(../flags/1x1/za.svg)}.fi-zm{background-image:url(../flags/4x3/zm.svg)}.fi-zm.fis{background-image:url(../flags/1x1/zm.svg)}.fi-zw{background-image:url(../flags/4x3/zw.svg)}.fi-zw.fis{background-image:url(../flags/1x1/zw.svg)}.fi-ac{background-image:url(../flags/4x3/ac.svg)}.fi-ac.fis{background-image:url(../flags/1x1/ac.svg)}.fi-cefta{background-image:url(../flags/4x3/cefta.svg)}.fi-cefta.fis{background-image:url(../flags/1x1/cefta.svg)}.fi-cp{background-image:url(../flags/4x3/cp.svg)}.fi-cp.fis{background-image:url(../flags/1x1/cp.svg)}.fi-dg{background-image:url(../flags/4x3/dg.svg)}.fi-dg.fis{background-image:url(../flags/1x1/dg.svg)}.fi-ea{background-image:url(../flags/4x3/ea.svg)}.fi-ea.fis{background-image:url(../flags/1x1/ea.svg)}.fi-es-ct{background-image:url(../flags/4x3/es-ct.svg)}.fi-es-ct.fis{background-image:url(../flags/1x1/es-ct.svg)}.fi-es-ga{background-image:url(../flags/4x3/es-ga.svg)}.fi-es-ga.fis{background-image:url(../flags/1x1/es-ga.svg)}.fi-es-pv{background-image:url(../flags/4x3/es-pv.svg)}.fi-es-pv.fis{background-image:url(../flags/1x1/es-pv.svg)}.fi-eu{background-image:url(../flags/4x3/eu.svg)}.fi-eu.fis{background-image:url(../flags/1x1/eu.svg)}.fi-gb-eng{background-image:url(../flags/4x3/gb-eng.svg)}.fi-gb-eng.fis{background-image:url(../flags/1x1/gb-eng.svg)}.fi-gb-nir{background-image:url(../flags/4x3/gb-nir.svg)}.fi-gb-nir.fis{background-image:url(../flags/1x1/gb-nir.svg)}.fi-gb-sct{background-image:url(../flags/4x3/gb-sct.svg)}.fi-gb-sct.fis{background-image:url(../flags/1x1/gb-sct.svg)}.fi-gb-wls{background-image:url(../flags/4x3/gb-wls.svg)}.fi-gb-wls.fis{background-image:url(../flags/1x1/gb-wls.svg)}.fi-ic{background-image:url(../flags/4x3/ic.svg)}.fi-ic.fis{background-image:url(../flags/1x1/ic.svg)}.fi-ta{background-image:url(../flags/4x3/ta.svg)}.fi-ta.fis{background-image:url(../flags/1x1/ta.svg)}.fi-un{background-image:url(../flags/4x3/un.svg)}.fi-un.fis{background-image:url(../flags/1x1/un.svg)}.fi-xk{background-image:url(../flags/4x3/xk.svg)}.fi-xk.fis{background-image:url(../flags/1x1/xk.svg)} \ No newline at end of file diff --git a/src/main/resources/public/css/index.css b/src/main/resources/public/css/index.css new file mode 100644 index 0000000..a3cd777 --- /dev/null +++ b/src/main/resources/public/css/index.css @@ -0,0 +1,92 @@ + body { + color: rgba(0,0,0,.87); + font-size: 14px; + line-height: 1.4285em; + margin: 0; + padding: 0; + font-family: Lato,Helvetica Neue,Arial,Helvetica,sans-serif; +} +header { + padding: 5px; + border-bottom: 1px solid rgba(34,36,38,.15); + box-shadow: inset 0 2px 25px 0 rgba(34,36,38,.05); +} +.container { + text-align: center; + max-width: 1024px; + margin: auto auto; + padding-top: 50px; +} +.flag { + background-size: 2em 2em; + background-repeat: no-repeat; + text-align: center; + background-position: center; + padding-top: 3em; + font-size: 12px; + font-weight: bold; + display: inline-block; + margin: 5px; +} +aside { + align-items: stretch; + -webkit-animation: none; + animation: none; + background: #f9fafb; + border-color: rgba(34,36,38,.15); + box-shadow: inset 0 2px 25px 0 rgba(34,36,38,.05); + display: flex; + flex-direction: column; + justify-content: center; + max-width: none; + min-height: 18rem; + overflow: visible; + padding: 1em; + text-align: center; +} +select { + height: 40px; + width: 150px; + padding: 10px; + background: white; + border: 1px solid #eee; + border-radius: 4px; + padding-left: 20px; +} +input { + height: 36px; + background: white; + border: 1px solid #eee; + border-radius: 4px; + padding-left: 20px; +} +button { + height: 2.5em; + background: #eee; + border: 1px solid silver; + border-radius: 4px; + width: 200px; +} +p { + margin-top:40px; + margin-bottom: 25px; +} +ul { + margin:0; + padding:0; +} + +.validation-result { + border-radius: 3px; + padding: 5px 10px; + display: inline-block; +} +.validation-result.valid { + border: 1px solid #21ba45; + color: #21ba45; +} +.validation-result.invalid { + border: 1px solid #db2828; + color: #db2828; +} + diff --git a/src/main/resources/public/flags/1x1/ac.svg b/src/main/resources/public/flags/1x1/ac.svg new file mode 100644 index 0000000..3840caf --- /dev/null +++ b/src/main/resources/public/flags/1x1/ac.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ad.svg b/src/main/resources/public/flags/1x1/ad.svg new file mode 100644 index 0000000..f1d7fde --- /dev/null +++ b/src/main/resources/public/flags/1x1/ad.svg @@ -0,0 +1,148 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ae.svg b/src/main/resources/public/flags/1x1/ae.svg new file mode 100644 index 0000000..058c16e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/af.svg b/src/main/resources/public/flags/1x1/af.svg new file mode 100644 index 0000000..04d064a --- /dev/null +++ b/src/main/resources/public/flags/1x1/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ag.svg b/src/main/resources/public/flags/1x1/ag.svg new file mode 100644 index 0000000..59d73ff --- /dev/null +++ b/src/main/resources/public/flags/1x1/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ai.svg b/src/main/resources/public/flags/1x1/ai.svg new file mode 100644 index 0000000..a82f26e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ai.svg @@ -0,0 +1,758 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/al.svg b/src/main/resources/public/flags/1x1/al.svg new file mode 100644 index 0000000..d4c6d5d --- /dev/null +++ b/src/main/resources/public/flags/1x1/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/am.svg b/src/main/resources/public/flags/1x1/am.svg new file mode 100644 index 0000000..a188adf --- /dev/null +++ b/src/main/resources/public/flags/1x1/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ao.svg b/src/main/resources/public/flags/1x1/ao.svg new file mode 100644 index 0000000..ba77036 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/aq.svg b/src/main/resources/public/flags/1x1/aq.svg new file mode 100644 index 0000000..a4d9a20 --- /dev/null +++ b/src/main/resources/public/flags/1x1/aq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ar.svg b/src/main/resources/public/flags/1x1/ar.svg new file mode 100644 index 0000000..1db3825 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ar.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/as.svg b/src/main/resources/public/flags/1x1/as.svg new file mode 100644 index 0000000..3c9c8b5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/as.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/at.svg b/src/main/resources/public/flags/1x1/at.svg new file mode 100644 index 0000000..4736319 --- /dev/null +++ b/src/main/resources/public/flags/1x1/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/au.svg b/src/main/resources/public/flags/1x1/au.svg new file mode 100644 index 0000000..d0465a2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/au.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/aw.svg b/src/main/resources/public/flags/1x1/aw.svg new file mode 100644 index 0000000..6445b66 --- /dev/null +++ b/src/main/resources/public/flags/1x1/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ax.svg b/src/main/resources/public/flags/1x1/ax.svg new file mode 100644 index 0000000..43cd591 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/az.svg b/src/main/resources/public/flags/1x1/az.svg new file mode 100644 index 0000000..eedd9e6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ba.svg b/src/main/resources/public/flags/1x1/ba.svg new file mode 100644 index 0000000..28184da --- /dev/null +++ b/src/main/resources/public/flags/1x1/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bb.svg b/src/main/resources/public/flags/1x1/bb.svg new file mode 100644 index 0000000..026bb0a --- /dev/null +++ b/src/main/resources/public/flags/1x1/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/bd.svg b/src/main/resources/public/flags/1x1/bd.svg new file mode 100644 index 0000000..86fcfba --- /dev/null +++ b/src/main/resources/public/flags/1x1/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/be.svg b/src/main/resources/public/flags/1x1/be.svg new file mode 100644 index 0000000..31b9723 --- /dev/null +++ b/src/main/resources/public/flags/1x1/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bf.svg b/src/main/resources/public/flags/1x1/bf.svg new file mode 100644 index 0000000..a5078df --- /dev/null +++ b/src/main/resources/public/flags/1x1/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bg.svg b/src/main/resources/public/flags/1x1/bg.svg new file mode 100644 index 0000000..16fe7e0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bh.svg b/src/main/resources/public/flags/1x1/bh.svg new file mode 100644 index 0000000..2d131aa --- /dev/null +++ b/src/main/resources/public/flags/1x1/bh.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/bi.svg b/src/main/resources/public/flags/1x1/bi.svg new file mode 100644 index 0000000..db5df38 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bj.svg b/src/main/resources/public/flags/1x1/bj.svg new file mode 100644 index 0000000..34c30b1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bl.svg b/src/main/resources/public/flags/1x1/bl.svg new file mode 100644 index 0000000..65550d9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bm.svg b/src/main/resources/public/flags/1x1/bm.svg new file mode 100644 index 0000000..0dca49b --- /dev/null +++ b/src/main/resources/public/flags/1x1/bm.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bn.svg b/src/main/resources/public/flags/1x1/bn.svg new file mode 100644 index 0000000..afad727 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bo.svg b/src/main/resources/public/flags/1x1/bo.svg new file mode 100644 index 0000000..5f1311a --- /dev/null +++ b/src/main/resources/public/flags/1x1/bo.svg @@ -0,0 +1,678 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bq.svg b/src/main/resources/public/flags/1x1/bq.svg new file mode 100644 index 0000000..4b9168e --- /dev/null +++ b/src/main/resources/public/flags/1x1/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/br.svg b/src/main/resources/public/flags/1x1/br.svg new file mode 100644 index 0000000..6c854ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bs.svg b/src/main/resources/public/flags/1x1/bs.svg new file mode 100644 index 0000000..6914138 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bt.svg b/src/main/resources/public/flags/1x1/bt.svg new file mode 100644 index 0000000..0a9dfeb --- /dev/null +++ b/src/main/resources/public/flags/1x1/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bv.svg b/src/main/resources/public/flags/1x1/bv.svg new file mode 100644 index 0000000..36fefad --- /dev/null +++ b/src/main/resources/public/flags/1x1/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bw.svg b/src/main/resources/public/flags/1x1/bw.svg new file mode 100644 index 0000000..d276018 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/by.svg b/src/main/resources/public/flags/1x1/by.svg new file mode 100644 index 0000000..9fd7121 --- /dev/null +++ b/src/main/resources/public/flags/1x1/by.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/bz.svg b/src/main/resources/public/flags/1x1/bz.svg new file mode 100644 index 0000000..48bd0b0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ca.svg b/src/main/resources/public/flags/1x1/ca.svg new file mode 100644 index 0000000..84cde34 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/cc.svg b/src/main/resources/public/flags/1x1/cc.svg new file mode 100644 index 0000000..d107bdc --- /dev/null +++ b/src/main/resources/public/flags/1x1/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cd.svg b/src/main/resources/public/flags/1x1/cd.svg new file mode 100644 index 0000000..4c804d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cd.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cefta.svg b/src/main/resources/public/flags/1x1/cefta.svg new file mode 100644 index 0000000..1fcc0aa --- /dev/null +++ b/src/main/resources/public/flags/1x1/cefta.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cf.svg b/src/main/resources/public/flags/1x1/cf.svg new file mode 100644 index 0000000..667fc93 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cg.svg b/src/main/resources/public/flags/1x1/cg.svg new file mode 100644 index 0000000..df4e316 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ch.svg b/src/main/resources/public/flags/1x1/ch.svg new file mode 100644 index 0000000..52578bf --- /dev/null +++ b/src/main/resources/public/flags/1x1/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ci.svg b/src/main/resources/public/flags/1x1/ci.svg new file mode 100644 index 0000000..2abf641 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ck.svg b/src/main/resources/public/flags/1x1/ck.svg new file mode 100644 index 0000000..43a1057 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cl.svg b/src/main/resources/public/flags/1x1/cl.svg new file mode 100644 index 0000000..7cc494d --- /dev/null +++ b/src/main/resources/public/flags/1x1/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cm.svg b/src/main/resources/public/flags/1x1/cm.svg new file mode 100644 index 0000000..9233b92 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cn.svg b/src/main/resources/public/flags/1x1/cn.svg new file mode 100644 index 0000000..7f27dae --- /dev/null +++ b/src/main/resources/public/flags/1x1/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/co.svg b/src/main/resources/public/flags/1x1/co.svg new file mode 100644 index 0000000..5804bfe --- /dev/null +++ b/src/main/resources/public/flags/1x1/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cp.svg b/src/main/resources/public/flags/1x1/cp.svg new file mode 100644 index 0000000..c3157fb --- /dev/null +++ b/src/main/resources/public/flags/1x1/cp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cr.svg b/src/main/resources/public/flags/1x1/cr.svg new file mode 100644 index 0000000..4e7889e --- /dev/null +++ b/src/main/resources/public/flags/1x1/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cu.svg b/src/main/resources/public/flags/1x1/cu.svg new file mode 100644 index 0000000..f1f90d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cv.svg b/src/main/resources/public/flags/1x1/cv.svg new file mode 100644 index 0000000..cb8b597 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cw.svg b/src/main/resources/public/flags/1x1/cw.svg new file mode 100644 index 0000000..88fddec --- /dev/null +++ b/src/main/resources/public/flags/1x1/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cx.svg b/src/main/resources/public/flags/1x1/cx.svg new file mode 100644 index 0000000..44d3757 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/cy.svg b/src/main/resources/public/flags/1x1/cy.svg new file mode 100644 index 0000000..58d87e7 --- /dev/null +++ b/src/main/resources/public/flags/1x1/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/cz.svg b/src/main/resources/public/flags/1x1/cz.svg new file mode 100644 index 0000000..dcd0a6b --- /dev/null +++ b/src/main/resources/public/flags/1x1/cz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/de.svg b/src/main/resources/public/flags/1x1/de.svg new file mode 100644 index 0000000..ccb5ff1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/dg.svg b/src/main/resources/public/flags/1x1/dg.svg new file mode 100644 index 0000000..7ab4111 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dg.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dj.svg b/src/main/resources/public/flags/1x1/dj.svg new file mode 100644 index 0000000..9530b06 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dk.svg b/src/main/resources/public/flags/1x1/dk.svg new file mode 100644 index 0000000..5aaaa19 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/dm.svg b/src/main/resources/public/flags/1x1/dm.svg new file mode 100644 index 0000000..0bcf5b2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/do.svg b/src/main/resources/public/flags/1x1/do.svg new file mode 100644 index 0000000..76dd8e4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/do.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/dz.svg b/src/main/resources/public/flags/1x1/dz.svg new file mode 100644 index 0000000..8abcd25 --- /dev/null +++ b/src/main/resources/public/flags/1x1/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ea.svg b/src/main/resources/public/flags/1x1/ea.svg new file mode 100644 index 0000000..bab6a69 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ea.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ec.svg b/src/main/resources/public/flags/1x1/ec.svg new file mode 100644 index 0000000..06495b9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ee.svg b/src/main/resources/public/flags/1x1/ee.svg new file mode 100644 index 0000000..a921ce4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eg.svg b/src/main/resources/public/flags/1x1/eg.svg new file mode 100644 index 0000000..900abc6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eh.svg b/src/main/resources/public/flags/1x1/eh.svg new file mode 100644 index 0000000..0f9d3c2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eh.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/er.svg b/src/main/resources/public/flags/1x1/er.svg new file mode 100644 index 0000000..8f04e39 --- /dev/null +++ b/src/main/resources/public/flags/1x1/er.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/es-ct.svg b/src/main/resources/public/flags/1x1/es-ct.svg new file mode 100644 index 0000000..a06a2e3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/es-ga.svg b/src/main/resources/public/flags/1x1/es-ga.svg new file mode 100644 index 0000000..bb1abbb --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-ga.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/es-pv.svg b/src/main/resources/public/flags/1x1/es-pv.svg new file mode 100644 index 0000000..4a83268 --- /dev/null +++ b/src/main/resources/public/flags/1x1/es-pv.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/es.svg b/src/main/resources/public/flags/1x1/es.svg new file mode 100644 index 0000000..f9c9b4b --- /dev/null +++ b/src/main/resources/public/flags/1x1/es.svg @@ -0,0 +1,547 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/et.svg b/src/main/resources/public/flags/1x1/et.svg new file mode 100644 index 0000000..0c62956 --- /dev/null +++ b/src/main/resources/public/flags/1x1/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/eu.svg b/src/main/resources/public/flags/1x1/eu.svg new file mode 100644 index 0000000..f992981 --- /dev/null +++ b/src/main/resources/public/flags/1x1/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fi.svg b/src/main/resources/public/flags/1x1/fi.svg new file mode 100644 index 0000000..aba2ef3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/fj.svg b/src/main/resources/public/flags/1x1/fj.svg new file mode 100644 index 0000000..e2ca5b4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fj.svg @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fk.svg b/src/main/resources/public/flags/1x1/fk.svg new file mode 100644 index 0000000..1156f36 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fk.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fm.svg b/src/main/resources/public/flags/1x1/fm.svg new file mode 100644 index 0000000..4077f47 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fo.svg b/src/main/resources/public/flags/1x1/fo.svg new file mode 100644 index 0000000..2a2b065 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/fr.svg b/src/main/resources/public/flags/1x1/fr.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/fr.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ga.svg b/src/main/resources/public/flags/1x1/ga.svg new file mode 100644 index 0000000..113a5b5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-eng.svg b/src/main/resources/public/flags/1x1/gb-eng.svg new file mode 100644 index 0000000..ee48fed --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-nir.svg b/src/main/resources/public/flags/1x1/gb-nir.svg new file mode 100644 index 0000000..c4d2a85 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-nir.svg @@ -0,0 +1,131 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb-sct.svg b/src/main/resources/public/flags/1x1/gb-sct.svg new file mode 100644 index 0000000..44d38cc --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/gb-wls.svg b/src/main/resources/public/flags/1x1/gb-wls.svg new file mode 100644 index 0000000..3126882 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gb.svg b/src/main/resources/public/flags/1x1/gb.svg new file mode 100644 index 0000000..b261273 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gd.svg b/src/main/resources/public/flags/1x1/gd.svg new file mode 100644 index 0000000..97d87f4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ge.svg b/src/main/resources/public/flags/1x1/ge.svg new file mode 100644 index 0000000..a1c3808 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/gf.svg b/src/main/resources/public/flags/1x1/gf.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/gf.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/gg.svg b/src/main/resources/public/flags/1x1/gg.svg new file mode 100644 index 0000000..23aca9e --- /dev/null +++ b/src/main/resources/public/flags/1x1/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gh.svg b/src/main/resources/public/flags/1x1/gh.svg new file mode 100644 index 0000000..84f4bab --- /dev/null +++ b/src/main/resources/public/flags/1x1/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/gi.svg b/src/main/resources/public/flags/1x1/gi.svg new file mode 100644 index 0000000..ded225d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gl.svg b/src/main/resources/public/flags/1x1/gl.svg new file mode 100644 index 0000000..eaa817b --- /dev/null +++ b/src/main/resources/public/flags/1x1/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/gm.svg b/src/main/resources/public/flags/1x1/gm.svg new file mode 100644 index 0000000..2a8f724 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gm.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gn.svg b/src/main/resources/public/flags/1x1/gn.svg new file mode 100644 index 0000000..ae81f9d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gp.svg b/src/main/resources/public/flags/1x1/gp.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/gp.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/gq.svg b/src/main/resources/public/flags/1x1/gq.svg new file mode 100644 index 0000000..3fb086e --- /dev/null +++ b/src/main/resources/public/flags/1x1/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gr.svg b/src/main/resources/public/flags/1x1/gr.svg new file mode 100644 index 0000000..a268830 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gr.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gs.svg b/src/main/resources/public/flags/1x1/gs.svg new file mode 100644 index 0000000..791bf01 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gs.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gt.svg b/src/main/resources/public/flags/1x1/gt.svg new file mode 100644 index 0000000..790f9a1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gt.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gu.svg b/src/main/resources/public/flags/1x1/gu.svg new file mode 100644 index 0000000..316edc8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gu.svg @@ -0,0 +1,23 @@ + + + + + + + + + + G + U + A + M + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gw.svg b/src/main/resources/public/flags/1x1/gw.svg new file mode 100644 index 0000000..cae163d --- /dev/null +++ b/src/main/resources/public/flags/1x1/gw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/gy.svg b/src/main/resources/public/flags/1x1/gy.svg new file mode 100644 index 0000000..8188c44 --- /dev/null +++ b/src/main/resources/public/flags/1x1/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hk.svg b/src/main/resources/public/flags/1x1/hk.svg new file mode 100644 index 0000000..bf81198 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hk.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/hm.svg b/src/main/resources/public/flags/1x1/hm.svg new file mode 100644 index 0000000..51e236a --- /dev/null +++ b/src/main/resources/public/flags/1x1/hm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hn.svg b/src/main/resources/public/flags/1x1/hn.svg new file mode 100644 index 0000000..432ead6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hr.svg b/src/main/resources/public/flags/1x1/hr.svg new file mode 100644 index 0000000..8e98781 --- /dev/null +++ b/src/main/resources/public/flags/1x1/hr.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ht.svg b/src/main/resources/public/flags/1x1/ht.svg new file mode 100644 index 0000000..965dd03 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/hu.svg b/src/main/resources/public/flags/1x1/hu.svg new file mode 100644 index 0000000..088242d --- /dev/null +++ b/src/main/resources/public/flags/1x1/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ic.svg b/src/main/resources/public/flags/1x1/ic.svg new file mode 100644 index 0000000..096603d --- /dev/null +++ b/src/main/resources/public/flags/1x1/ic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/id.svg b/src/main/resources/public/flags/1x1/id.svg new file mode 100644 index 0000000..df08018 --- /dev/null +++ b/src/main/resources/public/flags/1x1/id.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/ie.svg b/src/main/resources/public/flags/1x1/ie.svg new file mode 100644 index 0000000..e13de22 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/il.svg b/src/main/resources/public/flags/1x1/il.svg new file mode 100644 index 0000000..9c19148 --- /dev/null +++ b/src/main/resources/public/flags/1x1/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/im.svg b/src/main/resources/public/flags/1x1/im.svg new file mode 100644 index 0000000..af18aa4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/in.svg b/src/main/resources/public/flags/1x1/in.svg new file mode 100644 index 0000000..7b79eeb --- /dev/null +++ b/src/main/resources/public/flags/1x1/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/io.svg b/src/main/resources/public/flags/1x1/io.svg new file mode 100644 index 0000000..8087c89 --- /dev/null +++ b/src/main/resources/public/flags/1x1/io.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/iq.svg b/src/main/resources/public/flags/1x1/iq.svg new file mode 100644 index 0000000..f009ae2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ir.svg b/src/main/resources/public/flags/1x1/ir.svg new file mode 100644 index 0000000..45f6eec --- /dev/null +++ b/src/main/resources/public/flags/1x1/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/is.svg b/src/main/resources/public/flags/1x1/is.svg new file mode 100644 index 0000000..7b79052 --- /dev/null +++ b/src/main/resources/public/flags/1x1/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/it.svg b/src/main/resources/public/flags/1x1/it.svg new file mode 100644 index 0000000..b9596d0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/je.svg b/src/main/resources/public/flags/1x1/je.svg new file mode 100644 index 0000000..de73a00 --- /dev/null +++ b/src/main/resources/public/flags/1x1/je.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jm.svg b/src/main/resources/public/flags/1x1/jm.svg new file mode 100644 index 0000000..e2c0e54 --- /dev/null +++ b/src/main/resources/public/flags/1x1/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jo.svg b/src/main/resources/public/flags/1x1/jo.svg new file mode 100644 index 0000000..43888cb --- /dev/null +++ b/src/main/resources/public/flags/1x1/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/jp.svg b/src/main/resources/public/flags/1x1/jp.svg new file mode 100644 index 0000000..c3aeaa6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ke.svg b/src/main/resources/public/flags/1x1/ke.svg new file mode 100644 index 0000000..ad76b35 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kg.svg b/src/main/resources/public/flags/1x1/kg.svg new file mode 100644 index 0000000..ab37474 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kh.svg b/src/main/resources/public/flags/1x1/kh.svg new file mode 100644 index 0000000..adda387 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ki.svg b/src/main/resources/public/flags/1x1/ki.svg new file mode 100644 index 0000000..58586c0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/km.svg b/src/main/resources/public/flags/1x1/km.svg new file mode 100644 index 0000000..3831b1d --- /dev/null +++ b/src/main/resources/public/flags/1x1/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kn.svg b/src/main/resources/public/flags/1x1/kn.svg new file mode 100644 index 0000000..24dec7e --- /dev/null +++ b/src/main/resources/public/flags/1x1/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kp.svg b/src/main/resources/public/flags/1x1/kp.svg new file mode 100644 index 0000000..16f7ac2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kr.svg b/src/main/resources/public/flags/1x1/kr.svg new file mode 100644 index 0000000..ca75181 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kr.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kw.svg b/src/main/resources/public/flags/1x1/kw.svg new file mode 100644 index 0000000..f9d34d0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ky.svg b/src/main/resources/public/flags/1x1/ky.svg new file mode 100644 index 0000000..4c99478 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ky.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/kz.svg b/src/main/resources/public/flags/1x1/kz.svg new file mode 100644 index 0000000..40db501 --- /dev/null +++ b/src/main/resources/public/flags/1x1/kz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/la.svg b/src/main/resources/public/flags/1x1/la.svg new file mode 100644 index 0000000..7fcf263 --- /dev/null +++ b/src/main/resources/public/flags/1x1/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lb.svg b/src/main/resources/public/flags/1x1/lb.svg new file mode 100644 index 0000000..6cbf329 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lc.svg b/src/main/resources/public/flags/1x1/lc.svg new file mode 100644 index 0000000..d39c7f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/li.svg b/src/main/resources/public/flags/1x1/li.svg new file mode 100644 index 0000000..260c8f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lk.svg b/src/main/resources/public/flags/1x1/lk.svg new file mode 100644 index 0000000..3fc4f4d --- /dev/null +++ b/src/main/resources/public/flags/1x1/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lr.svg b/src/main/resources/public/flags/1x1/lr.svg new file mode 100644 index 0000000..03ebae5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ls.svg b/src/main/resources/public/flags/1x1/ls.svg new file mode 100644 index 0000000..aa8810b --- /dev/null +++ b/src/main/resources/public/flags/1x1/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lt.svg b/src/main/resources/public/flags/1x1/lt.svg new file mode 100644 index 0000000..52ada94 --- /dev/null +++ b/src/main/resources/public/flags/1x1/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/lu.svg b/src/main/resources/public/flags/1x1/lu.svg new file mode 100644 index 0000000..5c0d6da --- /dev/null +++ b/src/main/resources/public/flags/1x1/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/lv.svg b/src/main/resources/public/flags/1x1/lv.svg new file mode 100644 index 0000000..5af883c --- /dev/null +++ b/src/main/resources/public/flags/1x1/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ly.svg b/src/main/resources/public/flags/1x1/ly.svg new file mode 100644 index 0000000..5ff903a --- /dev/null +++ b/src/main/resources/public/flags/1x1/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ma.svg b/src/main/resources/public/flags/1x1/ma.svg new file mode 100644 index 0000000..8041667 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/mc.svg b/src/main/resources/public/flags/1x1/mc.svg new file mode 100644 index 0000000..04173a4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/md.svg b/src/main/resources/public/flags/1x1/md.svg new file mode 100644 index 0000000..8720921 --- /dev/null +++ b/src/main/resources/public/flags/1x1/md.svg @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/me.svg b/src/main/resources/public/flags/1x1/me.svg new file mode 100644 index 0000000..fbd8b86 --- /dev/null +++ b/src/main/resources/public/flags/1x1/me.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mf.svg b/src/main/resources/public/flags/1x1/mf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/mg.svg b/src/main/resources/public/flags/1x1/mg.svg new file mode 100644 index 0000000..4f901ca --- /dev/null +++ b/src/main/resources/public/flags/1x1/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mh.svg b/src/main/resources/public/flags/1x1/mh.svg new file mode 100644 index 0000000..8ff2256 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mh.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mk.svg b/src/main/resources/public/flags/1x1/mk.svg new file mode 100644 index 0000000..0ee923a --- /dev/null +++ b/src/main/resources/public/flags/1x1/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ml.svg b/src/main/resources/public/flags/1x1/ml.svg new file mode 100644 index 0000000..665d6b2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mm.svg b/src/main/resources/public/flags/1x1/mm.svg new file mode 100644 index 0000000..9b235f3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mm.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mn.svg b/src/main/resources/public/flags/1x1/mn.svg new file mode 100644 index 0000000..c9d6104 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mo.svg b/src/main/resources/public/flags/1x1/mo.svg new file mode 100644 index 0000000..f79bf12 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mp.svg b/src/main/resources/public/flags/1x1/mp.svg new file mode 100644 index 0000000..6fef8fd --- /dev/null +++ b/src/main/resources/public/flags/1x1/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mq.svg b/src/main/resources/public/flags/1x1/mq.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/mq.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/mr.svg b/src/main/resources/public/flags/1x1/mr.svg new file mode 100644 index 0000000..a98ec2a --- /dev/null +++ b/src/main/resources/public/flags/1x1/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ms.svg b/src/main/resources/public/flags/1x1/ms.svg new file mode 100644 index 0000000..ba504db --- /dev/null +++ b/src/main/resources/public/flags/1x1/ms.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mt.svg b/src/main/resources/public/flags/1x1/mt.svg new file mode 100644 index 0000000..a9f58e1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mt.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mu.svg b/src/main/resources/public/flags/1x1/mu.svg new file mode 100644 index 0000000..2afe1d3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mv.svg b/src/main/resources/public/flags/1x1/mv.svg new file mode 100644 index 0000000..c9a6c5b --- /dev/null +++ b/src/main/resources/public/flags/1x1/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/mw.svg b/src/main/resources/public/flags/1x1/mw.svg new file mode 100644 index 0000000..5de0311 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mw.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mx.svg b/src/main/resources/public/flags/1x1/mx.svg new file mode 100644 index 0000000..4b0c5d4 --- /dev/null +++ b/src/main/resources/public/flags/1x1/mx.svg @@ -0,0 +1,378 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/my.svg b/src/main/resources/public/flags/1x1/my.svg new file mode 100644 index 0000000..14f4d43 --- /dev/null +++ b/src/main/resources/public/flags/1x1/my.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/mz.svg b/src/main/resources/public/flags/1x1/mz.svg new file mode 100644 index 0000000..cceb0de --- /dev/null +++ b/src/main/resources/public/flags/1x1/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/na.svg b/src/main/resources/public/flags/1x1/na.svg new file mode 100644 index 0000000..5cb08a3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nc.svg b/src/main/resources/public/flags/1x1/nc.svg new file mode 100644 index 0000000..7063a99 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nc.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ne.svg b/src/main/resources/public/flags/1x1/ne.svg new file mode 100644 index 0000000..a96b027 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/nf.svg b/src/main/resources/public/flags/1x1/nf.svg new file mode 100644 index 0000000..e47b4cd --- /dev/null +++ b/src/main/resources/public/flags/1x1/nf.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ng.svg b/src/main/resources/public/flags/1x1/ng.svg new file mode 100644 index 0000000..62813e8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ni.svg b/src/main/resources/public/flags/1x1/ni.svg new file mode 100644 index 0000000..265a71c --- /dev/null +++ b/src/main/resources/public/flags/1x1/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nl.svg b/src/main/resources/public/flags/1x1/nl.svg new file mode 100644 index 0000000..eb0e360 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/no.svg b/src/main/resources/public/flags/1x1/no.svg new file mode 100644 index 0000000..939920d --- /dev/null +++ b/src/main/resources/public/flags/1x1/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/np.svg b/src/main/resources/public/flags/1x1/np.svg new file mode 100644 index 0000000..67af928 --- /dev/null +++ b/src/main/resources/public/flags/1x1/np.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nr.svg b/src/main/resources/public/flags/1x1/nr.svg new file mode 100644 index 0000000..d506071 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nu.svg b/src/main/resources/public/flags/1x1/nu.svg new file mode 100644 index 0000000..ce31672 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nu.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/nz.svg b/src/main/resources/public/flags/1x1/nz.svg new file mode 100644 index 0000000..e61ed29 --- /dev/null +++ b/src/main/resources/public/flags/1x1/nz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/om.svg b/src/main/resources/public/flags/1x1/om.svg new file mode 100644 index 0000000..ff624ae --- /dev/null +++ b/src/main/resources/public/flags/1x1/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pa.svg b/src/main/resources/public/flags/1x1/pa.svg new file mode 100644 index 0000000..2c53cdd --- /dev/null +++ b/src/main/resources/public/flags/1x1/pa.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pe.svg b/src/main/resources/public/flags/1x1/pe.svg new file mode 100644 index 0000000..bbb8f78 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pf.svg b/src/main/resources/public/flags/1x1/pf.svg new file mode 100644 index 0000000..2aff155 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pf.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pg.svg b/src/main/resources/public/flags/1x1/pg.svg new file mode 100644 index 0000000..63dff19 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pg.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ph.svg b/src/main/resources/public/flags/1x1/ph.svg new file mode 100644 index 0000000..fee5308 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ph.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pk.svg b/src/main/resources/public/flags/1x1/pk.svg new file mode 100644 index 0000000..7a12a49 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pl.svg b/src/main/resources/public/flags/1x1/pl.svg new file mode 100644 index 0000000..8c43577 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/pm.svg b/src/main/resources/public/flags/1x1/pm.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/pm.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/pn.svg b/src/main/resources/public/flags/1x1/pn.svg new file mode 100644 index 0000000..a546e21 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pn.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pr.svg b/src/main/resources/public/flags/1x1/pr.svg new file mode 100644 index 0000000..29cc0ed --- /dev/null +++ b/src/main/resources/public/flags/1x1/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ps.svg b/src/main/resources/public/flags/1x1/ps.svg new file mode 100644 index 0000000..a4ab807 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pt.svg b/src/main/resources/public/flags/1x1/pt.svg new file mode 100644 index 0000000..43cdb97 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/pw.svg b/src/main/resources/public/flags/1x1/pw.svg new file mode 100644 index 0000000..439a583 --- /dev/null +++ b/src/main/resources/public/flags/1x1/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/py.svg b/src/main/resources/public/flags/1x1/py.svg new file mode 100644 index 0000000..86ec718 --- /dev/null +++ b/src/main/resources/public/flags/1x1/py.svg @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/qa.svg b/src/main/resources/public/flags/1x1/qa.svg new file mode 100644 index 0000000..4edb827 --- /dev/null +++ b/src/main/resources/public/flags/1x1/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/re.svg b/src/main/resources/public/flags/1x1/re.svg new file mode 100644 index 0000000..41d87d9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/re.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ro.svg b/src/main/resources/public/flags/1x1/ro.svg new file mode 100644 index 0000000..e6cf0f6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/rs.svg b/src/main/resources/public/flags/1x1/rs.svg new file mode 100644 index 0000000..c87e41b --- /dev/null +++ b/src/main/resources/public/flags/1x1/rs.svg @@ -0,0 +1,296 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ru.svg b/src/main/resources/public/flags/1x1/ru.svg new file mode 100644 index 0000000..485c24e --- /dev/null +++ b/src/main/resources/public/flags/1x1/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/rw.svg b/src/main/resources/public/flags/1x1/rw.svg new file mode 100644 index 0000000..55c48e6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sa.svg b/src/main/resources/public/flags/1x1/sa.svg new file mode 100644 index 0000000..7e3cf8e --- /dev/null +++ b/src/main/resources/public/flags/1x1/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sb.svg b/src/main/resources/public/flags/1x1/sb.svg new file mode 100644 index 0000000..5bea33d --- /dev/null +++ b/src/main/resources/public/flags/1x1/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sc.svg b/src/main/resources/public/flags/1x1/sc.svg new file mode 100644 index 0000000..2996bac --- /dev/null +++ b/src/main/resources/public/flags/1x1/sc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sd.svg b/src/main/resources/public/flags/1x1/sd.svg new file mode 100644 index 0000000..c2de460 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/se.svg b/src/main/resources/public/flags/1x1/se.svg new file mode 100644 index 0000000..bae316d --- /dev/null +++ b/src/main/resources/public/flags/1x1/se.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/sg.svg b/src/main/resources/public/flags/1x1/sg.svg new file mode 100644 index 0000000..5c60b94 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sh.svg b/src/main/resources/public/flags/1x1/sh.svg new file mode 100644 index 0000000..4285db8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sh.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/si.svg b/src/main/resources/public/flags/1x1/si.svg new file mode 100644 index 0000000..3beab9b --- /dev/null +++ b/src/main/resources/public/flags/1x1/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sj.svg b/src/main/resources/public/flags/1x1/sj.svg new file mode 100644 index 0000000..ecb9c79 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sk.svg b/src/main/resources/public/flags/1x1/sk.svg new file mode 100644 index 0000000..3e4ff50 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sl.svg b/src/main/resources/public/flags/1x1/sl.svg new file mode 100644 index 0000000..7eda1e8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sl.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sm.svg b/src/main/resources/public/flags/1x1/sm.svg new file mode 100644 index 0000000..fec66d8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sm.svg @@ -0,0 +1,73 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sn.svg b/src/main/resources/public/flags/1x1/sn.svg new file mode 100644 index 0000000..ff9cf2e --- /dev/null +++ b/src/main/resources/public/flags/1x1/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/so.svg b/src/main/resources/public/flags/1x1/so.svg new file mode 100644 index 0000000..39cf47b --- /dev/null +++ b/src/main/resources/public/flags/1x1/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sr.svg b/src/main/resources/public/flags/1x1/sr.svg new file mode 100644 index 0000000..0ca3596 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ss.svg b/src/main/resources/public/flags/1x1/ss.svg new file mode 100644 index 0000000..e950241 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/st.svg b/src/main/resources/public/flags/1x1/st.svg new file mode 100644 index 0000000..6c834b3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sv.svg b/src/main/resources/public/flags/1x1/sv.svg new file mode 100644 index 0000000..95f1da0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sv.svg @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sx.svg b/src/main/resources/public/flags/1x1/sx.svg new file mode 100644 index 0000000..4b6ec4b --- /dev/null +++ b/src/main/resources/public/flags/1x1/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/sy.svg b/src/main/resources/public/flags/1x1/sy.svg new file mode 100644 index 0000000..b910dd8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/sz.svg b/src/main/resources/public/flags/1x1/sz.svg new file mode 100644 index 0000000..2f19ee1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/sz.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ta.svg b/src/main/resources/public/flags/1x1/ta.svg new file mode 100644 index 0000000..ce1542d --- /dev/null +++ b/src/main/resources/public/flags/1x1/ta.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tc.svg b/src/main/resources/public/flags/1x1/tc.svg new file mode 100644 index 0000000..c3caf3f --- /dev/null +++ b/src/main/resources/public/flags/1x1/tc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/td.svg b/src/main/resources/public/flags/1x1/td.svg new file mode 100644 index 0000000..9bb0ce6 --- /dev/null +++ b/src/main/resources/public/flags/1x1/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tf.svg b/src/main/resources/public/flags/1x1/tf.svg new file mode 100644 index 0000000..8d85a2b --- /dev/null +++ b/src/main/resources/public/flags/1x1/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tg.svg b/src/main/resources/public/flags/1x1/tg.svg new file mode 100644 index 0000000..96dc042 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/th.svg b/src/main/resources/public/flags/1x1/th.svg new file mode 100644 index 0000000..35141d3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tj.svg b/src/main/resources/public/flags/1x1/tj.svg new file mode 100644 index 0000000..93bb4a8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tj.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tk.svg b/src/main/resources/public/flags/1x1/tk.svg new file mode 100644 index 0000000..e9f5b42 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/tl.svg b/src/main/resources/public/flags/1x1/tl.svg new file mode 100644 index 0000000..09b7ed1 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tm.svg b/src/main/resources/public/flags/1x1/tm.svg new file mode 100644 index 0000000..0ad764a --- /dev/null +++ b/src/main/resources/public/flags/1x1/tm.svg @@ -0,0 +1,202 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tn.svg b/src/main/resources/public/flags/1x1/tn.svg new file mode 100644 index 0000000..b1164b9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tn.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/to.svg b/src/main/resources/public/flags/1x1/to.svg new file mode 100644 index 0000000..3f1b600 --- /dev/null +++ b/src/main/resources/public/flags/1x1/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tr.svg b/src/main/resources/public/flags/1x1/tr.svg new file mode 100644 index 0000000..9a882a2 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tt.svg b/src/main/resources/public/flags/1x1/tt.svg new file mode 100644 index 0000000..8413969 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tv.svg b/src/main/resources/public/flags/1x1/tv.svg new file mode 100644 index 0000000..098b916 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tv.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tw.svg b/src/main/resources/public/flags/1x1/tw.svg new file mode 100644 index 0000000..067edaa --- /dev/null +++ b/src/main/resources/public/flags/1x1/tw.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/tz.svg b/src/main/resources/public/flags/1x1/tz.svg new file mode 100644 index 0000000..dfb0233 --- /dev/null +++ b/src/main/resources/public/flags/1x1/tz.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ua.svg b/src/main/resources/public/flags/1x1/ua.svg new file mode 100644 index 0000000..7ceb894 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/1x1/ug.svg b/src/main/resources/public/flags/1x1/ug.svg new file mode 100644 index 0000000..3acd558 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/um.svg b/src/main/resources/public/flags/1x1/um.svg new file mode 100644 index 0000000..8fda3e9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/un.svg b/src/main/resources/public/flags/1x1/un.svg new file mode 100644 index 0000000..258cb01 --- /dev/null +++ b/src/main/resources/public/flags/1x1/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/us.svg b/src/main/resources/public/flags/1x1/us.svg new file mode 100644 index 0000000..28f56d5 --- /dev/null +++ b/src/main/resources/public/flags/1x1/us.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/uy.svg b/src/main/resources/public/flags/1x1/uy.svg new file mode 100644 index 0000000..f4a502f --- /dev/null +++ b/src/main/resources/public/flags/1x1/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/uz.svg b/src/main/resources/public/flags/1x1/uz.svg new file mode 100644 index 0000000..48d62e3 --- /dev/null +++ b/src/main/resources/public/flags/1x1/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/va.svg b/src/main/resources/public/flags/1x1/va.svg new file mode 100644 index 0000000..5c8e878 --- /dev/null +++ b/src/main/resources/public/flags/1x1/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vc.svg b/src/main/resources/public/flags/1x1/vc.svg new file mode 100644 index 0000000..f347db9 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/ve.svg b/src/main/resources/public/flags/1x1/ve.svg new file mode 100644 index 0000000..2d02c6a --- /dev/null +++ b/src/main/resources/public/flags/1x1/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vg.svg b/src/main/resources/public/flags/1x1/vg.svg new file mode 100644 index 0000000..7a3bbab --- /dev/null +++ b/src/main/resources/public/flags/1x1/vg.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vi.svg b/src/main/resources/public/flags/1x1/vi.svg new file mode 100644 index 0000000..114995e --- /dev/null +++ b/src/main/resources/public/flags/1x1/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vn.svg b/src/main/resources/public/flags/1x1/vn.svg new file mode 100644 index 0000000..865d264 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/vu.svg b/src/main/resources/public/flags/1x1/vu.svg new file mode 100644 index 0000000..09add70 --- /dev/null +++ b/src/main/resources/public/flags/1x1/vu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/wf.svg b/src/main/resources/public/flags/1x1/wf.svg new file mode 100644 index 0000000..0946ba0 --- /dev/null +++ b/src/main/resources/public/flags/1x1/wf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/1x1/ws.svg b/src/main/resources/public/flags/1x1/ws.svg new file mode 100644 index 0000000..ab08fdb --- /dev/null +++ b/src/main/resources/public/flags/1x1/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/xk.svg b/src/main/resources/public/flags/1x1/xk.svg new file mode 100644 index 0000000..1e43b95 --- /dev/null +++ b/src/main/resources/public/flags/1x1/xk.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/xx.svg b/src/main/resources/public/flags/1x1/xx.svg new file mode 100644 index 0000000..ccf6c1f --- /dev/null +++ b/src/main/resources/public/flags/1x1/xx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/1x1/ye.svg b/src/main/resources/public/flags/1x1/ye.svg new file mode 100644 index 0000000..4cac4a8 --- /dev/null +++ b/src/main/resources/public/flags/1x1/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/1x1/yt.svg b/src/main/resources/public/flags/1x1/yt.svg new file mode 100644 index 0000000..a38c0ac --- /dev/null +++ b/src/main/resources/public/flags/1x1/yt.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/1x1/za.svg b/src/main/resources/public/flags/1x1/za.svg new file mode 100644 index 0000000..7bbe274 --- /dev/null +++ b/src/main/resources/public/flags/1x1/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/zm.svg b/src/main/resources/public/flags/1x1/zm.svg new file mode 100644 index 0000000..9506601 --- /dev/null +++ b/src/main/resources/public/flags/1x1/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/1x1/zw.svg b/src/main/resources/public/flags/1x1/zw.svg new file mode 100644 index 0000000..1533a81 --- /dev/null +++ b/src/main/resources/public/flags/1x1/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ac.svg b/src/main/resources/public/flags/4x3/ac.svg new file mode 100644 index 0000000..1a6d508 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ac.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ad.svg b/src/main/resources/public/flags/4x3/ad.svg new file mode 100644 index 0000000..726f981 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ad.svg @@ -0,0 +1,150 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ae.svg b/src/main/resources/public/flags/4x3/ae.svg new file mode 100644 index 0000000..b7acdbd --- /dev/null +++ b/src/main/resources/public/flags/4x3/ae.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/af.svg b/src/main/resources/public/flags/4x3/af.svg new file mode 100644 index 0000000..6e75539 --- /dev/null +++ b/src/main/resources/public/flags/4x3/af.svg @@ -0,0 +1,81 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ag.svg b/src/main/resources/public/flags/4x3/ag.svg new file mode 100644 index 0000000..875f975 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ag.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ai.svg b/src/main/resources/public/flags/4x3/ai.svg new file mode 100644 index 0000000..cf91b39 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ai.svg @@ -0,0 +1,758 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/al.svg b/src/main/resources/public/flags/4x3/al.svg new file mode 100644 index 0000000..4e7098f --- /dev/null +++ b/src/main/resources/public/flags/4x3/al.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/am.svg b/src/main/resources/public/flags/4x3/am.svg new file mode 100644 index 0000000..99fa4dc --- /dev/null +++ b/src/main/resources/public/flags/4x3/am.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ao.svg b/src/main/resources/public/flags/4x3/ao.svg new file mode 100644 index 0000000..4dc39f6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ao.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/aq.svg b/src/main/resources/public/flags/4x3/aq.svg new file mode 100644 index 0000000..53840cc --- /dev/null +++ b/src/main/resources/public/flags/4x3/aq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ar.svg b/src/main/resources/public/flags/4x3/ar.svg new file mode 100644 index 0000000..d1810f2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ar.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/as.svg b/src/main/resources/public/flags/4x3/as.svg new file mode 100644 index 0000000..88e2ca5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/as.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/at.svg b/src/main/resources/public/flags/4x3/at.svg new file mode 100644 index 0000000..c282508 --- /dev/null +++ b/src/main/resources/public/flags/4x3/at.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/au.svg b/src/main/resources/public/flags/4x3/au.svg new file mode 100644 index 0000000..407fef4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/au.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/aw.svg b/src/main/resources/public/flags/4x3/aw.svg new file mode 100644 index 0000000..e840233 --- /dev/null +++ b/src/main/resources/public/flags/4x3/aw.svg @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ax.svg b/src/main/resources/public/flags/4x3/ax.svg new file mode 100644 index 0000000..9f04648 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ax.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/az.svg b/src/main/resources/public/flags/4x3/az.svg new file mode 100644 index 0000000..8e56ef5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/az.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ba.svg b/src/main/resources/public/flags/4x3/ba.svg new file mode 100644 index 0000000..7c30421 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ba.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bb.svg b/src/main/resources/public/flags/4x3/bb.svg new file mode 100644 index 0000000..420a688 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bb.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/bd.svg b/src/main/resources/public/flags/4x3/bd.svg new file mode 100644 index 0000000..16b794d --- /dev/null +++ b/src/main/resources/public/flags/4x3/bd.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/be.svg b/src/main/resources/public/flags/4x3/be.svg new file mode 100644 index 0000000..327f28f --- /dev/null +++ b/src/main/resources/public/flags/4x3/be.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bf.svg b/src/main/resources/public/flags/4x3/bf.svg new file mode 100644 index 0000000..4713822 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bf.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bg.svg b/src/main/resources/public/flags/4x3/bg.svg new file mode 100644 index 0000000..b100dd0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bh.svg b/src/main/resources/public/flags/4x3/bh.svg new file mode 100644 index 0000000..7a2ea54 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bh.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/bi.svg b/src/main/resources/public/flags/4x3/bi.svg new file mode 100644 index 0000000..a37bc67 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bi.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bj.svg b/src/main/resources/public/flags/4x3/bj.svg new file mode 100644 index 0000000..871c57e --- /dev/null +++ b/src/main/resources/public/flags/4x3/bj.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bl.svg b/src/main/resources/public/flags/4x3/bl.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/bl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/bm.svg b/src/main/resources/public/flags/4x3/bm.svg new file mode 100644 index 0000000..330d5ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/bm.svg @@ -0,0 +1,97 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bn.svg b/src/main/resources/public/flags/4x3/bn.svg new file mode 100644 index 0000000..19f15fa --- /dev/null +++ b/src/main/resources/public/flags/4x3/bn.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bo.svg b/src/main/resources/public/flags/4x3/bo.svg new file mode 100644 index 0000000..391e226 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bo.svg @@ -0,0 +1,676 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bq.svg b/src/main/resources/public/flags/4x3/bq.svg new file mode 100644 index 0000000..0e6bc76 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/br.svg b/src/main/resources/public/flags/4x3/br.svg new file mode 100644 index 0000000..354a701 --- /dev/null +++ b/src/main/resources/public/flags/4x3/br.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bs.svg b/src/main/resources/public/flags/4x3/bs.svg new file mode 100644 index 0000000..b26d476 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bs.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bt.svg b/src/main/resources/public/flags/4x3/bt.svg new file mode 100644 index 0000000..cea6006 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bt.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bv.svg b/src/main/resources/public/flags/4x3/bv.svg new file mode 100644 index 0000000..86431fc --- /dev/null +++ b/src/main/resources/public/flags/4x3/bv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bw.svg b/src/main/resources/public/flags/4x3/bw.svg new file mode 100644 index 0000000..a1c8db0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/bw.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/by.svg b/src/main/resources/public/flags/4x3/by.svg new file mode 100644 index 0000000..20ae52b --- /dev/null +++ b/src/main/resources/public/flags/4x3/by.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/bz.svg b/src/main/resources/public/flags/4x3/bz.svg new file mode 100644 index 0000000..fbc6d7c --- /dev/null +++ b/src/main/resources/public/flags/4x3/bz.svg @@ -0,0 +1,145 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ca.svg b/src/main/resources/public/flags/4x3/ca.svg new file mode 100644 index 0000000..f1b2c96 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ca.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/cc.svg b/src/main/resources/public/flags/4x3/cc.svg new file mode 100644 index 0000000..c4457de --- /dev/null +++ b/src/main/resources/public/flags/4x3/cc.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cd.svg b/src/main/resources/public/flags/4x3/cd.svg new file mode 100644 index 0000000..e106ddd --- /dev/null +++ b/src/main/resources/public/flags/4x3/cd.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/cefta.svg b/src/main/resources/public/flags/4x3/cefta.svg new file mode 100644 index 0000000..d66e18b --- /dev/null +++ b/src/main/resources/public/flags/4x3/cefta.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cf.svg b/src/main/resources/public/flags/4x3/cf.svg new file mode 100644 index 0000000..fd30063 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cg.svg b/src/main/resources/public/flags/4x3/cg.svg new file mode 100644 index 0000000..a290234 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cg.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ch.svg b/src/main/resources/public/flags/4x3/ch.svg new file mode 100644 index 0000000..b42d670 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ch.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ci.svg b/src/main/resources/public/flags/4x3/ci.svg new file mode 100644 index 0000000..e400f0c --- /dev/null +++ b/src/main/resources/public/flags/4x3/ci.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ck.svg b/src/main/resources/public/flags/4x3/ck.svg new file mode 100644 index 0000000..18e547b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ck.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cl.svg b/src/main/resources/public/flags/4x3/cl.svg new file mode 100644 index 0000000..50218c8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cm.svg b/src/main/resources/public/flags/4x3/cm.svg new file mode 100644 index 0000000..d06f656 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cm.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cn.svg b/src/main/resources/public/flags/4x3/cn.svg new file mode 100644 index 0000000..2416236 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/co.svg b/src/main/resources/public/flags/4x3/co.svg new file mode 100644 index 0000000..ebd0a0f --- /dev/null +++ b/src/main/resources/public/flags/4x3/co.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cp.svg b/src/main/resources/public/flags/4x3/cp.svg new file mode 100644 index 0000000..b3efb07 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cp.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cr.svg b/src/main/resources/public/flags/4x3/cr.svg new file mode 100644 index 0000000..5a409ee --- /dev/null +++ b/src/main/resources/public/flags/4x3/cr.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cu.svg b/src/main/resources/public/flags/4x3/cu.svg new file mode 100644 index 0000000..528ebac --- /dev/null +++ b/src/main/resources/public/flags/4x3/cu.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cv.svg b/src/main/resources/public/flags/4x3/cv.svg new file mode 100644 index 0000000..381985a --- /dev/null +++ b/src/main/resources/public/flags/4x3/cv.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cw.svg b/src/main/resources/public/flags/4x3/cw.svg new file mode 100644 index 0000000..4294b5b --- /dev/null +++ b/src/main/resources/public/flags/4x3/cw.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cx.svg b/src/main/resources/public/flags/4x3/cx.svg new file mode 100644 index 0000000..39fa9b0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cx.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/cy.svg b/src/main/resources/public/flags/4x3/cy.svg new file mode 100644 index 0000000..b72473a --- /dev/null +++ b/src/main/resources/public/flags/4x3/cy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/cz.svg b/src/main/resources/public/flags/4x3/cz.svg new file mode 100644 index 0000000..7913de3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/cz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/de.svg b/src/main/resources/public/flags/4x3/de.svg new file mode 100644 index 0000000..b08334b --- /dev/null +++ b/src/main/resources/public/flags/4x3/de.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/dg.svg b/src/main/resources/public/flags/4x3/dg.svg new file mode 100644 index 0000000..f101d52 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dg.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dj.svg b/src/main/resources/public/flags/4x3/dj.svg new file mode 100644 index 0000000..674d7ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/dj.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dk.svg b/src/main/resources/public/flags/4x3/dk.svg new file mode 100644 index 0000000..563277f --- /dev/null +++ b/src/main/resources/public/flags/4x3/dk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/dm.svg b/src/main/resources/public/flags/4x3/dm.svg new file mode 100644 index 0000000..7fa4dd8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dm.svg @@ -0,0 +1,152 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/do.svg b/src/main/resources/public/flags/4x3/do.svg new file mode 100644 index 0000000..df21264 --- /dev/null +++ b/src/main/resources/public/flags/4x3/do.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/dz.svg b/src/main/resources/public/flags/4x3/dz.svg new file mode 100644 index 0000000..5ff29a7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/dz.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ea.svg b/src/main/resources/public/flags/4x3/ea.svg new file mode 100644 index 0000000..d55c9b6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ea.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ec.svg b/src/main/resources/public/flags/4x3/ec.svg new file mode 100644 index 0000000..65b7885 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ec.svg @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ee.svg b/src/main/resources/public/flags/4x3/ee.svg new file mode 100644 index 0000000..36ea288 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ee.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eg.svg b/src/main/resources/public/flags/4x3/eg.svg new file mode 100644 index 0000000..728538b --- /dev/null +++ b/src/main/resources/public/flags/4x3/eg.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eh.svg b/src/main/resources/public/flags/4x3/eh.svg new file mode 100644 index 0000000..8743371 --- /dev/null +++ b/src/main/resources/public/flags/4x3/eh.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/er.svg b/src/main/resources/public/flags/4x3/er.svg new file mode 100644 index 0000000..2705295 --- /dev/null +++ b/src/main/resources/public/flags/4x3/er.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/es-ct.svg b/src/main/resources/public/flags/4x3/es-ct.svg new file mode 100644 index 0000000..4d85911 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-ct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/es-ga.svg b/src/main/resources/public/flags/4x3/es-ga.svg new file mode 100644 index 0000000..cc52c84 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-ga.svg @@ -0,0 +1,187 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/es-pv.svg b/src/main/resources/public/flags/4x3/es-pv.svg new file mode 100644 index 0000000..0128915 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es-pv.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/es.svg b/src/main/resources/public/flags/4x3/es.svg new file mode 100644 index 0000000..815e0f8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/es.svg @@ -0,0 +1,544 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/et.svg b/src/main/resources/public/flags/4x3/et.svg new file mode 100644 index 0000000..7075040 --- /dev/null +++ b/src/main/resources/public/flags/4x3/et.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/eu.svg b/src/main/resources/public/flags/4x3/eu.svg new file mode 100644 index 0000000..1bb04ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/eu.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fi.svg b/src/main/resources/public/flags/4x3/fi.svg new file mode 100644 index 0000000..470be2d --- /dev/null +++ b/src/main/resources/public/flags/4x3/fi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/fj.svg b/src/main/resources/public/flags/4x3/fj.svg new file mode 100644 index 0000000..2d7cd98 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fj.svg @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fk.svg b/src/main/resources/public/flags/4x3/fk.svg new file mode 100644 index 0000000..8aeee57 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fk.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fm.svg b/src/main/resources/public/flags/4x3/fm.svg new file mode 100644 index 0000000..baa9668 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fm.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fo.svg b/src/main/resources/public/flags/4x3/fo.svg new file mode 100644 index 0000000..898f669 --- /dev/null +++ b/src/main/resources/public/flags/4x3/fo.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/fr.svg b/src/main/resources/public/flags/4x3/fr.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/fr.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ga.svg b/src/main/resources/public/flags/4x3/ga.svg new file mode 100644 index 0000000..76edab4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ga.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-eng.svg b/src/main/resources/public/flags/4x3/gb-eng.svg new file mode 100644 index 0000000..12e3b67 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-eng.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-nir.svg b/src/main/resources/public/flags/4x3/gb-nir.svg new file mode 100644 index 0000000..e34b224 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-nir.svg @@ -0,0 +1,132 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb-sct.svg b/src/main/resources/public/flags/4x3/gb-sct.svg new file mode 100644 index 0000000..f50cd32 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-sct.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/gb-wls.svg b/src/main/resources/public/flags/4x3/gb-wls.svg new file mode 100644 index 0000000..6e15fd0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb-wls.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gb.svg b/src/main/resources/public/flags/4x3/gb.svg new file mode 100644 index 0000000..dbac25e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gb.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gd.svg b/src/main/resources/public/flags/4x3/gd.svg new file mode 100644 index 0000000..dad1107 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gd.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ge.svg b/src/main/resources/public/flags/4x3/ge.svg new file mode 100644 index 0000000..d8126ec --- /dev/null +++ b/src/main/resources/public/flags/4x3/ge.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/gf.svg b/src/main/resources/public/flags/4x3/gf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/gf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gg.svg b/src/main/resources/public/flags/4x3/gg.svg new file mode 100644 index 0000000..e40a838 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gh.svg b/src/main/resources/public/flags/4x3/gh.svg new file mode 100644 index 0000000..a6497de --- /dev/null +++ b/src/main/resources/public/flags/4x3/gh.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/gi.svg b/src/main/resources/public/flags/4x3/gi.svg new file mode 100644 index 0000000..64a69e8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gi.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gl.svg b/src/main/resources/public/flags/4x3/gl.svg new file mode 100644 index 0000000..eb5a52e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gl.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/gm.svg b/src/main/resources/public/flags/4x3/gm.svg new file mode 100644 index 0000000..2fbcb19 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gm.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gn.svg b/src/main/resources/public/flags/4x3/gn.svg new file mode 100644 index 0000000..40d6ad4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gn.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gp.svg b/src/main/resources/public/flags/4x3/gp.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/gp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/gq.svg b/src/main/resources/public/flags/4x3/gq.svg new file mode 100644 index 0000000..ba2acf2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gq.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gr.svg b/src/main/resources/public/flags/4x3/gr.svg new file mode 100644 index 0000000..599741e --- /dev/null +++ b/src/main/resources/public/flags/4x3/gr.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gs.svg b/src/main/resources/public/flags/4x3/gs.svg new file mode 100644 index 0000000..7e0692c --- /dev/null +++ b/src/main/resources/public/flags/4x3/gs.svg @@ -0,0 +1,133 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gt.svg b/src/main/resources/public/flags/4x3/gt.svg new file mode 100644 index 0000000..be45324 --- /dev/null +++ b/src/main/resources/public/flags/4x3/gt.svg @@ -0,0 +1,220 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gu.svg b/src/main/resources/public/flags/4x3/gu.svg new file mode 100644 index 0000000..a5584ff --- /dev/null +++ b/src/main/resources/public/flags/4x3/gu.svg @@ -0,0 +1,23 @@ + + + + + + + + + + G + U + A + M + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gw.svg b/src/main/resources/public/flags/4x3/gw.svg new file mode 100644 index 0000000..9e0aeeb --- /dev/null +++ b/src/main/resources/public/flags/4x3/gw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/gy.svg b/src/main/resources/public/flags/4x3/gy.svg new file mode 100644 index 0000000..f4d9b8a --- /dev/null +++ b/src/main/resources/public/flags/4x3/gy.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hk.svg b/src/main/resources/public/flags/4x3/hk.svg new file mode 100644 index 0000000..84ff340 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hk.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/hm.svg b/src/main/resources/public/flags/4x3/hm.svg new file mode 100644 index 0000000..c0748d3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hn.svg b/src/main/resources/public/flags/4x3/hn.svg new file mode 100644 index 0000000..6f92950 --- /dev/null +++ b/src/main/resources/public/flags/4x3/hn.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hr.svg b/src/main/resources/public/flags/4x3/hr.svg new file mode 100644 index 0000000..70115ae --- /dev/null +++ b/src/main/resources/public/flags/4x3/hr.svg @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ht.svg b/src/main/resources/public/flags/4x3/ht.svg new file mode 100644 index 0000000..9cddb29 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ht.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/hu.svg b/src/main/resources/public/flags/4x3/hu.svg new file mode 100644 index 0000000..baddf7f --- /dev/null +++ b/src/main/resources/public/flags/4x3/hu.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ic.svg b/src/main/resources/public/flags/4x3/ic.svg new file mode 100644 index 0000000..81e6ee2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ic.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/id.svg b/src/main/resources/public/flags/4x3/id.svg new file mode 100644 index 0000000..3b7c8fc --- /dev/null +++ b/src/main/resources/public/flags/4x3/id.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/ie.svg b/src/main/resources/public/flags/4x3/ie.svg new file mode 100644 index 0000000..049be14 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ie.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/il.svg b/src/main/resources/public/flags/4x3/il.svg new file mode 100644 index 0000000..d9d8213 --- /dev/null +++ b/src/main/resources/public/flags/4x3/il.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/im.svg b/src/main/resources/public/flags/4x3/im.svg new file mode 100644 index 0000000..ce1243c --- /dev/null +++ b/src/main/resources/public/flags/4x3/im.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/in.svg b/src/main/resources/public/flags/4x3/in.svg new file mode 100644 index 0000000..53c29b3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/in.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/io.svg b/src/main/resources/public/flags/4x3/io.svg new file mode 100644 index 0000000..439923f --- /dev/null +++ b/src/main/resources/public/flags/4x3/io.svg @@ -0,0 +1,130 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/iq.svg b/src/main/resources/public/flags/4x3/iq.svg new file mode 100644 index 0000000..6891785 --- /dev/null +++ b/src/main/resources/public/flags/4x3/iq.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ir.svg b/src/main/resources/public/flags/4x3/ir.svg new file mode 100644 index 0000000..c937a36 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ir.svg @@ -0,0 +1,219 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/is.svg b/src/main/resources/public/flags/4x3/is.svg new file mode 100644 index 0000000..b0828a4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/is.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/it.svg b/src/main/resources/public/flags/4x3/it.svg new file mode 100644 index 0000000..20a8bfd --- /dev/null +++ b/src/main/resources/public/flags/4x3/it.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/je.svg b/src/main/resources/public/flags/4x3/je.svg new file mode 100644 index 0000000..b65965c --- /dev/null +++ b/src/main/resources/public/flags/4x3/je.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jm.svg b/src/main/resources/public/flags/4x3/jm.svg new file mode 100644 index 0000000..e03a342 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jo.svg b/src/main/resources/public/flags/4x3/jo.svg new file mode 100644 index 0000000..df0ce75 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jo.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/jp.svg b/src/main/resources/public/flags/4x3/jp.svg new file mode 100644 index 0000000..90af6c4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/jp.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ke.svg b/src/main/resources/public/flags/4x3/ke.svg new file mode 100644 index 0000000..ad190f5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ke.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kg.svg b/src/main/resources/public/flags/4x3/kg.svg new file mode 100644 index 0000000..1d237fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/kg.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kh.svg b/src/main/resources/public/flags/4x3/kh.svg new file mode 100644 index 0000000..984e84e --- /dev/null +++ b/src/main/resources/public/flags/4x3/kh.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ki.svg b/src/main/resources/public/flags/4x3/ki.svg new file mode 100644 index 0000000..c469370 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ki.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/km.svg b/src/main/resources/public/flags/4x3/km.svg new file mode 100644 index 0000000..fda3a53 --- /dev/null +++ b/src/main/resources/public/flags/4x3/km.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kn.svg b/src/main/resources/public/flags/4x3/kn.svg new file mode 100644 index 0000000..f96b06c --- /dev/null +++ b/src/main/resources/public/flags/4x3/kn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kp.svg b/src/main/resources/public/flags/4x3/kp.svg new file mode 100644 index 0000000..b405e45 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kp.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kr.svg b/src/main/resources/public/flags/4x3/kr.svg new file mode 100644 index 0000000..39fa999 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kr.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kw.svg b/src/main/resources/public/flags/4x3/kw.svg new file mode 100644 index 0000000..d55aa19 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ky.svg b/src/main/resources/public/flags/4x3/ky.svg new file mode 100644 index 0000000..103af5b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ky.svg @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/kz.svg b/src/main/resources/public/flags/4x3/kz.svg new file mode 100644 index 0000000..e09beb2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/kz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/la.svg b/src/main/resources/public/flags/4x3/la.svg new file mode 100644 index 0000000..cd7ea9d --- /dev/null +++ b/src/main/resources/public/flags/4x3/la.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lb.svg b/src/main/resources/public/flags/4x3/lb.svg new file mode 100644 index 0000000..f8b8b6d --- /dev/null +++ b/src/main/resources/public/flags/4x3/lb.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lc.svg b/src/main/resources/public/flags/4x3/lc.svg new file mode 100644 index 0000000..46bbc6c --- /dev/null +++ b/src/main/resources/public/flags/4x3/lc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/li.svg b/src/main/resources/public/flags/4x3/li.svg new file mode 100644 index 0000000..d557d31 --- /dev/null +++ b/src/main/resources/public/flags/4x3/li.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lk.svg b/src/main/resources/public/flags/4x3/lk.svg new file mode 100644 index 0000000..416c0f0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lk.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lr.svg b/src/main/resources/public/flags/4x3/lr.svg new file mode 100644 index 0000000..0025221 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lr.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ls.svg b/src/main/resources/public/flags/4x3/ls.svg new file mode 100644 index 0000000..e701650 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ls.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lt.svg b/src/main/resources/public/flags/4x3/lt.svg new file mode 100644 index 0000000..90ec5d2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/lt.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/lu.svg b/src/main/resources/public/flags/4x3/lu.svg new file mode 100644 index 0000000..c31d2bf --- /dev/null +++ b/src/main/resources/public/flags/4x3/lu.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/lv.svg b/src/main/resources/public/flags/4x3/lv.svg new file mode 100644 index 0000000..6a9e75e --- /dev/null +++ b/src/main/resources/public/flags/4x3/lv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ly.svg b/src/main/resources/public/flags/4x3/ly.svg new file mode 100644 index 0000000..7324a87 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ly.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ma.svg b/src/main/resources/public/flags/4x3/ma.svg new file mode 100644 index 0000000..7ce56ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/ma.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/mc.svg b/src/main/resources/public/flags/4x3/mc.svg new file mode 100644 index 0000000..9cb6c9e --- /dev/null +++ b/src/main/resources/public/flags/4x3/mc.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/md.svg b/src/main/resources/public/flags/4x3/md.svg new file mode 100644 index 0000000..a806572 --- /dev/null +++ b/src/main/resources/public/flags/4x3/md.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/me.svg b/src/main/resources/public/flags/4x3/me.svg new file mode 100644 index 0000000..b56cce0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/me.svg @@ -0,0 +1,116 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mf.svg b/src/main/resources/public/flags/4x3/mf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/mf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/mg.svg b/src/main/resources/public/flags/4x3/mg.svg new file mode 100644 index 0000000..5fa2d24 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mg.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mh.svg b/src/main/resources/public/flags/4x3/mh.svg new file mode 100644 index 0000000..46351e5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mh.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mk.svg b/src/main/resources/public/flags/4x3/mk.svg new file mode 100644 index 0000000..4f5cae7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ml.svg b/src/main/resources/public/flags/4x3/ml.svg new file mode 100644 index 0000000..6f6b716 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mm.svg b/src/main/resources/public/flags/4x3/mm.svg new file mode 100644 index 0000000..3527782 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mm.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mn.svg b/src/main/resources/public/flags/4x3/mn.svg new file mode 100644 index 0000000..56cb072 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mn.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mo.svg b/src/main/resources/public/flags/4x3/mo.svg new file mode 100644 index 0000000..6b70cc7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mo.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mp.svg b/src/main/resources/public/flags/4x3/mp.svg new file mode 100644 index 0000000..d94f688 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mp.svg @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mq.svg b/src/main/resources/public/flags/4x3/mq.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/mq.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/mr.svg b/src/main/resources/public/flags/4x3/mr.svg new file mode 100644 index 0000000..e9cc291 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ms.svg b/src/main/resources/public/flags/4x3/ms.svg new file mode 100644 index 0000000..a1e52d9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ms.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mt.svg b/src/main/resources/public/flags/4x3/mt.svg new file mode 100644 index 0000000..676e801 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mt.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mu.svg b/src/main/resources/public/flags/4x3/mu.svg new file mode 100644 index 0000000..82d7a3b --- /dev/null +++ b/src/main/resources/public/flags/4x3/mu.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mv.svg b/src/main/resources/public/flags/4x3/mv.svg new file mode 100644 index 0000000..10450f9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mv.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/mw.svg b/src/main/resources/public/flags/4x3/mw.svg new file mode 100644 index 0000000..113aae5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mw.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mx.svg b/src/main/resources/public/flags/4x3/mx.svg new file mode 100644 index 0000000..4219195 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mx.svg @@ -0,0 +1,382 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/my.svg b/src/main/resources/public/flags/4x3/my.svg new file mode 100644 index 0000000..267c39a --- /dev/null +++ b/src/main/resources/public/flags/4x3/my.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/mz.svg b/src/main/resources/public/flags/4x3/mz.svg new file mode 100644 index 0000000..dab81a6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/mz.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/na.svg b/src/main/resources/public/flags/4x3/na.svg new file mode 100644 index 0000000..3b9202b --- /dev/null +++ b/src/main/resources/public/flags/4x3/na.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nc.svg b/src/main/resources/public/flags/4x3/nc.svg new file mode 100644 index 0000000..9679540 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nc.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ne.svg b/src/main/resources/public/flags/4x3/ne.svg new file mode 100644 index 0000000..39a82b8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ne.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/nf.svg b/src/main/resources/public/flags/4x3/nf.svg new file mode 100644 index 0000000..ecdb4a3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nf.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ng.svg b/src/main/resources/public/flags/4x3/ng.svg new file mode 100644 index 0000000..81eb35f --- /dev/null +++ b/src/main/resources/public/flags/4x3/ng.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ni.svg b/src/main/resources/public/flags/4x3/ni.svg new file mode 100644 index 0000000..64d2aa0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ni.svg @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nl.svg b/src/main/resources/public/flags/4x3/nl.svg new file mode 100644 index 0000000..4faaf49 --- /dev/null +++ b/src/main/resources/public/flags/4x3/nl.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/no.svg b/src/main/resources/public/flags/4x3/no.svg new file mode 100644 index 0000000..a5f2a15 --- /dev/null +++ b/src/main/resources/public/flags/4x3/no.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/np.svg b/src/main/resources/public/flags/4x3/np.svg new file mode 100644 index 0000000..a2f9819 --- /dev/null +++ b/src/main/resources/public/flags/4x3/np.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nr.svg b/src/main/resources/public/flags/4x3/nr.svg new file mode 100644 index 0000000..c7db7dd --- /dev/null +++ b/src/main/resources/public/flags/4x3/nr.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nu.svg b/src/main/resources/public/flags/4x3/nu.svg new file mode 100644 index 0000000..4067baf --- /dev/null +++ b/src/main/resources/public/flags/4x3/nu.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/nz.svg b/src/main/resources/public/flags/4x3/nz.svg new file mode 100644 index 0000000..8ae592a --- /dev/null +++ b/src/main/resources/public/flags/4x3/nz.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/om.svg b/src/main/resources/public/flags/4x3/om.svg new file mode 100644 index 0000000..5be12ed --- /dev/null +++ b/src/main/resources/public/flags/4x3/om.svg @@ -0,0 +1,115 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pa.svg b/src/main/resources/public/flags/4x3/pa.svg new file mode 100644 index 0000000..658c87e --- /dev/null +++ b/src/main/resources/public/flags/4x3/pa.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pe.svg b/src/main/resources/public/flags/4x3/pe.svg new file mode 100644 index 0000000..eeb29a3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pe.svg @@ -0,0 +1,244 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pf.svg b/src/main/resources/public/flags/4x3/pf.svg new file mode 100644 index 0000000..1b35cdb --- /dev/null +++ b/src/main/resources/public/flags/4x3/pf.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pg.svg b/src/main/resources/public/flags/4x3/pg.svg new file mode 100644 index 0000000..1080add --- /dev/null +++ b/src/main/resources/public/flags/4x3/pg.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ph.svg b/src/main/resources/public/flags/4x3/ph.svg new file mode 100644 index 0000000..65489e1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ph.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/pk.svg b/src/main/resources/public/flags/4x3/pk.svg new file mode 100644 index 0000000..0babde6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pk.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pl.svg b/src/main/resources/public/flags/4x3/pl.svg new file mode 100644 index 0000000..0fa5145 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pl.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/pm.svg b/src/main/resources/public/flags/4x3/pm.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/pm.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/pn.svg b/src/main/resources/public/flags/4x3/pn.svg new file mode 100644 index 0000000..972792f --- /dev/null +++ b/src/main/resources/public/flags/4x3/pn.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pr.svg b/src/main/resources/public/flags/4x3/pr.svg new file mode 100644 index 0000000..964b421 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pr.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ps.svg b/src/main/resources/public/flags/4x3/ps.svg new file mode 100644 index 0000000..ddd1dc1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ps.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pt.svg b/src/main/resources/public/flags/4x3/pt.svg new file mode 100644 index 0000000..afd2e4a --- /dev/null +++ b/src/main/resources/public/flags/4x3/pt.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/pw.svg b/src/main/resources/public/flags/4x3/pw.svg new file mode 100644 index 0000000..77547c7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/pw.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/py.svg b/src/main/resources/public/flags/4x3/py.svg new file mode 100644 index 0000000..bfbf01f --- /dev/null +++ b/src/main/resources/public/flags/4x3/py.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/qa.svg b/src/main/resources/public/flags/4x3/qa.svg new file mode 100644 index 0000000..bd493c3 --- /dev/null +++ b/src/main/resources/public/flags/4x3/qa.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/re.svg b/src/main/resources/public/flags/4x3/re.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/re.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ro.svg b/src/main/resources/public/flags/4x3/ro.svg new file mode 100644 index 0000000..fda0f7b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ro.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/rs.svg b/src/main/resources/public/flags/4x3/rs.svg new file mode 100644 index 0000000..86ad291 --- /dev/null +++ b/src/main/resources/public/flags/4x3/rs.svg @@ -0,0 +1,292 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ru.svg b/src/main/resources/public/flags/4x3/ru.svg new file mode 100644 index 0000000..f4d27ef --- /dev/null +++ b/src/main/resources/public/flags/4x3/ru.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/rw.svg b/src/main/resources/public/flags/4x3/rw.svg new file mode 100644 index 0000000..2c6c5d9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/rw.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sa.svg b/src/main/resources/public/flags/4x3/sa.svg new file mode 100644 index 0000000..b0d56df --- /dev/null +++ b/src/main/resources/public/flags/4x3/sa.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sb.svg b/src/main/resources/public/flags/4x3/sb.svg new file mode 100644 index 0000000..f450a9c --- /dev/null +++ b/src/main/resources/public/flags/4x3/sb.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sc.svg b/src/main/resources/public/flags/4x3/sc.svg new file mode 100644 index 0000000..9a46b36 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sc.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sd.svg b/src/main/resources/public/flags/4x3/sd.svg new file mode 100644 index 0000000..c00a1a5 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sd.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/se.svg b/src/main/resources/public/flags/4x3/se.svg new file mode 100644 index 0000000..0e41780 --- /dev/null +++ b/src/main/resources/public/flags/4x3/se.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/sg.svg b/src/main/resources/public/flags/4x3/sg.svg new file mode 100644 index 0000000..c0d3d08 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sg.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sh.svg b/src/main/resources/public/flags/4x3/sh.svg new file mode 100644 index 0000000..131b069 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sh.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/si.svg b/src/main/resources/public/flags/4x3/si.svg new file mode 100644 index 0000000..223fc49 --- /dev/null +++ b/src/main/resources/public/flags/4x3/si.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sj.svg b/src/main/resources/public/flags/4x3/sj.svg new file mode 100644 index 0000000..bb2799c --- /dev/null +++ b/src/main/resources/public/flags/4x3/sj.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sk.svg b/src/main/resources/public/flags/4x3/sk.svg new file mode 100644 index 0000000..a1953fa --- /dev/null +++ b/src/main/resources/public/flags/4x3/sk.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sl.svg b/src/main/resources/public/flags/4x3/sl.svg new file mode 100644 index 0000000..a07baf7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sl.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sm.svg b/src/main/resources/public/flags/4x3/sm.svg new file mode 100644 index 0000000..0892990 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sm.svg @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sn.svg b/src/main/resources/public/flags/4x3/sn.svg new file mode 100644 index 0000000..7c0673d --- /dev/null +++ b/src/main/resources/public/flags/4x3/sn.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/so.svg b/src/main/resources/public/flags/4x3/so.svg new file mode 100644 index 0000000..4d4337a --- /dev/null +++ b/src/main/resources/public/flags/4x3/so.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sr.svg b/src/main/resources/public/flags/4x3/sr.svg new file mode 100644 index 0000000..5e71c40 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ss.svg b/src/main/resources/public/flags/4x3/ss.svg new file mode 100644 index 0000000..73804d8 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/st.svg b/src/main/resources/public/flags/4x3/st.svg new file mode 100644 index 0000000..2259f31 --- /dev/null +++ b/src/main/resources/public/flags/4x3/st.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sv.svg b/src/main/resources/public/flags/4x3/sv.svg new file mode 100644 index 0000000..752dd3d --- /dev/null +++ b/src/main/resources/public/flags/4x3/sv.svg @@ -0,0 +1,594 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sx.svg b/src/main/resources/public/flags/4x3/sx.svg new file mode 100644 index 0000000..bcc90d6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sx.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/sy.svg b/src/main/resources/public/flags/4x3/sy.svg new file mode 100644 index 0000000..29636ae --- /dev/null +++ b/src/main/resources/public/flags/4x3/sy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/sz.svg b/src/main/resources/public/flags/4x3/sz.svg new file mode 100644 index 0000000..02ef495 --- /dev/null +++ b/src/main/resources/public/flags/4x3/sz.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ta.svg b/src/main/resources/public/flags/4x3/ta.svg new file mode 100644 index 0000000..b68ad23 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ta.svg @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tc.svg b/src/main/resources/public/flags/4x3/tc.svg new file mode 100644 index 0000000..dbdb716 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tc.svg @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/td.svg b/src/main/resources/public/flags/4x3/td.svg new file mode 100644 index 0000000..9fadf85 --- /dev/null +++ b/src/main/resources/public/flags/4x3/td.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tf.svg b/src/main/resources/public/flags/4x3/tf.svg new file mode 100644 index 0000000..4572f4e --- /dev/null +++ b/src/main/resources/public/flags/4x3/tf.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tg.svg b/src/main/resources/public/flags/4x3/tg.svg new file mode 100644 index 0000000..8d763cb --- /dev/null +++ b/src/main/resources/public/flags/4x3/tg.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/th.svg b/src/main/resources/public/flags/4x3/th.svg new file mode 100644 index 0000000..1e93a61 --- /dev/null +++ b/src/main/resources/public/flags/4x3/th.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tj.svg b/src/main/resources/public/flags/4x3/tj.svg new file mode 100644 index 0000000..563c97b --- /dev/null +++ b/src/main/resources/public/flags/4x3/tj.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tk.svg b/src/main/resources/public/flags/4x3/tk.svg new file mode 100644 index 0000000..65bab13 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tk.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/tl.svg b/src/main/resources/public/flags/4x3/tl.svg new file mode 100644 index 0000000..1f11e92 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tl.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tm.svg b/src/main/resources/public/flags/4x3/tm.svg new file mode 100644 index 0000000..3c72f09 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tm.svg @@ -0,0 +1,205 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tn.svg b/src/main/resources/public/flags/4x3/tn.svg new file mode 100644 index 0000000..4dc0949 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tn.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/to.svg b/src/main/resources/public/flags/4x3/to.svg new file mode 100644 index 0000000..d072337 --- /dev/null +++ b/src/main/resources/public/flags/4x3/to.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tr.svg b/src/main/resources/public/flags/4x3/tr.svg new file mode 100644 index 0000000..a92804f --- /dev/null +++ b/src/main/resources/public/flags/4x3/tr.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tt.svg b/src/main/resources/public/flags/4x3/tt.svg new file mode 100644 index 0000000..14adbe0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/tt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/tv.svg b/src/main/resources/public/flags/4x3/tv.svg new file mode 100644 index 0000000..675210e --- /dev/null +++ b/src/main/resources/public/flags/4x3/tv.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tw.svg b/src/main/resources/public/flags/4x3/tw.svg new file mode 100644 index 0000000..78f3b9d --- /dev/null +++ b/src/main/resources/public/flags/4x3/tw.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/tz.svg b/src/main/resources/public/flags/4x3/tz.svg new file mode 100644 index 0000000..ca74eec --- /dev/null +++ b/src/main/resources/public/flags/4x3/tz.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ua.svg b/src/main/resources/public/flags/4x3/ua.svg new file mode 100644 index 0000000..a339eb1 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/main/resources/public/flags/4x3/ug.svg b/src/main/resources/public/flags/4x3/ug.svg new file mode 100644 index 0000000..f9c5e1b --- /dev/null +++ b/src/main/resources/public/flags/4x3/ug.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/um.svg b/src/main/resources/public/flags/4x3/um.svg new file mode 100644 index 0000000..7b91838 --- /dev/null +++ b/src/main/resources/public/flags/4x3/um.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/un.svg b/src/main/resources/public/flags/4x3/un.svg new file mode 100644 index 0000000..b04c3c4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/un.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/us.svg b/src/main/resources/public/flags/4x3/us.svg new file mode 100644 index 0000000..a218516 --- /dev/null +++ b/src/main/resources/public/flags/4x3/us.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/public/flags/4x3/uy.svg b/src/main/resources/public/flags/4x3/uy.svg new file mode 100644 index 0000000..1634d71 --- /dev/null +++ b/src/main/resources/public/flags/4x3/uy.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/uz.svg b/src/main/resources/public/flags/4x3/uz.svg new file mode 100644 index 0000000..8c6a532 --- /dev/null +++ b/src/main/resources/public/flags/4x3/uz.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/va.svg b/src/main/resources/public/flags/4x3/va.svg new file mode 100644 index 0000000..6a03dc4 --- /dev/null +++ b/src/main/resources/public/flags/4x3/va.svg @@ -0,0 +1,479 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vc.svg b/src/main/resources/public/flags/4x3/vc.svg new file mode 100644 index 0000000..450f6f0 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vc.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/ve.svg b/src/main/resources/public/flags/4x3/ve.svg new file mode 100644 index 0000000..77bb549 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ve.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vg.svg b/src/main/resources/public/flags/4x3/vg.svg new file mode 100644 index 0000000..39023a9 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vg.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vi.svg b/src/main/resources/public/flags/4x3/vi.svg new file mode 100644 index 0000000..8a0941f --- /dev/null +++ b/src/main/resources/public/flags/4x3/vi.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vn.svg b/src/main/resources/public/flags/4x3/vn.svg new file mode 100644 index 0000000..c557e3a --- /dev/null +++ b/src/main/resources/public/flags/4x3/vn.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/vu.svg b/src/main/resources/public/flags/4x3/vu.svg new file mode 100644 index 0000000..32f4377 --- /dev/null +++ b/src/main/resources/public/flags/4x3/vu.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/wf.svg b/src/main/resources/public/flags/4x3/wf.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/wf.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/ws.svg b/src/main/resources/public/flags/4x3/ws.svg new file mode 100644 index 0000000..0e758a7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ws.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/xk.svg b/src/main/resources/public/flags/4x3/xk.svg new file mode 100644 index 0000000..0edc0c7 --- /dev/null +++ b/src/main/resources/public/flags/4x3/xk.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/xx.svg b/src/main/resources/public/flags/4x3/xx.svg new file mode 100644 index 0000000..34515ce --- /dev/null +++ b/src/main/resources/public/flags/4x3/xx.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/main/resources/public/flags/4x3/ye.svg b/src/main/resources/public/flags/4x3/ye.svg new file mode 100644 index 0000000..61f0ed6 --- /dev/null +++ b/src/main/resources/public/flags/4x3/ye.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/main/resources/public/flags/4x3/yt.svg b/src/main/resources/public/flags/4x3/yt.svg new file mode 100644 index 0000000..79689fe --- /dev/null +++ b/src/main/resources/public/flags/4x3/yt.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/main/resources/public/flags/4x3/za.svg b/src/main/resources/public/flags/4x3/za.svg new file mode 100644 index 0000000..0c1f3af --- /dev/null +++ b/src/main/resources/public/flags/4x3/za.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/zm.svg b/src/main/resources/public/flags/4x3/zm.svg new file mode 100644 index 0000000..84c99c2 --- /dev/null +++ b/src/main/resources/public/flags/4x3/zm.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/flags/4x3/zw.svg b/src/main/resources/public/flags/4x3/zw.svg new file mode 100644 index 0000000..64e8d48 --- /dev/null +++ b/src/main/resources/public/flags/4x3/zw.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/public/icons/android-chrome-192x192.png b/src/main/resources/public/icons/android-chrome-192x192.png new file mode 100644 index 0000000000000000000000000000000000000000..50ee725b7a6102bda3f88db0fcb613e071fb630c GIT binary patch literal 6546 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 C;pMad literal 0 HcmV?d00001 diff --git a/src/main/resources/public/icons/android-chrome-512x512.png b/src/main/resources/public/icons/android-chrome-512x512.png new file mode 100644 index 0000000000000000000000000000000000000000..c89b4fb40b6f8be13913d6202cb641dc7cd9dfb2 GIT binary patch literal 20059 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 V%{aQMYykWtFRk*VK+@3v{{fSBSBd}t literal 0 HcmV?d00001 diff --git a/src/main/resources/public/icons/apple-touch-icon.png b/src/main/resources/public/icons/apple-touch-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..70d266187c647fe336a254717734f4e530c7f4ee GIT binary patch literal 5842 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 ycGva?)Vr0 literal 0 HcmV?d00001 diff --git a/src/main/resources/public/icons/favicon-16x16.png b/src/main/resources/public/icons/favicon-16x16.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba23408f982cab81e360652f43a8ad2db5745d4 GIT binary patch literal 466 zcmV;@0WJQCP)Ni(0}0?i1LIGI{|v2+3Ul851nOfWK`&hC|Njg>K?eLMM>9+h^$c*6 zXJyb9W=3`%!?kyR8MK6$87{p3!*Jlq9|n6F76wC67KR%@@f{C;gVn-aFx!Qj!9^Z5 zC>C7(&XAzZ$#CV(9|qrzpBXm!^D^j)urN$K_nl$F`5&kTXbLegILWdyl$dZaTz~tA zq5s?uh6kViGVBWGXZZE^KZC*I4-DsG1Q24H_ySgNES!%)l82e0@W2;_eg__gFTegV7%u(D@aG@Iw zL#?D)8TLN<#gMZ5D?F?S8W5n&3by$lFw&VA85x?6e`A<`4U}|h^b^R`;el79u`WG*hi64eMF?0XkrCLQAU}6p<#Uq zMNLujG1!OpLMiMkjnoXC9OvmcGq-c@*o^a*oWVXk+>d+M=d8WX-fQoB4};oTR+(B+ z1%^2ZAc+CU6S=_w^cjJJYZ^GdxPehV7`wS+bTTb6Wr@Q!EM>$nFz?+@(=yEs~SI6qp4^ z3b;~jL|vW?abo8>t%bvh*9LTt*!g*Ok^oKHLXy^!(0o`=c2*K3MqoGg%T;u9te?Y<;3b|AZqrfdeZ15O z4y_WSP$_Z&s=r%N_R7f5n+v0{V}|XA-i}R=Cwva(6M>Xy2B)*6eBLq^39vRH%C)I? z)P}EGJLnl2yUf_TOoU6hGMD|A$$^|lI)1J>7>l$Rfy>t3XTkYSb7%rHS5#z5aCU<` zj90r&xYsl3TCy^Zg=(L|12m^?92Pr=Po;4lI;wbMz*DdM(~UvPFcbj_&~;dWM44L$ zWhy<4L~!jpV_n1?M6}s$I$o&WW6lI_ZkA!sa2IwE}^3?vBtVnPTE69UPzR!tZe5(2}FviWy4!*cau#GN%1$2qDQ z{(7Er>H=7nUeA*woeutb&T&7na00000NkvXXu0mjfL3NbA literal 0 HcmV?d00001 diff --git a/src/main/resources/public/icons/favicon.ico b/src/main/resources/public/icons/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..6a8e0f878a713985a7f48cfbe31c9f8832937f2e GIT binary patch literal 15406 zcmeHOd2AF_7$4NX^bhe5V@zbXcmT#DcmxlKAsWwUjEEXzka`9Wf=5UUAc*pZ1{48N z+g*y4qlF>@9^6nU6v8Q`DKr?lN(;1|*`3*$o!Q;l=l8wsOlM|iw=>gjw}pMl?3;P- z``-6^_j}*>EyE08u4D!dWFRhLCS1iZBN&D$DoTA1yN+SXAZ_^Yj{G4EQ+qwb30iWC!@O|!uw^NRLxt+Z3@H*k+mOntG!wZP8eUhmy zA~l~8>A<%nvTLd--C8F9=gR~`tf@w)R#CoK({36or?HPC%x9$DIdy!r76#u zguOTVJCp1}dVa>d>vk`@jj-i+!QKL~%d<##>BZU^ut%r%SB$gm^YXuIi7Im>sm5Vn zixE|7CCb?yfca+6xbbXZ4C218ZOh`8+@s?((&Kx0&2zRqPTIz)d|}IbR+x>!8ZVgG9(nULX(Gt3hPC+*Kwj5M7i6MPeiUp%6Tr!oKc zxSYw4?3iqlrJUSAA+SYwhU9+*QSFmH_^-ddkC`Kox)C<@M$Z;)`u zd0)%GwS!xFuWJll^?zv96PgG;#(M?(>)oa?ftkYA4;{(pDjp_s<4Sm{2)3Is;5i%9 z<;E3+TQZ!8wO<&si7H;uWhD5sro8B}NAe&bujdN)u`Z_{Ncr#2a= z2|+yB7Q$wI413xlcwdx$@6+o=%gK`8%X_+x zt033eSh$4SDRme0UC7s%0Qu)qy0Sc-#o-Q2@877egL`Oi+{ZfFyan(4c>m6%7r0!~ zQBMLYTBaDDYQGhg&j7o|PuUx0N81qQu>-}%DgRW4%Yf`f{o-FJH}Bkz1Lmip7UNo%h@ zI#<(hX4vcLoX(Kvw2T5>p7!`czg_m{+{EjcM&i8*eGBFQ{|8mK7CifABkIfUyt{J7yP)l#hUk|VMHCfxPJ~& zJN%7|1ZZyvRXy4_@GpN5^zob#9(_kUaA@rqlHg9H<>44|tdn=K7kFuZe&gF|_%I<3 zwoSHdD2$<$pO}>>3hS+L@9v3rFZku-6;^2UTLyb1Vv>%O*ybmMb3J}ObdP^9Nr3&v zE=2auqWE!~*aaLz;k7UHXdk%6A71mk9W8O{J3POBoKC}4JfzDMEq)dnb227T|3o^b;SPa&u3d;-tnV|X>jeMZ40whs}5^Zd%$e2Xi=9c$Ow2twEZ!g+Ty#zc1qwkB| z-iqZ3)t{I!;l0i-pnm|`i@n@a(cX_^!An3tTJhjKn3pLZCu14(zO(un6aG-;sI>Eu z#)I~D^a*gHp3C#2ujE#Qy9e + + + + + + + + + + + Free online TIN validator and API + + + + + + + + + + + + + + +
+ Logo +
+
+

Tax Identification Validation

+ +

+ Tax Identification (TIN) Validation can be used to verify a persons tax id. This validator will perform + the check for the correct format and validate the check numbers of the provided TIN. +

+ +
+

+ + +

+

+ +

+

+
+ +

Supported countries:

+
    + {{#each countries}} +
  • {{this}}
  • + {{/each}} +
+
+ + + +
+ + \ No newline at end of file diff --git a/src/main/resources/views/validation-result.hbs b/src/main/resources/views/validation-result.hbs new file mode 100644 index 0000000..ec429b1 --- /dev/null +++ b/src/main/resources/views/validation-result.hbs @@ -0,0 +1 @@ +
{{text}}
\ No newline at end of file diff --git a/src/test/java/com/devsoap/tincheck/TinCountryTest.java b/src/test/java/com/devsoap/tincheck/TinCountryTest.java new file mode 100644 index 0000000..133e29f --- /dev/null +++ b/src/test/java/com/devsoap/tincheck/TinCountryTest.java @@ -0,0 +1,46 @@ +package com.devsoap.tincheck; + +import com.devsoap.tincheck.services.TinCheckService; +import com.devsoap.tincheck.tin.TinCountry; +import com.devsoap.tincheck.tin.TinGenerator; +import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; +import org.reflections.Reflections; + +import java.time.LocalDate; +import java.util.ArrayList; +import java.util.List; +import java.util.Random; +import java.util.stream.Stream; + +import static org.junit.jupiter.api.Assertions.assertEquals; + +@Slf4j +public class TinCountryTest { + + @ParameterizedTest(name = "{arguments}") + @MethodSource("countries") + public void testTinValidationAndGeneration(TinCountry country) { + var random = new Random(42); + + var service = new TinCheckService(List.of(country), new Random()); + for (var i=0; i<50; i++) { + var date = LocalDate.of(random.nextInt(1854,2030),random.nextInt(1,12), random.nextInt(1,28)); + var tin = service.generate(country.getCountryCode(), date, random.nextBoolean() ? TinGenerator.Gender.MALE: TinGenerator.Gender.FEMALE).value(); + log.info("Generated TIN {} for country {}", tin, country.getCountryCode()); + assertEquals("valid", service.validate(country.getCountryCode(), tin).result()); + } + } + + private static Stream countries() throws Exception { + var reflections = new Reflections("com.devsoap.tincheck.countries"); + var countryClasses = reflections.getSubTypesOf(TinCountry.class); + var countryInstances = new ArrayList(); + for (Class countryClazz : countryClasses) { + countryInstances.add(countryClazz.getConstructor().newInstance()); + } + return countryInstances.stream().sorted().map(Arguments::of); + } +} \ No newline at end of file