forked from tdewolff/minify
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhash.go
More file actions
1392 lines (1382 loc) · 55 KB
/
Copy pathhash.go
File metadata and controls
1392 lines (1382 loc) · 55 KB
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
package css
// uses github.com/tdewolff/hasher
//go:generate hasher -type=Hash -file=hash.go
// Hash defines perfect hashes for a predefined list of strings
type Hash uint32
// Identifiers for the hashes associated with the text in the comments.
const (
Ms_Filter Hash = 0xa // -ms-filter
Accelerator Hash = 0x3760b // accelerator
Aliceblue Hash = 0x7a209 // aliceblue
Align_Content Hash = 0xd980d // align-content
Align_Items Hash = 0x7ef0b // align-items
Align_Self Hash = 0x8cb0a // align-self
All Hash = 0x69103 // all
Alpha Hash = 0x37205 // alpha
Animation Hash = 0xca09 // animation
Animation_Delay Hash = 0x2050f // animation-delay
Animation_Direction Hash = 0x8e913 // animation-direction
Animation_Duration Hash = 0x35d12 // animation-duration
Animation_Fill_Mode Hash = 0x66c13 // animation-fill-mode
Animation_Iteration_Count Hash = 0xd4919 // animation-iteration-count
Animation_Name Hash = 0xca0e // animation-name
Animation_Play_State Hash = 0xfc14 // animation-play-state
Animation_Timing_Function Hash = 0x14119 // animation-timing-function
Antiquewhite Hash = 0x6490c // antiquewhite
Aquamarine Hash = 0x9ec0a // aquamarine
Attr Hash = 0x59804 // attr
Auto Hash = 0x44504 // auto
Azimuth Hash = 0x15a07 // azimuth
Background Hash = 0x2b0a // background
Background_Attachment Hash = 0x2b15 // background-attachment
Background_Clip Hash = 0xb6e0f // background-clip
Background_Color Hash = 0x21710 // background-color
Background_Image Hash = 0x5ad10 // background-image
Background_Origin Hash = 0x17111 // background-origin
Background_Position Hash = 0x18e13 // background-position
Background_Position_X Hash = 0x18e15 // background-position-x
Background_Position_Y Hash = 0x1a315 // background-position-y
Background_Repeat Hash = 0x1b811 // background-repeat
Background_Size Hash = 0x1cb0f // background-size
Behavior Hash = 0x1da08 // behavior
Black Hash = 0x1e205 // black
Blanchedalmond Hash = 0x1e70e // blanchedalmond
Blueviolet Hash = 0x7a70a // blueviolet
Bold Hash = 0x1fc04 // bold
Border Hash = 0x22706 // border
Border_Bottom Hash = 0x2270d // border-bottom
Border_Bottom_Color Hash = 0x22713 // border-bottom-color
Border_Bottom_Style Hash = 0x23a13 // border-bottom-style
Border_Bottom_Width Hash = 0x25d13 // border-bottom-width
Border_Box Hash = 0x27e0a // border-box
Border_Collapse Hash = 0x2b60f // border-collapse
Border_Color Hash = 0x2d30c // border-color
Border_Left Hash = 0x2df0b // border-left
Border_Left_Color Hash = 0x2df11 // border-left-color
Border_Left_Style Hash = 0x2f011 // border-left-style
Border_Left_Width Hash = 0x30111 // border-left-width
Border_Right Hash = 0x3120c // border-right
Border_Right_Color Hash = 0x31212 // border-right-color
Border_Right_Style Hash = 0x32412 // border-right-style
Border_Right_Width Hash = 0x33612 // border-right-width
Border_Spacing Hash = 0x3480e // border-spacing
Border_Style Hash = 0x3ab0c // border-style
Border_Top Hash = 0x3b70a // border-top
Border_Top_Color Hash = 0x3b710 // border-top-color
Border_Top_Style Hash = 0x3c710 // border-top-style
Border_Top_Width Hash = 0x3d710 // border-top-width
Border_Width Hash = 0x3e70c // border-width
Bottom Hash = 0x22e06 // bottom
Box_Shadow Hash = 0x2850a // box-shadow
Burlywood Hash = 0x3f309 // burlywood
Cadetblue Hash = 0x9c609 // cadetblue
Calc Hash = 0x9c304 // calc
Caption_Side Hash = 0x40f0c // caption-side
Caret_Color Hash = 0x4240b // caret-color
Center Hash = 0xdb06 // center
Charset Hash = 0x62f07 // charset
Chartreuse Hash = 0x42f0a // chartreuse
Chocolate Hash = 0x43909 // chocolate
Clamp Hash = 0x44e05 // clamp
Clear Hash = 0x45d05 // clear
Clip Hash = 0xb7904 // clip
Cm Hash = 0x53802 // cm
Color Hash = 0x2505 // color
Column_Count Hash = 0x4620c // column-count
Column_Gap Hash = 0x6a30a // column-gap
Column_Rule Hash = 0x4880b // column-rule
Column_Rule_Color Hash = 0x48811 // column-rule-color
Column_Rule_Style Hash = 0x49911 // column-rule-style
Column_Rule_Width Hash = 0x4aa11 // column-rule-width
Column_Width Hash = 0x4bb0c // column-width
Columns Hash = 0x74607 // columns
Content Hash = 0x5607 // content
Cornflowerblue Hash = 0x4c70e // cornflowerblue
Cornsilk Hash = 0x4d508 // cornsilk
Counter_Increment Hash = 0xd5d11 // counter-increment
Counter_Reset Hash = 0x4690d // counter-reset
Cue Hash = 0x4dd03 // cue
Cue_After Hash = 0x4dd09 // cue-after
Cue_Before Hash = 0x4e60a // cue-before
Currentcolor Hash = 0x5010c // currentcolor
Cursive Hash = 0x50d07 // cursive
Cursor Hash = 0x51406 // cursor
Darkblue Hash = 0x1f408 // darkblue
Darkcyan Hash = 0x1ff08 // darkcyan
Darkgoldenrod Hash = 0x3fb0d // darkgoldenrod
Darkgray Hash = 0x40708 // darkgray
Darkgreen Hash = 0x75c09 // darkgreen
Darkkhaki Hash = 0xa1409 // darkkhaki
Darkmagenta Hash = 0xce90b // darkmagenta
Darkolivegreen Hash = 0x6d90e // darkolivegreen
Darkorange Hash = 0x7500a // darkorange
Darkorchid Hash = 0xa0b0a // darkorchid
Darksalmon Hash = 0xa990a // darksalmon
Darkseagreen Hash = 0xb110c // darkseagreen
Darkslateblue Hash = 0xc1c0d // darkslateblue
Darkslategray Hash = 0xbfa0d // darkslategray
Darkturquoise Hash = 0xcaa0d // darkturquoise
Darkviolet Hash = 0x51a0a // darkviolet
Deeppink Hash = 0x67d08 // deeppink
Deepskyblue Hash = 0x4190b // deepskyblue
Default Hash = 0xa2207 // default
Deg Hash = 0x70103 // deg
Direction Hash = 0x8d909 // direction
Display Hash = 0xcce07 // display
Document Hash = 0x52408 // document
Dodgerblue Hash = 0x52c0a // dodgerblue
Dpcm Hash = 0x53604 // dpcm
Dpi Hash = 0x54f03 // dpi
Dppx Hash = 0x55b04 // dppx
Elevation Hash = 0x6d09 // elevation
Empty_Cells Hash = 0x3910b // empty-cells
Env Hash = 0x4f503 // env
Fantasy Hash = 0x3a407 // fantasy
Fill Hash = 0x67604 // fill
Filter Hash = 0x406 // filter
Firebrick Hash = 0x83509 // firebrick
Flex Hash = 0x55f04 // flex
Flex_Basis Hash = 0x89d0a // flex-basis
Flex_Direction Hash = 0x8d40e // flex-direction
Flex_Flow Hash = 0xc8709 // flex-flow
Flex_Grow Hash = 0x55f09 // flex-grow
Flex_Shrink Hash = 0x5680b // flex-shrink
Flex_Wrap Hash = 0x57309 // flex-wrap
Float Hash = 0x59505 // float
Floralwhite Hash = 0x5bd0b // floralwhite
Font Hash = 0x25404 // font
Font_Face Hash = 0x25409 // font-face
Font_Family Hash = 0x5ee0b // font-family
Font_Size Hash = 0x5f909 // font-size
Font_Size_Adjust Hash = 0x5f910 // font-size-adjust
Font_Stretch Hash = 0x6250c // font-stretch
Font_Style Hash = 0x6360a // font-style
Font_Variant Hash = 0x6400c // font-variant
Font_Weight Hash = 0x65b0b // font-weight
Forestgreen Hash = 0x4ec0b // forestgreen
Fuchsia Hash = 0x66607 // fuchsia
Function Hash = 0x15208 // function
Gainsboro Hash = 0xec09 // gainsboro
Ghostwhite Hash = 0x2990a // ghostwhite
Goldenrod Hash = 0x3ff09 // goldenrod
Grad Hash = 0x1004 // grad
Greenyellow Hash = 0x7600b // greenyellow
Grid Hash = 0x35504 // grid
Grid_Area Hash = 0x35509 // grid-area
Grid_Auto_Columns Hash = 0x7bb11 // grid-auto-columns
Grid_Auto_Flow Hash = 0x81c0e // grid-auto-flow
Grid_Auto_Rows Hash = 0x8640e // grid-auto-rows
Grid_Column Hash = 0x69e0b // grid-column
Grid_Column_End Hash = 0xcdb0f // grid-column-end
Grid_Column_Gap Hash = 0x69e0f // grid-column-gap
Grid_Column_Start Hash = 0x6bd11 // grid-column-start
Grid_Row Hash = 0x6ce08 // grid-row
Grid_Row_End Hash = 0x6ce0c // grid-row-end
Grid_Row_Gap Hash = 0x6e70c // grid-row-gap
Grid_Row_Start Hash = 0x7030e // grid-row-start
Grid_Template Hash = 0x7110d // grid-template
Grid_Template_Areas Hash = 0x71113 // grid-template-areas
Grid_Template_Columns Hash = 0x73815 // grid-template-columns
Grid_Template_Rows Hash = 0x77012 // grid-template-rows
Height Hash = 0x9306 // height
Honeydew Hash = 0x16008 // honeydew
Hsl Hash = 0x26f03 // hsl
Hsla Hash = 0x26f04 // hsla
Hz Hash = 0x68502 // hz
Ime_Mode Hash = 0xa1c08 // ime-mode
Import Hash = 0x78d06 // import
Important Hash = 0x78d09 // important
In Hash = 0x4402 // in
Include_Source Hash = 0x1800e // include-source
Indianred Hash = 0xb0909 // indianred
Inherit Hash = 0x79607 // inherit
Initial Hash = 0x79d07 // initial
Invert Hash = 0x7e406 // invert
Justify_Content Hash = 0x4e0f // justify-content
Justify_Items Hash = 0x6050d // justify-items
Justify_Self Hash = 0x82a0c // justify-self
Keyframes Hash = 0x5cb09 // keyframes
Khz Hash = 0x68403 // khz
Large Hash = 0xa905 // large
Larger Hash = 0xa906 // larger
Lavender Hash = 0x27108 // lavender
Lavenderblush Hash = 0x2710d // lavenderblush
Lawngreen Hash = 0x2ca09 // lawngreen
Layer_Background_Color Hash = 0x21116 // layer-background-color
Layer_Background_Image Hash = 0x5a716 // layer-background-image
Layout_Flow Hash = 0xcf80b // layout-flow
Layout_Grid Hash = 0x8050b // layout-grid
Layout_Grid_Char Hash = 0x80510 // layout-grid-char
Layout_Grid_Char_Spacing Hash = 0x80518 // layout-grid-char-spacing
Layout_Grid_Line Hash = 0x83e10 // layout-grid-line
Layout_Grid_Mode Hash = 0x85410 // layout-grid-mode
Layout_Grid_Type Hash = 0x88710 // layout-grid-type
Left Hash = 0x2e604 // left
Lemonchiffon Hash = 0x24b0c // lemonchiffon
Letter_Spacing Hash = 0x7ae0e // letter-spacing
Lightblue Hash = 0x8ba09 // lightblue
Lightcoral Hash = 0x8c30a // lightcoral
Lightcyan Hash = 0x8e209 // lightcyan
Lightgoldenrodyellow Hash = 0x8fc14 // lightgoldenrodyellow
Lightgray Hash = 0x91009 // lightgray
Lightgreen Hash = 0x9190a // lightgreen
Lightpink Hash = 0x92309 // lightpink
Lightsalmon Hash = 0x92c0b // lightsalmon
Lightseagreen Hash = 0x9370d // lightseagreen
Lightskyblue Hash = 0x9440c // lightskyblue
Lightslateblue Hash = 0x9500e // lightslateblue
Lightsteelblue Hash = 0x95e0e // lightsteelblue
Lightyellow Hash = 0x96c0b // lightyellow
Limegreen Hash = 0x97709 // limegreen
Line_Break Hash = 0x84a0a // line-break
Line_Height Hash = 0x8e0b // line-height
Linear_Gradient Hash = 0x9800f // linear-gradient
List_Style Hash = 0x98f0a // list-style
List_Style_Image Hash = 0x98f10 // list-style-image
List_Style_Position Hash = 0x99f13 // list-style-position
List_Style_Type Hash = 0x9b20f // list-style-type
Local Hash = 0x9c105 // local
Magenta Hash = 0xced07 // magenta
Margin Hash = 0x53906 // margin
Margin_Bottom Hash = 0xdb10d // margin-bottom
Margin_Left Hash = 0xdbd0b // margin-left
Margin_Right Hash = 0xb890c // margin-right
Margin_Top Hash = 0x5390a // margin-top
Marker_Offset Hash = 0xad00d // marker-offset
Marks Hash = 0xaee05 // marks
Mask Hash = 0x9cf04 // mask
Max Hash = 0x9d303 // max
Max_Height Hash = 0x9d30a // max-height
Max_Width Hash = 0x9dd09 // max-width
Media Hash = 0xd4505 // media
Medium Hash = 0x9e606 // medium
Mediumaquamarine Hash = 0x9e610 // mediumaquamarine
Mediumblue Hash = 0x9f60a // mediumblue
Mediumorchid Hash = 0xa000c // mediumorchid
Mediumpurple Hash = 0xa420c // mediumpurple
Mediumseagreen Hash = 0xa4e0e // mediumseagreen
Mediumslateblue Hash = 0xa5c0f // mediumslateblue
Mediumspringgreen Hash = 0xa6b11 // mediumspringgreen
Mediumturquoise Hash = 0xa7c0f // mediumturquoise
Mediumvioletred Hash = 0xa8b0f // mediumvioletred
Midnightblue Hash = 0xaa90c // midnightblue
Min Hash = 0x14d03 // min
Min_Height Hash = 0xab50a // min-height
Min_Width Hash = 0xabf09 // min-width
Mintcream Hash = 0xac809 // mintcream
Mistyrose Hash = 0xae409 // mistyrose
Mm Hash = 0xaed02 // mm
Moccasin Hash = 0xb0308 // moccasin
Monospace Hash = 0xaa009 // monospace
Ms Hash = 0x102 // ms
Namespace Hash = 0xd409 // namespace
Navajowhite Hash = 0x750b // navajowhite
No_Repeat Hash = 0xbf09 // no-repeat
None Hash = 0x38e04 // none
Normal Hash = 0x36e06 // normal
Offset Hash = 0xad706 // offset
Offset_Anchor Hash = 0xad70d // offset-anchor
Offset_Distance Hash = 0xb1d0f // offset-distance
Offset_Path Hash = 0xb2c0b // offset-path
Offset_Position Hash = 0xb370f // offset-position
Offset_Rotate Hash = 0xb460d // offset-rotate
Olivedrab Hash = 0xb6609 // olivedrab
Orangered Hash = 0x75409 // orangered
Order Hash = 0x22805 // order
Orphans Hash = 0x37f07 // orphans
Outline Hash = 0xba707 // outline
Outline_Color Hash = 0xba70d // outline-color
Outline_Style Hash = 0xbb40d // outline-style
Outline_Width Hash = 0xbc10d // outline-width
Overflow Hash = 0x9d08 // overflow
Overflow_X Hash = 0x9d0a // overflow-x
Overflow_Y Hash = 0xbce0a // overflow-y
Padding Hash = 0x45207 // padding
Padding_Bottom Hash = 0xb7c0e // padding-bottom
Padding_Box Hash = 0x4520b // padding-box
Padding_Left Hash = 0xd0a0c // padding-left
Padding_Right Hash = 0x5420d // padding-right
Padding_Top Hash = 0x57b0b // padding-top
Page Hash = 0x58504 // page
Page_Break_After Hash = 0x58510 // page-break-after
Page_Break_Before Hash = 0x6ac11 // page-break-before
Page_Break_Inside Hash = 0x6f211 // page-break-inside
Palegoldenrod Hash = 0xc100d // palegoldenrod
Palegreen Hash = 0xbd809 // palegreen
Paleturquoise Hash = 0xbe10d // paleturquoise
Palevioletred Hash = 0xbee0d // palevioletred
Papayawhip Hash = 0xc070a // papayawhip
Pause Hash = 0xc2905 // pause
Pause_After Hash = 0xc290b // pause-after
Pause_Before Hash = 0xc340c // pause-before
Pc Hash = 0x53702 // pc
Peachpuff Hash = 0x89509 // peachpuff
Pitch Hash = 0x55005 // pitch
Pitch_Range Hash = 0x5500b // pitch-range
Place_Content Hash = 0xc400d // place-content
Place_Items Hash = 0xc4d0b // place-items
Place_Self Hash = 0xc7e0a // place-self
Play_During Hash = 0xcd10b // play-during
Position Hash = 0x13908 // position
Powderblue Hash = 0xc9b0a // powderblue
Progid Hash = 0xca506 // progid
Pt Hash = 0x39302 // pt
Px Hash = 0x55d02 // px
Q Hash = 0x64d01 // q
Quotes Hash = 0xcb706 // quotes
Rad Hash = 0x903 // rad
Radial_Gradient Hash = 0x90f // radial-gradient
Repeat Hash = 0xc206 // repeat
Repeat_X Hash = 0x1c308 // repeat-x
Repeat_Y Hash = 0xc208 // repeat-y
Rgb Hash = 0x2903 // rgb
Rgba Hash = 0x2904 // rgba
Richness Hash = 0xae08 // richness
Right Hash = 0x31905 // right
Rosybrown Hash = 0xf309 // rosybrown
Round Hash = 0x3005 // round
Row_Gap Hash = 0x6ec07 // row-gap
Royalblue Hash = 0x69509 // royalblue
Ruby_Align Hash = 0xd930a // ruby-align
Ruby_Overhang Hash = 0xe00d // ruby-overhang
Ruby_Position Hash = 0x1340d // ruby-position
S Hash = 0x201 // s
Saddlebrown Hash = 0xb50b // saddlebrown
Sandybrown Hash = 0x3850a // sandybrown
Sans_Serif Hash = 0x39b0a // sans-serif
Scroll Hash = 0x12006 // scroll
Scrollbar_3d_Light_Color Hash = 0xd7c18 // scrollbar-3d-light-color
Scrollbar_Arrow_Color Hash = 0x12015 // scrollbar-arrow-color
Scrollbar_Base_Color Hash = 0x8a614 // scrollbar-base-color
Scrollbar_Dark_Shadow_Color Hash = 0x5d31b // scrollbar-dark-shadow-color
Scrollbar_Face_Color Hash = 0x61114 // scrollbar-face-color
Scrollbar_Highlight_Color Hash = 0x7cb19 // scrollbar-highlight-color
Scrollbar_Shadow_Color Hash = 0x87116 // scrollbar-shadow-color
Scrollbar_Track_Color Hash = 0x72315 // scrollbar-track-color
Seagreen Hash = 0x93c08 // seagreen
Seashell Hash = 0x2c308 // seashell
Serif Hash = 0x3a005 // serif
Size Hash = 0x1d604 // size
Slateblue Hash = 0x95509 // slateblue
Slategray Hash = 0xbfe09 // slategray
Small Hash = 0x68f05 // small
Smaller Hash = 0x68f07 // smaller
Solid Hash = 0x74c05 // solid
Space Hash = 0x6905 // space
Speak Hash = 0x78105 // speak
Speak_Header Hash = 0x7810c // speak-header
Speak_Numeral Hash = 0x7f90d // speak-numeral
Speak_Punctuation Hash = 0xaf211 // speak-punctuation
Speech_Rate Hash = 0xc570b // speech-rate
Springgreen Hash = 0xa710b // springgreen
Steelblue Hash = 0x96309 // steelblue
Stress Hash = 0x11b06 // stress
Stroke Hash = 0xc7806 // stroke
Supports Hash = 0xcbc08 // supports
Table_Layout Hash = 0xcf20c // table-layout
Text_Align Hash = 0x10e0a // text-align
Text_Align_Last Hash = 0x10e0f // text-align-last
Text_Autospace Hash = 0x4400e // text-autospace
Text_Decoration Hash = 0x7e0f // text-decoration
Text_Decoration_Color Hash = 0x2a115 // text-decoration-color
Text_Decoration_Line Hash = 0x7e14 // text-decoration-line
Text_Decoration_Style Hash = 0xb5115 // text-decoration-style
Text_Decoration_Thickness Hash = 0xc6019 // text-decoration-thickness
Text_Emphasis Hash = 0x170d // text-emphasis
Text_Emphasis_Color Hash = 0x1713 // text-emphasis-color
Text_Indent Hash = 0x3f0b // text-indent
Text_Justify Hash = 0x490c // text-justify
Text_Kashida_Space Hash = 0x5c12 // text-kashida-space
Text_Overflow Hash = 0x980d // text-overflow
Text_Shadow Hash = 0xd6d0b // text-shadow
Text_Transform Hash = 0xda40e // text-transform
Text_Underline_Position Hash = 0xdc717 // text-underline-position
Top Hash = 0x3be03 // top
Transition Hash = 0x4750a // transition
Transition_Delay Hash = 0x59a10 // transition-delay
Transition_Duration Hash = 0xb9413 // transition-duration
Transition_Property Hash = 0x47513 // transition-property
Transition_Timing_Function Hash = 0xa281a // transition-timing-function
Transparent Hash = 0xd150b // transparent
Turn Hash = 0xd1f04 // turn
Turquoise Hash = 0xa8209 // turquoise
Unicode_Bidi Hash = 0xcc40c // unicode-bidi
Unicode_Range Hash = 0xd230d // unicode-range
Unset Hash = 0xd3005 // unset
Url Hash = 0x3f403 // url
Var Hash = 0x64503 // var
Vertical_Align Hash = 0x7e60e // vertical-align
Visibility Hash = 0x4f70a // visibility
Voice_Family Hash = 0xd350c // voice-family
Volume Hash = 0xd4106 // volume
White Hash = 0x7b05 // white
White_Space Hash = 0x6500b // white-space
Whitesmoke Hash = 0x5c30a // whitesmoke
Widows Hash = 0xd7706 // widows
Width Hash = 0x26b05 // width
Word_Break Hash = 0x1670a // word-break
Word_Spacing Hash = 0x28e0c // word-spacing
Word_Wrap Hash = 0xd0209 // word-wrap
Writing_Mode Hash = 0xc8f0c // writing-mode
X_Large Hash = 0xa707 // x-large
X_Small Hash = 0x68d07 // x-small
Xx_Large Hash = 0xa608 // xx-large
Xx_Small Hash = 0x68c08 // xx-small
Yellow Hash = 0x76506 // yellow
Yellowgreen Hash = 0x7650b // yellowgreen
Z_Index Hash = 0x68607 // z-index
)
//var HashMap = map[string]Hash{
// "-ms-filter": Ms_Filter,
// "accelerator": Accelerator,
// "aliceblue": Aliceblue,
// "align-content": Align_Content,
// "align-items": Align_Items,
// "align-self": Align_Self,
// "all": All,
// "alpha": Alpha,
// "animation": Animation,
// "animation-delay": Animation_Delay,
// "animation-direction": Animation_Direction,
// "animation-duration": Animation_Duration,
// "animation-fill-mode": Animation_Fill_Mode,
// "animation-iteration-count": Animation_Iteration_Count,
// "animation-name": Animation_Name,
// "animation-play-state": Animation_Play_State,
// "animation-timing-function": Animation_Timing_Function,
// "antiquewhite": Antiquewhite,
// "aquamarine": Aquamarine,
// "attr": Attr,
// "auto": Auto,
// "azimuth": Azimuth,
// "background": Background,
// "background-attachment": Background_Attachment,
// "background-clip": Background_Clip,
// "background-color": Background_Color,
// "background-image": Background_Image,
// "background-origin": Background_Origin,
// "background-position": Background_Position,
// "background-position-x": Background_Position_X,
// "background-position-y": Background_Position_Y,
// "background-repeat": Background_Repeat,
// "background-size": Background_Size,
// "behavior": Behavior,
// "black": Black,
// "blanchedalmond": Blanchedalmond,
// "blueviolet": Blueviolet,
// "bold": Bold,
// "border": Border,
// "border-bottom": Border_Bottom,
// "border-bottom-color": Border_Bottom_Color,
// "border-bottom-style": Border_Bottom_Style,
// "border-bottom-width": Border_Bottom_Width,
// "border-box": Border_Box,
// "border-collapse": Border_Collapse,
// "border-color": Border_Color,
// "border-left": Border_Left,
// "border-left-color": Border_Left_Color,
// "border-left-style": Border_Left_Style,
// "border-left-width": Border_Left_Width,
// "border-right": Border_Right,
// "border-right-color": Border_Right_Color,
// "border-right-style": Border_Right_Style,
// "border-right-width": Border_Right_Width,
// "border-spacing": Border_Spacing,
// "border-style": Border_Style,
// "border-top": Border_Top,
// "border-top-color": Border_Top_Color,
// "border-top-style": Border_Top_Style,
// "border-top-width": Border_Top_Width,
// "border-width": Border_Width,
// "bottom": Bottom,
// "box-shadow": Box_Shadow,
// "burlywood": Burlywood,
// "cadetblue": Cadetblue,
// "calc": Calc,
// "caption-side": Caption_Side,
// "caret-color": Caret_Color,
// "center": Center,
// "charset": Charset,
// "chartreuse": Chartreuse,
// "chocolate": Chocolate,
// "clamp": Clamp,
// "clear": Clear,
// "clip": Clip,
// "cm": Cm,
// "color": Color,
// "column-count": Column_Count,
// "column-gap": Column_Gap,
// "column-rule": Column_Rule,
// "column-rule-color": Column_Rule_Color,
// "column-rule-style": Column_Rule_Style,
// "column-rule-width": Column_Rule_Width,
// "column-width": Column_Width,
// "columns": Columns,
// "content": Content,
// "cornflowerblue": Cornflowerblue,
// "cornsilk": Cornsilk,
// "counter-increment": Counter_Increment,
// "counter-reset": Counter_Reset,
// "cue": Cue,
// "cue-after": Cue_After,
// "cue-before": Cue_Before,
// "currentcolor": Currentcolor,
// "cursive": Cursive,
// "cursor": Cursor,
// "darkblue": Darkblue,
// "darkcyan": Darkcyan,
// "darkgoldenrod": Darkgoldenrod,
// "darkgray": Darkgray,
// "darkgreen": Darkgreen,
// "darkkhaki": Darkkhaki,
// "darkmagenta": Darkmagenta,
// "darkolivegreen": Darkolivegreen,
// "darkorange": Darkorange,
// "darkorchid": Darkorchid,
// "darksalmon": Darksalmon,
// "darkseagreen": Darkseagreen,
// "darkslateblue": Darkslateblue,
// "darkslategray": Darkslategray,
// "darkturquoise": Darkturquoise,
// "darkviolet": Darkviolet,
// "deeppink": Deeppink,
// "deepskyblue": Deepskyblue,
// "default": Default,
// "deg": Deg,
// "direction": Direction,
// "display": Display,
// "document": Document,
// "dodgerblue": Dodgerblue,
// "dpcm": Dpcm,
// "dpi": Dpi,
// "dppx": Dppx,
// "elevation": Elevation,
// "empty-cells": Empty_Cells,
// "env": Env,
// "fantasy": Fantasy,
// "fill": Fill,
// "filter": Filter,
// "firebrick": Firebrick,
// "flex": Flex,
// "flex-basis": Flex_Basis,
// "flex-direction": Flex_Direction,
// "flex-flow": Flex_Flow,
// "flex-grow": Flex_Grow,
// "flex-shrink": Flex_Shrink,
// "flex-wrap": Flex_Wrap,
// "float": Float,
// "floralwhite": Floralwhite,
// "font": Font,
// "font-face": Font_Face,
// "font-family": Font_Family,
// "font-size": Font_Size,
// "font-size-adjust": Font_Size_Adjust,
// "font-stretch": Font_Stretch,
// "font-style": Font_Style,
// "font-variant": Font_Variant,
// "font-weight": Font_Weight,
// "forestgreen": Forestgreen,
// "fuchsia": Fuchsia,
// "function": Function,
// "gainsboro": Gainsboro,
// "ghostwhite": Ghostwhite,
// "goldenrod": Goldenrod,
// "grad": Grad,
// "greenyellow": Greenyellow,
// "grid": Grid,
// "grid-area": Grid_Area,
// "grid-auto-columns": Grid_Auto_Columns,
// "grid-auto-flow": Grid_Auto_Flow,
// "grid-auto-rows": Grid_Auto_Rows,
// "grid-column": Grid_Column,
// "grid-column-end": Grid_Column_End,
// "grid-column-gap": Grid_Column_Gap,
// "grid-column-start": Grid_Column_Start,
// "grid-row": Grid_Row,
// "grid-row-end": Grid_Row_End,
// "grid-row-gap": Grid_Row_Gap,
// "grid-row-start": Grid_Row_Start,
// "grid-template": Grid_Template,
// "grid-template-areas": Grid_Template_Areas,
// "grid-template-columns": Grid_Template_Columns,
// "grid-template-rows": Grid_Template_Rows,
// "height": Height,
// "honeydew": Honeydew,
// "hsl": Hsl,
// "hsla": Hsla,
// "hz": Hz,
// "ime-mode": Ime_Mode,
// "import": Import,
// "important": Important,
// "in": In,
// "include-source": Include_Source,
// "indianred": Indianred,
// "inherit": Inherit,
// "initial": Initial,
// "invert": Invert,
// "justify-content": Justify_Content,
// "justify-items": Justify_Items,
// "justify-self": Justify_Self,
// "keyframes": Keyframes,
// "khz": Khz,
// "large": Large,
// "larger": Larger,
// "lavender": Lavender,
// "lavenderblush": Lavenderblush,
// "lawngreen": Lawngreen,
// "layer-background-color": Layer_Background_Color,
// "layer-background-image": Layer_Background_Image,
// "layout-flow": Layout_Flow,
// "layout-grid": Layout_Grid,
// "layout-grid-char": Layout_Grid_Char,
// "layout-grid-char-spacing": Layout_Grid_Char_Spacing,
// "layout-grid-line": Layout_Grid_Line,
// "layout-grid-mode": Layout_Grid_Mode,
// "layout-grid-type": Layout_Grid_Type,
// "left": Left,
// "lemonchiffon": Lemonchiffon,
// "letter-spacing": Letter_Spacing,
// "lightblue": Lightblue,
// "lightcoral": Lightcoral,
// "lightcyan": Lightcyan,
// "lightgoldenrodyellow": Lightgoldenrodyellow,
// "lightgray": Lightgray,
// "lightgreen": Lightgreen,
// "lightpink": Lightpink,
// "lightsalmon": Lightsalmon,
// "lightseagreen": Lightseagreen,
// "lightskyblue": Lightskyblue,
// "lightslateblue": Lightslateblue,
// "lightsteelblue": Lightsteelblue,
// "lightyellow": Lightyellow,
// "limegreen": Limegreen,
// "line-break": Line_Break,
// "line-height": Line_Height,
// "linear-gradient": Linear_Gradient,
// "list-style": List_Style,
// "list-style-image": List_Style_Image,
// "list-style-position": List_Style_Position,
// "list-style-type": List_Style_Type,
// "local": Local,
// "magenta": Magenta,
// "margin": Margin,
// "margin-bottom": Margin_Bottom,
// "margin-left": Margin_Left,
// "margin-right": Margin_Right,
// "margin-top": Margin_Top,
// "marker-offset": Marker_Offset,
// "marks": Marks,
// "mask": Mask,
// "max": Max,
// "max-height": Max_Height,
// "max-width": Max_Width,
// "media": Media,
// "medium": Medium,
// "mediumaquamarine": Mediumaquamarine,
// "mediumblue": Mediumblue,
// "mediumorchid": Mediumorchid,
// "mediumpurple": Mediumpurple,
// "mediumseagreen": Mediumseagreen,
// "mediumslateblue": Mediumslateblue,
// "mediumspringgreen": Mediumspringgreen,
// "mediumturquoise": Mediumturquoise,
// "mediumvioletred": Mediumvioletred,
// "midnightblue": Midnightblue,
// "min": Min,
// "min-height": Min_Height,
// "min-width": Min_Width,
// "mintcream": Mintcream,
// "mistyrose": Mistyrose,
// "mm": Mm,
// "moccasin": Moccasin,
// "monospace": Monospace,
// "ms": Ms,
// "namespace": Namespace,
// "navajowhite": Navajowhite,
// "no-repeat": No_Repeat,
// "none": None,
// "normal": Normal,
// "offset": Offset,
// "offset-anchor": Offset_Anchor,
// "offset-distance": Offset_Distance,
// "offset-path": Offset_Path,
// "offset-position": Offset_Position,
// "offset-rotate": Offset_Rotate,
// "olivedrab": Olivedrab,
// "orangered": Orangered,
// "order": Order,
// "orphans": Orphans,
// "outline": Outline,
// "outline-color": Outline_Color,
// "outline-style": Outline_Style,
// "outline-width": Outline_Width,
// "overflow": Overflow,
// "overflow-x": Overflow_X,
// "overflow-y": Overflow_Y,
// "padding": Padding,
// "padding-bottom": Padding_Bottom,
// "padding-box": Padding_Box,
// "padding-left": Padding_Left,
// "padding-right": Padding_Right,
// "padding-top": Padding_Top,
// "page": Page,
// "page-break-after": Page_Break_After,
// "page-break-before": Page_Break_Before,
// "page-break-inside": Page_Break_Inside,
// "palegoldenrod": Palegoldenrod,
// "palegreen": Palegreen,
// "paleturquoise": Paleturquoise,
// "palevioletred": Palevioletred,
// "papayawhip": Papayawhip,
// "pause": Pause,
// "pause-after": Pause_After,
// "pause-before": Pause_Before,
// "pc": Pc,
// "peachpuff": Peachpuff,
// "pitch": Pitch,
// "pitch-range": Pitch_Range,
// "place-content": Place_Content,
// "place-items": Place_Items,
// "place-self": Place_Self,
// "play-during": Play_During,
// "position": Position,
// "powderblue": Powderblue,
// "progid": Progid,
// "pt": Pt,
// "px": Px,
// "q": Q,
// "quotes": Quotes,
// "rad": Rad,
// "radial-gradient": Radial_Gradient,
// "repeat": Repeat,
// "repeat-x": Repeat_X,
// "repeat-y": Repeat_Y,
// "rgb": Rgb,
// "rgba": Rgba,
// "richness": Richness,
// "right": Right,
// "rosybrown": Rosybrown,
// "round": Round,
// "row-gap": Row_Gap,
// "royalblue": Royalblue,
// "ruby-align": Ruby_Align,
// "ruby-overhang": Ruby_Overhang,
// "ruby-position": Ruby_Position,
// "s": S,
// "saddlebrown": Saddlebrown,
// "sandybrown": Sandybrown,
// "sans-serif": Sans_Serif,
// "scroll": Scroll,
// "scrollbar-3d-light-color": Scrollbar_3d_Light_Color,
// "scrollbar-arrow-color": Scrollbar_Arrow_Color,
// "scrollbar-base-color": Scrollbar_Base_Color,
// "scrollbar-dark-shadow-color": Scrollbar_Dark_Shadow_Color,
// "scrollbar-face-color": Scrollbar_Face_Color,
// "scrollbar-highlight-color": Scrollbar_Highlight_Color,
// "scrollbar-shadow-color": Scrollbar_Shadow_Color,
// "scrollbar-track-color": Scrollbar_Track_Color,
// "seagreen": Seagreen,
// "seashell": Seashell,
// "serif": Serif,
// "size": Size,
// "slateblue": Slateblue,
// "slategray": Slategray,
// "small": Small,
// "smaller": Smaller,
// "solid": Solid,
// "space": Space,
// "speak": Speak,
// "speak-header": Speak_Header,
// "speak-numeral": Speak_Numeral,
// "speak-punctuation": Speak_Punctuation,
// "speech-rate": Speech_Rate,
// "springgreen": Springgreen,
// "steelblue": Steelblue,
// "stress": Stress,
// "stroke": Stroke,
// "supports": Supports,
// "table-layout": Table_Layout,
// "text-align": Text_Align,
// "text-align-last": Text_Align_Last,
// "text-autospace": Text_Autospace,
// "text-decoration": Text_Decoration,
// "text-decoration-color": Text_Decoration_Color,
// "text-decoration-line": Text_Decoration_Line,
// "text-decoration-style": Text_Decoration_Style,
// "text-decoration-thickness": Text_Decoration_Thickness,
// "text-emphasis": Text_Emphasis,
// "text-emphasis-color": Text_Emphasis_Color,
// "text-indent": Text_Indent,
// "text-justify": Text_Justify,
// "text-kashida-space": Text_Kashida_Space,
// "text-overflow": Text_Overflow,
// "text-shadow": Text_Shadow,
// "text-transform": Text_Transform,
// "text-underline-position": Text_Underline_Position,
// "top": Top,
// "transition": Transition,
// "transition-delay": Transition_Delay,
// "transition-duration": Transition_Duration,
// "transition-property": Transition_Property,
// "transition-timing-function": Transition_Timing_Function,
// "transparent": Transparent,
// "turn": Turn,
// "turquoise": Turquoise,
// "unicode-bidi": Unicode_Bidi,
// "unicode-range": UnicodeRange,
// "unset": Unset,
// "url": Url,
// "var": Var,
// "vertical-align": Vertical_Align,
// "visibility": Visibility,
// "voice-family": Voice_Family,
// "volume": Volume,
// "white": White,
// "white-space": White_Space,
// "whitesmoke": Whitesmoke,
// "widows": Widows,
// "width": Width,
// "word-break": Word_Break,
// "word-spacing": Word_Spacing,
// "word-wrap": Word_Wrap,
// "writing-mode": Writing_Mode,
// "x-large": X_Large,
// "x-small": X_Small,
// "xx-large": Xx_Large,
// "xx-small": Xx_Small,
// "yellow": Yellow,
// "yellowgreen": Yellowgreen,
// "z-index": Z_Index,
//}
// String returns the text associated with the hash.
func (i Hash) String() string {
return string(i.Bytes())
}
// Bytes returns the text associated with the hash.
func (i Hash) Bytes() []byte {
start := uint32(i >> 8)
n := uint32(i & 0xff)
if start+n > uint32(len(_Hash_text)) {
return []byte{}
}
return _Hash_text[start : start+n]
}
// ToHash returns a hash Hash for a given []byte. Hash is a uint32 that is associated with the text in []byte. It returns zero if no match found.
func ToHash(s []byte) Hash {
if len(s) == 0 || len(s) > _Hash_maxLen {
return 0
}
//if 3 < len(s) {
// return HashMap[string(s)]
//}
h := uint32(_Hash_hash0)
for i := 0; i < len(s); i++ {
h ^= uint32(s[i])
h *= 16777619
}
if i := _Hash_table[h&uint32(len(_Hash_table)-1)]; int(i&0xff) == len(s) {
t := _Hash_text[i>>8 : i>>8+i&0xff]
for i := 0; i < len(s); i++ {
if t[i] != s[i] {
goto NEXT
}
}
return i
}
NEXT:
if i := _Hash_table[(h>>16)&uint32(len(_Hash_table)-1)]; int(i&0xff) == len(s) {
t := _Hash_text[i>>8 : i>>8+i&0xff]
for i := 0; i < len(s); i++ {
if t[i] != s[i] {
return 0
}
}
return i
}
return 0
}
const _Hash_hash0 = 0x9acb0442
const _Hash_maxLen = 27
var _Hash_text = []byte("" +
"-ms-filteradial-gradientext-emphasis-colorgbackground-attach" +
"mentext-indentext-justify-contentext-kashida-spacelevationav" +
"ajowhitext-decoration-line-heightext-overflow-xx-largerichne" +
"ssaddlebrowno-repeat-yanimation-namespacenteruby-overhangain" +
"sborosybrownanimation-play-statext-align-lastresscrollbar-ar" +
"row-coloruby-positionanimation-timing-functionazimuthoneydew" +
"ord-breakbackground-originclude-sourcebackground-position-xb" +
"ackground-position-ybackground-repeat-xbackground-sizebehavi" +
"orblackblanchedalmondarkblueboldarkcyanimation-delayer-backg" +
"round-colorborder-bottom-colorborder-bottom-stylemonchiffont" +
"-faceborder-bottom-widthslavenderblushborder-box-shadoword-s" +
"pacinghostwhitext-decoration-colorborder-collapseashellawngr" +
"eenborder-colorborder-left-colorborder-left-styleborder-left" +
"-widthborder-right-colorborder-right-styleborder-right-width" +
"border-spacingrid-areanimation-durationormalphacceleratorpha" +
"nsandybrownonempty-cellsans-serifantasyborder-styleborder-to" +
"p-colorborder-top-styleborder-top-widthborder-widthburlywood" +
"arkgoldenrodarkgraycaption-sideepskybluecaret-colorchartreus" +
"echocolatext-autospaceclampadding-boxclearcolumn-counter-res" +
"etransition-propertycolumn-rule-colorcolumn-rule-stylecolumn" +
"-rule-widthcolumn-widthcornflowerbluecornsilkcue-aftercue-be" +
"forestgreenvisibilitycurrentcolorcursivecursordarkvioletdocu" +
"mentdodgerbluedpcmargin-topadding-rightdpitch-rangedppxflex-" +
"growflex-shrinkflex-wrapadding-topage-break-afterfloattransi" +
"tion-delayer-background-imagefloralwhitesmokeyframescrollbar" +
"-dark-shadow-colorfont-familyfont-size-adjustify-itemscrollb" +
"ar-face-colorfont-stretcharsetfont-stylefont-variantiquewhit" +
"e-spacefont-weightfuchsianimation-fill-modeeppinkhz-indexx-s" +
"malleroyalbluegrid-column-gapage-break-beforegrid-column-sta" +
"rtgrid-row-endarkolivegreengrid-row-gapage-break-insidegrid-" +
"row-startgrid-template-areascrollbar-track-colorgrid-templat" +
"e-columnsolidarkorangeredarkgreenyellowgreengrid-template-ro" +
"wspeak-headerimportantinheritinitialicebluevioletter-spacing" +
"rid-auto-columnscrollbar-highlight-colorinvertical-align-ite" +
"mspeak-numeralayout-grid-char-spacingrid-auto-flowjustify-se" +
"lfirebricklayout-grid-line-breaklayout-grid-modegrid-auto-ro" +
"wscrollbar-shadow-colorlayout-grid-typeachpufflex-basiscroll" +
"bar-base-colorlightbluelightcoralign-selflex-directionlightc" +
"yanimation-directionlightgoldenrodyellowlightgraylightgreenl" +
"ightpinklightsalmonlightseagreenlightskybluelightslateblueli" +
"ghtsteelbluelightyellowlimegreenlinear-gradientlist-style-im" +
"agelist-style-positionlist-style-typelocalcadetbluemaskmax-h" +
"eightmax-widthmediumaquamarinemediumbluemediumorchidarkorchi" +
"darkkhakime-modefaultransition-timing-functionmediumpurpleme" +
"diumseagreenmediumslatebluemediumspringgreenmediumturquoisem" +
"ediumvioletredarksalmonospacemidnightbluemin-heightmin-width" +
"mintcreamarker-offset-anchormistyrosemmarkspeak-punctuationm" +
"occasindianredarkseagreenoffset-distanceoffset-pathoffset-po" +
"sitionoffset-rotatext-decoration-styleolivedrabackground-cli" +
"padding-bottomargin-rightransition-durationoutline-coloroutl" +
"ine-styleoutline-widthoverflow-ypalegreenpaleturquoisepalevi" +
"oletredarkslategraypapayawhipalegoldenrodarkslatebluepause-a" +
"fterpause-beforeplace-contentplace-itemspeech-ratext-decorat" +
"ion-thicknesstrokeplace-selflex-flowriting-modepowderbluepro" +
"gidarkturquoisequotesupportsunicode-bidisplay-duringrid-colu" +
"mn-endarkmagentable-layout-floword-wrapadding-leftransparent" +
"urnunicode-rangeunsetvoice-familyvolumedianimation-iteration" +
"-counter-incrementext-shadowidowscrollbar-3d-light-coloruby-" +
"align-contentext-transformargin-bottomargin-leftext-underlin" +
"e-position")
var _Hash_table = [1 << 10]Hash{
0x3: 0xc290b, // pause-after
0x6: 0xd5d11, // counter-increment
0x8: 0xcce07, // display
0x9: 0x51a0a, // darkviolet
0xb: 0xbf09, // no-repeat
0xd: 0x4402, // in
0x14: 0x6f211, // page-break-inside
0x15: 0x6250c, // font-stretch
0x19: 0x5f910, // font-size-adjust
0x1a: 0x47513, // transition-property
0x1c: 0x78105, // speak
0x1f: 0x82a0c, // justify-self
0x20: 0x61114, // scrollbar-face-color
0x24: 0x2b60f, // border-collapse
0x25: 0x68607, // z-index
0x27: 0xd980d, // align-content
0x2a: 0x99f13, // list-style-position
0x2b: 0xcdb0f, // grid-column-end
0x2c: 0x14119, // animation-timing-function
0x30: 0xb0909, // indianred
0x34: 0x97709, // limegreen
0x35: 0xbc10d, // outline-width
0x3f: 0x15a07, // azimuth
0x40: 0x1e70e, // blanchedalmond
0x41: 0x84a0a, // line-break
0x42: 0x7a209, // aliceblue
0x43: 0xf309, // rosybrown
0x46: 0xa7c0f, // mediumturquoise
0x49: 0xd7706, // widows