@tekkare/auriga 0.2.138 → 0.2.140

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/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.2.138"
7
+ "version": "0.2.140"
8
8
  }
@@ -0,0 +1,240 @@
1
+ <template>
2
+ <div
3
+ class="oip_table_card map_card-container"
4
+ :id="`container_map-${title}-${uniqueID}`"
5
+ >
6
+ <div class="p-24">
7
+ <slot name="customTitle" v-if="haveCustomTitle" />
8
+ <div v-else class="oip_subtitle">
9
+ {{ title ? title : "Your map title" }}
10
+ </div>
11
+ <ArgSourceContainer v-if="source !== null" @click="openSource">
12
+ {{ source ? source : "Your source" }}
13
+ </ArgSourceContainer>
14
+ </div>
15
+ <div
16
+ v-if="hoveredRegion !== null"
17
+ :id="`tooltip_map-${title}`"
18
+ class="tooltip_container"
19
+ :style="{
20
+ top: tooltipPosition.y + 'px',
21
+ left: tooltipPosition.x + 'px',
22
+ width: tooltipPosition.width + 'px',
23
+ }"
24
+ >
25
+ <div class="tooltip">
26
+ <p class="card_title">{{ hoveredRegion }}</p>
27
+ <div class="card_text">
28
+ <slot
29
+ name="Tooltip"
30
+ v-bind:value="{
31
+ name: hoveredRegion,
32
+ value: data.find((x) => x.name == hoveredRegion)?.value,
33
+ }"
34
+ />
35
+ </div>
36
+ </div>
37
+ </div>
38
+ <div class="p24">
39
+ <svg
40
+ class="map"
41
+ width="auto"
42
+ height="500"
43
+ viewBox="0 0 700 850"
44
+ fill="none"
45
+ xmlns="http://www.w3.org/2000/svg"
46
+ >
47
+ <OneRegionDk
48
+ v-for="region in RegionsDk"
49
+ :key="region"
50
+ :data="{
51
+ color: getColor(data.find((x) => x.name == region)?.value),
52
+ value: data.find((x) => x.name == region)?.value,
53
+ }"
54
+ :current-region="region"
55
+ :title="title"
56
+ :hoveredRegion="hoveredRegion"
57
+ @hover="handleHover(region)"
58
+ @mouseleave="handleMouseLeave"
59
+ />
60
+ </svg>
61
+ <div class="legend">
62
+ <div :class="reverseColors ? 'reverse_scale' : 'scale'" />
63
+ <div class="legend-text">
64
+ <p v-for="value in scale" :key="value">
65
+ {{ Math.ceil(value)?.toLocaleString("fr-FR") }}
66
+ </p>
67
+ </div>
68
+ </div>
69
+ </div>
70
+ <slot name="Subcontent" />
71
+ </div>
72
+ </template>
73
+
74
+ <script>
75
+ import { onMounted, ref, watch, defineComponent, nextTick } from "vue";
76
+ import { RegionsDk } from "./maps/interfaces";
77
+ import ArgSourceContainer from "./argSourceContainer.vue";
78
+ import OneRegionDk from "./oneRegionDk.vue";
79
+ export default defineComponent({
80
+ name: "argMapsDenmark",
81
+ components: { OneRegionDk, ArgSourceContainer },
82
+ props: {
83
+ data: {
84
+ type: Array,
85
+ default: null,
86
+ required: true
87
+ },
88
+ title: {
89
+ type: [String, null],
90
+ default: null,
91
+ required: false
92
+ },
93
+ source: {
94
+ type: [String, null],
95
+ default: null
96
+ },
97
+ haveCustomTitle: {
98
+ type: [String, null],
99
+ default: null,
100
+ required: false
101
+ },
102
+ uniqueID: {
103
+ type: [String, null],
104
+ default: null,
105
+ required: false
106
+ },
107
+ lang: {
108
+ type: String,
109
+ default: "en",
110
+ required: false
111
+ },
112
+ reverseColors: {
113
+ type: Boolean,
114
+ default: false
115
+ }
116
+ },
117
+ emits: ["openSource"],
118
+ setup(props, { emit }) {
119
+ const minimalValue = ref(null);
120
+ const maximalValue = ref(null);
121
+ const hoveredRegion = ref(null);
122
+ const tooltipPosition = ref({ x: 0, y: 0, width: 0 });
123
+ const scale = ref([]);
124
+ function getColor(value) {
125
+ if (!value) return "var(--lightest)";
126
+ if (props.reverseColors ? value <= scale.value[0] : value >= scale.value[9]) {
127
+ return "#3F1151";
128
+ } else if (props.reverseColors ? value <= scale.value[1] : value >= scale.value[8]) {
129
+ return "#432974";
130
+ } else if (props.reverseColors ? value <= scale.value[2] : value >= scale.value[7]) {
131
+ return "#404A85";
132
+ } else if (props.reverseColors ? value <= scale.value[3] : value >= scale.value[6]) {
133
+ return "#3F668A";
134
+ } else if (props.reverseColors ? value <= scale.value[4] : value >= scale.value[5]) {
135
+ return "#43808C";
136
+ } else if (props.reverseColors ? value <= scale.value[5] : value >= scale.value[4]) {
137
+ return "#4C9C8A";
138
+ } else if (props.reverseColors ? value <= scale.value[6] : value >= scale.value[3]) {
139
+ return "#5FB57E";
140
+ } else if (props.reverseColors ? value <= scale.value[7] : value >= scale.value[2]) {
141
+ return "#85CB68";
142
+ } else if (props.reverseColors ? value <= scale.value[8] : value >= scale.value[1]) {
143
+ return "#BDDD51";
144
+ } else if (props.reverseColors ? value > scale.value[8] : value >= scale.value[0]) {
145
+ return "#F9E855";
146
+ }
147
+ }
148
+ function handleHover(region) {
149
+ hoveredRegion.value = region;
150
+ }
151
+ function handleMouseLeave() {
152
+ hoveredRegion.value = null;
153
+ }
154
+ function openSource() {
155
+ emit("openSource");
156
+ }
157
+ function setupScale() {
158
+ minimalValue.value = Math.floor(
159
+ Math.min(
160
+ ...props.data.filter((f) => f.value !== null).map((x) => x.value)
161
+ )
162
+ );
163
+ maximalValue.value = Math.ceil(
164
+ Math.max(
165
+ ...props.data.filter((f) => f.value !== null).map((x) => x.value)
166
+ )
167
+ );
168
+ const step = (maximalValue.value - minimalValue.value) / 10;
169
+ if (minimalValue.value !== null) {
170
+ scale.value = Array.from(
171
+ { length: 10 },
172
+ (_, i) => (minimalValue.value !== null ? minimalValue.value : 0) + i * step
173
+ );
174
+ }
175
+ }
176
+ onMounted(() => {
177
+ setupScale();
178
+ });
179
+ watch(
180
+ () => props.data,
181
+ () => {
182
+ setupScale();
183
+ }
184
+ );
185
+ watch(
186
+ () => hoveredRegion.value,
187
+ () => {
188
+ if (hoveredRegion.value) {
189
+ const selectedRegion = document.getElementById(
190
+ `interactiveMap-${props.title}-${hoveredRegion.value}`
191
+ )?.getBoundingClientRect();
192
+ const containerPosition = document.getElementById(`container_map-${props.title}-${props.uniqueID}`)?.getBoundingClientRect();
193
+ if (!selectedRegion || !containerPosition) return;
194
+ tooltipPosition.value = {
195
+ x: selectedRegion?.x - containerPosition?.x,
196
+ y: selectedRegion?.top - containerPosition?.top - 60,
197
+ width: selectedRegion?.width
198
+ };
199
+ }
200
+ }
201
+ );
202
+ watch(
203
+ () => hoveredRegion.value,
204
+ async () => {
205
+ if (hoveredRegion.value) {
206
+ await nextTick();
207
+ const selectedRegion = document.getElementById(
208
+ `interactiveMap-${props.title}-${hoveredRegion.value}`
209
+ )?.getBoundingClientRect();
210
+ const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
211
+ const tooltipElement = document.getElementById(
212
+ `tooltip_map-${props.title}`
213
+ );
214
+ const tooltipHeight = tooltipElement ? tooltipElement.getBoundingClientRect().height : 60;
215
+ if (!selectedRegion || !containerPosition) return;
216
+ tooltipPosition.value = {
217
+ x: selectedRegion?.x - containerPosition?.x,
218
+ y: selectedRegion?.top - containerPosition?.top - tooltipHeight,
219
+ width: selectedRegion?.width
220
+ };
221
+ }
222
+ }
223
+ );
224
+ return {
225
+ getColor,
226
+ handleHover,
227
+ handleMouseLeave,
228
+ RegionsDk,
229
+ hoveredRegion,
230
+ tooltipPosition,
231
+ scale,
232
+ openSource
233
+ };
234
+ }
235
+ });
236
+ </script>
237
+
238
+ <style scoped>
239
+ .map{margin-top:24px;width:100%}.p24{padding:24px}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855)}.reverse_scale,.scale{height:10px;transform:rotate(180deg)}.reverse_scale{background:linear-gradient(45deg,#f9e855,#bddd51,#85cb68,#5fb57e,#4c9c8a,#43808c,#3f668a,#404a85,#432974,#3f1151)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.p-24{padding:0 24px}
240
+ </style>
@@ -0,0 +1,110 @@
1
+ import type { PropType } from "vue";
2
+ import { RegionsDk } from "./maps/interfaces";
3
+ type dataRegion = {
4
+ name: RegionsDk;
5
+ value: number;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ data: {
9
+ type: PropType<dataRegion[]>;
10
+ default: null;
11
+ required: true;
12
+ };
13
+ title: {
14
+ type: PropType<string | null>;
15
+ default: null;
16
+ required: false;
17
+ };
18
+ source: {
19
+ type: PropType<string | null>;
20
+ default: null;
21
+ };
22
+ haveCustomTitle: {
23
+ type: PropType<string | null>;
24
+ default: null;
25
+ required: false;
26
+ };
27
+ uniqueID: {
28
+ type: PropType<string | null>;
29
+ default: null;
30
+ required: false;
31
+ };
32
+ lang: {
33
+ type: StringConstructor;
34
+ default: string;
35
+ required: false;
36
+ };
37
+ reverseColors: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
41
+ }>, {
42
+ getColor: (value?: number) => "var(--lightest)" | "#3F1151" | "#432974" | "#404A85" | "#3F668A" | "#43808C" | "#4C9C8A" | "#5FB57E" | "#85CB68" | "#BDDD51" | "#F9E855" | undefined;
43
+ handleHover: (region: RegionsDk) => void;
44
+ handleMouseLeave: () => void;
45
+ RegionsDk: typeof RegionsDk;
46
+ hoveredRegion: import("vue").Ref<RegionsDk | null, RegionsDk | null>;
47
+ tooltipPosition: import("vue").Ref<{
48
+ x: number;
49
+ y: number;
50
+ width: number;
51
+ }, {
52
+ x: number;
53
+ y: number;
54
+ width: number;
55
+ } | {
56
+ x: number;
57
+ y: number;
58
+ width: number;
59
+ }>;
60
+ scale: import("vue").Ref<number[], number[]>;
61
+ openSource: () => void;
62
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "openSource"[], "openSource", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
63
+ data: {
64
+ type: PropType<dataRegion[]>;
65
+ default: null;
66
+ required: true;
67
+ };
68
+ title: {
69
+ type: PropType<string | null>;
70
+ default: null;
71
+ required: false;
72
+ };
73
+ source: {
74
+ type: PropType<string | null>;
75
+ default: null;
76
+ };
77
+ haveCustomTitle: {
78
+ type: PropType<string | null>;
79
+ default: null;
80
+ required: false;
81
+ };
82
+ uniqueID: {
83
+ type: PropType<string | null>;
84
+ default: null;
85
+ required: false;
86
+ };
87
+ lang: {
88
+ type: StringConstructor;
89
+ default: string;
90
+ required: false;
91
+ };
92
+ reverseColors: {
93
+ type: BooleanConstructor;
94
+ default: boolean;
95
+ };
96
+ }>> & Readonly<{
97
+ onOpenSource?: ((...args: any[]) => any) | undefined;
98
+ }>, {
99
+ data: dataRegion[];
100
+ lang: string;
101
+ source: string | null;
102
+ title: string | null;
103
+ haveCustomTitle: string | null;
104
+ uniqueID: string | null;
105
+ reverseColors: boolean;
106
+ }, {}, {
107
+ OneRegionDk: any;
108
+ ArgSourceContainer: any;
109
+ }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
110
+ export default _default;
@@ -53,7 +53,16 @@
53
53
  :key="critIndex"
54
54
  class="oip_list v-start gap-4"
55
55
  >
56
- <arg-tags set-style="gray">
56
+ <arg-tags v-if="customDisplay" set-style="gray">
57
+ <slot
58
+ v-if="!isString(criteria)"
59
+ name="Custom"
60
+ v-bind:value="criteria"
61
+ />
62
+ <span v-else>{{ criteria }} </span>
63
+ </arg-tags>
64
+
65
+ <arg-tags v-else set-style="gray">
57
66
  <span v-if="typeof criteria === 'object'"
58
67
  ><b>{{ criteria?.type }}: </b
59
68
  >{{ criteria?.value }}</span
@@ -121,7 +130,8 @@ export default defineComponent({
121
130
  type: Boolean,
122
131
  default: false
123
132
  },
124
- isScenario: { type: Boolean, default: false }
133
+ isScenario: { type: Boolean, default: false },
134
+ customDisplay: { type: Boolean, default: false }
125
135
  },
126
136
  emits: ["onDelete", "onClose"],
127
137
  setup(props, { emit }) {
@@ -136,6 +146,9 @@ export default defineComponent({
136
146
  }
137
147
  }
138
148
  }
149
+ const isString = (val) => {
150
+ return typeof val === "string";
151
+ };
139
152
  onBeforeMount(async () => {
140
153
  setLang();
141
154
  });
@@ -168,7 +181,8 @@ export default defineComponent({
168
181
  closeManageScope,
169
182
  deleteScope,
170
183
  showAllProps,
171
- langData
184
+ langData,
185
+ isString
172
186
  };
173
187
  }
174
188
  });
@@ -16,12 +16,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
16
16
  type: BooleanConstructor;
17
17
  default: boolean;
18
18
  };
19
+ customDisplay: {
20
+ type: BooleanConstructor;
21
+ default: boolean;
22
+ };
19
23
  }>, {
20
24
  getScopeCriteria: (scope: any) => any;
21
25
  closeManageScope: () => void;
22
26
  deleteScope: (scope: any) => void;
23
27
  showAllProps: import("vue").Ref<any, any>;
24
28
  langData: import("vue").Ref<any, any>;
29
+ isString: (val: any) => val is string;
25
30
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onClose" | "onDelete")[], "onClose" | "onDelete", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
26
31
  scopes: {
27
32
  type: ArrayConstructor;
@@ -40,6 +45,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
40
45
  type: BooleanConstructor;
41
46
  default: boolean;
42
47
  };
48
+ customDisplay: {
49
+ type: BooleanConstructor;
50
+ default: boolean;
51
+ };
43
52
  }>> & Readonly<{
44
53
  onOnClose?: ((...args: any[]) => any) | undefined;
45
54
  onOnDelete?: ((...args: any[]) => any) | undefined;
@@ -47,6 +56,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
47
56
  lang: string;
48
57
  isScenario: boolean;
49
58
  reloadingScopes: boolean;
59
+ customDisplay: boolean;
50
60
  }, {}, {
51
61
  argBtn: any;
52
62
  argIcon: any;
@@ -86,6 +86,13 @@ export declare enum RegionsSe {
86
86
  Vasterbottens = "V\u00E4sterbottens",
87
87
  Norrbottens = "Norrbottens"
88
88
  }
89
+ export declare enum RegionsDk {
90
+ Nordjylland = "Nordjylland",
91
+ Midtjylland = "Midtjylland",
92
+ Hovedstaden = "Hovedstaden",
93
+ Sjaelland = "Sj\u00E6lland",
94
+ Syddanmark = "Syddanmark"
95
+ }
89
96
  export declare const GroupedRegions: Record<RegionGroupsNo, RegionsNo[]>;
90
97
  export declare enum RegionsKr {
91
98
  NorthChungcheong = "Chungcheongbuk-do",
@@ -91,6 +91,14 @@ export var RegionsSe = /* @__PURE__ */ ((RegionsSe2) => {
91
91
  RegionsSe2["Norrbottens"] = "Norrbottens";
92
92
  return RegionsSe2;
93
93
  })(RegionsSe || {});
94
+ export var RegionsDk = /* @__PURE__ */ ((RegionsDk2) => {
95
+ RegionsDk2["Nordjylland"] = "Nordjylland";
96
+ RegionsDk2["Midtjylland"] = "Midtjylland";
97
+ RegionsDk2["Hovedstaden"] = "Hovedstaden";
98
+ RegionsDk2["Sjaelland"] = "Sj\xE6lland";
99
+ RegionsDk2["Syddanmark"] = "Syddanmark";
100
+ return RegionsDk2;
101
+ })(RegionsDk || {});
94
102
  export const GroupedRegions = {
95
103
  ["Helse Nord" /* Nord */]: [
96
104
  "Nordland" /* Nordland */,
@@ -0,0 +1,17 @@
1
+ {
2
+ "Nordjylland": {
3
+ "path": "M64.94,269.26l-2.24,-0.6l0.35,-1.05l1.44,-0.42L64.94,269.26zM140.69,222.32l-2.01,-0.94l-1.3,-1.84l1.93,-2.89l0.7,-0.06l2.02,3.9l-0.57,2.16L140.69,222.32zM115.59,203.74l-0.42,2.46l2.09,7.03l-1.9,2.59l-2.38,10.7l-1,1.25l0.51,-1.88l-0.24,-3.27l-1.08,-0.25l-1.08,0.66l0.25,1.16l-1.51,-1.37l0.4,-1.03l-0.7,-0.6l-2.17,0.37l-0.38,1.26l-1.73,2.64l-0.13,1.37l1.5,2.94l0.51,4.92l1.42,3.47l3.05,3.31l0.67,3.02l-0.23,2.35l-0.89,-2.43l-0.98,-0.16l-0.44,0.91l-0.82,-0.08l-0.14,1.23l1.5,1.37l-2.93,1.85l-0.51,1.17l-0.56,1.99l0.6,0.26l-0.34,1.1l0.42,1.74l-0.94,0.02l-0.63,0.72l0.16,1.96l-2,1.18l-0.85,1.34l-1.54,0.58l-4.3,5.77l1.05,2.46l-6.11,3.01l-0.18,0.56l-3.61,-0.6l-8.52,3.46l-0.13,-1.37l-0.94,-1.31l-0.59,-0.96l0.62,-2.42l-3.2,-3.4l0.19,-2.2l1.84,-0.59l0,-0.66l-0.52,-0.34l-2.06,0.65l-0.81,0.79l-1.22,-0.55l0.54,-1.46l-0.82,-1.93l-1.82,0.07l-0.24,0.99l0.06,1.06l1.87,0.24l-1.32,1.18l1.25,2.15l-3.78,1.48l-0.16,-1.18l-1,-2.75l0.08,-0.62l2.81,-0.55l-0.64,-1.35l-4.18,-3.01l-3.47,3.67l-1.66,0.81l0.5,-2.12l-0.38,-1.91l0.88,-2.07l2.05,-0.44l2.42,-2.18l1.44,0.49l0.75,-0.81l-1.5,-6.15l-1.03,-1.08l1.6,-1.02l0.62,1.25l0.91,0.09l1.66,-2.32l1.65,-0.28l4.67,1.15l6.17,-3.5l0.2,-2.19l-0.59,-0.7l-7.31,-1.27l0.01,-1l1.7,-2l2.52,0.83l1.03,-0.66l0.08,-1.51l-2.33,0.02l2.38,-3.95l-0.16,-3.74l-0.65,-1.38l0.38,-1.05l-1.07,-1.38l4.47,-1.45l2.52,0.75l5.25,-1l1.42,0.65l2.84,-2.3l3,-0.16l2.04,-1.11l3.31,-0.17l1.16,-2.13l0.69,-4.75l2.86,-3.35l1.16,-3.05l1.18,1.48l2.75,-0.55l1.32,0.46l2.94,-3.42l0.33,-2.69l0.82,0.06l-0.23,2.37L115.59,203.74zM246.64,178.53l-2.01,0.4l-2.62,-1.2l-0.97,-1.02l-0.45,-2.36l4.02,-0.82l2.13,0.5l0.86,1.35l1.5,0.88l-0.03,0.67L246.64,178.53zM269.72,173.17l1.76,3.96l3.92,3.11l-0.32,1.13l4.14,2.24l4.04,3.68l2.05,3l7.49,5.47l5.54,2.1l9.65,-0.96l-0.3,4.35l-1.27,0.01l-0.98,1.69l1.03,0.42l0.19,0.67l-2.68,4.25l-1.41,11.21l0.6,2.18l0.71,14.39l0.67,6.2l2.97,12.32l4.92,7.81l-0.07,3.83l-1.13,1.04l-3.4,-1.7l-6.49,-0.47l-3.61,-1.81l-1.07,0.09l-2.17,1.98l-0.55,1.51l-2.16,0.69l-2.55,-1.31l-0.64,-1.57l0.22,-1.28l-1.4,0.04l-1.26,-0.3l-5.31,2.65l-0.63,2.4l-2.45,1.06l-0.08,0.59l-0.97,0.04l-0.46,-1.31l-1.47,-0.78l-2.58,0.83l-0.51,0.98l-1.97,0.1l-1.57,1.99l0.24,1.32l-4.06,0.64l-3.08,3.27l-2.01,-0.27l1.06,2.24l-1.18,-0.56l-1.64,0.88l-0.24,0.75l-0.69,-0.34l-1.86,0.97l-2.76,-0.26l-1.23,0.66l-4.61,-0.01l-1.12,0.96l-3.33,-0.13l-3.06,1.92l1.09,0.28l1.28,-0.65l4.21,0.73l1.77,-1.82l3.24,0.06l2.93,-0.78l0.35,0.51l2.52,-0.08l2.01,-1.08l1.18,0.58l1.58,-0.56l1.15,-1.39l2.02,0.6l0.51,-1.02l-0.55,-0.34l1.45,-1.72l1.22,-0.03l1.22,-1.52l1.21,0.48l1.69,-0.81l0.11,-1.3l2.53,-3.22l1.16,-0.22l2.46,2.3l1.44,-0.13l3.46,-3.44l0.24,-2.8l0.71,-1.29l0.81,0.83l1.71,-0.12l2.24,1.39l1.51,-0.39l4.16,5.46l0,0l0.35,1.49l-5.53,3.53l0.23,3.12l-4.87,1.45l0.18,2.43l-1.2,3.25l-3.94,1.16l-6.28,4.37l-8.75,2.68l-2.67,-1.43l-1.46,3.92l-6.23,1.87l-2.13,-0.16l-0.83,1.12l-0.48,3.44l-6.39,1.41l-5.12,-2.8l-6.23,1.56l-5.22,-7.45l-4.94,-1.25l-4.67,2.55l0.13,-7.14l4.38,-1.49l-0.76,-3.54l-6.18,-0.88l-3.97,0.77l-4.58,-1.56l0.56,-3.36l-5.1,-0.61l-0.39,-1.45l1.8,-1.7l-0.45,-0.94l-0.55,0.12l-0.18,-1.11l-0.83,0.39l-0.59,-0.53l0.87,-1.94l-0.52,-0.32l-4.12,-0.44l-0.42,1.8l-2.12,0.16l-3,9.47l-3.43,-0.63l-4.96,-3.53l0.16,-2.99l-4.24,0.69l-1.56,-2.2l-4.77,-0.2l0,0l-1.98,-5.11l-1.62,-1.41l-1.62,-0.18l-2.48,0.88l-1.68,1.56l-2.26,0.11l-1.61,1.81l-3.52,1.59l-2.3,2.33l-0.84,0.21l-1.83,-1.94l-0.42,-1.29l0.08,-1.2l2.05,-1.03l2.36,-3.63l0.66,-0.02l3.17,-3.27l2.43,-4.1l0.9,-3.76l-0.37,-2.55l-1.23,-1.4l-4.53,-1.63l-1.79,0.7l-0.26,-0.48l0.49,-5.08l-1.9,-4.57l-0.82,-0.29l2.85,-3.92l2.7,-5.15l0.35,-4.9l-1.56,-3.09l-4.42,-3.03l-0.31,-1.71l1.76,-6.3l2.59,-3l0.24,-1.67l2.17,-1.14l1.98,-2.38l1.93,-4.33l4.83,-1.5l0.84,-1.15l0.64,-3.9l1.1,-1.39l0.79,0.27l7.2,-2.77l10.24,-2.31l8.52,0.35l2.91,0.7l7.56,4.03l2.56,2.33l-2.02,2.34l-0.51,2.12l1,2.63l-0.99,1.21l-1.15,-2.47l-0.96,-0.16l-1.66,2.5l1.97,4.86l1.04,0.72l1.11,2.11l0.49,-0.16l0.91,-5.77l-0.4,-2.29l2.56,-1.7l1.77,0.02l1.88,-1.28l1.57,-4.48l1.32,-0.4l4.21,-5.62l-0.12,-3.24l0.5,-1.46l0.75,-1.24l2.65,-1.64l6.38,-1.24l4.7,-1.62l9,2.28l3.49,-2.81l1.45,-0.53l2.03,-0.37l2.01,0.13l3.01,2.1l2.03,-0.15l1.98,-0.81l2.19,-4l3.18,-2.46L269.72,173.17zM403.71,140.85l-0.62,-0.12l0,-0.96l1.74,-0.8L403.71,140.85zM409.5,138.4l0.57,0.73l-0.63,1.47l-4.19,0.63l-0.93,0.62l-0.53,-0.7l0.27,-1.31l1.24,-1.01l3.17,-0.75L409.5,138.4zM393.24,131.3l-2.53,0.13l-0.93,-1.44l0.48,-0.31L393.24,131.3zM385.61,126.08l0.36,0.72l0.44,-0.11l0.25,0.3l4.36,5.35l-0.93,-0.13l-4.74,-5.71l-0.29,-1.17l1.12,0.27L385.61,126.08zM432.38,111l-0.8,8.94l-0.53,-0.22l0.56,-1.92l-0.29,-1.23l-1.39,-0.74l0.61,-2.06l-2.09,1.9l-0.1,0.88l-3.11,-0.6l-3.19,0.91l-1.22,-0.28l-5.27,2.59l-0.75,1.34l0.43,0.7l2.46,0.38l-0.27,4.1l-0.82,2.27l-2.73,3.03l-6.13,-0.53l-1.23,0.46l7.55,0.49l-1.11,1.52l-7.54,4.23l-2.06,-0.5l-1.79,0.95l-0.99,-3.35l-0.51,-0.25l0.21,-0.86l-2.85,-0.67l0.27,-0.94l-0.97,-1.23l-2.58,-0.57l-1.67,0.75l-4.52,-2.26l-0.91,-1.17l0.06,-1.91l4.6,-3.7l2.17,-3.73l3.64,-2.17l2.42,-0.01l1.38,-0.97l3.18,0.43l1.71,-0.47l1.54,-2.44l1.15,-0.68l4.27,0.28l8.11,-0.59l1.49,-0.36l2.35,-1.76l3.23,1.09l3.79,0.13L432.38,111zM349.84,8.08l-1.1,1.02l-1,-0.71l-0.84,0.7l0.67,0.46l-1.38,-0.15l-3.64,3.1l-8.6,10.76l-6.31,10.87l-1.43,3.84l-1.1,6.82l1.15,6.05l1.96,5.24l7.84,10.05L336,67.72l2.81,4l1.55,1.12l1.54,4.8l0.69,0.46l0.76,-0.38l0.6,0.68l-0.76,2l-1,-1.09l-0.41,0.5l0.88,1.52l-1.22,-0.91l-0.57,1.03l0.98,0.55l-1.4,-0.02l-0.12,0.74l-0.85,-0.02l-0.34,0.71l0.3,2.96l-0.53,0.68l0.05,2.28l-1.36,5.76l1.03,9.82l1.73,3.12l-0.82,0.75l-0.23,1.29l2.53,13.04l0.64,6.08l-0.42,5.67l-0.78,0.24l-1.95,2.55l-2.09,1.77l-2.62,1.08l-3.47,3.76l-3.6,5.1l-3.28,6.81l-2.29,5.93l-3.57,16.14l-0.07,1.96l-3.21,9.55l-3.03,5.71l-2.55,-0.75l-1.68,-0.58l-3.83,0.67l-1.98,1.28l-4.96,-0.83l-5.75,-4.42l-1.29,-1.97l-8.58,-8.13l-2.15,-1.66l-2.15,-0.48l-4.65,-4.04l-3.75,-4.07l-1.91,-0.62l-3.16,1.3l-3.52,3.6l0.03,3.21l-2.78,1.05l-1.65,-0.5l-2.48,-1.94l-1.22,0.02l-3.22,-1.72l-1.05,-1.71l-3.93,-3.71l-1.41,-0.34l-5.54,-3.82l-1.3,-0.23l-0.1,1.43l0.51,0.48l-0.6,1.45l-2.72,5.28l0.26,0.65l-1.93,1.41l-5.92,0.96l-4.98,-3.04l-2.08,0.81l0.05,-2.86l2.6,-0.69l1.53,-1.95l0.06,-0.72l-2.12,0.19l-3.88,1.7l-1.79,1.72l-1.94,1.67l1.66,1.58l1.96,-0.28l0.65,0.42l-2.49,1.72l-1.74,3.01l-3.23,-0.19l-1.78,2.41l-4.16,-0.99l-5.2,0.01l-1.6,0.73l-1.11,-1.02l-4.36,1.8l-3.79,0.45l-7.43,3.38l-3.08,0.03l-6.25,2.9l-1.37,1.15l-1.36,1.51l-3.38,1.42l0.04,0.61l-1.05,0.39l-3.05,-0.44l-1.72,-0.31l-1.77,-1.2l-6.25,-6.32l-4.33,-3.76l-9.89,4.25l-0.32,1.4l-2.16,2.32l-1.41,-0.16l-0.04,-2.52l-0.93,-0.95l-3.49,0.33l-2.35,0.95l-2.51,3.51l-2.93,-0.74l-2.57,1.44l-1.98,4.86l-2.05,-0.01l-1.1,-2.44l-3.38,-0.96l-1.47,1.78l-0.29,-1.93l-1,0.19l-1.05,0.33l-1.11,0.12l-0.59,0.45l0.47,1.24l2.46,1.77l0.1,1.68l-2.01,0.66l-0.61,0.91l-1.71,0.08l-3.29,1.63l-0.88,1.99L95,206.13l-1.73,0.14l-2.7,-1.13l-1.41,0.27l-1.84,-0.92l-1.83,0.16l-2.78,-0.11l-0.78,0.61l-1.45,4.06l0.71,2.65l-3.07,3.03l-0.03,3.09l-2.04,2.86l0.8,3.03l-1.05,1.4l0.1,0.72l1.24,0.87l-3.18,4.77l-0.01,0.97l-4.88,5.85l-5.61,0.31l-0.36,0.57l0.45,2.36l-2.15,-0.19l-4.43,2.67l-2.54,3.7l1.17,2.62l3.15,4.05l-1.54,1.9l-1.44,6.17l-2.71,2.52l3.4,-0.95l1.98,0.49l2.47,0.06l0.6,1.14l-1.33,2.75l1.72,-0.97l0.74,0.56l-2.11,2.66l0.27,2.7l-3.39,-1.17l-1.36,-1.97l-3.74,-1.4l-3.82,1.94l0.17,0.73l-1.27,1.18l-1.28,-0.55l-0.64,0.31l-0.58,1.73l0.77,0.06l0,0l-0.16,1.38l0,0l-6.73,-1.73l-1.08,-3.89l-1.01,-0.93l-1.23,-2.87l-2.06,-1.91l-1.09,-2.96l-1.35,-7.75l-2.37,-2.84l-3.53,-2.12l-1.26,18.32l0.01,1.09l-0.28,0.55l-0.96,-0.71l0.01,-2.75l-1.49,-2.67l-1.02,-0.06l0.54,-2.24l0.5,-12.35l1.27,-5.82l4.84,-13.69l12.38,-25.33l2.64,-1.51l4.1,-5.22l5.23,-8.11l2.61,-5.55l1.26,-1.32l2.05,0.19l1.62,-0.86l3.97,-4.67l8.29,-13.87l-0.17,-0.62l0.42,-0.31l0.44,0.24l0.38,0.63l3.09,-1.69l0.83,0.84l7.31,2.37l8.36,3.73l2.09,0.01l9.4,-2.32l5.69,-2.27l4.52,-2.51l8.15,-6.29l3.47,-1.48l3.24,0.59l3.55,-0.8l10.12,3.95l6.25,1.12l5.28,0.22l9.35,-1.04l3.61,-0.8l5.63,-2.37l6.41,-0.5l4.45,-1.81l17.48,-13.72l1.92,-2.1l13.78,-20.66l8.99,-16.69l1.72,-2.05l10.82,-24.83l9.55,-10.08l3.29,-4.59l6.57,-12.72l3.25,-3.46l-0.6,1.27l3.19,-0.65l0.03,-0.67l1.23,0.97l2.23,0.44l3.69,0.34l3.17,-0.5l4.76,0.8l2.99,0.02l7.19,-1.24l11.8,-4.58l10.83,-6.49l27.51,-24.17l4.85,-3.37l2.63,-1.26L350.68,0l2.22,0.19l3,1.77l-4.61,4.06L349.84,8.08z"
4
+ },
5
+ "Midtjylland": {
6
+ "path": "M311.77,499.44l-0.81,5.47l-0.4,0.75l-1.65,0.7l-3.66,-1.62l-4.69,0.31l-1.68,-1.21l-0.03,-0.92l1.95,-1.51l3.52,0.62l3.61,-1l-0.44,-1.62l1.25,-1.96l-0.3,-1.12l1.02,-2.82l1.4,2.54L311.77,499.44zM278.66,484.71l0.9,0.05l0.88,1.08l-1.23,1.44l-1.42,0.44l-1.1,-0.14l-1.51,-1.03l-0.88,-2.06l2.31,-1.05L278.66,484.71zM26.31,469.73l1.03,1.14l-0.23,0.54l-1.22,-0.71l-1.37,0.1l0.19,-1.61L26.31,469.73zM329.2,455.5l-2.18,1.21l-1.28,-0.32l-2.1,-1.55l-1.56,-2.14l1.16,-0.29l7.15,2.18l-1.19,0.4L329.2,455.5zM8.05,442.24l0.42,0.26l-0.39,0.73l0.42,2.7l1.55,2.2l-0.3,0.99l1.34,2.66l0.21,1.79l2.01,1.56l-0.15,1.44l-0.04,0.85l-0.3,3.06l0.99,0.86l-0.26,2.2l0.36,1.02l-0.14,1.68l-0.6,0.75l1.83,4.71l-0.61,2.13l0.78,1.39l1.63,1.07l-3.09,4.77l0.22,4.72l1.93,1.96l0,0l-2.6,0.48l0,0l-2.33,-14.9l-2.01,-19.71l-1.15,-5.62l-2.1,-5L8.05,442.24zM346.92,456.13l3.2,4.14l1.87,1.01l4.58,2.07l0.06,0.48l-1.2,0.96l-1.89,-0.87l-1.72,0.28l-1.09,1.34l1.11,3.88l1.73,0.56l-0.65,1.08l0.96,1.75l1.01,0.47l0.61,0.47l4.62,-2.31l0.25,3.11l-2.81,2.7l-2.46,5.51l-0.47,4.88l0.82,1.98l-0.14,3.1l-1.05,3.24l-1.28,1.75l-0.69,2.99l-5.64,-1.33l-3.96,0.23l-1.96,-2.19l-1.29,-4.1l-0.37,-7.06l0.61,-6.93l2.6,-2.98l3.89,-0.33l0.94,-0.9l1.36,-3.14l0.98,-6.19l-0.83,-2.97l-2.18,-2.85l-3.02,-1.92l-2.9,0.4l-0.95,-1.56l-1.1,-5.47l0.17,-3.5l5.48,-5.8l1.32,10.41L346.92,456.13zM80.33,297.99l-0.73,1.11l-0.68,-0.49l-0.83,0.37l0.24,1.24l1.33,0.66l-2.48,4.28l-0.4,2.85l0.82,1.59l0,2.67l-2.29,2.57l-0.45,-0.27l1.84,-2.3l-1.2,-2.36l0.04,-1.91l-1.29,-3l3.77,-6.79L80.33,297.99zM70.27,271.2l1.1,2.15l-1.37,1.32l-0.65,3.62l-0.92,1.42l2.01,3.21l1.55,0.65l0.76,-1.13l-0.37,-1.62l-1.85,-0.76l0.5,-0.25l0.4,-2.12l1.49,0.39l1.32,-0.62l2.61,1.23l1.47,-0.71l-0.48,1.99l-1.22,1.77l1.01,1.61l-0.73,2.85l1.11,2.08l-3.89,-3.81l-2.09,-0.23l0.16,3.13l-0.67,4.83l-0.64,1.01l-5.22,0.17l-2.69,1.77l0.11,1.67l2.62,1.03l0.97,0.8l-0.51,0.33l-3.44,-0.73l-0.88,-1.6l-1.01,-0.53l-0.52,-2.68l-1.25,-1.29l-1.37,-5.59l-1.27,-1.67l-1.93,-1.06l-1.4,-2.26l-2.24,-1.6l-2.28,-2.68l-3.08,-1.53l0,0l0.16,-1.37l0,0l1.25,0.24l0.41,0.98l1.17,0.11l2.55,-2.46l3.53,-1.17l2.11,0.54l-1.11,0.01l-0.07,1.41l0.98,1.32l2.06,1.35l1.18,-0.11l2.9,-1.89l1.57,-2.21l1.69,0.1l0.77,-1.33l2.37,0.77l0.73,-1.5l0.49,-0.03L70.27,271.2zM494.68,258.79l1.82,0.46l-6.39,4.56l-4.22,5.94l-1.56,1.22l-3.06,0.55l-1.94,-0.5l-2.21,-4.55l-1.29,-2.06l-0.75,-0.28l3.37,-2.44l4.43,0.83L494.68,258.79zM137.21,242.4l6.36,4.32l-0.75,1.85l0.5,2.28l2.83,7.3l5.58,6.65l0.48,1.46l-3.89,2.35l-1.73,2.13l-1.93,3.15l-0.38,2.72l-2.85,-0.24l0.39,5.21l0.72,0.94l-1.98,-0.36l-1.02,0.54l-4,3.91l-1.25,4.04l-0.41,4.52l0.3,1.92l0.9,2.31l0.52,1.5l-0.39,0.82l0.61,1l-0.92,0.36l1.07,1.27l2.56,-0.02l2.18,-3.1l0.7,-2.48l-1.03,-2.66l0.77,-3.35l2.75,-1.25l1.23,1.73l1.59,0.32l2.23,-2.53l0.02,-2.25l-3.48,0.7l-2.24,-1.07l3.78,-3.39l1.92,-5.37l0.66,0.85l-0.04,1.61l-0.67,0.68l-0.12,1.83l1.18,2.3l1.65,1.16l2.07,0.16l3.44,-2.25l1.9,0.69l5.49,-0.28l-0.83,0.36l0.61,0.98l1.32,-0.61l1.73,0.84l1.49,3.21l-0.68,-0.05l-0.42,1.26l0.37,0.5l-3.93,2.69l-0.67,-0.35l-0.28,2.58l-1.3,2.21l1.36,0.61l0.73,3.98l1.94,2.86l2.93,2.65l1.78,0.05l-1.08,1.46l-0.08,1.79l1.01,-0.31l-0.06,-0.85l4.1,-3.9l2.41,0.67l1.31,1.02l0.87,-0.31l-0.56,-4.09l0.33,-2.57l0.9,-1.21l-0.92,-0.34l-1.43,0.45l-2.66,2.13l-4.08,1.45l-1.72,-0.3l-1.34,-2.76l1.45,-7.92l0.08,-1.57l-0.84,-0.92l1.44,-0.64l1.19,-2.03l0.46,-2.17l-0.33,-2.35l1.16,-1.43l0.64,-3.07l-0.74,-5.01l0,0l4.77,0.2l1.56,2.2l4.24,-0.69l-0.16,2.99l4.96,3.53l3.43,0.63l3,-9.47l2.12,-0.16l0.42,-1.79l4.13,0.44l0.52,0.32l-0.87,1.94l0.59,0.54l0.83,-0.39l0.18,1.11l0.55,-0.12l0.45,0.94l-1.8,1.7l0.39,1.45l5.1,0.61l-0.56,3.36l4.58,1.56l3.97,-0.77l6.18,0.88l0.76,3.54l-4.37,1.49l-0.13,7.14l4.67,-2.55l4.94,1.25l5.22,7.45l6.24,-1.56l5.12,2.8l6.39,-1.41l0.48,-3.44l0.83,-1.12l2.13,0.16l6.23,-1.87l1.46,-3.92l2.67,1.43l8.75,-2.68l6.29,-4.37l3.94,-1.16l1.2,-3.25l-0.18,-2.43l4.87,-1.45l-0.23,-3.12l5.53,-3.52l-0.35,-1.49l0,0l1.49,0.63l6.45,-4.09l2.1,-0.05l2.41,1.26l2.41,-0.88l1.09,-1.05l4,-0.1l2,2.17l1.4,7.82l-1.53,0.16l-0.3,0.75l1.44,3.13l-0.15,1.66l-2.17,3.98l-6.27,3.49l-2.17,4.48l-2.47,0.79l-2.51,2.55l-0.42,2.32l-1.09,2.53l-0.84,1.01l-1.17,-0.09l-0.84,3.01l1.76,9.88l-2.01,6.77L295,325.02l-3.35,0.42l-7.53,3.39l-1.31,-0.48l-0.35,-1.47l-4,-0.45l-1.82,0.5l0.18,0.5l-3,0.36l-1.67,1.18l-0.96,0.41l-5.59,-0.35l-3.11,2.96l0.98,-0.31l1.26,-1.48l1.02,-1.01l5.5,0.49l4.16,-1.78l3.32,-0.57l3.06,0.86l2.8,1.2l7.53,-3.67l1.7,-0.04l2.89,-0.93l4.19,1.75l6.16,-0.42l-0.29,-0.46l-3.61,-0.44l-2.22,0.27l-1.48,-0.61l-0.88,-1.4l-0.11,-1.37l0.22,-3.96l-0.09,-0.83l0.13,-3.03l-0.5,-0.93l0.81,-5.26l0.8,-1.66l1.49,-0.78l0.05,-1.99l2.77,-4.33l1.97,-1.04l2.12,-2.7l-0.03,-3.98l1.14,0.17l1.08,1.41l1.17,0.01l2.25,1.33l0.47,4.55l0.98,2.31l3.36,4.96l3.87,3.83l2.98,2.02l11.09,3.04l7.26,-0.37l15.39,-3.82l6.05,-0.27l3.69,-0.51l3.56,-1.29l3.98,0.14l2.07,1.07l3.56,0.63l3.42,3.26l2.19,7.64l3.01,1.57l2.28,2.31l1.32,0.4l3.45,3.4l0.38,2.09l0.75,0.74l-0.43,2.05l-1.39,-0.04l-1.37,1.13l-1.38,3.04l0.57,0.59l-0.38,1.92l0.14,0.7l-0.98,0.73l0.12,2.98l-0.92,3.44l-0.03,8.76l-5.83,8.06l-1.23,2.83l-3.31,2.09l-1.07,1.54l-2.85,7.02l-2.72,3.24l-3.32,1.03l-2.26,2.11l-1.64,2.97l-0.71,3.22l0.79,6.56l-3.55,9.46l-3.47,0.16l-1.25,-1.16l-0.32,-2.26l-1.14,-0.75l-3.38,-2.83l-1.04,-2.38l-0.03,-2.01l0.78,-0.22l1.68,1.23l1.23,-0.51l0.73,-1.13l-0.13,-1.25l1.22,-2.31l-0.41,-2.34l-1.42,-2.14l-1.19,-0.9l-5.63,-0.58l-1.85,0.43l-2.12,1.68l-1.34,2.88l0.1,1.31l-1.99,1.41l-2.72,3.86l-1.34,4.34l1.4,2.97l1.22,1.11l0.93,5.79l-0.25,2.71l-1.64,2.81l-4.51,1.83l-4.35,-11.17l1.35,-1.59l3.57,0.28l1.64,-5.69l-1.11,-1.15l-2.21,0.62l0.13,0.55l-1.84,-0.66l-3.19,-2.38l-2.21,-0.39l-2.16,1.04l-0.51,1.87l-2,1.9l-3.49,0.02l-2.24,-1.59l-0.86,-4.31l-1.9,-1.61l-1.3,0.2l-0.32,-0.56l0.35,-1.81l1.51,0.57l6.46,-2.11l0.74,-1.18l-0.34,-1.3l0.97,-0.54l1.35,0.42l0.13,-0.68l1.79,0.31l-2.06,2.5l1.29,1.94l2.46,0.3l0.81,0.74l1.1,-0.48l2.05,-1.96l-1.73,-3.37l0.4,-1.14l-0.57,-0.86l-1.23,-0.28l-1.29,1.48l-0.24,-1.01l2.33,-3.11l1.56,-0.95l1.16,-1.96l0.21,-1.95l0.98,-0.51l2.1,0.21l0.18,-1.08l-0.93,-0.94l0.47,-1.29l-3.38,-1.96l-1.06,2.45l-0.97,-0.32l1.15,-1.51l-2.15,-0.07l-0.69,-0.62l0.39,-2.54l-0.5,-0.51l-1,1l-2.46,-1.09l-1.63,1.47l0.15,-0.37l-1.14,-0.42l-1,0.45l-1.61,-0.41l-1.06,0.82l-0.18,0.97l1.1,1.79l-1.86,2.11l-1.98,-0.52l-2.19,2.25l0.14,2.69l0.88,1.02l-1.3,1.13l-0.64,-0.66l-0.24,2.81l-4.34,2.25l-2.69,4.12l-0.78,2.26l-3.06,1.31l-2.24,1.97l-2.12,4.57l0.74,0.72l-1.92,1.95l-0.45,-0.37l-0.07,1.73l1.84,-1.39l-1.2,3.97l3.13,-1.79l0.47,-0.82l-0.64,-0.55l0.81,-0.96l0.6,1.05l-0.4,0.39l0.44,0.72l-3.28,2.53l-1.91,0.06l-0.6,0.87l0.69,1.78l1.82,2.03l1.46,4.43l1.42,2.24l1.58,7.85l1.58,3.33l0.01,1.83l-0.51,4.01l-1.56,0.8l-0.19,-1.27l-1.38,0.43l-2.37,3.01l-1.87,0.77l0.78,0.56l2.56,-0.64l1.76,-2.85l0.86,0.25l0.73,-0.64l1.76,-0.14l0.89,0.74l-1.54,1.48l-2.34,5.31l-0.1,3.29l1.86,5.35l-1.17,6.97l-0.01,4.62l-2.72,0.81l-4.2,5.15l-2.12,0.23l0.28,3.77l1.2,1.47l0.26,1.34l-0.35,0.26l-1.36,1.43l0.84,2.67l-0.79,1.02l-4.63,-2.21l-2.36,-2.74l-0.43,-1.08l0.73,-2.81l-1.58,-1.9l-0.53,1.44l-1.41,1.04l-0.45,1.67l0.66,0.38l-0.16,0.65l-2.08,-0.43l-3.16,3.12l-3.79,0.37l-2.14,1.16l-0.2,-2.19l2.98,-4.42l7.64,1.35l0.51,-1.73l-0.84,-1.19l-0.16,-1.6l-5.35,-0.38l-1.23,1.08l-3.61,0.97l-2.79,0.09l-2.49,-1.23l-3.31,0.09l-0.84,0.2l-0.89,2.98l0.71,0.84l-0.07,1.16l-4.69,-0.63l-2.29,0.89l-3.3,-2.96l0.18,-1.25l1.19,-0.12l-0.44,-0.55l-2.52,-0.59l-1.31,0.78l-0.59,-0.72l-1.8,-0.02l0.2,1l2.43,0.67l2.45,-0.57l-0.19,0.96l0.86,1.69l-2.06,0.57l-0.83,1.38l0.03,0.99l0.41,1.28l0.37,0.22l1.6,1.04l7.54,2.32l3.03,0.25l0.87,0.85l3.46,0.81l1.15,-0.2l1.59,-2.16l0.41,0.9l-0.89,1.09l0.7,0.45l-0.99,1.85l2.29,-1.52l2.73,0.01l0.41,0.48l0.01,1.25l1.75,2.04l-6.39,6.77l-0.5,1.24l0.17,2.44l1.08,1.71l7.17,1.43l0.72,1.8l-3.92,-0.07l-2.44,2.74l-2.73,0.32l-2.12,1.3l-0.2,2.22l2.23,1.24l0.46,-0.45l1.46,4.64l-2.37,-1.17l-5.13,1.52l-7.51,0.56l-5.44,1.53l-2.67,1.23l-2.35,2.02l-3.69,1.1l-1.49,-2.22l-3.44,-0.88l-5.13,0.27l-3.75,-4.1l-0.53,-1.33l-2.2,-0.1l-0.81,-1.01l-3,-1.22l0,0l1.73,-5.82l-0.41,-3.33l-4.09,-2.48l-0.57,1.4l-3.22,-1.08l-3.1,1.54l-2.39,-2.96l1.64,-2.18l-1.52,-2.06l-0.86,1.62l-5.56,0.36l0.23,-2.54l-2.86,-0.51l-1.81,-6.03l-0.47,-4.12l-2.88,-0.07l0.06,-1.32l-4.99,-0.49l1.15,-3.77l-2.14,-0.93l2.77,-1.99l-10.2,-14.09l0.41,-0.23l-0.45,-1.35l0,0l0.05,-0.52l-5.22,-2.83l-0.5,0.68l0,0l0.02,0.07l0,0l-0.67,0.4l0,0l-0.51,0.54l0,0l-2.21,-0.57l-1.48,-1.1l-0.88,0.53l0,0l-3.16,-0.34l-3.26,-3.75l-5.23,-0.3l-3.35,5.91l0.08,3.45l-6.33,8.18l-4.48,3.51l-2.8,-1.95l-1.72,2.53l-1.94,5.53l-1.67,-1.53l-1.73,3.51l-2.24,-1.02l-2.86,2.44l-7.12,-3.66l1.07,-9.68l-11.63,-2.67l-0.33,0.48l-1.94,-0.4l-1.32,3.73l-2.21,-0.38l-2.28,8.44l-3.97,2.38l4.47,4.52l-9.38,3.27l-5.05,-1.91l-1.99,-5.88l-4.4,-2.59l-11.51,3.3l-3.2,-3.14l-5.2,1.6l1.94,4.63l-1.31,2.28l-3.33,0.69l0.17,5.58l-2.66,2.65l-6.27,0.08l-1.2,-2.86l-3.54,-1.81l1.24,-0.88l-6.1,-0.61l-4.04,-5.1l-4.01,5.24l-5.21,-0.12l-0.72,1l-1.07,0.06l-3.67,-3.54l-2.88,-1.57l0.12,-2.11l-4.88,-1.31l-1.31,0.31l0,0l1,-3.88l-0.42,-0.02l0.18,-1.06l1.63,-0.37l1.64,-2.51l-0.44,-0.7l-0.19,-0.63l0.46,-0.92l-1.8,-1.64l0.45,-0.6l0.52,0.39l1.49,-0.36l-1.01,-1.7l0.52,-0.45l-0.46,-1.26l0.78,-0.72l2.87,0.53l0.06,1.12l-1.31,-0.13l1.71,2.19l-0.23,0.43l1.33,0.87l0.71,-0.18l-0.04,-1.18l1.47,-0.39l1.11,0.56l0.43,-0.46l1.33,1.26l-2.62,3.03l0.37,2.89l-0.72,1.9l1.64,1.2l0.78,-1.81l0.67,-0.29l2.26,-1.24l0.81,-1.14l3.41,-2.22l0.94,-1.95l3.18,-3.63l3.35,-2.47l0.33,-0.87l-0.6,-1.94l-1.3,-1.2l0.91,-1.14l-0.15,-1.66l0.06,-2.19l0.06,-1.78l-0.96,-0.73l-0.18,-0.99l-0.61,-0.99l-1.18,-1.22l-1.51,-1.9l-1.57,-1.71l-2.74,-4.96l-0.86,-4.4l0.3,-3.27l-0.9,-2.74l0.68,-3.45l-0.43,-1.42l-3.84,-2.7l-4.09,-3.94l-2.23,-1.96l-8.7,-3.14l-1.01,0.15l-0.35,-0.81l-4.33,-2.55l1.76,2.03l0.03,1.38l0.91,1.37l-1.82,2.4l-0.25,1.2l-0.61,6.44l0.33,1.79l-0.73,3.37l1.47,7.03l1.33,0.44l-2.12,0.93l-1.11,-0.48l0.23,0.79l-1.13,0.75l-2.21,-11.03l0.79,-15.21l3.39,-25.98l0.23,-9.93L5.74,350.61l0.48,-0.01l1.74,0.08l0.45,0.56l-1.43,-0.17l-0.36,0.71l1.63,-0.24l0.71,0.9l-1.04,1.73l0.12,1.81l-0.74,0.34l0.39,5.09l2.32,-0.64l0.45,-0.33l2.03,-1.22l0.48,3.42l3.16,-0.92l2.24,1.67l4.21,-0.33l-0.37,1.79l1.23,3.12l-1.46,0.78l1.43,2.21l1.01,0.43l2.74,-2.23l0.9,-0.13l1.93,-4.05l1.45,-1.41l0.02,-0.79l-1.5,1.37l-0.95,-0.95l-3.24,-0.95l-0.47,-0.26l-0.35,-0.8l-0.88,-0.19l0.38,-0.94l1.02,-0.23l-0.89,-3.06l-1.41,-0.86l-0.01,-1.08l-0.81,-0.9l-2.5,-2.05l-2.47,-1.1l-1.98,-2.25l-0.71,-2.46l-1.83,-2.62l0.02,-2.87l-0.76,-0.36l0.95,-0.99l-0.7,-4.65l-2.39,0.86l-2.15,-1.79l-0.21,1.43l-0.8,-0.2l0.83,1.24l0.23,1.89l-0.44,1l-0.78,0.12l0.75,2.15l-0.82,0.37l1.14,0.72l-1.18,1.13l1.22,0.09l0.6,2.46l-1.54,-0.26l1,1.34l-1.36,1.32l1.25,0.37l-0.1,1.05l-2.1,0.42l1.39,-25.2l-1.29,-8.57l-0.06,-4.21l1.15,-8.49l6.28,-25.46l4.72,-10.61l1.38,-1.65l1.28,0.49l0.02,0.95l-0.62,0.38l0.73,0.71l0.4,0.41l-0.24,1.91l-0.32,0.15l0.34,1.22l0.79,0.3l-3.57,4.4l1.85,2.63l-1.62,0.73l-1.42,-0.86l-1.19,5.87l1.67,-0.48l4.37,2.1l0.12,0.98l-0.59,0.35l0.56,0.56l-0.14,2.92l0.89,-0.04l1.02,1.18l3.74,1.04l2.81,-0.28l1.35,0.92l0.58,1.88l-2.59,0.13l-0.54,0.67l0.26,1.65l2.02,3.23l-0.71,0.78l0.31,2.15l0.9,0.79l0.67,-0.19l0,-5.2l2.86,-1.54l3.21,0.66l4.98,-0.92l13.85,6.64l2.62,2.53l1.09,0.26l2.6,-1.48l2.93,-3.76l1.58,-4.68l0.19,4.66l1.23,1.97l-0.36,2.8l1.61,1.2l2.57,5.03l-1.07,0.86l-1.81,3.75l0.3,1.16L70,319.63l-0.28,-2.05l-1.6,-0.47l-2.32,0.75l-1.05,1.53l0.51,0.97l-0.68,1.59l-1.81,-0.23l-0.71,0.79l0.91,0.64l2.49,-0.48l0.09,-1.93l1.12,-1.77l1.82,1.08l2.87,-0.21l1.06,0.54l0.55,-0.43l-0.53,-0.39l1.79,-1.06l0.01,3.69l1.46,2.72l3.69,1.81l1.3,-0.01l10.09,-2.8l0.85,-0.87l0.86,-4.54l-0.44,-5.34l-0.88,-2.55l1.82,-3.15l1.39,-0.77l0.64,-1.37l-1.4,-3.14l-3.47,-2.08l-3.76,-3.75l-1.24,-4.61l-2.2,-0.9l0.84,-3.83l1.63,-0.47l2.12,1.05l2.65,-0.03l4.22,-4.15l2.31,-3.7l1.4,-4.97l3.96,-5l1.18,-0.12l2.09,1.97l1.21,-0.2l0.88,-1.42l2.36,0.51l-0.03,-1.67l1.68,-1.01l1.56,2.42l2.03,-0.21l1.67,-1.4l-0.46,-2.22l-1.86,-0.74l-1.73,0.71l-0.69,-2.31l-1.15,2.97l-1.85,-1.68l-1.66,1.14l-3.33,0.58l-0.24,-0.49l4,-9.15l2.4,-2.66l-1.17,-2.57l1.81,0.29l1.08,-0.46l4.14,-2.82l1.81,-2.96l5.19,-3.55l6.04,3.04l1.98,0.68l1.38,0.69l1.01,-0.37l0.14,-1.01l-1.15,-0.51l0.25,-1l-1.19,-1.11l2.61,-0.4l1.5,0.48L137.21,242.4zM133.24,231.35l5.11,0.76l-1.1,0.42l-1.09,1.41l0.35,1.66l2.2,0.3l-1.82,2.26l-1.32,0.56l-1.1,-0.76l-1.68,0.8l-0.71,-0.44l-0.94,1.98l-0.07,1.91l-1.77,0.47l0.03,1.47l-4.31,-3.87l-2.06,-4.36l-1.84,-1.13l0.75,-1.11L133.24,231.35z"
7
+ },
8
+ "Hovedstaden": {
9
+ "path": "M927.62,615.16l-0.13,1.36l2.35,1.27l-0.05,0.58l1.56,1.26l2.54,5.86l1.71,1.26l1.56,0.11l0.96,1.31l2.79,1.03l1.23,2.23l5.22,2.1l1.9,1.89l1.11,0.48l3.56,-1.31l1.24,1.19l1.5,3.91l4.39,4.18l2.93,1.19l2.44,2.62l4,2.51l3.68,1.03l0.46,0.71l2.65,-0.18l1.02,0.79l0.1,1.6l1.18,0.19l-0.3,1.46l0.47,1.04l-1.11,0.67l-0.56,1.78l0.23,1.27l0.13,1.24l1.44,2.67l-0.43,0.57l0.55,1.47l-0.87,1.89l-1.79,1.63l0.26,1.81l-0.18,1l-1.45,0.17l-0.55,2.32l-1.96,1.77l0.41,1.66l1.18,1.34l-0.62,1.54l0.48,1.45l-1.93,1.55l-3.28,4.68l-1.46,0.27L964.37,688l-3.22,-0.17l-8.02,-2.23l-3.96,-2.69l-1.48,0.09l-5.35,-4.1l-5.77,-2.54l-1.6,0.32l-5.19,-3.11l-2.48,0.35l-4.42,-2.67l-2.8,-3.79l-1.97,-0.49l-1.34,-1.74l-1.28,-0.61l0.23,-0.51l0.73,-0.55l-0.61,-1.07l-1.58,0.6l0.59,-1.45l1.75,-0.88l0.39,-1.73l-0.48,-1.86l1.13,-2.08l-0.18,-9.73l-0.72,-3.06l0.55,-0.88l-0.43,-2.25l1.44,-6.41l5.66,-11l0.67,-2.25l-0.74,-1.03l-0.05,-1.34l2.98,-2.87L927.62,615.16zM645.33,534.14l-0.77,-2.66l0.74,-0.37l-0.51,-0.97l0.12,-0.46l0.46,-0.29l-0.01,-2.3l0.77,-0.83l-0.34,-0.87l0.41,-0.83l0.75,0l1.68,-0.19l0.74,-1.13l1.11,1.36l0.37,1.57l0.19,4.79l0.5,0.37l-0.17,4.07l0.91,0.64l-0.68,1.11l1.33,1.36l-1.71,0.97l-2.48,-0.01l-0.41,-1.9l-1.06,-0.76l0.09,-0.99l-1.53,0.43l-0.56,-1.11l0.59,0.25l0.09,-0.89L645.33,534.14zM627.97,519.7l2.66,-0.83l0.42,0.68l-2.09,1.64l1.36,2.44l0.39,-0.23l-1.18,-2.08l1.47,-1.11l0.5,1.13l-0.89,1.13l1.67,-0.85l0.57,0.91l-1.38,1.8l-0.68,-0.8l-0.45,0.23l0.22,1.6l1.33,3.15l0.92,0.83l0,1.31l1.19,1.13l-0.36,0.92l2.94,0.31l0.72,0.95l0.07,3.74l-1.6,2.24l0.7,2.6l0.99,0.36l-0.71,0.44l0.44,0.44l-2.21,1.59l-4.44,1.32l-1.94,2.59l-3.61,2.78l-3.88,-1.31l-0.95,-3.49l-2.22,0.49l-1.76,-1l-2.21,-4.3l-0.45,-3.52l3.59,-5.49l2.42,-2.35l2.19,-5.04l1.6,-2.15l2.28,-1.98l0.75,-1.46l0.41,0l0.13,-1.25l0.16,-0.47l0.2,-1.53l2.31,-0.04l0.48,0.82L627.97,519.7zM541.01,464.09l1.19,0.23l1.39,-0.67l2.77,1.95l0.32,1.73l-2.12,2.51l-0.38,1.43l-0.98,0.6l-0.48,4.59l0.54,1.19l3.94,1.77l0.92,3.35l0.27,5.45l1.96,1.38l-1.57,0.85l-0.08,1.8l0.41,0.72l1.03,-0.23l1.03,-0.07l-0.8,3.15l2,4.39l-0.49,1.54l-1.14,0.91l0.17,0.69l0.95,0.28l-0.43,0.76l0.16,2.32l0.5,0.46l-0.38,2.05l-0.94,-0.88l-1.17,0.08l-0.99,0.93l-0.9,0.35l-1.09,0.09l-1.59,1.4l-0.96,-0.21l-0.09,-2.89l-1.42,0.69l-0.76,-2.17l-1.32,2.58l0,0l-6.81,-3.72l-3.72,3.42l-4.05,-1.59l0,0l-2.62,0.33l-0.09,-3.86l-0.78,0.31l-0.64,-1.27l0.96,0.15l0.74,-1.66l0.86,-8.36l1.98,-1.27l-0.12,-3.07l4.89,-1.59l1.15,0.95l2.72,-1.22l1.09,-1.55l1.55,-5.81l-2.08,-4.81l-1.59,-0.84l-0.6,-1.58l0.26,-2.68l-4.03,-6.52l0.51,-4.82l8.12,2.02L541.01,464.09zM585.95,411.72l2.51,0.99l2.92,0.42l4.99,4.57l3.33,0.44l3.54,1.57l2.98,-0.39l5.78,0.85l5.75,2.85l9.19,8.89l2.49,1.15l-0.28,0.57l-1.04,-0.15l0.15,1.34l-1.09,1.1l-1.52,3.65l-4.54,4.32l-2.58,5.64l-2.44,7.99l-0.69,1.24l0.04,1.56l-0.78,1.66l3.52,8.56l0.38,1.29l3.73,8.36l0.67,8.92l1.36,1.91l1.21,3.88l-0.49,3.36l1.22,3.67l-2.88,6.73l1.04,1.21l-0.36,0.53l-0.12,2.28l0.86,0.75l0.7,-1.7l0.63,-0.21l0.3,-1.26l2.88,1.94l-0.74,0.57l0.54,0.26l-1.4,1.15l-2.13,-0.71l-0.1,0.6l0.94,0.71l-1.43,0.27l0.33,0.75l0.09,1.76l0.54,0.03l0.26,1.19l-0.93,2.89l-4.35,3.87l0.17,0.76l-0.1,0.25l-0.62,1.48l-0.74,1.35l-0.83,-0.94l-0.54,0.38l0.16,1l0.47,-0.46l0.73,0.36l-0.77,1.22l-0.22,0.48l-2.04,1.81l0.05,-1.49l-3.1,0.86l-0.37,-0.36l-1.75,3.97l0.56,1.03l0.8,0.19l-1.78,3.46l-5.91,-0.89l-0.36,-1.25l-0.11,-0.51l-4.53,-0.41l-1.62,0.45l0.08,-0.61l1.24,-0.21l4.78,0.58l-0.31,-0.74l-5.54,-0.24l-0.61,1.26l-0.36,-0.8l-1.62,0.38l-0.78,0.9l0.15,0.36l0.67,-0.61l0.35,0.24l0.6,-0.38l0.17,0.79l0.79,-0.32l0.33,0.61l-5.04,3l0,0l-0.92,-0.81l0,0l-0.19,-0.23l0,0l-2.5,-2.34l-7.09,-2.26l-1.35,-1.23l-4.58,2.02l-1.11,-1.75l-2.74,0.83l-0.79,3.21l-6.89,-2.02l0.99,-5.23l-1.34,0.07l0.14,-3.76l-1.07,-5.32l4.85,-4.21l3.68,0.25l5.36,-5.19l-5.03,-4.51l1.14,-3.08l0.63,-0.2l-2.56,-2.57l-5.77,0.91l-2.4,-2.34l-2.93,-1.32l-2.74,-3.17l-2.68,-1.51l0,0l-2.19,-1.4l0.67,-3.11l-1.39,-2.29l-0.72,-4.85l-0.77,0.16l-0.92,-1.69l0.35,-0.47l-0.4,-1.39l-1.18,-0.46l0.64,-3.43l2.45,-0.51l0.35,-4.31l-1.55,-2l-1.26,-3.54l0.23,-3.57l-1.2,-3.73l-2.32,-4.2l-0.65,-3.22l-0.95,0.13l-0.95,-0.33l-0.98,-0.93l-1.13,-0.19l-1.7,-0.44l-3.78,2.1l-0.74,1.27l-1.51,0.82l-5.89,2.01l-2.7,-0.8l-0.68,0.11l-0.05,0.72l-1.71,-1.08l-1.37,-5.16l1.66,-2.39l5.17,-2.8l16.03,-10.64l7.41,-6.98l16.2,-12.08l2.33,-1.25l12.57,-3.98l1.47,0.36l1.66,-0.41L585.95,411.72z"
10
+ },
11
+ "Sjælland": {
12
+ "path": "M474.65,707.56l-0.66,0.71l-0.87,-0.48l-1.32,0.84l1.89,2.69l2.62,1.57l0.12,1.06l-1.59,-0.79l-3.67,0.94l-0.59,-2.89l2,-0.63l-0.86,-1.47l-0.45,0.14l-1.01,-0.99l-0.13,-0.84L474.65,707.56zM441.23,696.93l4.06,2.7l3.54,5.22l1.02,-0.23l2.72,0.78l1.91,1.25l0.23,4.54l3.04,3.38l2.17,1.44l1.46,0.16l1.49,1.41l1.42,0.07l-0.59,1.65l0.87,0.64l1.89,-1.12l2.35,0.58l0.75,1l-0.66,3.31l0.53,1.36l1.15,-0.42l2.31,0.74l0.04,1.63l2.59,-0.44l2.81,0.97l3.18,0.04l1.42,1.32l3.44,-0.74l0.42,-0.92l-2.33,-0.84l-2.07,-2.85l0.43,-1.53l1.31,0.02l1.39,-1.27l3.47,2.09l2.73,-0.93l1.28,-1.31l1.92,-0.12l-0.11,-1.44l-1.13,-1.26l0.77,-4.48l-1.69,-2.57l0.12,-1.11l3.14,0.65l0.54,0.93l1.2,0.31l1.64,2.31l3.9,2.84l1.09,0.49l3.01,-0.61l0.75,0.8l-1.14,1.41l-0.3,1.52l1.73,4.84l1.34,0.08l2.83,1.82l1.35,-0.09l-1.22,2.77l0.18,3.27l2.2,1.77l0.27,1.23l1.26,0.02l0.38,0.7l1.4,0.34l1.64,2.27l2.38,1.55l0.94,1.17l-0.07,1.96l0.03,1.09l0.96,1.36l0.14,3.3l-2.52,1.77l-0.03,0.65l-1.83,0.08l-2.49,-2.05l0.4,0.98l-0.5,1.84l1.13,1.04l-2.18,1.02l0.66,1.5l0.54,0.98l1.96,1.34l2.15,0.98l0.85,-0.51l1.14,1.18l-0.22,1.53l-2.76,0.49l1.91,1.86l-1.81,1.13l1.22,1.08l-0.97,-0.06l-3.29,1.72l2.35,1.8l-1.28,0.46l-0.89,-0.44l-0.26,1.13l-1.1,-0.38l-0.69,0.86l-2.54,-1.04l-4.04,-0.67l-2.25,0.22l-1.57,-0.62l0.73,-1.05l-1.1,-1.88l-0.76,0.62l0.45,1.84l-1.69,0.89l-0.99,-1.97l-2.27,-1.06l-2.48,0.64l-0.7,-1.14l-0.64,1.05l0.47,0.53l-0.75,0.65l-0.28,-0.63l-0.81,0.51l-1.29,-1.09l-1.72,-0.11l-0.13,0.76l-1.32,0.21l-1.45,-0.16l-2.33,-1.29l-1.1,0.51l1.09,0.89l-0.27,0.29l-3.85,-0.3l-0.12,0.77l1.26,0.92l-2.51,0.14l-0.13,1.4l-0.92,1.34l-2.96,0.28l-0.72,0.83l-2.73,-0.01l-4.95,5.71l4.3,2.92l1.25,0.02l1.14,0.86l1.7,-0.16l0.63,-0.76l0.06,0.93l-2.1,0.42l-1.8,-0.39l-7.17,-4.41l-5.58,-4.67l-5.33,-2.97l-2.38,-2.05l-0.96,-0.16l-6.41,-7.31l-4.74,-3.87l-3.64,-1.58l-1.51,-0.07l-3.34,-2.04l-12.25,-4.94l-8.31,-2.47l-6.98,-3.75l-5.55,-9.57l-1.1,-6.48l0.53,-1.02l0.84,-0.4l2.69,1.92l-2.81,-1.44l-0.26,0.63l0.86,0.89l-0.01,0.82l-0.89,-0.37l-0.57,0.97l0.8,4.06l1.22,2.19l0.74,0.11l0.46,-0.32l2.41,0.01l1.4,-1.02l0.72,-1.38l-0.84,-1.27l-3.11,-1.96l2.21,0.22l1.94,1.27l0.76,-0.35l1.24,1.4l1.1,0.02l1.06,2.8l3.49,-0.17l1.35,-1.7l-1.68,-1.71l0.22,-1.97l2.23,2.58l1.09,-0.29l0.82,-2.2l1.76,-0.71l-0.34,-1.49l1.88,0.33l0.63,-0.43l-0.35,-0.78l-1.17,0.55l-1.51,-0.64l-1.83,0.42l-0.11,0.58l-1.05,-1.29l-0.79,0.41l0,-3.23l-1.3,0l-0.23,-1.89l-1.6,-1.27l0.69,-1.96l-2.14,0.43l0.06,-1.85l-0.6,-0.35l-1.1,1.58l-0.43,-0.12l-0.08,-2.71l-0.79,1.09l-0.87,-0.74l-0.29,-2.06l1.68,-5.86l4.48,-3.56l1.58,-2.58l1.57,-0.82l0.94,0.59l2.33,-0.23l1.23,0.93l0.58,1.32l0.02,-1.71l-1.14,-1.93l0.8,-0.61l1.64,1.1l0.12,-1.66l1.8,0.55l1.88,-1.62l1.41,0.28l2.06,-1.42L441.23,696.93zM461.57,694.08l2.11,1.43l3.33,-0.42l2.69,3.06l0.17,0.89l-0.26,1.2l-4.94,-0.39l-3.88,5.34l-0.66,0.17l-0.43,-0.92l-3.54,-2.39l-1.24,-5.32l-1.18,0.01l-0.61,-2.57l1.12,-0.03l1.1,1.07l0.34,1.01l-0.43,0.82l0.69,1.7l0.84,-0.11l0.14,-1.39l0.42,-0.01l2.18,0.7l1.08,1.2l0.63,-0.15l0.33,-1.11l-0.44,-2.3L461.57,694.08zM520.84,696.26l1.31,0.54l0.52,0.1l3.54,3.23l-0.57,1.09l2.05,1.69l0.18,2.38l1.97,1.15l1.71,0.29l0.41,-0.41l0.38,-1.06l0.28,-0.57l0.17,-3.76l1.11,1.05l2.56,-0.93l2.08,0.19l1.93,1.48l-0.4,0.89l0.4,3.16l0.92,1.84l-0.39,0.94l2.6,2.06l3.67,0.98l1.84,-0.16l2.06,0.9l2.01,-1.14l3.04,1.13l3.57,0.42l0.93,4.68l3.96,4.77l1.34,3.21l-0.84,1.37l-3.45,1.42l-1.07,3.47l-1.48,1.9l-4.88,2.81l-5.62,7.55l-2.09,6.1l-1.33,2.1l-3.89,3.4l-2.27,4.18l-1.3,5.9l-0.06,3.82l1.77,17.76L539.04,792l-7.33,-3.6l0.72,-1.28l-0.03,-0.52l-0.47,0.12l0.13,-3.12l-3.91,-8.16l-2.71,-3.94l-0.88,-2.76l1.58,-5.28l0.13,-2.43l2.92,-3.42l1.54,-3.06l-0.52,-0.75l-0.69,0.23l-4.44,-1.95l0.7,-3.48l1.3,-1.4l-2.31,-3l-0.78,-3.33l-1.9,-2.36l-1.62,-0.8l-0.79,-2.31l-2.61,-0.56l-2.18,-2.19l-0.24,-0.86l1.66,-1.32l1.13,-2.67l-0.12,-0.99l-1.31,-0.98l0.31,-1.67l-3.18,-2.47l-3.93,-0.39l0.43,-1.31l-0.64,-2.06l-0.59,-0.34l1.03,-2.49l-1.38,-1l-0.89,-2.65l0.45,-1.64l1.53,-2.06l0.06,-1.86l-1.4,-2.39l-4.94,-0.07l-0.68,-0.58l2.25,-2.92l1.16,0.7l1.01,-0.15l0.48,-1.12l-1.31,-0.71l1.81,-2.64l3.2,0l2.27,1.4l2.45,4.43l1.87,-0.44l1.11,-1.4l0.93,-3.63l-0.92,-1.22l0.07,-0.79l1.02,0.23L520.84,696.26zM557.44,695.81l-0.35,1.32l-0.74,0.21l0.48,1.5l-1.1,-1.13l-2.14,1.28l-2.21,-1.2L557.44,695.81zM476.35,688.55l4.33,0.81l2.54,3.79l-3.43,4.14l-0.65,2.08l-1.84,-2.58l-1.34,-3.42l-2.4,-2.13l0.64,-1.46L476.35,688.55zM561.27,689.27l-2,2.62l-0.17,1.69l-1.23,-0.39l-0.47,1.14l-0.25,-1.2l1.83,-1.88l-0.53,-1.02l0.63,-0.75l1.14,0.54L561.27,689.27zM528.44,689.02l0.56,3l-1.69,-0.93l-1.62,-3.24l1.21,-0.85l1.08,0.74L528.44,689.02zM454.03,679.43l-1.74,1.46l-0.14,-1.34l2.99,-2.46l1.27,-0.06l-0.17,1.39L454.03,679.43zM575.8,672.44l-2.59,6.03l-2.63,-1.61l-1.65,-0.1l-0.94,-1.48l2.43,-0.48l1.62,-2.08l1.05,-0.45l1.38,-0.4l1.43,0.11L575.8,672.44zM581.73,676.15l1.38,1.94l3.72,1.8l9.94,0.11l4.54,1.16l1.99,-0.47l3.72,0.34l8.26,3.64l3.49,6.51l0.75,3.75l0.02,1.65l-1.62,2.88l-4.41,0.68l-5.79,-2.08l-0.82,-0.87l-5.94,-1.55l-4.57,-0.75l-3.62,0.22l-5.99,2.64l-4.64,3.77l-5.31,6.4l-1.43,3.02l-3.71,4.08l-3.68,0.73l-5.34,-0.72l-2.34,-4.28l0.83,-0.13l0.52,0.5l-0.34,0.29l1.38,0.21l-0.03,-0.91l1,0.1l-0.18,-0.39l-5.47,-0.41l-14.6,-4.74l-1.25,-2.74l0.31,-1.97l-1.77,-1.83l0.19,-1.25l1.16,-0.62l0.6,0.49l0.01,2.47l0.68,1.64l1,0.15l-0.13,0.79l1.65,0.34l1.57,-1.37l5.16,0.02l2.64,2.92l-1.77,3.96l0.8,-0.42l0.33,0.73l2.84,0.81l2.5,-0.97l-0.89,-1.7l-0.9,-0.23l1.38,-3.76l3.77,-2.48l-2.27,-0.94l-0.83,-0.95l-0.35,-1.78l3.32,-1.71l-0.02,-0.74l2.48,-0.77l2.52,0.96l0.32,-0.73l-1.89,-2.24l-0.39,-1.59l4.14,1.44l0.77,0.71l-0.04,1.7l0.58,0.97l3.62,-2.04l2.97,-0.73l0.84,-0.99l2.32,-0.33l1,0.85l-1.27,1.85l-0.37,1.84l-0.77,0.39l0.95,0.49l0.92,-0.77l1.48,-0.17l2.9,-3.3l5.46,-1.42l0.4,-0.32l-1.26,-0.38l-4.69,0.74l-1.04,-0.56l-0.53,-0.23l-2.02,1.5l-0.78,-0.87l-1.26,-3.34l1.62,-2.52l0.04,-1.5l-2.08,-3.56l-1.02,-0.59l0.23,-0.56l-1.16,-1.04l-0.91,0.17l-0.12,0.66l-1.35,-0.3l-0.57,-1.21l0.38,-1.6l2.52,-1.27l1.19,-1.6l1.27,1.03L581.73,676.15zM580.91,670.77l-0.5,0.13l-0.18,-1.17l-1.33,-1.29l-0.03,-1.52l-1.05,-0.93l0.99,0.17l0.91,1.15l-0.39,0.32l1.44,0.83L580.91,670.77zM559.84,654.92l-1.78,0.95l-1.88,-0.49l1.74,-0.6L559.84,654.92zM505.41,653.42l-1.53,3.31l-0.62,-3.03l1.02,-2.7l0.42,0.25l-0.42,0.94L505.41,653.42zM429.19,645.36l0.34,0.96l-2.3,2.02l-1.7,4.42l-2.38,-4.78l3.53,-2.93l0.58,0.41l2.2,-1.53L429.19,645.36zM498.73,643.17l-0.03,4.22l2.08,1.24l0.74,1.32l0.5,-0.12l0.98,0.78l0.21,1.04l-0.63,0.1l-3.52,-3.63l-2.89,-0.93l-1.92,-3.11l0.75,-0.44l1.57,0.9l1.27,-1.36L498.73,643.17zM470.67,640.09l-0.78,-0.02l0.73,-1.18l1.61,-0.39l0.23,0.42L470.67,640.09zM504.45,642.19l-0.77,2.85l-1.41,-0.65l-2.12,0.61l-0.4,-0.84l0.86,-3.15l1.15,-1.39l0.11,-1.88l0.67,-0.17l1.2,1.17l2.3,0.6L504.45,642.19zM431,628.46l-1.06,0.85l-0.6,-0.55l-0.34,0.77l0.52,-0.13l-0.32,1.24l2.28,2.2l0.56,3.22l1.27,2.67l-0.38,0.91l-0.94,-0.43l-0.07,0.56l1.82,1.17l1.36,-2.19l-0.5,2.95l-0.61,0.53l-5.13,-3.59l-0.54,-7.8l0.65,-2.67l-0.84,-1.6l0.54,-0.59l1.52,0.9L431,628.46zM403.16,604.33l-1.76,1.27l2.25,-0.27l-6.59,2.59l3.83,-3.49l2.28,-0.53L403.16,604.33zM592.4,541.67l0.92,0.81l0,0l-1.25,0.76l-0.33,-0.72l0.27,-0.47L592.4,541.67zM446.5,499.51l0.56,1l-1.88,-1.24l-1.74,-3.8l0.65,-2.52l1.44,1.45l-0.69,1.3l1.96,2.22L446.5,499.51zM521.73,496.29l-0.18,2l-1.51,3.12l0.37,1.22l-2.98,1.62l-1.71,-1.87l-1.36,-0.11l-2.43,-5.95l0.64,-0.74l1.48,-0.02l1.12,-1.67l1.2,1.84l1.27,0.56l1.5,-3.9l-0.82,-1.76l0.8,-0.86l2.05,3.06L521.73,496.29zM427.68,470.59l3.45,3.97l3.08,1.71l0.47,2.29l-1.55,-1.65l-6.84,-2.25l-1.68,-1.36l-3.87,-5.06l-4.33,-1.97l-0.8,-3.64l5.11,1.85l0.98,2.1l3.25,1.61L427.68,470.59zM453.05,448.08l4.58,2.77l5.06,1.33l8.77,0.34l5.5,2.25l9.59,-2.57l2.35,3.93l3.24,1.66l2.51,-0.04l6.88,-2.16l2.7,-1.47l3.47,-3.15l4.48,-2.5l1.94,4.87l0.21,2.02l-0.54,0.23l-0.02,-1.13l-1.2,-0.23l-3.45,3.23l-0.84,4.02l0.67,2.92l-0.23,1.8l-2.49,1.51l-3.17,-1.19l-0.52,-2.24l-1.43,-0.44l-1.19,0.73l-1.25,-0.83l-0.76,0.67l-1.11,4.22l0.36,3.43l3.21,1.71l2.39,3.24l0.69,2.44l2.39,3.66l0.32,3.84l-2.58,3.61l-0.57,-1.08l-6.54,-1.89l-2.02,2.38l0.98,1.18l-1.21,0.51l-0.05,1.79l-4.91,2.4l-0.17,1.16l2.93,2.02l2.76,-0.3l2.44,-0.66l1.86,-2.02l1.63,-0.37l1.24,-1.26l2.6,-0.22l1.45,-1.25l1.65,1.79l0.72,3.72l1.59,2.11l-1.08,0.65l-0.48,-1.93l-1.13,1.74l0.91,1.62l3.04,1.45l0.03,1.63l-0.91,-0.18l-2,1.53l-2.23,-0.12l-1.57,0.85l-8.19,0.45l-1.43,0.78l0.72,1.45l-0.67,0.15l0,0.81l1.54,0.36l0.1,0.91l5.79,-0.85l0.99,-0.65l1.16,0.5l0.81,-0.12l1.35,0.1l1.72,-0.75l2.77,0.61l0.74,-1.37l-1.47,-0.75l-0.05,-0.63l0.41,-0.34l0.71,0.6l1.61,1.78l1.31,2.75l-0.12,3.2l0.76,0.58l0.8,-0.25l0.51,2.64l-0.63,1.04l-1.81,0.31v2.57l-1.82,0.66l-1,1.87l0.25,0.6l1.59,0.01l1.04,-0.37l1.25,-0.75l0.61,0.65l1.02,-1.15l0.33,-2.12l2.54,-1.93l0.73,-0.48l0.51,-5.65l2.32,-6.05l1.08,-0.12l1.47,-1.46l0,0l4.05,1.59l3.73,-3.42l6.81,3.72l0,0l-0.09,3.36l-0.79,0.82l-1.5,4.28l-0.67,0.14l-2.19,3.85l-0.73,3.23l-0.73,0.18l-0.37,0.89l-0.39,2.07l0.74,1.45l1.25,-3.32l1.54,-0.7l-0.43,-0.56l0.3,-2.37l6.29,-0.64l-0.88,-1.24l-0.04,-1.66l-1.41,-0.81l1.54,-1.13l-0.05,-2.15l0.51,1l1.82,-0.63l-1.54,2.46l0.4,0.59l0.85,0.37l1.1,-1.26l0.78,0.76l1.63,-0.44l1.75,1.17l-0.39,1.3l0.97,0.05l0.64,0.82l-0.32,0.82l-1.85,-1.11l-1.82,0.46l-1.33,-1.51l-2.2,-0.63l-0.28,1l1.24,0.03l0.92,2.87l-0.68,1.41l1.31,-0.8l0.8,0.04l0.4,0.81l0.79,-0.16l0.64,-0.75l0.94,0.82l0.44,-1.08l1.8,-0.23l-0.18,1.19l0.64,0.5l-0.78,0.83l-0.02,1.47l1.96,0.46l1.37,1.35l0.8,-1.01l0.68,-3.93l-1.23,0.12l-1.18,-1.17l-0.42,-1.37l1.18,-2.1l0.88,-0.29l0.92,1.32l0.45,-2.07l-1.81,0.38l0.17,-0.75l0.41,-0.55l1.73,0.19l1.48,-1.74l0.59,-1.53l-1.66,-0.34l0,-2.1l1.32,-0.52l-0.5,-0.61l1.45,-0.6l0.16,-0.61l-0.36,-0.47l-1.53,0.12l0.43,-0.65l-1.87,-2.61l0.83,-1.64l-0.08,-1.41l-2.12,-2.42l0.56,-3.69l0,0l2.68,1.51l2.74,3.17l2.93,1.32l2.4,2.34l5.77,-0.91l2.56,2.58l-0.63,0.2l-1.14,3.08l5.03,4.51l-5.36,5.19l-3.67,-0.25l-4.85,4.22l1.07,5.32l-0.14,3.76l1.34,-0.07l-0.99,5.23l6.89,2.02l0.79,-3.21l2.75,-0.83l1.11,1.75l4.58,-2.01l1.35,1.23l7.09,2.26l2.5,2.34l0,0l-0.82,1.19l0.35,0.65l-7.73,4.01l-1.34,1.34l-3.08,2.47l-3.3,4.03l-3.32,8.79l-3.13,9.24l0.8,2.7l-0.27,0.78l-0.28,0.72l0.7,2.42l2.18,3.31l1.56,1.07l10.46,5.46l8.6,0.88l7.11,6.79l3.91,5.18l0.33,3.15l1.01,0.97l-1.3,3.95l0.35,3.53l1.03,1.57l-0.36,2.15l-1.04,1.92l-1.62,0.76l-2.66,3.24l-2.07,0.87l-0.46,0.74l-1.43,-0.44l-0.95,0.66l-1.18,-0.34l-2.18,4.38l-1.79,-0.57l-6,0.02l-3.4,-0.9l-5.46,1.61l-4.03,2.59l-1.65,0.11l-3.64,2.92l-0.22,-0.58l-0.63,0.1l-3.32,5.33l-3.05,2.26l-0.85,1.82l-0.24,3.62l0.81,4.72l-1.92,1.54l-1.74,0.19l-1.13,-1.15l0.96,-3.71l-0.1,-2.2l1.67,-2.87l-0.66,-0.61l-4.14,0.47l-4.35,2.12l-2.62,4.31l0.03,0.64l1,0.64l1.83,-0.02l0.56,0.62l0.64,1.67l-0.85,1.55l0.19,1.18l1.67,-0.77l0.57,0.31l-0.46,0.55l1.03,0.48l1.66,-2.36l2.52,0.06l0.6,0.54l-0.58,1.23l2.13,-0.15l0.36,-0.87l1.35,0.65l1.71,-0.6l-0.41,-1.08l0.99,-0.11l4.83,1.75l2.22,2.38l-0.11,2.21l-0.76,0.17l-0.62,1.35l-0.01,2.77l-2.21,2.74l-2.65,-1.58l-1.67,0.93l-0.37,-1.32l-1.04,-0.47l-0.43,-0.56l-1.4,-0.59l0.49,1.58l1.78,0.18l0.48,1.43l-0.55,0.55l1.44,0.35l-1.55,1.36l0.94,0.05l0.24,1.97l0.99,1.02l-0.43,1.95l2.27,0.45l-0.67,1.82l4.42,8.3l-0.28,2.42l-0.57,-0.52l-2.43,0.04l-0.9,0.67l-2.69,-0.45l-1.74,1.09l-0.71,1.49l-1.28,0.58l-2.39,2.69l-3.48,1.95l-3.69,-0.04l-6.55,-3.35l-2.29,-2.26l-1.05,-2.55l-5.74,-2l-0.62,0.45l1.34,0.59l0.14,1.31l-2.95,0.18l-1.84,-1.86l-2.81,-1.28l-1.5,-1.92l-3.29,-2.06l-2.72,-3.29l-4.85,-2.4l-6.16,-1.75l-4.24,-2.03l-2.68,-2.04l-7.49,-2.01l-0.8,-0.74l1.88,0.1l12.34,4.11l3.36,0.33l10.84,5.53l1.06,-1.26l-0.51,-1.72l-2.4,-2.78l-0.38,-1.58l-3.93,-2.23l-0.86,-1.31l-1,0.7l0.49,1.17l1.11,0.71l-2.5,-0.2l-1.73,-2.65l1.14,0.03l0.86,-1.57l-0.9,0.65l-1.8,-0.44l-3.22,-4.8l-0.05,-2.73l0.67,-1.03l0.96,0.81l-0.45,1.3l2.93,-0.28l1.46,0.62l0.72,-0.64l0.46,-1.87l1.39,-0.84l4.02,0.91l1.23,-0.54l0.19,-0.96l-1.07,-3.6l-1.19,-0.04l-0.86,-0.89l-0.83,0.05l-0.59,1.43l-0.83,0.21l-1.12,-0.76l0.28,-1.55l-2.87,0.61l-1.53,-0.57l-1.06,0.95l-2.31,-0.96l-0.46,-0.66l0.22,-2.48l3.89,-2.69l-0.63,-1.04l-1.53,0.77l-0.5,-0.07l0.06,-0.59l2.89,-3.31l-1.28,0.18l-0.59,-1.06l-2.58,-1.81l-3.74,0.54l-4.33,4.5l0.16,1.6l-2.29,1.21l-1.27,-1.31l-1.53,-0.12l-3.07,-1.87l-2.28,0.48l-1.27,-0.61l-2.78,0.1l-3.23,-1.56l-3.39,-0.76l-1.44,0.53l-0.62,-1.78l-1.53,-0.48l-1.41,0.57l0.13,-1.27l-1.57,-1.62l-1.22,0.68l-1.31,-1.15l-1.15,-0.15l-0.89,2.11l-1.24,0.98l0.38,0.81l1.02,-0.19l0.35,-0.68l2.34,0.43l0.79,0.61l-0.37,0.81l1.08,0.64l0.15,1.94l-3.04,0.6l-4.15,-1.15l-2.38,0.28l1.12,-1.64l0.78,0.96l0.54,-0.49l1.7,1.21l0.71,-0.2l-0.78,-0.49l-0.48,-3.44l-2.18,-0.62l-2.58,2.43l-1.38,0.24l-0.99,-0.62l-1.27,-2.23l-1.47,0.92l0,1.03l-0.66,0.37l-0.89,-2.26l-1.93,0.05l-0.65,2.18l0.65,1.13l-0.91,0.2l-2,0.5l-1.93,-1.86l-3.29,-0.22l-1.22,-0.95l-0.64,-0.66l0.83,-0.28l-1.77,-2.29l0.13,-0.51l1.81,-0.49l-2.44,-5.13l0.79,-0.58l1.12,0.53l-0.06,0.85l3.27,0.59l0.66,0.91l0.79,-0.39l1.03,-3.74l0.51,-0.92l0.8,-0.13l1.16,-2.83l-0.67,-2.84l-1.41,0.35l-0.58,0.97l-0.47,4.06l1.04,0.79l-2.46,1.65l-0.9,1.97l-1.24,-1.99l-0.83,-0.35l-0.75,0.53l-1.06,-0.85l0.82,-3.2l-1.09,-2.52l-0.3,-3.15l-4.8,-3.26l-3.54,-1.49l-3.32,-3.57l-2.82,-1.35l-0.17,-1.57l0.89,-0.55l0.62,0.96l1.81,0.22l0.18,0.54l2.23,-0.17l1.27,0.81l1.16,-0.32l0.35,-1.24l2.06,-1.15l0.28,-1.48l-0.42,-0.61l-1.09,-0.24l-2.21,-1.97l-2.13,-0.07l-1.18,1.03l0.66,1.05l-0.48,1.14l0.75,0.73l-3.09,1.61l-0.5,-1.3l-1.87,-0.15l-2.01,-2.64l-2.31,0.35l0.22,-1.25l2.71,-4.41l0.87,1.31l4.26,-0.68l3.66,-2.92l3.43,-0.74l1.64,-2.37l0.18,-1.27l-0.23,-1.32l-2.55,-3.69l1.29,-6.25l-0.49,-2.41l-3.21,-5.39l0.06,-3.24l-0.6,-1.87l-4.49,-4.5l-0.65,-1.9l-1.32,-0.72l-0.54,-1.59l-1.08,1.04l0.35,1.48l0.86,-0.28l-1.55,2.72l-2.54,0.37l-1.94,-1.03l1.27,-4.75l0.82,-0.4l1.21,0.6l1.49,-0.81l3.5,0.12l-0.16,0.58l0.75,0.49l1.13,-0.61l0.42,-0.94l-1.81,0.82l-0.11,-0.54l1.49,-2.37l0.68,-2.44l-1,-6.93l-2.85,-6.62l-2.65,-2.77l-9.88,-6.28l-4.19,-1.31l-9.03,-1.01l-1.42,-1.11l-0.14,-1.66l1.16,-0.85l2.52,0.54l0.78,0.8l3.13,0.32l1.6,-0.54l8.09,1.85l1.74,0.05l2.03,-1l0.39,1.02l0.54,-0.79l1.49,-0.29l0.25,-0.8l-0.63,0.27l-1.31,-0.65l0.18,-0.54l0.99,0.23l-0.07,-0.49l0.76,-0.01l-0.15,-0.59l-0.77,0.36l-3.44,-1.35l1.14,2.45l-0.47,0.08l-2.1,-3.09l-5.11,-3.78l-4.1,-6.35l-1.43,-0.76l-2.19,-0.59l-5.52,0.66l-2.67,-0.49l-3.31,-1.53l-2.28,-1.94l3.88,-0.15l6.7,-1.92l5.72,1.22l2.88,1.14l1.19,1.17l4.19,1.3l4.83,-0.83l3.75,-1.94l2.7,-2.23l2.56,-0.29l1.91,0.56l2.48,-0.83l0.35,1.52l-0.54,0.26l2.79,3.77l2.19,-0.15l0.9,-1.76l-0.57,-1.23l1.05,-0.74l0.75,1.26l3.98,3.16l1.83,-0.45l2.2,-1.99l0.77,-3.38l0.71,-0.18l0.99,2.8l0.82,-2.75l2.65,0.16l2.85,-1.03l2.94,-2.64l0.92,-2.38l0.75,-2.71l-0.91,-2.2l0.14,-6.09l-0.56,-2.61l-1.19,-2.04l-1.36,0.26l0.38,-0.74l0.77,-0.48l1.6,1.3l0.33,1.09l2.32,1.29l1.82,-0.58l5.64,-3.56l3.24,-0.3l1.7,0.72l1.21,-0.28l3.29,-4.48l1.27,-4.6l-0.25,-2.94l0.43,-5.12l-1.32,-3.79l-7.65,-4.25l-11.73,-1l-5.64,-3.96l-3.62,-1.48l-1.62,0.02l-1.24,-2.11l-1.61,-6.61l3.57,5.29L453.05,448.08z"
13
+ },
14
+ "Syddanmark": {
15
+ "path": "M352.86,709.9l-0.44,1.84l-1.55,1.36l-0.7,-0.25l-1.12,-2.24l0.29,-0.4l-0.92,-0.92l-0.3,-2.24l3.63,-0.91l0.78,0.64l-0.45,1.41L352.86,709.9zM334.04,706.2l0.31,0.96l-2.34,-0.64l0.89,-1.85L334.04,706.2zM335.88,702.13l1.22,1.85l-1.8,0.18l-0.43,-1.8l0.72,-1.05L335.88,702.13zM358.45,696l1.97,0.53l0.78,-0.45l1.81,0.75l0.52,1.99l-1.58,0.01l-0.6,-1.22l-0.89,0.07l-0.29,-0.88l-1.8,-0.2L358.45,696zM335.12,694.59l-1.03,1.81l-0.66,0.12l-1.22,-2.05l1.86,0.29l0.87,-0.63L335.12,694.59zM294.78,693.34l2.29,0.62l0.35,2.17l4,4.08l4.01,0.81l5.79,5.97l1.67,3.54l3.83,1.27l0.94,2.45l1.76,-0.47l3.22,-4l-0.68,-1.15l-1.59,-0.69l-0.13,-0.8l0.76,0.04l2.55,2.82l-0.18,1.05l-0.69,-0.2l-0.29,0.5l1.23,1.51l0.81,3.23l2.26,2.54l1.65,1.02l1.37,-1.16l0.48,-1.98l2.84,2.71l0.59,-0.41l-1.18,-0.97l0.01,-0.81l-2.31,-3.05l-1.63,-0.85l0.07,-0.67l2.91,-0.3l-1.79,0.55l-0.03,0.69l1.93,0.3l6.86,7.02l0.29,2.28l-0.44,0.87l1.75,-0.47l-0.85,-0.73l-0.09,-1.13l1.54,1.81l-1.79,0.71l-9.22,1.12l-1.96,1.18l-0.87,0.96l-0.33,1.9l-1.9,1.45l-3.11,-2.89l-3.54,-2.1l-4.07,-4.61l-3.19,-4.83l-4.49,-2.91l-5.74,-7.3l-1.01,-5.44l-3.81,-3.94l-0.75,-1.29L294.78,693.34zM324.77,690.31l2.47,3.4l-1.97,1.87l-0.77,-0.02l-4.52,-3.59l-1,0.22l-1.16,1.36l-0.99,-0.22l-0.6,-1.24l1.16,-0.61l0.67,0.35l1.05,-1.01l0.58,0.1l0.06,0.8l2.96,-0.04l0.8,0.94l1.2,0.03l0.56,-0.61L324.77,690.31zM330.75,683.66l2.14,0.88l1.42,1.46l-2.13,-0.46l-1.1,1.28l-1.68,-0.2l-0.32,-1.61l1.46,-2.06L330.75,683.66zM304.22,680.96l1.4,0.97l2.12,-0.13l2.46,1.81l2.78,-1.12l0.38,2.57l-1.38,0.34l-2.77,-1.34l-2,-1.92l-5.32,0.03l-2.96,-3.18l0.46,-1.5l1.82,-0.54l2.15,2.17L304.22,680.96zM353.63,673.18l0.8,0.5l-0.38,1.07l1.23,0.82l-0.62,2.09l0.88,0.68l1.65,0.03l0.35,2.21l-0.42,0.85l-1.04,0.25l-1.42,5.26l-0.64,0.91l-0.63,0.06l-0.1,-0.6l-0.75,1.65l1.5,2.1l2.97,0.68l1.66,-1.66l0.49,-2.27l1.74,-0.8l1.16,0.28l-0.7,2.79l0.25,2.7l-0.32,0.6l-0.31,-0.55l-1.98,-0.07l-2.41,0.56l-1.24,1.87l-1.45,0.55l-1.78,3.25l-5.02,-1.78l-1.05,0.17l1.73,1.8l-2.42,-0.32l-2.34,1.34l0.11,-0.91l1.27,-1.08l-0.28,-0.49l-1.75,0.31l0.12,-2.41l-2.86,-2.39l-0.62,-1.25l-0.16,-3.74l0.67,-0.94l-1.7,-0.84l-0.22,-1.94l2.41,0.02l1.65,-2.33l3.97,-2.03l1.88,-2.44l1.45,-0.25l1.13,-1.91l2.77,-1.78l-0.65,-0.55L353.63,673.18zM363.29,673.04l0.99,0.63l1.29,5.69l-1.06,-0.04l-1.04,-0.9l-2.78,0.99l-1.94,-0.18l0.38,-1.75l2.96,-0.11l1.16,-0.83l-4.29,-0.19l-2.34,1.07l-0.34,-0.3l-0.42,-2.38l0.83,-0.72l2.38,0.44L363.29,673.04zM288.43,674.57l2.04,0.5l0.75,1.3l-1.36,1.47l-3.22,0.99l-1.35,-0.62l-1.55,-2.56l-0.15,-2.24l2.15,-1.54l-0.11,1.92L288.43,674.57zM303.16,673.07l0.12,0.48l-1.67,-0.56l-2.06,-1.7l-0.82,-1.26l0.26,-0.74l3.16,2.19L303.16,673.07zM244.26,674.6l1.69,0.72l1.17,2.28l2.26,2.41l2.77,1.65l3.96,0.31l3.18,1.4l2.24,1.69l2.12,2.94l0.57,0.48l1.62,1.78l4.08,8.31l2.51,4.41l0.08,3.01l0.64,2.37l1.27,2.88l1.06,0.87l0.72,3.99l-0.94,0.87l-3.95,-0.4l-2.02,0.63l-4.53,4.79l-6.41,-0.3l-4.63,-2.55l-2.5,-0.16l-3.2,-2.9l0.18,-0.69l4.26,-4.02l2.4,3.04l1.48,0.24l3.35,2.12l0.32,1.4l2.33,0.17l2.57,2.78l1.08,-1.01l-1.29,-3.15l-1.22,-1.38l-3.51,-2.3l-0.7,-1.04l-4.26,-1.69l-1.23,-1.41l-2.42,-0.51l-0.78,0.33l-0.88,1.82l-1.16,-0.26l-5.47,2.63l-4.96,-2.01l-1.78,-2.08l0.29,-1.08l-0.5,-1.14l-1.69,-0.75l0.03,-1.94l-0.89,-1.79l0.27,-2.26l-0.82,-6.65l-1.13,-1.56l1.2,-1.18l1.89,2.89l2.74,0.83l3.74,6.12l1.31,0.94l-0.84,0.93l1.55,0.06l0.69,-0.33l4.68,-1.8l-0.07,-0.47l-2.7,0.61l-2.51,-1.55l2.9,-1.09l-0.22,-0.48l-2.02,0.35l-1.06,-0.82l1.41,-2.19l1.31,0.3l0.48,-0.47l-0.46,-0.65l-0.94,0.2l-3.17,-2.61l-5.25,-0.8l-0.53,-1.25l0.48,-0.86l2.59,-1.17l-3.18,0.77l-0.6,-0.61l0.11,-0.93l2.14,-0.88l0.27,-1.6l-3.88,-0.29l-9.07,1.07l-3.15,-1.98l-1.25,-1.46l-0.93,-0.07l-0.12,-1.77l3.48,-0.91l1.53,-1.4l1.15,0.37l-0.1,1.21l1.92,0.1l-1.53,-1.48l0.32,-0.3l-1.62,-0.16l1.22,-0.6l-0.08,-0.7l-1.34,0.11l0.04,0.51l-1.44,0.93l0.46,0.72l-1.36,0.04l-2.52,-0.93l-2.46,-0.01l-0.74,-1.32l0.06,-1.61l1.81,-0.86l2.09,-2.67l4.45,-2.81l6.18,-1.52l3.32,0.75l6.72,3.9L244.26,674.6zM207.04,659.22l-0.64,0.59l-1.95,0.03l-0.11,-1.89l-0.85,-0.29l-0.11,-1.12l0.61,-1.46l1.71,0.26l1.36,1.98L207.04,659.22zM398.55,651.26l-2.76,15.39l-5.45,18.06l-0.21,3.1l-5.12,6.55l-3.79,8.49l-0.5,3.67l-1.27,1.95l-0.4,5.54l-5.32,13.54l-0.24,2.48l-2.75,7.58l-2.61,10.44l-2.65,3.87l-3.1,1.32l-1.11,-0.43l-2.57,-3.89l0.38,-0.48l-0.51,-1.65l1.12,-0.76l0.14,-1.45l-2.19,-5.16l-0.22,-4.24l-3.17,-4.92l-4.55,-2.99l-0.96,-2.02l0.52,-0.07l0.19,0.73l2.96,0.19l1.65,1.27l0.43,-0.72l0.65,0.11l-0.04,0.76l0.8,-0.24l1.74,-3.81l1.37,-0.38l-0.9,-0.88l1.12,-7.27l1.52,-0.2l0.49,1.89l2.22,1.05l0.52,-1.52l3.04,-0.24l-1.5,-1.61l-0.18,-1.01l-0.58,-1.14l-0.61,-0.88l-0.05,-2.44l-1.25,2.44l-1.58,-0.91l-0.86,0.69l-0.68,-2.94l1.02,-0.82l0.44,-2.37l1.88,-1.8l0.64,-1.77l1.6,-1l0.59,-0.69l0.59,-2.11l4.46,-5.18l1.5,-0.75l0.36,-0.93l2.52,0.28l2.9,-3.14l0.58,-2.03l1.49,-1.87l0.46,-2.33l2.68,-3.34l0.31,-2.56l1.77,-3.61l2.05,-10.15l3.09,-5.66l0.38,-3.13l2.68,-2.5l1.38,-2.75l1.23,-1.06l1.74,1.4L398.55,651.26zM232.68,620.78l0.67,4.01l0.34,-0.07l0.81,-1.04l-1.08,-0.49l0.12,-0.78l0.72,0.17l1.47,-1.13l-0.4,1.7l-2.37,3.12l-2.78,0.09l-1.92,-2.33l1.03,-0.73l-0.84,-1.91l2.76,-1.04L232.68,620.78zM241.43,607.51l1.39,4.01l-0.34,2.32l-4.01,1.34l-0.51,-0.72l0.06,-2.9l-0.74,-1.39l0.8,-2.39l2.05,1.69l0.18,-0.92l-0.85,-0.14L241.43,607.51zM226.73,600.69l-1.88,0.98l-1.81,-1.43l1.44,-1.61l1.64,-0.25l1.65,1.78L226.73,600.69zM37.3,575.5l0.78,1.25l0.61,-2.03l2.29,-1.83l3.22,0.22l2.03,0.92l-0.54,7.21l0.73,1.4l1.36,1.06l1.69,-2.71l0.99,-0.42l2.02,1.38l-0.14,1.23l1.77,5.15l-2.6,2.78l0.19,1.23l2.55,2.99l0.8,5.28l1.35,-0.19l-1.56,3.26l0.43,0.88l-3.24,-0.49l-3.5,-2.72l-7,-15.41l-3.24,-4.11l-2.83,-1.99l-0.44,-4.17l4.2,-2.96L37.3,575.5zM331.99,573.63l-2.5,0.83l-0.21,-0.95l0.11,-1.65l1.1,-1.25l1.43,-0.4l-1.12,1.79L331.99,573.63zM225.03,571.58l-1.78,-0.37l-0.29,-1.45l-1.52,-2.21l0.53,-2.24l1.77,0.64l1.65,2.77l1.52,0.27l0.17,1.62L225.03,571.58zM351,546.81l-0.48,0.05l-0.27,-1.49l0.4,-1.02L351,546.81zM351.23,541.5l0.3,2.26l1.02,0.12l-0.75,0.36l0.2,1.21l-1.27,-2.19L351.23,541.5zM348.63,538.32l0.8,0.42l2.03,-0.28l0.32,-1.98l-1.35,0.25l-0.34,1.05l-0.15,-0.65l-0.71,0.24l0.44,-0.62l2.14,-0.49l0.89,1.19l6.61,11.21l1.45,3.65l3.17,3.68l-0.33,2.73l1.48,4.14l1.07,1.71l2.49,2.08l1.38,3.25l-0.23,1.18l-1.43,0.68l-1.7,0.17l-1.67,-0.58l-5.45,2.85l-1.1,1.93l0.03,1.3l-1.77,0.94l-0.94,-1.04l-1.69,-0.32l-0.18,1.02l0.47,0.27l-1.24,0.26l-1.69,-0.77l-1.02,-1.75l-3.58,-1.4l-0.09,0.88l-3.69,1.09l0.57,1.18l-0.45,1.01l-1.59,-0.14l0.13,1.05l3.8,4.56l0.64,0.09l0.93,-1.42l-1.12,-5.46l1.78,-1.65l2.49,1.22l0.02,1.06l2.6,0.89l1.98,1.49l1.27,-1.13l1.08,0.12l0.34,-1.12l1.17,-0.77l0.12,0.79l2.78,2.41l1.89,3.07l1.62,1.73l1.66,0.48l2.33,4.1l2.89,2.53l1.65,3.88l2.25,3.13l3.85,11.82l2.91,2.52l1.73,-0.02l-0.06,0.47l-1.24,0.24l1.16,1.33l-0.22,0.69l-3.43,0.95l-0.41,-0.27l0.42,-0.57l0.56,0.29l0.24,-0.41l-0.91,-0.81l0.27,-0.87l-1.08,-0.71l-0.51,0.85l-0.19,-0.8l-0.85,-0.14l-0.32,-0.87l-1.1,-0.65l-0.48,0.37l-1.05,-0.53l0.38,1.92l-0.62,-0.55l-0.88,0.89l-2.73,-0.4l-1.49,0.78l4.57,-0.05l1.09,1.01l0.49,1.07l-0.59,3.38l3.82,10.14l-0.84,2.74l0.44,3.26l-0.77,6.21l-2.13,4.11l-0.1,2.04l-0.93,2.09l0.2,1.9l-0.89,1.61l-0.03,2.75l-1.07,2.58l0.62,2.1l-1.43,0.18l-1.18,1.05l-0.77,4.38l-1.04,2.26l-2.78,1.04l-2.52,1.84l0.18,-1.02l-2.36,-0.62l-0.73,1.34l-2.26,-0.13l-0.55,0.56l-0.88,-0.44l-2.12,0.73l-0.82,-1.14l-1.76,0.07l-1.2,-0.69l-0.17,2.06l-1.07,0.3l-1.1,1.25l-9.42,3.66l-1.85,1.36l-3.8,-1.12l-1.18,-1.94l-1.33,-0.74l-1.72,0.53l-4.99,-0.37l-0.97,0.52l-4.03,-2.29l0.35,-1.22l-2.02,-2.69l-0.85,0.29l0.3,1.16l-2.15,2.06l-1.18,-0.19l-0.08,-0.55l-1.86,0.35l-1.64,-0.43l-0.18,-2.07l-2.92,-0.94l-0.29,-1.16l-1.53,-1.11l-0.11,-1.01l-1.35,-1.05l-1.97,-0.32l-1.96,-1.67l-0.95,-0.04l-0.87,-0.79l0.38,-0.44l-0.93,-0.73l-2.74,1.69l2.01,1.36l0.85,2.64l-0.69,1.13l-1.35,0.49l-0.21,1.18l-1.5,-0.14l0.02,0.76l1.99,-0.2l-1.44,1.14l-1.08,-0.79l-0.25,-1.72l-1.58,-2.19l-3.43,-0.2l-4.13,-2.52l-7.73,3.46l-0.69,-2.53l1.58,-2.99l0.26,-1.85l0.77,-0.54l0.74,0.67l1.37,-0.14l1.76,-2.34l1.66,-0.64l0.94,0.24l0.51,-0.91l0.93,0.29l-0.01,-0.78l1.63,0.42l2.39,-1.56l-1.64,-0.96l-2.65,-5.13l-0.69,0.38l-0.57,-0.52l-0.21,-2.96l-1.85,-2.39l-0.98,-3.21l-0.8,-0.12l-0.93,1.7l-0.83,-0.38l-1.21,2.02l-5.19,-0.27l-3.99,-1.04l-0.17,-3.37l-3.29,-1.55l-0.64,0.71l1.12,1.65l0.72,0.47l-0.97,1.58l-0.9,-0.59l-0.44,2.56l1.3,-0.98l-0.48,1.53l0.79,1.82l2.02,1.37l4.42,6.43l-1.34,2.3l-1.34,0.86l-2.78,-0.67l-3.6,-2.29l-0.19,-0.6l1.45,-1.43l0.47,-1.52l-1.28,-4.8l0.86,-8.36l-0.39,-1.26l-1.04,-1.64l-1.64,-1.17l-5.23,-0.13l-0.92,-2.34l-1.84,-1.88l-3.62,-2.22l-0.43,0.59l-1.69,-2.08l0.91,-0.45l0.65,0.81l1.54,0.23l-0.83,0.68l1.21,0.55l0.18,-0.21l0.82,-1.59l-0.43,-1.06l-1.49,-0.79l-0.55,-1.64l0.56,0.09l0.64,-0.8l0.48,-8.87l-0.79,-3.54l-1.37,-2.88l0.14,-1.78l1.21,0.68l1.03,0.38l0.56,-1.11l-2.44,-0.9l-0.97,-1.87l0.18,-1.41l-1.82,1.46l-3.05,0.15l-7.38,-3.22l0.41,-2.78l4.06,-0.38l1.73,-0.67l1.19,-1.26l0.08,-1.69l-2.34,-2.73l-1.21,-1.07l-3.67,-0.96l1.38,-1.13l2.47,0.91l1.14,-0.36l0.46,-1.15l-0.28,-1.3l-4.74,-2.15l-2.56,0.21l-4.04,-0.87l-0.47,-0.65l0.87,-1.99l-3.01,-3.34l-1.12,-2.25l0.77,-1.2l0.81,1.78l3.74,3.13l1.25,0.39l0.42,1.4l2.35,1.57l3.97,1.74l1.69,-0.61l-0.77,-1.4l-1.8,-0.8l-0.38,-1.56l-1.09,0.22l-1.91,-1.26l0.02,-0.65l-0.75,-0.02l0.48,-1.11l0.92,0.87l1.32,0.1l-0.91,-1.59l-0.89,0.19l-0.88,-1.3l-2.61,0.6l-2.3,-1.5l-1.71,-4.75l-3.84,-0.41l-0.58,-1.49l-2.22,-1.53l-0.46,-2.15l0.91,-0.74l1.75,0.16l3.54,2.41l3.15,0.42l1.39,-1.22l1.91,-4.67l-1.8,-2.98l3.75,0l3.17,-2.27l3.87,-0.65l1.93,1.02l0.51,1.27l-0.38,4.96l2.26,2.81l7.04,1.07l3.2,-0.63l7.93,-6.46l3.66,-1.91l1.74,-2.64l5.19,-1.15l1.01,-1.23l0.63,-0.45l2.8,-1.4l2.5,-0.63l1.96,-0.05l2.21,-1.65l3.41,-1.3l2.11,0.14l0.3,-0.44l-0.98,-1.51l1.13,0.22l0.69,1.04l1.15,-2.15l3.17,-1.07l7.4,-1.16l0.98,0.62l-1.53,-0.29l-0.41,0.77l0.86,2.5l-0.85,0.72l0.36,0.44l0.11,0.58l-0.4,0.98l1.7,0.47l0.7,-0.72l2.32,0.01l0.3,-0.93l-1.71,-1.57l0.07,-3.52l-1.7,-2.8l2.72,-0.48l14.36,8.18l4.87,4.94l12.19,9.13l3.15,3.68l-1.07,0.61l-2.19,-2.02l-1.9,-3.51l-3.99,-2.82l-0.63,0.58l0.84,1.63l-1.18,0.27l1.22,1.44l-1.98,-0.63l-0.76,1.04l-0.8,-0.26l-0.11,1.19l1.82,1.45l0.05,2.15l0.94,1.48l1.23,0.36l0.57,1.2l-1.54,1.02l-1.16,-0.57l-0.77,1.32l1.16,0.6l0.28,1.19l-4.37,-1.06l-0.51,0.51l0.06,2.02l-1.5,-0.31l-0.71,2.46l0.66,0.75l-0.88,0.43l-0.43,2.34l0.25,0.77l-1.51,3.26l0.27,0.51l0.83,-0.65l1.5,0.59l1.85,-1.7l2.22,1.36l1.23,-1.5l1.24,-0.51l1,-1.57l-0.85,-1.78l-0.72,0.36l0.24,0.69l-1.17,-0.33l0.21,-1.13l0.62,0.69l0.68,-0.46l-1.15,-2.94l5.55,1.87l1.07,-0.57l1.24,-2.04l1.79,1.21l0.84,-0.11l0.02,-0.87l2.13,-0.44l0.83,-1.34l2.45,-0.43l1.89,1.43l1.74,-2.1l0.34,-0.87l-0.96,-1.33l0.04,-2l-3.97,-2.21l-2.84,-0.74l-0.53,-0.8l0.11,-1.08l1.43,-1.43l1.45,-0.49l1.06,0.38l0.94,2.19l1.63,1.08l1,0.3l0.93,-0.9l0.13,-0.93l-1.56,-1.7l0.33,-3.72l-2.06,-3.23l-0.13,-2.77l-1.18,-3.42l1.04,-2.49l0.31,0.65l-0.42,0.19l-0.74,1.54l1.78,3.76l2.25,2.8l0.77,-1.48l-0.23,-0.62l0.66,-0.29l-1.78,-1.46l0.06,-0.48l1.27,0.12l-0.53,-3.6l-1.06,-1.36l-0.63,-3.17l-0.89,-0.09l-0.39,0.9l-2.6,-2l0.36,-1.82l1.07,1.78L348.63,538.32zM289.77,529.61l2.82,0.87l0.26,1.46l-1.37,1.68l0.02,3.63l0.8,1.53l-0.7,1.02l-0.62,-1.07l0.29,-4.66l-2.02,-2.39l-0.51,-2.11L289.77,529.61zM169.96,458.32l1.28,0.15l0.53,1.17l1.4,-0.37l0.86,0.88l0.5,-0.68l0,0l0.51,-0.54l0,0l1.37,-0.02l-0.7,-0.38l0,0l-0.01,-0.07l0,0l0.67,-0.33l2.04,1.79l2.97,1.21l0,0l0.45,1.35l-0.41,0.24l10.2,14.1l-2.77,1.99l2.14,0.93l-1.14,3.77l4.99,0.49l-0.06,1.32l2.88,0.07l0.47,4.12l1.81,6.03l2.86,0.51l-0.22,2.54l5.56,-0.36l0.86,-1.62l1.52,2.06l-1.64,2.18l2.39,2.96l3.1,-1.54l3.23,1.09l0.57,-1.4l4.09,2.48l0.42,3.33l-1.73,5.82l0,0l-9.52,1.8l-0.63,-0.62l-2.63,0.74l-1.79,-0.42l-0.29,-0.78l-0.91,-0.33l-0.37,1.12l0.55,0.5l-0.41,1.21l4.37,2.22l7.94,-1.02l1.4,1.05l1.66,-1.2l2.57,2.93l0.34,1.72l2.22,2.62l1.09,-0.34l3.53,1.96l1.21,6.24l0.65,1.61l1.13,0.85l5.44,-0.71l1.11,-0.62l7.35,0.81l-1.7,2.11l-7.27,5.32l-0.69,2.97l-2.8,3.37l-0.27,3.11l-1.7,-0.78l-1.61,0.35l-0.97,-0.35l-0.49,0.39l-0.68,1.44l0.18,2.15l1.71,4.6l-0.23,1.32l-2.31,0.12l-4.05,-1.76l-2.94,-0.56l-4.57,4.54l-1.9,-1.12l-1.18,0.78l-1.35,0.01l-0.42,-2.28l-0.55,0.24l-4.48,-2.12l-0.66,0.84l0.98,1.61l0.68,0.22l0.87,-0.7l0.94,0.16l0,0.46l-1.63,1.4l-2.13,-1.41l-0.62,0.51l3.23,1.24l0.43,3.1l-1.43,-0.51l-4.41,0.67l-2.7,-0.31l-1.02,-0.8l-4.48,2.69l1.91,0.12l2.5,1.44l1.88,-0.96l5.76,-1.25l1.01,1.36l1.37,0.32l2.32,-2.71l0.97,0.43l2.12,-0.89l9.37,9.19l-0.85,1.71l-4.67,4.25l-2.82,1.47l-2.84,0.12l-1.95,0.9l-0.79,1.84l2.82,5.57l1.17,1.03l0.05,1.22l-0.93,3.51l-1.88,2.74l-0.34,-1.28l-1.17,-1.15l-2.43,-0.83l-1.29,0.55l0.72,0.21l0.84,2.17l1.06,0.42l1.09,-0.33l0.31,0.49l0.67,-0.39l0.41,1.09l3.24,0.13l3.15,3.54l0.44,3.54l-2.49,3.6l1.45,-0.08l4.06,6.65l-0.75,-0.57l-2.12,0.35l-1.5,-1.05l-1.66,0.25l-2.39,3.75l-3.76,0.98l-0.15,2.78l-1.52,0.15l-0.98,1.62l-0.13,0.71l0.62,0.21l0.39,-1.17l2.54,-1.26l-0.48,-1.65l0.48,-1.01l3.04,-0.66l2.31,-3.24l1.03,-0.2l1.45,1.15l1.63,-0.65l3.61,3.08l3.94,2.03l0.9,2.75l-0.94,1.88l0.51,1.33l-2.5,2.59l-0.9,1.78l0.69,4.7l-0.36,1.29l-8.87,4.98l-1.16,-1.63l0.7,-1.99l0.72,1.08l-0.43,0.15l0.13,2.04l1.02,0.02l0.25,-0.53l-1.25,-2.81l-5.48,-0.95l-3.89,3.8l-1.93,0.75l-3.04,2.63l-3.74,1.66l-0.28,0.99l0.77,0.79l0.41,3.37l2.06,1.49l-0.11,0.54l-2.83,0.07l-3.39,-1.11l-1.42,1.64l0.2,0.69l0.53,-0.18l-0.11,1.44l-0.82,-0.04l0.08,-0.83l-0.79,1.43l1.23,0.09l1.64,-1.13l0.55,0.92l1.25,-1.14l0.85,0.13l1.35,1.93l1.79,0.35l1.88,2.28l0.8,1.98l1.62,0.55l-0.06,3.43l-6.93,7.26l-0.65,-0.58l-4.06,-0.15l-0.83,1.03l-2.54,0.8l-1.85,-0.5l-0.31,-0.98l0.16,1.02l-0.62,0.19l0.63,0.08l-0.61,0.27l0.55,-0.03l0.16,0.72l-0.8,-0.15l0.35,0.72l-0.49,0.37l0.49,2.09l1.27,0.78l0.14,-0.72l0.81,-0.16l1.74,2.18l3.71,-0.37l1.62,0.73l1.95,-0.44l1.7,-1.89l4.03,-1.71l3.53,-0.68l0.09,-1.91l1.17,-0.4l3.34,2.05l1.56,3.92l1.71,2.15l3.2,1.03l4.11,2.69l1.45,1.66l2.78,-0.56l3.36,0.67l0.22,3.21l1.73,1.93l-0.32,1.7l0.72,7.24l1.25,0.8l0.49,2.33l2.07,1.18l-0.62,1.82l-2.95,1.52l-6.43,-1.53l-1.17,1.83l0.22,1.27l1.16,0.62l1.87,-0.25l2.07,1.86l0.37,2.82l2.19,1.88l0.39,2.71l-1.2,2.43l-3.53,1.26l-0.77,-1.42l-2.35,-1.37l0.25,-1.36l-3.6,-1.15l-3.1,0.5l-2.66,-1.38l-0.34,-1.42l1.97,-1.39l0.86,-2.02l-1.22,-0.18l-0.81,-0.82l-0.74,-2.02l-2.02,-0.47l-1.78,-1.98l-1.47,-0.5l1.04,-1.11l4.34,-1.22l1.55,0.12l1.01,1.59l1.84,-0.24l0.74,-0.89l-0.57,-1.43l-2.28,-1.8l-2.04,-1.36l-2.44,-0.56l-0.91,1.24l-0.49,3.35l-0.53,0.29l-0.66,-1.18l-1.12,0.29l-0.78,0.97l1.16,-0.03l0.6,1.12l-3.82,2.12l0.68,0.68l-0.2,1.91l-1.59,2.54l-1.29,0.77l-2.51,-1.3l-0.37,1.19l-1.68,-0.06l-0.57,1.18l-1.44,0.14L197,720.18l-0.99,0.53l-0.91,2.3l-2.01,0.73l-1.17,1.44l-2.01,0.23l-2.18,1.46l-1.95,-0.01l0.01,-1.4l-1.29,-1.07l-0.85,0.49l-2.72,0.3l-0.56,1.48l-0.65,2.84l-2.45,1.42l-1.39,2.06l-0.38,1.54l-1.97,-1.28l-4.96,-0.79l0.19,1.73l-1.18,-0.62l-0.3,-1.28l-1.9,-0.6l-2.82,0.6l-1.97,-5.17l-0.06,-1l1.31,-2.03l-0.64,-1.47l-4.87,-2.17l-1.45,-0.05l-5.74,-2.87l-5.91,-0.67l-2.72,0.91l-5.94,-0.43l-4.62,-3.48l-4.2,-1.35l-4.95,-2.48l-4.84,0.12l-2.92,-0.69l-4.52,1.96l-1.51,-0.14l-2.12,-2.27l-1.26,-0.01l-0.78,0.69l-0.99,-0.48l-1.71,0.3l0.01,0.49l-3.12,1.75l0.06,0.64l-3.05,-1.01l-3.75,0.99l-6.48,-4.23l-1.73,-0.22l-1.21,0.62l-3.36,-0.68l3.09,-12.41l0.16,-5.58l-3.78,-12.9l2.01,-11.94l0.51,0.07l1.29,-2.4l2,-6.55l1.2,-1.03l-0.61,-1.22l1.14,-2.05l-1.85,-0.86l-2.88,-0.18l-6.01,0.88l-7.23,-1.17l-0.8,1.85l0.65,4.04l0.58,0.7l-1.16,5.09l2.57,3.91l-0.77,0.09l-0.9,1.58l-1.41,0.8l-3.07,-0.34l1.08,0.8l-0.64,0.59l1.19,1.35l-1.45,0.69l-0.96,0.31l-1.9,0.58l-1.02,-0.86l-4.32,-7.04l-0.43,0.2l-0.28,-2.04l0.22,-0.44l1.45,0.13l0.17,-0.48l-1.56,-0.02l1.7,-9.99l0.43,-8.33l1.05,-1.8l1.41,0.92l0.38,-0.4l-0.04,-0.6l-1.65,-0.62l0.86,-3.22l1.48,-1.45l0.3,0.36l2.62,-0.84l-0.63,1.94l4.29,-0.08l3,0.71l0.46,0.57l1.99,1.54l0.23,0.79l-0.97,1.8l-1.9,1.79l-0.44,1.88l0.66,0.56l-0.85,2.04l8.68,1.36l4.7,-0.7l-0.08,-0.63l1.03,-0.97l1.04,-0.1l0.49,0.88l0.75,0.02l-0.3,-0.61l0.71,-0.68l-0.83,-0.75l-2.63,-14.41l-0.49,1.34l-0.88,-0.27l0.02,-1.58l0.87,-0.04l-0.37,-1.77l0.8,-0.99l-1.07,-0.54l-0.15,-1.26l0.72,-0.94l-0.52,-0.67l0.98,-0.99l-1.27,-0.33l-0.23,-1.01l1.25,-0.44l-0.26,-0.85l-1.07,0.22l-0.27,-0.89l-0.83,0.02l-0.34,-0.59l0.85,-0.65l0.23,-1.55l0.5,0.72l0.71,-0.19l-0.82,-4.13l0.73,-2.74l-2.18,-0.73l-4.11,2.38l-1,1.28l-2.7,1.04l-2.32,5.15l-1.71,0.68l-1.82,-0.16l-1.72,-1.84l0.05,-2.1l2.12,-2.8l1.94,-0.66l4.09,0.6l7.12,-4.29l2.4,0.75l1.35,-3.67l0.14,-2.21l-0.81,-1.06l0.15,-1.13l-1.23,-1.76l-4.7,-18.74l-2.53,-1.36l-2.57,-2.37l-3.02,-1.3l-1.65,-1.92l-1.25,-0.39l-3.23,1.13l-6.57,-1.6l-0.82,1.69l-3.46,-1.52l1.14,-0.09l-0.18,-0.64l-1.59,-0.44l-0.2,0.92l-0.64,-0.54l0.76,-1.39l-0.96,-1.32l-1.22,-1.85l-0.55,-0.94l-13.81,-15.42l-3.28,-4.97l0.47,-1.84l2.57,-1.27l0.05,-0.92l-0.97,-1.4l-2.58,-1.43l-2.96,-0.25l-2.78,3.63l-0.43,1.82l-1.18,1.64l0.03,2.87l0.74,2.18l1.38,1.97l2.45,1.02l-1.34,2.4l1.22,1.96l2.16,1.34l2.95,3.44l0.07,3.69l-1.76,1.05l-14.13,-12.25L0,551.26l0.07,-1.5l2.67,-6.57l9.01,-29.56l2.24,-14.9l-0.75,-10.52l0,0l2.6,-0.48l0,0l-0.38,-1.23l-1.04,-0.69l0.06,-1.32l0,0l1.31,-0.3l4.88,1.31l-0.12,2.11l2.88,1.57l3.67,3.54l1.07,-0.06l0.72,-1l5.22,0.12l4.01,-5.24l4.04,5.1l6.1,0.61l-1.24,0.88l3.54,1.82l1.2,2.86l6.27,-0.08l2.66,-2.65l-0.16,-5.58l3.33,-0.68l1.31,-2.28l-1.94,-4.63l5.21,-1.6l3.2,3.15l11.51,-3.3l4.4,2.59l1.99,5.88l5.05,1.91l9.39,-3.27l-4.47,-4.52l3.97,-2.38l2.28,-8.44l2.21,0.38l1.32,-3.73l1.94,0.4l0.33,-0.48l11.63,2.67l-1.07,9.69l7.12,3.66l2.86,-2.44l2.24,1.02l1.73,-3.51l1.67,1.53l1.94,-5.53l1.72,-2.53l2.8,1.95l4.48,-3.51l6.33,-8.18l-0.08,-3.44l3.35,-5.91l5.23,0.3l3.26,3.75L169.96,458.32zM219.01,634.66l-0.55,0.09l0.46,1.02l3.55,-0.62l-0.51,-1.04l-0.07,-0.49l-1.07,-1.88l-1.76,1.06L219.01,634.66z"
16
+ }
17
+ }
@@ -0,0 +1,62 @@
1
+ <template>
2
+ <path
3
+ :class="
4
+ hoveredRegion && hoveredRegion !== currentRegion && data.value
5
+ ? 'hovered'
6
+ : 'hover'
7
+ "
8
+ :id="`interactiveMap-${title}-${currentRegion}`"
9
+ :d="regionsPathDk[currentRegion]?.path"
10
+ :fill="data.color"
11
+ :stroke="data.color"
12
+ stroke-width="1"
13
+ @mouseover="onMouseOver"
14
+ @mouseleave="onMouseLeave"
15
+ />
16
+ </template>
17
+
18
+ <script>
19
+ import regionsPathDk from "./maps/regionsPathDk.json";
20
+ import { defineComponent } from "vue";
21
+ export default defineComponent({
22
+ name: "oneRegionDk",
23
+ props: {
24
+ data: {
25
+ type: Object,
26
+ default: () => {
27
+ }
28
+ },
29
+ hoveredRegion: {
30
+ type: [String, null],
31
+ required: false,
32
+ default: null
33
+ },
34
+ title: {
35
+ type: [String, null],
36
+ required: true
37
+ },
38
+ currentRegion: {
39
+ type: String,
40
+ required: true
41
+ }
42
+ },
43
+ emits: ["hover", "mouseleave"],
44
+ setup(props, { emit }) {
45
+ function onMouseOver() {
46
+ emit("hover");
47
+ }
48
+ function onMouseLeave() {
49
+ emit("mouseleave");
50
+ }
51
+ return {
52
+ regionsPathDk,
53
+ onMouseOver,
54
+ onMouseLeave
55
+ };
56
+ }
57
+ });
58
+ </script>
59
+
60
+ <style scoped>
61
+ .hovered{opacity:.5;transition:all .2s ease-in-out}.hover{cursor:pointer}
62
+ </style>
@@ -0,0 +1,54 @@
1
+ import { RegionsDk } from "./maps/interfaces";
2
+ import type { PropType } from "vue";
3
+ type CurrentData = {
4
+ color?: string;
5
+ value?: number;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ data: {
9
+ type: PropType<CurrentData>;
10
+ default: () => void;
11
+ };
12
+ hoveredRegion: {
13
+ type: PropType<RegionsDk | null>;
14
+ required: false;
15
+ default: null;
16
+ };
17
+ title: {
18
+ type: PropType<string | null>;
19
+ required: true;
20
+ };
21
+ currentRegion: {
22
+ type: PropType<RegionsDk>;
23
+ required: true;
24
+ };
25
+ }>, {
26
+ regionsPathDk: any;
27
+ onMouseOver: () => void;
28
+ onMouseLeave: () => void;
29
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("mouseleave" | "hover")[], "mouseleave" | "hover", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
30
+ data: {
31
+ type: PropType<CurrentData>;
32
+ default: () => void;
33
+ };
34
+ hoveredRegion: {
35
+ type: PropType<RegionsDk | null>;
36
+ required: false;
37
+ default: null;
38
+ };
39
+ title: {
40
+ type: PropType<string | null>;
41
+ required: true;
42
+ };
43
+ currentRegion: {
44
+ type: PropType<RegionsDk>;
45
+ required: true;
46
+ };
47
+ }>> & Readonly<{
48
+ onMouseleave?: ((...args: any[]) => any) | undefined;
49
+ onHover?: ((...args: any[]) => any) | undefined;
50
+ }>, {
51
+ data: CurrentData;
52
+ hoveredRegion: RegionsDk | null;
53
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tekkare/auriga",
3
- "version": "0.2.138",
3
+ "version": "0.2.140",
4
4
  "description": "Aurgia is a UI kit developped by Tekkare",
5
5
  "license": "MIT",
6
6
  "type": "module",