-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelm.js
18855 lines (17710 loc) · 516 KB
/
elm.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var Elm = Elm || { Native: {} };
Elm.Array = Elm.Array || {};
Elm.Array.make = function (_elm) {
"use strict";
_elm.Array = _elm.Array || {};
if (_elm.Array.values)
return _elm.Array.values;
var _op = {},
_N = Elm.Native,
_U = _N.Utils.make(_elm),
_L = _N.List.make(_elm),
$moduleName = "Array",
$Basics = Elm.Basics.make(_elm),
$List = Elm.List.make(_elm),
$Maybe = Elm.Maybe.make(_elm),
$Native$Array = Elm.Native.Array.make(_elm);
var append = $Native$Array.append;
var length = $Native$Array.length;
var isEmpty = function (array) {
return _U.eq(length(array),
0);
};
var slice = $Native$Array.slice;
var set = $Native$Array.set;
var get = F2(function (i,
array) {
return _U.cmp(0,
i) < 1 && _U.cmp(i,
$Native$Array.length(array)) < 0 ? $Maybe.Just(A2($Native$Array.get,
i,
array)) : $Maybe.Nothing;
});
var push = $Native$Array.push;
var empty = $Native$Array.empty;
var filter = F2(function (isOkay,
arr) {
return function () {
var update = F2(function (x,
xs) {
return isOkay(x) ? A2($Native$Array.push,
x,
xs) : xs;
});
return A3($Native$Array.foldl,
update,
$Native$Array.empty,
arr);
}();
});
var foldr = $Native$Array.foldr;
var foldl = $Native$Array.foldl;
var indexedMap = $Native$Array.indexedMap;
var map = $Native$Array.map;
var toIndexedList = function (array) {
return A3($List.map2,
F2(function (v0,v1) {
return {ctor: "_Tuple2"
,_0: v0
,_1: v1};
}),
_L.range(0,
$Native$Array.length(array) - 1),
$Native$Array.toList(array));
};
var toList = $Native$Array.toList;
var fromList = $Native$Array.fromList;
var initialize = $Native$Array.initialize;
var repeat = F2(function (n,e) {
return A2(initialize,
n,
$Basics.always(e));
});
var Array = {ctor: "Array"};
_elm.Array.values = {_op: _op
,empty: empty
,repeat: repeat
,initialize: initialize
,fromList: fromList
,isEmpty: isEmpty
,length: length
,push: push
,append: append
,get: get
,set: set
,slice: slice
,toList: toList
,toIndexedList: toIndexedList
,map: map
,indexedMap: indexedMap
,filter: filter
,foldl: foldl
,foldr: foldr};
return _elm.Array.values;
};
Elm.Basics = Elm.Basics || {};
Elm.Basics.make = function (_elm) {
"use strict";
_elm.Basics = _elm.Basics || {};
if (_elm.Basics.values)
return _elm.Basics.values;
var _op = {},
_N = Elm.Native,
_U = _N.Utils.make(_elm),
_L = _N.List.make(_elm),
$moduleName = "Basics",
$Native$Basics = Elm.Native.Basics.make(_elm),
$Native$Show = Elm.Native.Show.make(_elm),
$Native$Utils = Elm.Native.Utils.make(_elm);
var uncurry = F2(function (f,
_v0) {
return function () {
switch (_v0.ctor)
{case "_Tuple2": return A2(f,
_v0._0,
_v0._1);}
_U.badCase($moduleName,
"on line 595, column 3 to 8");
}();
});
var curry = F3(function (f,
a,
b) {
return f({ctor: "_Tuple2"
,_0: a
,_1: b});
});
var flip = F3(function (f,b,a) {
return A2(f,a,b);
});
var snd = function (_v4) {
return function () {
switch (_v4.ctor)
{case "_Tuple2": return _v4._1;}
_U.badCase($moduleName,
"on line 573, column 3 to 4");
}();
};
var fst = function (_v8) {
return function () {
switch (_v8.ctor)
{case "_Tuple2": return _v8._0;}
_U.badCase($moduleName,
"on line 567, column 3 to 4");
}();
};
var always = F2(function (a,
_v12) {
return function () {
return a;
}();
});
var identity = function (x) {
return x;
};
_op["<|"] = F2(function (f,x) {
return f(x);
});
_op["|>"] = F2(function (x,f) {
return f(x);
});
_op[">>"] = F3(function (f,
g,
x) {
return g(f(x));
});
_op["<<"] = F3(function (g,
f,
x) {
return g(f(x));
});
_op["++"] = $Native$Utils.append;
var toString = $Native$Show.toString;
var isInfinite = $Native$Basics.isInfinite;
var isNaN = $Native$Basics.isNaN;
var toFloat = $Native$Basics.toFloat;
var ceiling = $Native$Basics.ceiling;
var floor = $Native$Basics.floor;
var truncate = $Native$Basics.truncate;
var round = $Native$Basics.round;
var otherwise = true;
var not = $Native$Basics.not;
var xor = $Native$Basics.xor;
_op["||"] = $Native$Basics.or;
_op["&&"] = $Native$Basics.and;
var max = $Native$Basics.max;
var min = $Native$Basics.min;
var GT = {ctor: "GT"};
var EQ = {ctor: "EQ"};
var LT = {ctor: "LT"};
var compare = $Native$Basics.compare;
_op[">="] = $Native$Basics.ge;
_op["<="] = $Native$Basics.le;
_op[">"] = $Native$Basics.gt;
_op["<"] = $Native$Basics.lt;
_op["/="] = $Native$Basics.neq;
_op["=="] = $Native$Basics.eq;
var e = $Native$Basics.e;
var pi = $Native$Basics.pi;
var clamp = $Native$Basics.clamp;
var logBase = $Native$Basics.logBase;
var abs = $Native$Basics.abs;
var negate = $Native$Basics.negate;
var sqrt = $Native$Basics.sqrt;
var atan2 = $Native$Basics.atan2;
var atan = $Native$Basics.atan;
var asin = $Native$Basics.asin;
var acos = $Native$Basics.acos;
var tan = $Native$Basics.tan;
var sin = $Native$Basics.sin;
var cos = $Native$Basics.cos;
_op["^"] = $Native$Basics.exp;
_op["%"] = $Native$Basics.mod;
var rem = $Native$Basics.rem;
_op["//"] = $Native$Basics.div;
_op["/"] = $Native$Basics.floatDiv;
_op["*"] = $Native$Basics.mul;
_op["-"] = $Native$Basics.sub;
_op["+"] = $Native$Basics.add;
var toPolar = $Native$Basics.toPolar;
var fromPolar = $Native$Basics.fromPolar;
var turns = $Native$Basics.turns;
var degrees = $Native$Basics.degrees;
var radians = function (t) {
return t;
};
_elm.Basics.values = {_op: _op
,max: max
,min: min
,compare: compare
,not: not
,xor: xor
,otherwise: otherwise
,rem: rem
,negate: negate
,abs: abs
,sqrt: sqrt
,clamp: clamp
,logBase: logBase
,e: e
,pi: pi
,cos: cos
,sin: sin
,tan: tan
,acos: acos
,asin: asin
,atan: atan
,atan2: atan2
,round: round
,floor: floor
,ceiling: ceiling
,truncate: truncate
,toFloat: toFloat
,degrees: degrees
,radians: radians
,turns: turns
,toPolar: toPolar
,fromPolar: fromPolar
,isNaN: isNaN
,isInfinite: isInfinite
,toString: toString
,fst: fst
,snd: snd
,identity: identity
,always: always
,flip: flip
,curry: curry
,uncurry: uncurry
,LT: LT
,EQ: EQ
,GT: GT};
return _elm.Basics.values;
};
Elm.Bootstrap = Elm.Bootstrap || {};
Elm.Bootstrap.Html = Elm.Bootstrap.Html || {};
Elm.Bootstrap.Html.make = function (_elm) {
"use strict";
_elm.Bootstrap = _elm.Bootstrap || {};
_elm.Bootstrap.Html = _elm.Bootstrap.Html || {};
if (_elm.Bootstrap.Html.values)
return _elm.Bootstrap.Html.values;
var _op = {},
_N = Elm.Native,
_U = _N.Utils.make(_elm),
_L = _N.List.make(_elm),
$moduleName = "Bootstrap.Html",
$Basics = Elm.Basics.make(_elm),
$Bootstrap$Html$Internal = Elm.Bootstrap.Html.Internal.make(_elm),
$Html = Elm.Html.make(_elm),
$Html$Shorthand = Elm.Html.Shorthand.make(_elm),
$List = Elm.List.make(_elm),
$Maybe = Elm.Maybe.make(_elm),
$Result = Elm.Result.make(_elm),
$Signal = Elm.Signal.make(_elm),
$String = Elm.String.make(_elm);
var wellLg_ = $Html$Shorthand.div$({_: {}
,$class: "well well-lg"});
var wellSm_ = $Html$Shorthand.div$({_: {}
,$class: "well well-sm"});
var well_ = $Html$Shorthand.div$({_: {}
,$class: "well"});
var embedResponsive4x3_ = $Html$Shorthand.div$({_: {}
,$class: "embed-responsive embed-responsive-4by3"});
var embedResponsive16x9_ = $Html$Shorthand.div$({_: {}
,$class: "embed-responsive embed-responsive-16by9"});
var panelTitle_ = function (t) {
return A2($Html$Shorthand.h2$,
{_: {},$class: "panel-title"},
_L.fromArray([$Html.text(t)]));
};
var panelBody_ = $Html$Shorthand.div$({_: {}
,$class: "panel-body"});
var panelHeading_ = $Html$Shorthand.div$({_: {}
,$class: "panel-heading"});
var panelDefault_ = $Html$Shorthand.div$({_: {}
,$class: "panel panel-default"});
var navbarHeader_ = $Html$Shorthand.div$({_: {}
,$class: "navbar-header"});
var navbar$ = function (c) {
return $Html$Shorthand.nav$({_: {}
,$class: A2($Basics._op["++"],
"navbar ",
c)});
};
var navbarDefault$ = function (c) {
return navbar$(A2($Basics._op["++"],
"navbar-default ",
c));
};
var glyphiconTreeDeciduous$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-tree-deciduous ",
c)},
_L.fromArray([]));
};
var glyphiconTreeDeciduous_ = glyphiconTreeDeciduous$("");
var glyphiconTreeConifer$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-tree-conifer ",
c)},
_L.fromArray([]));
};
var glyphiconTreeConifer_ = glyphiconTreeConifer$("");
var glyphiconCloudUpload$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-cloud-upload ",
c)},
_L.fromArray([]));
};
var glyphiconCloudUpload_ = glyphiconCloudUpload$("");
var glyphiconCloudDownload$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-cloud-download ",
c)},
_L.fromArray([]));
};
var glyphiconCloudDownload_ = glyphiconCloudDownload$("");
var glyphiconRegistrationMark$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-registration-mark ",
c)},
_L.fromArray([]));
};
var glyphiconRegistrationMark_ = glyphiconRegistrationMark$("");
var glyphiconCopyrightMark$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-copyright-mark ",
c)},
_L.fromArray([]));
};
var glyphiconCopyrightMark_ = glyphiconCopyrightMark$("");
var glyphiconSound71$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sound-7-1 ",
c)},
_L.fromArray([]));
};
var glyphiconSound71_ = glyphiconSound71$("");
var glyphiconSound61$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sound-6-1 ",
c)},
_L.fromArray([]));
};
var glyphiconSound61_ = glyphiconSound61$("");
var glyphiconSound51$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sound-5-1 ",
c)},
_L.fromArray([]));
};
var glyphiconSound51_ = glyphiconSound51$("");
var glyphiconSoundDolby$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sound-dolby ",
c)},
_L.fromArray([]));
};
var glyphiconSoundDolby_ = glyphiconSoundDolby$("");
var glyphiconSoundStereo$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sound-stereo ",
c)},
_L.fromArray([]));
};
var glyphiconSoundStereo_ = glyphiconSoundStereo$("");
var glyphiconSubtitles$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-subtitles ",
c)},
_L.fromArray([]));
};
var glyphiconSubtitles_ = glyphiconSubtitles$("");
var glyphiconHdVideo$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-hd-video ",
c)},
_L.fromArray([]));
};
var glyphiconHdVideo_ = glyphiconHdVideo$("");
var glyphiconSdVideo$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sd-video ",
c)},
_L.fromArray([]));
};
var glyphiconSdVideo_ = glyphiconSdVideo$("");
var glyphiconStats$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-stats ",
c)},
_L.fromArray([]));
};
var glyphiconStats_ = glyphiconStats$("");
var glyphiconTower$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-tower ",
c)},
_L.fromArray([]));
};
var glyphiconTower_ = glyphiconTower$("");
var glyphiconPhoneAlt$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-phone-alt ",
c)},
_L.fromArray([]));
};
var glyphiconPhoneAlt_ = glyphiconPhoneAlt$("");
var glyphiconEarphone$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-earphone ",
c)},
_L.fromArray([]));
};
var glyphiconEarphone_ = glyphiconEarphone$("");
var glyphiconCompressed$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-compressed ",
c)},
_L.fromArray([]));
};
var glyphiconCompressed_ = glyphiconCompressed$("");
var glyphiconHeader$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-header ",
c)},
_L.fromArray([]));
};
var glyphiconHeader_ = glyphiconHeader$("");
var glyphiconCutlery$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-cutlery ",
c)},
_L.fromArray([]));
};
var glyphiconCutlery_ = glyphiconCutlery$("");
var glyphiconTransfer$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-transfer ",
c)},
_L.fromArray([]));
};
var glyphiconTransfer_ = glyphiconTransfer$("");
var glyphiconCreditCard$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-credit-card ",
c)},
_L.fromArray([]));
};
var glyphiconCreditCard_ = glyphiconCreditCard$("");
var glyphiconFloppyOpen$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-floppy-open ",
c)},
_L.fromArray([]));
};
var glyphiconFloppyOpen_ = glyphiconFloppyOpen$("");
var glyphiconFloppySave$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-floppy-save ",
c)},
_L.fromArray([]));
};
var glyphiconFloppySave_ = glyphiconFloppySave$("");
var glyphiconFloppyRemove$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-floppy-remove ",
c)},
_L.fromArray([]));
};
var glyphiconFloppyRemove_ = glyphiconFloppyRemove$("");
var glyphiconFloppySaved$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-floppy-saved ",
c)},
_L.fromArray([]));
};
var glyphiconFloppySaved_ = glyphiconFloppySaved$("");
var glyphiconFloppyDisk$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-floppy-disk ",
c)},
_L.fromArray([]));
};
var glyphiconFloppyDisk_ = glyphiconFloppyDisk$("");
var glyphiconSend$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-send ",
c)},
_L.fromArray([]));
};
var glyphiconSend_ = glyphiconSend$("");
var glyphiconExport$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-export ",
c)},
_L.fromArray([]));
};
var glyphiconExport_ = glyphiconExport$("");
var glyphiconImport$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-import ",
c)},
_L.fromArray([]));
};
var glyphiconImport_ = glyphiconImport$("");
var glyphiconSaved$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-saved ",
c)},
_L.fromArray([]));
};
var glyphiconSaved_ = glyphiconSaved$("");
var glyphiconOpen$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-open ",
c)},
_L.fromArray([]));
};
var glyphiconOpen_ = glyphiconOpen$("");
var glyphiconSave$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-save ",
c)},
_L.fromArray([]));
};
var glyphiconSave_ = glyphiconSave$("");
var glyphiconRecord$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-record ",
c)},
_L.fromArray([]));
};
var glyphiconRecord_ = glyphiconRecord$("");
var glyphiconNewWindow$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-new-window ",
c)},
_L.fromArray([]));
};
var glyphiconNewWindow_ = glyphiconNewWindow$("");
var glyphiconLogOut$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-log-out ",
c)},
_L.fromArray([]));
};
var glyphiconLogOut_ = glyphiconLogOut$("");
var glyphiconFlash$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-flash ",
c)},
_L.fromArray([]));
};
var glyphiconFlash_ = glyphiconFlash$("");
var glyphiconLogIn$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-log-in ",
c)},
_L.fromArray([]));
};
var glyphiconLogIn_ = glyphiconLogIn$("");
var glyphiconCollapseUp$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-collapse-up ",
c)},
_L.fromArray([]));
};
var glyphiconCollapseUp_ = glyphiconCollapseUp$("");
var glyphiconCollapseDown$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-collapse-down ",
c)},
_L.fromArray([]));
};
var glyphiconCollapseDown_ = glyphiconCollapseDown$("");
var glyphiconExpand$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-expand ",
c)},
_L.fromArray([]));
};
var glyphiconExpand_ = glyphiconExpand$("");
var glyphiconUnchecked$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-unchecked ",
c)},
_L.fromArray([]));
};
var glyphiconUnchecked_ = glyphiconUnchecked$("");
var glyphiconSortByAttributesAlt$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-attributes-alt ",
c)},
_L.fromArray([]));
};
var glyphiconSortByAttributesAlt_ = glyphiconSortByAttributesAlt$("");
var glyphiconSortByAttributes$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-attributes ",
c)},
_L.fromArray([]));
};
var glyphiconSortByAttributes_ = glyphiconSortByAttributes$("");
var glyphiconSortByOrderAlt$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-order-alt ",
c)},
_L.fromArray([]));
};
var glyphiconSortByOrderAlt_ = glyphiconSortByOrderAlt$("");
var glyphiconSortByOrder$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-order ",
c)},
_L.fromArray([]));
};
var glyphiconSortByOrder_ = glyphiconSortByOrder$("");
var glyphiconSortByAlphabetAlt$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-alphabet-alt ",
c)},
_L.fromArray([]));
};
var glyphiconSortByAlphabetAlt_ = glyphiconSortByAlphabetAlt$("");
var glyphiconSortByAlphabet$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort-by-alphabet ",
c)},
_L.fromArray([]));
};
var glyphiconSortByAlphabet_ = glyphiconSortByAlphabet$("");
var glyphiconSort$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-sort ",
c)},
_L.fromArray([]));
};
var glyphiconSort_ = glyphiconSort$("");
var glyphiconGbp$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-gbp ",
c)},
_L.fromArray([]));
};
var glyphiconGbp_ = glyphiconGbp$("");
var glyphiconUsd$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-usd ",
c)},
_L.fromArray([]));
};
var glyphiconUsd_ = glyphiconUsd$("");
var glyphiconPushpin$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-pushpin ",
c)},
_L.fromArray([]));
};
var glyphiconPushpin_ = glyphiconPushpin$("");
var glyphiconPhone$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-phone ",
c)},
_L.fromArray([]));
};
var glyphiconPhone_ = glyphiconPhone$("");
var glyphiconLink$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-link ",
c)},
_L.fromArray([]));
};
var glyphiconLink_ = glyphiconLink$("");
var glyphiconHeartEmpty$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-heart-empty ",
c)},
_L.fromArray([]));
};
var glyphiconHeartEmpty_ = glyphiconHeartEmpty$("");
var glyphiconPaperclip$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-paperclip ",
c)},
_L.fromArray([]));
};
var glyphiconPaperclip_ = glyphiconPaperclip$("");
var glyphiconDashboard$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-dashboard ",
c)},
_L.fromArray([]));
};
var glyphiconDashboard_ = glyphiconDashboard$("");
var glyphiconFullscreen$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-fullscreen ",
c)},
_L.fromArray([]));
};
var glyphiconFullscreen_ = glyphiconFullscreen$("");
var glyphiconBriefcase$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-briefcase ",
c)},
_L.fromArray([]));
};
var glyphiconBriefcase_ = glyphiconBriefcase$("");
var glyphiconFilter$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-filter ",
c)},
_L.fromArray([]));
};
var glyphiconFilter_ = glyphiconFilter$("");
var glyphiconTasks$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-tasks ",
c)},
_L.fromArray([]));
};
var glyphiconTasks_ = glyphiconTasks$("");
var glyphiconWrench$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-wrench ",
c)},
_L.fromArray([]));
};
var glyphiconWrench_ = glyphiconWrench$("");
var glyphiconGlobe$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-globe ",
c)},
_L.fromArray([]));
};
var glyphiconGlobe_ = glyphiconGlobe$("");
var glyphiconCircleArrowDown$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-circle-arrow-down ",
c)},
_L.fromArray([]));
};
var glyphiconCircleArrowDown_ = glyphiconCircleArrowDown$("");
var glyphiconCircleArrowUp$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-circle-arrow-up ",
c)},
_L.fromArray([]));
};
var glyphiconCircleArrowUp_ = glyphiconCircleArrowUp$("");
var glyphiconCircleArrowLeft$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-circle-arrow-left ",
c)},
_L.fromArray([]));
};
var glyphiconCircleArrowLeft_ = glyphiconCircleArrowLeft$("");
var glyphiconCircleArrowRight$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-circle-arrow-right ",
c)},
_L.fromArray([]));
};
var glyphiconCircleArrowRight_ = glyphiconCircleArrowRight$("");
var glyphiconHandDown$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-hand-down ",
c)},
_L.fromArray([]));
};
var glyphiconHandDown_ = glyphiconHandDown$("");
var glyphiconHandUp$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-hand-up ",
c)},
_L.fromArray([]));
};
var glyphiconHandUp_ = glyphiconHandUp$("");
var glyphiconHandLeft$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-hand-left ",
c)},
_L.fromArray([]));
};
var glyphiconHandLeft_ = glyphiconHandLeft$("");
var glyphiconHandRight$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-hand-right ",
c)},
_L.fromArray([]));
};
var glyphiconHandRight_ = glyphiconHandRight$("");
var glyphiconThumbsDown$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-thumbs-down ",
c)},
_L.fromArray([]));
};
var glyphiconThumbsDown_ = glyphiconThumbsDown$("");
var glyphiconThumbsUp$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-thumbs-up ",
c)},
_L.fromArray([]));
};
var glyphiconThumbsUp_ = glyphiconThumbsUp$("");
var glyphiconCertificate$ = function (c) {
return A2($Html$Shorthand.span$,
{_: {}
,$class: A2($Basics._op["++"],
"glyphicon glyphicon-certificate ",
c)},