├── .github └── CODEOWNERS ├── .gitignore ├── .jazzy.yml ├── .swiftlint.yml ├── .travis.yml ├── CHANGELOG.md ├── CountryKit.podspec ├── CountryKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── CountryKit iOS.xcscheme │ ├── CountryKit macOS.xcscheme │ ├── CountryKit tvOS.xcscheme │ └── CountryKit watchOS.xcscheme ├── CountryKit ├── CountryKit.h └── Info.plist ├── Gemfile ├── LICENSE.md ├── Makefile ├── Package.swift ├── README.md ├── Sources ├── Countries.swift ├── Country.swift ├── CountryKit.swift ├── Resources │ └── Flags.xcassets │ │ ├── Contents.json │ │ ├── ac.imageset │ │ ├── Contents.json │ │ └── ac.pdf │ │ ├── ad.imageset │ │ ├── Contents.json │ │ └── ad.pdf │ │ ├── ae.imageset │ │ ├── Contents.json │ │ └── ae.pdf │ │ ├── af.imageset │ │ ├── Contents.json │ │ └── af.pdf │ │ ├── ag.imageset │ │ ├── Contents.json │ │ └── ag.pdf │ │ ├── ai.imageset │ │ ├── Contents.json │ │ └── ai.pdf │ │ ├── al.imageset │ │ ├── Contents.json │ │ └── al.pdf │ │ ├── am.imageset │ │ ├── Contents.json │ │ └── am.pdf │ │ ├── ao.imageset │ │ ├── Contents.json │ │ └── ao.pdf │ │ ├── aq.imageset │ │ ├── Contents.json │ │ └── aq.pdf │ │ ├── ar.imageset │ │ ├── Contents.json │ │ └── ar.pdf │ │ ├── as.imageset │ │ ├── Contents.json │ │ └── as.pdf │ │ ├── at.imageset │ │ ├── Contents.json │ │ └── at.pdf │ │ ├── au.imageset │ │ ├── Contents.json │ │ └── au.pdf │ │ ├── aw.imageset │ │ ├── Contents.json │ │ └── aw.pdf │ │ ├── ax.imageset │ │ ├── Contents.json │ │ └── ax.pdf │ │ ├── az.imageset │ │ ├── Contents.json │ │ └── az.pdf │ │ ├── ba.imageset │ │ ├── Contents.json │ │ └── ba.pdf │ │ ├── bb.imageset │ │ ├── Contents.json │ │ └── bb.pdf │ │ ├── bd.imageset │ │ ├── Contents.json │ │ └── bd.pdf │ │ ├── be.imageset │ │ ├── Contents.json │ │ └── be.pdf │ │ ├── bf.imageset │ │ ├── Contents.json │ │ └── bf.pdf │ │ ├── bg.imageset │ │ ├── Contents.json │ │ └── bg.pdf │ │ ├── bh.imageset │ │ ├── Contents.json │ │ └── bh.pdf │ │ ├── bi.imageset │ │ ├── Contents.json │ │ └── bi.pdf │ │ ├── bj.imageset │ │ ├── Contents.json │ │ └── bj.pdf │ │ ├── bl.imageset │ │ ├── Contents.json │ │ └── bl.pdf │ │ ├── bm.imageset │ │ ├── Contents.json │ │ └── bm.pdf │ │ ├── bn.imageset │ │ ├── Contents.json │ │ └── bn.pdf │ │ ├── bo.imageset │ │ ├── Contents.json │ │ └── bo.pdf │ │ ├── bq.imageset │ │ ├── Contents.json │ │ └── bq.pdf │ │ ├── br.imageset │ │ ├── Contents.json │ │ └── br.pdf │ │ ├── bs.imageset │ │ ├── Contents.json │ │ └── bs.pdf │ │ ├── bt.imageset │ │ ├── Contents.json │ │ └── bt.pdf │ │ ├── bv.imageset │ │ ├── Contents.json │ │ └── bv.pdf │ │ ├── bw.imageset │ │ ├── Contents.json │ │ └── bw.pdf │ │ ├── by.imageset │ │ ├── Contents.json │ │ └── by.pdf │ │ ├── bz.imageset │ │ ├── Contents.json │ │ └── bz.pdf │ │ ├── ca.imageset │ │ ├── Contents.json │ │ └── ca.pdf │ │ ├── cc.imageset │ │ ├── Contents.json │ │ └── cc.pdf │ │ ├── cd.imageset │ │ ├── Contents.json │ │ └── cd.pdf │ │ ├── cf.imageset │ │ ├── Contents.json │ │ └── cf.pdf │ │ ├── cg.imageset │ │ ├── Contents.json │ │ └── cg.pdf │ │ ├── ch.imageset │ │ ├── Contents.json │ │ └── ch.pdf │ │ ├── ci.imageset │ │ ├── Contents.json │ │ └── ci.pdf │ │ ├── ck.imageset │ │ ├── Contents.json │ │ └── ck.pdf │ │ ├── cl.imageset │ │ ├── Contents.json │ │ └── cl.pdf │ │ ├── cm.imageset │ │ ├── Contents.json │ │ └── cm.pdf │ │ ├── cn.imageset │ │ ├── Contents.json │ │ └── cn.pdf │ │ ├── co.imageset │ │ ├── Contents.json │ │ └── co.pdf │ │ ├── cp.imageset │ │ ├── Contents.json │ │ └── cp.pdf │ │ ├── cr.imageset │ │ ├── Contents.json │ │ └── cr.pdf │ │ ├── cu.imageset │ │ ├── Contents.json │ │ └── cu.pdf │ │ ├── cv.imageset │ │ ├── Contents.json │ │ └── cv.pdf │ │ ├── cw.imageset │ │ ├── Contents.json │ │ └── cw.pdf │ │ ├── cx.imageset │ │ ├── Contents.json │ │ └── cx.pdf │ │ ├── cy.imageset │ │ ├── Contents.json │ │ └── cy.pdf │ │ ├── cz.imageset │ │ ├── Contents.json │ │ └── cz.pdf │ │ ├── de.imageset │ │ ├── Contents.json │ │ └── de.pdf │ │ ├── dg.imageset │ │ ├── Contents.json │ │ └── dg.pdf │ │ ├── dj.imageset │ │ ├── Contents.json │ │ └── dj.pdf │ │ ├── dk.imageset │ │ ├── Contents.json │ │ └── dk.pdf │ │ ├── dm.imageset │ │ ├── Contents.json │ │ └── dm.pdf │ │ ├── do.imageset │ │ ├── Contents.json │ │ └── do.pdf │ │ ├── dz.imageset │ │ ├── Contents.json │ │ └── dz.pdf │ │ ├── ea.imageset │ │ ├── Contents.json │ │ └── ea.pdf │ │ ├── ec.imageset │ │ ├── Contents.json │ │ └── ec.pdf │ │ ├── ee.imageset │ │ ├── Contents.json │ │ └── ee.pdf │ │ ├── eg.imageset │ │ ├── Contents.json │ │ └── eg.pdf │ │ ├── eh.imageset │ │ ├── Contents.json │ │ └── eh.pdf │ │ ├── er.imageset │ │ ├── Contents.json │ │ └── er.pdf │ │ ├── es.imageset │ │ ├── Contents.json │ │ └── es.pdf │ │ ├── et.imageset │ │ ├── Contents.json │ │ └── et.pdf │ │ ├── fi.imageset │ │ ├── Contents.json │ │ └── fi.pdf │ │ ├── fj.imageset │ │ ├── Contents.json │ │ └── fj.pdf │ │ ├── fk.imageset │ │ ├── Contents.json │ │ └── fk.pdf │ │ ├── fm.imageset │ │ ├── Contents.json │ │ └── fm.pdf │ │ ├── fo.imageset │ │ ├── Contents.json │ │ └── fo.pdf │ │ ├── fr.imageset │ │ ├── Contents.json │ │ └── fr.pdf │ │ ├── ga.imageset │ │ ├── Contents.json │ │ └── ga.pdf │ │ ├── gb.imageset │ │ ├── Contents.json │ │ └── gb.pdf │ │ ├── gd.imageset │ │ ├── Contents.json │ │ └── gd.pdf │ │ ├── ge.imageset │ │ ├── Contents.json │ │ └── ge.pdf │ │ ├── gf.imageset │ │ ├── Contents.json │ │ └── gf.pdf │ │ ├── gg.imageset │ │ ├── Contents.json │ │ └── gg.pdf │ │ ├── gh.imageset │ │ ├── Contents.json │ │ └── gh.pdf │ │ ├── gi.imageset │ │ ├── Contents.json │ │ └── gi.pdf │ │ ├── gl.imageset │ │ ├── Contents.json │ │ └── gl.pdf │ │ ├── gm.imageset │ │ ├── Contents.json │ │ └── gm.pdf │ │ ├── gn.imageset │ │ ├── Contents.json │ │ └── gn.pdf │ │ ├── gp.imageset │ │ ├── Contents.json │ │ └── gp.pdf │ │ ├── gq.imageset │ │ ├── Contents.json │ │ └── gq.pdf │ │ ├── gr.imageset │ │ ├── Contents.json │ │ └── gr.pdf │ │ ├── gs.imageset │ │ ├── Contents.json │ │ └── gs.pdf │ │ ├── gt.imageset │ │ ├── Contents.json │ │ └── gt.pdf │ │ ├── gu.imageset │ │ ├── Contents.json │ │ └── gu.pdf │ │ ├── gw.imageset │ │ ├── Contents.json │ │ └── gw.pdf │ │ ├── gy.imageset │ │ ├── Contents.json │ │ └── gy.pdf │ │ ├── hk.imageset │ │ ├── Contents.json │ │ └── hk.pdf │ │ ├── hm.imageset │ │ ├── Contents.json │ │ └── hm.pdf │ │ ├── hn.imageset │ │ ├── Contents.json │ │ └── hn.pdf │ │ ├── hr.imageset │ │ ├── Contents.json │ │ └── hr.pdf │ │ ├── ht.imageset │ │ ├── Contents.json │ │ └── ht.pdf │ │ ├── hu.imageset │ │ ├── Contents.json │ │ └── hu.pdf │ │ ├── ic.imageset │ │ ├── Contents.json │ │ └── ci.pdf │ │ ├── id.imageset │ │ ├── Contents.json │ │ └── id.pdf │ │ ├── ie.imageset │ │ ├── Contents.json │ │ └── ie.pdf │ │ ├── il.imageset │ │ ├── Contents.json │ │ └── il.pdf │ │ ├── im.imageset │ │ ├── Contents.json │ │ └── im.pdf │ │ ├── in.imageset │ │ ├── Contents.json │ │ └── in.pdf │ │ ├── io.imageset │ │ ├── Contents.json │ │ └── io.pdf │ │ ├── iq.imageset │ │ ├── Contents.json │ │ └── iq.pdf │ │ ├── ir.imageset │ │ ├── Contents.json │ │ └── ir.pdf │ │ ├── is.imageset │ │ ├── Contents.json │ │ └── is.pdf │ │ ├── it.imageset │ │ ├── Contents.json │ │ └── it.pdf │ │ ├── je.imageset │ │ ├── Contents.json │ │ └── je.pdf │ │ ├── jm.imageset │ │ ├── Contents.json │ │ └── jm.pdf │ │ ├── jo.imageset │ │ ├── Contents.json │ │ └── jo.pdf │ │ ├── jp.imageset │ │ ├── Contents.json │ │ └── jp.pdf │ │ ├── ke.imageset │ │ ├── Contents.json │ │ └── ke.pdf │ │ ├── kg.imageset │ │ ├── Contents.json │ │ └── kg.pdf │ │ ├── kh.imageset │ │ ├── Contents.json │ │ └── kh.pdf │ │ ├── ki.imageset │ │ ├── Contents.json │ │ └── ki.pdf │ │ ├── km.imageset │ │ ├── Contents.json │ │ └── km.pdf │ │ ├── kn.imageset │ │ ├── Contents.json │ │ └── kn.pdf │ │ ├── kp.imageset │ │ ├── Contents.json │ │ └── kp.pdf │ │ ├── kr.imageset │ │ ├── Contents.json │ │ └── kr.pdf │ │ ├── kw.imageset │ │ ├── Contents.json │ │ └── kw.pdf │ │ ├── ky.imageset │ │ ├── Contents.json │ │ └── ky.pdf │ │ ├── kz.imageset │ │ ├── Contents.json │ │ └── kz.pdf │ │ ├── la.imageset │ │ ├── Contents.json │ │ └── la.pdf │ │ ├── lb.imageset │ │ ├── Contents.json │ │ └── lb.pdf │ │ ├── lc.imageset │ │ ├── Contents.json │ │ └── lc.pdf │ │ ├── li.imageset │ │ ├── Contents.json │ │ └── li.pdf │ │ ├── lk.imageset │ │ ├── Contents.json │ │ └── lk.pdf │ │ ├── lr.imageset │ │ ├── Contents.json │ │ └── lr.pdf │ │ ├── ls.imageset │ │ ├── Contents.json │ │ └── ls.pdf │ │ ├── lt.imageset │ │ ├── Contents.json │ │ └── lt.pdf │ │ ├── lu.imageset │ │ ├── Contents.json │ │ └── lu.pdf │ │ ├── lv.imageset │ │ ├── Contents.json │ │ └── lv.pdf │ │ ├── ly.imageset │ │ ├── Contents.json │ │ └── ly.pdf │ │ ├── ma.imageset │ │ ├── Contents.json │ │ └── ma.pdf │ │ ├── mc.imageset │ │ ├── Contents.json │ │ └── mc.pdf │ │ ├── md.imageset │ │ ├── Contents.json │ │ └── md.pdf │ │ ├── me.imageset │ │ ├── Contents.json │ │ └── me.pdf │ │ ├── mf.imageset │ │ ├── Contents.json │ │ └── mf.pdf │ │ ├── mg.imageset │ │ ├── Contents.json │ │ └── mg.pdf │ │ ├── mh.imageset │ │ ├── Contents.json │ │ └── mh.pdf │ │ ├── mk.imageset │ │ ├── Contents.json │ │ └── mk.pdf │ │ ├── ml.imageset │ │ ├── Contents.json │ │ └── ml.pdf │ │ ├── mm.imageset │ │ ├── Contents.json │ │ └── mm.pdf │ │ ├── mn.imageset │ │ ├── Contents.json │ │ └── mn.pdf │ │ ├── mo.imageset │ │ ├── Contents.json │ │ └── mo.pdf │ │ ├── mp.imageset │ │ ├── Contents.json │ │ └── mp.pdf │ │ ├── mq.imageset │ │ ├── Contents.json │ │ └── mq.pdf │ │ ├── mr.imageset │ │ ├── Contents.json │ │ └── mr.pdf │ │ ├── ms.imageset │ │ ├── Contents.json │ │ └── ms.pdf │ │ ├── mt.imageset │ │ ├── Contents.json │ │ └── mt.pdf │ │ ├── mu.imageset │ │ ├── Contents.json │ │ └── mu.pdf │ │ ├── mv.imageset │ │ ├── Contents.json │ │ └── mv.pdf │ │ ├── mw.imageset │ │ ├── Contents.json │ │ └── mw.pdf │ │ ├── mx.imageset │ │ ├── Contents.json │ │ └── mx.pdf │ │ ├── my.imageset │ │ ├── Contents.json │ │ └── my.pdf │ │ ├── mz.imageset │ │ ├── Contents.json │ │ └── mz.pdf │ │ ├── na.imageset │ │ ├── Contents.json │ │ └── na.pdf │ │ ├── nc.imageset │ │ ├── Contents.json │ │ └── nc.pdf │ │ ├── ne.imageset │ │ ├── Contents.json │ │ └── ne.pdf │ │ ├── nf.imageset │ │ ├── Contents.json │ │ └── nf.pdf │ │ ├── ng.imageset │ │ ├── Contents.json │ │ └── ng.pdf │ │ ├── ni.imageset │ │ ├── Contents.json │ │ └── ni.pdf │ │ ├── nl.imageset │ │ ├── Contents.json │ │ └── nl.pdf │ │ ├── no.imageset │ │ ├── Contents.json │ │ └── no.pdf │ │ ├── np.imageset │ │ ├── Contents.json │ │ └── np.pdf │ │ ├── nr.imageset │ │ ├── Contents.json │ │ └── nr.pdf │ │ ├── nu.imageset │ │ ├── Contents.json │ │ └── nu.pdf │ │ ├── nz.imageset │ │ ├── Contents.json │ │ └── nz.pdf │ │ ├── om.imageset │ │ ├── Contents.json │ │ └── om.pdf │ │ ├── pa.imageset │ │ ├── Contents.json │ │ └── pa.pdf │ │ ├── pe.imageset │ │ ├── Contents.json │ │ └── pe.pdf │ │ ├── pf.imageset │ │ ├── Contents.json │ │ └── pf.pdf │ │ ├── pg.imageset │ │ ├── Contents.json │ │ └── pg.pdf │ │ ├── ph.imageset │ │ ├── Contents.json │ │ └── ph.pdf │ │ ├── pk.imageset │ │ ├── Contents.json │ │ └── pk.pdf │ │ ├── pl.imageset │ │ ├── Contents.json │ │ └── pl.pdf │ │ ├── pm.imageset │ │ ├── Contents.json │ │ └── pm.pdf │ │ ├── pn.imageset │ │ ├── Contents.json │ │ └── pn.pdf │ │ ├── pr.imageset │ │ ├── Contents.json │ │ └── pr.pdf │ │ ├── ps.imageset │ │ ├── Contents.json │ │ └── ps.pdf │ │ ├── pt.imageset │ │ ├── Contents.json │ │ └── pt.pdf │ │ ├── pw.imageset │ │ ├── Contents.json │ │ └── pw.pdf │ │ ├── py.imageset │ │ ├── Contents.json │ │ └── py.pdf │ │ ├── qa.imageset │ │ ├── Contents.json │ │ └── qa.pdf │ │ ├── re.imageset │ │ ├── Contents.json │ │ └── re.pdf │ │ ├── ro.imageset │ │ ├── Contents.json │ │ └── ro.pdf │ │ ├── rs.imageset │ │ ├── Contents.json │ │ └── rs.pdf │ │ ├── ru.imageset │ │ ├── Contents.json │ │ └── ru.pdf │ │ ├── rw.imageset │ │ ├── Contents.json │ │ └── rw.pdf │ │ ├── sa.imageset │ │ ├── Contents.json │ │ └── sa.pdf │ │ ├── sb.imageset │ │ ├── Contents.json │ │ └── sb.pdf │ │ ├── sc.imageset │ │ ├── Contents.json │ │ └── sc.pdf │ │ ├── sd.imageset │ │ ├── Contents.json │ │ └── sd.pdf │ │ ├── se.imageset │ │ ├── Contents.json │ │ └── se.pdf │ │ ├── sg.imageset │ │ ├── Contents.json │ │ └── sg.pdf │ │ ├── sh.imageset │ │ ├── Contents.json │ │ └── sh.pdf │ │ ├── si.imageset │ │ ├── Contents.json │ │ └── si.pdf │ │ ├── sj.imageset │ │ ├── Contents.json │ │ └── sj.pdf │ │ ├── sk.imageset │ │ ├── Contents.json │ │ └── sk.pdf │ │ ├── sl.imageset │ │ ├── Contents.json │ │ └── sl.pdf │ │ ├── sm.imageset │ │ ├── Contents.json │ │ └── sm.pdf │ │ ├── sn.imageset │ │ ├── Contents.json │ │ └── sn.pdf │ │ ├── so.imageset │ │ ├── Contents.json │ │ └── so.pdf │ │ ├── sr.imageset │ │ ├── Contents.json │ │ └── sr.pdf │ │ ├── ss.imageset │ │ ├── Contents.json │ │ └── ss.pdf │ │ ├── st.imageset │ │ ├── Contents.json │ │ └── st.pdf │ │ ├── sv.imageset │ │ ├── Contents.json │ │ └── sv.pdf │ │ ├── sx.imageset │ │ ├── Contents.json │ │ └── sx.pdf │ │ ├── sy.imageset │ │ ├── Contents.json │ │ └── sy.pdf │ │ ├── sz.imageset │ │ ├── Contents.json │ │ └── sz.pdf │ │ ├── ta.imageset │ │ ├── Contents.json │ │ └── ta.pdf │ │ ├── tc.imageset │ │ ├── Contents.json │ │ └── tc.pdf │ │ ├── td.imageset │ │ ├── Contents.json │ │ └── td.pdf │ │ ├── tf.imageset │ │ ├── Contents.json │ │ └── tf.pdf │ │ ├── tg.imageset │ │ ├── Contents.json │ │ └── tg.pdf │ │ ├── th.imageset │ │ ├── Contents.json │ │ └── th.pdf │ │ ├── tj.imageset │ │ ├── Contents.json │ │ └── tj.pdf │ │ ├── tk.imageset │ │ ├── Contents.json │ │ └── tk.pdf │ │ ├── tl.imageset │ │ ├── Contents.json │ │ └── tl.pdf │ │ ├── tm.imageset │ │ ├── Contents.json │ │ └── tm.pdf │ │ ├── tn.imageset │ │ ├── Contents.json │ │ └── tn.pdf │ │ ├── to.imageset │ │ ├── Contents.json │ │ └── to.pdf │ │ ├── tr.imageset │ │ ├── Contents.json │ │ └── tr.pdf │ │ ├── tt.imageset │ │ ├── Contents.json │ │ └── tt.pdf │ │ ├── tv.imageset │ │ ├── Contents.json │ │ └── tv.pdf │ │ ├── tw.imageset │ │ ├── Contents.json │ │ └── tw.pdf │ │ ├── tz.imageset │ │ ├── Contents.json │ │ └── tz.pdf │ │ ├── ua.imageset │ │ ├── Contents.json │ │ └── ua.pdf │ │ ├── ug.imageset │ │ ├── Contents.json │ │ └── ug.pdf │ │ ├── um.imageset │ │ ├── Contents.json │ │ └── um.pdf │ │ ├── us.imageset │ │ ├── Contents.json │ │ └── us.pdf │ │ ├── uy.imageset │ │ ├── Contents.json │ │ └── uy.pdf │ │ ├── uz.imageset │ │ ├── Contents.json │ │ └── uz.pdf │ │ ├── va.imageset │ │ ├── Contents.json │ │ └── va.pdf │ │ ├── vc.imageset │ │ ├── Contents.json │ │ └── vc.pdf │ │ ├── ve.imageset │ │ ├── Contents.json │ │ └── ve.pdf │ │ ├── vg.imageset │ │ ├── Contents.json │ │ └── vg.pdf │ │ ├── vi.imageset │ │ ├── Contents.json │ │ └── vi.pdf │ │ ├── vn.imageset │ │ ├── Contents.json │ │ └── vn.pdf │ │ ├── vu.imageset │ │ ├── Contents.json │ │ └── vu.pdf │ │ ├── wf.imageset │ │ ├── Contents.json │ │ └── wf.pdf │ │ ├── ws.imageset │ │ ├── Contents.json │ │ └── ws.pdf │ │ ├── xk.imageset │ │ ├── Contents.json │ │ └── xk.pdf │ │ ├── ye.imageset │ │ ├── Contents.json │ │ └── ye.pdf │ │ ├── yt.imageset │ │ ├── Contents.json │ │ └── yt.pdf │ │ ├── za.imageset │ │ ├── Contents.json │ │ └── za.pdf │ │ ├── zm.imageset │ │ ├── Contents.json │ │ └── zm.pdf │ │ └── zw.imageset │ │ ├── Contents.json │ │ └── zw.pdf └── String+Utils.swift ├── Support ├── CountryKit.h ├── Info-Tests.plist ├── Info-tvOS.plist └── Info.plist ├── Tests └── CountryKitTests.swift ├── Vendor ├── README.md ├── countries.json ├── countries.swift.gyb.py ├── gyb ├── gyb.py └── gyb.pyc └── docs ├── .gitignore ├── Classes.html ├── Classes ├── Country.html └── CountryKit.html ├── Instance Variables.html ├── Typealiases.html ├── badge.svg ├── css ├── highlight.css └── jazzy.css ├── docsets ├── .docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ └── CountryKit.html │ │ ├── Instance Variables.html │ │ ├── Typealiases.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── search.json │ │ └── docSet.dsidx ├── .tgz ├── CountryKit.docset │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── Documents │ │ ├── Classes.html │ │ ├── Classes │ │ │ ├── Country.html │ │ │ └── CountryKit.html │ │ ├── Instance Variables.html │ │ ├── Typealiases.html │ │ ├── badge.svg │ │ ├── css │ │ │ ├── highlight.css │ │ │ └── jazzy.css │ │ ├── img │ │ │ ├── carat.png │ │ │ ├── dash.png │ │ │ └── gh.png │ │ ├── index.html │ │ ├── js │ │ │ ├── jazzy.js │ │ │ └── jquery.min.js │ │ └── search.json │ │ └── docSet.dsidx └── CountryKit.tgz ├── img ├── carat.png ├── dash.png └── gh.png ├── index.html ├── js ├── jazzy.js └── jquery.min.js └── search.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | # Default owners for everything in the repo. 2 | * @alemar11 3 | -------------------------------------------------------------------------------- /.jazzy.yml: -------------------------------------------------------------------------------- 1 | module: CountryKit 2 | author: Alessandro Marzoli 3 | author_url: http://www.tinrobots.org 4 | github_url: https://github.com/tinrobots/countrykit 5 | copyright: "© 2016-2018 [Tin Robots](http://www.tinrobots.org)" 6 | clean: true 7 | podspec: CountryKit.podspec -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ### 2.0.0 ⭐ 4 | 5 | - CountryKit is now completely migrated to **Swift 5**. 🎉 6 | 7 | ### 1.4.0 8 | 9 | - Swift 4.2 and Xcode 10 support. 10 | 11 | ### 1.3.0 12 | 13 | - The list of the countries is now statically generated istead of beeing loaded from a JSON. 14 | 15 | ### 1.2.0 16 | 17 | - Swift 4.1 support. 18 | 19 | ### 1.1.0 20 | 21 | - Added `CustomStringConvertible` to `Country.` 22 | - Refinements 23 | 24 | ### 1.0.0 ⭐ 25 | 26 | - Initial release. 27 | -------------------------------------------------------------------------------- /CountryKit.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'CountryKit' 3 | s.version = '2.0.1' 4 | s.license = 'MIT' 5 | s.documentation_url = 'http://www.alessandromarzoli.com/CountryKit' 6 | s.summary = 'A μlibrary in Swift containing all the countries with their localized name, ISO code, phone code, country code, flag image and emoji.' 7 | s.homepage = 'https://github.com/alemar11/CountryKit' 8 | s.authors = { 'Alessandro Marzoli' => 'me@alessandromarzoli.com' } 9 | s.source = { :git => 'https://github.com/alemar11/CountryKit.git', :tag => s.version } 10 | s.requires_arc = true 11 | s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0'} 12 | s.swift_version = "5.0" 13 | s.ios.deployment_target = '10.0' 14 | s.osx.deployment_target = '10.12' 15 | s.tvos.deployment_target = '10.0' 16 | s.watchos.deployment_target = '3.0' 17 | 18 | s.source_files = 'Sources/*.swift', 19 | 'Support/*.{h,m}' 20 | 21 | s.resources = 'Sources/Flags.xcassets' 22 | 23 | end 24 | -------------------------------------------------------------------------------- /CountryKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /CountryKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /CountryKit.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Latest 7 | 8 | 9 | -------------------------------------------------------------------------------- /CountryKit.xcodeproj/xcshareddata/IDETemplateMacros.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | FILEHEADER 6 | CountryKit 7 | 8 | 9 | -------------------------------------------------------------------------------- /CountryKit/CountryKit.h: -------------------------------------------------------------------------------- 1 | // 2 | // CountryKit.h 3 | // CountryKit 4 | // 5 | // Created by Alessandro Marzoli on 14/09/17. 6 | // Copyright © 2017 Tinrobots. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | //! Project version number for CountryKit. 12 | FOUNDATION_EXPORT double CountryKitVersionNumber; 13 | 14 | //! Project version string for CountryKit. 15 | FOUNDATION_EXPORT const unsigned char CountryKitVersionString[]; 16 | 17 | // In this header, you should import all the public headers of your framework using statements like #import 18 | 19 | 20 | -------------------------------------------------------------------------------- /CountryKit/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | group :release do 4 | gem "jazzy" 5 | end -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | generate: 2 | ./Vendor/gyb --line-directive '' -o ./Sources/Countries.swift ./Vendor/countries.swift.gyb.py 3 | 4 | .PHONY: generate 5 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version:5.3 2 | 3 | import PackageDescription 4 | 5 | let package = Package( 6 | name: "CountryKit", 7 | products: [ 8 | .library(name: "CountryKit", targets: ["CountryKit"]) 9 | ], 10 | targets: [ 11 | .target(name: "CountryKit", path: "Sources"), 12 | //.testTarget(name: "Tests", dependencies: ["CountryKit"], path: "Tests") 13 | ] 14 | ) 15 | package.swiftLanguageVersions = [.v5] 16 | package.platforms = [.macOS(.v10_12), .iOS(.v10), .tvOS(.v10), .watchOS(.v3)] 17 | -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ac.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ac.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ac.imageset/ac.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ac.imageset/ac.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ad.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ad.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ad.imageset/ad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ad.imageset/ad.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ae.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ae.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ae.imageset/ae.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ae.imageset/ae.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/af.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "af.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/af.imageset/af.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/af.imageset/af.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ag.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ag.imageset/ag.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ag.imageset/ag.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ai.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ai.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ai.imageset/ai.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ai.imageset/ai.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/al.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "al.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/al.imageset/al.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/al.imageset/al.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/am.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "am.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/am.imageset/am.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/am.imageset/am.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ao.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ao.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ao.imageset/ao.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ao.imageset/ao.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/aq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "aq.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/aq.imageset/aq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/aq.imageset/aq.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ar.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ar.imageset/ar.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ar.imageset/ar.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/as.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "as.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/as.imageset/as.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/as.imageset/as.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/at.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "at.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/at.imageset/at.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/at.imageset/at.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/au.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "au.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/au.imageset/au.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/au.imageset/au.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/aw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "aw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/aw.imageset/aw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/aw.imageset/aw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ax.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ax.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ax.imageset/ax.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ax.imageset/ax.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/az.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "az.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/az.imageset/az.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/az.imageset/az.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ba.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ba.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ba.imageset/ba.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ba.imageset/ba.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bb.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bb.imageset/bb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bb.imageset/bb.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bd.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bd.imageset/bd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bd.imageset/bd.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/be.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "be.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/be.imageset/be.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/be.imageset/be.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bf.imageset/bf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bf.imageset/bf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bg.imageset/bg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bg.imageset/bg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bh.imageset/bh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bh.imageset/bh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bi.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bi.imageset/bi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bi.imageset/bi.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bj.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bj.imageset/bj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bj.imageset/bj.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bl.imageset/bl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bl.imageset/bl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bm.imageset/bm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bm.imageset/bm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bn.imageset/bn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bn.imageset/bn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bo.imageset/bo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bo.imageset/bo.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bq.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bq.imageset/bq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bq.imageset/bq.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/br.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "br.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/br.imageset/br.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/br.imageset/br.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bs.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bs.imageset/bs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bs.imageset/bs.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bt.imageset/bt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bt.imageset/bt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bv.imageset/bv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bv.imageset/bv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bw.imageset/bw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bw.imageset/bw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/by.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "by.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/by.imageset/by.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/by.imageset/by.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "bz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/bz.imageset/bz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/bz.imageset/bz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ca.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ca.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ca.imageset/ca.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ca.imageset/ca.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cc.imageset/cc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cc.imageset/cc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cd.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cd.imageset/cd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cd.imageset/cd.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cf.imageset/cf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cf.imageset/cf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cg.imageset/cg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cg.imageset/cg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ch.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ch.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ch.imageset/ch.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ch.imageset/ch.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ci.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ci.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ci.imageset/ci.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ci.imageset/ci.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ck.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ck.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ck.imageset/ck.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ck.imageset/ck.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cl.imageset/cl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cl.imageset/cl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cm.imageset/cm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cm.imageset/cm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cn.imageset/cn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cn.imageset/cn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/co.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "co.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/co.imageset/co.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/co.imageset/co.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cp.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cp.imageset/cp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cp.imageset/cp.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cr.imageset/cr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cr.imageset/cr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cu.imageset/cu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cu.imageset/cu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cv.imageset/cv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cv.imageset/cv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cw.imageset/cw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cw.imageset/cw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cx.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cx.imageset/cx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cx.imageset/cx.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cy.imageset/cy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cy.imageset/cy.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/cz.imageset/cz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/cz.imageset/cz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/de.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "de.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/de.imageset/de.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/de.imageset/de.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dg.imageset/dg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/dg.imageset/dg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dj.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dj.imageset/dj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/dj.imageset/dj.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dk.imageset/dk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/dk.imageset/dk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dm.imageset/dm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/dm.imageset/dm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/do.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "do.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/do.imageset/do.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/do.imageset/do.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "dz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/dz.imageset/dz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/dz.imageset/dz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ea.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ea.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ea.imageset/ea.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ea.imageset/ea.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ec.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ec.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ec.imageset/ec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ec.imageset/ec.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ee.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ee.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ee.imageset/ee.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ee.imageset/ee.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/eg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "eg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/eg.imageset/eg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/eg.imageset/eg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/eh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "eh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/eh.imageset/eh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/eh.imageset/eh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/er.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "er.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/er.imageset/er.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/er.imageset/er.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/es.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "es.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/es.imageset/es.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/es.imageset/es.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/et.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "et.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/et.imageset/et.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/et.imageset/et.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fi.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fi.imageset/fi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fi.imageset/fi.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fj.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fj.imageset/fj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fj.imageset/fj.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fk.imageset/fk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fk.imageset/fk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fm.imageset/fm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fm.imageset/fm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fo.imageset/fo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fo.imageset/fo.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "fr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/fr.imageset/fr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/fr.imageset/fr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ga.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ga.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ga.imageset/ga.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ga.imageset/ga.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gb.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gb.imageset/gb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gb.imageset/gb.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gd.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gd.imageset/gd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gd.imageset/gd.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ge.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ge.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ge.imageset/ge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ge.imageset/ge.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gf.imageset/gf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gf.imageset/gf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gg.imageset/gg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gg.imageset/gg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gh.imageset/gh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gh.imageset/gh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gi.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gi.imageset/gi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gi.imageset/gi.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gl.imageset/gl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gl.imageset/gl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gm.imageset/gm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gm.imageset/gm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gn.imageset/gn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gn.imageset/gn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gp.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gp.imageset/gp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gp.imageset/gp.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gq.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gq.imageset/gq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gq.imageset/gq.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gr.imageset/gr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gr.imageset/gr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gs.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gs.imageset/gs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gs.imageset/gs.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gt.imageset/gt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gt.imageset/gt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gu.imageset/gu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gu.imageset/gu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gw.imageset/gw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gw.imageset/gw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "gy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/gy.imageset/gy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/gy.imageset/gy.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hk.imageset/hk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/hk.imageset/hk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hm.imageset/hm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/hm.imageset/hm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hn.imageset/hn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/hn.imageset/hn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hr.imageset/hr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/hr.imageset/hr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ht.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ht.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ht.imageset/ht.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ht.imageset/ht.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/hu.imageset/hu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/hu.imageset/hu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ci.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ic.imageset/ci.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ic.imageset/ci.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/id.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "id.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/id.imageset/id.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/id.imageset/id.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ie.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ie.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ie.imageset/ie.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ie.imageset/ie.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/il.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "il.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/il.imageset/il.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/il.imageset/il.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/im.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "im.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/im.imageset/im.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/im.imageset/im.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/in.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "in.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/in.imageset/in.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/in.imageset/in.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/io.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "io.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/io.imageset/io.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/io.imageset/io.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/iq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "iq.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/iq.imageset/iq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/iq.imageset/iq.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ir.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ir.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ir.imageset/ir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ir.imageset/ir.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/is.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "is.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/is.imageset/is.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/is.imageset/is.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/it.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "it.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/it.imageset/it.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/it.imageset/it.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/je.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "je.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/je.imageset/je.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/je.imageset/je.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jm.imageset/jm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/jm.imageset/jm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jo.imageset/jo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/jo.imageset/jo.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "jp.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/jp.imageset/jp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/jp.imageset/jp.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ke.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ke.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ke.imageset/ke.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ke.imageset/ke.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kg.imageset/kg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kg.imageset/kg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kh.imageset/kh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kh.imageset/kh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ki.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ki.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ki.imageset/ki.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ki.imageset/ki.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/km.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "km.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/km.imageset/km.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/km.imageset/km.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kn.imageset/kn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kn.imageset/kn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kp.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kp.imageset/kp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kp.imageset/kp.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kr.imageset/kr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kr.imageset/kr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kw.imageset/kw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kw.imageset/kw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ky.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ky.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ky.imageset/ky.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ky.imageset/ky.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "kz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/kz.imageset/kz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/kz.imageset/kz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/la.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "la.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/la.imageset/la.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/la.imageset/la.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lb.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lb.imageset/lb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lb.imageset/lb.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lc.imageset/lc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lc.imageset/lc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/li.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "li.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/li.imageset/li.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/li.imageset/li.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lk.imageset/lk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lk.imageset/lk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lr.imageset/lr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lr.imageset/lr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ls.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ls.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ls.imageset/ls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ls.imageset/ls.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lt.imageset/lt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lt.imageset/lt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lu.imageset/lu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lu.imageset/lu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "lv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/lv.imageset/lv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/lv.imageset/lv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ly.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ly.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ly.imageset/ly.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ly.imageset/ly.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ma.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ma.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ma.imageset/ma.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ma.imageset/ma.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mc.imageset/mc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mc.imageset/mc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/md.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "md.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/md.imageset/md.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/md.imageset/md.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/me.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "me.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/me.imageset/me.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/me.imageset/me.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mf.imageset/mf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mf.imageset/mf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mg.imageset/mg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mg.imageset/mg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mh.imageset/mh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mh.imageset/mh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mk.imageset/mk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mk.imageset/mk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ml.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ml.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ml.imageset/ml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ml.imageset/ml.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mm.imageset/mm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mm.imageset/mm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mn.imageset/mn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mn.imageset/mn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mo.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mo.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mo.imageset/mo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mo.imageset/mo.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mp.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mp.imageset/mp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mp.imageset/mp.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mq.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mq.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mq.imageset/mq.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mq.imageset/mq.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mr.imageset/mr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mr.imageset/mr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ms.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ms.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ms.imageset/ms.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ms.imageset/ms.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mt.imageset/mt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mt.imageset/mt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mu.imageset/mu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mu.imageset/mu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mv.imageset/mv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mv.imageset/mv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mw.imageset/mw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mw.imageset/mw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mx.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mx.imageset/mx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mx.imageset/mx.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/my.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "my.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/my.imageset/my.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/my.imageset/my.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "mz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/mz.imageset/mz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/mz.imageset/mz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/na.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "na.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/na.imageset/na.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/na.imageset/na.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nc.imageset/nc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nc.imageset/nc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ne.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ne.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ne.imageset/ne.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ne.imageset/ne.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nf.imageset/nf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nf.imageset/nf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ng.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ng.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ng.imageset/ng.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ng.imageset/ng.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ni.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ni.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ni.imageset/ni.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ni.imageset/ni.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nl.imageset/nl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nl.imageset/nl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/no.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "no.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/no.imageset/no.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/no.imageset/no.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/np.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "np.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/np.imageset/np.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/np.imageset/np.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nr.imageset/nr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nr.imageset/nr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nu.imageset/nu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nu.imageset/nu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "nz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/nz.imageset/nz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/nz.imageset/nz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/om.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "om.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/om.imageset/om.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/om.imageset/om.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pa.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pa.imageset/pa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pa.imageset/pa.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pe.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pe.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pe.imageset/pe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pe.imageset/pe.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pf.imageset/pf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pf.imageset/pf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pg.imageset/pg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pg.imageset/pg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ph.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ph.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ph.imageset/ph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ph.imageset/ph.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pk.imageset/pk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pk.imageset/pk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pl.imageset/pl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pl.imageset/pl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pm.imageset/pm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pm.imageset/pm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pn.imageset/pn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pn.imageset/pn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pr.imageset/pr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pr.imageset/pr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ps.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ps.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ps.imageset/ps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ps.imageset/ps.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pt.imageset/pt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pt.imageset/pt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "pw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/pw.imageset/pw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/pw.imageset/pw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/py.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "py.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/py.imageset/py.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/py.imageset/py.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/qa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "qa.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/qa.imageset/qa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/qa.imageset/qa.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/re.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "re.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/re.imageset/re.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/re.imageset/re.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ro.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ro.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ro.imageset/ro.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ro.imageset/ro.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/rs.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rs.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/rs.imageset/rs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/rs.imageset/rs.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ru.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ru.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ru.imageset/ru.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ru.imageset/ru.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/rw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "rw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/rw.imageset/rw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/rw.imageset/rw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sa.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sa.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sa.imageset/sa.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sa.imageset/sa.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sb.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sb.imageset/sb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sb.imageset/sb.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sc.imageset/sc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sc.imageset/sc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sd.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sd.imageset/sd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sd.imageset/sd.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/se.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "se.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/se.imageset/se.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/se.imageset/se.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sg.imageset/sg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sg.imageset/sg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sh.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sh.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sh.imageset/sh.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sh.imageset/sh.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/si.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "si.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/si.imageset/si.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/si.imageset/si.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sj.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sj.imageset/sj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sj.imageset/sj.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sk.imageset/sk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sk.imageset/sk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sl.imageset/sl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sl.imageset/sl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sm.imageset/sm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sm.imageset/sm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sn.imageset/sn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sn.imageset/sn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/so.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "so.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/so.imageset/so.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/so.imageset/so.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sr.imageset/sr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sr.imageset/sr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ss.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ss.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ss.imageset/ss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ss.imageset/ss.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/st.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "st.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/st.imageset/st.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/st.imageset/st.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sv.imageset/sv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sv.imageset/sv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sx.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sx.imageset/sx.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sx.imageset/sx.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sy.imageset/sy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sy.imageset/sy.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/sz.imageset/sz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/sz.imageset/sz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ta.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ta.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ta.imageset/ta.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ta.imageset/ta.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tc.imageset/tc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tc.imageset/tc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/td.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "td.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/td.imageset/td.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/td.imageset/td.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tf.imageset/tf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tf.imageset/tf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tg.imageset/tg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tg.imageset/tg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/th.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "th.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/th.imageset/th.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/th.imageset/th.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tj.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tj.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tj.imageset/tj.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tj.imageset/tj.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tk.imageset/tk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tk.imageset/tk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tl.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tl.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tl.imageset/tl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tl.imageset/tl.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tm.imageset/tm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tm.imageset/tm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tn.imageset/tn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tn.imageset/tn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/to.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "to.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/to.imageset/to.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/to.imageset/to.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tr.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tr.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tr.imageset/tr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tr.imageset/tr.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tt.imageset/tt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tt.imageset/tt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tv.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tv.imageset/tv.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tv.imageset/tv.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tw.imageset/tw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tw.imageset/tw.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "tz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/tz.imageset/tz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/tz.imageset/tz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ua.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ua.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ua.imageset/ua.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ua.imageset/ua.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ug.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ug.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ug.imageset/ug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ug.imageset/ug.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/um.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "um.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/um.imageset/um.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/um.imageset/um.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/us.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "us.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/us.imageset/us.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/us.imageset/us.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/uy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "uy.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/uy.imageset/uy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/uy.imageset/uy.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/uz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "uz.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/uz.imageset/uz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/uz.imageset/uz.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/va.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "va.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/va.imageset/va.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/va.imageset/va.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "vc.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vc.imageset/vc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/vc.imageset/vc.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ve.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ve.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ve.imageset/ve.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ve.imageset/ve.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "vg.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vg.imageset/vg.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/vg.imageset/vg.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "vi.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vi.imageset/vi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/vi.imageset/vi.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vn.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "vn.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vn.imageset/vn.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/vn.imageset/vn.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "vu.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/vu.imageset/vu.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/vu.imageset/vu.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/wf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "wf.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/wf.imageset/wf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/wf.imageset/wf.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ws.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ws.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ws.imageset/ws.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ws.imageset/ws.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/xk.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "xk.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/xk.imageset/xk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/xk.imageset/xk.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "ye.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/ye.imageset/ye.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/ye.imageset/ye.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/yt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "yt.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/yt.imageset/yt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/yt.imageset/yt.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/za.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "za.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/za.imageset/za.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/za.imageset/za.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/zm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zm.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/zm.imageset/zm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/zm.imageset/zm.pdf -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/zw.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "zw.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } -------------------------------------------------------------------------------- /Sources/Resources/Flags.xcassets/zw.imageset/zw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Sources/Resources/Flags.xcassets/zw.imageset/zw.pdf -------------------------------------------------------------------------------- /Support/CountryKit.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | //! Project version number for CountryKit. 4 | FOUNDATION_EXPORT double CountryKitVersionNumber; 5 | 6 | //! Project version string for CountryKit. 7 | FOUNDATION_EXPORT const unsigned char CountryKitVersionString[]; 8 | 9 | 10 | -------------------------------------------------------------------------------- /Support/Info-Tests.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 2.0.0 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Support/Info-tvOS.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 2.0.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | UIRequiredDeviceCapabilities 24 | 25 | arm64 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Support/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 2.0.0 19 | CFBundleVersion 20 | $(CURRENT_PROJECT_VERSION) 21 | NSPrincipalClass 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /Vendor/README.md: -------------------------------------------------------------------------------- 1 | To generate `Countries.swift`: 2 | 3 | ```python 4 | ./gyb --line-directive '' countries.swift.gyb.py -o Countries.swift 5 | ``` 6 | 7 | or use the `make` command (see MakeFile) 8 | 9 | Additional informations [here](https://github.com/jph00/gyb) and [here](https://nshipster.com/swift-gyb/) -------------------------------------------------------------------------------- /Vendor/countries.swift.gyb.py: -------------------------------------------------------------------------------- 1 | // CountryKit 2 | 3 | % warning = "This file was automatically generated and should not be edited." 4 | // MARK: - ${warning} 5 | 6 | let _countries = [ 7 | %{ 8 | import json 9 | }% 10 | % with open('countries.json') as file: 11 | % for country in json.load(file): 12 | %{ 13 | name = country["name"].encode('utf-8') 14 | phoneCode = country.get("phoneCode") 15 | iso = country["iso"] 16 | countryCode = country.get('countryCode') 17 | }% 18 | % if phoneCode and countryCode: 19 | Country(name: "${name}", iso: "${iso}", phoneCode: ${phoneCode}, countryCode: ${countryCode}), 20 | % elif phoneCode is not None: 21 | Country(name: "${name}", iso: "${iso}", phoneCode: ${phoneCode}, countryCode: nil), 22 | % elif countryCode is not None: 23 | Country(name: "${name}", iso: "${iso}", phoneCode: nil, countryCode: ${countryCode}), 24 | % else: 25 | Country(name: "${name}", iso: "${iso}", phoneCode: nil, countryCode: nil), 26 | %end 27 | %end 28 | %end 29 | ] 30 | -------------------------------------------------------------------------------- /Vendor/gyb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2.7 2 | import gyb 3 | gyb.main() 4 | -------------------------------------------------------------------------------- /Vendor/gyb.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/Vendor/gyb.pyc -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # macOS 2 | .DS_Store 3 | 4 | # Jazzy 5 | undocumented.json 6 | docset/.docset/Contents/Resources/Documents/undocumented.json 7 | -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleIdentifier 6 | com.jazzy. 7 | CFBundleName 8 | 9 | DocSetPlatformFamily 10 | 11 | isDashDocset 12 | 13 | dashIndexFilePath 14 | index.html 15 | isJavaScriptEnabled 16 | 17 | DashDocSetFamily 18 | dashtoc 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/badge.svg: -------------------------------------------------------------------------------- 1 | documentationdocumentation100%100% -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/.tgz -------------------------------------------------------------------------------- /docs/docsets/CountryKit.docset/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleIdentifier 6 | com.jazzy.countrykit 7 | CFBundleName 8 | CountryKit 9 | DocSetPlatformFamily 10 | countrykit 11 | isDashDocset 12 | 13 | dashIndexFilePath 14 | index.html 15 | isJavaScriptEnabled 16 | 17 | DashDocSetFamily 18 | dashtoc 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/carat.png -------------------------------------------------------------------------------- /docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/dash.png -------------------------------------------------------------------------------- /docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/CountryKit.docset/Contents/Resources/Documents/img/gh.png -------------------------------------------------------------------------------- /docs/docsets/CountryKit.docset/Contents/Resources/docSet.dsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/CountryKit.docset/Contents/Resources/docSet.dsidx -------------------------------------------------------------------------------- /docs/docsets/CountryKit.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/docsets/CountryKit.tgz -------------------------------------------------------------------------------- /docs/img/carat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/img/carat.png -------------------------------------------------------------------------------- /docs/img/dash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/img/dash.png -------------------------------------------------------------------------------- /docs/img/gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alemar11/CountryKit/1af5e9ab8c838fa5f68d5b88f3e03b8d18b55605/docs/img/gh.png --------------------------------------------------------------------------------