@selfcommunity/react-theme-default 0.1.0-alpha.136 → 0.1.0-alpha.138
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/lib/cjs/components/SCBaseDialog.d.ts +2 -0
- package/lib/cjs/components/SCBaseDialog.d.ts.map +1 -1
- package/lib/cjs/components/SCBaseDialog.js +3 -1
- package/lib/cjs/components/SCBaseDialog.js.map +1 -1
- package/lib/cjs/components/SCCategory.d.ts +1 -1
- package/lib/cjs/components/SCCategory.js +1 -1
- package/lib/cjs/components/SCCategory.js.map +1 -1
- package/lib/cjs/components/SCCategorySkeleton.d.ts +3 -0
- package/lib/cjs/components/SCCategorySkeleton.d.ts.map +1 -1
- package/lib/cjs/components/SCCategorySkeleton.js +3 -0
- package/lib/cjs/components/SCCategorySkeleton.js.map +1 -1
- package/lib/cjs/components/SCComposer.d.ts +21 -0
- package/lib/cjs/components/SCComposer.d.ts.map +1 -1
- package/lib/cjs/components/SCComposer.js +21 -0
- package/lib/cjs/components/SCComposer.js.map +1 -1
- package/lib/cjs/components/SCNotificationItem.d.ts +7 -0
- package/lib/cjs/components/SCNotificationItem.d.ts.map +1 -1
- package/lib/cjs/components/SCNotificationItem.js +7 -0
- package/lib/cjs/components/SCNotificationItem.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts +48 -34
- package/lib/cjs/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageEditor.js +52 -39
- package/lib/cjs/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.d.ts +28 -19
- package/lib/cjs/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/cjs/components/SCPrivateMessageThread.js +27 -20
- package/lib/cjs/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/cjs/index.d.ts +110 -54
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/esm/components/SCBaseDialog.d.ts +2 -0
- package/lib/esm/components/SCBaseDialog.d.ts.map +1 -1
- package/lib/esm/components/SCBaseDialog.js +3 -1
- package/lib/esm/components/SCBaseDialog.js.map +1 -1
- package/lib/esm/components/SCCategory.d.ts +1 -1
- package/lib/esm/components/SCCategory.js +1 -1
- package/lib/esm/components/SCCategory.js.map +1 -1
- package/lib/esm/components/SCCategorySkeleton.d.ts +3 -0
- package/lib/esm/components/SCCategorySkeleton.d.ts.map +1 -1
- package/lib/esm/components/SCCategorySkeleton.js +3 -0
- package/lib/esm/components/SCCategorySkeleton.js.map +1 -1
- package/lib/esm/components/SCComposer.d.ts +21 -0
- package/lib/esm/components/SCComposer.d.ts.map +1 -1
- package/lib/esm/components/SCComposer.js +21 -0
- package/lib/esm/components/SCComposer.js.map +1 -1
- package/lib/esm/components/SCNotificationItem.d.ts +7 -0
- package/lib/esm/components/SCNotificationItem.d.ts.map +1 -1
- package/lib/esm/components/SCNotificationItem.js +7 -0
- package/lib/esm/components/SCNotificationItem.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.d.ts +48 -34
- package/lib/esm/components/SCPrivateMessageEditor.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageEditor.js +52 -39
- package/lib/esm/components/SCPrivateMessageEditor.js.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.d.ts +28 -19
- package/lib/esm/components/SCPrivateMessageThread.d.ts.map +1 -1
- package/lib/esm/components/SCPrivateMessageThread.js +27 -20
- package/lib/esm/components/SCPrivateMessageThread.js.map +1 -1
- package/lib/esm/index.d.ts +110 -54
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/umd/react-theme-default.js +8 -8
- package/lib/umd/react-theme-default.js.map +1 -1
- package/package.json +4 -4
package/lib/esm/index.d.ts
CHANGED
|
@@ -231,6 +231,7 @@ declare const theme: {
|
|
|
231
231
|
'& .infinite-scroll-component__outerdiv': {
|
|
232
232
|
height: string;
|
|
233
233
|
'& .infinite-scroll-component': {
|
|
234
|
+
paddingRight: number;
|
|
234
235
|
' > .': {
|
|
235
236
|
marginBottom: any;
|
|
236
237
|
};
|
|
@@ -239,6 +240,7 @@ declare const theme: {
|
|
|
239
240
|
paddingBottom: number;
|
|
240
241
|
'& .MuiListItem-root': {
|
|
241
242
|
paddingLeft: number;
|
|
243
|
+
paddingRight: number;
|
|
242
244
|
'& .SCBaseItemButton-root': {
|
|
243
245
|
borderRadius: number;
|
|
244
246
|
};
|
|
@@ -465,7 +467,7 @@ declare const theme: {
|
|
|
465
467
|
borderRadius: number;
|
|
466
468
|
'& .SCCategory-category-image': {
|
|
467
469
|
'& img': {
|
|
468
|
-
borderRadius:
|
|
470
|
+
borderRadius: any;
|
|
469
471
|
};
|
|
470
472
|
};
|
|
471
473
|
'& .SCBaseItemButton-primary, & .SCBaseItemButton-secondary': {
|
|
@@ -574,6 +576,9 @@ declare const theme: {
|
|
|
574
576
|
SCCategorySkeleton: {
|
|
575
577
|
styleOverrides: {
|
|
576
578
|
root: ({ theme }: any) => {
|
|
579
|
+
'& .SCCategorySkeleton-image': {
|
|
580
|
+
borderRadius: any;
|
|
581
|
+
};
|
|
577
582
|
'& .SCCategorySkeleton-primary': {
|
|
578
583
|
marginBottom: any;
|
|
579
584
|
};
|
|
@@ -971,6 +976,27 @@ declare const theme: {
|
|
|
971
976
|
'& .SCComposer-mediaContent, & .SCComposer-audienceContent, & .SCComposer-locationContent': {
|
|
972
977
|
minHeight: number;
|
|
973
978
|
};
|
|
979
|
+
'& .SCComposer-audienceContent': {
|
|
980
|
+
maxWidth: number;
|
|
981
|
+
margin: any;
|
|
982
|
+
'& .MuiTabs-root': {
|
|
983
|
+
margin: any;
|
|
984
|
+
'& .MuiTabs-flexContainer': {
|
|
985
|
+
justifyContent: string;
|
|
986
|
+
'& .MuiTab-root': {
|
|
987
|
+
minHeight: any;
|
|
988
|
+
flexDirection: string;
|
|
989
|
+
'& .MuiTab-iconWrapper': {
|
|
990
|
+
marginRight: any;
|
|
991
|
+
fontSize: string;
|
|
992
|
+
};
|
|
993
|
+
};
|
|
994
|
+
};
|
|
995
|
+
};
|
|
996
|
+
'& .SCComposer-block': {
|
|
997
|
+
marginBottom: any;
|
|
998
|
+
};
|
|
999
|
+
};
|
|
974
1000
|
'& .SCComposer-block': {
|
|
975
1001
|
padding: any;
|
|
976
1002
|
};
|
|
@@ -2855,12 +2881,19 @@ declare const theme: {
|
|
|
2855
2881
|
'& .SCContributionNotification-username': {
|
|
2856
2882
|
fontWeight: any;
|
|
2857
2883
|
};
|
|
2884
|
+
'& a': {
|
|
2885
|
+
color: any;
|
|
2886
|
+
textDecoration: string;
|
|
2887
|
+
};
|
|
2858
2888
|
};
|
|
2859
2889
|
'& .SCNotificationItem-secondary': {
|
|
2860
2890
|
'& .SCDateTimeAgo-root, & .MuiStack-root': {
|
|
2861
2891
|
color: any;
|
|
2862
2892
|
minHeight: any;
|
|
2863
2893
|
};
|
|
2894
|
+
'& a': {
|
|
2895
|
+
textDecoration: string;
|
|
2896
|
+
};
|
|
2864
2897
|
};
|
|
2865
2898
|
};
|
|
2866
2899
|
'& .SCNotificationItem-actions': {
|
|
@@ -3635,29 +3668,35 @@ declare const theme: {
|
|
|
3635
3668
|
display: string;
|
|
3636
3669
|
justifyContent: string;
|
|
3637
3670
|
};
|
|
3638
|
-
'&
|
|
3671
|
+
'& .infinite-scroll-component__outerdiv': {
|
|
3639
3672
|
flexGrow: number;
|
|
3640
3673
|
overflowY: string;
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
'
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
3650
|
-
|
|
3651
|
-
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
|
|
3655
|
-
|
|
3674
|
+
'& .infinite-scroll-component': {
|
|
3675
|
+
display: string;
|
|
3676
|
+
flexDirection: string;
|
|
3677
|
+
'& .MuiList-root': {
|
|
3678
|
+
margin: number;
|
|
3679
|
+
padding: any;
|
|
3680
|
+
'& .MuiListItem-root': {
|
|
3681
|
+
'&.SCPrivateMessageThread-receiver': {
|
|
3682
|
+
backgroundColor: any;
|
|
3683
|
+
marginLeft: any;
|
|
3684
|
+
filter: string;
|
|
3685
|
+
'&:after': {
|
|
3686
|
+
marginRight: any;
|
|
3687
|
+
content: string;
|
|
3688
|
+
position: string;
|
|
3689
|
+
border: string;
|
|
3690
|
+
borderTop: string;
|
|
3691
|
+
top: number;
|
|
3692
|
+
left: any;
|
|
3693
|
+
};
|
|
3694
|
+
};
|
|
3695
|
+
'&.SCPrivateMessageThread-sender': {
|
|
3696
|
+
backgroundColor: string;
|
|
3697
|
+
};
|
|
3656
3698
|
};
|
|
3657
3699
|
};
|
|
3658
|
-
'&.SCPrivateMessageThread-sender': {
|
|
3659
|
-
backgroundColor: string;
|
|
3660
|
-
};
|
|
3661
3700
|
};
|
|
3662
3701
|
};
|
|
3663
3702
|
};
|
|
@@ -3722,6 +3761,9 @@ declare const theme: {
|
|
|
3722
3761
|
boxShadow: string;
|
|
3723
3762
|
};
|
|
3724
3763
|
};
|
|
3764
|
+
'& .MuiList-root, .SCPrivateMessageThread-new-message-content': {
|
|
3765
|
+
flexGrow: number;
|
|
3766
|
+
};
|
|
3725
3767
|
};
|
|
3726
3768
|
};
|
|
3727
3769
|
};
|
|
@@ -3811,6 +3853,7 @@ declare const theme: {
|
|
|
3811
3853
|
};
|
|
3812
3854
|
'& .SCPrivateMessageEditor-message-input': {
|
|
3813
3855
|
width: string;
|
|
3856
|
+
backgroundColor: string;
|
|
3814
3857
|
};
|
|
3815
3858
|
'& .MuiInputBase-root, MuiFilledInput-root': {
|
|
3816
3859
|
borderRadius: number;
|
|
@@ -3823,27 +3866,32 @@ declare const theme: {
|
|
|
3823
3866
|
'&:hover': {
|
|
3824
3867
|
border: string;
|
|
3825
3868
|
};
|
|
3869
|
+
'&.Mui-disabled': {
|
|
3870
|
+
border: string;
|
|
3871
|
+
};
|
|
3872
|
+
};
|
|
3873
|
+
};
|
|
3874
|
+
'& .SCPrivateMessageEditor-emoji-section, SCEmojiPicker-root': {
|
|
3875
|
+
'& .EmojiPickerReact.epr-main': {
|
|
3876
|
+
borderRadius: number;
|
|
3877
|
+
'& .epr-preview': {
|
|
3878
|
+
display: string;
|
|
3879
|
+
};
|
|
3826
3880
|
};
|
|
3827
3881
|
};
|
|
3828
3882
|
'& .MuiPaper-root, MuiCard-root, SCWidget-root, SCMessageMediaUploader-root': {
|
|
3829
3883
|
borderRadius: number;
|
|
3830
3884
|
height: any;
|
|
3831
3885
|
backgroundColor: any;
|
|
3832
|
-
'& .
|
|
3833
|
-
|
|
3834
|
-
'
|
|
3835
|
-
|
|
3886
|
+
'& .MuiCardHeader-root': {
|
|
3887
|
+
paddingBottom: any;
|
|
3888
|
+
'& .SCMessageMediaUploader-close-button': {
|
|
3889
|
+
fontSize: string;
|
|
3836
3890
|
};
|
|
3891
|
+
};
|
|
3892
|
+
'& .MuiCardContent-root': {
|
|
3837
3893
|
overflow: string;
|
|
3838
3894
|
padding: any;
|
|
3839
|
-
display: string;
|
|
3840
|
-
flexDirection: string;
|
|
3841
|
-
height: any;
|
|
3842
|
-
'& .SCMessageMediaUploader-close': {
|
|
3843
|
-
'& .MuiIcon-root': {
|
|
3844
|
-
fontSize: string;
|
|
3845
|
-
};
|
|
3846
|
-
};
|
|
3847
3895
|
'& .SCMessageMediaUploader-upload-section': {
|
|
3848
3896
|
'& .SCMessageMediaUploader-upload-button': {
|
|
3849
3897
|
display: string;
|
|
@@ -3851,25 +3899,33 @@ declare const theme: {
|
|
|
3851
3899
|
fontSize: string;
|
|
3852
3900
|
};
|
|
3853
3901
|
};
|
|
3902
|
+
'& .MuiList-root': {
|
|
3903
|
+
paddingTop: any;
|
|
3904
|
+
paddingBottom: any;
|
|
3905
|
+
};
|
|
3854
3906
|
'& .SCMessageMediaUploader-preview-content': {
|
|
3855
3907
|
position: string;
|
|
3856
3908
|
display: string;
|
|
3857
3909
|
margin: string;
|
|
3858
|
-
|
|
3859
|
-
height: any;
|
|
3860
|
-
img: {
|
|
3861
|
-
resizeMode: string;
|
|
3862
|
-
width: any;
|
|
3863
|
-
height: any;
|
|
3864
|
-
};
|
|
3865
|
-
video: {
|
|
3866
|
-
width: any;
|
|
3910
|
+
'& .MuiListItem-root': {
|
|
3867
3911
|
height: any;
|
|
3912
|
+
marginRight: any;
|
|
3913
|
+
img: {
|
|
3914
|
+
width: any;
|
|
3915
|
+
height: any;
|
|
3916
|
+
};
|
|
3917
|
+
video: {
|
|
3918
|
+
objectFit: string;
|
|
3919
|
+
width: any;
|
|
3920
|
+
height: any;
|
|
3921
|
+
};
|
|
3868
3922
|
};
|
|
3869
3923
|
'& .SCMessageMediaUploader-preview-actions': {
|
|
3870
|
-
width: string;
|
|
3871
3924
|
height: string;
|
|
3872
|
-
|
|
3925
|
+
background: string;
|
|
3926
|
+
'&:hover, &:active, &.SCMessageMediaUploader-progress': {
|
|
3927
|
+
background: string;
|
|
3928
|
+
};
|
|
3873
3929
|
'& .MuiButtonBase-root, .MuiTypography-root': {
|
|
3874
3930
|
color: any;
|
|
3875
3931
|
position: string;
|
|
@@ -3877,18 +3933,18 @@ declare const theme: {
|
|
|
3877
3933
|
left: string;
|
|
3878
3934
|
transform: string;
|
|
3879
3935
|
};
|
|
3880
|
-
'&:hover, &:active': {
|
|
3881
|
-
background: string;
|
|
3882
|
-
};
|
|
3883
|
-
'& .SCMessageMediaUploader-progress': {
|
|
3884
|
-
background: string;
|
|
3885
|
-
height: string;
|
|
3886
|
-
};
|
|
3887
3936
|
};
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
3937
|
+
'& .SCMessageMediaUploader-preview-info': {
|
|
3938
|
+
position: string;
|
|
3939
|
+
left: string;
|
|
3940
|
+
bottom: number;
|
|
3941
|
+
transform: string;
|
|
3942
|
+
overflow: string;
|
|
3943
|
+
textOverflow: string;
|
|
3944
|
+
width: any;
|
|
3945
|
+
'& .MuiTypography-root': {
|
|
3946
|
+
fontSize: string;
|
|
3947
|
+
};
|
|
3892
3948
|
};
|
|
3893
3949
|
};
|
|
3894
3950
|
};
|
package/lib/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AAmHrC;;GAEG;AAEH,QAAA,MAAM,KAAK
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,6BAA6B,CAAC;AAmHrC;;GAEG;AAEH,QAAA,MAAM,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0KV,CAAC;AACF,eAAe,KAAK,CAAC"}
|