@everymatrix/casino-footer 0.0.188 → 0.0.192
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/casino-footer.js +1 -3952
- package/dist/casino-footer.js.map +1 -1
- package/package.json +3 -3
- package/rollup.config.js +13 -5
package/dist/casino-footer.js
CHANGED
|
@@ -1,3953 +1,2 @@
|
|
|
1
|
-
(function (global, factory) {
|
|
2
|
-
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
3
|
-
typeof define === 'function' && define.amd ? define(factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.app = factory());
|
|
5
|
-
}(this, (function () { 'use strict';
|
|
6
|
-
|
|
7
|
-
function noop() { }
|
|
8
|
-
function add_location(element, file, line, column, char) {
|
|
9
|
-
element.__svelte_meta = {
|
|
10
|
-
loc: { file, line, column, char }
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
function run(fn) {
|
|
14
|
-
return fn();
|
|
15
|
-
}
|
|
16
|
-
function blank_object() {
|
|
17
|
-
return Object.create(null);
|
|
18
|
-
}
|
|
19
|
-
function run_all(fns) {
|
|
20
|
-
fns.forEach(run);
|
|
21
|
-
}
|
|
22
|
-
function is_function(thing) {
|
|
23
|
-
return typeof thing === 'function';
|
|
24
|
-
}
|
|
25
|
-
function safe_not_equal(a, b) {
|
|
26
|
-
return a != a ? b == b : a !== b || ((a && typeof a === 'object') || typeof a === 'function');
|
|
27
|
-
}
|
|
28
|
-
function is_empty(obj) {
|
|
29
|
-
return Object.keys(obj).length === 0;
|
|
30
|
-
}
|
|
31
|
-
function action_destroyer(action_result) {
|
|
32
|
-
return action_result && is_function(action_result.destroy) ? action_result.destroy : noop;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
function append(target, node) {
|
|
36
|
-
target.appendChild(node);
|
|
37
|
-
}
|
|
38
|
-
function insert(target, node, anchor) {
|
|
39
|
-
target.insertBefore(node, anchor || null);
|
|
40
|
-
}
|
|
41
|
-
function detach(node) {
|
|
42
|
-
node.parentNode.removeChild(node);
|
|
43
|
-
}
|
|
44
|
-
function destroy_each(iterations, detaching) {
|
|
45
|
-
for (let i = 0; i < iterations.length; i += 1) {
|
|
46
|
-
if (iterations[i])
|
|
47
|
-
iterations[i].d(detaching);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
function element(name) {
|
|
51
|
-
return document.createElement(name);
|
|
52
|
-
}
|
|
53
|
-
function text(data) {
|
|
54
|
-
return document.createTextNode(data);
|
|
55
|
-
}
|
|
56
|
-
function space() {
|
|
57
|
-
return text(' ');
|
|
58
|
-
}
|
|
59
|
-
function empty() {
|
|
60
|
-
return text('');
|
|
61
|
-
}
|
|
62
|
-
function attr(node, attribute, value) {
|
|
63
|
-
if (value == null)
|
|
64
|
-
node.removeAttribute(attribute);
|
|
65
|
-
else if (node.getAttribute(attribute) !== value)
|
|
66
|
-
node.setAttribute(attribute, value);
|
|
67
|
-
}
|
|
68
|
-
function set_custom_element_data(node, prop, value) {
|
|
69
|
-
if (prop in node) {
|
|
70
|
-
node[prop] = value;
|
|
71
|
-
}
|
|
72
|
-
else {
|
|
73
|
-
attr(node, prop, value);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
function children(element) {
|
|
77
|
-
return Array.from(element.childNodes);
|
|
78
|
-
}
|
|
79
|
-
function custom_event(type, detail) {
|
|
80
|
-
const e = document.createEvent('CustomEvent');
|
|
81
|
-
e.initCustomEvent(type, false, false, detail);
|
|
82
|
-
return e;
|
|
83
|
-
}
|
|
84
|
-
function attribute_to_object(attributes) {
|
|
85
|
-
const result = {};
|
|
86
|
-
for (const attribute of attributes) {
|
|
87
|
-
result[attribute.name] = attribute.value;
|
|
88
|
-
}
|
|
89
|
-
return result;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
let current_component;
|
|
93
|
-
function set_current_component(component) {
|
|
94
|
-
current_component = component;
|
|
95
|
-
}
|
|
96
|
-
function get_current_component() {
|
|
97
|
-
if (!current_component)
|
|
98
|
-
throw new Error('Function called outside component initialization');
|
|
99
|
-
return current_component;
|
|
100
|
-
}
|
|
101
|
-
function onMount(fn) {
|
|
102
|
-
get_current_component().$$.on_mount.push(fn);
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
const dirty_components = [];
|
|
106
|
-
const binding_callbacks = [];
|
|
107
|
-
const render_callbacks = [];
|
|
108
|
-
const flush_callbacks = [];
|
|
109
|
-
const resolved_promise = Promise.resolve();
|
|
110
|
-
let update_scheduled = false;
|
|
111
|
-
function schedule_update() {
|
|
112
|
-
if (!update_scheduled) {
|
|
113
|
-
update_scheduled = true;
|
|
114
|
-
resolved_promise.then(flush);
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
function add_render_callback(fn) {
|
|
118
|
-
render_callbacks.push(fn);
|
|
119
|
-
}
|
|
120
|
-
let flushing = false;
|
|
121
|
-
const seen_callbacks = new Set();
|
|
122
|
-
function flush() {
|
|
123
|
-
if (flushing)
|
|
124
|
-
return;
|
|
125
|
-
flushing = true;
|
|
126
|
-
do {
|
|
127
|
-
// first, call beforeUpdate functions
|
|
128
|
-
// and update components
|
|
129
|
-
for (let i = 0; i < dirty_components.length; i += 1) {
|
|
130
|
-
const component = dirty_components[i];
|
|
131
|
-
set_current_component(component);
|
|
132
|
-
update(component.$$);
|
|
133
|
-
}
|
|
134
|
-
set_current_component(null);
|
|
135
|
-
dirty_components.length = 0;
|
|
136
|
-
while (binding_callbacks.length)
|
|
137
|
-
binding_callbacks.pop()();
|
|
138
|
-
// then, once components are updated, call
|
|
139
|
-
// afterUpdate functions. This may cause
|
|
140
|
-
// subsequent updates...
|
|
141
|
-
for (let i = 0; i < render_callbacks.length; i += 1) {
|
|
142
|
-
const callback = render_callbacks[i];
|
|
143
|
-
if (!seen_callbacks.has(callback)) {
|
|
144
|
-
// ...so guard against infinite loops
|
|
145
|
-
seen_callbacks.add(callback);
|
|
146
|
-
callback();
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
render_callbacks.length = 0;
|
|
150
|
-
} while (dirty_components.length);
|
|
151
|
-
while (flush_callbacks.length) {
|
|
152
|
-
flush_callbacks.pop()();
|
|
153
|
-
}
|
|
154
|
-
update_scheduled = false;
|
|
155
|
-
flushing = false;
|
|
156
|
-
seen_callbacks.clear();
|
|
157
|
-
}
|
|
158
|
-
function update($$) {
|
|
159
|
-
if ($$.fragment !== null) {
|
|
160
|
-
$$.update();
|
|
161
|
-
run_all($$.before_update);
|
|
162
|
-
const dirty = $$.dirty;
|
|
163
|
-
$$.dirty = [-1];
|
|
164
|
-
$$.fragment && $$.fragment.p($$.ctx, dirty);
|
|
165
|
-
$$.after_update.forEach(add_render_callback);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
const outroing = new Set();
|
|
169
|
-
function transition_in(block, local) {
|
|
170
|
-
if (block && block.i) {
|
|
171
|
-
outroing.delete(block);
|
|
172
|
-
block.i(local);
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
const globals = (typeof window !== 'undefined'
|
|
177
|
-
? window
|
|
178
|
-
: typeof globalThis !== 'undefined'
|
|
179
|
-
? globalThis
|
|
180
|
-
: global);
|
|
181
|
-
function mount_component(component, target, anchor, customElement) {
|
|
182
|
-
const { fragment, on_mount, on_destroy, after_update } = component.$$;
|
|
183
|
-
fragment && fragment.m(target, anchor);
|
|
184
|
-
if (!customElement) {
|
|
185
|
-
// onMount happens before the initial afterUpdate
|
|
186
|
-
add_render_callback(() => {
|
|
187
|
-
const new_on_destroy = on_mount.map(run).filter(is_function);
|
|
188
|
-
if (on_destroy) {
|
|
189
|
-
on_destroy.push(...new_on_destroy);
|
|
190
|
-
}
|
|
191
|
-
else {
|
|
192
|
-
// Edge case - component was destroyed immediately,
|
|
193
|
-
// most likely as a result of a binding initialising
|
|
194
|
-
run_all(new_on_destroy);
|
|
195
|
-
}
|
|
196
|
-
component.$$.on_mount = [];
|
|
197
|
-
});
|
|
198
|
-
}
|
|
199
|
-
after_update.forEach(add_render_callback);
|
|
200
|
-
}
|
|
201
|
-
function destroy_component(component, detaching) {
|
|
202
|
-
const $$ = component.$$;
|
|
203
|
-
if ($$.fragment !== null) {
|
|
204
|
-
run_all($$.on_destroy);
|
|
205
|
-
$$.fragment && $$.fragment.d(detaching);
|
|
206
|
-
// TODO null out other refs, including component.$$ (but need to
|
|
207
|
-
// preserve final state?)
|
|
208
|
-
$$.on_destroy = $$.fragment = null;
|
|
209
|
-
$$.ctx = [];
|
|
210
|
-
}
|
|
211
|
-
}
|
|
212
|
-
function make_dirty(component, i) {
|
|
213
|
-
if (component.$$.dirty[0] === -1) {
|
|
214
|
-
dirty_components.push(component);
|
|
215
|
-
schedule_update();
|
|
216
|
-
component.$$.dirty.fill(0);
|
|
217
|
-
}
|
|
218
|
-
component.$$.dirty[(i / 31) | 0] |= (1 << (i % 31));
|
|
219
|
-
}
|
|
220
|
-
function init(component, options, instance, create_fragment, not_equal, props, dirty = [-1]) {
|
|
221
|
-
const parent_component = current_component;
|
|
222
|
-
set_current_component(component);
|
|
223
|
-
const $$ = component.$$ = {
|
|
224
|
-
fragment: null,
|
|
225
|
-
ctx: null,
|
|
226
|
-
// state
|
|
227
|
-
props,
|
|
228
|
-
update: noop,
|
|
229
|
-
not_equal,
|
|
230
|
-
bound: blank_object(),
|
|
231
|
-
// lifecycle
|
|
232
|
-
on_mount: [],
|
|
233
|
-
on_destroy: [],
|
|
234
|
-
on_disconnect: [],
|
|
235
|
-
before_update: [],
|
|
236
|
-
after_update: [],
|
|
237
|
-
context: new Map(parent_component ? parent_component.$$.context : options.context || []),
|
|
238
|
-
// everything else
|
|
239
|
-
callbacks: blank_object(),
|
|
240
|
-
dirty,
|
|
241
|
-
skip_bound: false
|
|
242
|
-
};
|
|
243
|
-
let ready = false;
|
|
244
|
-
$$.ctx = instance
|
|
245
|
-
? instance(component, options.props || {}, (i, ret, ...rest) => {
|
|
246
|
-
const value = rest.length ? rest[0] : ret;
|
|
247
|
-
if ($$.ctx && not_equal($$.ctx[i], $$.ctx[i] = value)) {
|
|
248
|
-
if (!$$.skip_bound && $$.bound[i])
|
|
249
|
-
$$.bound[i](value);
|
|
250
|
-
if (ready)
|
|
251
|
-
make_dirty(component, i);
|
|
252
|
-
}
|
|
253
|
-
return ret;
|
|
254
|
-
})
|
|
255
|
-
: [];
|
|
256
|
-
$$.update();
|
|
257
|
-
ready = true;
|
|
258
|
-
run_all($$.before_update);
|
|
259
|
-
// `false` as a special case of no DOM component
|
|
260
|
-
$$.fragment = create_fragment ? create_fragment($$.ctx) : false;
|
|
261
|
-
if (options.target) {
|
|
262
|
-
if (options.hydrate) {
|
|
263
|
-
const nodes = children(options.target);
|
|
264
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
265
|
-
$$.fragment && $$.fragment.l(nodes);
|
|
266
|
-
nodes.forEach(detach);
|
|
267
|
-
}
|
|
268
|
-
else {
|
|
269
|
-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
|
|
270
|
-
$$.fragment && $$.fragment.c();
|
|
271
|
-
}
|
|
272
|
-
if (options.intro)
|
|
273
|
-
transition_in(component.$$.fragment);
|
|
274
|
-
mount_component(component, options.target, options.anchor, options.customElement);
|
|
275
|
-
flush();
|
|
276
|
-
}
|
|
277
|
-
set_current_component(parent_component);
|
|
278
|
-
}
|
|
279
|
-
let SvelteElement;
|
|
280
|
-
if (typeof HTMLElement === 'function') {
|
|
281
|
-
SvelteElement = class extends HTMLElement {
|
|
282
|
-
constructor() {
|
|
283
|
-
super();
|
|
284
|
-
this.attachShadow({ mode: 'open' });
|
|
285
|
-
}
|
|
286
|
-
connectedCallback() {
|
|
287
|
-
const { on_mount } = this.$$;
|
|
288
|
-
this.$$.on_disconnect = on_mount.map(run).filter(is_function);
|
|
289
|
-
// @ts-ignore todo: improve typings
|
|
290
|
-
for (const key in this.$$.slotted) {
|
|
291
|
-
// @ts-ignore todo: improve typings
|
|
292
|
-
this.appendChild(this.$$.slotted[key]);
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
attributeChangedCallback(attr, _oldValue, newValue) {
|
|
296
|
-
this[attr] = newValue;
|
|
297
|
-
}
|
|
298
|
-
disconnectedCallback() {
|
|
299
|
-
run_all(this.$$.on_disconnect);
|
|
300
|
-
}
|
|
301
|
-
$destroy() {
|
|
302
|
-
destroy_component(this, 1);
|
|
303
|
-
this.$destroy = noop;
|
|
304
|
-
}
|
|
305
|
-
$on(type, callback) {
|
|
306
|
-
// TODO should this delegate to addEventListener?
|
|
307
|
-
const callbacks = (this.$$.callbacks[type] || (this.$$.callbacks[type] = []));
|
|
308
|
-
callbacks.push(callback);
|
|
309
|
-
return () => {
|
|
310
|
-
const index = callbacks.indexOf(callback);
|
|
311
|
-
if (index !== -1)
|
|
312
|
-
callbacks.splice(index, 1);
|
|
313
|
-
};
|
|
314
|
-
}
|
|
315
|
-
$set($$props) {
|
|
316
|
-
if (this.$$set && !is_empty($$props)) {
|
|
317
|
-
this.$$.skip_bound = true;
|
|
318
|
-
this.$$set($$props);
|
|
319
|
-
this.$$.skip_bound = false;
|
|
320
|
-
}
|
|
321
|
-
}
|
|
322
|
-
};
|
|
323
|
-
}
|
|
324
|
-
|
|
325
|
-
function dispatch_dev(type, detail) {
|
|
326
|
-
document.dispatchEvent(custom_event(type, Object.assign({ version: '3.37.0' }, detail)));
|
|
327
|
-
}
|
|
328
|
-
function append_dev(target, node) {
|
|
329
|
-
dispatch_dev('SvelteDOMInsert', { target, node });
|
|
330
|
-
append(target, node);
|
|
331
|
-
}
|
|
332
|
-
function insert_dev(target, node, anchor) {
|
|
333
|
-
dispatch_dev('SvelteDOMInsert', { target, node, anchor });
|
|
334
|
-
insert(target, node, anchor);
|
|
335
|
-
}
|
|
336
|
-
function detach_dev(node) {
|
|
337
|
-
dispatch_dev('SvelteDOMRemove', { node });
|
|
338
|
-
detach(node);
|
|
339
|
-
}
|
|
340
|
-
function attr_dev(node, attribute, value) {
|
|
341
|
-
attr(node, attribute, value);
|
|
342
|
-
if (value == null)
|
|
343
|
-
dispatch_dev('SvelteDOMRemoveAttribute', { node, attribute });
|
|
344
|
-
else
|
|
345
|
-
dispatch_dev('SvelteDOMSetAttribute', { node, attribute, value });
|
|
346
|
-
}
|
|
347
|
-
function set_data_dev(text, data) {
|
|
348
|
-
data = '' + data;
|
|
349
|
-
if (text.wholeText === data)
|
|
350
|
-
return;
|
|
351
|
-
dispatch_dev('SvelteDOMSetData', { node: text, data });
|
|
352
|
-
text.data = data;
|
|
353
|
-
}
|
|
354
|
-
function validate_each_argument(arg) {
|
|
355
|
-
if (typeof arg !== 'string' && !(arg && typeof arg === 'object' && 'length' in arg)) {
|
|
356
|
-
let msg = '{#each} only iterates over array-like objects.';
|
|
357
|
-
if (typeof Symbol === 'function' && arg && Symbol.iterator in arg) {
|
|
358
|
-
msg += ' You can use a spread to convert this iterable into an array.';
|
|
359
|
-
}
|
|
360
|
-
throw new Error(msg);
|
|
361
|
-
}
|
|
362
|
-
}
|
|
363
|
-
function validate_slots(name, slot, keys) {
|
|
364
|
-
for (const slot_key of Object.keys(slot)) {
|
|
365
|
-
if (!~keys.indexOf(slot_key)) {
|
|
366
|
-
console.warn(`<${name}> received an unexpected slot "${slot_key}".`);
|
|
367
|
-
}
|
|
368
|
-
}
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
/* ../casino-footer-thumbnail/src/CasinoFooterThumbnail.svelte generated by Svelte v3.37.0 */
|
|
372
|
-
|
|
373
|
-
const file$2 = "../casino-footer-thumbnail/src/CasinoFooterThumbnail.svelte";
|
|
374
|
-
|
|
375
|
-
// (72:28)
|
|
376
|
-
function create_if_block_8$1(ctx) {
|
|
377
|
-
let div;
|
|
378
|
-
let a;
|
|
379
|
-
let img;
|
|
380
|
-
let img_src_value;
|
|
381
|
-
let a_class_value;
|
|
382
|
-
let a_target_value;
|
|
383
|
-
|
|
384
|
-
const block = {
|
|
385
|
-
c: function create() {
|
|
386
|
-
div = element("div");
|
|
387
|
-
a = element("a");
|
|
388
|
-
img = element("img");
|
|
389
|
-
attr_dev(img, "class", "FooterImage");
|
|
390
|
-
if (img.src !== (img_src_value = /*sociallinkimage*/ ctx[16])) attr_dev(img, "src", img_src_value);
|
|
391
|
-
attr_dev(img, "title", /*sociallinktitle*/ ctx[17]);
|
|
392
|
-
add_location(img, file$2, 74, 8, 2992);
|
|
393
|
-
attr_dev(a, "class", a_class_value = "FooterLink " + (/*sociallinkurl*/ ctx[15] ? "" : "FooterLinkDisabled") + " FooterItemAnchor");
|
|
394
|
-
attr_dev(a, "href", /*sociallinkurl*/ ctx[15]);
|
|
395
|
-
attr_dev(a, "target", a_target_value = /*target*/ ctx[18] ? /*target*/ ctx[18] : "_blank");
|
|
396
|
-
add_location(a, file$2, 73, 6, 2843);
|
|
397
|
-
attr_dev(div, "class", "FooterItem SocialItem");
|
|
398
|
-
add_location(div, file$2, 72, 4, 2801);
|
|
399
|
-
},
|
|
400
|
-
m: function mount(target, anchor) {
|
|
401
|
-
insert_dev(target, div, anchor);
|
|
402
|
-
append_dev(div, a);
|
|
403
|
-
append_dev(a, img);
|
|
404
|
-
},
|
|
405
|
-
p: function update(ctx, dirty) {
|
|
406
|
-
if (dirty & /*sociallinkimage*/ 65536 && img.src !== (img_src_value = /*sociallinkimage*/ ctx[16])) {
|
|
407
|
-
attr_dev(img, "src", img_src_value);
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
if (dirty & /*sociallinktitle*/ 131072) {
|
|
411
|
-
attr_dev(img, "title", /*sociallinktitle*/ ctx[17]);
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
if (dirty & /*sociallinkurl*/ 32768 && a_class_value !== (a_class_value = "FooterLink " + (/*sociallinkurl*/ ctx[15] ? "" : "FooterLinkDisabled") + " FooterItemAnchor")) {
|
|
415
|
-
attr_dev(a, "class", a_class_value);
|
|
416
|
-
}
|
|
417
|
-
|
|
418
|
-
if (dirty & /*sociallinkurl*/ 32768) {
|
|
419
|
-
attr_dev(a, "href", /*sociallinkurl*/ ctx[15]);
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
if (dirty & /*target*/ 262144 && a_target_value !== (a_target_value = /*target*/ ctx[18] ? /*target*/ ctx[18] : "_blank")) {
|
|
423
|
-
attr_dev(a, "target", a_target_value);
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
d: function destroy(detaching) {
|
|
427
|
-
if (detaching) detach_dev(div);
|
|
428
|
-
}
|
|
429
|
-
};
|
|
430
|
-
|
|
431
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
432
|
-
block,
|
|
433
|
-
id: create_if_block_8$1.name,
|
|
434
|
-
type: "if",
|
|
435
|
-
source: "(72:28) ",
|
|
436
|
-
ctx
|
|
437
|
-
});
|
|
438
|
-
|
|
439
|
-
return block;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
// (66:25)
|
|
443
|
-
function create_if_block_7$1(ctx) {
|
|
444
|
-
let div;
|
|
445
|
-
let a;
|
|
446
|
-
let img;
|
|
447
|
-
let img_src_value;
|
|
448
|
-
let a_class_value;
|
|
449
|
-
|
|
450
|
-
const block = {
|
|
451
|
-
c: function create() {
|
|
452
|
-
div = element("div");
|
|
453
|
-
a = element("a");
|
|
454
|
-
img = element("img");
|
|
455
|
-
attr_dev(img, "class", "FooterImage");
|
|
456
|
-
if (img.src !== (img_src_value = /*licenseimage*/ ctx[13])) attr_dev(img, "src", img_src_value);
|
|
457
|
-
attr_dev(img, "title", /*licensetitle*/ ctx[14]);
|
|
458
|
-
add_location(img, file$2, 68, 8, 2678);
|
|
459
|
-
attr_dev(a, "class", a_class_value = "FooterLink " + (/*licenseurl*/ ctx[12] ? "" : "FooterLinkDisabled") + " FooterItemAnchor");
|
|
460
|
-
attr_dev(a, "href", /*licenseurl*/ ctx[12]);
|
|
461
|
-
attr_dev(a, "target", "_blank");
|
|
462
|
-
add_location(a, file$2, 67, 6, 2555);
|
|
463
|
-
attr_dev(div, "class", "FooterItem");
|
|
464
|
-
add_location(div, file$2, 66, 4, 2524);
|
|
465
|
-
},
|
|
466
|
-
m: function mount(target, anchor) {
|
|
467
|
-
insert_dev(target, div, anchor);
|
|
468
|
-
append_dev(div, a);
|
|
469
|
-
append_dev(a, img);
|
|
470
|
-
},
|
|
471
|
-
p: function update(ctx, dirty) {
|
|
472
|
-
if (dirty & /*licenseimage*/ 8192 && img.src !== (img_src_value = /*licenseimage*/ ctx[13])) {
|
|
473
|
-
attr_dev(img, "src", img_src_value);
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
if (dirty & /*licensetitle*/ 16384) {
|
|
477
|
-
attr_dev(img, "title", /*licensetitle*/ ctx[14]);
|
|
478
|
-
}
|
|
479
|
-
|
|
480
|
-
if (dirty & /*licenseurl*/ 4096 && a_class_value !== (a_class_value = "FooterLink " + (/*licenseurl*/ ctx[12] ? "" : "FooterLinkDisabled") + " FooterItemAnchor")) {
|
|
481
|
-
attr_dev(a, "class", a_class_value);
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
if (dirty & /*licenseurl*/ 4096) {
|
|
485
|
-
attr_dev(a, "href", /*licenseurl*/ ctx[12]);
|
|
486
|
-
}
|
|
487
|
-
},
|
|
488
|
-
d: function destroy(detaching) {
|
|
489
|
-
if (detaching) detach_dev(div);
|
|
490
|
-
}
|
|
491
|
-
};
|
|
492
|
-
|
|
493
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
494
|
-
block,
|
|
495
|
-
id: create_if_block_7$1.name,
|
|
496
|
-
type: "if",
|
|
497
|
-
source: "(66:25) ",
|
|
498
|
-
ctx
|
|
499
|
-
});
|
|
500
|
-
|
|
501
|
-
return block;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
// (57:28)
|
|
505
|
-
function create_if_block_5$2(ctx) {
|
|
506
|
-
let div;
|
|
507
|
-
let a;
|
|
508
|
-
let img;
|
|
509
|
-
let img_src_value;
|
|
510
|
-
let t;
|
|
511
|
-
let a_class_value;
|
|
512
|
-
let if_block = /*helperlinktitle*/ ctx[11] && create_if_block_6$1(ctx);
|
|
513
|
-
|
|
514
|
-
const block = {
|
|
515
|
-
c: function create() {
|
|
516
|
-
div = element("div");
|
|
517
|
-
a = element("a");
|
|
518
|
-
img = element("img");
|
|
519
|
-
t = space();
|
|
520
|
-
if (if_block) if_block.c();
|
|
521
|
-
attr_dev(img, "class", "FooterImage");
|
|
522
|
-
if (img.src !== (img_src_value = /*helperlinkimage*/ ctx[10])) attr_dev(img, "src", img_src_value);
|
|
523
|
-
attr_dev(img, "title", /*helperlinktitle*/ ctx[11]);
|
|
524
|
-
add_location(img, file$2, 59, 8, 2299);
|
|
525
|
-
attr_dev(a, "class", a_class_value = "" + ((/*helperlinktitle*/ ctx[11] ? "FooterHelperLink" : "") + " " + (/*helperlinkurl*/ ctx[9] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
526
|
-
attr_dev(a, "href", /*helperlinkurl*/ ctx[9]);
|
|
527
|
-
attr_dev(a, "target", /*target*/ ctx[18]);
|
|
528
|
-
add_location(a, file$2, 58, 6, 2136);
|
|
529
|
-
attr_dev(div, "class", "FooterItem HelperLinkItem");
|
|
530
|
-
add_location(div, file$2, 57, 4, 2090);
|
|
531
|
-
},
|
|
532
|
-
m: function mount(target, anchor) {
|
|
533
|
-
insert_dev(target, div, anchor);
|
|
534
|
-
append_dev(div, a);
|
|
535
|
-
append_dev(a, img);
|
|
536
|
-
append_dev(a, t);
|
|
537
|
-
if (if_block) if_block.m(a, null);
|
|
538
|
-
},
|
|
539
|
-
p: function update(ctx, dirty) {
|
|
540
|
-
if (dirty & /*helperlinkimage*/ 1024 && img.src !== (img_src_value = /*helperlinkimage*/ ctx[10])) {
|
|
541
|
-
attr_dev(img, "src", img_src_value);
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
if (dirty & /*helperlinktitle*/ 2048) {
|
|
545
|
-
attr_dev(img, "title", /*helperlinktitle*/ ctx[11]);
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
if (/*helperlinktitle*/ ctx[11]) {
|
|
549
|
-
if (if_block) {
|
|
550
|
-
if_block.p(ctx, dirty);
|
|
551
|
-
} else {
|
|
552
|
-
if_block = create_if_block_6$1(ctx);
|
|
553
|
-
if_block.c();
|
|
554
|
-
if_block.m(a, null);
|
|
555
|
-
}
|
|
556
|
-
} else if (if_block) {
|
|
557
|
-
if_block.d(1);
|
|
558
|
-
if_block = null;
|
|
559
|
-
}
|
|
560
|
-
|
|
561
|
-
if (dirty & /*helperlinktitle, helperlinkurl*/ 2560 && a_class_value !== (a_class_value = "" + ((/*helperlinktitle*/ ctx[11] ? "FooterHelperLink" : "") + " " + (/*helperlinkurl*/ ctx[9] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
562
|
-
attr_dev(a, "class", a_class_value);
|
|
563
|
-
}
|
|
564
|
-
|
|
565
|
-
if (dirty & /*helperlinkurl*/ 512) {
|
|
566
|
-
attr_dev(a, "href", /*helperlinkurl*/ ctx[9]);
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
if (dirty & /*target*/ 262144) {
|
|
570
|
-
attr_dev(a, "target", /*target*/ ctx[18]);
|
|
571
|
-
}
|
|
572
|
-
},
|
|
573
|
-
d: function destroy(detaching) {
|
|
574
|
-
if (detaching) detach_dev(div);
|
|
575
|
-
if (if_block) if_block.d();
|
|
576
|
-
}
|
|
577
|
-
};
|
|
578
|
-
|
|
579
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
580
|
-
block,
|
|
581
|
-
id: create_if_block_5$2.name,
|
|
582
|
-
type: "if",
|
|
583
|
-
source: "(57:28) ",
|
|
584
|
-
ctx
|
|
585
|
-
});
|
|
586
|
-
|
|
587
|
-
return block;
|
|
588
|
-
}
|
|
589
|
-
|
|
590
|
-
// (51:25)
|
|
591
|
-
function create_if_block_4$2(ctx) {
|
|
592
|
-
let div;
|
|
593
|
-
let a;
|
|
594
|
-
let img;
|
|
595
|
-
let img_src_value;
|
|
596
|
-
let a_class_value;
|
|
597
|
-
|
|
598
|
-
const block = {
|
|
599
|
-
c: function create() {
|
|
600
|
-
div = element("div");
|
|
601
|
-
a = element("a");
|
|
602
|
-
img = element("img");
|
|
603
|
-
attr_dev(img, "class", "FooterImage");
|
|
604
|
-
if (img.src !== (img_src_value = /*vendorimage*/ ctx[7])) attr_dev(img, "src", img_src_value);
|
|
605
|
-
attr_dev(img, "title", /*vendortitle*/ ctx[8]);
|
|
606
|
-
add_location(img, file$2, 53, 8, 1969);
|
|
607
|
-
attr_dev(a, "href", /*vendorurl*/ ctx[6]);
|
|
608
|
-
attr_dev(a, "class", a_class_value = "" + ((/*vendorurl*/ ctx[6] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
609
|
-
attr_dev(a, "target", "_blank");
|
|
610
|
-
add_location(a, file$2, 52, 6, 1859);
|
|
611
|
-
attr_dev(div, "class", "FooterItem GameVendorItem");
|
|
612
|
-
add_location(div, file$2, 51, 4, 1813);
|
|
613
|
-
},
|
|
614
|
-
m: function mount(target, anchor) {
|
|
615
|
-
insert_dev(target, div, anchor);
|
|
616
|
-
append_dev(div, a);
|
|
617
|
-
append_dev(a, img);
|
|
618
|
-
},
|
|
619
|
-
p: function update(ctx, dirty) {
|
|
620
|
-
if (dirty & /*vendorimage*/ 128 && img.src !== (img_src_value = /*vendorimage*/ ctx[7])) {
|
|
621
|
-
attr_dev(img, "src", img_src_value);
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
if (dirty & /*vendortitle*/ 256) {
|
|
625
|
-
attr_dev(img, "title", /*vendortitle*/ ctx[8]);
|
|
626
|
-
}
|
|
627
|
-
|
|
628
|
-
if (dirty & /*vendorurl*/ 64) {
|
|
629
|
-
attr_dev(a, "href", /*vendorurl*/ ctx[6]);
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
if (dirty & /*vendorurl*/ 64 && a_class_value !== (a_class_value = "" + ((/*vendorurl*/ ctx[6] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
633
|
-
attr_dev(a, "class", a_class_value);
|
|
634
|
-
}
|
|
635
|
-
},
|
|
636
|
-
d: function destroy(detaching) {
|
|
637
|
-
if (detaching) detach_dev(div);
|
|
638
|
-
}
|
|
639
|
-
};
|
|
640
|
-
|
|
641
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
642
|
-
block,
|
|
643
|
-
id: create_if_block_4$2.name,
|
|
644
|
-
type: "if",
|
|
645
|
-
source: "(51:25) ",
|
|
646
|
-
ctx
|
|
647
|
-
});
|
|
648
|
-
|
|
649
|
-
return block;
|
|
650
|
-
}
|
|
651
|
-
|
|
652
|
-
// (42:25)
|
|
653
|
-
function create_if_block_2$2(ctx) {
|
|
654
|
-
let div;
|
|
655
|
-
let a;
|
|
656
|
-
let img;
|
|
657
|
-
let img_src_value;
|
|
658
|
-
let t;
|
|
659
|
-
let a_class_value;
|
|
660
|
-
let if_block = /*paymenttitle*/ ctx[5] && create_if_block_3$2(ctx);
|
|
661
|
-
|
|
662
|
-
const block = {
|
|
663
|
-
c: function create() {
|
|
664
|
-
div = element("div");
|
|
665
|
-
a = element("a");
|
|
666
|
-
img = element("img");
|
|
667
|
-
t = space();
|
|
668
|
-
if (if_block) if_block.c();
|
|
669
|
-
attr_dev(img, "class", "FooterImage");
|
|
670
|
-
if (img.src !== (img_src_value = /*paymentimage*/ ctx[4])) attr_dev(img, "src", img_src_value);
|
|
671
|
-
attr_dev(img, "title", /*paymenttitle*/ ctx[5]);
|
|
672
|
-
add_location(img, file$2, 44, 8, 1599);
|
|
673
|
-
attr_dev(a, "class", a_class_value = "" + ((/*paymenttitle*/ ctx[5] ? "FooterPaymentLink" : "") + " " + (/*paymenturl*/ ctx[3] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
674
|
-
attr_dev(a, "href", /*paymenturl*/ ctx[3]);
|
|
675
|
-
attr_dev(a, "target", "_blank");
|
|
676
|
-
add_location(a, file$2, 43, 6, 1444);
|
|
677
|
-
attr_dev(div, "class", "FooterItem PaymentItem");
|
|
678
|
-
add_location(div, file$2, 42, 4, 1401);
|
|
679
|
-
},
|
|
680
|
-
m: function mount(target, anchor) {
|
|
681
|
-
insert_dev(target, div, anchor);
|
|
682
|
-
append_dev(div, a);
|
|
683
|
-
append_dev(a, img);
|
|
684
|
-
append_dev(a, t);
|
|
685
|
-
if (if_block) if_block.m(a, null);
|
|
686
|
-
},
|
|
687
|
-
p: function update(ctx, dirty) {
|
|
688
|
-
if (dirty & /*paymentimage*/ 16 && img.src !== (img_src_value = /*paymentimage*/ ctx[4])) {
|
|
689
|
-
attr_dev(img, "src", img_src_value);
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
if (dirty & /*paymenttitle*/ 32) {
|
|
693
|
-
attr_dev(img, "title", /*paymenttitle*/ ctx[5]);
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
if (/*paymenttitle*/ ctx[5]) {
|
|
697
|
-
if (if_block) {
|
|
698
|
-
if_block.p(ctx, dirty);
|
|
699
|
-
} else {
|
|
700
|
-
if_block = create_if_block_3$2(ctx);
|
|
701
|
-
if_block.c();
|
|
702
|
-
if_block.m(a, null);
|
|
703
|
-
}
|
|
704
|
-
} else if (if_block) {
|
|
705
|
-
if_block.d(1);
|
|
706
|
-
if_block = null;
|
|
707
|
-
}
|
|
708
|
-
|
|
709
|
-
if (dirty & /*paymenttitle, paymenturl*/ 40 && a_class_value !== (a_class_value = "" + ((/*paymenttitle*/ ctx[5] ? "FooterPaymentLink" : "") + " " + (/*paymenturl*/ ctx[3] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
710
|
-
attr_dev(a, "class", a_class_value);
|
|
711
|
-
}
|
|
712
|
-
|
|
713
|
-
if (dirty & /*paymenturl*/ 8) {
|
|
714
|
-
attr_dev(a, "href", /*paymenturl*/ ctx[3]);
|
|
715
|
-
}
|
|
716
|
-
},
|
|
717
|
-
d: function destroy(detaching) {
|
|
718
|
-
if (detaching) detach_dev(div);
|
|
719
|
-
if (if_block) if_block.d();
|
|
720
|
-
}
|
|
721
|
-
};
|
|
722
|
-
|
|
723
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
724
|
-
block,
|
|
725
|
-
id: create_if_block_2$2.name,
|
|
726
|
-
type: "if",
|
|
727
|
-
source: "(42:25) ",
|
|
728
|
-
ctx
|
|
729
|
-
});
|
|
730
|
-
|
|
731
|
-
return block;
|
|
732
|
-
}
|
|
733
|
-
|
|
734
|
-
// (33:2) {#if sponsorimage}
|
|
735
|
-
function create_if_block$2(ctx) {
|
|
736
|
-
let div;
|
|
737
|
-
let a;
|
|
738
|
-
let img;
|
|
739
|
-
let img_src_value;
|
|
740
|
-
let t;
|
|
741
|
-
let a_class_value;
|
|
742
|
-
let if_block = /*sponsortitle*/ ctx[2] && create_if_block_1$2(ctx);
|
|
743
|
-
|
|
744
|
-
const block = {
|
|
745
|
-
c: function create() {
|
|
746
|
-
div = element("div");
|
|
747
|
-
a = element("a");
|
|
748
|
-
img = element("img");
|
|
749
|
-
t = space();
|
|
750
|
-
if (if_block) if_block.c();
|
|
751
|
-
attr_dev(img, "class", "FooterImage");
|
|
752
|
-
if (img.src !== (img_src_value = /*sponsorimage*/ ctx[1])) attr_dev(img, "src", img_src_value);
|
|
753
|
-
attr_dev(img, "title", /*sponsorimage*/ ctx[1]);
|
|
754
|
-
add_location(img, file$2, 35, 8, 1187);
|
|
755
|
-
attr_dev(a, "class", a_class_value = "" + ((/*sponsortitle*/ ctx[2] ? "FooterSponsorLink" : "") + " " + (/*sponsorurl*/ ctx[0] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"));
|
|
756
|
-
attr_dev(a, "href", /*sponsorurl*/ ctx[0]);
|
|
757
|
-
attr_dev(a, "target", "_blank");
|
|
758
|
-
add_location(a, file$2, 34, 6, 1032);
|
|
759
|
-
attr_dev(div, "class", "FooterItem SponsorItem");
|
|
760
|
-
add_location(div, file$2, 33, 4, 989);
|
|
761
|
-
},
|
|
762
|
-
m: function mount(target, anchor) {
|
|
763
|
-
insert_dev(target, div, anchor);
|
|
764
|
-
append_dev(div, a);
|
|
765
|
-
append_dev(a, img);
|
|
766
|
-
append_dev(a, t);
|
|
767
|
-
if (if_block) if_block.m(a, null);
|
|
768
|
-
},
|
|
769
|
-
p: function update(ctx, dirty) {
|
|
770
|
-
if (dirty & /*sponsorimage*/ 2 && img.src !== (img_src_value = /*sponsorimage*/ ctx[1])) {
|
|
771
|
-
attr_dev(img, "src", img_src_value);
|
|
772
|
-
}
|
|
773
|
-
|
|
774
|
-
if (dirty & /*sponsorimage*/ 2) {
|
|
775
|
-
attr_dev(img, "title", /*sponsorimage*/ ctx[1]);
|
|
776
|
-
}
|
|
777
|
-
|
|
778
|
-
if (/*sponsortitle*/ ctx[2]) {
|
|
779
|
-
if (if_block) {
|
|
780
|
-
if_block.p(ctx, dirty);
|
|
781
|
-
} else {
|
|
782
|
-
if_block = create_if_block_1$2(ctx);
|
|
783
|
-
if_block.c();
|
|
784
|
-
if_block.m(a, null);
|
|
785
|
-
}
|
|
786
|
-
} else if (if_block) {
|
|
787
|
-
if_block.d(1);
|
|
788
|
-
if_block = null;
|
|
789
|
-
}
|
|
790
|
-
|
|
791
|
-
if (dirty & /*sponsortitle, sponsorurl*/ 5 && a_class_value !== (a_class_value = "" + ((/*sponsortitle*/ ctx[2] ? "FooterSponsorLink" : "") + " " + (/*sponsorurl*/ ctx[0] ? "" : "FooterLinkDisabled") + " FooterItemAnchor"))) {
|
|
792
|
-
attr_dev(a, "class", a_class_value);
|
|
793
|
-
}
|
|
794
|
-
|
|
795
|
-
if (dirty & /*sponsorurl*/ 1) {
|
|
796
|
-
attr_dev(a, "href", /*sponsorurl*/ ctx[0]);
|
|
797
|
-
}
|
|
798
|
-
},
|
|
799
|
-
d: function destroy(detaching) {
|
|
800
|
-
if (detaching) detach_dev(div);
|
|
801
|
-
if (if_block) if_block.d();
|
|
802
|
-
}
|
|
803
|
-
};
|
|
804
|
-
|
|
805
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
806
|
-
block,
|
|
807
|
-
id: create_if_block$2.name,
|
|
808
|
-
type: "if",
|
|
809
|
-
source: "(33:2) {#if sponsorimage}",
|
|
810
|
-
ctx
|
|
811
|
-
});
|
|
812
|
-
|
|
813
|
-
return block;
|
|
814
|
-
}
|
|
815
|
-
|
|
816
|
-
// (61:8) {#if helperlinktitle}
|
|
817
|
-
function create_if_block_6$1(ctx) {
|
|
818
|
-
let p;
|
|
819
|
-
let t;
|
|
820
|
-
|
|
821
|
-
const block = {
|
|
822
|
-
c: function create() {
|
|
823
|
-
p = element("p");
|
|
824
|
-
t = text(/*helperlinktitle*/ ctx[11]);
|
|
825
|
-
attr_dev(p, "class", "HelperTitle");
|
|
826
|
-
add_location(p, file$2, 61, 10, 2413);
|
|
827
|
-
},
|
|
828
|
-
m: function mount(target, anchor) {
|
|
829
|
-
insert_dev(target, p, anchor);
|
|
830
|
-
append_dev(p, t);
|
|
831
|
-
},
|
|
832
|
-
p: function update(ctx, dirty) {
|
|
833
|
-
if (dirty & /*helperlinktitle*/ 2048) set_data_dev(t, /*helperlinktitle*/ ctx[11]);
|
|
834
|
-
},
|
|
835
|
-
d: function destroy(detaching) {
|
|
836
|
-
if (detaching) detach_dev(p);
|
|
837
|
-
}
|
|
838
|
-
};
|
|
839
|
-
|
|
840
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
841
|
-
block,
|
|
842
|
-
id: create_if_block_6$1.name,
|
|
843
|
-
type: "if",
|
|
844
|
-
source: "(61:8) {#if helperlinktitle}",
|
|
845
|
-
ctx
|
|
846
|
-
});
|
|
847
|
-
|
|
848
|
-
return block;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
// (46:8) {#if paymenttitle}
|
|
852
|
-
function create_if_block_3$2(ctx) {
|
|
853
|
-
let p;
|
|
854
|
-
let t;
|
|
855
|
-
|
|
856
|
-
const block = {
|
|
857
|
-
c: function create() {
|
|
858
|
-
p = element("p");
|
|
859
|
-
t = text(/*paymenttitle*/ ctx[5]);
|
|
860
|
-
attr_dev(p, "class", "PaymentTitle");
|
|
861
|
-
add_location(p, file$2, 46, 10, 1704);
|
|
862
|
-
},
|
|
863
|
-
m: function mount(target, anchor) {
|
|
864
|
-
insert_dev(target, p, anchor);
|
|
865
|
-
append_dev(p, t);
|
|
866
|
-
},
|
|
867
|
-
p: function update(ctx, dirty) {
|
|
868
|
-
if (dirty & /*paymenttitle*/ 32) set_data_dev(t, /*paymenttitle*/ ctx[5]);
|
|
869
|
-
},
|
|
870
|
-
d: function destroy(detaching) {
|
|
871
|
-
if (detaching) detach_dev(p);
|
|
872
|
-
}
|
|
873
|
-
};
|
|
874
|
-
|
|
875
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
876
|
-
block,
|
|
877
|
-
id: create_if_block_3$2.name,
|
|
878
|
-
type: "if",
|
|
879
|
-
source: "(46:8) {#if paymenttitle}",
|
|
880
|
-
ctx
|
|
881
|
-
});
|
|
882
|
-
|
|
883
|
-
return block;
|
|
884
|
-
}
|
|
885
|
-
|
|
886
|
-
// (37:8) {#if sponsortitle}
|
|
887
|
-
function create_if_block_1$2(ctx) {
|
|
888
|
-
let p;
|
|
889
|
-
let t;
|
|
890
|
-
|
|
891
|
-
const block = {
|
|
892
|
-
c: function create() {
|
|
893
|
-
p = element("p");
|
|
894
|
-
t = text(/*sponsortitle*/ ctx[2]);
|
|
895
|
-
attr_dev(p, "class", "SponsorTitle");
|
|
896
|
-
add_location(p, file$2, 37, 10, 1292);
|
|
897
|
-
},
|
|
898
|
-
m: function mount(target, anchor) {
|
|
899
|
-
insert_dev(target, p, anchor);
|
|
900
|
-
append_dev(p, t);
|
|
901
|
-
},
|
|
902
|
-
p: function update(ctx, dirty) {
|
|
903
|
-
if (dirty & /*sponsortitle*/ 4) set_data_dev(t, /*sponsortitle*/ ctx[2]);
|
|
904
|
-
},
|
|
905
|
-
d: function destroy(detaching) {
|
|
906
|
-
if (detaching) detach_dev(p);
|
|
907
|
-
}
|
|
908
|
-
};
|
|
909
|
-
|
|
910
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
911
|
-
block,
|
|
912
|
-
id: create_if_block_1$2.name,
|
|
913
|
-
type: "if",
|
|
914
|
-
source: "(37:8) {#if sponsortitle}",
|
|
915
|
-
ctx
|
|
916
|
-
});
|
|
917
|
-
|
|
918
|
-
return block;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
function create_fragment$2(ctx) {
|
|
922
|
-
let div;
|
|
923
|
-
|
|
924
|
-
function select_block_type(ctx, dirty) {
|
|
925
|
-
if (/*sponsorimage*/ ctx[1]) return create_if_block$2;
|
|
926
|
-
if (/*paymentimage*/ ctx[4]) return create_if_block_2$2;
|
|
927
|
-
if (/*vendorimage*/ ctx[7]) return create_if_block_4$2;
|
|
928
|
-
if (/*helperlinkimage*/ ctx[10]) return create_if_block_5$2;
|
|
929
|
-
if (/*licenseimage*/ ctx[13]) return create_if_block_7$1;
|
|
930
|
-
if (/*sociallinkimage*/ ctx[16]) return create_if_block_8$1;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
let current_block_type = select_block_type(ctx);
|
|
934
|
-
let if_block = current_block_type && current_block_type(ctx);
|
|
935
|
-
|
|
936
|
-
const block = {
|
|
937
|
-
c: function create() {
|
|
938
|
-
div = element("div");
|
|
939
|
-
if (if_block) if_block.c();
|
|
940
|
-
this.c = noop;
|
|
941
|
-
attr_dev(div, "class", "ThumbnailContainer");
|
|
942
|
-
add_location(div, file$2, 31, 0, 900);
|
|
943
|
-
},
|
|
944
|
-
l: function claim(nodes) {
|
|
945
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
|
946
|
-
},
|
|
947
|
-
m: function mount(target, anchor) {
|
|
948
|
-
insert_dev(target, div, anchor);
|
|
949
|
-
if (if_block) if_block.m(div, null);
|
|
950
|
-
/*div_binding*/ ctx[21](div);
|
|
951
|
-
},
|
|
952
|
-
p: function update(ctx, [dirty]) {
|
|
953
|
-
if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) {
|
|
954
|
-
if_block.p(ctx, dirty);
|
|
955
|
-
} else {
|
|
956
|
-
if (if_block) if_block.d(1);
|
|
957
|
-
if_block = current_block_type && current_block_type(ctx);
|
|
958
|
-
|
|
959
|
-
if (if_block) {
|
|
960
|
-
if_block.c();
|
|
961
|
-
if_block.m(div, null);
|
|
962
|
-
}
|
|
963
|
-
}
|
|
964
|
-
},
|
|
965
|
-
i: noop,
|
|
966
|
-
o: noop,
|
|
967
|
-
d: function destroy(detaching) {
|
|
968
|
-
if (detaching) detach_dev(div);
|
|
969
|
-
|
|
970
|
-
if (if_block) {
|
|
971
|
-
if_block.d();
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
/*div_binding*/ ctx[21](null);
|
|
975
|
-
}
|
|
976
|
-
};
|
|
977
|
-
|
|
978
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
979
|
-
block,
|
|
980
|
-
id: create_fragment$2.name,
|
|
981
|
-
type: "component",
|
|
982
|
-
source: "",
|
|
983
|
-
ctx
|
|
984
|
-
});
|
|
985
|
-
|
|
986
|
-
return block;
|
|
987
|
-
}
|
|
988
|
-
|
|
989
|
-
function instance$2($$self, $$props, $$invalidate) {
|
|
990
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
|
991
|
-
validate_slots("undefined", slots, []);
|
|
992
|
-
let { sponsorurl = "" } = $$props;
|
|
993
|
-
let { sponsorimage = "" } = $$props;
|
|
994
|
-
let { sponsortitle = "" } = $$props;
|
|
995
|
-
let { paymenturl = "" } = $$props;
|
|
996
|
-
let { paymentimage = "" } = $$props;
|
|
997
|
-
let { paymenttitle = "" } = $$props;
|
|
998
|
-
let { vendorurl = "" } = $$props;
|
|
999
|
-
let { vendorimage = "" } = $$props;
|
|
1000
|
-
let { vendortitle = "" } = $$props;
|
|
1001
|
-
let { helperlinkurl = "" } = $$props;
|
|
1002
|
-
let { helperlinkimage = "" } = $$props;
|
|
1003
|
-
let { helperlinktitle = "" } = $$props;
|
|
1004
|
-
let { licenseurl = "" } = $$props;
|
|
1005
|
-
let { licenseimage = "" } = $$props;
|
|
1006
|
-
let { licensetitle = "" } = $$props;
|
|
1007
|
-
let { sociallinkurl = "" } = $$props;
|
|
1008
|
-
let { sociallinkimage = "" } = $$props;
|
|
1009
|
-
let { sociallinktitle = "" } = $$props;
|
|
1010
|
-
let { clientstyling = "" } = $$props;
|
|
1011
|
-
let { target = "_self" } = $$props;
|
|
1012
|
-
let thumbnailContainer;
|
|
1013
|
-
|
|
1014
|
-
const setClientStyling = () => {
|
|
1015
|
-
let sheet = document.createElement("style");
|
|
1016
|
-
sheet.innerHTML = clientstyling;
|
|
1017
|
-
thumbnailContainer.appendChild(sheet);
|
|
1018
|
-
};
|
|
1019
|
-
|
|
1020
|
-
const writable_props = [
|
|
1021
|
-
"sponsorurl",
|
|
1022
|
-
"sponsorimage",
|
|
1023
|
-
"sponsortitle",
|
|
1024
|
-
"paymenturl",
|
|
1025
|
-
"paymentimage",
|
|
1026
|
-
"paymenttitle",
|
|
1027
|
-
"vendorurl",
|
|
1028
|
-
"vendorimage",
|
|
1029
|
-
"vendortitle",
|
|
1030
|
-
"helperlinkurl",
|
|
1031
|
-
"helperlinkimage",
|
|
1032
|
-
"helperlinktitle",
|
|
1033
|
-
"licenseurl",
|
|
1034
|
-
"licenseimage",
|
|
1035
|
-
"licensetitle",
|
|
1036
|
-
"sociallinkurl",
|
|
1037
|
-
"sociallinkimage",
|
|
1038
|
-
"sociallinktitle",
|
|
1039
|
-
"clientstyling",
|
|
1040
|
-
"target"
|
|
1041
|
-
];
|
|
1042
|
-
|
|
1043
|
-
Object.keys($$props).forEach(key => {
|
|
1044
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
1045
|
-
});
|
|
1046
|
-
|
|
1047
|
-
function div_binding($$value) {
|
|
1048
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
1049
|
-
thumbnailContainer = $$value;
|
|
1050
|
-
$$invalidate(19, thumbnailContainer);
|
|
1051
|
-
});
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
$$self.$$set = $$props => {
|
|
1055
|
-
if ("sponsorurl" in $$props) $$invalidate(0, sponsorurl = $$props.sponsorurl);
|
|
1056
|
-
if ("sponsorimage" in $$props) $$invalidate(1, sponsorimage = $$props.sponsorimage);
|
|
1057
|
-
if ("sponsortitle" in $$props) $$invalidate(2, sponsortitle = $$props.sponsortitle);
|
|
1058
|
-
if ("paymenturl" in $$props) $$invalidate(3, paymenturl = $$props.paymenturl);
|
|
1059
|
-
if ("paymentimage" in $$props) $$invalidate(4, paymentimage = $$props.paymentimage);
|
|
1060
|
-
if ("paymenttitle" in $$props) $$invalidate(5, paymenttitle = $$props.paymenttitle);
|
|
1061
|
-
if ("vendorurl" in $$props) $$invalidate(6, vendorurl = $$props.vendorurl);
|
|
1062
|
-
if ("vendorimage" in $$props) $$invalidate(7, vendorimage = $$props.vendorimage);
|
|
1063
|
-
if ("vendortitle" in $$props) $$invalidate(8, vendortitle = $$props.vendortitle);
|
|
1064
|
-
if ("helperlinkurl" in $$props) $$invalidate(9, helperlinkurl = $$props.helperlinkurl);
|
|
1065
|
-
if ("helperlinkimage" in $$props) $$invalidate(10, helperlinkimage = $$props.helperlinkimage);
|
|
1066
|
-
if ("helperlinktitle" in $$props) $$invalidate(11, helperlinktitle = $$props.helperlinktitle);
|
|
1067
|
-
if ("licenseurl" in $$props) $$invalidate(12, licenseurl = $$props.licenseurl);
|
|
1068
|
-
if ("licenseimage" in $$props) $$invalidate(13, licenseimage = $$props.licenseimage);
|
|
1069
|
-
if ("licensetitle" in $$props) $$invalidate(14, licensetitle = $$props.licensetitle);
|
|
1070
|
-
if ("sociallinkurl" in $$props) $$invalidate(15, sociallinkurl = $$props.sociallinkurl);
|
|
1071
|
-
if ("sociallinkimage" in $$props) $$invalidate(16, sociallinkimage = $$props.sociallinkimage);
|
|
1072
|
-
if ("sociallinktitle" in $$props) $$invalidate(17, sociallinktitle = $$props.sociallinktitle);
|
|
1073
|
-
if ("clientstyling" in $$props) $$invalidate(20, clientstyling = $$props.clientstyling);
|
|
1074
|
-
if ("target" in $$props) $$invalidate(18, target = $$props.target);
|
|
1075
|
-
};
|
|
1076
|
-
|
|
1077
|
-
$$self.$capture_state = () => ({
|
|
1078
|
-
sponsorurl,
|
|
1079
|
-
sponsorimage,
|
|
1080
|
-
sponsortitle,
|
|
1081
|
-
paymenturl,
|
|
1082
|
-
paymentimage,
|
|
1083
|
-
paymenttitle,
|
|
1084
|
-
vendorurl,
|
|
1085
|
-
vendorimage,
|
|
1086
|
-
vendortitle,
|
|
1087
|
-
helperlinkurl,
|
|
1088
|
-
helperlinkimage,
|
|
1089
|
-
helperlinktitle,
|
|
1090
|
-
licenseurl,
|
|
1091
|
-
licenseimage,
|
|
1092
|
-
licensetitle,
|
|
1093
|
-
sociallinkurl,
|
|
1094
|
-
sociallinkimage,
|
|
1095
|
-
sociallinktitle,
|
|
1096
|
-
clientstyling,
|
|
1097
|
-
target,
|
|
1098
|
-
thumbnailContainer,
|
|
1099
|
-
setClientStyling
|
|
1100
|
-
});
|
|
1101
|
-
|
|
1102
|
-
$$self.$inject_state = $$props => {
|
|
1103
|
-
if ("sponsorurl" in $$props) $$invalidate(0, sponsorurl = $$props.sponsorurl);
|
|
1104
|
-
if ("sponsorimage" in $$props) $$invalidate(1, sponsorimage = $$props.sponsorimage);
|
|
1105
|
-
if ("sponsortitle" in $$props) $$invalidate(2, sponsortitle = $$props.sponsortitle);
|
|
1106
|
-
if ("paymenturl" in $$props) $$invalidate(3, paymenturl = $$props.paymenturl);
|
|
1107
|
-
if ("paymentimage" in $$props) $$invalidate(4, paymentimage = $$props.paymentimage);
|
|
1108
|
-
if ("paymenttitle" in $$props) $$invalidate(5, paymenttitle = $$props.paymenttitle);
|
|
1109
|
-
if ("vendorurl" in $$props) $$invalidate(6, vendorurl = $$props.vendorurl);
|
|
1110
|
-
if ("vendorimage" in $$props) $$invalidate(7, vendorimage = $$props.vendorimage);
|
|
1111
|
-
if ("vendortitle" in $$props) $$invalidate(8, vendortitle = $$props.vendortitle);
|
|
1112
|
-
if ("helperlinkurl" in $$props) $$invalidate(9, helperlinkurl = $$props.helperlinkurl);
|
|
1113
|
-
if ("helperlinkimage" in $$props) $$invalidate(10, helperlinkimage = $$props.helperlinkimage);
|
|
1114
|
-
if ("helperlinktitle" in $$props) $$invalidate(11, helperlinktitle = $$props.helperlinktitle);
|
|
1115
|
-
if ("licenseurl" in $$props) $$invalidate(12, licenseurl = $$props.licenseurl);
|
|
1116
|
-
if ("licenseimage" in $$props) $$invalidate(13, licenseimage = $$props.licenseimage);
|
|
1117
|
-
if ("licensetitle" in $$props) $$invalidate(14, licensetitle = $$props.licensetitle);
|
|
1118
|
-
if ("sociallinkurl" in $$props) $$invalidate(15, sociallinkurl = $$props.sociallinkurl);
|
|
1119
|
-
if ("sociallinkimage" in $$props) $$invalidate(16, sociallinkimage = $$props.sociallinkimage);
|
|
1120
|
-
if ("sociallinktitle" in $$props) $$invalidate(17, sociallinktitle = $$props.sociallinktitle);
|
|
1121
|
-
if ("clientstyling" in $$props) $$invalidate(20, clientstyling = $$props.clientstyling);
|
|
1122
|
-
if ("target" in $$props) $$invalidate(18, target = $$props.target);
|
|
1123
|
-
if ("thumbnailContainer" in $$props) $$invalidate(19, thumbnailContainer = $$props.thumbnailContainer);
|
|
1124
|
-
};
|
|
1125
|
-
|
|
1126
|
-
if ($$props && "$$inject" in $$props) {
|
|
1127
|
-
$$self.$inject_state($$props.$$inject);
|
|
1128
|
-
}
|
|
1129
|
-
|
|
1130
|
-
$$self.$$.update = () => {
|
|
1131
|
-
if ($$self.$$.dirty & /*clientstyling*/ 1048576) {
|
|
1132
|
-
clientstyling && setClientStyling();
|
|
1133
|
-
}
|
|
1134
|
-
};
|
|
1135
|
-
|
|
1136
|
-
return [
|
|
1137
|
-
sponsorurl,
|
|
1138
|
-
sponsorimage,
|
|
1139
|
-
sponsortitle,
|
|
1140
|
-
paymenturl,
|
|
1141
|
-
paymentimage,
|
|
1142
|
-
paymenttitle,
|
|
1143
|
-
vendorurl,
|
|
1144
|
-
vendorimage,
|
|
1145
|
-
vendortitle,
|
|
1146
|
-
helperlinkurl,
|
|
1147
|
-
helperlinkimage,
|
|
1148
|
-
helperlinktitle,
|
|
1149
|
-
licenseurl,
|
|
1150
|
-
licenseimage,
|
|
1151
|
-
licensetitle,
|
|
1152
|
-
sociallinkurl,
|
|
1153
|
-
sociallinkimage,
|
|
1154
|
-
sociallinktitle,
|
|
1155
|
-
target,
|
|
1156
|
-
thumbnailContainer,
|
|
1157
|
-
clientstyling,
|
|
1158
|
-
div_binding
|
|
1159
|
-
];
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
class CasinoFooterThumbnail extends SvelteElement {
|
|
1163
|
-
constructor(options) {
|
|
1164
|
-
super();
|
|
1165
|
-
this.shadowRoot.innerHTML = `<style>.FooterItem{display:inline-block;padding:0 15.008px}.FooterItem .FooterSponsorLink,.FooterItem .FooterPaymentLink{display:block}.FooterItem .FooterSponsorLink{display:flex;align-items:center}.FooterItem .FooterPaymentLink,.FooterItem .FooterHelperLink{display:flex;align-items:center;justify-content:center}.FooterItem .FooterLinkDisabled{pointer-events:none;cursor:auto}.FooterItem .SponsorTitle,.FooterItem .PaymentTitle,.FooterItem .HelperTitle{font-size:9.008px;text-decoration:none;color:#808080;text-align:center}.FooterItem .HelperTitle{font-size:8px}.FooterItem.HelperLinkItem p{font-size:10px}.FooterItem .FooterItemAnchor{display:flex;flex-direction:column;gap:10px;text-decoration:none}.SponsorTitle{margin:0}.FooterLink{display:block;text-align:center}@media only screen and (max-width: 768px){.FooterItem{padding:0 5.008px}.FooterItem.PaymentItem{padding:15.008px 5.008px}.FooterItem.GameVendorItem{padding:0 10px}}</style>`;
|
|
1166
|
-
|
|
1167
|
-
init(
|
|
1168
|
-
this,
|
|
1169
|
-
{
|
|
1170
|
-
target: this.shadowRoot,
|
|
1171
|
-
props: attribute_to_object(this.attributes),
|
|
1172
|
-
customElement: true
|
|
1173
|
-
},
|
|
1174
|
-
instance$2,
|
|
1175
|
-
create_fragment$2,
|
|
1176
|
-
safe_not_equal,
|
|
1177
|
-
{
|
|
1178
|
-
sponsorurl: 0,
|
|
1179
|
-
sponsorimage: 1,
|
|
1180
|
-
sponsortitle: 2,
|
|
1181
|
-
paymenturl: 3,
|
|
1182
|
-
paymentimage: 4,
|
|
1183
|
-
paymenttitle: 5,
|
|
1184
|
-
vendorurl: 6,
|
|
1185
|
-
vendorimage: 7,
|
|
1186
|
-
vendortitle: 8,
|
|
1187
|
-
helperlinkurl: 9,
|
|
1188
|
-
helperlinkimage: 10,
|
|
1189
|
-
helperlinktitle: 11,
|
|
1190
|
-
licenseurl: 12,
|
|
1191
|
-
licenseimage: 13,
|
|
1192
|
-
licensetitle: 14,
|
|
1193
|
-
sociallinkurl: 15,
|
|
1194
|
-
sociallinkimage: 16,
|
|
1195
|
-
sociallinktitle: 17,
|
|
1196
|
-
clientstyling: 20,
|
|
1197
|
-
target: 18
|
|
1198
|
-
}
|
|
1199
|
-
);
|
|
1200
|
-
|
|
1201
|
-
if (options) {
|
|
1202
|
-
if (options.target) {
|
|
1203
|
-
insert_dev(options.target, this, options.anchor);
|
|
1204
|
-
}
|
|
1205
|
-
|
|
1206
|
-
if (options.props) {
|
|
1207
|
-
this.$set(options.props);
|
|
1208
|
-
flush();
|
|
1209
|
-
}
|
|
1210
|
-
}
|
|
1211
|
-
}
|
|
1212
|
-
|
|
1213
|
-
static get observedAttributes() {
|
|
1214
|
-
return [
|
|
1215
|
-
"sponsorurl",
|
|
1216
|
-
"sponsorimage",
|
|
1217
|
-
"sponsortitle",
|
|
1218
|
-
"paymenturl",
|
|
1219
|
-
"paymentimage",
|
|
1220
|
-
"paymenttitle",
|
|
1221
|
-
"vendorurl",
|
|
1222
|
-
"vendorimage",
|
|
1223
|
-
"vendortitle",
|
|
1224
|
-
"helperlinkurl",
|
|
1225
|
-
"helperlinkimage",
|
|
1226
|
-
"helperlinktitle",
|
|
1227
|
-
"licenseurl",
|
|
1228
|
-
"licenseimage",
|
|
1229
|
-
"licensetitle",
|
|
1230
|
-
"sociallinkurl",
|
|
1231
|
-
"sociallinkimage",
|
|
1232
|
-
"sociallinktitle",
|
|
1233
|
-
"clientstyling",
|
|
1234
|
-
"target"
|
|
1235
|
-
];
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
get sponsorurl() {
|
|
1239
|
-
return this.$$.ctx[0];
|
|
1240
|
-
}
|
|
1241
|
-
|
|
1242
|
-
set sponsorurl(sponsorurl) {
|
|
1243
|
-
this.$set({ sponsorurl });
|
|
1244
|
-
flush();
|
|
1245
|
-
}
|
|
1246
|
-
|
|
1247
|
-
get sponsorimage() {
|
|
1248
|
-
return this.$$.ctx[1];
|
|
1249
|
-
}
|
|
1250
|
-
|
|
1251
|
-
set sponsorimage(sponsorimage) {
|
|
1252
|
-
this.$set({ sponsorimage });
|
|
1253
|
-
flush();
|
|
1254
|
-
}
|
|
1255
|
-
|
|
1256
|
-
get sponsortitle() {
|
|
1257
|
-
return this.$$.ctx[2];
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
set sponsortitle(sponsortitle) {
|
|
1261
|
-
this.$set({ sponsortitle });
|
|
1262
|
-
flush();
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
|
-
get paymenturl() {
|
|
1266
|
-
return this.$$.ctx[3];
|
|
1267
|
-
}
|
|
1268
|
-
|
|
1269
|
-
set paymenturl(paymenturl) {
|
|
1270
|
-
this.$set({ paymenturl });
|
|
1271
|
-
flush();
|
|
1272
|
-
}
|
|
1273
|
-
|
|
1274
|
-
get paymentimage() {
|
|
1275
|
-
return this.$$.ctx[4];
|
|
1276
|
-
}
|
|
1277
|
-
|
|
1278
|
-
set paymentimage(paymentimage) {
|
|
1279
|
-
this.$set({ paymentimage });
|
|
1280
|
-
flush();
|
|
1281
|
-
}
|
|
1282
|
-
|
|
1283
|
-
get paymenttitle() {
|
|
1284
|
-
return this.$$.ctx[5];
|
|
1285
|
-
}
|
|
1286
|
-
|
|
1287
|
-
set paymenttitle(paymenttitle) {
|
|
1288
|
-
this.$set({ paymenttitle });
|
|
1289
|
-
flush();
|
|
1290
|
-
}
|
|
1291
|
-
|
|
1292
|
-
get vendorurl() {
|
|
1293
|
-
return this.$$.ctx[6];
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
set vendorurl(vendorurl) {
|
|
1297
|
-
this.$set({ vendorurl });
|
|
1298
|
-
flush();
|
|
1299
|
-
}
|
|
1300
|
-
|
|
1301
|
-
get vendorimage() {
|
|
1302
|
-
return this.$$.ctx[7];
|
|
1303
|
-
}
|
|
1304
|
-
|
|
1305
|
-
set vendorimage(vendorimage) {
|
|
1306
|
-
this.$set({ vendorimage });
|
|
1307
|
-
flush();
|
|
1308
|
-
}
|
|
1309
|
-
|
|
1310
|
-
get vendortitle() {
|
|
1311
|
-
return this.$$.ctx[8];
|
|
1312
|
-
}
|
|
1313
|
-
|
|
1314
|
-
set vendortitle(vendortitle) {
|
|
1315
|
-
this.$set({ vendortitle });
|
|
1316
|
-
flush();
|
|
1317
|
-
}
|
|
1318
|
-
|
|
1319
|
-
get helperlinkurl() {
|
|
1320
|
-
return this.$$.ctx[9];
|
|
1321
|
-
}
|
|
1322
|
-
|
|
1323
|
-
set helperlinkurl(helperlinkurl) {
|
|
1324
|
-
this.$set({ helperlinkurl });
|
|
1325
|
-
flush();
|
|
1326
|
-
}
|
|
1327
|
-
|
|
1328
|
-
get helperlinkimage() {
|
|
1329
|
-
return this.$$.ctx[10];
|
|
1330
|
-
}
|
|
1331
|
-
|
|
1332
|
-
set helperlinkimage(helperlinkimage) {
|
|
1333
|
-
this.$set({ helperlinkimage });
|
|
1334
|
-
flush();
|
|
1335
|
-
}
|
|
1336
|
-
|
|
1337
|
-
get helperlinktitle() {
|
|
1338
|
-
return this.$$.ctx[11];
|
|
1339
|
-
}
|
|
1340
|
-
|
|
1341
|
-
set helperlinktitle(helperlinktitle) {
|
|
1342
|
-
this.$set({ helperlinktitle });
|
|
1343
|
-
flush();
|
|
1344
|
-
}
|
|
1345
|
-
|
|
1346
|
-
get licenseurl() {
|
|
1347
|
-
return this.$$.ctx[12];
|
|
1348
|
-
}
|
|
1349
|
-
|
|
1350
|
-
set licenseurl(licenseurl) {
|
|
1351
|
-
this.$set({ licenseurl });
|
|
1352
|
-
flush();
|
|
1353
|
-
}
|
|
1354
|
-
|
|
1355
|
-
get licenseimage() {
|
|
1356
|
-
return this.$$.ctx[13];
|
|
1357
|
-
}
|
|
1358
|
-
|
|
1359
|
-
set licenseimage(licenseimage) {
|
|
1360
|
-
this.$set({ licenseimage });
|
|
1361
|
-
flush();
|
|
1362
|
-
}
|
|
1363
|
-
|
|
1364
|
-
get licensetitle() {
|
|
1365
|
-
return this.$$.ctx[14];
|
|
1366
|
-
}
|
|
1367
|
-
|
|
1368
|
-
set licensetitle(licensetitle) {
|
|
1369
|
-
this.$set({ licensetitle });
|
|
1370
|
-
flush();
|
|
1371
|
-
}
|
|
1372
|
-
|
|
1373
|
-
get sociallinkurl() {
|
|
1374
|
-
return this.$$.ctx[15];
|
|
1375
|
-
}
|
|
1376
|
-
|
|
1377
|
-
set sociallinkurl(sociallinkurl) {
|
|
1378
|
-
this.$set({ sociallinkurl });
|
|
1379
|
-
flush();
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
get sociallinkimage() {
|
|
1383
|
-
return this.$$.ctx[16];
|
|
1384
|
-
}
|
|
1385
|
-
|
|
1386
|
-
set sociallinkimage(sociallinkimage) {
|
|
1387
|
-
this.$set({ sociallinkimage });
|
|
1388
|
-
flush();
|
|
1389
|
-
}
|
|
1390
|
-
|
|
1391
|
-
get sociallinktitle() {
|
|
1392
|
-
return this.$$.ctx[17];
|
|
1393
|
-
}
|
|
1394
|
-
|
|
1395
|
-
set sociallinktitle(sociallinktitle) {
|
|
1396
|
-
this.$set({ sociallinktitle });
|
|
1397
|
-
flush();
|
|
1398
|
-
}
|
|
1399
|
-
|
|
1400
|
-
get clientstyling() {
|
|
1401
|
-
return this.$$.ctx[20];
|
|
1402
|
-
}
|
|
1403
|
-
|
|
1404
|
-
set clientstyling(clientstyling) {
|
|
1405
|
-
this.$set({ clientstyling });
|
|
1406
|
-
flush();
|
|
1407
|
-
}
|
|
1408
|
-
|
|
1409
|
-
get target() {
|
|
1410
|
-
return this.$$.ctx[18];
|
|
1411
|
-
}
|
|
1412
|
-
|
|
1413
|
-
set target(target) {
|
|
1414
|
-
this.$set({ target });
|
|
1415
|
-
flush();
|
|
1416
|
-
}
|
|
1417
|
-
}
|
|
1418
|
-
|
|
1419
|
-
!customElements.get('casino-footer-thumbnail') && customElements.define('casino-footer-thumbnail', CasinoFooterThumbnail);
|
|
1420
|
-
|
|
1421
|
-
/* ../casino-footer-section/src/CasinoFooterSection.svelte generated by Svelte v3.37.0 */
|
|
1422
|
-
const file$1 = "../casino-footer-section/src/CasinoFooterSection.svelte";
|
|
1423
|
-
|
|
1424
|
-
function get_each_context_5(ctx, list, i) {
|
|
1425
|
-
const child_ctx = ctx.slice();
|
|
1426
|
-
child_ctx[24] = list[i];
|
|
1427
|
-
return child_ctx;
|
|
1428
|
-
}
|
|
1429
|
-
|
|
1430
|
-
function get_each_context_4(ctx, list, i) {
|
|
1431
|
-
const child_ctx = ctx.slice();
|
|
1432
|
-
child_ctx[24] = list[i];
|
|
1433
|
-
return child_ctx;
|
|
1434
|
-
}
|
|
1435
|
-
|
|
1436
|
-
function get_each_context_3(ctx, list, i) {
|
|
1437
|
-
const child_ctx = ctx.slice();
|
|
1438
|
-
child_ctx[24] = list[i];
|
|
1439
|
-
return child_ctx;
|
|
1440
|
-
}
|
|
1441
|
-
|
|
1442
|
-
function get_each_context_2(ctx, list, i) {
|
|
1443
|
-
const child_ctx = ctx.slice();
|
|
1444
|
-
child_ctx[24] = list[i];
|
|
1445
|
-
return child_ctx;
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
function get_each_context_1(ctx, list, i) {
|
|
1449
|
-
const child_ctx = ctx.slice();
|
|
1450
|
-
child_ctx[21] = list[i];
|
|
1451
|
-
return child_ctx;
|
|
1452
|
-
}
|
|
1453
|
-
|
|
1454
|
-
function get_each_context(ctx, list, i) {
|
|
1455
|
-
const child_ctx = ctx.slice();
|
|
1456
|
-
child_ctx[18] = list[i];
|
|
1457
|
-
return child_ctx;
|
|
1458
|
-
}
|
|
1459
|
-
|
|
1460
|
-
// (74:51)
|
|
1461
|
-
function create_if_block_5$1(ctx) {
|
|
1462
|
-
let div;
|
|
1463
|
-
let each_value_5 = /*footersociallinks*/ ctx[13];
|
|
1464
|
-
validate_each_argument(each_value_5);
|
|
1465
|
-
let each_blocks = [];
|
|
1466
|
-
|
|
1467
|
-
for (let i = 0; i < each_value_5.length; i += 1) {
|
|
1468
|
-
each_blocks[i] = create_each_block_5(get_each_context_5(ctx, each_value_5, i));
|
|
1469
|
-
}
|
|
1470
|
-
|
|
1471
|
-
const block = {
|
|
1472
|
-
c: function create() {
|
|
1473
|
-
div = element("div");
|
|
1474
|
-
|
|
1475
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1476
|
-
each_blocks[i].c();
|
|
1477
|
-
}
|
|
1478
|
-
|
|
1479
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1480
|
-
add_location(div, file$1, 74, 4, 3415);
|
|
1481
|
-
},
|
|
1482
|
-
m: function mount(target, anchor) {
|
|
1483
|
-
insert_dev(target, div, anchor);
|
|
1484
|
-
|
|
1485
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1486
|
-
each_blocks[i].m(div, null);
|
|
1487
|
-
}
|
|
1488
|
-
},
|
|
1489
|
-
p: function update(ctx, dirty) {
|
|
1490
|
-
if (dirty[0] & /*footersociallinks, clientstyling, target*/ 8384) {
|
|
1491
|
-
each_value_5 = /*footersociallinks*/ ctx[13];
|
|
1492
|
-
validate_each_argument(each_value_5);
|
|
1493
|
-
let i;
|
|
1494
|
-
|
|
1495
|
-
for (i = 0; i < each_value_5.length; i += 1) {
|
|
1496
|
-
const child_ctx = get_each_context_5(ctx, each_value_5, i);
|
|
1497
|
-
|
|
1498
|
-
if (each_blocks[i]) {
|
|
1499
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1500
|
-
} else {
|
|
1501
|
-
each_blocks[i] = create_each_block_5(child_ctx);
|
|
1502
|
-
each_blocks[i].c();
|
|
1503
|
-
each_blocks[i].m(div, null);
|
|
1504
|
-
}
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1508
|
-
each_blocks[i].d(1);
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
each_blocks.length = each_value_5.length;
|
|
1512
|
-
}
|
|
1513
|
-
},
|
|
1514
|
-
d: function destroy(detaching) {
|
|
1515
|
-
if (detaching) detach_dev(div);
|
|
1516
|
-
destroy_each(each_blocks, detaching);
|
|
1517
|
-
}
|
|
1518
|
-
};
|
|
1519
|
-
|
|
1520
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1521
|
-
block,
|
|
1522
|
-
id: create_if_block_5$1.name,
|
|
1523
|
-
type: "if",
|
|
1524
|
-
source: "(74:51) ",
|
|
1525
|
-
ctx
|
|
1526
|
-
});
|
|
1527
|
-
|
|
1528
|
-
return block;
|
|
1529
|
-
}
|
|
1530
|
-
|
|
1531
|
-
// (68:49)
|
|
1532
|
-
function create_if_block_4$1(ctx) {
|
|
1533
|
-
let div;
|
|
1534
|
-
let each_value_4 = /*footerlicenses*/ ctx[12];
|
|
1535
|
-
validate_each_argument(each_value_4);
|
|
1536
|
-
let each_blocks = [];
|
|
1537
|
-
|
|
1538
|
-
for (let i = 0; i < each_value_4.length; i += 1) {
|
|
1539
|
-
each_blocks[i] = create_each_block_4(get_each_context_4(ctx, each_value_4, i));
|
|
1540
|
-
}
|
|
1541
|
-
|
|
1542
|
-
const block = {
|
|
1543
|
-
c: function create() {
|
|
1544
|
-
div = element("div");
|
|
1545
|
-
|
|
1546
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1547
|
-
each_blocks[i].c();
|
|
1548
|
-
}
|
|
1549
|
-
|
|
1550
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1551
|
-
add_location(div, file$1, 68, 4, 3030);
|
|
1552
|
-
},
|
|
1553
|
-
m: function mount(target, anchor) {
|
|
1554
|
-
insert_dev(target, div, anchor);
|
|
1555
|
-
|
|
1556
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1557
|
-
each_blocks[i].m(div, null);
|
|
1558
|
-
}
|
|
1559
|
-
},
|
|
1560
|
-
p: function update(ctx, dirty) {
|
|
1561
|
-
if (dirty[0] & /*footerlicenses, clientstyling, target*/ 4288) {
|
|
1562
|
-
each_value_4 = /*footerlicenses*/ ctx[12];
|
|
1563
|
-
validate_each_argument(each_value_4);
|
|
1564
|
-
let i;
|
|
1565
|
-
|
|
1566
|
-
for (i = 0; i < each_value_4.length; i += 1) {
|
|
1567
|
-
const child_ctx = get_each_context_4(ctx, each_value_4, i);
|
|
1568
|
-
|
|
1569
|
-
if (each_blocks[i]) {
|
|
1570
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1571
|
-
} else {
|
|
1572
|
-
each_blocks[i] = create_each_block_4(child_ctx);
|
|
1573
|
-
each_blocks[i].c();
|
|
1574
|
-
each_blocks[i].m(div, null);
|
|
1575
|
-
}
|
|
1576
|
-
}
|
|
1577
|
-
|
|
1578
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1579
|
-
each_blocks[i].d(1);
|
|
1580
|
-
}
|
|
1581
|
-
|
|
1582
|
-
each_blocks.length = each_value_4.length;
|
|
1583
|
-
}
|
|
1584
|
-
},
|
|
1585
|
-
d: function destroy(detaching) {
|
|
1586
|
-
if (detaching) detach_dev(div);
|
|
1587
|
-
destroy_each(each_blocks, detaching);
|
|
1588
|
-
}
|
|
1589
|
-
};
|
|
1590
|
-
|
|
1591
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1592
|
-
block,
|
|
1593
|
-
id: create_if_block_4$1.name,
|
|
1594
|
-
type: "if",
|
|
1595
|
-
source: "(68:49) ",
|
|
1596
|
-
ctx
|
|
1597
|
-
});
|
|
1598
|
-
|
|
1599
|
-
return block;
|
|
1600
|
-
}
|
|
1601
|
-
|
|
1602
|
-
// (62:51)
|
|
1603
|
-
function create_if_block_3$1(ctx) {
|
|
1604
|
-
let div;
|
|
1605
|
-
let each_value_3 = /*footerhelperlinks*/ ctx[11];
|
|
1606
|
-
validate_each_argument(each_value_3);
|
|
1607
|
-
let each_blocks = [];
|
|
1608
|
-
|
|
1609
|
-
for (let i = 0; i < each_value_3.length; i += 1) {
|
|
1610
|
-
each_blocks[i] = create_each_block_3(get_each_context_3(ctx, each_value_3, i));
|
|
1611
|
-
}
|
|
1612
|
-
|
|
1613
|
-
const block = {
|
|
1614
|
-
c: function create() {
|
|
1615
|
-
div = element("div");
|
|
1616
|
-
|
|
1617
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1618
|
-
each_blocks[i].c();
|
|
1619
|
-
}
|
|
1620
|
-
|
|
1621
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1622
|
-
add_location(div, file$1, 62, 4, 2632);
|
|
1623
|
-
},
|
|
1624
|
-
m: function mount(target, anchor) {
|
|
1625
|
-
insert_dev(target, div, anchor);
|
|
1626
|
-
|
|
1627
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1628
|
-
each_blocks[i].m(div, null);
|
|
1629
|
-
}
|
|
1630
|
-
},
|
|
1631
|
-
p: function update(ctx, dirty) {
|
|
1632
|
-
if (dirty[0] & /*footerhelperlinks, clientstyling, target*/ 2240) {
|
|
1633
|
-
each_value_3 = /*footerhelperlinks*/ ctx[11];
|
|
1634
|
-
validate_each_argument(each_value_3);
|
|
1635
|
-
let i;
|
|
1636
|
-
|
|
1637
|
-
for (i = 0; i < each_value_3.length; i += 1) {
|
|
1638
|
-
const child_ctx = get_each_context_3(ctx, each_value_3, i);
|
|
1639
|
-
|
|
1640
|
-
if (each_blocks[i]) {
|
|
1641
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1642
|
-
} else {
|
|
1643
|
-
each_blocks[i] = create_each_block_3(child_ctx);
|
|
1644
|
-
each_blocks[i].c();
|
|
1645
|
-
each_blocks[i].m(div, null);
|
|
1646
|
-
}
|
|
1647
|
-
}
|
|
1648
|
-
|
|
1649
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1650
|
-
each_blocks[i].d(1);
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
|
-
each_blocks.length = each_value_3.length;
|
|
1654
|
-
}
|
|
1655
|
-
},
|
|
1656
|
-
d: function destroy(detaching) {
|
|
1657
|
-
if (detaching) detach_dev(div);
|
|
1658
|
-
destroy_each(each_blocks, detaching);
|
|
1659
|
-
}
|
|
1660
|
-
};
|
|
1661
|
-
|
|
1662
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1663
|
-
block,
|
|
1664
|
-
id: create_if_block_3$1.name,
|
|
1665
|
-
type: "if",
|
|
1666
|
-
source: "(62:51) ",
|
|
1667
|
-
ctx
|
|
1668
|
-
});
|
|
1669
|
-
|
|
1670
|
-
return block;
|
|
1671
|
-
}
|
|
1672
|
-
|
|
1673
|
-
// (56:47)
|
|
1674
|
-
function create_if_block_2$1(ctx) {
|
|
1675
|
-
let div;
|
|
1676
|
-
let each_value_2 = /*footervendors*/ ctx[10];
|
|
1677
|
-
validate_each_argument(each_value_2);
|
|
1678
|
-
let each_blocks = [];
|
|
1679
|
-
|
|
1680
|
-
for (let i = 0; i < each_value_2.length; i += 1) {
|
|
1681
|
-
each_blocks[i] = create_each_block_2(get_each_context_2(ctx, each_value_2, i));
|
|
1682
|
-
}
|
|
1683
|
-
|
|
1684
|
-
const block = {
|
|
1685
|
-
c: function create() {
|
|
1686
|
-
div = element("div");
|
|
1687
|
-
|
|
1688
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1689
|
-
each_blocks[i].c();
|
|
1690
|
-
}
|
|
1691
|
-
|
|
1692
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1693
|
-
add_location(div, file$1, 56, 4, 2242);
|
|
1694
|
-
},
|
|
1695
|
-
m: function mount(target, anchor) {
|
|
1696
|
-
insert_dev(target, div, anchor);
|
|
1697
|
-
|
|
1698
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1699
|
-
each_blocks[i].m(div, null);
|
|
1700
|
-
}
|
|
1701
|
-
},
|
|
1702
|
-
p: function update(ctx, dirty) {
|
|
1703
|
-
if (dirty[0] & /*footervendors, clientstyling, target*/ 1216) {
|
|
1704
|
-
each_value_2 = /*footervendors*/ ctx[10];
|
|
1705
|
-
validate_each_argument(each_value_2);
|
|
1706
|
-
let i;
|
|
1707
|
-
|
|
1708
|
-
for (i = 0; i < each_value_2.length; i += 1) {
|
|
1709
|
-
const child_ctx = get_each_context_2(ctx, each_value_2, i);
|
|
1710
|
-
|
|
1711
|
-
if (each_blocks[i]) {
|
|
1712
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1713
|
-
} else {
|
|
1714
|
-
each_blocks[i] = create_each_block_2(child_ctx);
|
|
1715
|
-
each_blocks[i].c();
|
|
1716
|
-
each_blocks[i].m(div, null);
|
|
1717
|
-
}
|
|
1718
|
-
}
|
|
1719
|
-
|
|
1720
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1721
|
-
each_blocks[i].d(1);
|
|
1722
|
-
}
|
|
1723
|
-
|
|
1724
|
-
each_blocks.length = each_value_2.length;
|
|
1725
|
-
}
|
|
1726
|
-
},
|
|
1727
|
-
d: function destroy(detaching) {
|
|
1728
|
-
if (detaching) detach_dev(div);
|
|
1729
|
-
destroy_each(each_blocks, detaching);
|
|
1730
|
-
}
|
|
1731
|
-
};
|
|
1732
|
-
|
|
1733
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1734
|
-
block,
|
|
1735
|
-
id: create_if_block_2$1.name,
|
|
1736
|
-
type: "if",
|
|
1737
|
-
source: "(56:47) ",
|
|
1738
|
-
ctx
|
|
1739
|
-
});
|
|
1740
|
-
|
|
1741
|
-
return block;
|
|
1742
|
-
}
|
|
1743
|
-
|
|
1744
|
-
// (50:48)
|
|
1745
|
-
function create_if_block_1$1(ctx) {
|
|
1746
|
-
let div;
|
|
1747
|
-
let each_value_1 = /*footerpayment*/ ctx[9];
|
|
1748
|
-
validate_each_argument(each_value_1);
|
|
1749
|
-
let each_blocks = [];
|
|
1750
|
-
|
|
1751
|
-
for (let i = 0; i < each_value_1.length; i += 1) {
|
|
1752
|
-
each_blocks[i] = create_each_block_1(get_each_context_1(ctx, each_value_1, i));
|
|
1753
|
-
}
|
|
1754
|
-
|
|
1755
|
-
const block = {
|
|
1756
|
-
c: function create() {
|
|
1757
|
-
div = element("div");
|
|
1758
|
-
|
|
1759
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1760
|
-
each_blocks[i].c();
|
|
1761
|
-
}
|
|
1762
|
-
|
|
1763
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1764
|
-
add_location(div, file$1, 50, 2, 1848);
|
|
1765
|
-
},
|
|
1766
|
-
m: function mount(target, anchor) {
|
|
1767
|
-
insert_dev(target, div, anchor);
|
|
1768
|
-
|
|
1769
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1770
|
-
each_blocks[i].m(div, null);
|
|
1771
|
-
}
|
|
1772
|
-
},
|
|
1773
|
-
p: function update(ctx, dirty) {
|
|
1774
|
-
if (dirty[0] & /*footerpayment, clientstyling, target*/ 704) {
|
|
1775
|
-
each_value_1 = /*footerpayment*/ ctx[9];
|
|
1776
|
-
validate_each_argument(each_value_1);
|
|
1777
|
-
let i;
|
|
1778
|
-
|
|
1779
|
-
for (i = 0; i < each_value_1.length; i += 1) {
|
|
1780
|
-
const child_ctx = get_each_context_1(ctx, each_value_1, i);
|
|
1781
|
-
|
|
1782
|
-
if (each_blocks[i]) {
|
|
1783
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1784
|
-
} else {
|
|
1785
|
-
each_blocks[i] = create_each_block_1(child_ctx);
|
|
1786
|
-
each_blocks[i].c();
|
|
1787
|
-
each_blocks[i].m(div, null);
|
|
1788
|
-
}
|
|
1789
|
-
}
|
|
1790
|
-
|
|
1791
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1792
|
-
each_blocks[i].d(1);
|
|
1793
|
-
}
|
|
1794
|
-
|
|
1795
|
-
each_blocks.length = each_value_1.length;
|
|
1796
|
-
}
|
|
1797
|
-
},
|
|
1798
|
-
d: function destroy(detaching) {
|
|
1799
|
-
if (detaching) detach_dev(div);
|
|
1800
|
-
destroy_each(each_blocks, detaching);
|
|
1801
|
-
}
|
|
1802
|
-
};
|
|
1803
|
-
|
|
1804
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1805
|
-
block,
|
|
1806
|
-
id: create_if_block_1$1.name,
|
|
1807
|
-
type: "if",
|
|
1808
|
-
source: "(50:48) ",
|
|
1809
|
-
ctx
|
|
1810
|
-
});
|
|
1811
|
-
|
|
1812
|
-
return block;
|
|
1813
|
-
}
|
|
1814
|
-
|
|
1815
|
-
// (44:2) {#if sponsorflag && footersponsors.length}
|
|
1816
|
-
function create_if_block$1(ctx) {
|
|
1817
|
-
let div;
|
|
1818
|
-
let each_value = /*footersponsors*/ ctx[8];
|
|
1819
|
-
validate_each_argument(each_value);
|
|
1820
|
-
let each_blocks = [];
|
|
1821
|
-
|
|
1822
|
-
for (let i = 0; i < each_value.length; i += 1) {
|
|
1823
|
-
each_blocks[i] = create_each_block(get_each_context(ctx, each_value, i));
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
const block = {
|
|
1827
|
-
c: function create() {
|
|
1828
|
-
div = element("div");
|
|
1829
|
-
|
|
1830
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1831
|
-
each_blocks[i].c();
|
|
1832
|
-
}
|
|
1833
|
-
|
|
1834
|
-
attr_dev(div, "class", "FooterSectionInnerContainer");
|
|
1835
|
-
add_location(div, file$1, 44, 4, 1466);
|
|
1836
|
-
},
|
|
1837
|
-
m: function mount(target, anchor) {
|
|
1838
|
-
insert_dev(target, div, anchor);
|
|
1839
|
-
|
|
1840
|
-
for (let i = 0; i < each_blocks.length; i += 1) {
|
|
1841
|
-
each_blocks[i].m(div, null);
|
|
1842
|
-
}
|
|
1843
|
-
},
|
|
1844
|
-
p: function update(ctx, dirty) {
|
|
1845
|
-
if (dirty[0] & /*footersponsors, clientstyling, target*/ 448) {
|
|
1846
|
-
each_value = /*footersponsors*/ ctx[8];
|
|
1847
|
-
validate_each_argument(each_value);
|
|
1848
|
-
let i;
|
|
1849
|
-
|
|
1850
|
-
for (i = 0; i < each_value.length; i += 1) {
|
|
1851
|
-
const child_ctx = get_each_context(ctx, each_value, i);
|
|
1852
|
-
|
|
1853
|
-
if (each_blocks[i]) {
|
|
1854
|
-
each_blocks[i].p(child_ctx, dirty);
|
|
1855
|
-
} else {
|
|
1856
|
-
each_blocks[i] = create_each_block(child_ctx);
|
|
1857
|
-
each_blocks[i].c();
|
|
1858
|
-
each_blocks[i].m(div, null);
|
|
1859
|
-
}
|
|
1860
|
-
}
|
|
1861
|
-
|
|
1862
|
-
for (; i < each_blocks.length; i += 1) {
|
|
1863
|
-
each_blocks[i].d(1);
|
|
1864
|
-
}
|
|
1865
|
-
|
|
1866
|
-
each_blocks.length = each_value.length;
|
|
1867
|
-
}
|
|
1868
|
-
},
|
|
1869
|
-
d: function destroy(detaching) {
|
|
1870
|
-
if (detaching) detach_dev(div);
|
|
1871
|
-
destroy_each(each_blocks, detaching);
|
|
1872
|
-
}
|
|
1873
|
-
};
|
|
1874
|
-
|
|
1875
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1876
|
-
block,
|
|
1877
|
-
id: create_if_block$1.name,
|
|
1878
|
-
type: "if",
|
|
1879
|
-
source: "(44:2) {#if sponsorflag && footersponsors.length}",
|
|
1880
|
-
ctx
|
|
1881
|
-
});
|
|
1882
|
-
|
|
1883
|
-
return block;
|
|
1884
|
-
}
|
|
1885
|
-
|
|
1886
|
-
// (76:6) {#each footersociallinks as footerData}
|
|
1887
|
-
function create_each_block_5(ctx) {
|
|
1888
|
-
let casino_footer_thumbnail;
|
|
1889
|
-
let casino_footer_thumbnail_sociallinkurl_value;
|
|
1890
|
-
let casino_footer_thumbnail_sociallinkimage_value;
|
|
1891
|
-
let casino_footer_thumbnail_sociallinktitle_value;
|
|
1892
|
-
|
|
1893
|
-
const block = {
|
|
1894
|
-
c: function create() {
|
|
1895
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
1896
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkurl", casino_footer_thumbnail_sociallinkurl_value = /*footerData*/ ctx[24].socialLinkUrl);
|
|
1897
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkimage", casino_footer_thumbnail_sociallinkimage_value = /*footerData*/ ctx[24].socialLinkImage);
|
|
1898
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinktitle", casino_footer_thumbnail_sociallinktitle_value = /*footerData*/ ctx[24].socialLinkTitle);
|
|
1899
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1900
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1901
|
-
add_location(casino_footer_thumbnail, file$1, 76, 8, 3511);
|
|
1902
|
-
},
|
|
1903
|
-
m: function mount(target, anchor) {
|
|
1904
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
1905
|
-
},
|
|
1906
|
-
p: function update(ctx, dirty) {
|
|
1907
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinkurl_value !== (casino_footer_thumbnail_sociallinkurl_value = /*footerData*/ ctx[24].socialLinkUrl)) {
|
|
1908
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkurl", casino_footer_thumbnail_sociallinkurl_value);
|
|
1909
|
-
}
|
|
1910
|
-
|
|
1911
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinkimage_value !== (casino_footer_thumbnail_sociallinkimage_value = /*footerData*/ ctx[24].socialLinkImage)) {
|
|
1912
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinkimage", casino_footer_thumbnail_sociallinkimage_value);
|
|
1913
|
-
}
|
|
1914
|
-
|
|
1915
|
-
if (dirty[0] & /*footersociallinks*/ 8192 && casino_footer_thumbnail_sociallinktitle_value !== (casino_footer_thumbnail_sociallinktitle_value = /*footerData*/ ctx[24].socialLinkTitle)) {
|
|
1916
|
-
set_custom_element_data(casino_footer_thumbnail, "sociallinktitle", casino_footer_thumbnail_sociallinktitle_value);
|
|
1917
|
-
}
|
|
1918
|
-
|
|
1919
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
1920
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1921
|
-
}
|
|
1922
|
-
|
|
1923
|
-
if (dirty[0] & /*target*/ 128) {
|
|
1924
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1925
|
-
}
|
|
1926
|
-
},
|
|
1927
|
-
d: function destroy(detaching) {
|
|
1928
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
1929
|
-
}
|
|
1930
|
-
};
|
|
1931
|
-
|
|
1932
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1933
|
-
block,
|
|
1934
|
-
id: create_each_block_5.name,
|
|
1935
|
-
type: "each",
|
|
1936
|
-
source: "(76:6) {#each footersociallinks as footerData}",
|
|
1937
|
-
ctx
|
|
1938
|
-
});
|
|
1939
|
-
|
|
1940
|
-
return block;
|
|
1941
|
-
}
|
|
1942
|
-
|
|
1943
|
-
// (70:6) {#each footerlicenses as footerData}
|
|
1944
|
-
function create_each_block_4(ctx) {
|
|
1945
|
-
let casino_footer_thumbnail;
|
|
1946
|
-
let casino_footer_thumbnail_licenseurl_value;
|
|
1947
|
-
let casino_footer_thumbnail_licenseimage_value;
|
|
1948
|
-
let casino_footer_thumbnail_licensetitle_value;
|
|
1949
|
-
|
|
1950
|
-
const block = {
|
|
1951
|
-
c: function create() {
|
|
1952
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
1953
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseurl", casino_footer_thumbnail_licenseurl_value = /*footerData*/ ctx[24].licenseUrl);
|
|
1954
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseimage", casino_footer_thumbnail_licenseimage_value = /*footerData*/ ctx[24].licenseImage);
|
|
1955
|
-
set_custom_element_data(casino_footer_thumbnail, "licensetitle", casino_footer_thumbnail_licensetitle_value = /*footerData*/ ctx[24].licenseTitle);
|
|
1956
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1957
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1958
|
-
add_location(casino_footer_thumbnail, file$1, 70, 8, 3123);
|
|
1959
|
-
},
|
|
1960
|
-
m: function mount(target, anchor) {
|
|
1961
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
1962
|
-
},
|
|
1963
|
-
p: function update(ctx, dirty) {
|
|
1964
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licenseurl_value !== (casino_footer_thumbnail_licenseurl_value = /*footerData*/ ctx[24].licenseUrl)) {
|
|
1965
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseurl", casino_footer_thumbnail_licenseurl_value);
|
|
1966
|
-
}
|
|
1967
|
-
|
|
1968
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licenseimage_value !== (casino_footer_thumbnail_licenseimage_value = /*footerData*/ ctx[24].licenseImage)) {
|
|
1969
|
-
set_custom_element_data(casino_footer_thumbnail, "licenseimage", casino_footer_thumbnail_licenseimage_value);
|
|
1970
|
-
}
|
|
1971
|
-
|
|
1972
|
-
if (dirty[0] & /*footerlicenses*/ 4096 && casino_footer_thumbnail_licensetitle_value !== (casino_footer_thumbnail_licensetitle_value = /*footerData*/ ctx[24].licenseTitle)) {
|
|
1973
|
-
set_custom_element_data(casino_footer_thumbnail, "licensetitle", casino_footer_thumbnail_licensetitle_value);
|
|
1974
|
-
}
|
|
1975
|
-
|
|
1976
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
1977
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
1978
|
-
}
|
|
1979
|
-
|
|
1980
|
-
if (dirty[0] & /*target*/ 128) {
|
|
1981
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
1982
|
-
}
|
|
1983
|
-
},
|
|
1984
|
-
d: function destroy(detaching) {
|
|
1985
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
1986
|
-
}
|
|
1987
|
-
};
|
|
1988
|
-
|
|
1989
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
1990
|
-
block,
|
|
1991
|
-
id: create_each_block_4.name,
|
|
1992
|
-
type: "each",
|
|
1993
|
-
source: "(70:6) {#each footerlicenses as footerData}",
|
|
1994
|
-
ctx
|
|
1995
|
-
});
|
|
1996
|
-
|
|
1997
|
-
return block;
|
|
1998
|
-
}
|
|
1999
|
-
|
|
2000
|
-
// (64:6) {#each footerhelperlinks as footerData}
|
|
2001
|
-
function create_each_block_3(ctx) {
|
|
2002
|
-
let casino_footer_thumbnail;
|
|
2003
|
-
let casino_footer_thumbnail_helperlinkurl_value;
|
|
2004
|
-
let casino_footer_thumbnail_helperlinkimage_value;
|
|
2005
|
-
let casino_footer_thumbnail_helperlinktitle_value;
|
|
2006
|
-
|
|
2007
|
-
const block = {
|
|
2008
|
-
c: function create() {
|
|
2009
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2010
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkurl", casino_footer_thumbnail_helperlinkurl_value = /*footerData*/ ctx[24].helpLinkUrl);
|
|
2011
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkimage", casino_footer_thumbnail_helperlinkimage_value = /*footerData*/ ctx[24].helpLinkImage);
|
|
2012
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinktitle", casino_footer_thumbnail_helperlinktitle_value = /*footerData*/ ctx[24].helpLinkTitle);
|
|
2013
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2014
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2015
|
-
add_location(casino_footer_thumbnail, file$1, 64, 8, 2728);
|
|
2016
|
-
},
|
|
2017
|
-
m: function mount(target, anchor) {
|
|
2018
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2019
|
-
},
|
|
2020
|
-
p: function update(ctx, dirty) {
|
|
2021
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinkurl_value !== (casino_footer_thumbnail_helperlinkurl_value = /*footerData*/ ctx[24].helpLinkUrl)) {
|
|
2022
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkurl", casino_footer_thumbnail_helperlinkurl_value);
|
|
2023
|
-
}
|
|
2024
|
-
|
|
2025
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinkimage_value !== (casino_footer_thumbnail_helperlinkimage_value = /*footerData*/ ctx[24].helpLinkImage)) {
|
|
2026
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinkimage", casino_footer_thumbnail_helperlinkimage_value);
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
if (dirty[0] & /*footerhelperlinks*/ 2048 && casino_footer_thumbnail_helperlinktitle_value !== (casino_footer_thumbnail_helperlinktitle_value = /*footerData*/ ctx[24].helpLinkTitle)) {
|
|
2030
|
-
set_custom_element_data(casino_footer_thumbnail, "helperlinktitle", casino_footer_thumbnail_helperlinktitle_value);
|
|
2031
|
-
}
|
|
2032
|
-
|
|
2033
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2034
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2035
|
-
}
|
|
2036
|
-
|
|
2037
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2038
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2039
|
-
}
|
|
2040
|
-
},
|
|
2041
|
-
d: function destroy(detaching) {
|
|
2042
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2043
|
-
}
|
|
2044
|
-
};
|
|
2045
|
-
|
|
2046
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2047
|
-
block,
|
|
2048
|
-
id: create_each_block_3.name,
|
|
2049
|
-
type: "each",
|
|
2050
|
-
source: "(64:6) {#each footerhelperlinks as footerData}",
|
|
2051
|
-
ctx
|
|
2052
|
-
});
|
|
2053
|
-
|
|
2054
|
-
return block;
|
|
2055
|
-
}
|
|
2056
|
-
|
|
2057
|
-
// (58:6) {#each footervendors as footerData}
|
|
2058
|
-
function create_each_block_2(ctx) {
|
|
2059
|
-
let casino_footer_thumbnail;
|
|
2060
|
-
let casino_footer_thumbnail_vendorurl_value;
|
|
2061
|
-
let casino_footer_thumbnail_vendorimage_value;
|
|
2062
|
-
let casino_footer_thumbnail_vendortitle_value;
|
|
2063
|
-
|
|
2064
|
-
const block = {
|
|
2065
|
-
c: function create() {
|
|
2066
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2067
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorurl", casino_footer_thumbnail_vendorurl_value = /*footerData*/ ctx[24].gameVendorUrl);
|
|
2068
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorimage", casino_footer_thumbnail_vendorimage_value = /*footerData*/ ctx[24].gameVendorImage);
|
|
2069
|
-
set_custom_element_data(casino_footer_thumbnail, "vendortitle", casino_footer_thumbnail_vendortitle_value = /*footerData*/ ctx[24].gameVendorTitle);
|
|
2070
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2071
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2072
|
-
add_location(casino_footer_thumbnail, file$1, 58, 8, 2334);
|
|
2073
|
-
},
|
|
2074
|
-
m: function mount(target, anchor) {
|
|
2075
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2076
|
-
},
|
|
2077
|
-
p: function update(ctx, dirty) {
|
|
2078
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendorurl_value !== (casino_footer_thumbnail_vendorurl_value = /*footerData*/ ctx[24].gameVendorUrl)) {
|
|
2079
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorurl", casino_footer_thumbnail_vendorurl_value);
|
|
2080
|
-
}
|
|
2081
|
-
|
|
2082
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendorimage_value !== (casino_footer_thumbnail_vendorimage_value = /*footerData*/ ctx[24].gameVendorImage)) {
|
|
2083
|
-
set_custom_element_data(casino_footer_thumbnail, "vendorimage", casino_footer_thumbnail_vendorimage_value);
|
|
2084
|
-
}
|
|
2085
|
-
|
|
2086
|
-
if (dirty[0] & /*footervendors*/ 1024 && casino_footer_thumbnail_vendortitle_value !== (casino_footer_thumbnail_vendortitle_value = /*footerData*/ ctx[24].gameVendorTitle)) {
|
|
2087
|
-
set_custom_element_data(casino_footer_thumbnail, "vendortitle", casino_footer_thumbnail_vendortitle_value);
|
|
2088
|
-
}
|
|
2089
|
-
|
|
2090
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2091
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2092
|
-
}
|
|
2093
|
-
|
|
2094
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2095
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2096
|
-
}
|
|
2097
|
-
},
|
|
2098
|
-
d: function destroy(detaching) {
|
|
2099
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2100
|
-
}
|
|
2101
|
-
};
|
|
2102
|
-
|
|
2103
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2104
|
-
block,
|
|
2105
|
-
id: create_each_block_2.name,
|
|
2106
|
-
type: "each",
|
|
2107
|
-
source: "(58:6) {#each footervendors as footerData}",
|
|
2108
|
-
ctx
|
|
2109
|
-
});
|
|
2110
|
-
|
|
2111
|
-
return block;
|
|
2112
|
-
}
|
|
2113
|
-
|
|
2114
|
-
// (52:4) {#each footerpayment as paymentData}
|
|
2115
|
-
function create_each_block_1(ctx) {
|
|
2116
|
-
let casino_footer_thumbnail;
|
|
2117
|
-
let casino_footer_thumbnail_paymenturl_value;
|
|
2118
|
-
let casino_footer_thumbnail_paymentimage_value;
|
|
2119
|
-
let casino_footer_thumbnail_paymenttitle_value;
|
|
2120
|
-
|
|
2121
|
-
const block = {
|
|
2122
|
-
c: function create() {
|
|
2123
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2124
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenturl", casino_footer_thumbnail_paymenturl_value = /*paymentData*/ ctx[21].paymentMethodUrl);
|
|
2125
|
-
set_custom_element_data(casino_footer_thumbnail, "paymentimage", casino_footer_thumbnail_paymentimage_value = /*paymentData*/ ctx[21].paymentMethodImage);
|
|
2126
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenttitle", casino_footer_thumbnail_paymenttitle_value = /*paymentData*/ ctx[21].paymentMethodTitle);
|
|
2127
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2128
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2129
|
-
add_location(casino_footer_thumbnail, file$1, 52, 6, 1937);
|
|
2130
|
-
},
|
|
2131
|
-
m: function mount(target, anchor) {
|
|
2132
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2133
|
-
},
|
|
2134
|
-
p: function update(ctx, dirty) {
|
|
2135
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymenturl_value !== (casino_footer_thumbnail_paymenturl_value = /*paymentData*/ ctx[21].paymentMethodUrl)) {
|
|
2136
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenturl", casino_footer_thumbnail_paymenturl_value);
|
|
2137
|
-
}
|
|
2138
|
-
|
|
2139
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymentimage_value !== (casino_footer_thumbnail_paymentimage_value = /*paymentData*/ ctx[21].paymentMethodImage)) {
|
|
2140
|
-
set_custom_element_data(casino_footer_thumbnail, "paymentimage", casino_footer_thumbnail_paymentimage_value);
|
|
2141
|
-
}
|
|
2142
|
-
|
|
2143
|
-
if (dirty[0] & /*footerpayment*/ 512 && casino_footer_thumbnail_paymenttitle_value !== (casino_footer_thumbnail_paymenttitle_value = /*paymentData*/ ctx[21].paymentMethodTitle)) {
|
|
2144
|
-
set_custom_element_data(casino_footer_thumbnail, "paymenttitle", casino_footer_thumbnail_paymenttitle_value);
|
|
2145
|
-
}
|
|
2146
|
-
|
|
2147
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2148
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2149
|
-
}
|
|
2150
|
-
|
|
2151
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2152
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2153
|
-
}
|
|
2154
|
-
},
|
|
2155
|
-
d: function destroy(detaching) {
|
|
2156
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2157
|
-
}
|
|
2158
|
-
};
|
|
2159
|
-
|
|
2160
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2161
|
-
block,
|
|
2162
|
-
id: create_each_block_1.name,
|
|
2163
|
-
type: "each",
|
|
2164
|
-
source: "(52:4) {#each footerpayment as paymentData}",
|
|
2165
|
-
ctx
|
|
2166
|
-
});
|
|
2167
|
-
|
|
2168
|
-
return block;
|
|
2169
|
-
}
|
|
2170
|
-
|
|
2171
|
-
// (46:6) {#each footersponsors as sponsorData}
|
|
2172
|
-
function create_each_block(ctx) {
|
|
2173
|
-
let casino_footer_thumbnail;
|
|
2174
|
-
let casino_footer_thumbnail_sponsorurl_value;
|
|
2175
|
-
let casino_footer_thumbnail_sponsorimage_value;
|
|
2176
|
-
let casino_footer_thumbnail_sponsortitle_value;
|
|
2177
|
-
|
|
2178
|
-
const block = {
|
|
2179
|
-
c: function create() {
|
|
2180
|
-
casino_footer_thumbnail = element("casino-footer-thumbnail");
|
|
2181
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorurl", casino_footer_thumbnail_sponsorurl_value = /*sponsorData*/ ctx[18].sponsorUrl);
|
|
2182
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorimage", casino_footer_thumbnail_sponsorimage_value = /*sponsorData*/ ctx[18].sponsorImage);
|
|
2183
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsortitle", casino_footer_thumbnail_sponsortitle_value = /*sponsorData*/ ctx[18].sponsorTitle);
|
|
2184
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2185
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2186
|
-
add_location(casino_footer_thumbnail, file$1, 46, 6, 1558);
|
|
2187
|
-
},
|
|
2188
|
-
m: function mount(target, anchor) {
|
|
2189
|
-
insert_dev(target, casino_footer_thumbnail, anchor);
|
|
2190
|
-
},
|
|
2191
|
-
p: function update(ctx, dirty) {
|
|
2192
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsorurl_value !== (casino_footer_thumbnail_sponsorurl_value = /*sponsorData*/ ctx[18].sponsorUrl)) {
|
|
2193
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorurl", casino_footer_thumbnail_sponsorurl_value);
|
|
2194
|
-
}
|
|
2195
|
-
|
|
2196
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsorimage_value !== (casino_footer_thumbnail_sponsorimage_value = /*sponsorData*/ ctx[18].sponsorImage)) {
|
|
2197
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsorimage", casino_footer_thumbnail_sponsorimage_value);
|
|
2198
|
-
}
|
|
2199
|
-
|
|
2200
|
-
if (dirty[0] & /*footersponsors*/ 256 && casino_footer_thumbnail_sponsortitle_value !== (casino_footer_thumbnail_sponsortitle_value = /*sponsorData*/ ctx[18].sponsorTitle)) {
|
|
2201
|
-
set_custom_element_data(casino_footer_thumbnail, "sponsortitle", casino_footer_thumbnail_sponsortitle_value);
|
|
2202
|
-
}
|
|
2203
|
-
|
|
2204
|
-
if (dirty[0] & /*clientstyling*/ 64) {
|
|
2205
|
-
set_custom_element_data(casino_footer_thumbnail, "clientstyling", /*clientstyling*/ ctx[6]);
|
|
2206
|
-
}
|
|
2207
|
-
|
|
2208
|
-
if (dirty[0] & /*target*/ 128) {
|
|
2209
|
-
set_custom_element_data(casino_footer_thumbnail, "target", /*target*/ ctx[7]);
|
|
2210
|
-
}
|
|
2211
|
-
},
|
|
2212
|
-
d: function destroy(detaching) {
|
|
2213
|
-
if (detaching) detach_dev(casino_footer_thumbnail);
|
|
2214
|
-
}
|
|
2215
|
-
};
|
|
2216
|
-
|
|
2217
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2218
|
-
block,
|
|
2219
|
-
id: create_each_block.name,
|
|
2220
|
-
type: "each",
|
|
2221
|
-
source: "(46:6) {#each footersponsors as sponsorData}",
|
|
2222
|
-
ctx
|
|
2223
|
-
});
|
|
2224
|
-
|
|
2225
|
-
return block;
|
|
2226
|
-
}
|
|
2227
|
-
|
|
2228
|
-
function create_fragment$1(ctx) {
|
|
2229
|
-
let div;
|
|
2230
|
-
|
|
2231
|
-
function select_block_type(ctx, dirty) {
|
|
2232
|
-
if (/*sponsorflag*/ ctx[0] && /*footersponsors*/ ctx[8].length) return create_if_block$1;
|
|
2233
|
-
if (/*paymentflag*/ ctx[1] && /*footerpayment*/ ctx[9].length) return create_if_block_1$1;
|
|
2234
|
-
if (/*vendorflag*/ ctx[2] && /*footervendors*/ ctx[10].length) return create_if_block_2$1;
|
|
2235
|
-
if (/*helperflag*/ ctx[3] && /*footerhelperlinks*/ ctx[11].length) return create_if_block_3$1;
|
|
2236
|
-
if (/*licenseflag*/ ctx[4] && /*footerlicenses*/ ctx[12].length) return create_if_block_4$1;
|
|
2237
|
-
if (/*socialflag*/ ctx[5] && /*footersociallinks*/ ctx[13].length) return create_if_block_5$1;
|
|
2238
|
-
}
|
|
2239
|
-
|
|
2240
|
-
let current_block_type = select_block_type(ctx);
|
|
2241
|
-
let if_block = current_block_type && current_block_type(ctx);
|
|
2242
|
-
|
|
2243
|
-
const block = {
|
|
2244
|
-
c: function create() {
|
|
2245
|
-
div = element("div");
|
|
2246
|
-
if (if_block) if_block.c();
|
|
2247
|
-
this.c = noop;
|
|
2248
|
-
attr_dev(div, "class", "FooterSectionContainer");
|
|
2249
|
-
add_location(div, file$1, 42, 0, 1345);
|
|
2250
|
-
},
|
|
2251
|
-
l: function claim(nodes) {
|
|
2252
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
|
2253
|
-
},
|
|
2254
|
-
m: function mount(target, anchor) {
|
|
2255
|
-
insert_dev(target, div, anchor);
|
|
2256
|
-
if (if_block) if_block.m(div, null);
|
|
2257
|
-
/*div_binding*/ ctx[15](div);
|
|
2258
|
-
},
|
|
2259
|
-
p: function update(ctx, dirty) {
|
|
2260
|
-
if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) {
|
|
2261
|
-
if_block.p(ctx, dirty);
|
|
2262
|
-
} else {
|
|
2263
|
-
if (if_block) if_block.d(1);
|
|
2264
|
-
if_block = current_block_type && current_block_type(ctx);
|
|
2265
|
-
|
|
2266
|
-
if (if_block) {
|
|
2267
|
-
if_block.c();
|
|
2268
|
-
if_block.m(div, null);
|
|
2269
|
-
}
|
|
2270
|
-
}
|
|
2271
|
-
},
|
|
2272
|
-
i: noop,
|
|
2273
|
-
o: noop,
|
|
2274
|
-
d: function destroy(detaching) {
|
|
2275
|
-
if (detaching) detach_dev(div);
|
|
2276
|
-
|
|
2277
|
-
if (if_block) {
|
|
2278
|
-
if_block.d();
|
|
2279
|
-
}
|
|
2280
|
-
|
|
2281
|
-
/*div_binding*/ ctx[15](null);
|
|
2282
|
-
}
|
|
2283
|
-
};
|
|
2284
|
-
|
|
2285
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2286
|
-
block,
|
|
2287
|
-
id: create_fragment$1.name,
|
|
2288
|
-
type: "component",
|
|
2289
|
-
source: "",
|
|
2290
|
-
ctx
|
|
2291
|
-
});
|
|
2292
|
-
|
|
2293
|
-
return block;
|
|
2294
|
-
}
|
|
2295
|
-
|
|
2296
|
-
function instance$1($$self, $$props, $$invalidate) {
|
|
2297
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
|
2298
|
-
validate_slots("undefined", slots, []);
|
|
2299
|
-
let { sponsorflag = "" } = $$props;
|
|
2300
|
-
let { paymentflag = "" } = $$props;
|
|
2301
|
-
let { vendorflag = "" } = $$props;
|
|
2302
|
-
let { helperflag = "" } = $$props;
|
|
2303
|
-
let { licenseflag = "" } = $$props;
|
|
2304
|
-
let { socialflag = "" } = $$props;
|
|
2305
|
-
let { clientstyling = "" } = $$props;
|
|
2306
|
-
let { target = "" } = $$props;
|
|
2307
|
-
let footersponsors = [];
|
|
2308
|
-
let footerpayment = [];
|
|
2309
|
-
let footervendors = [];
|
|
2310
|
-
let footerhelperlinks = [];
|
|
2311
|
-
let footerlicenses = [];
|
|
2312
|
-
let footersociallinks = [];
|
|
2313
|
-
let footerSectionContainer;
|
|
2314
|
-
|
|
2315
|
-
const messageHandler = e => {
|
|
2316
|
-
if (e.data && e.data.type === "FooterData") {
|
|
2317
|
-
$$invalidate(8, footersponsors = e.data.sponsorsRepeater);
|
|
2318
|
-
$$invalidate(9, footerpayment = e.data.paymentMethodsRepeater);
|
|
2319
|
-
$$invalidate(10, footervendors = e.data.gameVendorsRepeater);
|
|
2320
|
-
$$invalidate(11, footerhelperlinks = e.data.helpLinksRepeater);
|
|
2321
|
-
$$invalidate(12, footerlicenses = e.data.licensesRepeater);
|
|
2322
|
-
$$invalidate(13, footersociallinks = e.data.socialLinksRepeater);
|
|
2323
|
-
}
|
|
2324
|
-
};
|
|
2325
|
-
|
|
2326
|
-
const setClientStyling = () => {
|
|
2327
|
-
let sheet = document.createElement("style");
|
|
2328
|
-
sheet.innerHTML = clientstyling;
|
|
2329
|
-
footerSectionContainer.appendChild(sheet);
|
|
2330
|
-
};
|
|
2331
|
-
|
|
2332
|
-
onMount(() => {
|
|
2333
|
-
window.addEventListener("message", messageHandler, false);
|
|
2334
|
-
|
|
2335
|
-
return () => {
|
|
2336
|
-
window.removeEventListener("message", messageHandler);
|
|
2337
|
-
};
|
|
2338
|
-
});
|
|
2339
|
-
|
|
2340
|
-
const writable_props = [
|
|
2341
|
-
"sponsorflag",
|
|
2342
|
-
"paymentflag",
|
|
2343
|
-
"vendorflag",
|
|
2344
|
-
"helperflag",
|
|
2345
|
-
"licenseflag",
|
|
2346
|
-
"socialflag",
|
|
2347
|
-
"clientstyling",
|
|
2348
|
-
"target"
|
|
2349
|
-
];
|
|
2350
|
-
|
|
2351
|
-
Object.keys($$props).forEach(key => {
|
|
2352
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
2353
|
-
});
|
|
2354
|
-
|
|
2355
|
-
function div_binding($$value) {
|
|
2356
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
2357
|
-
footerSectionContainer = $$value;
|
|
2358
|
-
$$invalidate(14, footerSectionContainer);
|
|
2359
|
-
});
|
|
2360
|
-
}
|
|
2361
|
-
|
|
2362
|
-
$$self.$$set = $$props => {
|
|
2363
|
-
if ("sponsorflag" in $$props) $$invalidate(0, sponsorflag = $$props.sponsorflag);
|
|
2364
|
-
if ("paymentflag" in $$props) $$invalidate(1, paymentflag = $$props.paymentflag);
|
|
2365
|
-
if ("vendorflag" in $$props) $$invalidate(2, vendorflag = $$props.vendorflag);
|
|
2366
|
-
if ("helperflag" in $$props) $$invalidate(3, helperflag = $$props.helperflag);
|
|
2367
|
-
if ("licenseflag" in $$props) $$invalidate(4, licenseflag = $$props.licenseflag);
|
|
2368
|
-
if ("socialflag" in $$props) $$invalidate(5, socialflag = $$props.socialflag);
|
|
2369
|
-
if ("clientstyling" in $$props) $$invalidate(6, clientstyling = $$props.clientstyling);
|
|
2370
|
-
if ("target" in $$props) $$invalidate(7, target = $$props.target);
|
|
2371
|
-
};
|
|
2372
|
-
|
|
2373
|
-
$$self.$capture_state = () => ({
|
|
2374
|
-
onMount,
|
|
2375
|
-
sponsorflag,
|
|
2376
|
-
paymentflag,
|
|
2377
|
-
vendorflag,
|
|
2378
|
-
helperflag,
|
|
2379
|
-
licenseflag,
|
|
2380
|
-
socialflag,
|
|
2381
|
-
clientstyling,
|
|
2382
|
-
target,
|
|
2383
|
-
footersponsors,
|
|
2384
|
-
footerpayment,
|
|
2385
|
-
footervendors,
|
|
2386
|
-
footerhelperlinks,
|
|
2387
|
-
footerlicenses,
|
|
2388
|
-
footersociallinks,
|
|
2389
|
-
footerSectionContainer,
|
|
2390
|
-
messageHandler,
|
|
2391
|
-
setClientStyling
|
|
2392
|
-
});
|
|
2393
|
-
|
|
2394
|
-
$$self.$inject_state = $$props => {
|
|
2395
|
-
if ("sponsorflag" in $$props) $$invalidate(0, sponsorflag = $$props.sponsorflag);
|
|
2396
|
-
if ("paymentflag" in $$props) $$invalidate(1, paymentflag = $$props.paymentflag);
|
|
2397
|
-
if ("vendorflag" in $$props) $$invalidate(2, vendorflag = $$props.vendorflag);
|
|
2398
|
-
if ("helperflag" in $$props) $$invalidate(3, helperflag = $$props.helperflag);
|
|
2399
|
-
if ("licenseflag" in $$props) $$invalidate(4, licenseflag = $$props.licenseflag);
|
|
2400
|
-
if ("socialflag" in $$props) $$invalidate(5, socialflag = $$props.socialflag);
|
|
2401
|
-
if ("clientstyling" in $$props) $$invalidate(6, clientstyling = $$props.clientstyling);
|
|
2402
|
-
if ("target" in $$props) $$invalidate(7, target = $$props.target);
|
|
2403
|
-
if ("footersponsors" in $$props) $$invalidate(8, footersponsors = $$props.footersponsors);
|
|
2404
|
-
if ("footerpayment" in $$props) $$invalidate(9, footerpayment = $$props.footerpayment);
|
|
2405
|
-
if ("footervendors" in $$props) $$invalidate(10, footervendors = $$props.footervendors);
|
|
2406
|
-
if ("footerhelperlinks" in $$props) $$invalidate(11, footerhelperlinks = $$props.footerhelperlinks);
|
|
2407
|
-
if ("footerlicenses" in $$props) $$invalidate(12, footerlicenses = $$props.footerlicenses);
|
|
2408
|
-
if ("footersociallinks" in $$props) $$invalidate(13, footersociallinks = $$props.footersociallinks);
|
|
2409
|
-
if ("footerSectionContainer" in $$props) $$invalidate(14, footerSectionContainer = $$props.footerSectionContainer);
|
|
2410
|
-
};
|
|
2411
|
-
|
|
2412
|
-
if ($$props && "$$inject" in $$props) {
|
|
2413
|
-
$$self.$inject_state($$props.$$inject);
|
|
2414
|
-
}
|
|
2415
|
-
|
|
2416
|
-
$$self.$$.update = () => {
|
|
2417
|
-
if ($$self.$$.dirty[0] & /*clientstyling*/ 64) {
|
|
2418
|
-
clientstyling && setClientStyling();
|
|
2419
|
-
}
|
|
2420
|
-
};
|
|
2421
|
-
|
|
2422
|
-
return [
|
|
2423
|
-
sponsorflag,
|
|
2424
|
-
paymentflag,
|
|
2425
|
-
vendorflag,
|
|
2426
|
-
helperflag,
|
|
2427
|
-
licenseflag,
|
|
2428
|
-
socialflag,
|
|
2429
|
-
clientstyling,
|
|
2430
|
-
target,
|
|
2431
|
-
footersponsors,
|
|
2432
|
-
footerpayment,
|
|
2433
|
-
footervendors,
|
|
2434
|
-
footerhelperlinks,
|
|
2435
|
-
footerlicenses,
|
|
2436
|
-
footersociallinks,
|
|
2437
|
-
footerSectionContainer,
|
|
2438
|
-
div_binding
|
|
2439
|
-
];
|
|
2440
|
-
}
|
|
2441
|
-
|
|
2442
|
-
class CasinoFooterSection extends SvelteElement {
|
|
2443
|
-
constructor(options) {
|
|
2444
|
-
super();
|
|
2445
|
-
this.shadowRoot.innerHTML = `<style>.FooterSectionInnerContainer{display:flex;flex-wrap:wrap;align-items:center;justify-content:center}</style>`;
|
|
2446
|
-
|
|
2447
|
-
init(
|
|
2448
|
-
this,
|
|
2449
|
-
{
|
|
2450
|
-
target: this.shadowRoot,
|
|
2451
|
-
props: attribute_to_object(this.attributes),
|
|
2452
|
-
customElement: true
|
|
2453
|
-
},
|
|
2454
|
-
instance$1,
|
|
2455
|
-
create_fragment$1,
|
|
2456
|
-
safe_not_equal,
|
|
2457
|
-
{
|
|
2458
|
-
sponsorflag: 0,
|
|
2459
|
-
paymentflag: 1,
|
|
2460
|
-
vendorflag: 2,
|
|
2461
|
-
helperflag: 3,
|
|
2462
|
-
licenseflag: 4,
|
|
2463
|
-
socialflag: 5,
|
|
2464
|
-
clientstyling: 6,
|
|
2465
|
-
target: 7
|
|
2466
|
-
},
|
|
2467
|
-
[-1, -1]
|
|
2468
|
-
);
|
|
2469
|
-
|
|
2470
|
-
if (options) {
|
|
2471
|
-
if (options.target) {
|
|
2472
|
-
insert_dev(options.target, this, options.anchor);
|
|
2473
|
-
}
|
|
2474
|
-
|
|
2475
|
-
if (options.props) {
|
|
2476
|
-
this.$set(options.props);
|
|
2477
|
-
flush();
|
|
2478
|
-
}
|
|
2479
|
-
}
|
|
2480
|
-
}
|
|
2481
|
-
|
|
2482
|
-
static get observedAttributes() {
|
|
2483
|
-
return [
|
|
2484
|
-
"sponsorflag",
|
|
2485
|
-
"paymentflag",
|
|
2486
|
-
"vendorflag",
|
|
2487
|
-
"helperflag",
|
|
2488
|
-
"licenseflag",
|
|
2489
|
-
"socialflag",
|
|
2490
|
-
"clientstyling",
|
|
2491
|
-
"target"
|
|
2492
|
-
];
|
|
2493
|
-
}
|
|
2494
|
-
|
|
2495
|
-
get sponsorflag() {
|
|
2496
|
-
return this.$$.ctx[0];
|
|
2497
|
-
}
|
|
2498
|
-
|
|
2499
|
-
set sponsorflag(sponsorflag) {
|
|
2500
|
-
this.$set({ sponsorflag });
|
|
2501
|
-
flush();
|
|
2502
|
-
}
|
|
2503
|
-
|
|
2504
|
-
get paymentflag() {
|
|
2505
|
-
return this.$$.ctx[1];
|
|
2506
|
-
}
|
|
2507
|
-
|
|
2508
|
-
set paymentflag(paymentflag) {
|
|
2509
|
-
this.$set({ paymentflag });
|
|
2510
|
-
flush();
|
|
2511
|
-
}
|
|
2512
|
-
|
|
2513
|
-
get vendorflag() {
|
|
2514
|
-
return this.$$.ctx[2];
|
|
2515
|
-
}
|
|
2516
|
-
|
|
2517
|
-
set vendorflag(vendorflag) {
|
|
2518
|
-
this.$set({ vendorflag });
|
|
2519
|
-
flush();
|
|
2520
|
-
}
|
|
2521
|
-
|
|
2522
|
-
get helperflag() {
|
|
2523
|
-
return this.$$.ctx[3];
|
|
2524
|
-
}
|
|
2525
|
-
|
|
2526
|
-
set helperflag(helperflag) {
|
|
2527
|
-
this.$set({ helperflag });
|
|
2528
|
-
flush();
|
|
2529
|
-
}
|
|
2530
|
-
|
|
2531
|
-
get licenseflag() {
|
|
2532
|
-
return this.$$.ctx[4];
|
|
2533
|
-
}
|
|
2534
|
-
|
|
2535
|
-
set licenseflag(licenseflag) {
|
|
2536
|
-
this.$set({ licenseflag });
|
|
2537
|
-
flush();
|
|
2538
|
-
}
|
|
2539
|
-
|
|
2540
|
-
get socialflag() {
|
|
2541
|
-
return this.$$.ctx[5];
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
set socialflag(socialflag) {
|
|
2545
|
-
this.$set({ socialflag });
|
|
2546
|
-
flush();
|
|
2547
|
-
}
|
|
2548
|
-
|
|
2549
|
-
get clientstyling() {
|
|
2550
|
-
return this.$$.ctx[6];
|
|
2551
|
-
}
|
|
2552
|
-
|
|
2553
|
-
set clientstyling(clientstyling) {
|
|
2554
|
-
this.$set({ clientstyling });
|
|
2555
|
-
flush();
|
|
2556
|
-
}
|
|
2557
|
-
|
|
2558
|
-
get target() {
|
|
2559
|
-
return this.$$.ctx[7];
|
|
2560
|
-
}
|
|
2561
|
-
|
|
2562
|
-
set target(target) {
|
|
2563
|
-
this.$set({ target });
|
|
2564
|
-
flush();
|
|
2565
|
-
}
|
|
2566
|
-
}
|
|
2567
|
-
|
|
2568
|
-
!customElements.get('casino-footer-section') && customElements.define('casino-footer-section', CasinoFooterSection);
|
|
2569
|
-
|
|
2570
|
-
/* src/CasinoFooter.svelte generated by Svelte v3.37.0 */
|
|
2571
|
-
|
|
2572
|
-
const { console: console_1 } = globals;
|
|
2573
|
-
const file = "src/CasinoFooter.svelte";
|
|
2574
|
-
|
|
2575
|
-
// (62:2) {:else}
|
|
2576
|
-
function create_else_block(ctx) {
|
|
2577
|
-
let div;
|
|
2578
|
-
let t0;
|
|
2579
|
-
let t1;
|
|
2580
|
-
let t2;
|
|
2581
|
-
let div_class_value;
|
|
2582
|
-
let if_block0 = /*sponsorsRepeater*/ ctx[6] && create_if_block_15(ctx);
|
|
2583
|
-
let if_block1 = (/*paymentMethodsRepeater*/ ctx[4] || /*gameVendorsRepeater*/ ctx[2]) && create_if_block_10(ctx);
|
|
2584
|
-
let if_block2 = (/*helpLinksRepeater*/ ctx[8] || /*licensesRepeater*/ ctx[10]) && create_if_block_5(ctx);
|
|
2585
|
-
let if_block3 = (/*licenseDesc*/ ctx[14] || /*copyright*/ ctx[13]) && create_if_block_2(ctx);
|
|
2586
|
-
|
|
2587
|
-
const block = {
|
|
2588
|
-
c: function create() {
|
|
2589
|
-
div = element("div");
|
|
2590
|
-
if (if_block0) if_block0.c();
|
|
2591
|
-
t0 = space();
|
|
2592
|
-
if (if_block1) if_block1.c();
|
|
2593
|
-
t1 = space();
|
|
2594
|
-
if (if_block2) if_block2.c();
|
|
2595
|
-
t2 = space();
|
|
2596
|
-
if (if_block3) if_block3.c();
|
|
2597
|
-
attr_dev(div, "class", div_class_value = "FooterGrid " + (/*sponsorsRepeater*/ ctx[6] ? "" : "NoSponsorSpacing"));
|
|
2598
|
-
add_location(div, file, 62, 4, 2095);
|
|
2599
|
-
},
|
|
2600
|
-
m: function mount(target, anchor) {
|
|
2601
|
-
insert_dev(target, div, anchor);
|
|
2602
|
-
if (if_block0) if_block0.m(div, null);
|
|
2603
|
-
append_dev(div, t0);
|
|
2604
|
-
if (if_block1) if_block1.m(div, null);
|
|
2605
|
-
append_dev(div, t1);
|
|
2606
|
-
if (if_block2) if_block2.m(div, null);
|
|
2607
|
-
append_dev(div, t2);
|
|
2608
|
-
if (if_block3) if_block3.m(div, null);
|
|
2609
|
-
/*div_binding*/ ctx[26](div);
|
|
2610
|
-
},
|
|
2611
|
-
p: function update(ctx, dirty) {
|
|
2612
|
-
if (/*sponsorsRepeater*/ ctx[6]) {
|
|
2613
|
-
if (if_block0) {
|
|
2614
|
-
if_block0.p(ctx, dirty);
|
|
2615
|
-
} else {
|
|
2616
|
-
if_block0 = create_if_block_15(ctx);
|
|
2617
|
-
if_block0.c();
|
|
2618
|
-
if_block0.m(div, t0);
|
|
2619
|
-
}
|
|
2620
|
-
} else if (if_block0) {
|
|
2621
|
-
if_block0.d(1);
|
|
2622
|
-
if_block0 = null;
|
|
2623
|
-
}
|
|
2624
|
-
|
|
2625
|
-
if (/*paymentMethodsRepeater*/ ctx[4] || /*gameVendorsRepeater*/ ctx[2]) {
|
|
2626
|
-
if (if_block1) {
|
|
2627
|
-
if_block1.p(ctx, dirty);
|
|
2628
|
-
} else {
|
|
2629
|
-
if_block1 = create_if_block_10(ctx);
|
|
2630
|
-
if_block1.c();
|
|
2631
|
-
if_block1.m(div, t1);
|
|
2632
|
-
}
|
|
2633
|
-
} else if (if_block1) {
|
|
2634
|
-
if_block1.d(1);
|
|
2635
|
-
if_block1 = null;
|
|
2636
|
-
}
|
|
2637
|
-
|
|
2638
|
-
if (/*helpLinksRepeater*/ ctx[8] || /*licensesRepeater*/ ctx[10]) {
|
|
2639
|
-
if (if_block2) {
|
|
2640
|
-
if_block2.p(ctx, dirty);
|
|
2641
|
-
} else {
|
|
2642
|
-
if_block2 = create_if_block_5(ctx);
|
|
2643
|
-
if_block2.c();
|
|
2644
|
-
if_block2.m(div, t2);
|
|
2645
|
-
}
|
|
2646
|
-
} else if (if_block2) {
|
|
2647
|
-
if_block2.d(1);
|
|
2648
|
-
if_block2 = null;
|
|
2649
|
-
}
|
|
2650
|
-
|
|
2651
|
-
if (/*licenseDesc*/ ctx[14] || /*copyright*/ ctx[13]) {
|
|
2652
|
-
if (if_block3) {
|
|
2653
|
-
if_block3.p(ctx, dirty);
|
|
2654
|
-
} else {
|
|
2655
|
-
if_block3 = create_if_block_2(ctx);
|
|
2656
|
-
if_block3.c();
|
|
2657
|
-
if_block3.m(div, null);
|
|
2658
|
-
}
|
|
2659
|
-
} else if (if_block3) {
|
|
2660
|
-
if_block3.d(1);
|
|
2661
|
-
if_block3 = null;
|
|
2662
|
-
}
|
|
2663
|
-
|
|
2664
|
-
if (dirty & /*sponsorsRepeater*/ 64 && div_class_value !== (div_class_value = "FooterGrid " + (/*sponsorsRepeater*/ ctx[6] ? "" : "NoSponsorSpacing"))) {
|
|
2665
|
-
attr_dev(div, "class", div_class_value);
|
|
2666
|
-
}
|
|
2667
|
-
},
|
|
2668
|
-
d: function destroy(detaching) {
|
|
2669
|
-
if (detaching) detach_dev(div);
|
|
2670
|
-
if (if_block0) if_block0.d();
|
|
2671
|
-
if (if_block1) if_block1.d();
|
|
2672
|
-
if (if_block2) if_block2.d();
|
|
2673
|
-
if (if_block3) if_block3.d();
|
|
2674
|
-
/*div_binding*/ ctx[26](null);
|
|
2675
|
-
}
|
|
2676
|
-
};
|
|
2677
|
-
|
|
2678
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2679
|
-
block,
|
|
2680
|
-
id: create_else_block.name,
|
|
2681
|
-
type: "else",
|
|
2682
|
-
source: "(62:2) {:else}",
|
|
2683
|
-
ctx
|
|
2684
|
-
});
|
|
2685
|
-
|
|
2686
|
-
return block;
|
|
2687
|
-
}
|
|
2688
|
-
|
|
2689
|
-
// (60:2) {#if isLoading}
|
|
2690
|
-
function create_if_block_1(ctx) {
|
|
2691
|
-
let p;
|
|
2692
|
-
|
|
2693
|
-
const block = {
|
|
2694
|
-
c: function create() {
|
|
2695
|
-
p = element("p");
|
|
2696
|
-
p.textContent = "Loading ...";
|
|
2697
|
-
attr_dev(p, "class", "SearchLoading");
|
|
2698
|
-
add_location(p, file, 60, 4, 2040);
|
|
2699
|
-
},
|
|
2700
|
-
m: function mount(target, anchor) {
|
|
2701
|
-
insert_dev(target, p, anchor);
|
|
2702
|
-
},
|
|
2703
|
-
p: noop,
|
|
2704
|
-
d: function destroy(detaching) {
|
|
2705
|
-
if (detaching) detach_dev(p);
|
|
2706
|
-
}
|
|
2707
|
-
};
|
|
2708
|
-
|
|
2709
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2710
|
-
block,
|
|
2711
|
-
id: create_if_block_1.name,
|
|
2712
|
-
type: "if",
|
|
2713
|
-
source: "(60:2) {#if isLoading}",
|
|
2714
|
-
ctx
|
|
2715
|
-
});
|
|
2716
|
-
|
|
2717
|
-
return block;
|
|
2718
|
-
}
|
|
2719
|
-
|
|
2720
|
-
// (57:0) {#if hasErrors}
|
|
2721
|
-
function create_if_block(ctx) {
|
|
2722
|
-
let p;
|
|
2723
|
-
|
|
2724
|
-
const block = {
|
|
2725
|
-
c: function create() {
|
|
2726
|
-
p = element("p");
|
|
2727
|
-
p.textContent = "500 Error - Internal Server Error";
|
|
2728
|
-
attr_dev(p, "class", "SearchLoading");
|
|
2729
|
-
add_location(p, file, 57, 2, 1947);
|
|
2730
|
-
},
|
|
2731
|
-
m: function mount(target, anchor) {
|
|
2732
|
-
insert_dev(target, p, anchor);
|
|
2733
|
-
},
|
|
2734
|
-
p: noop,
|
|
2735
|
-
d: function destroy(detaching) {
|
|
2736
|
-
if (detaching) detach_dev(p);
|
|
2737
|
-
}
|
|
2738
|
-
};
|
|
2739
|
-
|
|
2740
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2741
|
-
block,
|
|
2742
|
-
id: create_if_block.name,
|
|
2743
|
-
type: "if",
|
|
2744
|
-
source: "(57:0) {#if hasErrors}",
|
|
2745
|
-
ctx
|
|
2746
|
-
});
|
|
2747
|
-
|
|
2748
|
-
return block;
|
|
2749
|
-
}
|
|
2750
|
-
|
|
2751
|
-
// (64:6) {#if sponsorsRepeater}
|
|
2752
|
-
function create_if_block_15(ctx) {
|
|
2753
|
-
let div;
|
|
2754
|
-
let if_block = /*sponsorsRepeater*/ ctx[6] && create_if_block_16(ctx);
|
|
2755
|
-
|
|
2756
|
-
const block = {
|
|
2757
|
-
c: function create() {
|
|
2758
|
-
div = element("div");
|
|
2759
|
-
if (if_block) if_block.c();
|
|
2760
|
-
attr_dev(div, "class", "GridRow");
|
|
2761
|
-
add_location(div, file, 64, 8, 2227);
|
|
2762
|
-
},
|
|
2763
|
-
m: function mount(target, anchor) {
|
|
2764
|
-
insert_dev(target, div, anchor);
|
|
2765
|
-
if (if_block) if_block.m(div, null);
|
|
2766
|
-
},
|
|
2767
|
-
p: function update(ctx, dirty) {
|
|
2768
|
-
if (/*sponsorsRepeater*/ ctx[6]) {
|
|
2769
|
-
if (if_block) {
|
|
2770
|
-
if_block.p(ctx, dirty);
|
|
2771
|
-
} else {
|
|
2772
|
-
if_block = create_if_block_16(ctx);
|
|
2773
|
-
if_block.c();
|
|
2774
|
-
if_block.m(div, null);
|
|
2775
|
-
}
|
|
2776
|
-
} else if (if_block) {
|
|
2777
|
-
if_block.d(1);
|
|
2778
|
-
if_block = null;
|
|
2779
|
-
}
|
|
2780
|
-
},
|
|
2781
|
-
d: function destroy(detaching) {
|
|
2782
|
-
if (detaching) detach_dev(div);
|
|
2783
|
-
if (if_block) if_block.d();
|
|
2784
|
-
}
|
|
2785
|
-
};
|
|
2786
|
-
|
|
2787
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2788
|
-
block,
|
|
2789
|
-
id: create_if_block_15.name,
|
|
2790
|
-
type: "if",
|
|
2791
|
-
source: "(64:6) {#if sponsorsRepeater}",
|
|
2792
|
-
ctx
|
|
2793
|
-
});
|
|
2794
|
-
|
|
2795
|
-
return block;
|
|
2796
|
-
}
|
|
2797
|
-
|
|
2798
|
-
// (67:10) {#if sponsorsRepeater}
|
|
2799
|
-
function create_if_block_16(ctx) {
|
|
2800
|
-
let div;
|
|
2801
|
-
let t;
|
|
2802
|
-
let casino_footer_section;
|
|
2803
|
-
let if_block = /*sponsorsLinksTitle*/ ctx[5] && create_if_block_17(ctx);
|
|
2804
|
-
|
|
2805
|
-
const block = {
|
|
2806
|
-
c: function create() {
|
|
2807
|
-
div = element("div");
|
|
2808
|
-
if (if_block) if_block.c();
|
|
2809
|
-
t = space();
|
|
2810
|
-
casino_footer_section = element("casino-footer-section");
|
|
2811
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection");
|
|
2812
|
-
set_custom_element_data(casino_footer_section, "sponsorflag", "1");
|
|
2813
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
2814
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
2815
|
-
add_location(casino_footer_section, file, 71, 12, 2485);
|
|
2816
|
-
attr_dev(div, "class", "GridCol");
|
|
2817
|
-
add_location(div, file, 67, 10, 2334);
|
|
2818
|
-
},
|
|
2819
|
-
m: function mount(target, anchor) {
|
|
2820
|
-
insert_dev(target, div, anchor);
|
|
2821
|
-
if (if_block) if_block.m(div, null);
|
|
2822
|
-
append_dev(div, t);
|
|
2823
|
-
append_dev(div, casino_footer_section);
|
|
2824
|
-
},
|
|
2825
|
-
p: function update(ctx, dirty) {
|
|
2826
|
-
if (/*sponsorsLinksTitle*/ ctx[5]) {
|
|
2827
|
-
if (if_block) {
|
|
2828
|
-
if_block.p(ctx, dirty);
|
|
2829
|
-
} else {
|
|
2830
|
-
if_block = create_if_block_17(ctx);
|
|
2831
|
-
if_block.c();
|
|
2832
|
-
if_block.m(div, t);
|
|
2833
|
-
}
|
|
2834
|
-
} else if (if_block) {
|
|
2835
|
-
if_block.d(1);
|
|
2836
|
-
if_block = null;
|
|
2837
|
-
}
|
|
2838
|
-
|
|
2839
|
-
if (dirty & /*target*/ 1) {
|
|
2840
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
2841
|
-
}
|
|
2842
|
-
},
|
|
2843
|
-
d: function destroy(detaching) {
|
|
2844
|
-
if (detaching) detach_dev(div);
|
|
2845
|
-
if (if_block) if_block.d();
|
|
2846
|
-
}
|
|
2847
|
-
};
|
|
2848
|
-
|
|
2849
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2850
|
-
block,
|
|
2851
|
-
id: create_if_block_16.name,
|
|
2852
|
-
type: "if",
|
|
2853
|
-
source: "(67:10) {#if sponsorsRepeater}",
|
|
2854
|
-
ctx
|
|
2855
|
-
});
|
|
2856
|
-
|
|
2857
|
-
return block;
|
|
2858
|
-
}
|
|
2859
|
-
|
|
2860
|
-
// (69:12) {#if sponsorsLinksTitle}
|
|
2861
|
-
function create_if_block_17(ctx) {
|
|
2862
|
-
let p;
|
|
2863
|
-
let t;
|
|
2864
|
-
|
|
2865
|
-
const block = {
|
|
2866
|
-
c: function create() {
|
|
2867
|
-
p = element("p");
|
|
2868
|
-
t = text(/*sponsorsLinksTitle*/ ctx[5]);
|
|
2869
|
-
attr_dev(p, "class", "FooterTitle");
|
|
2870
|
-
add_location(p, file, 69, 14, 2407);
|
|
2871
|
-
},
|
|
2872
|
-
m: function mount(target, anchor) {
|
|
2873
|
-
insert_dev(target, p, anchor);
|
|
2874
|
-
append_dev(p, t);
|
|
2875
|
-
},
|
|
2876
|
-
p: function update(ctx, dirty) {
|
|
2877
|
-
if (dirty & /*sponsorsLinksTitle*/ 32) set_data_dev(t, /*sponsorsLinksTitle*/ ctx[5]);
|
|
2878
|
-
},
|
|
2879
|
-
d: function destroy(detaching) {
|
|
2880
|
-
if (detaching) detach_dev(p);
|
|
2881
|
-
}
|
|
2882
|
-
};
|
|
2883
|
-
|
|
2884
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2885
|
-
block,
|
|
2886
|
-
id: create_if_block_17.name,
|
|
2887
|
-
type: "if",
|
|
2888
|
-
source: "(69:12) {#if sponsorsLinksTitle}",
|
|
2889
|
-
ctx
|
|
2890
|
-
});
|
|
2891
|
-
|
|
2892
|
-
return block;
|
|
2893
|
-
}
|
|
2894
|
-
|
|
2895
|
-
// (78:6) {#if paymentMethodsRepeater || gameVendorsRepeater}
|
|
2896
|
-
function create_if_block_10(ctx) {
|
|
2897
|
-
let div;
|
|
2898
|
-
let t;
|
|
2899
|
-
let div_class_value;
|
|
2900
|
-
let if_block0 = /*paymentMethodsRepeater*/ ctx[4] && create_if_block_13(ctx);
|
|
2901
|
-
let if_block1 = /*gameVendorsRepeater*/ ctx[2] && create_if_block_11(ctx);
|
|
2902
|
-
|
|
2903
|
-
const block = {
|
|
2904
|
-
c: function create() {
|
|
2905
|
-
div = element("div");
|
|
2906
|
-
if (if_block0) if_block0.c();
|
|
2907
|
-
t = space();
|
|
2908
|
-
if (if_block1) if_block1.c();
|
|
2909
|
-
|
|
2910
|
-
attr_dev(div, "class", div_class_value = "GridRow " + (/*paymentMethodsRepeater*/ ctx[4] && /*gameVendorsRepeater*/ ctx[2]
|
|
2911
|
-
? "SplitRow"
|
|
2912
|
-
: ""));
|
|
2913
|
-
|
|
2914
|
-
add_location(div, file, 78, 8, 2783);
|
|
2915
|
-
},
|
|
2916
|
-
m: function mount(target, anchor) {
|
|
2917
|
-
insert_dev(target, div, anchor);
|
|
2918
|
-
if (if_block0) if_block0.m(div, null);
|
|
2919
|
-
append_dev(div, t);
|
|
2920
|
-
if (if_block1) if_block1.m(div, null);
|
|
2921
|
-
},
|
|
2922
|
-
p: function update(ctx, dirty) {
|
|
2923
|
-
if (/*paymentMethodsRepeater*/ ctx[4]) {
|
|
2924
|
-
if (if_block0) {
|
|
2925
|
-
if_block0.p(ctx, dirty);
|
|
2926
|
-
} else {
|
|
2927
|
-
if_block0 = create_if_block_13(ctx);
|
|
2928
|
-
if_block0.c();
|
|
2929
|
-
if_block0.m(div, t);
|
|
2930
|
-
}
|
|
2931
|
-
} else if (if_block0) {
|
|
2932
|
-
if_block0.d(1);
|
|
2933
|
-
if_block0 = null;
|
|
2934
|
-
}
|
|
2935
|
-
|
|
2936
|
-
if (/*gameVendorsRepeater*/ ctx[2]) {
|
|
2937
|
-
if (if_block1) {
|
|
2938
|
-
if_block1.p(ctx, dirty);
|
|
2939
|
-
} else {
|
|
2940
|
-
if_block1 = create_if_block_11(ctx);
|
|
2941
|
-
if_block1.c();
|
|
2942
|
-
if_block1.m(div, null);
|
|
2943
|
-
}
|
|
2944
|
-
} else if (if_block1) {
|
|
2945
|
-
if_block1.d(1);
|
|
2946
|
-
if_block1 = null;
|
|
2947
|
-
}
|
|
2948
|
-
|
|
2949
|
-
if (dirty & /*paymentMethodsRepeater, gameVendorsRepeater*/ 20 && div_class_value !== (div_class_value = "GridRow " + (/*paymentMethodsRepeater*/ ctx[4] && /*gameVendorsRepeater*/ ctx[2]
|
|
2950
|
-
? "SplitRow"
|
|
2951
|
-
: ""))) {
|
|
2952
|
-
attr_dev(div, "class", div_class_value);
|
|
2953
|
-
}
|
|
2954
|
-
},
|
|
2955
|
-
d: function destroy(detaching) {
|
|
2956
|
-
if (detaching) detach_dev(div);
|
|
2957
|
-
if (if_block0) if_block0.d();
|
|
2958
|
-
if (if_block1) if_block1.d();
|
|
2959
|
-
}
|
|
2960
|
-
};
|
|
2961
|
-
|
|
2962
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
2963
|
-
block,
|
|
2964
|
-
id: create_if_block_10.name,
|
|
2965
|
-
type: "if",
|
|
2966
|
-
source: "(78:6) {#if paymentMethodsRepeater || gameVendorsRepeater}",
|
|
2967
|
-
ctx
|
|
2968
|
-
});
|
|
2969
|
-
|
|
2970
|
-
return block;
|
|
2971
|
-
}
|
|
2972
|
-
|
|
2973
|
-
// (81:10) {#if paymentMethodsRepeater}
|
|
2974
|
-
function create_if_block_13(ctx) {
|
|
2975
|
-
let div;
|
|
2976
|
-
let t;
|
|
2977
|
-
let casino_footer_section;
|
|
2978
|
-
let if_block = /*paymentLinksTitle*/ ctx[3] && create_if_block_14(ctx);
|
|
2979
|
-
|
|
2980
|
-
const block = {
|
|
2981
|
-
c: function create() {
|
|
2982
|
-
div = element("div");
|
|
2983
|
-
if (if_block) if_block.c();
|
|
2984
|
-
t = space();
|
|
2985
|
-
casino_footer_section = element("casino-footer-section");
|
|
2986
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection");
|
|
2987
|
-
set_custom_element_data(casino_footer_section, "paymentflag", "1");
|
|
2988
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
2989
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
2990
|
-
add_location(casino_footer_section, file, 85, 14, 3122);
|
|
2991
|
-
attr_dev(div, "class", "GridCol");
|
|
2992
|
-
add_location(div, file, 81, 12, 2965);
|
|
2993
|
-
},
|
|
2994
|
-
m: function mount(target, anchor) {
|
|
2995
|
-
insert_dev(target, div, anchor);
|
|
2996
|
-
if (if_block) if_block.m(div, null);
|
|
2997
|
-
append_dev(div, t);
|
|
2998
|
-
append_dev(div, casino_footer_section);
|
|
2999
|
-
},
|
|
3000
|
-
p: function update(ctx, dirty) {
|
|
3001
|
-
if (/*paymentLinksTitle*/ ctx[3]) {
|
|
3002
|
-
if (if_block) {
|
|
3003
|
-
if_block.p(ctx, dirty);
|
|
3004
|
-
} else {
|
|
3005
|
-
if_block = create_if_block_14(ctx);
|
|
3006
|
-
if_block.c();
|
|
3007
|
-
if_block.m(div, t);
|
|
3008
|
-
}
|
|
3009
|
-
} else if (if_block) {
|
|
3010
|
-
if_block.d(1);
|
|
3011
|
-
if_block = null;
|
|
3012
|
-
}
|
|
3013
|
-
|
|
3014
|
-
if (dirty & /*target*/ 1) {
|
|
3015
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3016
|
-
}
|
|
3017
|
-
},
|
|
3018
|
-
d: function destroy(detaching) {
|
|
3019
|
-
if (detaching) detach_dev(div);
|
|
3020
|
-
if (if_block) if_block.d();
|
|
3021
|
-
}
|
|
3022
|
-
};
|
|
3023
|
-
|
|
3024
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3025
|
-
block,
|
|
3026
|
-
id: create_if_block_13.name,
|
|
3027
|
-
type: "if",
|
|
3028
|
-
source: "(81:10) {#if paymentMethodsRepeater}",
|
|
3029
|
-
ctx
|
|
3030
|
-
});
|
|
3031
|
-
|
|
3032
|
-
return block;
|
|
3033
|
-
}
|
|
3034
|
-
|
|
3035
|
-
// (83:14) {#if paymentLinksTitle}
|
|
3036
|
-
function create_if_block_14(ctx) {
|
|
3037
|
-
let p;
|
|
3038
|
-
let t;
|
|
3039
|
-
|
|
3040
|
-
const block = {
|
|
3041
|
-
c: function create() {
|
|
3042
|
-
p = element("p");
|
|
3043
|
-
t = text(/*paymentLinksTitle*/ ctx[3]);
|
|
3044
|
-
attr_dev(p, "class", "FooterTitle");
|
|
3045
|
-
add_location(p, file, 83, 16, 3041);
|
|
3046
|
-
},
|
|
3047
|
-
m: function mount(target, anchor) {
|
|
3048
|
-
insert_dev(target, p, anchor);
|
|
3049
|
-
append_dev(p, t);
|
|
3050
|
-
},
|
|
3051
|
-
p: function update(ctx, dirty) {
|
|
3052
|
-
if (dirty & /*paymentLinksTitle*/ 8) set_data_dev(t, /*paymentLinksTitle*/ ctx[3]);
|
|
3053
|
-
},
|
|
3054
|
-
d: function destroy(detaching) {
|
|
3055
|
-
if (detaching) detach_dev(p);
|
|
3056
|
-
}
|
|
3057
|
-
};
|
|
3058
|
-
|
|
3059
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3060
|
-
block,
|
|
3061
|
-
id: create_if_block_14.name,
|
|
3062
|
-
type: "if",
|
|
3063
|
-
source: "(83:14) {#if paymentLinksTitle}",
|
|
3064
|
-
ctx
|
|
3065
|
-
});
|
|
3066
|
-
|
|
3067
|
-
return block;
|
|
3068
|
-
}
|
|
3069
|
-
|
|
3070
|
-
// (91:10) {#if gameVendorsRepeater}
|
|
3071
|
-
function create_if_block_11(ctx) {
|
|
3072
|
-
let div;
|
|
3073
|
-
let t;
|
|
3074
|
-
let casino_footer_section;
|
|
3075
|
-
let if_block = /*gameVendorsLinksTitle*/ ctx[1] && create_if_block_12(ctx);
|
|
3076
|
-
|
|
3077
|
-
const block = {
|
|
3078
|
-
c: function create() {
|
|
3079
|
-
div = element("div");
|
|
3080
|
-
if (if_block) if_block.c();
|
|
3081
|
-
t = space();
|
|
3082
|
-
casino_footer_section = element("casino-footer-section");
|
|
3083
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection");
|
|
3084
|
-
set_custom_element_data(casino_footer_section, "vendorflag", "1");
|
|
3085
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
3086
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3087
|
-
add_location(casino_footer_section, file, 95, 14, 3583);
|
|
3088
|
-
attr_dev(div, "class", "GridCol");
|
|
3089
|
-
add_location(div, file, 91, 12, 3418);
|
|
3090
|
-
},
|
|
3091
|
-
m: function mount(target, anchor) {
|
|
3092
|
-
insert_dev(target, div, anchor);
|
|
3093
|
-
if (if_block) if_block.m(div, null);
|
|
3094
|
-
append_dev(div, t);
|
|
3095
|
-
append_dev(div, casino_footer_section);
|
|
3096
|
-
},
|
|
3097
|
-
p: function update(ctx, dirty) {
|
|
3098
|
-
if (/*gameVendorsLinksTitle*/ ctx[1]) {
|
|
3099
|
-
if (if_block) {
|
|
3100
|
-
if_block.p(ctx, dirty);
|
|
3101
|
-
} else {
|
|
3102
|
-
if_block = create_if_block_12(ctx);
|
|
3103
|
-
if_block.c();
|
|
3104
|
-
if_block.m(div, t);
|
|
3105
|
-
}
|
|
3106
|
-
} else if (if_block) {
|
|
3107
|
-
if_block.d(1);
|
|
3108
|
-
if_block = null;
|
|
3109
|
-
}
|
|
3110
|
-
|
|
3111
|
-
if (dirty & /*target*/ 1) {
|
|
3112
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3113
|
-
}
|
|
3114
|
-
},
|
|
3115
|
-
d: function destroy(detaching) {
|
|
3116
|
-
if (detaching) detach_dev(div);
|
|
3117
|
-
if (if_block) if_block.d();
|
|
3118
|
-
}
|
|
3119
|
-
};
|
|
3120
|
-
|
|
3121
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3122
|
-
block,
|
|
3123
|
-
id: create_if_block_11.name,
|
|
3124
|
-
type: "if",
|
|
3125
|
-
source: "(91:10) {#if gameVendorsRepeater}",
|
|
3126
|
-
ctx
|
|
3127
|
-
});
|
|
3128
|
-
|
|
3129
|
-
return block;
|
|
3130
|
-
}
|
|
3131
|
-
|
|
3132
|
-
// (93:14) {#if gameVendorsLinksTitle}
|
|
3133
|
-
function create_if_block_12(ctx) {
|
|
3134
|
-
let p;
|
|
3135
|
-
let t;
|
|
3136
|
-
|
|
3137
|
-
const block = {
|
|
3138
|
-
c: function create() {
|
|
3139
|
-
p = element("p");
|
|
3140
|
-
t = text(/*gameVendorsLinksTitle*/ ctx[1]);
|
|
3141
|
-
attr_dev(p, "class", "FooterTitle");
|
|
3142
|
-
add_location(p, file, 93, 16, 3498);
|
|
3143
|
-
},
|
|
3144
|
-
m: function mount(target, anchor) {
|
|
3145
|
-
insert_dev(target, p, anchor);
|
|
3146
|
-
append_dev(p, t);
|
|
3147
|
-
},
|
|
3148
|
-
p: function update(ctx, dirty) {
|
|
3149
|
-
if (dirty & /*gameVendorsLinksTitle*/ 2) set_data_dev(t, /*gameVendorsLinksTitle*/ ctx[1]);
|
|
3150
|
-
},
|
|
3151
|
-
d: function destroy(detaching) {
|
|
3152
|
-
if (detaching) detach_dev(p);
|
|
3153
|
-
}
|
|
3154
|
-
};
|
|
3155
|
-
|
|
3156
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3157
|
-
block,
|
|
3158
|
-
id: create_if_block_12.name,
|
|
3159
|
-
type: "if",
|
|
3160
|
-
source: "(93:14) {#if gameVendorsLinksTitle}",
|
|
3161
|
-
ctx
|
|
3162
|
-
});
|
|
3163
|
-
|
|
3164
|
-
return block;
|
|
3165
|
-
}
|
|
3166
|
-
|
|
3167
|
-
// (102:6) {#if helpLinksRepeater || licensesRepeater}
|
|
3168
|
-
function create_if_block_5(ctx) {
|
|
3169
|
-
let div;
|
|
3170
|
-
let t;
|
|
3171
|
-
let div_class_value;
|
|
3172
|
-
let if_block0 = /*helpLinksRepeater*/ ctx[8] && create_if_block_8(ctx);
|
|
3173
|
-
let if_block1 = /*licensesRepeater*/ ctx[10] && create_if_block_6(ctx);
|
|
3174
|
-
|
|
3175
|
-
const block = {
|
|
3176
|
-
c: function create() {
|
|
3177
|
-
div = element("div");
|
|
3178
|
-
if (if_block0) if_block0.c();
|
|
3179
|
-
t = space();
|
|
3180
|
-
if (if_block1) if_block1.c();
|
|
3181
|
-
|
|
3182
|
-
attr_dev(div, "class", div_class_value = "GridRow " + (/*helpLinksRepeater*/ ctx[8] && /*licensesRepeater*/ ctx[10]
|
|
3183
|
-
? "SplitRow"
|
|
3184
|
-
: ""));
|
|
3185
|
-
|
|
3186
|
-
add_location(div, file, 102, 8, 3873);
|
|
3187
|
-
},
|
|
3188
|
-
m: function mount(target, anchor) {
|
|
3189
|
-
insert_dev(target, div, anchor);
|
|
3190
|
-
if (if_block0) if_block0.m(div, null);
|
|
3191
|
-
append_dev(div, t);
|
|
3192
|
-
if (if_block1) if_block1.m(div, null);
|
|
3193
|
-
},
|
|
3194
|
-
p: function update(ctx, dirty) {
|
|
3195
|
-
if (/*helpLinksRepeater*/ ctx[8]) {
|
|
3196
|
-
if (if_block0) {
|
|
3197
|
-
if_block0.p(ctx, dirty);
|
|
3198
|
-
} else {
|
|
3199
|
-
if_block0 = create_if_block_8(ctx);
|
|
3200
|
-
if_block0.c();
|
|
3201
|
-
if_block0.m(div, t);
|
|
3202
|
-
}
|
|
3203
|
-
} else if (if_block0) {
|
|
3204
|
-
if_block0.d(1);
|
|
3205
|
-
if_block0 = null;
|
|
3206
|
-
}
|
|
3207
|
-
|
|
3208
|
-
if (/*licensesRepeater*/ ctx[10]) {
|
|
3209
|
-
if (if_block1) {
|
|
3210
|
-
if_block1.p(ctx, dirty);
|
|
3211
|
-
} else {
|
|
3212
|
-
if_block1 = create_if_block_6(ctx);
|
|
3213
|
-
if_block1.c();
|
|
3214
|
-
if_block1.m(div, null);
|
|
3215
|
-
}
|
|
3216
|
-
} else if (if_block1) {
|
|
3217
|
-
if_block1.d(1);
|
|
3218
|
-
if_block1 = null;
|
|
3219
|
-
}
|
|
3220
|
-
|
|
3221
|
-
if (dirty & /*helpLinksRepeater, licensesRepeater*/ 1280 && div_class_value !== (div_class_value = "GridRow " + (/*helpLinksRepeater*/ ctx[8] && /*licensesRepeater*/ ctx[10]
|
|
3222
|
-
? "SplitRow"
|
|
3223
|
-
: ""))) {
|
|
3224
|
-
attr_dev(div, "class", div_class_value);
|
|
3225
|
-
}
|
|
3226
|
-
},
|
|
3227
|
-
d: function destroy(detaching) {
|
|
3228
|
-
if (detaching) detach_dev(div);
|
|
3229
|
-
if (if_block0) if_block0.d();
|
|
3230
|
-
if (if_block1) if_block1.d();
|
|
3231
|
-
}
|
|
3232
|
-
};
|
|
3233
|
-
|
|
3234
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3235
|
-
block,
|
|
3236
|
-
id: create_if_block_5.name,
|
|
3237
|
-
type: "if",
|
|
3238
|
-
source: "(102:6) {#if helpLinksRepeater || licensesRepeater}",
|
|
3239
|
-
ctx
|
|
3240
|
-
});
|
|
3241
|
-
|
|
3242
|
-
return block;
|
|
3243
|
-
}
|
|
3244
|
-
|
|
3245
|
-
// (105:10) {#if helpLinksRepeater}
|
|
3246
|
-
function create_if_block_8(ctx) {
|
|
3247
|
-
let div;
|
|
3248
|
-
let t;
|
|
3249
|
-
let casino_footer_section;
|
|
3250
|
-
let if_block = /*helpLinksTitle*/ ctx[7] && create_if_block_9(ctx);
|
|
3251
|
-
|
|
3252
|
-
const block = {
|
|
3253
|
-
c: function create() {
|
|
3254
|
-
div = element("div");
|
|
3255
|
-
if (if_block) if_block.c();
|
|
3256
|
-
t = space();
|
|
3257
|
-
casino_footer_section = element("casino-footer-section");
|
|
3258
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection");
|
|
3259
|
-
set_custom_element_data(casino_footer_section, "helperflag", "1");
|
|
3260
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
3261
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3262
|
-
add_location(casino_footer_section, file, 109, 14, 4191);
|
|
3263
|
-
attr_dev(div, "class", "GridCol");
|
|
3264
|
-
add_location(div, file, 105, 12, 4040);
|
|
3265
|
-
},
|
|
3266
|
-
m: function mount(target, anchor) {
|
|
3267
|
-
insert_dev(target, div, anchor);
|
|
3268
|
-
if (if_block) if_block.m(div, null);
|
|
3269
|
-
append_dev(div, t);
|
|
3270
|
-
append_dev(div, casino_footer_section);
|
|
3271
|
-
},
|
|
3272
|
-
p: function update(ctx, dirty) {
|
|
3273
|
-
if (/*helpLinksTitle*/ ctx[7]) {
|
|
3274
|
-
if (if_block) {
|
|
3275
|
-
if_block.p(ctx, dirty);
|
|
3276
|
-
} else {
|
|
3277
|
-
if_block = create_if_block_9(ctx);
|
|
3278
|
-
if_block.c();
|
|
3279
|
-
if_block.m(div, t);
|
|
3280
|
-
}
|
|
3281
|
-
} else if (if_block) {
|
|
3282
|
-
if_block.d(1);
|
|
3283
|
-
if_block = null;
|
|
3284
|
-
}
|
|
3285
|
-
|
|
3286
|
-
if (dirty & /*target*/ 1) {
|
|
3287
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3288
|
-
}
|
|
3289
|
-
},
|
|
3290
|
-
d: function destroy(detaching) {
|
|
3291
|
-
if (detaching) detach_dev(div);
|
|
3292
|
-
if (if_block) if_block.d();
|
|
3293
|
-
}
|
|
3294
|
-
};
|
|
3295
|
-
|
|
3296
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3297
|
-
block,
|
|
3298
|
-
id: create_if_block_8.name,
|
|
3299
|
-
type: "if",
|
|
3300
|
-
source: "(105:10) {#if helpLinksRepeater}",
|
|
3301
|
-
ctx
|
|
3302
|
-
});
|
|
3303
|
-
|
|
3304
|
-
return block;
|
|
3305
|
-
}
|
|
3306
|
-
|
|
3307
|
-
// (107:14) {#if helpLinksTitle}
|
|
3308
|
-
function create_if_block_9(ctx) {
|
|
3309
|
-
let p;
|
|
3310
|
-
let t;
|
|
3311
|
-
|
|
3312
|
-
const block = {
|
|
3313
|
-
c: function create() {
|
|
3314
|
-
p = element("p");
|
|
3315
|
-
t = text(/*helpLinksTitle*/ ctx[7]);
|
|
3316
|
-
attr_dev(p, "class", "FooterTitle");
|
|
3317
|
-
add_location(p, file, 107, 16, 4113);
|
|
3318
|
-
},
|
|
3319
|
-
m: function mount(target, anchor) {
|
|
3320
|
-
insert_dev(target, p, anchor);
|
|
3321
|
-
append_dev(p, t);
|
|
3322
|
-
},
|
|
3323
|
-
p: function update(ctx, dirty) {
|
|
3324
|
-
if (dirty & /*helpLinksTitle*/ 128) set_data_dev(t, /*helpLinksTitle*/ ctx[7]);
|
|
3325
|
-
},
|
|
3326
|
-
d: function destroy(detaching) {
|
|
3327
|
-
if (detaching) detach_dev(p);
|
|
3328
|
-
}
|
|
3329
|
-
};
|
|
3330
|
-
|
|
3331
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3332
|
-
block,
|
|
3333
|
-
id: create_if_block_9.name,
|
|
3334
|
-
type: "if",
|
|
3335
|
-
source: "(107:14) {#if helpLinksTitle}",
|
|
3336
|
-
ctx
|
|
3337
|
-
});
|
|
3338
|
-
|
|
3339
|
-
return block;
|
|
3340
|
-
}
|
|
3341
|
-
|
|
3342
|
-
// (115:10) {#if licensesRepeater}
|
|
3343
|
-
function create_if_block_6(ctx) {
|
|
3344
|
-
let div;
|
|
3345
|
-
let t;
|
|
3346
|
-
let casino_footer_section;
|
|
3347
|
-
let if_block = /*licensesLinksTitle*/ ctx[9] && create_if_block_7(ctx);
|
|
3348
|
-
|
|
3349
|
-
const block = {
|
|
3350
|
-
c: function create() {
|
|
3351
|
-
div = element("div");
|
|
3352
|
-
if (if_block) if_block.c();
|
|
3353
|
-
t = space();
|
|
3354
|
-
casino_footer_section = element("casino-footer-section");
|
|
3355
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection");
|
|
3356
|
-
set_custom_element_data(casino_footer_section, "licenseflag", "1");
|
|
3357
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
3358
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3359
|
-
add_location(casino_footer_section, file, 119, 14, 4640);
|
|
3360
|
-
attr_dev(div, "class", "GridCol");
|
|
3361
|
-
add_location(div, file, 115, 12, 4481);
|
|
3362
|
-
},
|
|
3363
|
-
m: function mount(target, anchor) {
|
|
3364
|
-
insert_dev(target, div, anchor);
|
|
3365
|
-
if (if_block) if_block.m(div, null);
|
|
3366
|
-
append_dev(div, t);
|
|
3367
|
-
append_dev(div, casino_footer_section);
|
|
3368
|
-
},
|
|
3369
|
-
p: function update(ctx, dirty) {
|
|
3370
|
-
if (/*licensesLinksTitle*/ ctx[9]) {
|
|
3371
|
-
if (if_block) {
|
|
3372
|
-
if_block.p(ctx, dirty);
|
|
3373
|
-
} else {
|
|
3374
|
-
if_block = create_if_block_7(ctx);
|
|
3375
|
-
if_block.c();
|
|
3376
|
-
if_block.m(div, t);
|
|
3377
|
-
}
|
|
3378
|
-
} else if (if_block) {
|
|
3379
|
-
if_block.d(1);
|
|
3380
|
-
if_block = null;
|
|
3381
|
-
}
|
|
3382
|
-
|
|
3383
|
-
if (dirty & /*target*/ 1) {
|
|
3384
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3385
|
-
}
|
|
3386
|
-
},
|
|
3387
|
-
d: function destroy(detaching) {
|
|
3388
|
-
if (detaching) detach_dev(div);
|
|
3389
|
-
if (if_block) if_block.d();
|
|
3390
|
-
}
|
|
3391
|
-
};
|
|
3392
|
-
|
|
3393
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3394
|
-
block,
|
|
3395
|
-
id: create_if_block_6.name,
|
|
3396
|
-
type: "if",
|
|
3397
|
-
source: "(115:10) {#if licensesRepeater}",
|
|
3398
|
-
ctx
|
|
3399
|
-
});
|
|
3400
|
-
|
|
3401
|
-
return block;
|
|
3402
|
-
}
|
|
3403
|
-
|
|
3404
|
-
// (117:14) {#if licensesLinksTitle}
|
|
3405
|
-
function create_if_block_7(ctx) {
|
|
3406
|
-
let p;
|
|
3407
|
-
let t;
|
|
3408
|
-
|
|
3409
|
-
const block = {
|
|
3410
|
-
c: function create() {
|
|
3411
|
-
p = element("p");
|
|
3412
|
-
t = text(/*licensesLinksTitle*/ ctx[9]);
|
|
3413
|
-
attr_dev(p, "class", "FooterTitle");
|
|
3414
|
-
add_location(p, file, 117, 16, 4558);
|
|
3415
|
-
},
|
|
3416
|
-
m: function mount(target, anchor) {
|
|
3417
|
-
insert_dev(target, p, anchor);
|
|
3418
|
-
append_dev(p, t);
|
|
3419
|
-
},
|
|
3420
|
-
p: function update(ctx, dirty) {
|
|
3421
|
-
if (dirty & /*licensesLinksTitle*/ 512) set_data_dev(t, /*licensesLinksTitle*/ ctx[9]);
|
|
3422
|
-
},
|
|
3423
|
-
d: function destroy(detaching) {
|
|
3424
|
-
if (detaching) detach_dev(p);
|
|
3425
|
-
}
|
|
3426
|
-
};
|
|
3427
|
-
|
|
3428
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3429
|
-
block,
|
|
3430
|
-
id: create_if_block_7.name,
|
|
3431
|
-
type: "if",
|
|
3432
|
-
source: "(117:14) {#if licensesLinksTitle}",
|
|
3433
|
-
ctx
|
|
3434
|
-
});
|
|
3435
|
-
|
|
3436
|
-
return block;
|
|
3437
|
-
}
|
|
3438
|
-
|
|
3439
|
-
// (126:6) {#if licenseDesc || copyright}
|
|
3440
|
-
function create_if_block_2(ctx) {
|
|
3441
|
-
let div3;
|
|
3442
|
-
let div2;
|
|
3443
|
-
let div0;
|
|
3444
|
-
let setContent_action;
|
|
3445
|
-
let t0;
|
|
3446
|
-
let t1;
|
|
3447
|
-
let div1;
|
|
3448
|
-
let setContent_action_1;
|
|
3449
|
-
let mounted;
|
|
3450
|
-
let dispose;
|
|
3451
|
-
let if_block = /*socialLinksRepeater*/ ctx[12] && create_if_block_3(ctx);
|
|
3452
|
-
|
|
3453
|
-
const block = {
|
|
3454
|
-
c: function create() {
|
|
3455
|
-
div3 = element("div");
|
|
3456
|
-
div2 = element("div");
|
|
3457
|
-
div0 = element("div");
|
|
3458
|
-
t0 = space();
|
|
3459
|
-
if (if_block) if_block.c();
|
|
3460
|
-
t1 = space();
|
|
3461
|
-
div1 = element("div");
|
|
3462
|
-
attr_dev(div0, "class", "DetailedLicenses");
|
|
3463
|
-
add_location(div0, file, 130, 14, 5094);
|
|
3464
|
-
attr_dev(div1, "class", "CopyrightAreaRights CopyrightArea");
|
|
3465
|
-
add_location(div1, file, 139, 14, 5649);
|
|
3466
|
-
attr_dev(div2, "class", "GridCol");
|
|
3467
|
-
add_location(div2, file, 128, 12, 5003);
|
|
3468
|
-
attr_dev(div3, "class", "GridRow LicenseRow");
|
|
3469
|
-
add_location(div3, file, 126, 8, 4918);
|
|
3470
|
-
},
|
|
3471
|
-
m: function mount(target, anchor) {
|
|
3472
|
-
insert_dev(target, div3, anchor);
|
|
3473
|
-
append_dev(div3, div2);
|
|
3474
|
-
append_dev(div2, div0);
|
|
3475
|
-
/*div0_binding*/ ctx[24](div0);
|
|
3476
|
-
append_dev(div2, t0);
|
|
3477
|
-
if (if_block) if_block.m(div2, null);
|
|
3478
|
-
append_dev(div2, t1);
|
|
3479
|
-
append_dev(div2, div1);
|
|
3480
|
-
/*div1_binding*/ ctx[25](div1);
|
|
3481
|
-
|
|
3482
|
-
if (!mounted) {
|
|
3483
|
-
dispose = [
|
|
3484
|
-
action_destroyer(setContent_action = /*setContent*/ ctx[21].call(null, div0, /*licenseDesc*/ ctx[14])),
|
|
3485
|
-
action_destroyer(setContent_action_1 = /*setContent*/ ctx[21].call(null, div1, /*copyright*/ ctx[13]))
|
|
3486
|
-
];
|
|
3487
|
-
|
|
3488
|
-
mounted = true;
|
|
3489
|
-
}
|
|
3490
|
-
},
|
|
3491
|
-
p: function update(ctx, dirty) {
|
|
3492
|
-
if (setContent_action && is_function(setContent_action.update) && dirty & /*licenseDesc*/ 16384) setContent_action.update.call(null, /*licenseDesc*/ ctx[14]);
|
|
3493
|
-
|
|
3494
|
-
if (/*socialLinksRepeater*/ ctx[12]) {
|
|
3495
|
-
if (if_block) {
|
|
3496
|
-
if_block.p(ctx, dirty);
|
|
3497
|
-
} else {
|
|
3498
|
-
if_block = create_if_block_3(ctx);
|
|
3499
|
-
if_block.c();
|
|
3500
|
-
if_block.m(div2, t1);
|
|
3501
|
-
}
|
|
3502
|
-
} else if (if_block) {
|
|
3503
|
-
if_block.d(1);
|
|
3504
|
-
if_block = null;
|
|
3505
|
-
}
|
|
3506
|
-
|
|
3507
|
-
if (setContent_action_1 && is_function(setContent_action_1.update) && dirty & /*copyright*/ 8192) setContent_action_1.update.call(null, /*copyright*/ ctx[13]);
|
|
3508
|
-
},
|
|
3509
|
-
d: function destroy(detaching) {
|
|
3510
|
-
if (detaching) detach_dev(div3);
|
|
3511
|
-
/*div0_binding*/ ctx[24](null);
|
|
3512
|
-
if (if_block) if_block.d();
|
|
3513
|
-
/*div1_binding*/ ctx[25](null);
|
|
3514
|
-
mounted = false;
|
|
3515
|
-
run_all(dispose);
|
|
3516
|
-
}
|
|
3517
|
-
};
|
|
3518
|
-
|
|
3519
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3520
|
-
block,
|
|
3521
|
-
id: create_if_block_2.name,
|
|
3522
|
-
type: "if",
|
|
3523
|
-
source: "(126:6) {#if licenseDesc || copyright}",
|
|
3524
|
-
ctx
|
|
3525
|
-
});
|
|
3526
|
-
|
|
3527
|
-
return block;
|
|
3528
|
-
}
|
|
3529
|
-
|
|
3530
|
-
// (133:14) {#if socialLinksRepeater}
|
|
3531
|
-
function create_if_block_3(ctx) {
|
|
3532
|
-
let t;
|
|
3533
|
-
let casino_footer_section;
|
|
3534
|
-
let if_block = /*socialLinksTitle*/ ctx[11] && create_if_block_4(ctx);
|
|
3535
|
-
|
|
3536
|
-
const block = {
|
|
3537
|
-
c: function create() {
|
|
3538
|
-
if (if_block) if_block.c();
|
|
3539
|
-
t = space();
|
|
3540
|
-
casino_footer_section = element("casino-footer-section");
|
|
3541
|
-
set_custom_element_data(casino_footer_section, "class", "FooterSection SocialSection");
|
|
3542
|
-
set_custom_element_data(casino_footer_section, "socialflag", "1");
|
|
3543
|
-
set_custom_element_data(casino_footer_section, "clientstyling", /*customStyling*/ ctx[20]);
|
|
3544
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3545
|
-
add_location(casino_footer_section, file, 136, 16, 5423);
|
|
3546
|
-
},
|
|
3547
|
-
m: function mount(target, anchor) {
|
|
3548
|
-
if (if_block) if_block.m(target, anchor);
|
|
3549
|
-
insert_dev(target, t, anchor);
|
|
3550
|
-
insert_dev(target, casino_footer_section, anchor);
|
|
3551
|
-
},
|
|
3552
|
-
p: function update(ctx, dirty) {
|
|
3553
|
-
if (/*socialLinksTitle*/ ctx[11]) {
|
|
3554
|
-
if (if_block) {
|
|
3555
|
-
if_block.p(ctx, dirty);
|
|
3556
|
-
} else {
|
|
3557
|
-
if_block = create_if_block_4(ctx);
|
|
3558
|
-
if_block.c();
|
|
3559
|
-
if_block.m(t.parentNode, t);
|
|
3560
|
-
}
|
|
3561
|
-
} else if (if_block) {
|
|
3562
|
-
if_block.d(1);
|
|
3563
|
-
if_block = null;
|
|
3564
|
-
}
|
|
3565
|
-
|
|
3566
|
-
if (dirty & /*target*/ 1) {
|
|
3567
|
-
set_custom_element_data(casino_footer_section, "target", /*target*/ ctx[0]);
|
|
3568
|
-
}
|
|
3569
|
-
},
|
|
3570
|
-
d: function destroy(detaching) {
|
|
3571
|
-
if (if_block) if_block.d(detaching);
|
|
3572
|
-
if (detaching) detach_dev(t);
|
|
3573
|
-
if (detaching) detach_dev(casino_footer_section);
|
|
3574
|
-
}
|
|
3575
|
-
};
|
|
3576
|
-
|
|
3577
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3578
|
-
block,
|
|
3579
|
-
id: create_if_block_3.name,
|
|
3580
|
-
type: "if",
|
|
3581
|
-
source: "(133:14) {#if socialLinksRepeater}",
|
|
3582
|
-
ctx
|
|
3583
|
-
});
|
|
3584
|
-
|
|
3585
|
-
return block;
|
|
3586
|
-
}
|
|
3587
|
-
|
|
3588
|
-
// (134:16) {#if socialLinksTitle}
|
|
3589
|
-
function create_if_block_4(ctx) {
|
|
3590
|
-
let p;
|
|
3591
|
-
let t;
|
|
3592
|
-
|
|
3593
|
-
const block = {
|
|
3594
|
-
c: function create() {
|
|
3595
|
-
p = element("p");
|
|
3596
|
-
t = text(/*socialLinksTitle*/ ctx[11]);
|
|
3597
|
-
attr_dev(p, "class", "FooterTitle");
|
|
3598
|
-
add_location(p, file, 134, 18, 5339);
|
|
3599
|
-
},
|
|
3600
|
-
m: function mount(target, anchor) {
|
|
3601
|
-
insert_dev(target, p, anchor);
|
|
3602
|
-
append_dev(p, t);
|
|
3603
|
-
},
|
|
3604
|
-
p: function update(ctx, dirty) {
|
|
3605
|
-
if (dirty & /*socialLinksTitle*/ 2048) set_data_dev(t, /*socialLinksTitle*/ ctx[11]);
|
|
3606
|
-
},
|
|
3607
|
-
d: function destroy(detaching) {
|
|
3608
|
-
if (detaching) detach_dev(p);
|
|
3609
|
-
}
|
|
3610
|
-
};
|
|
3611
|
-
|
|
3612
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3613
|
-
block,
|
|
3614
|
-
id: create_if_block_4.name,
|
|
3615
|
-
type: "if",
|
|
3616
|
-
source: "(134:16) {#if socialLinksTitle}",
|
|
3617
|
-
ctx
|
|
3618
|
-
});
|
|
3619
|
-
|
|
3620
|
-
return block;
|
|
3621
|
-
}
|
|
3622
|
-
|
|
3623
|
-
function create_fragment(ctx) {
|
|
3624
|
-
let if_block_anchor;
|
|
3625
|
-
|
|
3626
|
-
function select_block_type(ctx, dirty) {
|
|
3627
|
-
if (/*hasErrors*/ ctx[18]) return create_if_block;
|
|
3628
|
-
if (/*isLoading*/ ctx[19]) return create_if_block_1;
|
|
3629
|
-
return create_else_block;
|
|
3630
|
-
}
|
|
3631
|
-
|
|
3632
|
-
let current_block_type = select_block_type(ctx);
|
|
3633
|
-
let if_block = current_block_type(ctx);
|
|
3634
|
-
|
|
3635
|
-
const block = {
|
|
3636
|
-
c: function create() {
|
|
3637
|
-
if_block.c();
|
|
3638
|
-
if_block_anchor = empty();
|
|
3639
|
-
this.c = noop;
|
|
3640
|
-
},
|
|
3641
|
-
l: function claim(nodes) {
|
|
3642
|
-
throw new Error("options.hydrate only works if the component was compiled with the `hydratable: true` option");
|
|
3643
|
-
},
|
|
3644
|
-
m: function mount(target, anchor) {
|
|
3645
|
-
if_block.m(target, anchor);
|
|
3646
|
-
insert_dev(target, if_block_anchor, anchor);
|
|
3647
|
-
},
|
|
3648
|
-
p: function update(ctx, [dirty]) {
|
|
3649
|
-
if (current_block_type === (current_block_type = select_block_type(ctx)) && if_block) {
|
|
3650
|
-
if_block.p(ctx, dirty);
|
|
3651
|
-
} else {
|
|
3652
|
-
if_block.d(1);
|
|
3653
|
-
if_block = current_block_type(ctx);
|
|
3654
|
-
|
|
3655
|
-
if (if_block) {
|
|
3656
|
-
if_block.c();
|
|
3657
|
-
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
3658
|
-
}
|
|
3659
|
-
}
|
|
3660
|
-
},
|
|
3661
|
-
i: noop,
|
|
3662
|
-
o: noop,
|
|
3663
|
-
d: function destroy(detaching) {
|
|
3664
|
-
if_block.d(detaching);
|
|
3665
|
-
if (detaching) detach_dev(if_block_anchor);
|
|
3666
|
-
}
|
|
3667
|
-
};
|
|
3668
|
-
|
|
3669
|
-
dispatch_dev("SvelteRegisterBlock", {
|
|
3670
|
-
block,
|
|
3671
|
-
id: create_fragment.name,
|
|
3672
|
-
type: "component",
|
|
3673
|
-
source: "",
|
|
3674
|
-
ctx
|
|
3675
|
-
});
|
|
3676
|
-
|
|
3677
|
-
return block;
|
|
3678
|
-
}
|
|
3679
|
-
|
|
3680
|
-
function instance($$self, $$props, $$invalidate) {
|
|
3681
|
-
let { $$slots: slots = {}, $$scope } = $$props;
|
|
3682
|
-
validate_slots("undefined", slots, []);
|
|
3683
|
-
let { endpoint = "" } = $$props;
|
|
3684
|
-
let { clientstyling = "" } = $$props;
|
|
3685
|
-
let { target = "" } = $$props;
|
|
3686
|
-
let gameVendorsLinksTitle = "";
|
|
3687
|
-
let gameVendorsRepeater = [];
|
|
3688
|
-
let paymentLinksTitle = "";
|
|
3689
|
-
let paymentMethodsRepeater = [];
|
|
3690
|
-
let sponsorsLinksTitle = "";
|
|
3691
|
-
let sponsorsRepeater = [];
|
|
3692
|
-
let helpLinksTitle = "";
|
|
3693
|
-
let helpLinksRepeater = [];
|
|
3694
|
-
let licensesLinksTitle = "";
|
|
3695
|
-
let licensesRepeater = [];
|
|
3696
|
-
let socialLinksTitle = "";
|
|
3697
|
-
let socialLinksRepeater = [];
|
|
3698
|
-
let copyright = "";
|
|
3699
|
-
let licenseDesc = "";
|
|
3700
|
-
let licenseContainer;
|
|
3701
|
-
let copyrightContainer;
|
|
3702
|
-
let footerWidget;
|
|
3703
|
-
let hasErrors = false;
|
|
3704
|
-
let isLoading = false;
|
|
3705
|
-
let receivedFooterData;
|
|
3706
|
-
let customStyling = "";
|
|
3707
|
-
|
|
3708
|
-
const getData = () => {
|
|
3709
|
-
$$invalidate(19, isLoading = true);
|
|
3710
|
-
|
|
3711
|
-
fetch(endpoint).then(res => res.json()).then(data => {
|
|
3712
|
-
$$invalidate(19, isLoading = false);
|
|
3713
|
-
receivedFooterData = data;
|
|
3714
|
-
$$invalidate(1, { gameVendorsLinksTitle, gameVendorsRepeater, paymentLinksTitle, paymentMethodsRepeater, sponsorsLinksTitle, sponsorsRepeater, helpLinksTitle, helpLinksRepeater, licensesLinksTitle, licensesRepeater, socialLinksTitle, socialLinksRepeater, copyright, licenseDesc } = receivedFooterData, gameVendorsLinksTitle, $$invalidate(2, gameVendorsRepeater), $$invalidate(3, paymentLinksTitle), $$invalidate(4, paymentMethodsRepeater), $$invalidate(5, sponsorsLinksTitle), $$invalidate(6, sponsorsRepeater), $$invalidate(7, helpLinksTitle), $$invalidate(8, helpLinksRepeater), $$invalidate(9, licensesLinksTitle), $$invalidate(10, licensesRepeater), $$invalidate(11, socialLinksTitle), $$invalidate(12, socialLinksRepeater), $$invalidate(13, copyright), $$invalidate(14, licenseDesc));
|
|
3715
|
-
|
|
3716
|
-
window.postMessage(
|
|
3717
|
-
{
|
|
3718
|
-
type: "FooterData",
|
|
3719
|
-
gameVendorsRepeater,
|
|
3720
|
-
paymentMethodsRepeater,
|
|
3721
|
-
sponsorsRepeater,
|
|
3722
|
-
helpLinksRepeater,
|
|
3723
|
-
licensesRepeater,
|
|
3724
|
-
socialLinksRepeater
|
|
3725
|
-
},
|
|
3726
|
-
window.location.href
|
|
3727
|
-
);
|
|
3728
|
-
}).catch(err => {
|
|
3729
|
-
$$invalidate(18, hasErrors = true);
|
|
3730
|
-
$$invalidate(19, isLoading = false);
|
|
3731
|
-
console.error(err);
|
|
3732
|
-
});
|
|
3733
|
-
};
|
|
3734
|
-
|
|
3735
|
-
const setContent = (element, content) => {
|
|
3736
|
-
let htmlContent = document.createElement("div");
|
|
3737
|
-
htmlContent.innerHTML = content;
|
|
3738
|
-
element.append(htmlContent);
|
|
3739
|
-
};
|
|
3740
|
-
|
|
3741
|
-
const setClientStyling = () => {
|
|
3742
|
-
let sheet = document.createElement("style");
|
|
3743
|
-
sheet.innerHTML = clientstyling;
|
|
3744
|
-
footerWidget.appendChild(sheet);
|
|
3745
|
-
};
|
|
3746
|
-
|
|
3747
|
-
const writable_props = ["endpoint", "clientstyling", "target"];
|
|
3748
|
-
|
|
3749
|
-
Object.keys($$props).forEach(key => {
|
|
3750
|
-
if (!~writable_props.indexOf(key) && key.slice(0, 2) !== "$$") console_1.warn(`<undefined> was created with unknown prop '${key}'`);
|
|
3751
|
-
});
|
|
3752
|
-
|
|
3753
|
-
function div0_binding($$value) {
|
|
3754
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
3755
|
-
licenseContainer = $$value;
|
|
3756
|
-
$$invalidate(15, licenseContainer);
|
|
3757
|
-
});
|
|
3758
|
-
}
|
|
3759
|
-
|
|
3760
|
-
function div1_binding($$value) {
|
|
3761
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
3762
|
-
copyrightContainer = $$value;
|
|
3763
|
-
$$invalidate(16, copyrightContainer);
|
|
3764
|
-
});
|
|
3765
|
-
}
|
|
3766
|
-
|
|
3767
|
-
function div_binding($$value) {
|
|
3768
|
-
binding_callbacks[$$value ? "unshift" : "push"](() => {
|
|
3769
|
-
footerWidget = $$value;
|
|
3770
|
-
$$invalidate(17, footerWidget);
|
|
3771
|
-
});
|
|
3772
|
-
}
|
|
3773
|
-
|
|
3774
|
-
$$self.$$set = $$props => {
|
|
3775
|
-
if ("endpoint" in $$props) $$invalidate(22, endpoint = $$props.endpoint);
|
|
3776
|
-
if ("clientstyling" in $$props) $$invalidate(23, clientstyling = $$props.clientstyling);
|
|
3777
|
-
if ("target" in $$props) $$invalidate(0, target = $$props.target);
|
|
3778
|
-
};
|
|
3779
|
-
|
|
3780
|
-
$$self.$capture_state = () => ({
|
|
3781
|
-
endpoint,
|
|
3782
|
-
clientstyling,
|
|
3783
|
-
target,
|
|
3784
|
-
gameVendorsLinksTitle,
|
|
3785
|
-
gameVendorsRepeater,
|
|
3786
|
-
paymentLinksTitle,
|
|
3787
|
-
paymentMethodsRepeater,
|
|
3788
|
-
sponsorsLinksTitle,
|
|
3789
|
-
sponsorsRepeater,
|
|
3790
|
-
helpLinksTitle,
|
|
3791
|
-
helpLinksRepeater,
|
|
3792
|
-
licensesLinksTitle,
|
|
3793
|
-
licensesRepeater,
|
|
3794
|
-
socialLinksTitle,
|
|
3795
|
-
socialLinksRepeater,
|
|
3796
|
-
copyright,
|
|
3797
|
-
licenseDesc,
|
|
3798
|
-
licenseContainer,
|
|
3799
|
-
copyrightContainer,
|
|
3800
|
-
footerWidget,
|
|
3801
|
-
hasErrors,
|
|
3802
|
-
isLoading,
|
|
3803
|
-
receivedFooterData,
|
|
3804
|
-
customStyling,
|
|
3805
|
-
getData,
|
|
3806
|
-
setContent,
|
|
3807
|
-
setClientStyling
|
|
3808
|
-
});
|
|
3809
|
-
|
|
3810
|
-
$$self.$inject_state = $$props => {
|
|
3811
|
-
if ("endpoint" in $$props) $$invalidate(22, endpoint = $$props.endpoint);
|
|
3812
|
-
if ("clientstyling" in $$props) $$invalidate(23, clientstyling = $$props.clientstyling);
|
|
3813
|
-
if ("target" in $$props) $$invalidate(0, target = $$props.target);
|
|
3814
|
-
if ("gameVendorsLinksTitle" in $$props) $$invalidate(1, gameVendorsLinksTitle = $$props.gameVendorsLinksTitle);
|
|
3815
|
-
if ("gameVendorsRepeater" in $$props) $$invalidate(2, gameVendorsRepeater = $$props.gameVendorsRepeater);
|
|
3816
|
-
if ("paymentLinksTitle" in $$props) $$invalidate(3, paymentLinksTitle = $$props.paymentLinksTitle);
|
|
3817
|
-
if ("paymentMethodsRepeater" in $$props) $$invalidate(4, paymentMethodsRepeater = $$props.paymentMethodsRepeater);
|
|
3818
|
-
if ("sponsorsLinksTitle" in $$props) $$invalidate(5, sponsorsLinksTitle = $$props.sponsorsLinksTitle);
|
|
3819
|
-
if ("sponsorsRepeater" in $$props) $$invalidate(6, sponsorsRepeater = $$props.sponsorsRepeater);
|
|
3820
|
-
if ("helpLinksTitle" in $$props) $$invalidate(7, helpLinksTitle = $$props.helpLinksTitle);
|
|
3821
|
-
if ("helpLinksRepeater" in $$props) $$invalidate(8, helpLinksRepeater = $$props.helpLinksRepeater);
|
|
3822
|
-
if ("licensesLinksTitle" in $$props) $$invalidate(9, licensesLinksTitle = $$props.licensesLinksTitle);
|
|
3823
|
-
if ("licensesRepeater" in $$props) $$invalidate(10, licensesRepeater = $$props.licensesRepeater);
|
|
3824
|
-
if ("socialLinksTitle" in $$props) $$invalidate(11, socialLinksTitle = $$props.socialLinksTitle);
|
|
3825
|
-
if ("socialLinksRepeater" in $$props) $$invalidate(12, socialLinksRepeater = $$props.socialLinksRepeater);
|
|
3826
|
-
if ("copyright" in $$props) $$invalidate(13, copyright = $$props.copyright);
|
|
3827
|
-
if ("licenseDesc" in $$props) $$invalidate(14, licenseDesc = $$props.licenseDesc);
|
|
3828
|
-
if ("licenseContainer" in $$props) $$invalidate(15, licenseContainer = $$props.licenseContainer);
|
|
3829
|
-
if ("copyrightContainer" in $$props) $$invalidate(16, copyrightContainer = $$props.copyrightContainer);
|
|
3830
|
-
if ("footerWidget" in $$props) $$invalidate(17, footerWidget = $$props.footerWidget);
|
|
3831
|
-
if ("hasErrors" in $$props) $$invalidate(18, hasErrors = $$props.hasErrors);
|
|
3832
|
-
if ("isLoading" in $$props) $$invalidate(19, isLoading = $$props.isLoading);
|
|
3833
|
-
if ("receivedFooterData" in $$props) receivedFooterData = $$props.receivedFooterData;
|
|
3834
|
-
if ("customStyling" in $$props) $$invalidate(20, customStyling = $$props.customStyling);
|
|
3835
|
-
};
|
|
3836
|
-
|
|
3837
|
-
if ($$props && "$$inject" in $$props) {
|
|
3838
|
-
$$self.$inject_state($$props.$$inject);
|
|
3839
|
-
}
|
|
3840
|
-
|
|
3841
|
-
$$self.$$.update = () => {
|
|
3842
|
-
if ($$self.$$.dirty & /*clientstyling*/ 8388608) {
|
|
3843
|
-
clientstyling && setClientStyling();
|
|
3844
|
-
}
|
|
3845
|
-
|
|
3846
|
-
if ($$self.$$.dirty & /*endpoint*/ 4194304) {
|
|
3847
|
-
endpoint && getData();
|
|
3848
|
-
}
|
|
3849
|
-
};
|
|
3850
|
-
|
|
3851
|
-
return [
|
|
3852
|
-
target,
|
|
3853
|
-
gameVendorsLinksTitle,
|
|
3854
|
-
gameVendorsRepeater,
|
|
3855
|
-
paymentLinksTitle,
|
|
3856
|
-
paymentMethodsRepeater,
|
|
3857
|
-
sponsorsLinksTitle,
|
|
3858
|
-
sponsorsRepeater,
|
|
3859
|
-
helpLinksTitle,
|
|
3860
|
-
helpLinksRepeater,
|
|
3861
|
-
licensesLinksTitle,
|
|
3862
|
-
licensesRepeater,
|
|
3863
|
-
socialLinksTitle,
|
|
3864
|
-
socialLinksRepeater,
|
|
3865
|
-
copyright,
|
|
3866
|
-
licenseDesc,
|
|
3867
|
-
licenseContainer,
|
|
3868
|
-
copyrightContainer,
|
|
3869
|
-
footerWidget,
|
|
3870
|
-
hasErrors,
|
|
3871
|
-
isLoading,
|
|
3872
|
-
customStyling,
|
|
3873
|
-
setContent,
|
|
3874
|
-
endpoint,
|
|
3875
|
-
clientstyling,
|
|
3876
|
-
div0_binding,
|
|
3877
|
-
div1_binding,
|
|
3878
|
-
div_binding
|
|
3879
|
-
];
|
|
3880
|
-
}
|
|
3881
|
-
|
|
3882
|
-
class CasinoFooter extends SvelteElement {
|
|
3883
|
-
constructor(options) {
|
|
3884
|
-
super();
|
|
3885
|
-
this.shadowRoot.innerHTML = `<style>@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap");.SearchLoading{color:#fff;text-align:center}.FooterGrid{font-family:'Roboto', sans-serif, Arial;font-weight:400;display:flex;padding:10px 40px;background-color:#212529;color:#fff;flex-direction:column;align-items:center;justify-content:center}.FooterGrid.NoSponsorSpacing{padding-top:30px}.FooterGrid .GridRow{display:flex;flex-flow:row wrap;width:100%;padding:20px 0;align-items:flex-start;justify-content:center}.FooterGrid .GridRow:first-child{padding-top:0}.FooterGrid .GridRow:not(:last-child){border-bottom:1px solid rgba(255, 255, 255, 0.1)}.FooterGrid .GridRow.LicenseRow{border-bottom:0}.FooterGrid .GridRow.SplitRow .GridCol:first-child{flex-basis:45%}.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){flex-basis:calc(55% - 1px);border-left:1px solid rgba(255, 255, 255, 0.1)}.FooterGrid .GridRow .GridCol{width:100%;flex:1}.FooterGrid .GridRow .GridCol p{text-align:center}.FooterGrid .GridRow .GridCol p.FooterTitle{font-size:12px;font-weight:700}.FooterGrid .DetailedLicenses{margin:30px 50px 20px;font-size:10px;text-align:center;color:#828282}.FooterGrid .CopyrightAreaRights{margin-top:10px}.FooterGrid .CopyrightTextArea p,.FooterGrid .CopyrightArea p{margin:0;color:#828282;font-size:9.008px}@media only screen and (max-width: 768px){.FooterGrid{padding:5.008px 20px}.FooterGrid .FooterTitle{margin-top:0}.FooterGrid .GridRow{padding:0}.FooterGrid .GridRow:not(:last-child){border-bottom:0}.FooterGrid .GridRow:last-child .GridCol:last-child{border-bottom:0}.FooterGrid .GridRow.SplitRow .GridCol:first-child,.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){flex-basis:unset}.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){border-left:none}.FooterGrid .GridRow .GridCol{border-bottom:1px solid rgba(255, 255, 255, 0.1);padding:15.008px 0}}</style>`;
|
|
3886
|
-
|
|
3887
|
-
init(
|
|
3888
|
-
this,
|
|
3889
|
-
{
|
|
3890
|
-
target: this.shadowRoot,
|
|
3891
|
-
props: attribute_to_object(this.attributes),
|
|
3892
|
-
customElement: true
|
|
3893
|
-
},
|
|
3894
|
-
instance,
|
|
3895
|
-
create_fragment,
|
|
3896
|
-
safe_not_equal,
|
|
3897
|
-
{
|
|
3898
|
-
endpoint: 22,
|
|
3899
|
-
clientstyling: 23,
|
|
3900
|
-
target: 0
|
|
3901
|
-
}
|
|
3902
|
-
);
|
|
3903
|
-
|
|
3904
|
-
if (options) {
|
|
3905
|
-
if (options.target) {
|
|
3906
|
-
insert_dev(options.target, this, options.anchor);
|
|
3907
|
-
}
|
|
3908
|
-
|
|
3909
|
-
if (options.props) {
|
|
3910
|
-
this.$set(options.props);
|
|
3911
|
-
flush();
|
|
3912
|
-
}
|
|
3913
|
-
}
|
|
3914
|
-
}
|
|
3915
|
-
|
|
3916
|
-
static get observedAttributes() {
|
|
3917
|
-
return ["endpoint", "clientstyling", "target"];
|
|
3918
|
-
}
|
|
3919
|
-
|
|
3920
|
-
get endpoint() {
|
|
3921
|
-
return this.$$.ctx[22];
|
|
3922
|
-
}
|
|
3923
|
-
|
|
3924
|
-
set endpoint(endpoint) {
|
|
3925
|
-
this.$set({ endpoint });
|
|
3926
|
-
flush();
|
|
3927
|
-
}
|
|
3928
|
-
|
|
3929
|
-
get clientstyling() {
|
|
3930
|
-
return this.$$.ctx[23];
|
|
3931
|
-
}
|
|
3932
|
-
|
|
3933
|
-
set clientstyling(clientstyling) {
|
|
3934
|
-
this.$set({ clientstyling });
|
|
3935
|
-
flush();
|
|
3936
|
-
}
|
|
3937
|
-
|
|
3938
|
-
get target() {
|
|
3939
|
-
return this.$$.ctx[0];
|
|
3940
|
-
}
|
|
3941
|
-
|
|
3942
|
-
set target(target) {
|
|
3943
|
-
this.$set({ target });
|
|
3944
|
-
flush();
|
|
3945
|
-
}
|
|
3946
|
-
}
|
|
3947
|
-
|
|
3948
|
-
!customElements.get('casino-footer') && customElements.define('casino-footer', CasinoFooter);
|
|
3949
|
-
|
|
3950
|
-
return CasinoFooter;
|
|
3951
|
-
|
|
3952
|
-
})));
|
|
1
|
+
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).app=e()}(this,function(){"use strict";function p(){}function u(t){return t()}function g(){return Object.create(null)}function m(t){t.forEach(u)}function h(t){return"function"==typeof t}function e(t,e){return t!=t?e==e:t!==e||t&&"object"==typeof t||"function"==typeof t}function f(t){return t&&h(t.destroy)?t.destroy:p}function $(t,e){t.appendChild(e)}function y(t,e,n){t.insertBefore(e,n||null)}function k(t){t.parentNode.removeChild(t)}function n(e,n){for(let t=0;t<e.length;t+=1)e[t]&&e[t].d(n)}function F(t){return document.createElement(t)}function r(t){return document.createTextNode(t)}function x(){return r(" ")}function v(t,e,n){null==n?t.removeAttribute(e):t.getAttribute(e)!==n&&t.setAttribute(e,n)}function s(t,e,n){e in t?t[e]=n:v(t,e,n)}function i(t,e){t.wholeText!==(e=""+e)&&(t.data=e)}function l(t){const e={};for(const n of t)e[n.name]=n.value;return e}let b;function L(t){b=t}const I=[],w=[],o=[],t=[],G=Promise.resolve();let R=!1;function T(t){o.push(t)}let a=!1;const c=new Set;function S(){if(!a){a=!0;do{for(let t=0;t<I.length;t+=1){var e=I[t];L(e),function(t){{var e;null!==t.fragment&&(t.update(),m(t.before_update),e=t.dirty,t.dirty=[-1],t.fragment&&t.fragment.p(t.ctx,e),t.after_update.forEach(T))}}(e.$$)}for(L(null),I.length=0;w.length;)w.pop()();for(let t=0;t<o.length;t+=1){const n=o[t];c.has(n)||(c.add(n),n())}}while(o.length=0,I.length);for(;t.length;)t.pop()();R=!1,a=!1,c.clear()}}const C=new Set;function d(l,t,e,n,i,o,r=[-1]){var s,a=b;L(l);const c=l.$$={fragment:null,ctx:null,props:o,update:p,not_equal:i,bound:g(),on_mount:[],on_destroy:[],on_disconnect:[],before_update:[],after_update:[],context:new Map(a?a.$$.context:t.context||[]),callbacks:g(),dirty:r,skip_bound:!1};let d=!1;if(c.ctx=e?e(l,t.props||{},(t,e,...n)=>{n=n.length?n[0]:e;return c.ctx&&i(c.ctx[t],c.ctx[t]=n)&&(!c.skip_bound&&c.bound[t]&&c.bound[t](n),d&&(n=t,-1===(t=l).$$.dirty[0]&&(I.push(t),R||(R=!0,G.then(S)),t.$$.dirty.fill(0)),t.$$.dirty[n/31|0]|=1<<n%31)),e}):[],c.update(),d=!0,m(c.before_update),c.fragment=!!n&&n(c.ctx),t.target){if(t.hydrate){const p=(n=t.target,Array.from(n.childNodes));c.fragment&&c.fragment.l(p),p.forEach(k)}else c.fragment&&c.fragment.c();t.intro&&(s=l.$$.fragment)&&s.i&&(C.delete(s),s.i(void 0)),function(e,t,n,l){const{fragment:i,on_mount:o,on_destroy:r,after_update:s}=e.$$;i&&i.m(t,n),l||T(()=>{var t=o.map(u).filter(h);r?r.push(...t):m(t),e.$$.on_mount=[]}),s.forEach(T)}(l,t.target,t.anchor,t.customElement),S()}L(a)}let _;function A(t){let n,l,i,o,r,s;return{c(){n=F("div"),l=F("a"),i=F("img"),v(i,"class","FooterImage"),i.src!==(o=t[16])&&v(i,"src",o),v(i,"title",t[17]),v(l,"class",r="FooterLink "+(t[15]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"href",t[15]),v(l,"target",s=t[18]||"_blank"),v(n,"class","FooterItem SocialItem")},m(t,e){y(t,n,e),$(n,l),$(l,i)},p(t,e){65536&e&&i.src!==(o=t[16])&&v(i,"src",o),131072&e&&v(i,"title",t[17]),32768&e&&r!==(r="FooterLink "+(t[15]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",r),32768&e&&v(l,"href",t[15]),262144&e&&s!==(s=t[18]||"_blank")&&v(l,"target",s)},d(t){t&&k(n)}}}function E(t){let n,l,i,o,r;return{c(){n=F("div"),l=F("a"),i=F("img"),v(i,"class","FooterImage"),i.src!==(o=t[13])&&v(i,"src",o),v(i,"title",t[14]),v(l,"class",r="FooterLink "+(t[12]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"href",t[12]),v(l,"target","_blank"),v(n,"class","FooterItem")},m(t,e){y(t,n,e),$(n,l),$(l,i)},p(t,e){8192&e&&i.src!==(o=t[13])&&v(i,"src",o),16384&e&&v(i,"title",t[14]),4096&e&&r!==(r="FooterLink "+(t[12]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",r),4096&e&&v(l,"href",t[12])},d(t){t&&k(n)}}}function M(t){let n,l,i,o,r,s,a=t[11]&&V(t);return{c(){n=F("div"),l=F("a"),i=F("img"),r=x(),a&&a.c(),v(i,"class","FooterImage"),i.src!==(o=t[10])&&v(i,"src",o),v(i,"title",t[11]),v(l,"class",s=(t[11]?"FooterHelperLink":"")+" "+(t[9]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"href",t[9]),v(l,"target",t[18]),v(n,"class","FooterItem HelperLinkItem")},m(t,e){y(t,n,e),$(n,l),$(l,i),$(l,r),a&&a.m(l,null)},p(t,e){1024&e&&i.src!==(o=t[10])&&v(i,"src",o),2048&e&&v(i,"title",t[11]),t[11]?a?a.p(t,e):(a=V(t),a.c(),a.m(l,null)):a&&(a.d(1),a=null),2560&e&&s!==(s=(t[11]?"FooterHelperLink":"")+" "+(t[9]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",s),512&e&&v(l,"href",t[9]),262144&e&&v(l,"target",t[18])},d(t){t&&k(n),a&&a.d()}}}function D(t){let n,l,i,o,r;return{c(){n=F("div"),l=F("a"),i=F("img"),v(i,"class","FooterImage"),i.src!==(o=t[7])&&v(i,"src",o),v(i,"title",t[8]),v(l,"href",t[6]),v(l,"class",r=(t[6]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"target","_blank"),v(n,"class","FooterItem GameVendorItem")},m(t,e){y(t,n,e),$(n,l),$(l,i)},p(t,e){128&e&&i.src!==(o=t[7])&&v(i,"src",o),256&e&&v(i,"title",t[8]),64&e&&v(l,"href",t[6]),64&e&&r!==(r=(t[6]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",r)},d(t){t&&k(n)}}}function H(t){let n,l,i,o,r,s,a=t[5]&&j(t);return{c(){n=F("div"),l=F("a"),i=F("img"),r=x(),a&&a.c(),v(i,"class","FooterImage"),i.src!==(o=t[4])&&v(i,"src",o),v(i,"title",t[5]),v(l,"class",s=(t[5]?"FooterPaymentLink":"")+" "+(t[3]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"href",t[3]),v(l,"target","_blank"),v(n,"class","FooterItem PaymentItem")},m(t,e){y(t,n,e),$(n,l),$(l,i),$(l,r),a&&a.m(l,null)},p(t,e){16&e&&i.src!==(o=t[4])&&v(i,"src",o),32&e&&v(i,"title",t[5]),t[5]?a?a.p(t,e):(a=j(t),a.c(),a.m(l,null)):a&&(a.d(1),a=null),40&e&&s!==(s=(t[5]?"FooterPaymentLink":"")+" "+(t[3]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",s),8&e&&v(l,"href",t[3])},d(t){t&&k(n),a&&a.d()}}}function U(t){let n,l,i,o,r,s,a=t[2]&&P(t);return{c(){n=F("div"),l=F("a"),i=F("img"),r=x(),a&&a.c(),v(i,"class","FooterImage"),i.src!==(o=t[1])&&v(i,"src",o),v(i,"title",t[1]),v(l,"class",s=(t[2]?"FooterSponsorLink":"")+" "+(t[0]?"":"FooterLinkDisabled")+" FooterItemAnchor"),v(l,"href",t[0]),v(l,"target","_blank"),v(n,"class","FooterItem SponsorItem")},m(t,e){y(t,n,e),$(n,l),$(l,i),$(l,r),a&&a.m(l,null)},p(t,e){2&e&&i.src!==(o=t[1])&&v(i,"src",o),2&e&&v(i,"title",t[1]),t[2]?a?a.p(t,e):(a=P(t),a.c(),a.m(l,null)):a&&(a.d(1),a=null),5&e&&s!==(s=(t[2]?"FooterSponsorLink":"")+" "+(t[0]?"":"FooterLinkDisabled")+" FooterItemAnchor")&&v(l,"class",s),1&e&&v(l,"href",t[0])},d(t){t&&k(n),a&&a.d()}}}function V(t){let n,l;return{c(){n=F("p"),l=r(t[11]),v(n,"class","HelperTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){2048&e&&i(l,t[11])},d(t){t&&k(n)}}}function j(t){let n,l;return{c(){n=F("p"),l=r(t[5]),v(n,"class","PaymentTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){32&e&&i(l,t[5])},d(t){t&&k(n)}}}function P(t){let n,l;return{c(){n=F("p"),l=r(t[2]),v(n,"class","SponsorTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){4&e&&i(l,t[2])},d(t){t&&k(n)}}}function N(n){let l;function i(t){return t[1]?U:t[4]?H:t[7]?D:t[10]?M:t[13]?E:t[16]?A:void 0}let o=i(n),r=o&&o(n);return{c(){l=F("div"),r&&r.c(),this.c=p,v(l,"class","ThumbnailContainer")},m(t,e){y(t,l,e),r&&r.m(l,null),n[21](l)},p(t,[e]){o===(o=i(t))&&r?r.p(t,e):(r&&r.d(1),r=o&&o(t),r&&(r.c(),r.m(l,null)))},i:p,o:p,d(t){t&&k(l),r&&r.d(),n[21](null)}}}function z(t,e,n){let l,{sponsorurl:i=""}=e,{sponsorimage:o=""}=e,{sponsortitle:r=""}=e,{paymenturl:s=""}=e,{paymentimage:a=""}=e,{paymenttitle:c=""}=e,{vendorurl:d=""}=e,{vendorimage:p=""}=e,{vendortitle:u=""}=e,{helperlinkurl:g=""}=e,{helperlinkimage:m=""}=e,{helperlinktitle:h=""}=e,{licenseurl:f=""}=e,{licenseimage:$=""}=e,{licensetitle:y=""}=e,{sociallinkurl:k=""}=e,{sociallinkimage:F=""}=e,{sociallinktitle:x=""}=e,{clientstyling:v=""}=e,{target:b="_self"}=e;return t.$$set=t=>{"sponsorurl"in t&&n(0,i=t.sponsorurl),"sponsorimage"in t&&n(1,o=t.sponsorimage),"sponsortitle"in t&&n(2,r=t.sponsortitle),"paymenturl"in t&&n(3,s=t.paymenturl),"paymentimage"in t&&n(4,a=t.paymentimage),"paymenttitle"in t&&n(5,c=t.paymenttitle),"vendorurl"in t&&n(6,d=t.vendorurl),"vendorimage"in t&&n(7,p=t.vendorimage),"vendortitle"in t&&n(8,u=t.vendortitle),"helperlinkurl"in t&&n(9,g=t.helperlinkurl),"helperlinkimage"in t&&n(10,m=t.helperlinkimage),"helperlinktitle"in t&&n(11,h=t.helperlinktitle),"licenseurl"in t&&n(12,f=t.licenseurl),"licenseimage"in t&&n(13,$=t.licenseimage),"licensetitle"in t&&n(14,y=t.licensetitle),"sociallinkurl"in t&&n(15,k=t.sociallinkurl),"sociallinkimage"in t&&n(16,F=t.sociallinkimage),"sociallinktitle"in t&&n(17,x=t.sociallinktitle),"clientstyling"in t&&n(20,v=t.clientstyling),"target"in t&&n(18,b=t.target)},t.$$.update=()=>{1048576&t.$$.dirty&&v&&(()=>{let t=document.createElement("style");t.innerHTML=v,l.appendChild(t)})()},[i,o,r,s,a,c,d,p,u,g,m,h,f,$,y,k,F,x,b,l,v,function(t){w[t?"unshift":"push"](()=>{l=t,n(19,l)})}]}function O(t,e,n){const l=t.slice();return l[24]=e[n],l}function q(t,e,n){const l=t.slice();return l[24]=e[n],l}function B(t,e,n){const l=t.slice();return l[24]=e[n],l}function J(t,e,n){const l=t.slice();return l[24]=e[n],l}function K(t,e,n){const l=t.slice();return l[21]=e[n],l}function Q(t,e,n){const l=t.slice();return l[18]=e[n],l}function W(e){let i,o=e[13],r=[];for(let t=0;t<o.length;t+=1)r[t]=nt(O(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(8384&n[0]){let t;for(o=e[13],t=0;t<o.length;t+=1){var l=O(e,o,t);r[t]?r[t].p(l,n):(r[t]=nt(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function X(e){let i,o=e[12],r=[];for(let t=0;t<o.length;t+=1)r[t]=lt(q(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(4288&n[0]){let t;for(o=e[12],t=0;t<o.length;t+=1){var l=q(e,o,t);r[t]?r[t].p(l,n):(r[t]=lt(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function Y(e){let i,o=e[11],r=[];for(let t=0;t<o.length;t+=1)r[t]=it(B(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(2240&n[0]){let t;for(o=e[11],t=0;t<o.length;t+=1){var l=B(e,o,t);r[t]?r[t].p(l,n):(r[t]=it(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function Z(e){let i,o=e[10],r=[];for(let t=0;t<o.length;t+=1)r[t]=ot(J(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(1216&n[0]){let t;for(o=e[10],t=0;t<o.length;t+=1){var l=J(e,o,t);r[t]?r[t].p(l,n):(r[t]=ot(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function tt(e){let i,o=e[9],r=[];for(let t=0;t<o.length;t+=1)r[t]=rt(K(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(704&n[0]){let t;for(o=e[9],t=0;t<o.length;t+=1){var l=K(e,o,t);r[t]?r[t].p(l,n):(r[t]=rt(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function et(e){let i,o=e[8],r=[];for(let t=0;t<o.length;t+=1)r[t]=st(Q(e,o,t));return{c(){i=F("div");for(let t=0;t<r.length;t+=1)r[t].c();v(i,"class","FooterSectionInnerContainer")},m(t,e){y(t,i,e);for(let t=0;t<r.length;t+=1)r[t].m(i,null)},p(e,n){if(448&n[0]){let t;for(o=e[8],t=0;t<o.length;t+=1){var l=Q(e,o,t);r[t]?r[t].p(l,n):(r[t]=st(l),r[t].c(),r[t].m(i,null))}for(;t<r.length;t+=1)r[t].d(1);r.length=o.length}},d(t){t&&k(i),n(r,t)}}}function nt(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"sociallinkurl",l=t[24].socialLinkUrl),s(n,"sociallinkimage",i=t[24].socialLinkImage),s(n,"sociallinktitle",o=t[24].socialLinkTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){8192&e[0]&&l!==(l=t[24].socialLinkUrl)&&s(n,"sociallinkurl",l),8192&e[0]&&i!==(i=t[24].socialLinkImage)&&s(n,"sociallinkimage",i),8192&e[0]&&o!==(o=t[24].socialLinkTitle)&&s(n,"sociallinktitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function lt(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"licenseurl",l=t[24].licenseUrl),s(n,"licenseimage",i=t[24].licenseImage),s(n,"licensetitle",o=t[24].licenseTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){4096&e[0]&&l!==(l=t[24].licenseUrl)&&s(n,"licenseurl",l),4096&e[0]&&i!==(i=t[24].licenseImage)&&s(n,"licenseimage",i),4096&e[0]&&o!==(o=t[24].licenseTitle)&&s(n,"licensetitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function it(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"helperlinkurl",l=t[24].helpLinkUrl),s(n,"helperlinkimage",i=t[24].helpLinkImage),s(n,"helperlinktitle",o=t[24].helpLinkTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){2048&e[0]&&l!==(l=t[24].helpLinkUrl)&&s(n,"helperlinkurl",l),2048&e[0]&&i!==(i=t[24].helpLinkImage)&&s(n,"helperlinkimage",i),2048&e[0]&&o!==(o=t[24].helpLinkTitle)&&s(n,"helperlinktitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function ot(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"vendorurl",l=t[24].gameVendorUrl),s(n,"vendorimage",i=t[24].gameVendorImage),s(n,"vendortitle",o=t[24].gameVendorTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){1024&e[0]&&l!==(l=t[24].gameVendorUrl)&&s(n,"vendorurl",l),1024&e[0]&&i!==(i=t[24].gameVendorImage)&&s(n,"vendorimage",i),1024&e[0]&&o!==(o=t[24].gameVendorTitle)&&s(n,"vendortitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function rt(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"paymenturl",l=t[21].paymentMethodUrl),s(n,"paymentimage",i=t[21].paymentMethodImage),s(n,"paymenttitle",o=t[21].paymentMethodTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){512&e[0]&&l!==(l=t[21].paymentMethodUrl)&&s(n,"paymenturl",l),512&e[0]&&i!==(i=t[21].paymentMethodImage)&&s(n,"paymentimage",i),512&e[0]&&o!==(o=t[21].paymentMethodTitle)&&s(n,"paymenttitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function st(t){let n,l,i,o;return{c(){n=F("casino-footer-thumbnail"),s(n,"sponsorurl",l=t[18].sponsorUrl),s(n,"sponsorimage",i=t[18].sponsorImage),s(n,"sponsortitle",o=t[18].sponsorTitle),s(n,"clientstyling",t[6]),s(n,"target",t[7])},m(t,e){y(t,n,e)},p(t,e){256&e[0]&&l!==(l=t[18].sponsorUrl)&&s(n,"sponsorurl",l),256&e[0]&&i!==(i=t[18].sponsorImage)&&s(n,"sponsorimage",i),256&e[0]&&o!==(o=t[18].sponsorTitle)&&s(n,"sponsortitle",o),64&e[0]&&s(n,"clientstyling",t[6]),128&e[0]&&s(n,"target",t[7])},d(t){t&&k(n)}}}function at(n){let l;function i(t){return t[0]&&t[8].length?et:t[1]&&t[9].length?tt:t[2]&&t[10].length?Z:t[3]&&t[11].length?Y:t[4]&&t[12].length?X:t[5]&&t[13].length?W:void 0}let o=i(n),r=o&&o(n);return{c(){l=F("div"),r&&r.c(),this.c=p,v(l,"class","FooterSectionContainer")},m(t,e){y(t,l,e),r&&r.m(l,null),n[15](l)},p(t,e){o===(o=i(t))&&r?r.p(t,e):(r&&r.d(1),r=o&&o(t),r&&(r.c(),r.m(l,null)))},i:p,o:p,d(t){t&&k(l),r&&r.d(),n[15](null)}}}function ct(t,e,n){let l,{sponsorflag:i=""}=e,{paymentflag:o=""}=e,{vendorflag:r=""}=e,{helperflag:s=""}=e,{licenseflag:a=""}=e,{socialflag:c=""}=e,{clientstyling:d=""}=e,{target:p=""}=e,u=[],g=[],m=[],h=[],f=[],$=[];const y=t=>{t.data&&"FooterData"===t.data.type&&(n(8,u=t.data.sponsorsRepeater),n(9,g=t.data.paymentMethodsRepeater),n(10,m=t.data.gameVendorsRepeater),n(11,h=t.data.helpLinksRepeater),n(12,f=t.data.licensesRepeater),n(13,$=t.data.socialLinksRepeater))};return e=()=>(window.addEventListener("message",y,!1),()=>{window.removeEventListener("message",y)}),function(){if(!b)throw new Error("Function called outside component initialization");return b}().$$.on_mount.push(e),t.$$set=t=>{"sponsorflag"in t&&n(0,i=t.sponsorflag),"paymentflag"in t&&n(1,o=t.paymentflag),"vendorflag"in t&&n(2,r=t.vendorflag),"helperflag"in t&&n(3,s=t.helperflag),"licenseflag"in t&&n(4,a=t.licenseflag),"socialflag"in t&&n(5,c=t.socialflag),"clientstyling"in t&&n(6,d=t.clientstyling),"target"in t&&n(7,p=t.target)},t.$$.update=()=>{64&t.$$.dirty[0]&&d&&(()=>{let t=document.createElement("style");t.innerHTML=d,l.appendChild(t)})()},[i,o,r,s,a,c,d,p,u,g,m,h,f,$,l,function(t){w[t?"unshift":"push"](()=>{l=t,n(14,l)})}]}function dt(n){let l,i,o,r,s,a=n[6]&>(n),c=(n[4]||n[2])&&ft(n),d=(n[8]||n[10])&&xt(n),p=(n[14]||n[13])&&wt(n);return{c(){l=F("div"),a&&a.c(),i=x(),c&&c.c(),o=x(),d&&d.c(),r=x(),p&&p.c(),v(l,"class",s="FooterGrid "+(n[6]?"":"NoSponsorSpacing"))},m(t,e){y(t,l,e),a&&a.m(l,null),$(l,i),c&&c.m(l,null),$(l,o),d&&d.m(l,null),$(l,r),p&&p.m(l,null),n[25](l)},p(t,e){t[6]?a?a.p(t,e):(a=gt(t),a.c(),a.m(l,i)):a&&(a.d(1),a=null),t[4]||t[2]?c?c.p(t,e):(c=ft(t),c.c(),c.m(l,o)):c&&(c.d(1),c=null),t[8]||t[10]?d?d.p(t,e):(d=xt(t),d.c(),d.m(l,r)):d&&(d.d(1),d=null),t[14]||t[13]?p?p.p(t,e):(p=wt(t),p.c(),p.m(l,null)):p&&(p.d(1),p=null),64&e&&s!==(s="FooterGrid "+(t[6]?"":"NoSponsorSpacing"))&&v(l,"class",s)},d(t){t&&k(l),a&&a.d(),c&&c.d(),d&&d.d(),p&&p.d(),n[25](null)}}}function pt(t){let n;return{c(){n=F("p"),n.textContent="Loading ...",v(n,"class","SearchLoading")},m(t,e){y(t,n,e)},p:p,d(t){t&&k(n)}}}function ut(t){let n;return{c(){n=F("p"),n.textContent="500 Error - Internal Server Error",v(n,"class","SearchLoading")},m(t,e){y(t,n,e)},p:p,d(t){t&&k(n)}}}function gt(t){let n,l=t[6]&&mt(t);return{c(){n=F("div"),l&&l.c(),v(n,"class","GridRow")},m(t,e){y(t,n,e),l&&l.m(n,null)},p(t,e){t[6]?l?l.p(t,e):(l=mt(t),l.c(),l.m(n,null)):l&&(l.d(1),l=null)},d(t){t&&k(n),l&&l.d()}}}function mt(t){let n,l,i,o=t[5]&&ht(t);return{c(){n=F("div"),o&&o.c(),l=x(),i=F("casino-footer-section"),s(i,"class","FooterSection"),s(i,"sponsorflag","1"),s(i,"clientstyling",St),s(i,"target",t[0]),v(n,"class","GridCol")},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),$(n,i)},p(t,e){t[5]?o?o.p(t,e):(o=ht(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),1&e&&s(i,"target",t[0])},d(t){t&&k(n),o&&o.d()}}}function ht(t){let n,l;return{c(){n=F("p"),l=r(t[5]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){32&e&&i(l,t[5])},d(t){t&&k(n)}}}function ft(t){let n,l,i,o=t[4]&&$t(t),r=t[2]&&kt(t);return{c(){n=F("div"),o&&o.c(),l=x(),r&&r.c(),v(n,"class",i="GridRow "+(t[4]&&t[2]?"SplitRow":""))},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),r&&r.m(n,null)},p(t,e){t[4]?o?o.p(t,e):(o=$t(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),t[2]?r?r.p(t,e):(r=kt(t),r.c(),r.m(n,null)):r&&(r.d(1),r=null),20&e&&i!==(i="GridRow "+(t[4]&&t[2]?"SplitRow":""))&&v(n,"class",i)},d(t){t&&k(n),o&&o.d(),r&&r.d()}}}function $t(t){let n,l,i,o=t[3]&&yt(t);return{c(){n=F("div"),o&&o.c(),l=x(),i=F("casino-footer-section"),s(i,"class","FooterSection"),s(i,"paymentflag","1"),s(i,"clientstyling",St),s(i,"target",t[0]),v(n,"class","GridCol")},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),$(n,i)},p(t,e){t[3]?o?o.p(t,e):(o=yt(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),1&e&&s(i,"target",t[0])},d(t){t&&k(n),o&&o.d()}}}function yt(t){let n,l;return{c(){n=F("p"),l=r(t[3]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){8&e&&i(l,t[3])},d(t){t&&k(n)}}}function kt(t){let n,l,i,o=t[1]&&Ft(t);return{c(){n=F("div"),o&&o.c(),l=x(),i=F("casino-footer-section"),s(i,"class","FooterSection"),s(i,"vendorflag","1"),s(i,"clientstyling",St),s(i,"target",t[0]),v(n,"class","GridCol")},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),$(n,i)},p(t,e){t[1]?o?o.p(t,e):(o=Ft(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),1&e&&s(i,"target",t[0])},d(t){t&&k(n),o&&o.d()}}}function Ft(t){let n,l;return{c(){n=F("p"),l=r(t[1]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){2&e&&i(l,t[1])},d(t){t&&k(n)}}}function xt(t){let n,l,i,o=t[8]&&vt(t),r=t[10]&&Lt(t);return{c(){n=F("div"),o&&o.c(),l=x(),r&&r.c(),v(n,"class",i="GridRow "+(t[8]&&t[10]?"SplitRow":""))},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),r&&r.m(n,null)},p(t,e){t[8]?o?o.p(t,e):(o=vt(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),t[10]?r?r.p(t,e):(r=Lt(t),r.c(),r.m(n,null)):r&&(r.d(1),r=null),1280&e&&i!==(i="GridRow "+(t[8]&&t[10]?"SplitRow":""))&&v(n,"class",i)},d(t){t&&k(n),o&&o.d(),r&&r.d()}}}function vt(t){let n,l,i,o=t[7]&&bt(t);return{c(){n=F("div"),o&&o.c(),l=x(),i=F("casino-footer-section"),s(i,"class","FooterSection"),s(i,"helperflag","1"),s(i,"clientstyling",St),s(i,"target",t[0]),v(n,"class","GridCol")},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),$(n,i)},p(t,e){t[7]?o?o.p(t,e):(o=bt(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),1&e&&s(i,"target",t[0])},d(t){t&&k(n),o&&o.d()}}}function bt(t){let n,l;return{c(){n=F("p"),l=r(t[7]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){128&e&&i(l,t[7])},d(t){t&&k(n)}}}function Lt(t){let n,l,i,o=t[9]&&It(t);return{c(){n=F("div"),o&&o.c(),l=x(),i=F("casino-footer-section"),s(i,"class","FooterSection"),s(i,"licenseflag","1"),s(i,"clientstyling",St),s(i,"target",t[0]),v(n,"class","GridCol")},m(t,e){y(t,n,e),o&&o.m(n,null),$(n,l),$(n,i)},p(t,e){t[9]?o?o.p(t,e):(o=It(t),o.c(),o.m(n,l)):o&&(o.d(1),o=null),1&e&&s(i,"target",t[0])},d(t){t&&k(n),o&&o.d()}}}function It(t){let n,l;return{c(){n=F("p"),l=r(t[9]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){512&e&&i(l,t[9])},d(t){t&&k(n)}}}function wt(n){let l,i,o,r,s,a,c,d,p,u,g=n[12]&&Gt(n);return{c(){l=F("div"),i=F("div"),o=F("div"),s=x(),g&&g.c(),a=x(),c=F("div"),v(o,"class","DetailedLicenses"),v(c,"class","CopyrightAreaRights CopyrightArea"),v(i,"class","GridCol"),v(l,"class","GridRow LicenseRow")},m(t,e){y(t,l,e),$(l,i),$(i,o),n[23](o),$(i,s),g&&g.m(i,null),$(i,a),$(i,c),n[24](c),p||(u=[f(r=n[20].call(null,o,n[14])),f(d=n[20].call(null,c,n[13]))],p=!0)},p(t,e){r&&h(r.update)&&16384&e&&r.update.call(null,t[14]),t[12]?g?g.p(t,e):(g=Gt(t),g.c(),g.m(i,a)):g&&(g.d(1),g=null),d&&h(d.update)&&8192&e&&d.update.call(null,t[13])},d(t){t&&k(l),n[23](null),g&&g.d(),n[24](null),p=!1,m(u)}}}function Gt(t){let n,l,i=t[11]&&Rt(t);return{c(){i&&i.c(),n=x(),l=F("casino-footer-section"),s(l,"class","FooterSection SocialSection"),s(l,"socialflag","1"),s(l,"clientstyling",St),s(l,"target",t[0])},m(t,e){i&&i.m(t,e),y(t,n,e),y(t,l,e)},p(t,e){t[11]?i?i.p(t,e):(i=Rt(t),i.c(),i.m(n.parentNode,n)):i&&(i.d(1),i=null),1&e&&s(l,"target",t[0])},d(t){i&&i.d(t),t&&k(n),t&&k(l)}}}function Rt(t){let n,l;return{c(){n=F("p"),l=r(t[11]),v(n,"class","FooterTitle")},m(t,e){y(t,n,e),$(n,l)},p(t,e){2048&e&&i(l,t[11])},d(t){t&&k(n)}}}function Tt(t){let n;function l(t){return t[18]?ut:t[19]?pt:dt}let i=l(t),o=i(t);return{c(){o.c(),n=r(""),this.c=p},m(t,e){o.m(t,e),y(t,n,e)},p(t,[e]){i===(i=l(t))&&o?o.p(t,e):(o.d(1),o=i(t),o&&(o.c(),o.m(n.parentNode,n)))},i:p,o:p,d(t){o.d(t),t&&k(n)}}}"function"==typeof HTMLElement&&(_=class extends HTMLElement{constructor(){super(),this.attachShadow({mode:"open"})}connectedCallback(){const{on_mount:t}=this.$$;this.$$.on_disconnect=t.map(u).filter(h);for(const t in this.$$.slotted)this.appendChild(this.$$.slotted[t])}attributeChangedCallback(t,e,n){this[t]=n}disconnectedCallback(){m(this.$$.on_disconnect)}$destroy(){!function(t){const e=t.$$;null!==e.fragment&&(m(e.on_destroy),e.fragment&&e.fragment.d(1),e.on_destroy=e.fragment=null,e.ctx=[])}(this),this.$destroy=p}$on(t,e){const n=this.$$.callbacks[t]||(this.$$.callbacks[t]=[]);return n.push(e),()=>{var t=n.indexOf(e);-1!==t&&n.splice(t,1)}}$set(t){this.$$set&&0!==Object.keys(t).length&&(this.$$.skip_bound=!0,this.$$set(t),this.$$.skip_bound=!1)}}),customElements.get("casino-footer-thumbnail")||customElements.define("casino-footer-thumbnail",class extends _{constructor(t){super(),this.shadowRoot.innerHTML="<style>.FooterItem{display:inline-block;padding:0 15.008px}.FooterItem .FooterSponsorLink,.FooterItem .FooterPaymentLink{display:block}.FooterItem .FooterSponsorLink{display:flex;align-items:center}.FooterItem .FooterPaymentLink,.FooterItem .FooterHelperLink{display:flex;align-items:center;justify-content:center}.FooterItem .FooterLinkDisabled{pointer-events:none;cursor:auto}.FooterItem .SponsorTitle,.FooterItem .PaymentTitle,.FooterItem .HelperTitle{font-size:9.008px;text-decoration:none;color:#808080;text-align:center}.FooterItem .HelperTitle{font-size:8px}.FooterItem.HelperLinkItem p{font-size:10px}.FooterItem .FooterItemAnchor{display:flex;flex-direction:column;gap:10px;text-decoration:none}.SponsorTitle{margin:0}.FooterLink{display:block;text-align:center}@media only screen and (max-width: 768px){.FooterItem{padding:0 5.008px}.FooterItem.PaymentItem{padding:15.008px 5.008px}.FooterItem.GameVendorItem{padding:0 10px}}</style>",d(this,{target:this.shadowRoot,props:l(this.attributes),customElement:!0},z,N,e,{sponsorurl:0,sponsorimage:1,sponsortitle:2,paymenturl:3,paymentimage:4,paymenttitle:5,vendorurl:6,vendorimage:7,vendortitle:8,helperlinkurl:9,helperlinkimage:10,helperlinktitle:11,licenseurl:12,licenseimage:13,licensetitle:14,sociallinkurl:15,sociallinkimage:16,sociallinktitle:17,clientstyling:20,target:18}),t&&(t.target&&y(t.target,this,t.anchor),t.props&&(this.$set(t.props),S()))}static get observedAttributes(){return["sponsorurl","sponsorimage","sponsortitle","paymenturl","paymentimage","paymenttitle","vendorurl","vendorimage","vendortitle","helperlinkurl","helperlinkimage","helperlinktitle","licenseurl","licenseimage","licensetitle","sociallinkurl","sociallinkimage","sociallinktitle","clientstyling","target"]}get sponsorurl(){return this.$$.ctx[0]}set sponsorurl(t){this.$set({sponsorurl:t}),S()}get sponsorimage(){return this.$$.ctx[1]}set sponsorimage(t){this.$set({sponsorimage:t}),S()}get sponsortitle(){return this.$$.ctx[2]}set sponsortitle(t){this.$set({sponsortitle:t}),S()}get paymenturl(){return this.$$.ctx[3]}set paymenturl(t){this.$set({paymenturl:t}),S()}get paymentimage(){return this.$$.ctx[4]}set paymentimage(t){this.$set({paymentimage:t}),S()}get paymenttitle(){return this.$$.ctx[5]}set paymenttitle(t){this.$set({paymenttitle:t}),S()}get vendorurl(){return this.$$.ctx[6]}set vendorurl(t){this.$set({vendorurl:t}),S()}get vendorimage(){return this.$$.ctx[7]}set vendorimage(t){this.$set({vendorimage:t}),S()}get vendortitle(){return this.$$.ctx[8]}set vendortitle(t){this.$set({vendortitle:t}),S()}get helperlinkurl(){return this.$$.ctx[9]}set helperlinkurl(t){this.$set({helperlinkurl:t}),S()}get helperlinkimage(){return this.$$.ctx[10]}set helperlinkimage(t){this.$set({helperlinkimage:t}),S()}get helperlinktitle(){return this.$$.ctx[11]}set helperlinktitle(t){this.$set({helperlinktitle:t}),S()}get licenseurl(){return this.$$.ctx[12]}set licenseurl(t){this.$set({licenseurl:t}),S()}get licenseimage(){return this.$$.ctx[13]}set licenseimage(t){this.$set({licenseimage:t}),S()}get licensetitle(){return this.$$.ctx[14]}set licensetitle(t){this.$set({licensetitle:t}),S()}get sociallinkurl(){return this.$$.ctx[15]}set sociallinkurl(t){this.$set({sociallinkurl:t}),S()}get sociallinkimage(){return this.$$.ctx[16]}set sociallinkimage(t){this.$set({sociallinkimage:t}),S()}get sociallinktitle(){return this.$$.ctx[17]}set sociallinktitle(t){this.$set({sociallinktitle:t}),S()}get clientstyling(){return this.$$.ctx[20]}set clientstyling(t){this.$set({clientstyling:t}),S()}get target(){return this.$$.ctx[18]}set target(t){this.$set({target:t}),S()}}),customElements.get("casino-footer-section")||customElements.define("casino-footer-section",class extends _{constructor(t){super(),this.shadowRoot.innerHTML="<style>.FooterSectionInnerContainer{display:flex;flex-wrap:wrap;align-items:center;justify-content:center}</style>",d(this,{target:this.shadowRoot,props:l(this.attributes),customElement:!0},ct,at,e,{sponsorflag:0,paymentflag:1,vendorflag:2,helperflag:3,licenseflag:4,socialflag:5,clientstyling:6,target:7},[-1,-1]),t&&(t.target&&y(t.target,this,t.anchor),t.props&&(this.$set(t.props),S()))}static get observedAttributes(){return["sponsorflag","paymentflag","vendorflag","helperflag","licenseflag","socialflag","clientstyling","target"]}get sponsorflag(){return this.$$.ctx[0]}set sponsorflag(t){this.$set({sponsorflag:t}),S()}get paymentflag(){return this.$$.ctx[1]}set paymentflag(t){this.$set({paymentflag:t}),S()}get vendorflag(){return this.$$.ctx[2]}set vendorflag(t){this.$set({vendorflag:t}),S()}get helperflag(){return this.$$.ctx[3]}set helperflag(t){this.$set({helperflag:t}),S()}get licenseflag(){return this.$$.ctx[4]}set licenseflag(t){this.$set({licenseflag:t}),S()}get socialflag(){return this.$$.ctx[5]}set socialflag(t){this.$set({socialflag:t}),S()}get clientstyling(){return this.$$.ctx[6]}set clientstyling(t){this.$set({clientstyling:t}),S()}get target(){return this.$$.ctx[7]}set target(t){this.$set({target:t}),S()}});let St="";function Ct(t,e,n){let l,i,o,r,{endpoint:s=""}=e,{clientstyling:a=""}=e,{target:c=""}=e,d="",p=[],u="",g=[],m="",h=[],f="",$=[],y="",k=[],F="",x=[],v="",b="",L=!1,I=!1;return t.$$set=t=>{"endpoint"in t&&n(21,s=t.endpoint),"clientstyling"in t&&n(22,a=t.clientstyling),"target"in t&&n(0,c=t.target)},t.$$.update=()=>{4194304&t.$$.dirty&&a&&(()=>{let t=document.createElement("style");t.innerHTML=a,o.appendChild(t)})(),2097152&t.$$.dirty&&s&&(n(19,I=!0),fetch(s).then(t=>t.json()).then(t=>{n(19,I=!1),r=t,n(1,{gameVendorsLinksTitle:d,gameVendorsRepeater:p,paymentLinksTitle:u,paymentMethodsRepeater:g,sponsorsLinksTitle:m,sponsorsRepeater:h,helpLinksTitle:f,helpLinksRepeater:$,licensesLinksTitle:y,licensesRepeater:k,socialLinksTitle:F,socialLinksRepeater:x,copyright:v,licenseDesc:b}=r,d,n(2,p),n(3,u),n(4,g),n(5,m),n(6,h),n(7,f),n(8,$),n(9,y),n(10,k),n(11,F),n(12,x),n(13,v),n(14,b)),window.postMessage({type:"FooterData",gameVendorsRepeater:p,paymentMethodsRepeater:g,sponsorsRepeater:h,helpLinksRepeater:$,licensesRepeater:k,socialLinksRepeater:x},window.location.href)}).catch(t=>{n(18,L=!0),n(19,I=!1),console.error(t)}))},[c,d,p,u,g,m,h,f,$,y,k,F,x,v,b,void 0,void 0,o,L,I,(t,e)=>{let n=document.createElement("div");n.innerHTML=e,t.append(n)},s,a,function(t){w[t?"unshift":"push"](()=>{l=t,n(15,l)})},function(t){w[t?"unshift":"push"](()=>{i=t,n(16,i)})},function(t){w[t?"unshift":"push"](()=>{o=t,n(17,o)})}]}class _t extends _{constructor(t){super(),this.shadowRoot.innerHTML="<style>@import url(\"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap\");.SearchLoading{color:#fff;text-align:center}.FooterGrid{font-family:'Roboto', sans-serif, Arial;font-weight:400;display:flex;padding:10px 40px;background-color:#212529;color:#fff;flex-direction:column;align-items:center;justify-content:center}.FooterGrid.NoSponsorSpacing{padding-top:30px}.FooterGrid .GridRow{display:flex;flex-flow:row wrap;width:100%;padding:20px 0;align-items:flex-start;justify-content:center}.FooterGrid .GridRow:first-child{padding-top:0}.FooterGrid .GridRow:not(:last-child){border-bottom:1px solid rgba(255, 255, 255, 0.1)}.FooterGrid .GridRow.LicenseRow{border-bottom:0}.FooterGrid .GridRow.SplitRow .GridCol:first-child{flex-basis:45%}.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){flex-basis:calc(55% - 1px);border-left:1px solid rgba(255, 255, 255, 0.1)}.FooterGrid .GridRow .GridCol{width:100%;flex:1}.FooterGrid .GridRow .GridCol p{text-align:center}.FooterGrid .GridRow .GridCol p.FooterTitle{font-size:12px;font-weight:700}.FooterGrid .DetailedLicenses{margin:30px 50px 20px;font-size:10px;text-align:center;color:#828282}.FooterGrid .CopyrightAreaRights{margin-top:10px}.FooterGrid .CopyrightTextArea p,.FooterGrid .CopyrightArea p{margin:0;color:#828282;font-size:9.008px}@media only screen and (max-width: 768px){.FooterGrid{padding:5.008px 20px}.FooterGrid .FooterTitle{margin-top:0}.FooterGrid .GridRow{padding:0}.FooterGrid .GridRow:not(:last-child){border-bottom:0}.FooterGrid .GridRow:last-child .GridCol:last-child{border-bottom:0}.FooterGrid .GridRow.SplitRow .GridCol:first-child,.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){flex-basis:unset}.FooterGrid .GridRow.SplitRow .GridCol:nth-child(2){border-left:none}.FooterGrid .GridRow .GridCol{border-bottom:1px solid rgba(255, 255, 255, 0.1);padding:15.008px 0}}</style>",d(this,{target:this.shadowRoot,props:l(this.attributes),customElement:!0},Ct,Tt,e,{endpoint:21,clientstyling:22,target:0}),t&&(t.target&&y(t.target,this,t.anchor),t.props&&(this.$set(t.props),S()))}static get observedAttributes(){return["endpoint","clientstyling","target"]}get endpoint(){return this.$$.ctx[21]}set endpoint(t){this.$set({endpoint:t}),S()}get clientstyling(){return this.$$.ctx[22]}set clientstyling(t){this.$set({clientstyling:t}),S()}get target(){return this.$$.ctx[0]}set target(t){this.$set({target:t}),S()}}return customElements.get("casino-footer")||customElements.define("casino-footer",_t),_t});
|
|
3953
2
|
//# sourceMappingURL=casino-footer.js.map
|