iss-ctrl 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.editorconfig +13 -0
- package/.eslintrc.json +90 -0
- package/README.md +25 -24
- package/angular.json +190 -0
- package/bun.lock +1998 -0
- package/package.json +48 -19
- package/projects/iss/.eslintrc.json +37 -0
- package/projects/iss/README.md +24 -0
- package/projects/iss/ng-package.json +10 -0
- package/projects/iss/package.json +17 -0
- package/projects/iss/src/components/controls/base/control.base.ts +77 -0
- package/projects/iss/src/components/controls/base/viewer.base.ts +8 -0
- package/projects/iss/src/components/controls/base/wrapper.base.ts +85 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.control.ts +93 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.viewer.ts +15 -0
- package/projects/iss/src/components/controls/checkbox/checkbox.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/chips/chips.control.ts +99 -0
- package/projects/iss/src/components/controls/chips/chips.viewer.ts +23 -0
- package/projects/iss/src/components/controls/chips/chips.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.control.ts +85 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.viewer.ts +14 -0
- package/projects/iss/src/components/controls/date-picker/date-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.control.ts +143 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.viewer.ts +22 -0
- package/projects/iss/src/components/controls/date-range-picker/date-range-picker.wrapper.ts +35 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.control.ts +109 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.viewer.ts +17 -0
- package/projects/iss/src/components/controls/datetime-picker/datetime-picker.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/file-picker/attachment.viewer.ts +165 -0
- package/projects/iss/src/components/controls/file-picker/droppable.directive.ts +28 -0
- package/projects/iss/src/components/controls/file-picker/file-handler.service.ts +115 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.control.ts +187 -0
- package/projects/iss/src/components/controls/file-picker/file-picker.wrapper.ts +120 -0
- package/projects/iss/src/components/controls/input/input.control.ts +95 -0
- package/projects/iss/src/components/controls/input/input.viewer.ts +11 -0
- package/projects/iss/src/components/controls/input/input.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/mobile/flags/ad.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ae.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/af.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ag.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ai.svg +35 -0
- package/projects/iss/src/components/controls/mobile/flags/al.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/am.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ao.svg +19 -0
- package/projects/iss/src/components/controls/mobile/flags/aq.svg +45 -0
- package/projects/iss/src/components/controls/mobile/flags/ar.svg +66 -0
- package/projects/iss/src/components/controls/mobile/flags/as.svg +225 -0
- package/projects/iss/src/components/controls/mobile/flags/at.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/au.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/aw.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ax.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/az.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ba.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/bb.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bd.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/be.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bf.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/bg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bh.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/bi.svg +26 -0
- package/projects/iss/src/components/controls/mobile/flags/bj.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bm.svg +374 -0
- package/projects/iss/src/components/controls/mobile/flags/bn.svg +70 -0
- package/projects/iss/src/components/controls/mobile/flags/bo.svg +3625 -0
- package/projects/iss/src/components/controls/mobile/flags/bq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/br.svg +92 -0
- package/projects/iss/src/components/controls/mobile/flags/bs.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/bt.svg +487 -0
- package/projects/iss/src/components/controls/mobile/flags/bv.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/bw.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/by.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/bz.svg +629 -0
- package/projects/iss/src/components/controls/mobile/flags/ca.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cc.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/cd.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/cg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ch.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ci.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ck.svg +29 -0
- package/projects/iss/src/components/controls/mobile/flags/cl.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/cm.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/cn.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/co.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/cr.svg +1332 -0
- package/projects/iss/src/components/controls/mobile/flags/cu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/cv.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cw.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/cx.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/cy.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/cz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/de.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dj.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/dk.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/dm.svg +198 -0
- package/projects/iss/src/components/controls/mobile/flags/do.svg +238 -0
- package/projects/iss/src/components/controls/mobile/flags/dz.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ec.svg +1292 -0
- package/projects/iss/src/components/controls/mobile/flags/ee.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/eg.svg +125 -0
- package/projects/iss/src/components/controls/mobile/flags/eh.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/er.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/es.svg +445 -0
- package/projects/iss/src/components/controls/mobile/flags/et.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/eu.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/fi.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/fj.svg +203 -0
- package/projects/iss/src/components/controls/mobile/flags/fk.svg +922 -0
- package/projects/iss/src/components/controls/mobile/flags/flags.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/flags@2x.png +0 -0
- package/projects/iss/src/components/controls/mobile/flags/fm.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/fo.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/fonts.css +271 -0
- package/projects/iss/src/components/controls/mobile/flags/fr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ga.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-eng.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-nir.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-sct.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/gb-wls.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/gb.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/gd.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ge.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/gf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gg.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/gh.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/gi.svg +69 -0
- package/projects/iss/src/components/controls/mobile/flags/gl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gm.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/gn.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gp.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/gq.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/gr.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/gs.svg +693 -0
- package/projects/iss/src/components/controls/mobile/flags/gt.svg +317 -0
- package/projects/iss/src/components/controls/mobile/flags/gu.svg +58 -0
- package/projects/iss/src/components/controls/mobile/flags/gw.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/gy.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/hk.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/hm.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/hn.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/hr.svg +282 -0
- package/projects/iss/src/components/controls/mobile/flags/ht.svg +1470 -0
- package/projects/iss/src/components/controls/mobile/flags/hu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/id.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ie.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/il.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/im.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/in.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/io.svg +895 -0
- package/projects/iss/src/components/controls/mobile/flags/iq.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/ir.svg +31 -0
- package/projects/iss/src/components/controls/mobile/flags/is.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/it.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/je.svg +40 -0
- package/projects/iss/src/components/controls/mobile/flags/jm.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/jo.svg +10 -0
- package/projects/iss/src/components/controls/mobile/flags/jp.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ke.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/kg.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/kh.svg +133 -0
- package/projects/iss/src/components/controls/mobile/flags/ki.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/km.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/kn.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/kp.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kr.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/kw.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ky.svg +153 -0
- package/projects/iss/src/components/controls/mobile/flags/kz.svg +49 -0
- package/projects/iss/src/components/controls/mobile/flags/la.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lb.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/lc.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/li.svg +75 -0
- package/projects/iss/src/components/controls/mobile/flags/lk.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/lr.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/ls.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/lt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lu.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/lv.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ly.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ma.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/mc.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/md.svg +102 -0
- package/projects/iss/src/components/controls/mobile/flags/me.svg +240 -0
- package/projects/iss/src/components/controls/mobile/flags/mf.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mg.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mh.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/mk.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ml.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mm.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mo.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/mp.svg +2919 -0
- package/projects/iss/src/components/controls/mobile/flags/mq.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/mr.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ms.svg +59 -0
- package/projects/iss/src/components/controls/mobile/flags/mt.svg +52 -0
- package/projects/iss/src/components/controls/mobile/flags/mu.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/mv.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/mw.svg +24 -0
- package/projects/iss/src/components/controls/mobile/flags/mx.svg +1129 -0
- package/projects/iss/src/components/controls/mobile/flags/my.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/mz.svg +50 -0
- package/projects/iss/src/components/controls/mobile/flags/na.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/nc.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ne.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/nf.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/ng.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ni.svg +281 -0
- package/projects/iss/src/components/controls/mobile/flags/nl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/no.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/np.svg +33 -0
- package/projects/iss/src/components/controls/mobile/flags/nr.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/nu.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/nz.svg +37 -0
- package/projects/iss/src/components/controls/mobile/flags/om.svg +307 -0
- package/projects/iss/src/components/controls/mobile/flags/pa.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/pe.svg +767 -0
- package/projects/iss/src/components/controls/mobile/flags/pf.svg +38 -0
- package/projects/iss/src/components/controls/mobile/flags/pg.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/ph.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/pk.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/pl.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/pm.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/pn.svg +131 -0
- package/projects/iss/src/components/controls/mobile/flags/pr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ps.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/pt.svg +79 -0
- package/projects/iss/src/components/controls/mobile/flags/pw.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/py.svg +192 -0
- package/projects/iss/src/components/controls/mobile/flags/qa.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/re.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/ro.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rs.svg +1143 -0
- package/projects/iss/src/components/controls/mobile/flags/ru.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/rw.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/sa.svg +23 -0
- package/projects/iss/src/components/controls/mobile/flags/sb.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sc.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/sd.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/se.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/sh.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/si.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/sj.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/sk.svg +21 -0
- package/projects/iss/src/components/controls/mobile/flags/sl.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/sm.svg +847 -0
- package/projects/iss/src/components/controls/mobile/flags/sn.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/so.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/sr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/ss.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/st.svg +16 -0
- package/projects/iss/src/components/controls/mobile/flags/stc-icons.css +1 -0
- package/projects/iss/src/components/controls/mobile/flags/sv.svg +3368 -0
- package/projects/iss/src/components/controls/mobile/flags/sx.svg +172 -0
- package/projects/iss/src/components/controls/mobile/flags/sy.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/sz.svg +54 -0
- package/projects/iss/src/components/controls/mobile/flags/tc.svg +88 -0
- package/projects/iss/src/components/controls/mobile/flags/td.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tf.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tg.svg +15 -0
- package/projects/iss/src/components/controls/mobile/flags/th.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tj.svg +32 -0
- package/projects/iss/src/components/controls/mobile/flags/tk.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/tl.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tm.svg +349 -0
- package/projects/iss/src/components/controls/mobile/flags/tn.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/to.svg +8 -0
- package/projects/iss/src/components/controls/mobile/flags/tr.svg +6 -0
- package/projects/iss/src/components/controls/mobile/flags/tt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/tv.svg +18 -0
- package/projects/iss/src/components/controls/mobile/flags/tw.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/tz.svg +13 -0
- package/projects/iss/src/components/controls/mobile/flags/ua.svg +4 -0
- package/projects/iss/src/components/controls/mobile/flags/ug.svg +46 -0
- package/projects/iss/src/components/controls/mobile/flags/um.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/us.svg +25 -0
- package/projects/iss/src/components/controls/mobile/flags/uy.svg +138 -0
- package/projects/iss/src/components/controls/mobile/flags/uz.svg +30 -0
- package/projects/iss/src/components/controls/mobile/flags/va.svg +277 -0
- package/projects/iss/src/components/controls/mobile/flags/vc.svg +9 -0
- package/projects/iss/src/components/controls/mobile/flags/ve.svg +28 -0
- package/projects/iss/src/components/controls/mobile/flags/vg.svg +96 -0
- package/projects/iss/src/components/controls/mobile/flags/vi.svg +311 -0
- package/projects/iss/src/components/controls/mobile/flags/vn.svg +12 -0
- package/projects/iss/src/components/controls/mobile/flags/vu.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/wf.svg +7 -0
- package/projects/iss/src/components/controls/mobile/flags/ws.svg +14 -0
- package/projects/iss/src/components/controls/mobile/flags/xk.svg +11 -0
- package/projects/iss/src/components/controls/mobile/flags/ye.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/yt.svg +5 -0
- package/projects/iss/src/components/controls/mobile/flags/za.svg +17 -0
- package/projects/iss/src/components/controls/mobile/flags/zm.svg +20 -0
- package/projects/iss/src/components/controls/mobile/flags/zw.svg +130 -0
- package/projects/iss/src/components/controls/mobile/mobile.control.ts +222 -0
- package/projects/iss/src/components/controls/mobile/mobile.viewer.ts +11 -0
- package/projects/iss/src/components/controls/mobile/mobile.wrapper.ts +32 -0
- package/projects/iss/src/components/controls/mobile/phone.service.ts +96 -0
- package/projects/iss/src/components/controls/note/note.wrapper.ts +25 -0
- package/projects/iss/src/components/controls/plate/plate-letter.pipe.ts +14 -0
- package/projects/iss/src/components/controls/plate/plate-number.wrapper.ts +36 -0
- package/projects/iss/src/components/controls/plate/plate.control.ts +481 -0
- package/projects/iss/src/components/controls/plate/plate.viewer.ts +289 -0
- package/projects/iss/src/components/controls/radio/radio.control.ts +48 -0
- package/projects/iss/src/components/controls/radio/radio.viewer.ts +14 -0
- package/projects/iss/src/components/controls/radio/radio.wrapper.ts +38 -0
- package/projects/iss/src/components/controls/select/select.control.ts +261 -0
- package/projects/iss/src/components/controls/select/select.viewer.ts +14 -0
- package/projects/iss/src/components/controls/select/select.wrapper.ts +41 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.control.ts +24 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.viewer.ts +14 -0
- package/projects/iss/src/components/controls/slide-toggle/slide-toggle.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/table/field.viewer.ts +23 -0
- package/projects/iss/src/components/controls/table/table.wrapper.ts +233 -0
- package/projects/iss/src/components/controls/textarea/textarea.control.ts +54 -0
- package/projects/iss/src/components/controls/textarea/textarea.viewer.ts +11 -0
- package/projects/iss/src/components/controls/textarea/textarea.wrapper.ts +34 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.control.ts +86 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.viewer.ts +10 -0
- package/projects/iss/src/components/controls/time-picker/time-picker.wrapper.ts +31 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.control.ts +105 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.viewer.ts +15 -0
- package/projects/iss/src/components/controls/toggle-button/toggle-button.wrapper.ts +40 -0
- package/projects/iss/src/components/controls/user-picker/employee.service.ts +73 -0
- package/projects/iss/src/components/controls/user-picker/user-picker.wrapper.ts +128 -0
- package/projects/iss/src/components/outlet/field-data-injector.pipe.ts +20 -0
- package/projects/iss/src/components/outlet/outlet.ts +152 -0
- package/projects/iss/src/components/shared/hints.component.ts +38 -0
- package/projects/iss/src/components/shared/validation-message.component.ts +36 -0
- package/projects/iss/src/events/event-handler.service.ts +47 -0
- package/projects/iss/src/events/load/after-fetch.service.ts +29 -0
- package/projects/iss/src/events/load/load-event.service.ts +26 -0
- package/projects/iss/src/events/load/load-options-event.service.ts +51 -0
- package/projects/iss/src/events/load/load-value-event.service.ts +50 -0
- package/projects/iss/src/events/load/replace-api-keys.service.ts +55 -0
- package/projects/iss/src/events/set-value/get-value-to-set.service.ts +29 -0
- package/projects/iss/src/events/set-value/set-value-event.service.ts +33 -0
- package/projects/iss/src/events/show/show-event.service.ts +11 -0
- package/projects/iss/src/events/triggers/action-trigger-manager.service.ts +51 -0
- package/projects/iss/src/events/triggers/action-trigger.service.ts +30 -0
- package/projects/iss/src/events/triggers/trigger-based-on-json-value.service.ts +19 -0
- package/projects/iss/src/public-api.ts +102 -0
- package/projects/iss/src/shared/classes/field-action-config.ts +56 -0
- package/projects/iss/src/shared/classes/field-action.ts +28 -0
- package/projects/iss/src/shared/classes/field-async-validation.ts +7 -0
- package/projects/iss/src/shared/classes/field-config.ts +113 -0
- package/projects/iss/src/shared/classes/field-option.ts +9 -0
- package/projects/iss/src/shared/classes/field-validation.ts +15 -0
- package/projects/iss/src/shared/classes/form-field.ts +94 -0
- package/projects/iss/src/shared/constants/countries.const.ts +2051 -0
- package/projects/iss/src/shared/constants/date.const.ts +18 -0
- package/projects/iss/src/shared/constants/plate-letters.const.ts +21 -0
- package/projects/iss/src/shared/constants/provider.const.ts +7 -0
- package/projects/iss/src/shared/constants/regex.const.ts +1 -0
- package/projects/iss/src/shared/constants/validation.const.ts +115 -0
- package/projects/iss/src/shared/indexes/components.index.ts +27 -0
- package/projects/iss/src/shared/indexes/services.index.ts +11 -0
- package/projects/iss/src/shared/indexes/validators.index.ts +21 -0
- package/projects/iss/src/shared/interfaces/action.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/attachment.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/country.interface.ts +11 -0
- package/projects/iss/src/shared/interfaces/date-range.interface.ts +5 -0
- package/projects/iss/src/shared/interfaces/datetime.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/dto.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/field.interface.ts +27 -0
- package/projects/iss/src/shared/interfaces/file.interface.ts +9 -0
- package/projects/iss/src/shared/interfaces/hint.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/i18n.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/import.interface.ts +3 -0
- package/projects/iss/src/shared/interfaces/mobile.interface.ts +12 -0
- package/projects/iss/src/shared/interfaces/option.interface.ts +4 -0
- package/projects/iss/src/shared/interfaces/outlet.interface.ts +8 -0
- package/projects/iss/src/shared/interfaces/plate-letter.interface.ts +7 -0
- package/projects/iss/src/shared/interfaces/validation.interface.ts +5 -0
- package/projects/iss/src/shared/pipes/arabic-number.pipe.ts +14 -0
- package/projects/iss/src/shared/pipes/select-status.pipe.ts +10 -0
- package/projects/iss/src/shared/pipes/translate.pipe.ts +20 -0
- package/projects/iss/src/shared/services/form-engine.service.ts +121 -0
- package/projects/iss/src/shared/services/loader.service.ts +51 -0
- package/projects/iss/src/shared/tokens/api-response-mapper.token.ts +4 -0
- package/projects/iss/src/shared/tokens/attachment.token.ts +6 -0
- package/projects/iss/src/shared/tokens/field.token.ts +4 -0
- package/projects/iss/src/shared/tokens/host.token.ts +3 -0
- package/projects/iss/src/shared/tokens/language.token.ts +3 -0
- package/projects/iss/src/shared/tokens/url.token.ts +3 -0
- package/projects/iss/src/shared/types/iso2.type.ts +244 -0
- package/projects/iss/src/shared/types/validation.type.ts +3 -0
- package/projects/iss/src/shared/utilities/array-from.util.ts +7 -0
- package/projects/iss/src/shared/utilities/format-file-size.util.ts +9 -0
- package/projects/iss/src/shared/utilities/get-property-by-path.util.ts +30 -0
- package/projects/iss/src/shared/utilities/http.util.service.ts +19 -0
- package/projects/iss/src/shared/utilities/is-valid-api.util.ts +8 -0
- package/projects/iss/src/shared/utilities/replace-placeholder.util.ts +12 -0
- package/projects/iss/src/validators/core.validator.ts +39 -0
- package/projects/iss/src/validators/file.validator.ts +100 -0
- package/projects/iss/src/validators/time.validator.ts +31 -0
- package/projects/iss/tsconfig.lib.json +13 -0
- package/projects/iss/tsconfig.lib.prod.json +9 -0
- package/projects/iss/tsconfig.spec.json +13 -0
- package/projects/iss/upgrade.scss +68 -0
- package/projects/playground/.eslintrc.json +37 -0
- package/projects/playground/public/favicon.ico +0 -0
- package/projects/playground/public/flags/ad.svg +282 -0
- package/projects/playground/public/flags/ae.svg +6 -0
- package/projects/playground/public/flags/af.svg +9 -0
- package/projects/playground/public/flags/ag.svg +15 -0
- package/projects/playground/public/flags/ai.svg +35 -0
- package/projects/playground/public/flags/al.svg +7 -0
- package/projects/playground/public/flags/am.svg +5 -0
- package/projects/playground/public/flags/ao.svg +19 -0
- package/projects/playground/public/flags/aq.svg +45 -0
- package/projects/playground/public/flags/ar.svg +66 -0
- package/projects/playground/public/flags/as.svg +225 -0
- package/projects/playground/public/flags/at.svg +4 -0
- package/projects/playground/public/flags/au.svg +32 -0
- package/projects/playground/public/flags/aw.svg +11 -0
- package/projects/playground/public/flags/ax.svg +11 -0
- package/projects/playground/public/flags/az.svg +11 -0
- package/projects/playground/public/flags/ba.svg +18 -0
- package/projects/playground/public/flags/bb.svg +11 -0
- package/projects/playground/public/flags/bd.svg +4 -0
- package/projects/playground/public/flags/be.svg +5 -0
- package/projects/playground/public/flags/bf.svg +14 -0
- package/projects/playground/public/flags/bg.svg +5 -0
- package/projects/playground/public/flags/bh.svg +4 -0
- package/projects/playground/public/flags/bi.svg +26 -0
- package/projects/playground/public/flags/bj.svg +5 -0
- package/projects/playground/public/flags/bl.svg +5 -0
- package/projects/playground/public/flags/bm.svg +374 -0
- package/projects/playground/public/flags/bn.svg +70 -0
- package/projects/playground/public/flags/bo.svg +3625 -0
- package/projects/playground/public/flags/bq.svg +5 -0
- package/projects/playground/public/flags/br.svg +92 -0
- package/projects/playground/public/flags/bs.svg +5 -0
- package/projects/playground/public/flags/bt.svg +487 -0
- package/projects/playground/public/flags/bv.svg +11 -0
- package/projects/playground/public/flags/bw.svg +5 -0
- package/projects/playground/public/flags/by.svg +15 -0
- package/projects/playground/public/flags/bz.svg +629 -0
- package/projects/playground/public/flags/ca.svg +7 -0
- package/projects/playground/public/flags/cc.svg +33 -0
- package/projects/playground/public/flags/cd.svg +5 -0
- package/projects/playground/public/flags/cf.svg +7 -0
- package/projects/playground/public/flags/cg.svg +5 -0
- package/projects/playground/public/flags/ch.svg +4 -0
- package/projects/playground/public/flags/ci.svg +5 -0
- package/projects/playground/public/flags/ck.svg +29 -0
- package/projects/playground/public/flags/cl.svg +14 -0
- package/projects/playground/public/flags/cm.svg +15 -0
- package/projects/playground/public/flags/cn.svg +11 -0
- package/projects/playground/public/flags/co.svg +5 -0
- package/projects/playground/public/flags/cr.svg +1332 -0
- package/projects/playground/public/flags/cu.svg +6 -0
- package/projects/playground/public/flags/cv.svg +24 -0
- package/projects/playground/public/flags/cw.svg +16 -0
- package/projects/playground/public/flags/cx.svg +24 -0
- package/projects/playground/public/flags/cy.svg +13 -0
- package/projects/playground/public/flags/cz.svg +5 -0
- package/projects/playground/public/flags/de.svg +5 -0
- package/projects/playground/public/flags/dj.svg +6 -0
- package/projects/playground/public/flags/dk.svg +5 -0
- package/projects/playground/public/flags/dm.svg +198 -0
- package/projects/playground/public/flags/do.svg +238 -0
- package/projects/playground/public/flags/dz.svg +5 -0
- package/projects/playground/public/flags/ec.svg +1292 -0
- package/projects/playground/public/flags/ee.svg +5 -0
- package/projects/playground/public/flags/eg.svg +125 -0
- package/projects/playground/public/flags/eh.svg +12 -0
- package/projects/playground/public/flags/er.svg +9 -0
- package/projects/playground/public/flags/es.svg +445 -0
- package/projects/playground/public/flags/et.svg +16 -0
- package/projects/playground/public/flags/eu.svg +28 -0
- package/projects/playground/public/flags/fi.svg +5 -0
- package/projects/playground/public/flags/fj.svg +203 -0
- package/projects/playground/public/flags/fk.svg +922 -0
- package/projects/playground/public/flags/flags.png +0 -0
- package/projects/playground/public/flags/flags@2x.png +0 -0
- package/projects/playground/public/flags/fm.svg +16 -0
- package/projects/playground/public/flags/fo.svg +11 -0
- package/projects/playground/public/flags/fonts.css +271 -0
- package/projects/playground/public/flags/fr.svg +5 -0
- package/projects/playground/public/flags/ga.svg +5 -0
- package/projects/playground/public/flags/gb-eng.svg +7 -0
- package/projects/playground/public/flags/gb-nir.svg +15 -0
- package/projects/playground/public/flags/gb-sct.svg +11 -0
- package/projects/playground/public/flags/gb-wls.svg +16 -0
- package/projects/playground/public/flags/gb.svg +15 -0
- package/projects/playground/public/flags/gd.svg +11 -0
- package/projects/playground/public/flags/ge.svg +17 -0
- package/projects/playground/public/flags/gf.svg +5 -0
- package/projects/playground/public/flags/gg.svg +8 -0
- package/projects/playground/public/flags/gh.svg +6 -0
- package/projects/playground/public/flags/gi.svg +69 -0
- package/projects/playground/public/flags/gl.svg +4 -0
- package/projects/playground/public/flags/gm.svg +7 -0
- package/projects/playground/public/flags/gn.svg +5 -0
- package/projects/playground/public/flags/gp.svg +5 -0
- package/projects/playground/public/flags/gq.svg +88 -0
- package/projects/playground/public/flags/gr.svg +4 -0
- package/projects/playground/public/flags/gs.svg +693 -0
- package/projects/playground/public/flags/gt.svg +317 -0
- package/projects/playground/public/flags/gu.svg +58 -0
- package/projects/playground/public/flags/gw.svg +13 -0
- package/projects/playground/public/flags/gy.svg +7 -0
- package/projects/playground/public/flags/hk.svg +17 -0
- package/projects/playground/public/flags/hm.svg +32 -0
- package/projects/playground/public/flags/hn.svg +10 -0
- package/projects/playground/public/flags/hr.svg +282 -0
- package/projects/playground/public/flags/ht.svg +1470 -0
- package/projects/playground/public/flags/hu.svg +5 -0
- package/projects/playground/public/flags/id.svg +4 -0
- package/projects/playground/public/flags/ie.svg +5 -0
- package/projects/playground/public/flags/il.svg +5 -0
- package/projects/playground/public/flags/im.svg +33 -0
- package/projects/playground/public/flags/in.svg +25 -0
- package/projects/playground/public/flags/io.svg +895 -0
- package/projects/playground/public/flags/iq.svg +12 -0
- package/projects/playground/public/flags/ir.svg +31 -0
- package/projects/playground/public/flags/is.svg +5 -0
- package/projects/playground/public/flags/it.svg +5 -0
- package/projects/playground/public/flags/je.svg +40 -0
- package/projects/playground/public/flags/jm.svg +9 -0
- package/projects/playground/public/flags/jo.svg +10 -0
- package/projects/playground/public/flags/jp.svg +4 -0
- package/projects/playground/public/flags/ke.svg +28 -0
- package/projects/playground/public/flags/kg.svg +7 -0
- package/projects/playground/public/flags/kh.svg +133 -0
- package/projects/playground/public/flags/ki.svg +54 -0
- package/projects/playground/public/flags/km.svg +13 -0
- package/projects/playground/public/flags/kn.svg +24 -0
- package/projects/playground/public/flags/kp.svg +16 -0
- package/projects/playground/public/flags/kr.svg +16 -0
- package/projects/playground/public/flags/kw.svg +6 -0
- package/projects/playground/public/flags/ky.svg +153 -0
- package/projects/playground/public/flags/kz.svg +49 -0
- package/projects/playground/public/flags/la.svg +5 -0
- package/projects/playground/public/flags/lb.svg +8 -0
- package/projects/playground/public/flags/lc.svg +6 -0
- package/projects/playground/public/flags/li.svg +79 -0
- package/projects/playground/public/flags/lk.svg +50 -0
- package/projects/playground/public/flags/lr.svg +15 -0
- package/projects/playground/public/flags/ls.svg +32 -0
- package/projects/playground/public/flags/lt.svg +5 -0
- package/projects/playground/public/flags/lu.svg +5 -0
- package/projects/playground/public/flags/lv.svg +4 -0
- package/projects/playground/public/flags/ly.svg +8 -0
- package/projects/playground/public/flags/ma.svg +4 -0
- package/projects/playground/public/flags/mc.svg +4 -0
- package/projects/playground/public/flags/md.svg +102 -0
- package/projects/playground/public/flags/me.svg +240 -0
- package/projects/playground/public/flags/mf.svg +5 -0
- package/projects/playground/public/flags/mg.svg +5 -0
- package/projects/playground/public/flags/mh.svg +18 -0
- package/projects/playground/public/flags/mk.svg +6 -0
- package/projects/playground/public/flags/ml.svg +5 -0
- package/projects/playground/public/flags/mm.svg +12 -0
- package/projects/playground/public/flags/mn.svg +12 -0
- package/projects/playground/public/flags/mo.svg +13 -0
- package/projects/playground/public/flags/mp.svg +2919 -0
- package/projects/playground/public/flags/mq.svg +5 -0
- package/projects/playground/public/flags/mr.svg +5 -0
- package/projects/playground/public/flags/ms.svg +59 -0
- package/projects/playground/public/flags/mt.svg +52 -0
- package/projects/playground/public/flags/mu.svg +6 -0
- package/projects/playground/public/flags/mv.svg +8 -0
- package/projects/playground/public/flags/mw.svg +24 -0
- package/projects/playground/public/flags/mx.svg +1129 -0
- package/projects/playground/public/flags/my.svg +12 -0
- package/projects/playground/public/flags/mz.svg +50 -0
- package/projects/playground/public/flags/na.svg +17 -0
- package/projects/playground/public/flags/nc.svg +5 -0
- package/projects/playground/public/flags/ne.svg +6 -0
- package/projects/playground/public/flags/nf.svg +8 -0
- package/projects/playground/public/flags/ng.svg +4 -0
- package/projects/playground/public/flags/ni.svg +281 -0
- package/projects/playground/public/flags/nl.svg +5 -0
- package/projects/playground/public/flags/no.svg +11 -0
- package/projects/playground/public/flags/np.svg +33 -0
- package/projects/playground/public/flags/nr.svg +8 -0
- package/projects/playground/public/flags/nu.svg +23 -0
- package/projects/playground/public/flags/nz.svg +37 -0
- package/projects/playground/public/flags/om.svg +307 -0
- package/projects/playground/public/flags/pa.svg +15 -0
- package/projects/playground/public/flags/pe.svg +767 -0
- package/projects/playground/public/flags/pf.svg +38 -0
- package/projects/playground/public/flags/pg.svg +16 -0
- package/projects/playground/public/flags/ph.svg +28 -0
- package/projects/playground/public/flags/pk.svg +7 -0
- package/projects/playground/public/flags/pl.svg +4 -0
- package/projects/playground/public/flags/pm.svg +5 -0
- package/projects/playground/public/flags/pn.svg +131 -0
- package/projects/playground/public/flags/pr.svg +6 -0
- package/projects/playground/public/flags/ps.svg +6 -0
- package/projects/playground/public/flags/pt.svg +79 -0
- package/projects/playground/public/flags/pw.svg +4 -0
- package/projects/playground/public/flags/py.svg +192 -0
- package/projects/playground/public/flags/qa.svg +7 -0
- package/projects/playground/public/flags/re.svg +5 -0
- package/projects/playground/public/flags/ro.svg +5 -0
- package/projects/playground/public/flags/rs.svg +1143 -0
- package/projects/playground/public/flags/ru.svg +5 -0
- package/projects/playground/public/flags/rw.svg +17 -0
- package/projects/playground/public/flags/sa.svg +23 -0
- package/projects/playground/public/flags/sb.svg +30 -0
- package/projects/playground/public/flags/sc.svg +7 -0
- package/projects/playground/public/flags/sd.svg +6 -0
- package/projects/playground/public/flags/se.svg +5 -0
- package/projects/playground/public/flags/sg.svg +15 -0
- package/projects/playground/public/flags/sh.svg +15 -0
- package/projects/playground/public/flags/si.svg +30 -0
- package/projects/playground/public/flags/sj.svg +11 -0
- package/projects/playground/public/flags/sk.svg +21 -0
- package/projects/playground/public/flags/sl.svg +5 -0
- package/projects/playground/public/flags/sm.svg +847 -0
- package/projects/playground/public/flags/sn.svg +15 -0
- package/projects/playground/public/flags/so.svg +13 -0
- package/projects/playground/public/flags/sr.svg +6 -0
- package/projects/playground/public/flags/ss.svg +8 -0
- package/projects/playground/public/flags/st.svg +16 -0
- package/projects/playground/public/flags/stc-icons.css +1 -0
- package/projects/playground/public/flags/sv.svg +3368 -0
- package/projects/playground/public/flags/sx.svg +172 -0
- package/projects/playground/public/flags/sy.svg +6 -0
- package/projects/playground/public/flags/sz.svg +54 -0
- package/projects/playground/public/flags/tc.svg +88 -0
- package/projects/playground/public/flags/td.svg +5 -0
- package/projects/playground/public/flags/tf.svg +18 -0
- package/projects/playground/public/flags/tg.svg +15 -0
- package/projects/playground/public/flags/th.svg +5 -0
- package/projects/playground/public/flags/tj.svg +32 -0
- package/projects/playground/public/flags/tk.svg +25 -0
- package/projects/playground/public/flags/tl.svg +6 -0
- package/projects/playground/public/flags/tm.svg +349 -0
- package/projects/playground/public/flags/tn.svg +9 -0
- package/projects/playground/public/flags/to.svg +8 -0
- package/projects/playground/public/flags/tr.svg +6 -0
- package/projects/playground/public/flags/tt.svg +5 -0
- package/projects/playground/public/flags/tv.svg +18 -0
- package/projects/playground/public/flags/tw.svg +12 -0
- package/projects/playground/public/flags/tz.svg +13 -0
- package/projects/playground/public/flags/ua.svg +4 -0
- package/projects/playground/public/flags/ug.svg +46 -0
- package/projects/playground/public/flags/um.svg +25 -0
- package/projects/playground/public/flags/us.svg +25 -0
- package/projects/playground/public/flags/uy.svg +138 -0
- package/projects/playground/public/flags/uz.svg +30 -0
- package/projects/playground/public/flags/va.svg +277 -0
- package/projects/playground/public/flags/vc.svg +9 -0
- package/projects/playground/public/flags/ve.svg +28 -0
- package/projects/playground/public/flags/vg.svg +96 -0
- package/projects/playground/public/flags/vi.svg +311 -0
- package/projects/playground/public/flags/vn.svg +12 -0
- package/projects/playground/public/flags/vu.svg +20 -0
- package/projects/playground/public/flags/wf.svg +7 -0
- package/projects/playground/public/flags/ws.svg +14 -0
- package/projects/playground/public/flags/xk.svg +11 -0
- package/projects/playground/public/flags/ye.svg +5 -0
- package/projects/playground/public/flags/yt.svg +5 -0
- package/projects/playground/public/flags/za.svg +17 -0
- package/projects/playground/public/flags/zm.svg +20 -0
- package/projects/playground/public/flags/zw.svg +130 -0
- package/projects/playground/src/app/app.component.ts +119 -0
- package/projects/playground/src/app/app.config.ts +51 -0
- package/projects/playground/src/app/app.routes.ts +41 -0
- package/projects/playground/src/app/login.service.ts +21 -0
- package/projects/playground/src/components/attachment-wrapper.component.ts +45 -0
- package/projects/playground/src/components/attachment.component.ts +35 -0
- package/projects/playground/src/components/checkbox-wrapper.component.ts +43 -0
- package/projects/playground/src/components/chips-wrapper.component.ts +37 -0
- package/projects/playground/src/components/ctrl-array-wrapper.component.ts +76 -0
- package/projects/playground/src/components/date-picker-container.component.ts +22 -0
- package/projects/playground/src/components/date-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/date-range-picker-container.component.ts +24 -0
- package/projects/playground/src/components/date-range-picker-wrapper.component.ts +41 -0
- package/projects/playground/src/components/datetime-container.component.ts +25 -0
- package/projects/playground/src/components/datetime-picker-wrapper.component.ts +62 -0
- package/projects/playground/src/components/input-container.component.ts +35 -0
- package/projects/playground/src/components/input-wrapper.component.ts +41 -0
- package/projects/playground/src/components/mobile-container.component.ts +23 -0
- package/projects/playground/src/components/mobile-wrapper.component.ts +36 -0
- package/projects/playground/src/components/note-wrapper.component.ts +37 -0
- package/projects/playground/src/components/outlet-container.component.ts +144 -0
- package/projects/playground/src/components/plate-container.component.ts +22 -0
- package/projects/playground/src/components/plate-wrapper.component.ts +39 -0
- package/projects/playground/src/components/radio-wrapper.component.ts +45 -0
- package/projects/playground/src/components/select-container.component.ts +31 -0
- package/projects/playground/src/components/select-wrapper.component.ts +48 -0
- package/projects/playground/src/components/ships-container.component.ts +23 -0
- package/projects/playground/src/components/slide-toggle-wrapper.component.ts +40 -0
- package/projects/playground/src/components/textarea-container.component.ts +23 -0
- package/projects/playground/src/components/textarea-wrapper.component.ts +54 -0
- package/projects/playground/src/components/time-picker-container.component.ts +23 -0
- package/projects/playground/src/components/time-picker-wrapper.component.ts +43 -0
- package/projects/playground/src/components/toggle-button-wrapper.component.ts +49 -0
- package/projects/playground/src/components/user-picker-wrapper.component.ts +37 -0
- package/projects/playground/src/eServices/create-request.component.ts +28 -0
- package/projects/playground/src/eServices/e-service.component.ts +112 -0
- package/projects/playground/src/eServices/view-request.component.ts +13 -0
- package/projects/playground/src/index.html +13 -0
- package/projects/playground/src/interceptors/header.interceptor.ts +71 -0
- package/projects/playground/src/main.ts +8 -0
- package/projects/playground/src/services/ss.service.ts +62 -0
- package/projects/playground/src/styles.scss +33 -0
- package/projects/playground/src/validators/customValidator.validator.ts +10 -0
- package/projects/playground/tsconfig.app.json +15 -0
- package/tsconfig.json +31 -0
- package/components/autocomplete/autocomplete.component.d.ts +0 -6
- package/components/base-ctrl.d.ts +0 -33
- package/components/checkbox/checkbox.component.d.ts +0 -16
- package/components/chips/chips.component.d.ts +0 -6
- package/components/ctrl-array/ctrl-array.component.d.ts +0 -6
- package/components/date-picker/date-adapter.d.ts +0 -37
- package/components/date-picker/date-picker.component.d.ts +0 -15
- package/components/date-range-picker/date-range-picker.component.d.ts +0 -19
- package/components/datetime-picker/datetime-picker.component.d.ts +0 -14
- package/components/datetime-range-picker/datetime-range-picker.component.d.ts +0 -6
- package/components/file-picker/file-picker.component.d.ts +0 -17
- package/components/hints/hints.component.d.ts +0 -9
- package/components/input/input.component.d.ts +0 -8
- package/components/mobile/COUNTRIES.d.ts +0 -2
- package/components/mobile/mobile.component.d.ts +0 -26
- package/components/mobile/phone.service.d.ts +0 -17
- package/components/note/note.component.d.ts +0 -6
- package/components/plate-number/plate-number.component.d.ts +0 -16
- package/components/radio/radio.component.d.ts +0 -11
- package/components/select/select.component.d.ts +0 -20
- package/components/slide-toggle/slide-toggle.component.d.ts +0 -7
- package/components/textarea/textarea.component.d.ts +0 -6
- package/components/time-picker/time-picker.component.d.ts +0 -19
- package/components/toggle-button/toggle-button.component.d.ts +0 -16
- package/directives/droppable.directive.d.ts +0 -10
- package/esm2022/components/autocomplete/autocomplete.component.mjs +0 -17
- package/esm2022/components/base-ctrl.mjs +0 -93
- package/esm2022/components/checkbox/checkbox.component.mjs +0 -73
- package/esm2022/components/chips/chips.component.mjs +0 -17
- package/esm2022/components/ctrl-array/ctrl-array.component.mjs +0 -17
- package/esm2022/components/date-picker/date-adapter.mjs +0 -183
- package/esm2022/components/date-picker/date-picker.component.mjs +0 -55
- package/esm2022/components/date-range-picker/date-range-picker.component.mjs +0 -101
- package/esm2022/components/datetime-picker/datetime-picker.component.mjs +0 -79
- package/esm2022/components/datetime-range-picker/datetime-range-picker.component.mjs +0 -17
- package/esm2022/components/file-picker/file-picker.component.mjs +0 -121
- package/esm2022/components/hints/hints.component.mjs +0 -66
- package/esm2022/components/input/input.component.mjs +0 -32
- package/esm2022/components/mobile/COUNTRIES.mjs +0 -2041
- package/esm2022/components/mobile/mobile.component.mjs +0 -141
- package/esm2022/components/mobile/phone.service.mjs +0 -99
- package/esm2022/components/note/note.component.mjs +0 -17
- package/esm2022/components/plate-number/plate-number.component.mjs +0 -114
- package/esm2022/components/radio/radio.component.mjs +0 -40
- package/esm2022/components/select/select.component.mjs +0 -123
- package/esm2022/components/slide-toggle/slide-toggle.component.mjs +0 -23
- package/esm2022/components/textarea/textarea.component.mjs +0 -17
- package/esm2022/components/time-picker/time-picker.component.mjs +0 -169
- package/esm2022/components/toggle-button/toggle-button.component.mjs +0 -87
- package/esm2022/directives/droppable.directive.mjs +0 -39
- package/esm2022/interfaces/country.interface.mjs +0 -2
- package/esm2022/interfaces/date-range-emission-object.mjs +0 -2
- package/esm2022/interfaces/hint.interface.mjs +0 -2
- package/esm2022/interfaces/iso2.interface.mjs +0 -2
- package/esm2022/interfaces/mobile.interface.mjs +0 -2
- package/esm2022/interfaces/option.interface.mjs +0 -2
- package/esm2022/interfaces/time.interface.mjs +0 -2
- package/esm2022/iss-ctrl.mjs +0 -5
- package/esm2022/pipes/select-status.pipe.mjs +0 -18
- package/esm2022/public-api.mjs +0 -20
- package/fesm2022/iss-ctrl.mjs +0 -3658
- package/fesm2022/iss-ctrl.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/interfaces/country.interface.d.ts +0 -10
- package/interfaces/date-range-emission-object.d.ts +0 -5
- package/interfaces/hint.interface.d.ts +0 -5
- package/interfaces/iso2.interface.d.ts +0 -1
- package/interfaces/mobile.interface.d.ts +0 -11
- package/interfaces/option.interface.d.ts +0 -4
- package/interfaces/time.interface.d.ts +0 -5
- package/pipes/select-status.pipe.d.ts +0 -8
- package/public-api.d.ts +0 -19
- package/src/components/mobile/flags/ad.svg +0 -154
- package/src/components/mobile/flags/ae.svg +0 -1
- package/src/components/mobile/flags/af.svg +0 -1
- package/src/components/mobile/flags/ag.svg +0 -1
- package/src/components/mobile/flags/ai.svg +0 -1
- package/src/components/mobile/flags/al.svg +0 -1
- package/src/components/mobile/flags/am.svg +0 -1
- package/src/components/mobile/flags/ao.svg +0 -1
- package/src/components/mobile/flags/aq.svg +0 -1
- package/src/components/mobile/flags/ar.svg +0 -1
- package/src/components/mobile/flags/as.svg +0 -1
- package/src/components/mobile/flags/at.svg +0 -1
- package/src/components/mobile/flags/au.svg +0 -1
- package/src/components/mobile/flags/aw.svg +0 -1
- package/src/components/mobile/flags/ax.svg +0 -1
- package/src/components/mobile/flags/az.svg +0 -1
- package/src/components/mobile/flags/ba.svg +0 -1
- package/src/components/mobile/flags/bb.svg +0 -7
- package/src/components/mobile/flags/bd.svg +0 -1
- package/src/components/mobile/flags/be.svg +0 -1
- package/src/components/mobile/flags/bf.svg +0 -1
- package/src/components/mobile/flags/bg.svg +0 -1
- package/src/components/mobile/flags/bh.svg +0 -1
- package/src/components/mobile/flags/bi.svg +0 -26
- package/src/components/mobile/flags/bj.svg +0 -1
- package/src/components/mobile/flags/bl.svg +0 -1
- package/src/components/mobile/flags/bm.svg +0 -1
- package/src/components/mobile/flags/bn.svg +0 -58
- package/src/components/mobile/flags/bo.svg +0 -1
- package/src/components/mobile/flags/bq.svg +0 -1
- package/src/components/mobile/flags/br.svg +0 -1
- package/src/components/mobile/flags/bs.svg +0 -1
- package/src/components/mobile/flags/bt.svg +0 -466
- package/src/components/mobile/flags/bv.svg +0 -1
- package/src/components/mobile/flags/bw.svg +0 -1
- package/src/components/mobile/flags/by.svg +0 -1
- package/src/components/mobile/flags/bz.svg +0 -1
- package/src/components/mobile/flags/ca.svg +0 -1
- package/src/components/mobile/flags/cc.svg +0 -19
- package/src/components/mobile/flags/cd.svg +0 -1
- package/src/components/mobile/flags/cf.svg +0 -1
- package/src/components/mobile/flags/cg.svg +0 -5
- package/src/components/mobile/flags/ch.svg +0 -1
- package/src/components/mobile/flags/ci.svg +0 -1
- package/src/components/mobile/flags/ck.svg +0 -1
- package/src/components/mobile/flags/cl.svg +0 -14
- package/src/components/mobile/flags/cm.svg +0 -15
- package/src/components/mobile/flags/cn.svg +0 -1
- package/src/components/mobile/flags/co.svg +0 -5
- package/src/components/mobile/flags/cr.svg +0 -1
- package/src/components/mobile/flags/cu.svg +0 -6
- package/src/components/mobile/flags/cv.svg +0 -24
- package/src/components/mobile/flags/cw.svg +0 -16
- package/src/components/mobile/flags/cx.svg +0 -15
- package/src/components/mobile/flags/cy.svg +0 -1
- package/src/components/mobile/flags/cz.svg +0 -5
- package/src/components/mobile/flags/de.svg +0 -1
- package/src/components/mobile/flags/dj.svg +0 -1
- package/src/components/mobile/flags/dk.svg +0 -5
- package/src/components/mobile/flags/dm.svg +0 -1
- package/src/components/mobile/flags/do.svg +0 -1
- package/src/components/mobile/flags/dz.svg +0 -5
- package/src/components/mobile/flags/ec.svg +0 -519
- package/src/components/mobile/flags/ee.svg +0 -1
- package/src/components/mobile/flags/eg.svg +0 -78
- package/src/components/mobile/flags/eh.svg +0 -9
- package/src/components/mobile/flags/er.svg +0 -6
- package/src/components/mobile/flags/es.svg +0 -1
- package/src/components/mobile/flags/et.svg +0 -1
- package/src/components/mobile/flags/eu.svg +0 -1
- package/src/components/mobile/flags/fi.svg +0 -5
- package/src/components/mobile/flags/fj.svg +0 -1
- package/src/components/mobile/flags/fk.svg +0 -1
- package/src/components/mobile/flags/fm.svg +0 -16
- package/src/components/mobile/flags/fo.svg +0 -11
- package/src/components/mobile/flags/fr.svg +0 -1
- package/src/components/mobile/flags/ga.svg +0 -5
- package/src/components/mobile/flags/gb-eng.svg +0 -7
- package/src/components/mobile/flags/gb-nir.svg +0 -1
- package/src/components/mobile/flags/gb-sct.svg +0 -1
- package/src/components/mobile/flags/gb-wls.svg +0 -9
- package/src/components/mobile/flags/gb.svg +0 -1
- package/src/components/mobile/flags/gd.svg +0 -1
- package/src/components/mobile/flags/ge.svg +0 -1
- package/src/components/mobile/flags/gf.svg +0 -1
- package/src/components/mobile/flags/gg.svg +0 -8
- package/src/components/mobile/flags/gh.svg +0 -6
- package/src/components/mobile/flags/gi.svg +0 -54
- package/src/components/mobile/flags/gl.svg +0 -4
- package/src/components/mobile/flags/gm.svg +0 -7
- package/src/components/mobile/flags/gn.svg +0 -5
- package/src/components/mobile/flags/gp.svg +0 -1
- package/src/components/mobile/flags/gq.svg +0 -75
- package/src/components/mobile/flags/gr.svg +0 -1
- package/src/components/mobile/flags/gs.svg +0 -1
- package/src/components/mobile/flags/gt.svg +0 -214
- package/src/components/mobile/flags/gu.svg +0 -1
- package/src/components/mobile/flags/gw.svg +0 -13
- package/src/components/mobile/flags/gy.svg +0 -7
- package/src/components/mobile/flags/hk.svg +0 -1
- package/src/components/mobile/flags/hm.svg +0 -1
- package/src/components/mobile/flags/hn.svg +0 -1
- package/src/components/mobile/flags/hr.svg +0 -1
- package/src/components/mobile/flags/ht.svg +0 -1
- package/src/components/mobile/flags/hu.svg +0 -1
- package/src/components/mobile/flags/id.svg +0 -1
- package/src/components/mobile/flags/ie.svg +0 -1
- package/src/components/mobile/flags/il.svg +0 -1
- package/src/components/mobile/flags/im.svg +0 -1
- package/src/components/mobile/flags/in.svg +0 -1
- package/src/components/mobile/flags/io.svg +0 -1
- package/src/components/mobile/flags/iq.svg +0 -1
- package/src/components/mobile/flags/ir.svg +0 -31
- package/src/components/mobile/flags/is.svg +0 -1
- package/src/components/mobile/flags/it.svg +0 -1
- package/src/components/mobile/flags/je.svg +0 -1
- package/src/components/mobile/flags/jm.svg +0 -1
- package/src/components/mobile/flags/jo.svg +0 -7
- package/src/components/mobile/flags/jp.svg +0 -4
- package/src/components/mobile/flags/ke.svg +0 -23
- package/src/components/mobile/flags/kg.svg +0 -1
- package/src/components/mobile/flags/kh.svg +0 -116
- package/src/components/mobile/flags/ki.svg +0 -1
- package/src/components/mobile/flags/km.svg +0 -13
- package/src/components/mobile/flags/kn.svg +0 -1
- package/src/components/mobile/flags/kp.svg +0 -16
- package/src/components/mobile/flags/kr.svg +0 -1
- package/src/components/mobile/flags/kw.svg +0 -6
- package/src/components/mobile/flags/ky.svg +0 -1
- package/src/components/mobile/flags/kz.svg +0 -37
- package/src/components/mobile/flags/la.svg +0 -1
- package/src/components/mobile/flags/lb.svg +0 -5
- package/src/components/mobile/flags/lc.svg +0 -6
- package/src/components/mobile/flags/li.svg +0 -56
- package/src/components/mobile/flags/lk.svg +0 -1
- package/src/components/mobile/flags/lr.svg +0 -15
- package/src/components/mobile/flags/ls.svg +0 -23
- package/src/components/mobile/flags/lt.svg +0 -1
- package/src/components/mobile/flags/lu.svg +0 -1
- package/src/components/mobile/flags/lv.svg +0 -1
- package/src/components/mobile/flags/ly.svg +0 -8
- package/src/components/mobile/flags/ma.svg +0 -1
- package/src/components/mobile/flags/mc.svg +0 -1
- package/src/components/mobile/flags/md.svg +0 -1
- package/src/components/mobile/flags/me.svg +0 -93
- package/src/components/mobile/flags/mf.svg +0 -1
- package/src/components/mobile/flags/mg.svg +0 -1
- package/src/components/mobile/flags/mh.svg +0 -1
- package/src/components/mobile/flags/mk.svg +0 -1
- package/src/components/mobile/flags/ml.svg +0 -5
- package/src/components/mobile/flags/mm.svg +0 -12
- package/src/components/mobile/flags/mn.svg +0 -1
- package/src/components/mobile/flags/mo.svg +0 -10
- package/src/components/mobile/flags/mp.svg +0 -1
- package/src/components/mobile/flags/mq.svg +0 -1
- package/src/components/mobile/flags/mr.svg +0 -1
- package/src/components/mobile/flags/ms.svg +0 -1
- package/src/components/mobile/flags/mt.svg +0 -1
- package/src/components/mobile/flags/mu.svg +0 -1
- package/src/components/mobile/flags/mv.svg +0 -1
- package/src/components/mobile/flags/mw.svg +0 -24
- package/src/components/mobile/flags/mx.svg +0 -1
- package/src/components/mobile/flags/my.svg +0 -1
- package/src/components/mobile/flags/mz.svg +0 -13
- package/src/components/mobile/flags/na.svg +0 -1
- package/src/components/mobile/flags/nc.svg +0 -1
- package/src/components/mobile/flags/ne.svg +0 -6
- package/src/components/mobile/flags/nf.svg +0 -5
- package/src/components/mobile/flags/ng.svg +0 -4
- package/src/components/mobile/flags/ni.svg +0 -161
- package/src/components/mobile/flags/nl.svg +0 -1
- package/src/components/mobile/flags/no.svg +0 -1
- package/src/components/mobile/flags/np.svg +0 -33
- package/src/components/mobile/flags/nr.svg +0 -1
- package/src/components/mobile/flags/nu.svg +0 -1
- package/src/components/mobile/flags/nz.svg +0 -1
- package/src/components/mobile/flags/om.svg +0 -1
- package/src/components/mobile/flags/pa.svg +0 -1
- package/src/components/mobile/flags/pe.svg +0 -320
- package/src/components/mobile/flags/pf.svg +0 -1
- package/src/components/mobile/flags/pg.svg +0 -13
- package/src/components/mobile/flags/ph.svg +0 -1
- package/src/components/mobile/flags/pk.svg +0 -1
- package/src/components/mobile/flags/pl.svg +0 -1
- package/src/components/mobile/flags/pm.svg +0 -1
- package/src/components/mobile/flags/pn.svg +0 -1
- package/src/components/mobile/flags/pr.svg +0 -1
- package/src/components/mobile/flags/ps.svg +0 -1
- package/src/components/mobile/flags/pt.svg +0 -1
- package/src/components/mobile/flags/pw.svg +0 -1
- package/src/components/mobile/flags/py.svg +0 -1
- package/src/components/mobile/flags/qa.svg +0 -1
- package/src/components/mobile/flags/re.svg +0 -1
- package/src/components/mobile/flags/ro.svg +0 -1
- package/src/components/mobile/flags/rs.svg +0 -1
- package/src/components/mobile/flags/ru.svg +0 -1
- package/src/components/mobile/flags/rw.svg +0 -13
- package/src/components/mobile/flags/sa.svg +0 -1
- package/src/components/mobile/flags/sb.svg +0 -1
- package/src/components/mobile/flags/sc.svg +0 -7
- package/src/components/mobile/flags/sd.svg +0 -6
- package/src/components/mobile/flags/se.svg +0 -5
- package/src/components/mobile/flags/sg.svg +0 -11
- package/src/components/mobile/flags/sh.svg +0 -1
- package/src/components/mobile/flags/si.svg +0 -1
- package/src/components/mobile/flags/sj.svg +0 -1
- package/src/components/mobile/flags/sk.svg +0 -1
- package/src/components/mobile/flags/sl.svg +0 -1
- package/src/components/mobile/flags/sm.svg +0 -1
- package/src/components/mobile/flags/sn.svg +0 -1
- package/src/components/mobile/flags/so.svg +0 -1
- package/src/components/mobile/flags/sr.svg +0 -1
- package/src/components/mobile/flags/ss.svg +0 -1
- package/src/components/mobile/flags/st.svg +0 -1
- package/src/components/mobile/flags/sv.svg +0 -1
- package/src/components/mobile/flags/sx.svg +0 -1
- package/src/components/mobile/flags/sy.svg +0 -1
- package/src/components/mobile/flags/sz.svg +0 -1
- package/src/components/mobile/flags/tc.svg +0 -1
- package/src/components/mobile/flags/td.svg +0 -1
- package/src/components/mobile/flags/tf.svg +0 -1
- package/src/components/mobile/flags/tg.svg +0 -1
- package/src/components/mobile/flags/th.svg +0 -1
- package/src/components/mobile/flags/tj.svg +0 -1
- package/src/components/mobile/flags/tk.svg +0 -1
- package/src/components/mobile/flags/tl.svg +0 -1
- package/src/components/mobile/flags/tm.svg +0 -1
- package/src/components/mobile/flags/tn.svg +0 -9
- package/src/components/mobile/flags/to.svg +0 -1
- package/src/components/mobile/flags/tr.svg +0 -1
- package/src/components/mobile/flags/tt.svg +0 -5
- package/src/components/mobile/flags/tv.svg +0 -1
- package/src/components/mobile/flags/tw.svg +0 -1
- package/src/components/mobile/flags/tz.svg +0 -1
- package/src/components/mobile/flags/ua.svg +0 -1
- package/src/components/mobile/flags/ug.svg +0 -1
- package/src/components/mobile/flags/um.svg +0 -1
- package/src/components/mobile/flags/us.svg +0 -1
- package/src/components/mobile/flags/uy.svg +0 -1
- package/src/components/mobile/flags/uz.svg +0 -1
- package/src/components/mobile/flags/va.svg +0 -1
- package/src/components/mobile/flags/vc.svg +0 -1
- package/src/components/mobile/flags/ve.svg +0 -1
- package/src/components/mobile/flags/vg.svg +0 -1
- package/src/components/mobile/flags/vi.svg +0 -1
- package/src/components/mobile/flags/vn.svg +0 -1
- package/src/components/mobile/flags/vu.svg +0 -1
- package/src/components/mobile/flags/wf.svg +0 -1
- package/src/components/mobile/flags/ws.svg +0 -1
- package/src/components/mobile/flags/xk.svg +0 -1
- package/src/components/mobile/flags/ye.svg +0 -1
- package/src/components/mobile/flags/yt.svg +0 -1
- package/src/components/mobile/flags/za.svg +0 -1
- package/src/components/mobile/flags/zm.svg +0 -1
- package/src/components/mobile/flags/zw.svg +0 -1
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<svg viewBox="0 0 1200 600" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<linearGradient
|
|
4
|
+
gradientTransform="matrix(.99614 0 0 2.25255 703.842 -75.047)"
|
|
5
|
+
gradientUnits="userSpaceOnUse"
|
|
6
|
+
id="b"
|
|
7
|
+
x1="103.083"
|
|
8
|
+
x2="92.551"
|
|
9
|
+
y1="111.276"
|
|
10
|
+
y2="107.764"
|
|
11
|
+
>
|
|
12
|
+
<stop offset="0" stop-color="red"/>
|
|
13
|
+
<stop offset="1" stop-color="#ff0"/>
|
|
14
|
+
</linearGradient>
|
|
15
|
+
<clipPath id="a">
|
|
16
|
+
<path d="M0 0v150h700v150H600zm600 0H300v350H0v-50z"/>
|
|
17
|
+
</clipPath>
|
|
18
|
+
<clipPath id="d">
|
|
19
|
+
<path d="M0 0h1200v600H0z"/>
|
|
20
|
+
</clipPath>
|
|
21
|
+
</defs>
|
|
22
|
+
<path d="M0 0h1200v600H0z" fill="#012169"/>
|
|
23
|
+
<path clip-path="url(#d)" d="M0 0l600 300m0-300L0 300" stroke="#fff" stroke-width="60"/>
|
|
24
|
+
<path clip-path="url(#a)" d="M0 0l600 300m0-300L0 300" stroke="#c8102e" stroke-width="40"/>
|
|
25
|
+
<path d="M300 0v350M0 150h700" stroke="#fff" stroke-width="100"/>
|
|
26
|
+
<path d="M300 0v350M0 150h700" stroke="#c8102e" stroke-width="60"/>
|
|
27
|
+
<path d="M0 300h600V0h600v600H0z" fill="#012169"/>
|
|
28
|
+
<path
|
|
29
|
+
d="M776.26 144.068l250.401-.93-.465 222.993s8.827 33.913-104.992 85.48c40.882-4.181 85.48-47.85 85.48-47.85s18.119-23.228 26.946-10.22c8.826 13.007 17.188 19.511 23.692 24.621 6.504 5.11 11.614 19.048 1.859 29.268s-25.087 11.614-29.268-.93c-6.504 3.253-46.457 51.568-128.22 53.89-83.157-1.393-128.685-54.354-128.685-54.354s-11.15 17.654-26.945 3.717c-15.33-18.118-3.716-29.732-3.716-29.732s13.007-7.433 16.724-12.544c6.04-6.968 7.898-16.26 18.118-16.26 12.079.93 16.724 10.685 16.724 10.685s41.811 44.134 86.874 49.709c-101.736-48.783-105.453-78.98-104.988-86.413l.465-221.133z"
|
|
30
|
+
fill="#fff"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M782.299 150.107l238.787-1.394v214.63c.465 27.874-46.457 56.213-119.858 92.449-75.724-39.024-119.394-62.716-119.858-92.913l.93-212.771z"
|
|
34
|
+
fill="#006129"
|
|
35
|
+
stroke="#000"
|
|
36
|
+
stroke-width="1.887"
|
|
37
|
+
/>
|
|
38
|
+
<g fill="#ffc72c" id="c" stroke="#000" stroke-width=".944">
|
|
39
|
+
<path d="M814.794 181.829l14.095-20.701 14.164 20.744" fill="none" stroke="#ffc72c" stroke-width="1.887"/>
|
|
40
|
+
<path d="M831.719 174.09a2.8 2.8 0 11-5.598.002 2.8 2.8 0 015.598-.002z"/>
|
|
41
|
+
<path d="M817.444 197.119l21.852.062s.342-2.836-2.283-4.56c11.446-1.573 8.472-11.669 18.058-12.241 1.86.286-5.008 4.292-5.008 4.292s-5.779 4.078-3.147 6.152c2.09 1.646 3.004-1.001 3.29-3.004.286-2.003 9.3-3.29 8.012-9.014-2.146-4.72-14.736 3.148-14.736 3.148l-8.982-.05c-.56-1.008-3.035-5.05-5.592-5.07-3.033.111-5.17 5.12-5.17 5.12h-20.315s-.696 5.212 9.605 6.214c2.319 3.029 4.117 3.875 6.133 4.659-1.344 1.12-1.723 2.475-1.717 4.292zm1.573-4.435l18.2-.062m-26.536-10.669s1.456 8.513 8.176 10.529"/>
|
|
42
|
+
<path
|
|
43
|
+
d="M809.561 181.841c.672-3.248 1.904-3.808 3.248-7.952.224-4.033-3.248-3.585-2.24-6.16 1.792-2.8.896-5.49-2.464-7.617.672 3.696-4.368 7.168-4.368 10.192 0 3.025 2.576 2.353 2.24 6.945.224 2.688-.672 2.016-.896 4.592h4.48z"
|
|
44
|
+
fill="url(#b)"
|
|
45
|
+
/>
|
|
46
|
+
<path d="M831.495 161.657a2.575 2.575 0 11-5.15.002 2.575 2.575 0 015.15-.002z"/>
|
|
47
|
+
</g>
|
|
48
|
+
<use x="-.772" xlink:href="#c" y="41.304"/>
|
|
49
|
+
<use x="-1.089" xlink:href="#c" y="82.013"/>
|
|
50
|
+
<use x="25.627" xlink:href="#c" y="126.099"/>
|
|
51
|
+
<use x="-4.574" xlink:href="#c" y="162.163"/>
|
|
52
|
+
<use x="-3.782" xlink:href="#c" y="204.773"/>
|
|
53
|
+
<use x="146.28" xlink:href="#c" y=".672"/>
|
|
54
|
+
<use x="144.936" xlink:href="#c" y="41.218"/>
|
|
55
|
+
<use x="143.144" xlink:href="#c" y="82.661"/>
|
|
56
|
+
<use x="145.16" xlink:href="#c" y="123.431"/>
|
|
57
|
+
<use x="144.712" xlink:href="#c" y="164.201"/>
|
|
58
|
+
<use x="144.936" xlink:href="#c" y="205.195"/>
|
|
59
|
+
<g fill="#ffc6b5" stroke="#000" stroke-width=".944">
|
|
60
|
+
<path d="M915.843 406.315s5.702 13.147 12.197 5.069c6.494-8.079 4.118-11.563 4.118-11.563l-14.573-7.92-4.276 9.028 2.534 5.386z" fill="#ffc72c"/>
|
|
61
|
+
<path d="M928.357 404.572s.95.159 1.742-1.267-1.742-2.06-2.85-3.643l-1.268 2.534 2.376 2.376zm-32.948-3.485l-12.83 6.97s-6.337 1.267-6.812 0c-.475-1.268.159-2.376 3.485-2.535 3.327-.158 12.355-8.395 12.355-8.395l3.802 3.96zm.159-227.938s.317 3.01.475 4.594c.159 1.584-2.534 4.91-2.693 4.752s-1.425.158-1.267 1.108c.159.95 2.06 1.268 2.06 1.268s-.793 3.326 0 3.484c.791.159-2.06 4.277 0 5.386 2.059 1.109 5.543 2.534 7.127 2.218 1.584-.317 0 6.177 0 6.177l-4.435 9.504 24.394-2.534-5.069-8.079s-2.376-1.584-1.742-6.177c.633-4.594-.317-25.344-.317-25.344l-17.424-2.376-1.109 6.019zm-4.436 36.115s-7.92 3.643-7.603 13.464c-2.06 9.504-3.168 19.008-3.168 19.008s-9.346 10.613-12.197 14.415c-2.851 3.801-7.128 11.563-8.712 13.622-1.584 2.06-7.762 8.87-7.603 11.405.158 2.534-1.426 13.78 4.752 15.048 1.584.633 6.653-12.99 6.653-12.99s.316-5.86-1.426-6.969c-1.742-1.108 3.802-4.91 3.802-4.91s10.612-7.762 12.988-9.663c2.376-1.9 8.87-9.187 8.87-9.187l3.644-43.243z"/>
|
|
62
|
+
<path
|
|
63
|
+
d="M900.161 201.82s2.06 5.544 6.653 4.594c4.594-.95 9.98-5.228 9.98-5.228s4.276-.158 4.91.476c.633.633 11.563 11.246 11.246 14.572-.317 3.327-5.069 2.376-6.811 4.594-1.743 2.218-4.594 7.762-3.802 11.88.792 4.119 3.168 9.504 2.851 11.563-.316 2.06-2.059 2.693-2.059 3.802s1.426 3.01 1.426 5.069c0 2.06-1.901 5.069-1.584 7.128.317 2.06.475 8.078.475 8.078l-.475 27.879s1.584.95 1.742 2.534c.159 1.584 10.771 47.679 10.771 47.679s-.475 1.425-1.584 1.267c-1.108-.159 4.277 7.128 4.436 9.187.158 2.06 5.544 18.216 5.385 20.434-.158 2.217-.95 7.128-1.425 7.286-.476.158 3.484 10.138 2.85 11.722-.633 1.584-7.127 1.425-7.127 1.425l-1.743-.316s.159 2.059-1.108 2.217-10.613-.475-10.613-.475-2.693 4.118-4.277 3.96c-1.584-.158-3.643-3.01-4.119-2.534-.475.475 1.426 3.167.95 3.96-.474.792-8.553 2.534-10.137-1.268-1.584-3.801.95-2.85.476-3.643-.476-.792-4.119-2.851-5.228-2.217-1.109.633 2.852 1.584 2.693 3.168-.158 1.584-3.485 3.96-4.752 3.96s-4.277-5.861-8.712-5.228c-4.435.634-7.286 1.743-7.286 1.743s-5.228 2.217-7.445 1.742c-2.218-.475-3.168-2.218-3.168-3.168 0-.95 1.584-5.069 1.425-6.336s-1.425-2.534-1.425-4.435c0-1.9 3.643-8.395 3.643-8.395l-.158-29.146s-3.327 0-3.485-2.06 5.069-46.094 5.86-48.945c.793-2.851 2.852-12.989 2.852-12.989s-2.376 1.109-2.535 0c-.158-1.109 7.128-26.294 7.128-26.294s1.268-12.514 1.268-15.84c0-3.327-.634-7.92-.634-7.92s-6.503-2.753-6.653-6.97c-.595-6.709 6.178-10.454 6.97-12.672l3.168-8.87s3.485-6.02 9.187-6.97z"
|
|
64
|
+
fill="#fff"
|
|
65
|
+
/>
|
|
66
|
+
<path
|
|
67
|
+
d="M897.785 402.988s-15.365 8.079-17.582 8.712c-2.218.634-3.644-2.693-1.426-3.326 2.218-.634 5.702-.95 5.702-.95s-5.227-4.12-5.068-4.278c.158-.158 7.128-2.692 7.286-2.692s2.218 4.118 3.643 3.801c1.426-.317 5.544-3.484 5.544-3.484s2.218 2.534 1.901 2.217z"
|
|
68
|
+
fill="#ffc72c"
|
|
69
|
+
/>
|
|
70
|
+
<path d="M919.432 407.423c1.453 1.874 2.02 5.123 5.347 3.222 3.327-1.9-1.704-5.428-1.704-5.428l-3.643 2.206z"/>
|
|
71
|
+
<path d="M925.505 407.106s1.584 1.267 3.01-.158-2.852-4.436-2.852-4.436l-2.059 2.376 1.901 2.218zm6.812-190.146c.158 0 5.227 15.682 5.86 19.642.634 3.96 2.694 19.8 1.902 22.017-.792 2.218-8.87 12.83-9.821 15.523-.95 2.693-6.653 12.99-6.653 12.99s-1.426 10.137-2.06 10.612c-.633.476 1.636 2.964 1.426 3.802-.314.943-4.593 5.386-6.494 4.91-1.9-.475-4.91-2.693-5.069-4.752s.158-8.87 1.584-10.612c1.426-1.743 8.87-19.325 9.346-20.434.475-1.109 6.81-14.89 6.97-17.266.158-2.376-1.972-7.87-4.212-9.886-4.985-14.673-3.026-23.522 7.221-26.546z"/>
|
|
72
|
+
<path
|
|
73
|
+
d="M895.092 172.199s3.485.475 5.386-.634c1.9-1.108 4.118-1.584 5.702.634 1.584 2.218 2.693 2.06 2.693 2.06s-2.376 5.86 0 6.494c2.376.633 3.485.633 3.643 1.425.159.792-2.06 2.535-1.426 3.327.634.792 1.743 1.742 1.901 2.376.159.633-1.425 3.326-.95 3.96.475.633 1.9 3.168 2.851 3.168.95 0 .317 3.96 3.168 3.01s2.693-3.486 2.693-3.486 3.01-.475 3.802-3.168c.791-2.692 2.692-3.326 2.692-3.326s3.802-2.06-1.267-5.227c0-22.176-14.573-19.8-14.573-19.8s-1.742-3.96-4.593-3.485-3.01 3.802-5.07 3.485c-2.058-.317-2.533-1.743-2.692-1.584-.158.158-1.9 3.326-1.9 4.118 0 .792-5.545-1.109-5.07 3.01.476 4.118 3.168 3.96 3.01 3.643z"
|
|
74
|
+
fill="#9c5100"
|
|
75
|
+
/>
|
|
76
|
+
<g fill="none">
|
|
77
|
+
<path
|
|
78
|
+
d="M920.753 207.997s-14.098 9.029-13.78 12.197m16.948-10.613s-3.168 3.485-3.326 3.485m7.603.317s-6.97 5.702-5.86 9.346m-27.087-15.524s-2.06 4.277-1.584 5.702c.475 1.426 3.96 6.812 4.435 10.138.475 3.326 0 5.703 0 5.703m-6.494-13.623s.634 5.069 1.584 6.02c.95.95 3.485 5.226 3.802 6.969m-6.653 8.078s4.118 2.06 7.92-5.86m6.177-5.544c-.158 0-3.01 7.762 2.06 10.613 5.068 2.851 8.87 2.534 11.087 1.742 2.218-.792 4.594-2.217 4.594-2.217m-19.958-.634s.317 10.455 15.682 20.75m-15.049-10.93s-.158 9.187 5.86 13.306m-9.028-24.077s-4.594 13.622-8.237 15.048m6.812-5.069s-.158 9.82-1.426 13.306m-1.267 2.376s3.168 3.96 6.653 3.643c3.485-.316 4.91-4.435 7.286-3.801 2.376.633 4.594 2.534 10.138 2.059m-7.92 4.118s0 8.078 1.426 8.87.792 8.237.792 8.237M892.4 261.22s-.158 7.603-1.109 10.296c-.95 2.693-2.851 7.287-2.534 11.247m-6.02 4.434c.792-.317 3.485-2.693 3.485-2.693m1.426 1.743s-6.811 29.146-4.91 46.57m6.494-45.144s-3.485 21.86-1.9 25.978m.157-26.612c.158 0 13.306.95 13.306.95m1.901-1.742s3.643 1.9 8.712 1.584m-10.296 9.029s-.634 37.383-1.584 45.62m21.067-37.067s4.118 32.789 6.494 35.798m-14.414-31.679s2.534 28.987 3.96 31.522m-39.917 10.137s4.91-1.584 9.345-6.336c5.07 6.811 12.831.317 12.831.317s12.038 8.237 17.424-.95c8.237 5.385 12.355-.793 12.355-.793s3.01 4.594 5.228 4.119m-13.148 3.168s6.178 28.987 15.365 37.224m-47.203-40.234s.792 24.235 2.218 41.342m-3.327-13.938s-.792 15.84-1.743 16.949m-7.603 1.583s1.742 6.811 10.454.475 8.87 2.376 9.188 3.327c.316.95 1.742 7.761 5.068 2.059m6.971-9.345s-1.426 14.097 11.088 3.801c12.514-10.295 14.573-.158 14.89 3.01m-25.82-230.156s-1.109 6.97 6.336 6.336c-.95 3.802 1.9 5.069 1.9 5.069m5.545 4.277c.159 0 3.326 2.06-.158 4.594m-10.613.95s1.584 1.9 3.326 1.426c1.743-.475 4.594 1.742 4.594 1.742s2.376.792 2.693.317m-20.276 2.534s5.386 2.06 8.87-6.494m-18.849-2.535l3.168.158m-38.312 99.737l.248 6.942m-6.758-7.457s4.45 7.443 4.079 11.41"
|
|
79
|
+
/>
|
|
80
|
+
<path d="M894.142 188.197h2.851l-2.534 1.109m17.206 110.656s3.328-.35 3.223 5.206c2.125-6.902 6.446-7.066 6.446-7.066" stroke-linejoin="round"/>
|
|
81
|
+
<path d="M898.102 179.327c.475 0 2.217-.634 2.534-.158.317.475-1.9.792-2.534.158z" stroke-linejoin="round" stroke-width="1.699"/>
|
|
82
|
+
</g>
|
|
83
|
+
</g>
|
|
84
|
+
<g fill="none" stroke="#000" stroke-width="1.887">
|
|
85
|
+
<path
|
|
86
|
+
d="M900.299 458.579c66.898-1.858 110.102-50.173 109.638-50.638-.465-.464 8.827-13.472 16.26-11.614 7.433 1.858 18.118 23.693 31.126 28.338 6.504 10.22-1.859 19.512-4.646 21.37-2.787 1.859-15.33 6.97-17.189-.464-1.858-7.433-5.575-6.04-5.575-6.04s-59.464 58.071-128.22 55.749c-71.078.464-129.614-55.748-129.614-55.748l-5.11 5.574s-5.575 6.04-8.362 5.575c-2.787-.464-14.866-8.362-15.795-16.26-.93-7.897 7.433-13.007 7.433-13.007s20.44-15.796 22.764-24.158c4.645-4.646 13.472 3.252 13.472 3.252s53.89 61.787 113.819 58.07z"
|
|
87
|
+
fill="#ffc72c"
|
|
88
|
+
/>
|
|
89
|
+
<path d="M748.855 422.646s5.528-1.474 7.555.83c2.027 2.302 15.938 15.938 15.938 15.938"/>
|
|
90
|
+
<path d="M761.477 429.095l-5.528 4.146s13.912 2.763 10.78 11.885m285.611-22.941s-2.764-1.474-7.094 1.75c-4.33 3.225-15.294 15.479-15.294 15.479"/>
|
|
91
|
+
<path d="M1039.9 428.727l5.989 4.607s-12.53.829-9.766 12.714"/>
|
|
92
|
+
</g>
|
|
93
|
+
<path
|
|
94
|
+
d="M819.664 437.396c-.362 1.052-1.321-.029-2.117.183-2.094.079-3.834 1.445-5.628 2.377l-18.407 10.731c-.62-.203-.473-.704-.322-1.206 1.636-7.663 3.335-15.313 4.925-22.986.264-1.342.69-3.01-.606-3.986-.551-.376.301-1.14.655-.446l9.41 6.71c-.302.885-.837.265-1.372-.094-1.303-1.253-2.873-.095-2.835 1.488-1.119 5.052-2.21 10.11-3.318 15.165 4.165-2.476 8.378-4.874 12.506-7.412 1.474-.656 2.56-2.631 1.029-3.855-.582-.343-1.544-1.28-.585-1.422l6.665 4.753zm6.611 31.986c-.168.572-.466.698-.922.286l-11.074-6.056c.167-.572.466-.698.922-.286 1 .68 2.634.938 3.363-.255 1.466-2.35 2.701-4.839 4.06-7.253 1.845-3.42 3.769-6.8 5.559-10.248.856-1.222-.1-2.728-1.298-3.251-.405-.217-1.001-.378-.49-.864.247-.304.772.345 1.13.423l10.617 5.806c-.168.572-.467.698-.923.286-1-.68-2.642-.94-3.38.245-1.465 2.351-2.7 4.84-4.058 7.254-1.847 3.42-3.77 6.8-5.56 10.248-.855 1.23.097 2.747 1.314 3.26l.74.405zm42.609-9.994l-3.007 8.443c-1.232-.13-.413-1.708-.796-2.54-.44-3.8-3.243-7.347-7.06-8.16-2.92-.795-6 .708-7.715 3.082-2.59 3.537-4.165 7.853-4.387 12.235-.148 2.49.995 5.046 3.17 6.357 1.723 1.136 3.817 1.593 5.863 1.536.722-2.13 1.586-4.215 2.187-6.381.247-1.41-1.21-2.26-2.375-2.583-.181-.41.27-.912.745-.472l11.037 3.932c-.132 1.358-1.667-.109-2.517.433-1.36.522-1.476 2.157-1.991 3.34l-1.345 3.775c-4.946.35-10.044-.696-14.348-3.186-4.185-2.637-7.015-7.728-6.192-12.722.638-4.274 3.301-8.277 7.242-10.165 3.62-1.924 8.037-1.916 11.796-.392 2.055.693 3.83 1.964 5.42 3.41.964 1.3 2.829 1.303 3.62-.175l.653.233m17.952 28.813c-.022.449-.072.86-.61.61l-12.638-1.915c.023-.449.073-.86.61-.61 1.096.224 2.564.206 3.093-.976.535-1.688.642-3.476.95-5.215.723-4.856 1.495-9.706 2.186-14.567.268-1.048-.09-2.233-1.175-2.64-.614-.29-1.299-.334-1.96-.444.023-.45.073-.86.61-.61l12.638 1.915c-.022.449-.072.86-.61.609-1.101-.227-2.563-.197-3.111.974-.535 1.688-.642 3.476-.95 5.215-.723 4.856-1.495 9.706-2.186 14.567-.266 1.045.094 2.254 1.185 2.648.62.282 1.305.33 1.968.44zm34.118-8.287l-.5 8.962-22.546 1.15c-.138-.548.01-.84.606-.725 1.133.029 2.593-.452 2.737-1.752.1-2.227-.15-4.455-.224-6.681-.243-4.442-.419-8.887-.71-13.325.125-1.322-1.066-2.301-2.32-2.261-.398-.202-1.475.415-1.367-.31-.182-.589.635-.276.98-.388l12.541-.64c.138.549-.009.84-.606.725-1.158-.006-2.665.276-2.985 1.584-.183 1.926.086 3.864.137 5.795.254 4.625.434 9.256.74 13.877-.094 1.21.877 2.28 2.13 2.047 1.83-.091 3.7-.013 5.487-.473 2.507-.667 3.874-3.15 4.56-5.47.45-.627.078-2.191 1.071-2.101l.269-.014m17.577-21.695c-.598.01-.334.773-.486 1.173-.998 7.476-1.944 14.96-2.976 22.432-.251 1.655-.664 3.588-2.297 4.425-.603.214-.072 1.162.48.635l7.529-2.259c-.095-1.268-1.54-.116-2.35-.339-1.727-.002-1.984-2.1-1.744-3.41l.313-2.657 8.625-2.594c1.1 1.386 2.314 2.69 3.31 4.153.747 1.41-1.07 2.055-2.125 2.327-.493.052-.063 1.085.387.605l11.334-3.397c-.034-1.283-1.677-.08-2.369-.937-2.121-1.594-3.644-3.812-5.4-5.775l-12.231-14.382zm-.063 8.969l6.125 7.312-7.343 2.188 1.218-9.5zm38.632-25.809l3.259 6.06c-1.014.872-1.541-1.149-2.46-1.457-1.507-1.268-3.779-1.508-5.457-.432-.687.357-1.365.73-2.048 1.095 3.277 6.068 6.509 12.16 9.815 18.212.511 1.552 2.418 1.843 3.648.968.476-.345.906-.54 1.06.188-1.664.965-3.482 1.882-5.205 2.828l-6.509 3.5c-.51-.53-.169-.803.407-1.006 1.542-.573 2.135-2.445 1.102-3.763-3.206-6.025-6.46-12.026-9.685-18.042-1.796.995-4.09 1.892-4.543 4.132-.51 1.41.24 3.135.24 4.334-.553.574-.698-.209-.954-.623l-2.785-5.18L977.1 441.38zm15.251-9.042l6.233 8.263c1.445-.919 2.652-2.56 2.218-4.353.167-1.4-1.836-2.988-1.148-3.97.453-.281.72.767 1.095 1.044l7.118 9.436c-.928 1.057-1.6-1.098-2.583-1.331-1.387-.986-3.333-1.477-4.82-.397-1.11.354-1.058.977-.303 1.662 1.67 2.156 3.22 4.41 5.003 6.475 1.091 1.059 2.448-.048 3.372-.784 2.388-1.626 4.485-4.165 4.362-7.21.156-1.33-.679-2.814-.67-3.935.535-.713.685.393.992.755l3.366 6.08-17.544 13.233c-.761-.54-.012-.857.468-1.23 1.638-1.012 1.117-3.078-.088-4.213-3.748-4.936-7.43-9.924-11.226-14.823-.972-1.318-2.765-.624-3.745.295-.407.577-1.044-.579-.273-.664l16.543-12.479 4.528 6.003c-1.049 1.064-1.978-1.307-3.175-1.431-2.173-1.131-4.757-.22-6.553 1.21-1.074.764-2.114 1.575-3.17 2.364"
|
|
95
|
+
/>
|
|
96
|
+
</svg>
|
|
@@ -0,0 +1,311 @@
|
|
|
1
|
+
<svg viewBox="1488.189 992.126 1275 850" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1488.189 992.126h1275v850h-1275z" fill="#FFF"/>
|
|
3
|
+
<path
|
|
4
|
+
d="M1885.935 1567.623s-1.033-6.99 12.242-12.116c13.275-5.126 14.307-24.232 11.652-36.97 0 0-6.932 12.116-15.339 16.155 0 0-13.717 7.146-14.345 20.795 0 0-.109 4.99-1.142 8.873-.565 2.126-6.637-17.087 4.867-31.377 11.872-14.748 15.192-26.717 5.752-50.017 0 0-.885 14.135-10.177 22.213-9.292 8.077-10.474 8.699-10.325 27.96 0 0 .148 6.679-3.392 8.854 0 0-7.227-10.563-9.145-17.553-1.917-6.99-2.802-9.941 5.457-18.019 0 0 26.461-17.1 7.375-54.522 0 0-.59 12.893-9.735 20.504-9.145 7.611-8.407 12.737-8.85 25.941-.443 13.203-1.328 12.271-2.36 14.135 0 0-16.814-30.911-3.835-47.377s20.207-19.883 5.9-50.483c0 0 .635 15.689-10.818 23.456-11.453 7.767-8.798 25.941-8.798 25.941s.737 6.835-1.622 11.805c0 0-16.202-31.601-.737-48.62 13.127-14.446 14.012-24.543 6.932-45.047 0 0-.885 9.476-8.112 14.601-7.227 5.126-12.979 10.252-11.652 29.979 0 0 .59 13.825-1.18 17.708 0 0-6.785-12.582-8.702-20.815-1.917-8.233-2.655-13.048 2.36-21.281 5.015-8.233 24.927-31.844 1.18-65.861 0 0-.737 11.029-6.785 20.97-6.047 9.941-3.245 21.747-1.917 30.756s-3.097 17.708-3.097 17.708-10.325-18.951-8.112-40.697c2.212-21.747-6.637-39.61-26.697-52.503 0 0-14.602 33.863 5.31 51.105 0 0 16.962 16.776 21.239 37.125 0 0-12.832-1.243-24.484-23.921-11.652-22.679-35.841-19.106-37.464-19.261 0 0 3.983 35.105 41.151 45.047 0 0 23.747 4.039 28.172 21.436 0 0 3.982 11.961 5.605 18.329 0 0-7.522-2.951-14.455-13.203-6.932-10.252-6.047-11.495-29.499-13.825 0 0-9.44-1.088-14.455-7.767 0 0 9.882 37.125 35.251 36.814 0 0 23.157-2.485 36.136 27.96 0 0-2.507-1.553-5.9-3.884-3.392-2.33-11.947-6.679-28.909-4.66s-21.682-.777-25.959-2.175c0 0 17.109 31.377 41.299 22.057 24.189-9.32 35.872 24.665 36.136 25.319 0 0-3.245-2.486-7.522-6.68-4.277-4.194-13.157-9.366-29.942-4.039 0 0-12.094 4.66-24.337.932 0 0 11.8 22.834 39.381 18.951 27.581-3.884 34.514 20.349 34.514 20.349s-3.687-2.175-6.195-4.194c-2.507-2.019-11.8-7.301-31.711-1.398-19.912 5.903-27.139-.932-27.139-.932s11.062 20.193 32.301 22.523c0 0 11.8-.155 16.814-2.019 5.015-1.864 18.289-4.815 27.434 8.388 0 0-2.507.466-6.342-1.243 0 0-14.159-5.126-24.927 3.883 0 0-9.587 9.786-23.157 7.922 0 0 17.552 17.087 45.428 2.641 0 0 9.44-6.835 16.372-1.553 6.934 5.285 23.011-5.123 23.011-5.123z"
|
|
5
|
+
fill="#369443"
|
|
6
|
+
stroke="#010002"
|
|
7
|
+
stroke-miterlimit="10"
|
|
8
|
+
stroke-width="3"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M2041.1 1146.669s-3.238-28.908 19.863-31.688c24.091-2.9 35.989 2.175 35.989 2.175l10.816 21.229-3.737 14.291-14.946 6.835s2.557-21.954-17.568-22.411c-5.099-.116-8.096 1.906-16.161.626-8.111-1.288-12.449 7.625-14.256 8.943z"
|
|
12
|
+
fill="#F4C53D"
|
|
13
|
+
stroke="#010002"
|
|
14
|
+
stroke-miterlimit="10"
|
|
15
|
+
stroke-width="3"
|
|
16
|
+
/>
|
|
17
|
+
<path
|
|
18
|
+
d="M2203.639 1218.226c-3.442 4.453-17.208 6.006-17.208 6.006s14.159 10.873 20.256 26.407c6.097 15.533-164.113.103-164.113.103s7.375-5.281 12.39-15.223c0 0-7.522 2.796-15.044-4.66 0 0 5.605 1.864 12.979-9.32 0 0 10.915-13.98 18.584-17.708 0 0-3.54 2.175-12.094-2.485 0 0 14.75-1.864 20.059-27.028 0 0 .885-5.592 6.49-13.669 5.605-8.078 4.425 1.553 14.75-10.874 0 0 4.72-8.802.59-14.187s-8.555-3.417-17.208-8.595c-8.653-5.178-12.488-8.078-9.538-16.051 2.95-7.974 10.62-6.731 11.701-6.731 1.082 0 1.672-6.938 11.112-11.702s34.514-2.693 38.25-.621c3.737 2.071 18.879 6.524 27.729 28.892 8.85 22.368-2.36 30.756 21.731 64.515 0 0-9.636 2.071-15.831.207 0 0 12.487 22.161 34.415 32.724z"
|
|
19
|
+
fill="#F4C53D"
|
|
20
|
+
stroke="#010002"
|
|
21
|
+
stroke-miterlimit="10"
|
|
22
|
+
stroke-width="3"
|
|
23
|
+
/>
|
|
24
|
+
<path d="M2098.328 1123.835c-19.617-.932-12.094-19.624-12.094-19.624" fill="none" stroke="#010002" stroke-miterlimit="10" stroke-width="3"/>
|
|
25
|
+
<path
|
|
26
|
+
d="M2132.399 1126.398s-3.466-1.631-6.398-5.514c-4.115-5.449-13.292-8.077-18.233-2.951 0 0-5.015 5.592-9.44 5.903 0 0 5.015 1.553 8.481 4.738 3.466 3.184 7.08 5.514 12.242 4.815 5.162-.699 5.974-3.417 8.407-5.048 2.434-1.633 4.941-1.943 4.941-1.943z"
|
|
27
|
+
fill="#F4C53D"
|
|
28
|
+
stroke="#010002"
|
|
29
|
+
stroke-miterlimit="10"
|
|
30
|
+
stroke-width="3"
|
|
31
|
+
/>
|
|
32
|
+
<path
|
|
33
|
+
d="M2259.981 1405.765s18.29 14.912 33.629 0c0 0 6.195 7.456 18.584 5.281 12.39-2.175 14.455-8.699 15.635-12.427 0 0 10.718 6.253 19.764 1.314 9.047-4.939 9.047-12.394 9.047-12.394s15.733 3.101 23.796-7.562c8.063-10.663 3.147-21.226-1.18-22.469 0 0 17.01 4.456 21.633-10.148 3.933-12.427-4.917-18.847-4.917-18.847s35.841-.172 50.542-11.391c0 0 12.193-7.663 4.917-15.74 0 0 32.252-5.178 40.315-18.019 0 0 3.54-3.521 2.36-9.734 0 0-.197-3.521-3.737-3.728 0 0 36.78-5.681 47.395-17.812 0 0 5.113-5.592 2.557-13.048 0 0-.541-1.968-1.426-3.288 0 0 33.481-7.068 50-21.98 0 0 9.536-8.496 4.62-19.887 0 0 55.951-15.322 42.972-39.968 0 0 26.156-8.492 17.896-32.102 0 0 21.633-10.977 12.193-28.374-9.034-16.65-36.775 2.899-69.624 11.988 0 0-88.884 27.985-132.656 35.432l-124.372 185.167-72.568 27.96-7.375 51.776z"
|
|
34
|
+
fill="#F4C53D"
|
|
35
|
+
stroke="#010002"
|
|
36
|
+
stroke-width="3"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
d="M2259.097 1269.382s11.657-8.751 32.449 1.553c0 0 7 4.82 12.507-.461 4.601-4.413 5.032-12.549-1.297-17.247-15.487-11.495-21.24-45.979 2.36-60.269 0 0 34.219-20.297 159.696-52.229 0 0 10.513-2.915 16.118-1.517 6.172 1.539 10.423 6.835 11.295 11.366 0 0 5.615 15.956-13.262 25.086 0 0-8.522 3.9-17.306 6.421 0 0 9.648-2.086 13.766 7.456 3.933 9.113-1.77 18.433-19.469 24.439 0 0-4.787 1.863-11.603 3.521 0 0 15.143 4.349 7.866 16.569 0 0-6.49 12.841-29.401 15.119 0 0 17.109 1.864 5.015 18.122 0 0-5.31 8.906-22.026 12.22 0 0 12.685.414 6.293 11.805-6.391 11.391-21.432 17.812-36.232 18.847 0 0-8.016.414-13.621-.829 0 0 14.061 7.042 5.801 18.847 0 0-6.096 8.388-21.337 7.974 0 0 3.956 13.183-7.227 18.174-8.702 3.883-15.929-2.33-15.929-2.33s2.95 14.135-9.735 19.106c0 0-6.342 3.262-15.782 0 0 0-7.227 16.155-32.891 4.815-25.666-11.338-6.048-106.558-6.048-106.558z"
|
|
40
|
+
fill="#F4C53D"
|
|
41
|
+
stroke="#010002"
|
|
42
|
+
stroke-width="3"
|
|
43
|
+
/>
|
|
44
|
+
<path d="M2654.383 1121.815s-40.315 23.342-165.869 46.684" fill="none" stroke="#010002" stroke-width="3"/>
|
|
45
|
+
<path
|
|
46
|
+
d="M1934.384 1534.589s-14.946 25.682-33.039 26.096c0 0-31.122-3.788-39.922 4.349-6.136 5.675-12.39 10.356-14.946 24.854s4.916 17.605 6.686 18.226c0 0 1.377 10.356 11.603 7.663 0 0 .59 10.77 18.683 5.592s25.566-3.521 29.106-21.54c3.54-18.019 6.808-17.724 10.03-19.883 4.327-2.9 12.455-5.64 18.486-9.113 5.418-3.12 26.156-13.67 33.235-14.498 7.08-.828 5.506-24.646 5.506-24.646h-18.289l-8.85-13.048-18.289 15.948z"
|
|
47
|
+
fill="#F4C53D"
|
|
48
|
+
stroke="#010002"
|
|
49
|
+
stroke-width="3"
|
|
50
|
+
/>
|
|
51
|
+
<path
|
|
52
|
+
d="M2636.487 1153.918s-109.115 35.594-159.93 39.968m116.958 0s-64.011 20.094-138.971 32.774m84.35 9.093s-72.322 17.372-106.849 20.255"
|
|
53
|
+
fill="none"
|
|
54
|
+
stroke="#010002"
|
|
55
|
+
stroke-width="3"
|
|
56
|
+
/>
|
|
57
|
+
<path d="M2490.368 1269.9s-61.173 12.758-76.672 14.292" fill="none" stroke="#010002" stroke-miterlimit="10" stroke-width="3"/>
|
|
58
|
+
<path
|
|
59
|
+
d="M2421.511 1362.939l3.063 97.066h0l-17.139-9.943h0l-28.534 123.179-11.773-8.458 27.776-118.011h0l-19.368.356h0z"
|
|
60
|
+
fill="#0081C6"
|
|
61
|
+
stroke="#010002"
|
|
62
|
+
stroke-miterlimit="10"
|
|
63
|
+
stroke-width="3"
|
|
64
|
+
/>
|
|
65
|
+
<path
|
|
66
|
+
d="M2451.43 1301.381s-44.642 6.783-62.409 6.42m6.951 20.712s-18.05-.848-26.724-2.288m10.007 31.284s-15.34-4.142-24.386-9.941m1.771 39.972s-11.8-4.556-17.503-16.983m-11.308 28.063s-9.145-8.181-9.735-17.294"
|
|
67
|
+
fill="none"
|
|
68
|
+
stroke="#010002"
|
|
69
|
+
stroke-miterlimit="10"
|
|
70
|
+
stroke-width="3"
|
|
71
|
+
/>
|
|
72
|
+
<path
|
|
73
|
+
d="M2532.37 1406.102l-40.565 87.218h0l-10.701-17.253h0l-85.643 101.197-9.273-10.381 85.318-99.916h0l-17.259-9.262h0z"
|
|
74
|
+
fill="#0081C6"
|
|
75
|
+
stroke="#010002"
|
|
76
|
+
stroke-miterlimit="10"
|
|
77
|
+
stroke-width="3"
|
|
78
|
+
/>
|
|
79
|
+
<path d="M2293.61 1405.765s3.424-2.953 1.082-15.792" fill="none" stroke="#010002" stroke-miterlimit="10" stroke-width="3"/>
|
|
80
|
+
<path
|
|
81
|
+
d="M2495.369 1342.078l-20.896 94.594h0l-14.112-14.276h0l-76.651 147.389-11.812-6.895 77.167-147.088h0l-18.795-4.935h0z"
|
|
82
|
+
fill="#0081C6"
|
|
83
|
+
stroke="#010002"
|
|
84
|
+
stroke-miterlimit="10"
|
|
85
|
+
stroke-width="3"
|
|
86
|
+
/>
|
|
87
|
+
<path d="M2298.035 1371.126s1.77-3.676 1.18-9.475" fill="none" stroke="#010002" stroke-miterlimit="10" stroke-width="3"/>
|
|
88
|
+
<path
|
|
89
|
+
d="M1991.986 1405.766s-18.289 14.912-33.629 0c0 0-6.195 7.456-18.584 5.281s-14.455-8.699-15.635-12.427c0 0-10.718 6.253-19.764 1.314-9.047-4.939-9.047-12.395-9.047-12.395s-15.733 3.101-23.796-7.562c-8.063-10.663-3.147-21.226 1.18-22.469 0 0-17.01 4.456-21.633-10.148-3.933-12.427 4.917-18.847 4.917-18.847s-35.841-.172-50.542-11.391c0 0-12.193-7.663-4.916-15.74 0 0-32.252-5.178-40.315-18.019 0 0-3.54-3.521-2.36-9.734 0 0 .197-3.521 3.736-3.728 0 0-36.78-5.681-47.395-17.812 0 0-5.113-5.592-2.557-13.048 0 0 .541-1.968 1.426-3.288 0 0-33.481-7.068-50.001-21.98 0 0-9.536-8.496-4.62-19.887 0 0-55.952-15.322-42.972-39.968 0 0-26.156-8.492-17.896-32.102 0 0-21.633-10.977-12.193-28.374 9.034-16.65 36.776 2.899 69.624 11.988 0 0 88.884 27.985 132.656 35.432l124.372 185.167 72.568 27.96 7.376 51.777z"
|
|
90
|
+
fill="#F4C53D"
|
|
91
|
+
stroke="#010002"
|
|
92
|
+
stroke-width="3"
|
|
93
|
+
/>
|
|
94
|
+
<path
|
|
95
|
+
d="M2362.54 1187.263s-20.649 8.285-27.532 19.676c-6.883 11.391-2.35 22.462 0 28.814 1.181 3.192 15.733 31.248-1.377 51.545"
|
|
96
|
+
fill="none"
|
|
97
|
+
stroke="#010002"
|
|
98
|
+
stroke-miterlimit="10"
|
|
99
|
+
stroke-width="3"
|
|
100
|
+
/>
|
|
101
|
+
<path
|
|
102
|
+
d="M1992.871 1269.383s-11.657-8.751-32.449 1.553c0 0-7 4.82-12.506-.461-4.601-4.413-5.033-12.549 1.297-17.247 15.487-11.495 21.239-45.979-2.36-60.269 0 0-34.219-20.297-159.696-52.229 0 0-10.513-2.915-16.118-1.517-6.172 1.539-10.423 6.835-11.295 11.366 0 0-5.615 15.956 13.262 25.086 0 0 8.522 3.9 17.306 6.421 0 0-9.648-2.086-13.766 7.456-3.933 9.113 1.77 18.433 19.469 24.439 0 0 4.787 1.863 11.603 3.521 0 0-15.143 4.349-7.866 16.569 0 0 6.49 12.841 29.401 15.119 0 0-17.109 1.864-5.015 18.122 0 0 5.31 8.906 22.026 12.22 0 0-12.685.414-6.293 11.805 6.391 11.391 21.432 17.812 36.233 18.847 0 0 8.016.414 13.621-.828 0 0-14.061 7.042-5.801 18.847 0 0 6.096 8.388 21.338 7.974 0 0-3.956 13.184 7.227 18.174 8.702 3.883 15.929-2.33 15.929-2.33s-2.95 14.135 9.735 19.106c0 0 6.342 3.262 15.782 0 0 0 7.227 16.155 32.891 4.815 25.662-11.34 6.045-106.559 6.045-106.559z"
|
|
103
|
+
fill="#F4C53D"
|
|
104
|
+
stroke="#010002"
|
|
105
|
+
stroke-width="3"
|
|
106
|
+
/>
|
|
107
|
+
<path
|
|
108
|
+
d="M2362.245 1309.355s-.098-.104-7.375-2.382m50.935-27.442s-12.308 2.478-24.386 2.589m41.397-32.931s-14.455 1.45-28.024 1.243m49.558-32.931s-20.846 4.142-32.056 4.349m49.362-39.765s-25.709 7.338-44.839 9.941m-42.478 15.119s18.486 17.19-3.737 33.138c0 0 9.243 14.498-9.243 29.617"
|
|
109
|
+
fill="none"
|
|
110
|
+
stroke="#010002"
|
|
111
|
+
stroke-miterlimit="10"
|
|
112
|
+
stroke-width="3"
|
|
113
|
+
/>
|
|
114
|
+
<path
|
|
115
|
+
d="M1994.394 1416.2s-3.766 20.218-33.627 45.666c0 0-23.04 20.324-22.45 43.727.601 23.832-4.13 26.51-13.176 34.588 0 0 18.683 1.45 27.729-10.977 0 0-.393 20.711-3.147 22.575 0 0 5.859.374 14.356-8.906 0 0 5.113-5.385 9.833-7.456 0 0-5.506 14.291-1.18 27.546 0 0 1.377-5.178 8.653-7.456 0 0 13.176-2.693 18.29-21.747 0 0 3.343-12.634 23.992-23.818 0 0 23.402-8.827 22.813-20.361s-52.086-73.381-52.086-73.381z"
|
|
116
|
+
fill="#F4C53D"
|
|
117
|
+
stroke="#010002"
|
|
118
|
+
stroke-width="3"
|
|
119
|
+
/>
|
|
120
|
+
<path
|
|
121
|
+
d="M2366.276 1277.046s2.753 27.646-31.072 27.648c0 0 6.49 24.647-26.156 23.819 0 0-3.737 19.675-27.336 15.74"
|
|
122
|
+
fill="none"
|
|
123
|
+
stroke="#010002"
|
|
124
|
+
stroke-miterlimit="10"
|
|
125
|
+
stroke-width="3"
|
|
126
|
+
/>
|
|
127
|
+
<path
|
|
128
|
+
d="M2317.618 1534.589s14.946 25.682 33.039 26.096c0 0 31.122-3.788 39.922 4.349 6.136 5.675 12.39 10.356 14.946 24.854 2.557 14.498-4.917 17.604-6.687 18.226 0 0-1.377 10.356-11.603 7.663 0 0-.59 10.77-18.683 5.592s-25.566-3.521-29.106-21.54c-3.54-18.019-6.808-17.724-10.03-19.883-4.327-2.9-12.455-5.64-18.486-9.113-5.418-3.12-26.156-13.669-33.235-14.498-7.08-.828-5.507-24.646-5.507-24.646h18.289l8.85-13.048 18.291 15.948z"
|
|
129
|
+
fill="#F4C53D"
|
|
130
|
+
stroke="#010002"
|
|
131
|
+
stroke-width="3"
|
|
132
|
+
/>
|
|
133
|
+
<path
|
|
134
|
+
d="M2257.608 1416.2s3.766 20.218 33.627 45.666c0 0 23.04 20.324 22.45 43.727-.601 23.832 4.13 26.51 13.176 34.588 0 0-18.683 1.45-27.729-10.977 0 0 .393 20.711 3.147 22.575 0 0-5.86.374-14.356-8.906 0 0-5.113-5.385-9.833-7.456 0 0 5.506 14.291 1.18 27.546 0 0-1.377-5.178-8.653-7.456 0 0-13.176-2.692-18.29-21.747 0 0-3.343-12.634-23.992-23.818 0 0-23.403-8.827-22.813-20.361.59-11.534 52.086-73.381 52.086-73.381z"
|
|
135
|
+
fill="#F4C53D"
|
|
136
|
+
stroke="#010002"
|
|
137
|
+
stroke-width="3"
|
|
138
|
+
/>
|
|
139
|
+
<path d="M2333.695 1560.685s5.352 1.191 16.962 0" fill="none" stroke="#010002" stroke-width="3"/>
|
|
140
|
+
<path
|
|
141
|
+
d="M2383.303 1575.183s16.323-2.485 15.536 32.931m-25.369-24.854s14.75-1.864 13.766 32.517"
|
|
142
|
+
fill="none"
|
|
143
|
+
stroke="#010002"
|
|
144
|
+
stroke-miterlimit="10"
|
|
145
|
+
stroke-width="3"
|
|
146
|
+
/>
|
|
147
|
+
<path
|
|
148
|
+
d="M2231.088 1500.416s7.08 1.45 11.997 7.042c4.916 5.592 14.356 4.556 14.356 4.556s-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m16.889-9.807s7.08 1.45 11.996 7.042 14.356 4.556 14.356 4.556-5.113-4.142-6.883-14.498-7.473-13.462-7.473-13.462m-7.128 56.562s6.182 1.266 10.474 6.149c4.293 4.882 12.535 3.978 12.535 3.978s-4.465-3.617-6.01-12.658c-1.545-9.042-6.525-11.754-6.525-11.754"
|
|
149
|
+
fill="none"
|
|
150
|
+
stroke="#010002"
|
|
151
|
+
stroke-width="3"
|
|
152
|
+
/>
|
|
153
|
+
<path
|
|
154
|
+
d="M2149.136 1676.875s5.361 23.657 23.993 21.747c0 0 13.176-1.243 12.193-23.197 0 0 19.469 10.356 22.616-15.326 0 0 17.699 4.142 17.503-19.883 0 0 16.52 2.9 14.553-18.433 0 0 17.896 4.763 17.896-15.326 0 0 41.888-6.947-45.428-86.573l-77.877 46.393 14.551 110.598z"
|
|
155
|
+
fill="#F4C53D"
|
|
156
|
+
stroke="#010002"
|
|
157
|
+
stroke-miterlimit="10"
|
|
158
|
+
stroke-width="3"
|
|
159
|
+
/>
|
|
160
|
+
<path
|
|
161
|
+
d="M2140.483 1570.709s12.979 11.516 22.222-5.675c0 0 12.586-.621 14.553-10.148 0 0 10.227-1.036 12.193-10.77 0 0 13.963-1.45 13.57-13.255 0 0 25.385-1.96.008-30.7-25.377-28.741-68.446 47.684-68.446 47.684l5.9 22.864z"
|
|
162
|
+
fill="#F4C53D"
|
|
163
|
+
stroke="#010002"
|
|
164
|
+
stroke-width="3"
|
|
165
|
+
/>
|
|
166
|
+
<path
|
|
167
|
+
d="M2185.322 1675.425s-1.967-41.63-38.047-101.278m60.663 85.952s5.605-24.025-45.232-95.064c0 0 5.9-16.983-12.193-27.857m74.927 103.038s1.573-25.993-48.181-85.33c0 0 4.395-15.326-13.634-27.546m76.368 94.443s-1.868-26.303-50.542-77.667c0 0 2.435-15.74-15.007-25.475m83.445 87.816s-3.54-30.031-54.868-75.596c0 0 1.77-11.805-15.34-23.818"
|
|
168
|
+
fill="none"
|
|
169
|
+
stroke="#010002"
|
|
170
|
+
stroke-miterlimit="10"
|
|
171
|
+
stroke-width="3"
|
|
172
|
+
/>
|
|
173
|
+
<path
|
|
174
|
+
d="M2102.865 1676.875s-5.361 23.657-23.992 21.747c0 0-13.176-1.243-12.193-23.197 0 0-19.469 10.356-22.616-15.326 0 0-17.699 4.142-17.503-19.883 0 0-16.52 2.9-14.553-18.433 0 0-17.896 4.764-17.896-15.326 0 0-41.888-6.947 45.428-86.573l77.877 46.393-14.552 110.598z"
|
|
175
|
+
fill="#F4C53D"
|
|
176
|
+
stroke="#010002"
|
|
177
|
+
stroke-miterlimit="10"
|
|
178
|
+
stroke-width="3"
|
|
179
|
+
/>
|
|
180
|
+
<path
|
|
181
|
+
d="M2111.519 1570.709s-12.979 11.516-22.223-5.674c0 0-12.586-.621-14.552-10.148 0 0-10.227-1.036-12.193-10.77 0 0-13.963-1.45-13.57-13.255 0 0-25.385-1.96-.008-30.7 25.377-28.741 68.446 47.683 68.446 47.683l-5.9 22.864z"
|
|
182
|
+
fill="#F4C53D"
|
|
183
|
+
stroke="#010002"
|
|
184
|
+
stroke-width="3"
|
|
185
|
+
/>
|
|
186
|
+
<path
|
|
187
|
+
d="M2066.68 1675.425s1.966-41.63 38.047-101.278m-60.663 85.952s-5.605-24.025 45.232-95.064c0 0-5.9-16.983 12.193-27.856"
|
|
188
|
+
fill="none"
|
|
189
|
+
stroke="#010002"
|
|
190
|
+
stroke-miterlimit="10"
|
|
191
|
+
stroke-width="3"
|
|
192
|
+
/>
|
|
193
|
+
<path
|
|
194
|
+
d="M2126.001 1563.585c12.582 0 26.839 78.599 23.139 125.953-1.344 17.198-10.557 31.245-23.139 31.245s-21.795-14.047-23.139-31.245c-3.7-47.354 10.557-125.953 23.139-125.953"
|
|
195
|
+
fill="#F4C53D"
|
|
196
|
+
stroke="#010002"
|
|
197
|
+
stroke-width="3"
|
|
198
|
+
/>
|
|
199
|
+
<path
|
|
200
|
+
d="M2026.561 1640.216s-1.573-25.993 48.182-85.33c0 0-4.395-15.326 13.634-27.546m-76.369 94.443s1.868-26.303 50.542-77.667c0 0-2.435-15.74 15.007-25.475"
|
|
201
|
+
fill="none"
|
|
202
|
+
stroke="#010002"
|
|
203
|
+
stroke-miterlimit="10"
|
|
204
|
+
stroke-width="3"
|
|
205
|
+
/>
|
|
206
|
+
<ellipse cx="2126.001" cy="1562.963" fill="#F4C53D" rx="17.41" ry="25.785" stroke="#010002" stroke-width="3"/>
|
|
207
|
+
<path
|
|
208
|
+
d="M1994.112 1606.457s3.54-30.031 54.868-75.596c0 0-1.77-11.805 15.34-23.818"
|
|
209
|
+
fill="none"
|
|
210
|
+
stroke="#010002"
|
|
211
|
+
stroke-miterlimit="10"
|
|
212
|
+
stroke-width="3"
|
|
213
|
+
/>
|
|
214
|
+
<path
|
|
215
|
+
d="M2126.001 1557.331s147.66-65.433 148.029-216.805h-296.058c.369 151.372 148.029 216.805 148.029 216.805z"
|
|
216
|
+
fill="#FFF"
|
|
217
|
+
stroke="#010002"
|
|
218
|
+
stroke-width="3"
|
|
219
|
+
/>
|
|
220
|
+
<path d="M2046.293 1340.525h22.774m-68.321 0h22.774m68.321 0h22.773" fill="none" stroke="#010002" stroke-miterlimit="10" stroke-width="3"/>
|
|
221
|
+
<path
|
|
222
|
+
d="M2000.746 1340.525v96.719s11.31 22.432 22.774 36.5v-133.219h-22.774 0zm45.547 0v159.435s14.242 13.965 22.774 20.697v-180.132h-22.774zm45.548 0v197.076s16.248 10.494 22.774 13.937v-211.013h-22.774z"
|
|
223
|
+
fill="#A60032"
|
|
224
|
+
stroke="#010002"
|
|
225
|
+
stroke-width="3"
|
|
226
|
+
/>
|
|
227
|
+
<path d="M2000.746 1340.525h22.774m22.773 0h22.774m22.774 0h22.773" fill="none" stroke="#010002" stroke-width="3"/>
|
|
228
|
+
<path
|
|
229
|
+
d="M2251.256 1340.525v96.719s-11.31 22.432-22.773 36.5v-133.219h22.773zm-45.548 0v159.435s-14.242 13.965-22.774 20.697v-180.132h22.774zm-45.547 0v197.076s-16.248 10.494-22.774 13.937v-211.013h22.774z"
|
|
230
|
+
fill="#A60032"
|
|
231
|
+
stroke="#010002"
|
|
232
|
+
stroke-width="3"
|
|
233
|
+
/>
|
|
234
|
+
<path d="M2281.978 1703.708l-13.717 16.776m-17.005-18.639l37.801 34.948" fill="none"/>
|
|
235
|
+
<path
|
|
236
|
+
d="M2364.725 1614.728l-5.742 23.475h0l15.719 15.659h0l-22.216 93.839-19.76-26.542-29.279 13.665 22.216-93.839h0l20.597-5.743h0l5.348-23.433s6.23-2.44 13.117 2.919z"
|
|
237
|
+
fill="#0081C6"
|
|
238
|
+
stroke="#010002"
|
|
239
|
+
stroke-miterlimit="10"
|
|
240
|
+
stroke-width="3"
|
|
241
|
+
/>
|
|
242
|
+
<path
|
|
243
|
+
d="M2369.988 1599.248l-11.315 21.11h0l11.335 19.41h0l-44.521 84.586-12.564-31.023-31.64 5.219 44.521-84.586h0l21.306.067h0l10.924-21.177c.001 0 7.948-.017 11.954 6.394z"
|
|
244
|
+
fill="#0081C6"
|
|
245
|
+
stroke="#010002"
|
|
246
|
+
stroke-miterlimit="10"
|
|
247
|
+
stroke-width="3"
|
|
248
|
+
/>
|
|
249
|
+
<path
|
|
250
|
+
d="M2371.898 1605.387l-30.096 38.235h0l6.898 21.598h0l-61.447 71.871-5.615-33.205-31.943-2.411 61.447-71.871h0l20.746 5.113h0l31.924-40.59c-.001.001 8.561 4.253 8.086 11.26z"
|
|
251
|
+
fill="#0081C6"
|
|
252
|
+
stroke="#010002"
|
|
253
|
+
stroke-miterlimit="10"
|
|
254
|
+
stroke-width="3"
|
|
255
|
+
/>
|
|
256
|
+
<path
|
|
257
|
+
d="M1597.585 1121.816s40.315 23.342 165.869 46.684m-147.973-14.582s109.115 35.594 159.93 39.968m-116.958 0s64.011 20.094 138.971 32.774m-84.351 9.093s72.322 17.371 106.849 20.255"
|
|
258
|
+
fill="none"
|
|
259
|
+
stroke="#010002"
|
|
260
|
+
stroke-width="3"
|
|
261
|
+
/>
|
|
262
|
+
<path
|
|
263
|
+
d="M1761.599 1269.901s61.173 12.758 76.672 14.292m-37.733 17.189s44.642 6.783 62.409 6.42m-6.951 20.711s18.05-.848 26.724-2.288m-10.008 31.284s15.34-4.142 24.386-9.941m-1.77 39.972s11.8-4.556 17.503-16.983m11.308 28.064s9.145-8.181 9.735-17.294m24.484 24.439s-3.424-2.953-1.082-15.792m-3.343-18.848s-1.77-3.676-1.18-9.475m-63.325-174.388s20.649 8.284 27.532 19.675c6.883 11.391 2.35 22.462 0 28.814-1.181 3.192-15.733 31.248 1.377 51.545m-28.614 22.058s.098-.104 7.375-2.382m-50.935-27.442s12.308 2.478 24.386 2.589m-41.397-32.931s14.455 1.45 28.024 1.243"
|
|
264
|
+
fill="none"
|
|
265
|
+
stroke="#010002"
|
|
266
|
+
stroke-miterlimit="10"
|
|
267
|
+
stroke-width="3"
|
|
268
|
+
/>
|
|
269
|
+
<path
|
|
270
|
+
d="M1882.877 1610.513s-.442-12.581 15.486-13.513l46.901 65.237s-1.77 4.194-23.008 3.728c0 0-2.249-.015-3.429 2.47-1.812 3.815-35.95-57.922-35.95-57.922z"
|
|
271
|
+
fill="#369443"
|
|
272
|
+
stroke="#010002"
|
|
273
|
+
stroke-miterlimit="10"
|
|
274
|
+
stroke-width="3"
|
|
275
|
+
/>
|
|
276
|
+
<path
|
|
277
|
+
d="M1807.618 1217.501s20.846 4.142 32.056 4.349m-49.362-39.765s25.709 7.338 44.839 9.941m42.478 15.12s-18.486 17.19 3.736 33.138c0 0-9.243 14.498 9.243 29.617m-4.916 7.146s-2.753 27.646 31.072 27.648c0 0-6.49 24.647 26.156 23.819 0 0 3.736 19.676 27.336 15.74"
|
|
278
|
+
fill="none"
|
|
279
|
+
stroke="#010002"
|
|
280
|
+
stroke-miterlimit="10"
|
|
281
|
+
stroke-width="3"
|
|
282
|
+
/>
|
|
283
|
+
<path d="M1918.258 1560.685s-5.352 1.191-16.962 0" fill="none" stroke="#010002" stroke-width="3"/>
|
|
284
|
+
<path
|
|
285
|
+
d="M1868.651 1575.183s-16.323-2.485-15.536 32.931m25.369-24.854s-14.75-1.864-13.766 32.516"
|
|
286
|
+
fill="none"
|
|
287
|
+
stroke="#010002"
|
|
288
|
+
stroke-miterlimit="10"
|
|
289
|
+
stroke-width="3"
|
|
290
|
+
/>
|
|
291
|
+
<path
|
|
292
|
+
d="M2020.914 1500.415s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m-16.89-9.806s-7.08 1.45-11.996 7.042-14.356 4.556-14.356 4.556 5.113-4.142 6.883-14.498 7.473-13.462 7.473-13.462m7.128 56.561s-6.182 1.266-10.474 6.148c-4.293 4.883-12.535 3.978-12.535 3.978s4.465-3.617 6.01-12.659c1.545-9.042 6.525-11.754 6.525-11.754"
|
|
293
|
+
fill="none"
|
|
294
|
+
stroke="#010002"
|
|
295
|
+
stroke-width="3"
|
|
296
|
+
/>
|
|
297
|
+
<path
|
|
298
|
+
d="M2274.03 1230.549s-72.456 37.901-148.029-3.107c-75.573 41.008-148.029 3.107-148.029 3.107v109.976h296.058v-109.976h0z"
|
|
299
|
+
fill="#162667"
|
|
300
|
+
stroke="#010002"
|
|
301
|
+
stroke-miterlimit="10"
|
|
302
|
+
stroke-width="3"
|
|
303
|
+
/>
|
|
304
|
+
<path
|
|
305
|
+
d="M1609.306 1515.748c7.175-2.929 12.342-5.756 12.32-13.412-.005-1.825-1.019-5.863-3.055-12.114l-48.177-147.24c-2.853-8.747-5.01-13.947-6.01-15.863-2.166-4.147-6.417-5.835-12.143-8.22h61.232c-6.652 3.143-12.716 5.639-12.659 12.691.022 2.693.779 6.49 2.341 11.393l36.907 115.541 36.871-115.541c1.562-4.903 2.369-8.7 2.343-11.393-.071-7.248-6.386-9.86-12.591-12.691h59.343c-5.426 2.174-9.848 3.878-12.12 8.22-1.002 1.916-3.157 7.116-6.009 15.863l-48.177 147.24c-2.038 6.25-2.775 10.357-3.056 12.258 0 0-2.217 9.312 12.32 13.267l-59.68.001h0zm1026.68-15.143v-166.709c0-2.884-.476-5.095-1.425-6.634-.951-1.537-5.09-5.969-10.995-8.364h55.175c-5.906 1.955-10.046 6.706-10.995 8.292-.951 1.586-1.425 3.821-1.425 6.706v166.709c0 2.981.491 5.264 1.476 6.85.983 1.586 5.039 5.458 10.944 8.292h-55.175c5.906-2.687 10.044-6.825 10.995-8.364.949-1.536 1.425-3.797 1.425-6.778z"
|
|
306
|
+
fill="#0081C6"
|
|
307
|
+
stroke="#010002"
|
|
308
|
+
stroke-miterlimit="10"
|
|
309
|
+
stroke-width="3"
|
|
310
|
+
/>
|
|
311
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<svg viewBox="-15 -10 30 20" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M-20-15h40v30h-40z" fill="#DA251d"/>
|
|
3
|
+
<g id="b" transform="translate(0 -6)">
|
|
4
|
+
<path d="M0 0v6h4" fill="#FF0" id="a" transform="rotate(18)"/>
|
|
5
|
+
<use transform="scale(-1 1)" xlink:href="#a"/>
|
|
6
|
+
</g>
|
|
7
|
+
<g id="c" transform="rotate(72)">
|
|
8
|
+
<use xlink:href="#b"/>
|
|
9
|
+
<use transform="rotate(72)" xlink:href="#b"/>
|
|
10
|
+
</g>
|
|
11
|
+
<use transform="scale(-1 1)" xlink:href="#c"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg viewBox="0 0 950 570" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<path d="M0 0h950v285H0z" fill="#d21034"/>
|
|
3
|
+
<path d="M0 285h950v285H0z" fill="#009543"/>
|
|
4
|
+
<path d="M0 0l552.813 285L0 570z"/>
|
|
5
|
+
<path d="M0 234h950v102H0z"/>
|
|
6
|
+
<path d="M0 40.502L474.251 285 0 529.496z" fill="#fdce12"/>
|
|
7
|
+
<path d="M0 270h950v30H0z" fill="#fdce12"/>
|
|
8
|
+
<path d="M0 74.255L408.782 285 0 495.745z"/>
|
|
9
|
+
<path
|
|
10
|
+
d="M115.481 339.524V372c28.253 0 83.7-21.65 83.7-91.356 0-69.706-59.144-82.644-76.835-82.644C104.656 198 50 210.674 50 267.706c0 57.032 53.6 62.313 64.161 62.313s50.167-9.506 45.679-52.28c0 12.146-13.73 37.758-42.511 37.758-28.78 0-46.734-21.388-46.734-42.51 0-21.124 17.426-49.376 47.79-49.376s52.543 26.931 52.543 54.128c0 27.196-21.386 61.785-55.447 61.785z"
|
|
11
|
+
fill="#fdce12"
|
|
12
|
+
/>
|
|
13
|
+
<g fill="#fdce12" id="a">
|
|
14
|
+
<path d="M90.728 297.245l1.683 1.089s13.367-30.496 49.309-52.18c-4.555 2.475-28.615 14.456-50.992 51.091z" stroke="#fdce12"/>
|
|
15
|
+
<path
|
|
16
|
+
d="M94.193 291.997s-4.158-8.515-.495-12.277c3.664-3.763 1.981 10 1.981 10l1.584-2.277s-2.476-10.397.297-12.575c2.772-2.178 1.386 10 1.386 10l1.683-2.178s-1.782-10.099.891-11.981c2.674-1.881.991 9.506.991 9.506l1.98-2.278s-1.485-9.604 1.782-11.881c3.268-2.278.396 9.109.396 9.109l2.178-2.376s-.99-8.813 1.783-10.793c2.772-1.98.396 8.317.396 8.317l1.98-2.079s-.594-8.218 2.079-10.099c2.674-1.882.198 7.822.198 7.822l2.08-1.981s-.495-8.218 2.871-9.802c3.366-1.584-.594 7.723-.594 7.723l2.277-1.98s.693-9.604 3.565-10.496c2.871-.891-1.287 8.516-1.287 8.516l2.079-1.684s1.089-8.218 4.257-9.208c3.169-.99-1.98 7.525-1.98 7.525l2.079-1.584s2.278-8.218 5.248-9.109c2.971-.891-3.069 7.723-3.069 7.723l1.98-1.386s3.267-7.427 5.941-7.922c2.673-.495-2.971 6.139-2.971 6.139l2.476-1.485s4.257-7.723 5.743-5.347c1.485 2.377-5.941 5.842-5.941 5.842l-2.476 1.386s9.011-4.257 10.1-2.079c1.089 2.178-12.377 3.565-12.377 3.565l-2.178 1.485s9.01-2.476 7.921-.198c-1.089 2.277-10 1.782-10 1.782l-2.08 1.485s9.01-2.178 7.822-.099c-1.188 2.079-10 1.881-10 1.881l-2.178 1.783s8.812-2.278 7.525.396c-1.288 2.673-11.288 2.574-11.288 2.574l-2.475 2.277s9.307-3.168 8.515-.693c-.792 2.476-11.387 3.763-11.387 3.763l-2.376 2.376s10-3.366 7.03-.297c-2.97 3.07-10.198 3.862-10.198 3.862l-2.872 3.465s9.902-5.941 8.515-2.574c-1.386 3.366-11.089 5.644-11.089 5.644l-1.98 2.376s8.911-5.149 8.02-2.277c-.891 2.871-10.397 5.94-10.397 5.94l-1.584 2.179s10.495-6.238 9.604-3.07c-.891 3.169-10.891 5.446-10.891 5.446l-1.287 1.98s9.703-5.544 9.802-2.871c.099 2.673-11.387 5.347-11.387 5.347l-.198-2.278z"
|
|
17
|
+
/>
|
|
18
|
+
</g>
|
|
19
|
+
<use transform="matrix(-1 0 0 1 238.5 0)" xlink:href="#a"/>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg viewBox="0 0 150 100" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h150v100H0z" fill="#ED2939"/>
|
|
3
|
+
<path d="M0 0h40v40H0z" fill="#FFF"/>
|
|
4
|
+
<path d="M0 0h20v40H0z" fill="#002395"/>
|
|
5
|
+
<path d="M0 40h60V0" fill="none" stroke="#FFF"/>
|
|
6
|
+
<path d="M105 46L93 34h24zm-4 4L89 38v24zm4 4L93 66h24zm4-4l12-12v24z" fill="#FFF"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<svg viewBox="0 0 2880 1440" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<defs>
|
|
3
|
+
<path d="M0 0l.309.951L-.5.363h1l-.809.588z" id="a"/>
|
|
4
|
+
</defs>
|
|
5
|
+
<path d="M0 0h2880v1440H0z" fill="#ce1126"/>
|
|
6
|
+
<path d="M0 0h1440v720H0z" fill="#002b7f"/>
|
|
7
|
+
<g fill="#fff">
|
|
8
|
+
<use transform="matrix(160 0 0 160 720 30)" xlink:href="#a"/>
|
|
9
|
+
<use transform="matrix(160 0 0 160 500 210)" xlink:href="#a"/>
|
|
10
|
+
<use transform="matrix(150 0 0 150 945 180)" xlink:href="#a"/>
|
|
11
|
+
<use transform="matrix(100 0 0 100 830 364.894)" xlink:href="#a"/>
|
|
12
|
+
<use transform="matrix(200 0 0 200 720 499.789)" xlink:href="#a"/>
|
|
13
|
+
</g>
|
|
14
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<svg viewBox="0 0 840 600" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h840v600H0z" fill="#244aa5"/>
|
|
3
|
+
<path
|
|
4
|
+
d="M424.541 190.135c3.515 4.101 5.868 8.2 5.868 13.185-2.951 1.459-7.028 2.054-9.381 4.69 14.651-2.055 17.57 14.934 33.978 8.487.596 2.353 2.95 4.407 5.867 3.519l1.757-4.68c6.432-1.756 4.675 8.785 11.731 6.73 3.517 2.934 1.164 7.907 3.517 11.437 0 4.094 1.758 7.608 3.513 11.122 1.759-2.04 2.92-4.974 7.028-4.095 2.919 3.217 5.272 6.15 5.865 9.664-1.19 6.745-2.947 12.596 4.08 16.11v2.054c4.707 2.055 15.249-2.054 15.249 6.15-.598 2.934 2.917.298 4.109 2.055 2.919-1.177 7.028-.58 10.541-.58 2.919 6.15-3.513 10.541-5.27 16.11 2.917 2.919 1.757 8.204 1.161 11.702l-1.758.879c4.675.878 10.54-.565 14.652 2.07l7.624 2.918c3.513-2.038 7.593-2.352 12.298-2.038 3.514 2.636-1.191 7.027 1.758 9.067 4.11 0 7.624.597 8.189 4.111l.595 1.16c2.919-5.271 11.138-1.758 14.653-5.552 5.866 0 7.026 6.432 9.944 9.946 1.193 9.097-9.944 13.209-6.431 22.275-2.353 4.391-7.028 7.907-10.541 12.016 1.16.596.564 2.04.564 2.918-3.514 2.071-.564 8.22-5.271 8.787-.565 3.826-7.593 2.352-5.27 6.46 4.704 6.15-2.323 9.947-2.323 15.531-2.95 3.231-8.816-2.95-8.816 3.231-3.514.878-7.027-3.23-9.35.284-1.19 4.11 2.323 5.553 1.758 9.663 5.836-.597 7.593 5.27 9.946 8.785l5.867 5.866c-5.867 4.675-13.491-.597-20.52 2.039-1.757-.878 0-3.2-1.757-4.078-1.758-2.072-5.27-2.072-8.189-2.638.565 2.638-4.705 3.515-2.352 6.715 0 .878 1.16 3.514-1.162 3.514-4.706 1.475-4.11-4.078-8.22-2.04-5.27 2.04-1.16 9.947-8.784 9.068 1.16 7.06-11.703 11.735-2.919 17.884 1.16 1.162.565 3.514.565 5.27-5.272 4.707-14.623 2.95-20.488 1.192-4.706-1.191-1.757-7.058-3.513-10.258-1.758-2.95-7.028-4.989-7.028-9.099-3.517-1.445-6.463-2.35-8.816-5.271-8.188 7.906-18.163 15.53-29.869 15.812-5.27 2.636-8.219 13.21-16.408 8.815-3.216 5.273-12.895 0-13.476 7.595-3.812 1.474-2.055 6.462-4.392 8.784-.879 5.866 0 10.854 4.973 14.37 2.054 4.391-4.393 4.391-1.758 8.503.597 1.444 0 3.513-.878 4.109-1.757.878-2.337 1.758-1.757 3.514-1.459 0-2.053.878-3.216 2.039-1.475 2.918-6.15 4.392-9.38 6.432-3.217.878-5.57-1.444-7.61-3.514-.596 3.231-3.23 4.989-6.446 4.989-4.691 0-3.812-4.11-7.327-5.867 1.46-5.271-3.23-7.593-1.757-12.3 3.811-2.917 10.244-4.987 8.487-11.136-4.094-4.958-2.635-12.3-6.73-18.166-2.635-2.322-7.027-5.835-5.569-11.42 3.812-4.392 0-9.663-2.054-14.338-.878-3.827-3.216-7.34-3.216-11.734-6.447-3.796-6.746-13.773-15.828-14.651-6.447 0-7.608-8.19-14.056-7.625-.595-1.16-2.054-2.038-3.23-3.2-4.675 3.2-10.542-.878-16.394.565-3.812-6.432 3.216-15.217-7.043-19.045v-4.078c1.177.564 1.757-.598 2.055-1.193.58-4.392-7.327-4.957-4.094-9.946-1.758-1.474-3.812-2.07-2.636-4.988-4.407-9.068-17.585-8.189-20.518-17.287 2.352-2.038 2.352-4.11 3.232-5.866-2.056-3.515-2.636-7.311-2.056-11.107 2.056-.597 3.216-3.231 4.393-5.303-2.636-1.756-5.853-4.391-8.786-3.513-5.27-.878-9.083-4.957-13.773-7.31-1.176-1.162-.58-3.231-.58-4.675 6.447-2.072-.878-11.154 7.028-9.977 2.056-2.635 6.447-3.514 9.665-5.569 3.23-.58 5.866.596 9.082 1.475 2.635 3.499 7.326 2.04 9.96 4.972 2.636-.595 5.868-2.055 9.084-.595 0-4.974 2.338-7.907 5.866-11.422.58-2.04 3.797-3.513 6.432-4.675 4.99 1.162 10.84 1.162 14.37-2.353 2.338 1.474 4.393-1.458 7.028-1.458 3.215-.596 5.851.282 8.204 1.757.283-5.868 10.541-.88 12.597-7.907 2.338-4.691-6.447-6.447-5.867-10.557-1.46-4.691 2.055-7.028 3.811-10.244 2.055-.88 4.393-2.055 7.028-1.475 6.746-2.338 1.474-16.11 12.315-11.122 0 1.46-.596 3.216.282 3.514 3.812 0 4.397-4.396 7.044-5.866 1.16-4.094-1.474-9.082 2.04-12.3 1.757-.297 3.23-.877 4.392-2.352 0-3.216-1.757-4.972-4.393-7.028-.878 1.464-3.216.298-4.686.88 0-3.515-2.044-5.852-2.64-9.084-1.757-.878-2.635-2.337-2.04-4.393 2.636-2.635 0-9.082 6.15-7.62 2.338-2.043 6.447-.584 8.785-4.099 6.15-3.513 14.353-3.513 19.044-9.96 2.055.297 4.393-1.757 6.447 0 .582 3.81 6.151 2.336 6.151 5.858"
|
|
5
|
+
fill="#d0a650"
|
|
6
|
+
/>
|
|
7
|
+
<path
|
|
8
|
+
d="M469.9 110.7l-8.1-24.9-8 24.9h-26.2l21.2 15.4-8.1 24.9 21.1-15.4L483 151l-8.1-24.9 21.2-15.4zm82.4 14.5l-8.1-24.8-8 24.8H510l21.2 15.4-8.1 24.9 21.1-15.4 21.2 15.4-8.1-24.9 21.2-15.4zm78.6 28.6l-8-24.8-8.1 24.8h-26.2l21.2 15.4-8.1 24.9 21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-244.7-43.1l-8-24.9-8.1 24.9h-26.2l21.2 15.4L357 151l21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-82.4 14.5l-8-24.8-8.1 24.8h-26.2l21.2 15.4-8.1 24.9 21.2-15.4 21.1 15.4-8.1-24.9 21.2-15.4zm-78.6 28.6l-8.1-24.8-8 24.8h-26.2l21.2 15.4-8.1 24.9 21.1-15.4 21.2 15.4-8.1-24.9 21.2-15.4z"
|
|
9
|
+
fill="#fff"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg viewBox="0 0 9 6" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
2
|
+
<clipPath id="c">
|
|
3
|
+
<path d="M0 0l4.5 3L0 6" id="b"/>
|
|
4
|
+
</clipPath>
|
|
5
|
+
<clipPath id="a">
|
|
6
|
+
<path d="M0 0h9v6H0z"/>
|
|
7
|
+
</clipPath>
|
|
8
|
+
<g clip-path="url(#a)">
|
|
9
|
+
<path d="M0 0v6h9V0z" fill="#001489"/>
|
|
10
|
+
<path d="M0 0v3h9V0z" fill="#e03c31"/>
|
|
11
|
+
<g stroke="#fff" stroke-width="2">
|
|
12
|
+
<path d="M0 0l4.5 3L0 6m4.5-3H9" id="d"/>
|
|
13
|
+
<use clip-path="url(#c)" stroke="#ffb81c" xlink:href="#b"/>
|
|
14
|
+
</g>
|
|
15
|
+
<use fill="none" stroke="#007749" stroke-width="1.2" xlink:href="#d"/>
|
|
16
|
+
</g>
|
|
17
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg viewBox="0 0 2100 1400" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M0 0h2100v1400H0z" fill="#198a00"/>
|
|
3
|
+
<path d="M1350 500h500v900h-500z" fill="#de2010"/>
|
|
4
|
+
<path d="M1600 500h500v900h-500z" fill="#ef7d00"/>
|
|
5
|
+
<path d="M1600 500h250v900h-250z"/>
|
|
6
|
+
<g fill="#ef7d00" stroke="#000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.25">
|
|
7
|
+
<path
|
|
8
|
+
d="M1916.425 168.334s86.002-33.706 94.334-40.656c3.79 4.17-34.476 46.564-108.731 62.2 67.435-14.594 125.023-60.462 136.768-59.072 3.41.695 2.65 44.826-151.923 83.05 106.837-25.715 168.97-72.973 168.213-67.76.757 1.042-10.608 37.18-104.185 65.327 26.141-5.56 96.987-45.174 96.23-37.529 2.272 3.128-68.574 86.524-196.627 59.421 102.292 24.324 168.59-34.402 178.062-33.36 1.895.348-18.944 51.429-147.753 54.556 61.755-5.907 43.946-.348 43.946-.348s-36.37 26.061-80.317 8.341c34.476 8.688 38.264 9.034 39.021 11.814-2.272 3.474-30.687 8.687-57.964-4.866 21.973 8.34 41.674 9.73 42.052 12.858-.378 1.042-14.395 8.34-26.897 3.128-12.502-5.214-127.676-70.193-127.676-70.193l196.249-49.343zm-230.712 175.771c-17.257 0-17.734 14.085-17.734 14.085s-1.424 1.017-.474 7.844c2.85-4.649 4.275-6.1 4.275-6.1 1.9.29 9.816 2.468 22.324-6.535-11.4 10.89-4.59 14.957-4.59 14.957s-2.692 8.568 6.014 10.311c-2.69-3.486-1.107-6.535-1.107-6.535s12.19-1.161 11.4-14.811c.475 12.341 7.758 15.391 7.758 15.391s0 6.825 7.915 7.407c-4.273-3.486-3.325-8.859-3.325-8.859s10.292-6.825 1.584-18.443c5.225-2.76 9.5-10.455 9.5-10.455s-7.124-2.76-10.449-5.082c-1.585-3.051-.158-19.75-.158-19.75l-4.276-21.639-12.192 33.693c.474-4.793.792 14.521-16.465 14.521z"
|
|
9
|
+
/>
|
|
10
|
+
<path
|
|
11
|
+
d="M1770.944 295.514c.378.348 12.882 13.206 25.004 12.51 4.545-3.474-9.472-11.119-9.472-12.857 4.925 4.17 25.762 20.501 39.023 14.594 5.303-6.95-9.472-5.906-25.763-24.671 11.365 6.95 39.78 22.239 53.04 16.332 5.685-5.56-29.551-22.936-41.296-36.487l-30.307-14.246-41.296 30.927zm-46.599-105.635s14.017-7.645 70.088-3.823c6.062.695 38.264-10.077 48.494-13.204 16.29-2.78 68.193-13.205 82.212-22.935 9.85-1.042-2.654 16.68-15.154 20.85-13.262 5.56-61.376 20.849-78.425 18.764 20.459.348 9.094 15.637-25.005 8.34 16.292 8.34 10.23 9.73 10.23 9.73s-28.792 1.39-36.37-4.518c19.323 6.602 11.366 9.035 11.366 9.035s-19.7 1.737-28.794-2.085c14.017 3.822 6.82 6.255 6.82 6.255s-11.365 1.737-20.837-1.39c-9.47-3.128-23.868-25.02-24.625-25.02zm22.482 112.837l2.06 33.982s-1.11 1.743-2.06 2.76c-.95 1.016-26.283-3.632-22.8 14.085 0 7.262.16 9.149 5.543 13.215-1.426-4.792-.95-8.131-.95-8.131s7.124 3.921 14.091-6.825c-4.75 10.6-1.426 14.376-.317 14.667 1.109 1.889-1.899 10.455 7.6 10.31-3.64-3.195-1.9-7.843-1.9-7.843s9.976-1.45 6.492-18.006c3.642-3.34 5.066-.145 5.066-.145s1.108 9.874 9.816 7.842c3.96 2.032-.632 7.405-.632 7.405s6.332.146 8.232-4.792c1.9-4.937 4.117-13.796-6.334-17.426-1.266-3.484 4.118-3.775 4.118-3.775s6.65 2.032 8.549 5.082c1.9 3.05 1.267-7.986-6.966-9.149-10.133-.291-10.766-2.178-10.766-2.613 0-.437-1.741-24.687-2.533-31.658z"
|
|
12
|
+
/>
|
|
13
|
+
<path
|
|
14
|
+
d="M1782.069 331.675c.124-1.558-17.286-23.059-12.869-25.838 4.415.833 11.656 10.613 17.522 7.438-1.778-3.811-7.018-1.665-12.97-11.423-5.948-11.032-6.817-27.593-27.654-45.658 13.49 19.116 44.092 30.322 45.388 24.748 1.296-5.575-26.946-26.653-25.5-31.733 5.617 10.433 33.975 33.678 54.868 31.753 1.432-4.475-17.11-13.508-21.881-21.942-13.347-8.224-49.065-36.462-49.78-43.011-12.998-17.387-21.111-22.647-24.89-24.65-1.46-1.577-1.826-3.085-2.112-4.044-8.068-17.446 2.619-23.11 8.874-23.949 5.147-.524 6.642.182 10.346-1.463-4.386-1.574-8.77-3.046-13.156-4.62 5.719 3.848 20.325.46 17.16 11.542 6.403-2.235 20.03-17.104-15.444-20.46-11.545-12.147-59.009-19.128-70.89 33.888.95.743 1.446 1.354 4.465 3.422-14.989-6.663-55.421-11.802-69.992-13.961-39.364-10.417-80.244-35.52-84.174-32.433-5.256 2.14 23.784 26.92 22.274 27.468-25.18-13.466-48.182-23.006-69.585-31.687-15.058-5.163-30.14-17.182-31.802-14.896-5.542 10.53 24.14 36.996 29.662 40.11 5.523 2.978 48.947 21.453 48.307 21.684-65.406-27.229-76.372-32.165-79.654-35.305-5.764-1.19-19.807-18.581-23.72-17.463-2.143 1.93 2.154 29.41 33.364 41.744 5.087 3.4 66.9 23.739 66.295 25.333-.15.399-70.798-26.743-73.542-27.714-13.621-4.899-30.334-22.07-33.459-20.14-2.982 1.753 7.705 20.339 21.468 26.168 7.215 2.92 34.887 15.492 59.819 23.493 1.591.527-44.815-16.141-67.126-24.693-10.116-5.15-14.88-11.568-16.42-10.187-2.28 1.38 3.682 28.837 75.38 44.33 1.888.737 25.237-5.074 24.083-4.303-.289.193-23.186 4.765-25.415 4.608-1.984-.278-14.528 1.362-14.755 1.959-.758 1.857 4.545 11.688 41.564 9.638 4.733-.261 30.416-8.579 28.258-6.79-1.08.896-34.973 10.997-37.554 11.196-2.242.291-14.15 1.433-14.59 2.595-.537 1.584 8.814 8.58 28.694 9.702 17.602.857 51.05-9.865 50.378-9.17-.67.695-32.244 10.618-33.07 11.223-1.142.593-12.704 1.168-13.11 1.982-.942 2.026 16.678 17.138 68.787 1.01-5.235 6.486-30.493 10.921-30.457 12.09-.117.847 5.565 5.882 14.396 7.684 4.415.9 10.46.717 15.982-.083 9.918-1.821 20.37-5.42 33.65-16.678 1.587 3.533-33.174 19.668-31.542 21.207 7.537 6.41 32.576-.827 34.216-1.667 1.641-.842 48.215-24.93 48.055-27.718.723 3.573-60.046 33.859-59.39 35.101 3.9 5.71 24.66-.3 25.652-.825.99-.523 26.493-13.16 27.192-13.532.697-.373-29.973 16.464-27.24 19.027-1.321 10.933 47.898-7.546 51.755-9.847 1.929-1.15-23.644 10.313-23.712 15.759 8.235 12.77 34.603 8.719 38.67 5.91 2.035-1.405-2.393 9.486-.967 8.497.497-.205 5.735-5.886 7.75-9.998-.643 3.568-3.534 9.189-5.22 15.638-1.69 6.449-2.173 13.726-4.49 21.458-.532 3.396 16.247-6.64 13.81-30.631 1.436 12.479-5.299 35.813-3.536 37.026 3.525 2.426 13.27-11.621 14.255-21.12 2.894 4.798 8.968 14.813 14.193 17.117-.569-7.258.1-6.925-2.252-14.059 1.357-9.47 1.546-22.578 1.874-37.38 14.199 24.948 19.862 35.483 15.895 54.588 4.222 1.615 10.966-13.335 10.422-21.03 5.422 21.381 28.825 24.587 29.197 23.965z"
|
|
15
|
+
/>
|
|
16
|
+
<path d="M1545.575 173.288s-9.664 6.697-21.69 6.303c3.006 11.03 27.918 2.56 27.918 2.56s-12.027 12.213-20.617 14.183c5.154 3.94 26.845 2.56 30.497.591 3.65-1.97 10.093-9.652 10.093-9.652s-22.335 23.637-25.557 23.44c-.43 2.758 23.41 1.773 28.35-2.363 4.938-4.137 17.394-10.243 17.394-10.243s-32.643 20.88-34.147 20.88c12.241 2.954 36.724-3.546 52.402-12.41-23.195 14.182-25.34 16.743-37.153 21.47 10.524 2.167 15.89 8.668 51.542-5.515 20.403-8.864 31.998-25.016 31.998-25.016-12.67 15.561-32.644 28.76-54.762 41.76-1.29 2.363 23.622 12.014 55.406-18.32m60.992 18.122s2.148 9.258 10.738 16.35c8.592 7.09 9.236 13.984 9.236 13.984m-24.268-90.609s3.006 8.273 11.811 13.592c9.02 5.318 22.552 22.06 23.625 25.016 1.04 3.576 6.227 29.35 5.798 32.106"/>
|
|
17
|
+
<path d="M1659.184 191.606c.644 3.152-12.672 19.107 5.582 37.82-16.537 18.515-16.535 20.88-16.535 20.88s9.234 4.727 25.77-8.274c27.274 30.73 18.186 44.792 18.186 44.792"/>
|
|
18
|
+
<path d="M1690.014 265.13s-2.512-3.3 1.967-15.626c4.033 4.456 8.518 5.407 10.484 7.211 1.965 1.804 22.558 4.538 23.867 17.16m-12.109-124.443c0-.927-4.147-9.088-19.616 1.113 8.29.464 16.48 4.822 19.616-1.113zm147.646 37.319c.757.348 46.22 9.382 61.375 4.865-19.322 23.63-57.965 7.645-57.965 7.645 18.942 5.212 19.701 4.865 25.761 9.73 1.895 4.517-34.854 2.432-46.978-3.823 33.719 9.73 34.476 9.035 35.614 12.857 1.517 5.212-55.314-1.39-60.239-8.34 15.155 10.772 23.49 12.857 31.824 17.722-10.23 4.17-29.171 8.339-64.027-14.247 45.84 38.224 87.137 35.79 93.579 42.74-15.912 21.545-77.667-12.856-106.082-30.23-28.414-17.375 62.133 42.046 70.47 41.003-4.17 5.907-34.098.695-35.993-2.085m64.405-37.876c-5.302.695-21.214.695-23.487.348m-317.866-60.076s34.576 16.743 49.18 15.562c-3.866 3.348-9.666 4.727-9.666 4.727 3.652 1.379 13.746 6.303 28.995 3.152-3.652 3.348-8.377 7.091-8.377 7.091s13.101 4.53 27.92-2.56c-4.51 5.12-7.089 8.863-7.089 8.863l10.31.591"/>
|
|
19
|
+
</g>
|
|
20
|
+
</svg>
|